fdmprinter.def.json.po 305 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: PACKAGE VERSION\n"
  4. "Report-Msgid-Bugs-To: \n"
  5. "POT-Creation-Date: 2024-03-13 09:02+0100\n"
  6. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  7. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  8. "Language-Team: LANGUAGE <LL@li.org>\n"
  9. "Language: es_ES\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  14. msgctxt "machine_settings label"
  15. msgid "Machine"
  16. msgstr "Máquina"
  17. msgctxt "machine_settings description"
  18. msgid "Machine specific settings"
  19. msgstr "Ajustes específicos de la máquina"
  20. msgctxt "machine_name label"
  21. msgid "Machine Type"
  22. msgstr "Tipo de máquina"
  23. msgctxt "machine_name description"
  24. msgid "The name of your 3D printer model."
  25. msgstr "Nombre del modelo de la impresora 3D."
  26. msgctxt "machine_show_variants label"
  27. msgid "Show Machine Variants"
  28. msgstr "Mostrar versiones de la máquina"
  29. msgctxt "machine_show_variants description"
  30. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  31. msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes."
  32. msgctxt "machine_start_gcode label"
  33. msgid "Start G-code"
  34. msgstr "Iniciar GCode"
  35. msgctxt "machine_start_gcode description"
  36. msgid "G-code commands to be executed at the very start - separated by \n."
  37. msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - "
  38. "."
  39. msgctxt "machine_end_gcode label"
  40. msgid "End G-code"
  41. msgstr "Finalizar GCode"
  42. msgctxt "machine_end_gcode description"
  43. msgid "G-code commands to be executed at the very end - separated by \n."
  44. msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -"
  45. "."
  46. msgctxt "material_guid label"
  47. msgid "Material GUID"
  48. msgstr "GUID del material"
  49. msgctxt "material_guid description"
  50. msgid "GUID of the material. This is set automatically."
  51. msgstr "GUID del material. Este valor se define de forma automática."
  52. msgctxt "material_type label"
  53. msgid "Material Type"
  54. msgstr "Tipo de material"
  55. msgctxt "material_type description"
  56. msgid "The type of material used."
  57. msgstr "El tipo de material utilizado."
  58. msgctxt "material_brand label"
  59. msgid "Material Brand"
  60. msgstr "Marca del material"
  61. msgctxt "material_brand description"
  62. msgid "The brand of material used."
  63. msgstr "La marca del material utilizado."
  64. msgctxt "material_diameter label"
  65. msgid "Diameter"
  66. msgstr "Diámetro"
  67. msgctxt "material_diameter description"
  68. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  69. msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado."
  70. msgctxt "material_bed_temp_wait label"
  71. msgid "Wait for Build Plate Heatup"
  72. msgstr "Esperar a que la placa de impresión se caliente"
  73. msgctxt "material_bed_temp_wait description"
  74. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  75. msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio."
  76. msgctxt "material_print_temp_wait label"
  77. msgid "Wait for Nozzle Heatup"
  78. msgstr "Esperar a la que la tobera se caliente"
  79. msgctxt "material_print_temp_wait description"
  80. msgid "Whether to wait until the nozzle temperature is reached at the start."
  81. msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio."
  82. msgctxt "material_print_temp_prepend label"
  83. msgid "Include Material Temperatures"
  84. msgstr "Incluir temperaturas del material"
  85. msgctxt "material_print_temp_prepend description"
  86. 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."
  87. 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."
  88. msgctxt "material_bed_temp_prepend label"
  89. msgid "Include Build Plate Temperature"
  90. msgstr "Incluir temperatura de la placa de impresión"
  91. msgctxt "material_bed_temp_prepend description"
  92. 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."
  93. 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."
  94. msgctxt "machine_width label"
  95. msgid "Machine Width"
  96. msgstr "Ancho de la máquina"
  97. msgctxt "machine_width description"
  98. msgid "The width (X-direction) of the printable area."
  99. msgstr "Ancho (dimensión sobre el eje X) del área de impresión."
  100. msgctxt "machine_depth label"
  101. msgid "Machine Depth"
  102. msgstr "Profundidad de la máquina"
  103. msgctxt "machine_depth description"
  104. msgid "The depth (Y-direction) of the printable area."
  105. msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión."
  106. msgctxt "machine_height label"
  107. msgid "Machine Height"
  108. msgstr "Altura de la máquina"
  109. msgctxt "machine_height description"
  110. msgid "The height (Z-direction) of the printable area."
  111. msgstr "Altura (dimensión sobre el eje Z) del área de impresión."
  112. msgctxt "machine_shape label"
  113. msgid "Build Plate Shape"
  114. msgstr "Forma de la placa de impresión"
  115. msgctxt "machine_shape description"
  116. msgid "The shape of the build plate without taking unprintable areas into account."
  117. msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión."
  118. msgctxt "machine_shape option rectangular"
  119. msgid "Rectangular"
  120. msgstr "Rectangular"
  121. msgctxt "machine_shape option elliptic"
  122. msgid "Elliptic"
  123. msgstr "Elíptica"
  124. msgctxt "machine_buildplate_type label"
  125. msgid "Build Plate Material"
  126. msgstr "Material de placa de impresión"
  127. msgctxt "machine_buildplate_type description"
  128. msgid "The material of the build plate installed on the printer."
  129. msgstr "Material de la placa de impresión colocado en la impresora."
  130. msgctxt "machine_buildplate_type option glass"
  131. msgid "Glass"
  132. msgstr "Vidrio"
  133. msgctxt "machine_buildplate_type option aluminum"
  134. msgid "Aluminum"
  135. msgstr "Aluminio"
  136. msgctxt "machine_heated_bed label"
  137. msgid "Has Heated Build Plate"
  138. msgstr "Tiene una placa de impresión caliente"
  139. msgctxt "machine_heated_bed description"
  140. msgid "Whether the machine has a heated build plate present."
  141. msgstr "Indica si la máquina tiene una placa de impresión caliente."
  142. msgctxt "machine_heated_build_volume label"
  143. msgid "Has Build Volume Temperature Stabilization"
  144. msgstr "Tiene estabilización de temperatura del volumen de impresión"
  145. msgctxt "machine_heated_build_volume description"
  146. msgid "Whether the machine is able to stabilize the build volume temperature."
  147. msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión."
  148. msgctxt "machine_always_write_active_tool label"
  149. msgid "Always Write Active Tool"
  150. msgstr "Escriba siempre la herramienta activa"
  151. msgctxt "machine_always_write_active_tool description"
  152. 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."
  153. 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 u otro firmware con comandos de herramientas modales."
  154. msgctxt "machine_center_is_zero label"
  155. msgid "Is Center Origin"
  156. msgstr "El origen está centrado"
  157. msgctxt "machine_center_is_zero description"
  158. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  159. 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."
  160. msgctxt "machine_extruder_count label"
  161. msgid "Number of Extruders"
  162. msgstr "Número de extrusores"
  163. msgctxt "machine_extruder_count description"
  164. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  165. msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera."
  166. msgctxt "extruders_enabled_count label"
  167. msgid "Number of Extruders That Are Enabled"
  168. msgstr "Número de extrusores habilitados"
  169. msgctxt "extruders_enabled_count description"
  170. msgid "Number of extruder trains that are enabled; automatically set in software"
  171. msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática"
  172. msgctxt "machine_nozzle_tip_outer_diameter label"
  173. msgid "Outer Nozzle Diameter"
  174. msgstr "Diámetro exterior de la tobera"
  175. msgctxt "machine_nozzle_tip_outer_diameter description"
  176. msgid "The outer diameter of the tip of the nozzle."
  177. msgstr "Diámetro exterior de la punta de la tobera."
  178. msgctxt "machine_nozzle_head_distance label"
  179. msgid "Nozzle Length"
  180. msgstr "Longitud de la tobera"
  181. msgctxt "machine_nozzle_head_distance description"
  182. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  183. msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión."
  184. msgctxt "machine_nozzle_expansion_angle label"
  185. msgid "Nozzle Angle"
  186. msgstr "Ángulo de la tobera"
  187. msgctxt "machine_nozzle_expansion_angle description"
  188. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  189. msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera."
  190. msgctxt "machine_heat_zone_length label"
  191. msgid "Heat Zone Length"
  192. msgstr "Longitud de la zona térmica"
  193. msgctxt "machine_heat_zone_length description"
  194. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  195. msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento."
  196. msgctxt "machine_nozzle_temp_enabled label"
  197. msgid "Enable Nozzle Temperature Control"
  198. msgstr "Habilitar control de temperatura de la tobera"
  199. msgctxt "machine_nozzle_temp_enabled description"
  200. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  201. msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción."
  202. msgctxt "machine_nozzle_heat_up_speed label"
  203. msgid "Heat Up Speed"
  204. msgstr "Velocidad de calentamiento"
  205. msgctxt "machine_nozzle_heat_up_speed description"
  206. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  207. 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."
  208. msgctxt "machine_nozzle_cool_down_speed label"
  209. msgid "Cool Down Speed"
  210. msgstr "Velocidad de enfriamiento"
  211. msgctxt "machine_nozzle_cool_down_speed description"
  212. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  213. 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."
  214. msgctxt "machine_min_cool_heat_time_window label"
  215. msgid "Minimal Time Standby Temperature"
  216. msgstr "Temperatura mínima en modo de espera"
  217. msgctxt "machine_min_cool_heat_time_window description"
  218. 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."
  219. 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."
  220. msgctxt "machine_gcode_flavor label"
  221. msgid "G-code Flavor"
  222. msgstr "Tipo de GCode"
  223. msgctxt "machine_gcode_flavor description"
  224. msgid "The type of g-code to be generated."
  225. msgstr "Tipo de GCode que se va a generar."
  226. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  227. msgid "Marlin"
  228. msgstr "Marlin"
  229. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  230. msgid "Marlin (Volumetric)"
  231. msgstr "Marlin (Volumetric)"
  232. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  233. msgid "RepRap"
  234. msgstr "RepRap"
  235. msgctxt "machine_gcode_flavor option UltiGCode"
  236. msgid "Ultimaker 2"
  237. msgstr "Ultimaker 2"
  238. msgctxt "machine_gcode_flavor option Griffin"
  239. msgid "Griffin"
  240. msgstr "Griffin"
  241. msgctxt "machine_gcode_flavor option Makerbot"
  242. msgid "Makerbot"
  243. msgstr "Makerbot"
  244. msgctxt "machine_gcode_flavor option BFB"
  245. msgid "Bits from Bytes"
  246. msgstr "Bits from Bytes"
  247. msgctxt "machine_gcode_flavor option MACH3"
  248. msgid "Mach3"
  249. msgstr "Mach3"
  250. msgctxt "machine_gcode_flavor option Repetier"
  251. msgid "Repetier"
  252. msgstr "Repetier"
  253. msgctxt "machine_firmware_retract label"
  254. msgid "Firmware Retraction"
  255. msgstr "Retracción de firmware"
  256. msgctxt "machine_firmware_retract description"
  257. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  258. 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."
  259. msgctxt "machine_extruders_share_heater label"
  260. msgid "Extruders Share Heater"
  261. msgstr "Calentador compartido de extrusores"
  262. msgctxt "machine_extruders_share_heater description"
  263. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  264. msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio."
  265. msgctxt "machine_extruders_share_nozzle label"
  266. msgid "Extruders Share Nozzle"
  267. msgstr "Los extrusores comparten la tobera"
  268. msgctxt "machine_extruders_share_nozzle description"
  269. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  270. msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"."
  271. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  272. msgid "Shared Nozzle Initial Retraction"
  273. msgstr "Retracción inicial de tobera compartida"
  274. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  275. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  276. msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera."
  277. msgctxt "machine_disallowed_areas label"
  278. msgid "Disallowed Areas"
  279. msgstr "Áreas no permitidas"
  280. msgctxt "machine_disallowed_areas description"
  281. msgid "A list of polygons with areas the print head is not allowed to enter."
  282. msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir."
  283. msgctxt "nozzle_disallowed_areas label"
  284. msgid "Nozzle Disallowed Areas"
  285. msgstr "Áreas no permitidas para la tobera"
  286. msgctxt "nozzle_disallowed_areas description"
  287. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  288. msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar."
  289. msgctxt "machine_head_with_fans_polygon label"
  290. msgid "Machine Head & Fan Polygon"
  291. msgstr "Polígono del cabezal de la máquina y del ventilador"
  292. msgctxt "machine_head_with_fans_polygon description"
  293. msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates."
  294. msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas."
  295. msgctxt "gantry_height label"
  296. msgid "Gantry Height"
  297. msgstr "Altura del puente"
  298. msgctxt "gantry_height description"
  299. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  300. msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)."
  301. msgctxt "machine_nozzle_id label"
  302. msgid "Nozzle ID"
  303. msgstr "Id. de la tobera"
  304. msgctxt "machine_nozzle_id description"
  305. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  306. msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"."
  307. msgctxt "machine_nozzle_size label"
  308. msgid "Nozzle Diameter"
  309. msgstr "Diámetro de la tobera"
  310. msgctxt "machine_nozzle_size description"
  311. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  312. msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar."
  313. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  314. msgid "Offset with Extruder"
  315. msgstr "Desplazamiento con extrusor"
  316. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  317. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  318. msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores."
  319. msgctxt "extruder_prime_pos_z label"
  320. msgid "Extruder Prime Z Position"
  321. msgstr "Posición de preparación del extrusor sobre el eje Z"
  322. msgctxt "extruder_prime_pos_z description"
  323. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  324. msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión."
  325. msgctxt "extruder_prime_pos_abs label"
  326. msgid "Absolute Extruder Prime Position"
  327. msgstr "Posición de preparación absoluta del extrusor"
  328. msgctxt "extruder_prime_pos_abs description"
  329. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  330. msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal."
  331. msgctxt "machine_max_feedrate_x label"
  332. msgid "Maximum Speed X"
  333. msgstr "Velocidad máxima sobre el eje X"
  334. msgctxt "machine_max_feedrate_x description"
  335. msgid "The maximum speed for the motor of the X-direction."
  336. msgstr "Velocidad máxima del motor de la dirección X."
  337. msgctxt "machine_max_feedrate_y label"
  338. msgid "Maximum Speed Y"
  339. msgstr "Velocidad máxima sobre el eje Y"
  340. msgctxt "machine_max_feedrate_y description"
  341. msgid "The maximum speed for the motor of the Y-direction."
  342. msgstr "Velocidad máxima del motor de la dirección Y."
  343. msgctxt "machine_max_feedrate_z label"
  344. msgid "Maximum Speed Z"
  345. msgstr "Velocidad máxima sobre el eje Z"
  346. msgctxt "machine_max_feedrate_z description"
  347. msgid "The maximum speed for the motor of the Z-direction."
  348. msgstr "Velocidad máxima del motor de la dirección Z."
  349. msgctxt "machine_max_feedrate_e label"
  350. msgid "Maximum Speed E"
  351. msgstr "Velocidad máxima E"
  352. msgctxt "machine_max_feedrate_e description"
  353. msgid "The maximum speed of the filament."
  354. msgstr "Velocidad máxima del filamento."
  355. msgctxt "machine_max_acceleration_x label"
  356. msgid "Maximum Acceleration X"
  357. msgstr "Aceleración máxima sobre el eje X"
  358. msgctxt "machine_max_acceleration_x description"
  359. msgid "Maximum acceleration for the motor of the X-direction"
  360. msgstr "Aceleración máxima del motor de la dirección X"
  361. msgctxt "machine_max_acceleration_y label"
  362. msgid "Maximum Acceleration Y"
  363. msgstr "Aceleración máxima de Y"
  364. msgctxt "machine_max_acceleration_y description"
  365. msgid "Maximum acceleration for the motor of the Y-direction."
  366. msgstr "Aceleración máxima del motor de la dirección Y."
  367. msgctxt "machine_max_acceleration_z label"
  368. msgid "Maximum Acceleration Z"
  369. msgstr "Aceleración máxima de Z"
  370. msgctxt "machine_max_acceleration_z description"
  371. msgid "Maximum acceleration for the motor of the Z-direction."
  372. msgstr "Aceleración máxima del motor de la dirección Z."
  373. msgctxt "machine_max_acceleration_e label"
  374. msgid "Maximum Filament Acceleration"
  375. msgstr "Aceleración máxima del filamento"
  376. msgctxt "machine_max_acceleration_e description"
  377. msgid "Maximum acceleration for the motor of the filament."
  378. msgstr "Aceleración máxima del motor del filamento."
  379. msgctxt "machine_acceleration label"
  380. msgid "Default Acceleration"
  381. msgstr "Aceleración predeterminada"
  382. msgctxt "machine_acceleration description"
  383. msgid "The default acceleration of print head movement."
  384. msgstr "Aceleración predeterminada del movimiento del cabezal de impresión."
  385. msgctxt "machine_max_jerk_xy label"
  386. msgid "Default X-Y Jerk"
  387. msgstr "Impulso X-Y predeterminado"
  388. msgctxt "machine_max_jerk_xy description"
  389. msgid "Default jerk for movement in the horizontal plane."
  390. msgstr "Impulso predeterminado para el movimiento en el plano horizontal."
  391. msgctxt "machine_max_jerk_z label"
  392. msgid "Default Z Jerk"
  393. msgstr "Impulso Z predeterminado"
  394. msgctxt "machine_max_jerk_z description"
  395. msgid "Default jerk for the motor of the Z-direction."
  396. msgstr "Impulso predeterminado del motor de la dirección Z."
  397. msgctxt "machine_max_jerk_e label"
  398. msgid "Default Filament Jerk"
  399. msgstr "Impulso de filamento predeterminado"
  400. msgctxt "machine_max_jerk_e description"
  401. msgid "Default jerk for the motor of the filament."
  402. msgstr "Impulso predeterminado del motor del filamento."
  403. msgctxt "machine_steps_per_mm_x label"
  404. msgid "Steps per Millimeter (X)"
  405. msgstr "Pasos por milímetro (X)"
  406. msgctxt "machine_steps_per_mm_x description"
  407. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  408. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X."
  409. msgctxt "machine_steps_per_mm_y label"
  410. msgid "Steps per Millimeter (Y)"
  411. msgstr "Pasos por milímetro (Y)"
  412. msgctxt "machine_steps_per_mm_y description"
  413. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  414. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y."
  415. msgctxt "machine_steps_per_mm_z label"
  416. msgid "Steps per Millimeter (Z)"
  417. msgstr "Pasos por milímetro (Z)"
  418. msgctxt "machine_steps_per_mm_z description"
  419. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  420. msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z."
  421. msgctxt "machine_steps_per_mm_e label"
  422. msgid "Steps per Millimeter (E)"
  423. msgstr "Pasos por milímetro (E)"
  424. msgctxt "machine_steps_per_mm_e description"
  425. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  426. msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia."
  427. msgctxt "machine_endstop_positive_direction_x label"
  428. msgid "X Endstop in Positive Direction"
  429. msgstr "Tope de X en dirección positiva"
  430. msgctxt "machine_endstop_positive_direction_x description"
  431. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  432. msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)."
  433. msgctxt "machine_endstop_positive_direction_y label"
  434. msgid "Y Endstop in Positive Direction"
  435. msgstr "Tope de Y en dirección positiva"
  436. msgctxt "machine_endstop_positive_direction_y description"
  437. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  438. msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)."
  439. msgctxt "machine_endstop_positive_direction_z label"
  440. msgid "Z Endstop in Positive Direction"
  441. msgstr "Tope de Z en dirección positiva"
  442. msgctxt "machine_endstop_positive_direction_z description"
  443. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  444. msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)."
  445. msgctxt "machine_minimum_feedrate label"
  446. msgid "Minimum Feedrate"
  447. msgstr "Velocidad de alimentación mínima"
  448. msgctxt "machine_minimum_feedrate description"
  449. msgid "The minimal movement speed of the print head."
  450. msgstr "Velocidad mínima de movimiento del cabezal de impresión."
  451. msgctxt "machine_feeder_wheel_diameter label"
  452. msgid "Feeder Wheel Diameter"
  453. msgstr "Diámetro de la rueda del alimentador"
  454. msgctxt "machine_feeder_wheel_diameter description"
  455. msgid "The diameter of the wheel that drives the material in the feeder."
  456. msgstr "El diámetro de la rueda que dirige el material hacia el alimentador."
  457. msgctxt "machine_scale_fan_speed_zero_to_one label"
  458. msgid "Scale Fan Speed To 0-1"
  459. msgstr "Escale la velocidad del ventilador a 0-1"
  460. msgctxt "machine_scale_fan_speed_zero_to_one description"
  461. msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256."
  462. msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256."
  463. msgctxt "resolution label"
  464. msgid "Quality"
  465. msgstr "Calidad"
  466. msgctxt "resolution description"
  467. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  468. 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)."
  469. msgctxt "layer_height label"
  470. msgid "Layer Height"
  471. msgstr "Altura de capa"
  472. msgctxt "layer_height description"
  473. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  474. 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."
  475. msgctxt "layer_height_0 label"
  476. msgid "Initial Layer Height"
  477. msgstr "Altura de capa inicial"
  478. msgctxt "layer_height_0 description"
  479. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  480. msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad."
  481. msgctxt "line_width label"
  482. msgid "Line Width"
  483. msgstr "Ancho de línea"
  484. msgctxt "line_width description"
  485. 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."
  486. 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."
  487. msgctxt "wall_line_width label"
  488. msgid "Wall Line Width"
  489. msgstr "Ancho de línea de pared"
  490. msgctxt "wall_line_width description"
  491. msgid "Width of a single wall line."
  492. msgstr "Ancho de una sola línea de pared."
  493. msgctxt "wall_line_width_0 label"
  494. msgid "Outer Wall Line Width"
  495. msgstr "Ancho de línea de la pared exterior"
  496. msgctxt "wall_line_width_0 description"
  497. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  498. msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle."
  499. msgctxt "wall_line_width_x label"
  500. msgid "Inner Wall(s) Line Width"
  501. msgstr "Ancho de línea de pared(es) interna(s)"
  502. msgctxt "wall_line_width_x description"
  503. msgid "Width of a single wall line for all wall lines except the outermost one."
  504. msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa."
  505. msgctxt "skin_line_width label"
  506. msgid "Top/Bottom Line Width"
  507. msgstr "Ancho de línea superior/inferior"
  508. msgctxt "skin_line_width description"
  509. msgid "Width of a single top/bottom line."
  510. msgstr "Ancho de una sola línea superior/inferior."
  511. msgctxt "infill_line_width label"
  512. msgid "Infill Line Width"
  513. msgstr "Ancho de línea de relleno"
  514. msgctxt "infill_line_width description"
  515. msgid "Width of a single infill line."
  516. msgstr "Ancho de una sola línea de relleno."
  517. msgctxt "skirt_brim_line_width label"
  518. msgid "Skirt/Brim Line Width"
  519. msgstr "Ancho de línea de falda/borde"
  520. msgctxt "skirt_brim_line_width description"
  521. msgid "Width of a single skirt or brim line."
  522. msgstr "Ancho de una sola línea de falda o borde."
  523. msgctxt "support_line_width label"
  524. msgid "Support Line Width"
  525. msgstr "Ancho de línea de soporte"
  526. msgctxt "support_line_width description"
  527. msgid "Width of a single support structure line."
  528. msgstr "Ancho de una sola línea de estructura de soporte."
  529. msgctxt "support_interface_line_width label"
  530. msgid "Support Interface Line Width"
  531. msgstr "Ancho de línea de interfaz de soporte"
  532. msgctxt "support_interface_line_width description"
  533. msgid "Width of a single line of support roof or floor."
  534. msgstr "Ancho de una sola línea de techo o suelo de soporte."
  535. msgctxt "support_roof_line_width label"
  536. msgid "Support Roof Line Width"
  537. msgstr "Ancho de línea del techo de soporte"
  538. msgctxt "support_roof_line_width description"
  539. msgid "Width of a single support roof line."
  540. msgstr "Ancho de una sola línea de techo de soporte."
  541. msgctxt "support_bottom_line_width label"
  542. msgid "Support Floor Line Width"
  543. msgstr "Ancho de línea del suelo de soporte"
  544. msgctxt "support_bottom_line_width description"
  545. msgid "Width of a single support floor line."
  546. msgstr "Ancho de una sola línea de suelo de soporte."
  547. msgctxt "prime_tower_line_width label"
  548. msgid "Prime Tower Line Width"
  549. msgstr "Ancho de línea de la torre auxiliar"
  550. msgctxt "prime_tower_line_width description"
  551. msgid "Width of a single prime tower line."
  552. msgstr "Ancho de una sola línea de la torre auxiliar."
  553. msgctxt "initial_layer_line_width_factor label"
  554. msgid "Initial Layer Line Width"
  555. msgstr "Ancho de línea de la capa inicial"
  556. msgctxt "initial_layer_line_width_factor description"
  557. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  558. msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma."
  559. msgctxt "shell label"
  560. msgid "Walls"
  561. msgstr "Paredes"
  562. msgctxt "shell description"
  563. msgid "Shell"
  564. msgstr "Perímetro"
  565. msgctxt "wall_extruder_nr label"
  566. msgid "Wall Extruder"
  567. msgstr "Extrusor de pared"
  568. msgctxt "wall_extruder_nr description"
  569. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  570. msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple."
  571. msgctxt "wall_0_extruder_nr label"
  572. msgid "Outer Wall Extruder"
  573. msgstr "Extrusor de pared exterior"
  574. msgctxt "wall_0_extruder_nr description"
  575. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  576. msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple."
  577. msgctxt "wall_x_extruder_nr label"
  578. msgid "Inner Wall Extruder"
  579. msgstr "Extrusor de pared interior"
  580. msgctxt "wall_x_extruder_nr description"
  581. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  582. msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple."
  583. msgctxt "wall_thickness label"
  584. msgid "Wall Thickness"
  585. msgstr "Grosor de la pared"
  586. msgctxt "wall_thickness description"
  587. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  588. 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."
  589. msgctxt "wall_line_count label"
  590. msgid "Wall Line Count"
  591. msgstr "Recuento de líneas de pared"
  592. msgctxt "wall_line_count description"
  593. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  594. msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero."
  595. msgctxt "wall_transition_length label"
  596. msgid "Wall Transition Length"
  597. msgstr "Longitud de transición de la pared"
  598. msgctxt "wall_transition_length description"
  599. msgid "When transitioning between different numbers of walls as the part becomes thinner, a certain amount of space is allotted to split or join the wall lines."
  600. msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno."
  601. msgctxt "wall_distribution_count label"
  602. msgid "Wall Distribution Count"
  603. msgstr "Recuento de distribución de pared"
  604. msgctxt "wall_distribution_count description"
  605. msgid "The number of walls, counted from the center, over which the variation needs to be spread. Lower values mean that the outer walls don't change in width."
  606. msgstr "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia."
  607. msgctxt "wall_transition_angle label"
  608. msgid "Wall Transitioning Threshold Angle"
  609. msgstr "Ángulo de umbral de transición de pared"
  610. msgctxt "wall_transition_angle description"
  611. msgid "When to create transitions between even and odd numbers of walls. A wedge shape with an angle greater than this setting will not have transitions and no walls will be printed in the center to fill the remaining space. Reducing this setting reduces the number and length of these center walls, but may leave gaps or overextrude."
  612. msgstr "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión."
  613. msgctxt "wall_transition_filter_distance label"
  614. msgid "Wall Transitioning Filter Distance"
  615. msgstr "Distancia del filtro de transición a la pared"
  616. msgctxt "wall_transition_filter_distance description"
  617. msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance."
  618. msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia."
  619. msgctxt "wall_transition_filter_deviation label"
  620. msgid "Wall Transitioning Filter Margin"
  621. msgstr "Margen del filtro de transición de pared"
  622. msgctxt "wall_transition_filter_deviation description"
  623. msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems."
  624. msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión."
  625. msgctxt "wall_0_wipe_dist label"
  626. msgid "Outer Wall Wipe Distance"
  627. msgstr "Distancia de pasada de la pared exterior"
  628. msgctxt "wall_0_wipe_dist description"
  629. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  630. msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z."
  631. msgctxt "wall_0_inset label"
  632. msgid "Outer Wall Inset"
  633. msgstr "Entrante en la pared exterior"
  634. msgctxt "wall_0_inset description"
  635. 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."
  636. 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."
  637. msgctxt "optimize_wall_printing_order label"
  638. msgid "Optimize Wall Printing Order"
  639. msgstr "Optimizar el orden de impresión de paredes"
  640. msgctxt "optimize_wall_printing_order description"
  641. 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."
  642. 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."
  643. msgctxt "inset_direction label"
  644. msgid "Wall Ordering"
  645. msgstr "Orden de paredes"
  646. msgctxt "inset_direction description"
  647. msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last."
  648. msgstr "Determina el orden de impresión de las paredes. Empezar imprimiendo las paredes exteriores ayuda a la precisión dimensional, ya que evita que los defectos de las paredes interiores se propaguen al exterior. Sin embargo, si las imprime más tarde, podrá apilarlas mejor cuando se impriman los voladizos. Cuando hay una cantidad impar de paredes interiores totales, la «última línea central» siempre se imprime en último lugar."
  649. msgctxt "inset_direction option inside_out"
  650. msgid "Inside To Outside"
  651. msgstr "Del interior al exterior"
  652. msgctxt "inset_direction option outside_in"
  653. msgid "Outside To Inside"
  654. msgstr "Del exterior al interior"
  655. msgctxt "alternate_extra_perimeter label"
  656. msgid "Alternate Extra Wall"
  657. msgstr "Alternar pared adicional"
  658. msgctxt "alternate_extra_perimeter description"
  659. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  660. 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."
  661. msgctxt "min_wall_line_width label"
  662. msgid "Minimum Wall Line Width"
  663. msgstr "Ancho mínimo de la línea perimetral"
  664. msgctxt "min_wall_line_width description"
  665. msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width."
  666. msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral."
  667. msgctxt "min_even_wall_line_width label"
  668. msgid "Minimum Even Wall Line Width"
  669. msgstr "Ancho mínimo de la línea perimetral uniforme"
  670. msgctxt "min_even_wall_line_width description"
  671. msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width."
  672. msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar."
  673. msgctxt "min_odd_wall_line_width label"
  674. msgid "Minimum Odd Wall Line Width"
  675. msgstr "Ancho mínimo de la línea perimetral impar"
  676. msgctxt "min_odd_wall_line_width description"
  677. msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width."
  678. msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par."
  679. msgctxt "fill_outline_gaps label"
  680. msgid "Print Thin Walls"
  681. msgstr "Imprimir paredes finas"
  682. msgctxt "fill_outline_gaps description"
  683. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  684. msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera."
  685. msgctxt "min_feature_size label"
  686. msgid "Minimum Feature Size"
  687. msgstr "Tamaño mínimo de la característica"
  688. msgctxt "min_feature_size description"
  689. msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than the Minimum Feature Size will be widened to the Minimum Wall Line Width."
  690. msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral."
  691. msgctxt "min_bead_width label"
  692. msgid "Minimum Thin Wall Line Width"
  693. msgstr "Ancho mínimo de la línea perimetral delgada"
  694. msgctxt "min_bead_width description"
  695. msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself."
  696. msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica."
  697. msgctxt "xy_offset label"
  698. msgid "Horizontal Expansion"
  699. msgstr "Expansión horizontal"
  700. msgctxt "xy_offset description"
  701. 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."
  702. 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."
  703. msgctxt "xy_offset_layer_0 label"
  704. msgid "Initial Layer Horizontal Expansion"
  705. msgstr "Expansión horizontal de la capa inicial"
  706. msgctxt "xy_offset_layer_0 description"
  707. 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\"."
  708. 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»."
  709. msgctxt "hole_xy_offset label"
  710. msgid "Hole Horizontal Expansion"
  711. msgstr "Expansión horizontal de orificios"
  712. msgctxt "hole_xy_offset description"
  713. msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter."
  714. msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros."
  715. msgctxt "hole_xy_offset_max_diameter label"
  716. msgid "Hole Horizontal Expansion Max Diameter"
  717. msgstr "Diámetro máximo de la expansión horizontal de los orificios"
  718. msgctxt "hole_xy_offset_max_diameter description"
  719. msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded."
  720. msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden."
  721. msgctxt "z_seam_type label"
  722. msgid "Z Seam Alignment"
  723. msgstr "Alineación de costuras en Z"
  724. msgctxt "z_seam_type description"
  725. 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."
  726. 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."
  727. msgctxt "z_seam_type option back"
  728. msgid "User Specified"
  729. msgstr "Especificada por el usuario"
  730. msgctxt "z_seam_type option shortest"
  731. msgid "Shortest"
  732. msgstr "Más corta"
  733. msgctxt "z_seam_type option random"
  734. msgid "Random"
  735. msgstr "Aleatoria"
  736. msgctxt "z_seam_type option sharpest_corner"
  737. msgid "Sharpest Corner"
  738. msgstr "Esquina más pronunciada"
  739. msgctxt "z_seam_position label"
  740. msgid "Z Seam Position"
  741. msgstr "Posición de costura en Z"
  742. msgctxt "z_seam_position description"
  743. msgid "The position near where to start printing each part in a layer."
  744. msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa."
  745. msgctxt "z_seam_position option backleft"
  746. msgid "Back Left"
  747. msgstr "Posterior izquierda"
  748. msgctxt "z_seam_position option back"
  749. msgid "Back"
  750. msgstr "Posterior"
  751. msgctxt "z_seam_position option backright"
  752. msgid "Back Right"
  753. msgstr "Posterior derecha"
  754. msgctxt "z_seam_position option right"
  755. msgid "Right"
  756. msgstr "Derecha"
  757. msgctxt "z_seam_position option frontright"
  758. msgid "Front Right"
  759. msgstr "Delantera derecha"
  760. msgctxt "z_seam_position option front"
  761. msgid "Front"
  762. msgstr "Delantera"
  763. msgctxt "z_seam_position option frontleft"
  764. msgid "Front Left"
  765. msgstr "Delantera izquierda"
  766. msgctxt "z_seam_position option left"
  767. msgid "Left"
  768. msgstr "Izquierda"
  769. msgctxt "z_seam_x label"
  770. msgid "Z Seam X"
  771. msgstr "X de la costura Z"
  772. msgctxt "z_seam_x description"
  773. msgid "The X coordinate of the position near where to start printing each part in a layer."
  774. msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa."
  775. msgctxt "z_seam_y label"
  776. msgid "Z Seam Y"
  777. msgstr "Y de la costura Z"
  778. msgctxt "z_seam_y description"
  779. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  780. msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa."
  781. msgctxt "z_seam_corner label"
  782. msgid "Seam Corner Preference"
  783. msgstr "Preferencia de esquina de costura"
  784. msgctxt "z_seam_corner description"
  785. 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."
  786. 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."
  787. msgctxt "z_seam_corner option z_seam_corner_none"
  788. msgid "None"
  789. msgstr "Ninguno"
  790. msgctxt "z_seam_corner option z_seam_corner_inner"
  791. msgid "Hide Seam"
  792. msgstr "Ocultar costura"
  793. msgctxt "z_seam_corner option z_seam_corner_outer"
  794. msgid "Expose Seam"
  795. msgstr "Mostrar costura"
  796. msgctxt "z_seam_corner option z_seam_corner_any"
  797. msgid "Hide or Expose Seam"
  798. msgstr "Ocultar o mostrar costura"
  799. msgctxt "z_seam_corner option z_seam_corner_weighted"
  800. msgid "Smart Hiding"
  801. msgstr "Costura inteligente"
  802. msgctxt "z_seam_relative label"
  803. msgid "Z Seam Relative"
  804. msgstr "Costuras relativas en Z"
  805. msgctxt "z_seam_relative description"
  806. 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."
  807. 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."
  808. msgctxt "top_bottom label"
  809. msgid "Top/Bottom"
  810. msgstr "Superior o inferior"
  811. msgctxt "top_bottom description"
  812. msgid "Top/Bottom"
  813. msgstr "Superior o inferior"
  814. msgctxt "roofing_extruder_nr label"
  815. msgid "Top Surface Skin Extruder"
  816. msgstr "Extrusor de la superficie superior del forro"
  817. msgctxt "roofing_extruder_nr description"
  818. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  819. msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple."
  820. msgctxt "roofing_layer_count label"
  821. msgid "Top Surface Skin Layers"
  822. msgstr "Capas de la superficie superior del forro"
  823. msgctxt "roofing_layer_count description"
  824. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  825. 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."
  826. msgctxt "roofing_line_width label"
  827. msgid "Top Surface Skin Line Width"
  828. msgstr "Ancho de línea de la superficie superior del forro"
  829. msgctxt "roofing_line_width description"
  830. msgid "Width of a single line of the areas at the top of the print."
  831. msgstr "Ancho de una sola línea de las áreas superiores de la impresión."
  832. msgctxt "roofing_pattern label"
  833. msgid "Top Surface Skin Pattern"
  834. msgstr "Patrón de la superficie superior del forro"
  835. msgctxt "roofing_pattern description"
  836. msgid "The pattern of the top most layers."
  837. msgstr "El patrón de las capas de nivel superior."
  838. msgctxt "roofing_pattern option lines"
  839. msgid "Lines"
  840. msgstr "Líneas"
  841. msgctxt "roofing_pattern option concentric"
  842. msgid "Concentric"
  843. msgstr "Concéntrico"
  844. msgctxt "roofing_pattern option zigzag"
  845. msgid "Zig Zag"
  846. msgstr "Zigzag"
  847. msgctxt "roofing_monotonic label"
  848. msgid "Monotonic Top Surface Order"
  849. msgstr "Orden monotónica de la superficie superior"
  850. msgctxt "roofing_monotonic description"
  851. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  852. msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente."
  853. msgctxt "roofing_angles label"
  854. msgid "Top Surface Skin Line Directions"
  855. msgstr "Direcciones de línea de la superficie superior del forro"
  856. msgctxt "roofing_angles description"
  857. 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)."
  858. 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)."
  859. msgctxt "top_bottom_extruder_nr label"
  860. msgid "Top/Bottom Extruder"
  861. msgstr "Extrusor superior/inferior"
  862. msgctxt "top_bottom_extruder_nr description"
  863. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  864. msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple."
  865. msgctxt "top_bottom_thickness label"
  866. msgid "Top/Bottom Thickness"
  867. msgstr "Grosor superior/inferior"
  868. msgctxt "top_bottom_thickness description"
  869. 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."
  870. 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."
  871. msgctxt "top_thickness label"
  872. msgid "Top Thickness"
  873. msgstr "Grosor superior"
  874. msgctxt "top_thickness description"
  875. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  876. 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."
  877. msgctxt "top_layers label"
  878. msgid "Top Layers"
  879. msgstr "Capas superiores"
  880. msgctxt "top_layers description"
  881. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  882. msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero."
  883. msgctxt "bottom_thickness label"
  884. msgid "Bottom Thickness"
  885. msgstr "Grosor inferior"
  886. msgctxt "bottom_thickness description"
  887. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  888. 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."
  889. msgctxt "bottom_layers label"
  890. msgid "Bottom Layers"
  891. msgstr "Capas inferiores"
  892. msgctxt "bottom_layers description"
  893. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  894. msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero."
  895. msgctxt "initial_bottom_layers label"
  896. msgid "Initial Bottom Layers"
  897. msgstr "Capas inferiores iniciales"
  898. msgctxt "initial_bottom_layers description"
  899. 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."
  900. 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."
  901. msgctxt "top_bottom_pattern label"
  902. msgid "Top/Bottom Pattern"
  903. msgstr "Patrón superior/inferior"
  904. msgctxt "top_bottom_pattern description"
  905. msgid "The pattern of the top/bottom layers."
  906. msgstr "Patrón de las capas superiores/inferiores."
  907. msgctxt "top_bottom_pattern option lines"
  908. msgid "Lines"
  909. msgstr "Líneas"
  910. msgctxt "top_bottom_pattern option concentric"
  911. msgid "Concentric"
  912. msgstr "Concéntrico"
  913. msgctxt "top_bottom_pattern option zigzag"
  914. msgid "Zig Zag"
  915. msgstr "Zigzag"
  916. msgctxt "top_bottom_pattern_0 label"
  917. msgid "Bottom Pattern Initial Layer"
  918. msgstr "Patrón inferior de la capa inicial"
  919. msgctxt "top_bottom_pattern_0 description"
  920. msgid "The pattern on the bottom of the print on the first layer."
  921. msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa."
  922. msgctxt "top_bottom_pattern_0 option lines"
  923. msgid "Lines"
  924. msgstr "Líneas"
  925. msgctxt "top_bottom_pattern_0 option concentric"
  926. msgid "Concentric"
  927. msgstr "Concéntrico"
  928. msgctxt "top_bottom_pattern_0 option zigzag"
  929. msgid "Zig Zag"
  930. msgstr "Zigzag"
  931. msgctxt "connect_skin_polygons label"
  932. msgid "Connect Top/Bottom Polygons"
  933. msgstr "Conectar polígonos superiores/inferiores"
  934. msgctxt "connect_skin_polygons description"
  935. 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."
  936. 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."
  937. msgctxt "skin_monotonic label"
  938. msgid "Monotonic Top/Bottom Order"
  939. msgstr "Orden monotónica superior e inferior"
  940. msgctxt "skin_monotonic description"
  941. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  942. msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente."
  943. msgctxt "skin_angles label"
  944. msgid "Top/Bottom Line Directions"
  945. msgstr "Direcciones de línea superior/inferior"
  946. msgctxt "skin_angles description"
  947. 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)."
  948. 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)."
  949. msgctxt "small_skin_width label"
  950. msgid "Small Top/Bottom Width"
  951. msgstr "Anchura superior/​inferior pequeña"
  952. msgctxt "small_skin_width description"
  953. msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')."
  954. msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")."
  955. msgctxt "small_skin_on_surface label"
  956. msgid "Small Top/Bottom On Surface"
  957. msgstr "Zonas pequeñas superiores/inferiores en superficie"
  958. msgctxt "small_skin_on_surface description"
  959. msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern."
  960. msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado."
  961. msgctxt "skin_no_small_gaps_heuristic label"
  962. msgid "No Skin in Z Gaps"
  963. msgstr "Sin forro en huecos en Z"
  964. msgctxt "skin_no_small_gaps_heuristic description"
  965. 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."
  966. 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."
  967. msgctxt "skin_outline_count label"
  968. msgid "Extra Skin Wall Count"
  969. msgstr "Recuento de paredes adicionales de forro"
  970. msgctxt "skin_outline_count description"
  971. 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."
  972. 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."
  973. msgctxt "ironing_enabled label"
  974. msgid "Enable Ironing"
  975. msgstr "Habilitar alisado"
  976. msgctxt "ironing_enabled description"
  977. 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."
  978. 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."
  979. msgctxt "ironing_only_highest_layer label"
  980. msgid "Iron Only Highest Layer"
  981. msgstr "Planchar solo la capa superior"
  982. msgctxt "ironing_only_highest_layer description"
  983. 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."
  984. 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."
  985. msgctxt "ironing_pattern label"
  986. msgid "Ironing Pattern"
  987. msgstr "Patrón de alisado"
  988. msgctxt "ironing_pattern description"
  989. msgid "The pattern to use for ironing top surfaces."
  990. msgstr "El patrón que se usará para el alisado de las superficies superiores."
  991. msgctxt "ironing_pattern option concentric"
  992. msgid "Concentric"
  993. msgstr "Concéntrico"
  994. msgctxt "ironing_pattern option zigzag"
  995. msgid "Zig Zag"
  996. msgstr "Zigzag"
  997. msgctxt "ironing_monotonic label"
  998. msgid "Monotonic Ironing Order"
  999. msgstr "Orden de planchado monotónico"
  1000. msgctxt "ironing_monotonic description"
  1001. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1002. msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente."
  1003. msgctxt "ironing_line_spacing label"
  1004. msgid "Ironing Line Spacing"
  1005. msgstr "Espaciado de líneas del alisado"
  1006. msgctxt "ironing_line_spacing description"
  1007. msgid "The distance between the lines of ironing."
  1008. msgstr "Distancia entre las líneas del alisado."
  1009. msgctxt "ironing_flow label"
  1010. msgid "Ironing Flow"
  1011. msgstr "Flujo de alisado"
  1012. msgctxt "ironing_flow description"
  1013. 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."
  1014. 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."
  1015. msgctxt "ironing_inset label"
  1016. msgid "Ironing Inset"
  1017. msgstr "Inserción de alisado"
  1018. msgctxt "ironing_inset description"
  1019. 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."
  1020. msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular."
  1021. msgctxt "speed_ironing label"
  1022. msgid "Ironing Speed"
  1023. msgstr "Velocidad de alisado"
  1024. msgctxt "speed_ironing description"
  1025. msgid "The speed at which to pass over the top surface."
  1026. msgstr "Velocidad a la que pasa por encima de la superficie superior."
  1027. msgctxt "acceleration_ironing label"
  1028. msgid "Ironing Acceleration"
  1029. msgstr "Aceleración del alisado"
  1030. msgctxt "acceleration_ironing description"
  1031. msgid "The acceleration with which ironing is performed."
  1032. msgstr "La aceleración a la que se produce el alisado."
  1033. msgctxt "jerk_ironing label"
  1034. msgid "Ironing Jerk"
  1035. msgstr "Impulso de alisado"
  1036. msgctxt "jerk_ironing description"
  1037. msgid "The maximum instantaneous velocity change while performing ironing."
  1038. msgstr "Cambio en la velocidad instantánea máxima durante el alisado."
  1039. msgctxt "skin_overlap label"
  1040. msgid "Skin Overlap Percentage"
  1041. msgstr "Porcentaje de superposición del forro"
  1042. msgctxt "skin_overlap description"
  1043. 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."
  1044. 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."
  1045. msgctxt "skin_overlap_mm label"
  1046. msgid "Skin Overlap"
  1047. msgstr "Superposición del forro"
  1048. msgctxt "skin_overlap_mm description"
  1049. 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."
  1050. 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."
  1051. msgctxt "skin_preshrink label"
  1052. msgid "Skin Removal Width"
  1053. msgstr "Anchura de retirada del forro"
  1054. msgctxt "skin_preshrink description"
  1055. 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."
  1056. 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."
  1057. msgctxt "top_skin_preshrink label"
  1058. msgid "Top Skin Removal Width"
  1059. msgstr "Anchura de retirada del forro superior"
  1060. msgctxt "top_skin_preshrink description"
  1061. 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."
  1062. 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."
  1063. msgctxt "bottom_skin_preshrink label"
  1064. msgid "Bottom Skin Removal Width"
  1065. msgstr "Anchura de retirada del forro inferior"
  1066. msgctxt "bottom_skin_preshrink description"
  1067. 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."
  1068. 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."
  1069. msgctxt "expand_skins_expand_distance label"
  1070. msgid "Skin Expand Distance"
  1071. msgstr "Distancia de expansión del forro"
  1072. msgctxt "expand_skins_expand_distance description"
  1073. 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."
  1074. 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."
  1075. msgctxt "top_skin_expand_distance label"
  1076. msgid "Top Skin Expand Distance"
  1077. msgstr "Distancia de expansión del forro superior"
  1078. msgctxt "top_skin_expand_distance description"
  1079. 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."
  1080. 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."
  1081. msgctxt "bottom_skin_expand_distance label"
  1082. msgid "Bottom Skin Expand Distance"
  1083. msgstr "Distancia de expansión del forro inferior"
  1084. msgctxt "bottom_skin_expand_distance description"
  1085. 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."
  1086. 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."
  1087. msgctxt "max_skin_angle_for_expansion label"
  1088. msgid "Maximum Skin Angle for Expansion"
  1089. msgstr "Ángulo máximo de expansión del forro"
  1090. msgctxt "max_skin_angle_for_expansion description"
  1091. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  1092. msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior."
  1093. msgctxt "min_skin_width_for_expansion label"
  1094. msgid "Minimum Skin Width for Expansion"
  1095. msgstr "Anchura de expansión mínima del forro"
  1096. msgctxt "min_skin_width_for_expansion description"
  1097. 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."
  1098. 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."
  1099. msgctxt "infill label"
  1100. msgid "Infill"
  1101. msgstr "Relleno"
  1102. msgctxt "infill description"
  1103. msgid "Infill"
  1104. msgstr "Relleno"
  1105. msgctxt "infill_extruder_nr label"
  1106. msgid "Infill Extruder"
  1107. msgstr "Extrusor del relleno"
  1108. msgctxt "infill_extruder_nr description"
  1109. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1110. msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple."
  1111. msgctxt "infill_sparse_density label"
  1112. msgid "Infill Density"
  1113. msgstr "Densidad de relleno"
  1114. msgctxt "infill_sparse_density description"
  1115. msgid "Adjusts the density of infill of the print."
  1116. msgstr "Ajusta la densidad del relleno de la impresión."
  1117. msgctxt "infill_line_distance label"
  1118. msgid "Infill Line Distance"
  1119. msgstr "Distancia de línea de relleno"
  1120. msgctxt "infill_line_distance description"
  1121. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1122. 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."
  1123. msgctxt "infill_pattern label"
  1124. msgid "Infill Pattern"
  1125. msgstr "Patrón de relleno"
  1126. msgctxt "infill_pattern description"
  1127. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object."
  1128. msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto."
  1129. msgctxt "infill_pattern option grid"
  1130. msgid "Grid"
  1131. msgstr "Rejilla"
  1132. msgctxt "infill_pattern option lines"
  1133. msgid "Lines"
  1134. msgstr "Líneas"
  1135. msgctxt "infill_pattern option triangles"
  1136. msgid "Triangles"
  1137. msgstr "Triángulos"
  1138. msgctxt "infill_pattern option trihexagon"
  1139. msgid "Tri-Hexagon"
  1140. msgstr "Trihexagonal"
  1141. msgctxt "infill_pattern option cubic"
  1142. msgid "Cubic"
  1143. msgstr "Cúbico"
  1144. msgctxt "infill_pattern option cubicsubdiv"
  1145. msgid "Cubic Subdivision"
  1146. msgstr "Subdivisión cúbica"
  1147. msgctxt "infill_pattern option tetrahedral"
  1148. msgid "Octet"
  1149. msgstr "Octeto"
  1150. msgctxt "infill_pattern option quarter_cubic"
  1151. msgid "Quarter Cubic"
  1152. msgstr "Cúbico bitruncado"
  1153. msgctxt "infill_pattern option concentric"
  1154. msgid "Concentric"
  1155. msgstr "Concéntrico"
  1156. msgctxt "infill_pattern option zigzag"
  1157. msgid "Zig Zag"
  1158. msgstr "Zigzag"
  1159. msgctxt "infill_pattern option cross"
  1160. msgid "Cross"
  1161. msgstr "Cruz"
  1162. msgctxt "infill_pattern option cross_3d"
  1163. msgid "Cross 3D"
  1164. msgstr "Cruz 3D"
  1165. msgctxt "infill_pattern option gyroid"
  1166. msgid "Gyroid"
  1167. msgstr "Giroide"
  1168. msgctxt "infill_pattern option lightning"
  1169. msgid "Lightning"
  1170. msgstr "Rayos"
  1171. msgctxt "zig_zaggify_infill label"
  1172. msgid "Connect Infill Lines"
  1173. msgstr "Conectar líneas de relleno"
  1174. msgctxt "zig_zaggify_infill description"
  1175. 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."
  1176. 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."
  1177. msgctxt "connect_infill_polygons label"
  1178. msgid "Connect Infill Polygons"
  1179. msgstr "Conectar polígonos de relleno"
  1180. msgctxt "connect_infill_polygons description"
  1181. 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."
  1182. 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."
  1183. msgctxt "infill_angles label"
  1184. msgid "Infill Line Directions"
  1185. msgstr "Direcciones de línea de relleno"
  1186. msgctxt "infill_angles description"
  1187. 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)."
  1188. 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)."
  1189. msgctxt "infill_offset_x label"
  1190. msgid "Infill X Offset"
  1191. msgstr "Desplazamiento del relleno sobre el eje X"
  1192. msgctxt "infill_offset_x description"
  1193. msgid "The infill pattern is moved this distance along the X axis."
  1194. msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X."
  1195. msgctxt "infill_offset_y label"
  1196. msgid "Infill Y Offset"
  1197. msgstr "Desplazamiento del relleno sobre el eje Y"
  1198. msgctxt "infill_offset_y description"
  1199. msgid "The infill pattern is moved this distance along the Y axis."
  1200. msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y."
  1201. msgctxt "infill_randomize_start_location label"
  1202. msgid "Randomize Infill Start"
  1203. msgstr "Comienzo de relleno aleatorio"
  1204. msgctxt "infill_randomize_start_location description"
  1205. 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."
  1206. 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."
  1207. msgctxt "infill_multiplier label"
  1208. msgid "Infill Line Multiplier"
  1209. msgstr "Multiplicador de línea de relleno"
  1210. msgctxt "infill_multiplier description"
  1211. 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."
  1212. 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."
  1213. msgctxt "infill_wall_line_count label"
  1214. msgid "Extra Infill Wall Count"
  1215. msgstr "Recuento de líneas de pared adicional"
  1216. msgctxt "infill_wall_line_count description"
  1217. msgid "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.\nThis 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."
  1218. msgstr "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."
  1219. "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."
  1220. msgctxt "sub_div_rad_add label"
  1221. msgid "Cubic Subdivision Shell"
  1222. msgstr "Perímetro de la subdivisión cúbica"
  1223. msgctxt "sub_div_rad_add description"
  1224. 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."
  1225. 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."
  1226. msgctxt "infill_overlap label"
  1227. msgid "Infill Overlap Percentage"
  1228. msgstr "Porcentaje de superposición del relleno"
  1229. msgctxt "infill_overlap description"
  1230. 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."
  1231. 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."
  1232. msgctxt "infill_overlap_mm label"
  1233. msgid "Infill Overlap"
  1234. msgstr "Superposición del relleno"
  1235. msgctxt "infill_overlap_mm description"
  1236. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1237. msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno."
  1238. msgctxt "infill_wipe_dist label"
  1239. msgid "Infill Wipe Distance"
  1240. msgstr "Distancia de pasada de relleno"
  1241. msgctxt "infill_wipe_dist description"
  1242. 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."
  1243. 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."
  1244. msgctxt "infill_sparse_thickness label"
  1245. msgid "Infill Layer Thickness"
  1246. msgstr "Grosor de la capa de relleno"
  1247. msgctxt "infill_sparse_thickness description"
  1248. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1249. 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."
  1250. msgctxt "gradual_infill_steps label"
  1251. msgid "Gradual Infill Steps"
  1252. msgstr "Pasos de relleno necesarios"
  1253. msgctxt "gradual_infill_steps description"
  1254. 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."
  1255. 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."
  1256. msgctxt "gradual_infill_step_height label"
  1257. msgid "Gradual Infill Step Height"
  1258. msgstr "Altura necesaria de los pasos de relleno"
  1259. msgctxt "gradual_infill_step_height description"
  1260. msgid "The height of infill of a given density before switching to half the density."
  1261. msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad."
  1262. msgctxt "infill_before_walls label"
  1263. msgid "Infill Before Walls"
  1264. msgstr "Relleno antes que las paredes"
  1265. msgctxt "infill_before_walls description"
  1266. 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."
  1267. 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."
  1268. msgctxt "min_infill_area label"
  1269. msgid "Minimum Infill Area"
  1270. msgstr "Área de relleno mínima"
  1271. msgctxt "min_infill_area description"
  1272. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1273. msgstr "No genere áreas con un relleno inferior a este (utilice forro)."
  1274. msgctxt "infill_support_enabled label"
  1275. msgid "Infill Support"
  1276. msgstr "Soporte de relleno"
  1277. msgctxt "infill_support_enabled description"
  1278. 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."
  1279. 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."
  1280. msgctxt "infill_support_angle label"
  1281. msgid "Infill Overhang Angle"
  1282. msgstr "Ángulo de voladizo de relleno"
  1283. msgctxt "infill_support_angle description"
  1284. 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."
  1285. 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."
  1286. msgctxt "skin_edge_support_thickness label"
  1287. msgid "Skin Edge Support Thickness"
  1288. msgstr "Espesor de soporte de los bordes del forro"
  1289. msgctxt "skin_edge_support_thickness description"
  1290. msgid "The thickness of the extra infill that supports skin edges."
  1291. msgstr "El grosor del relleno extra que soporta los bordes del forro."
  1292. msgctxt "skin_edge_support_layers label"
  1293. msgid "Skin Edge Support Layers"
  1294. msgstr "Capas de soporte de los bordes del forro"
  1295. msgctxt "skin_edge_support_layers description"
  1296. msgid "The number of infill layers that supports skin edges."
  1297. msgstr "El número de capas de relleno que soportan los bordes del forro."
  1298. msgctxt "lightning_infill_support_angle label"
  1299. msgid "Lightning Infill Support Angle"
  1300. msgstr "Ángulo de sujeción de relleno de rayos"
  1301. msgctxt "lightning_infill_support_angle description"
  1302. msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer."
  1303. msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa."
  1304. msgctxt "lightning_infill_overhang_angle label"
  1305. msgid "Lightning Infill Overhang Angle"
  1306. msgstr "Ángulo del voladizo de relleno de rayos"
  1307. msgctxt "lightning_infill_overhang_angle description"
  1308. msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness."
  1309. msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor."
  1310. msgctxt "lightning_infill_prune_angle label"
  1311. msgid "Lightning Infill Prune Angle"
  1312. msgstr "Ángulo de recorte de relleno de rayos"
  1313. msgctxt "lightning_infill_prune_angle description"
  1314. msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines."
  1315. msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas."
  1316. msgctxt "lightning_infill_straightening_angle label"
  1317. msgid "Lightning Infill Straightening Angle"
  1318. msgstr "Ángulo de enderezamiento de rayos"
  1319. msgctxt "lightning_infill_straightening_angle description"
  1320. msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line."
  1321. msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno."
  1322. msgctxt "material label"
  1323. msgid "Material"
  1324. msgstr "Material"
  1325. msgctxt "material description"
  1326. msgid "Material"
  1327. msgstr "Material"
  1328. msgctxt "default_material_print_temperature label"
  1329. msgid "Default Printing Temperature"
  1330. msgstr "Temperatura de impresión predeterminada"
  1331. msgctxt "default_material_print_temperature description"
  1332. 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"
  1333. 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"
  1334. msgctxt "build_volume_temperature label"
  1335. msgid "Build Volume Temperature"
  1336. msgstr "Temperatura de volumen de impresión"
  1337. msgctxt "build_volume_temperature description"
  1338. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1339. msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará."
  1340. msgctxt "material_print_temperature label"
  1341. msgid "Printing Temperature"
  1342. msgstr "Temperatura de impresión"
  1343. msgctxt "material_print_temperature description"
  1344. msgid "The temperature used for printing."
  1345. msgstr "Temperatura de la impresión."
  1346. msgctxt "material_print_temperature_layer_0 label"
  1347. msgid "Printing Temperature Initial Layer"
  1348. msgstr "Temperatura de impresión de la capa inicial"
  1349. msgctxt "material_print_temperature_layer_0 description"
  1350. msgid "The temperature used for printing the first layer."
  1351. msgstr "La temperatura utilizada para imprimir la primera capa."
  1352. msgctxt "material_initial_print_temperature label"
  1353. msgid "Initial Printing Temperature"
  1354. msgstr "Temperatura de impresión inicial"
  1355. msgctxt "material_initial_print_temperature description"
  1356. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1357. msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión."
  1358. msgctxt "material_final_print_temperature label"
  1359. msgid "Final Printing Temperature"
  1360. msgstr "Temperatura de impresión final"
  1361. msgctxt "material_final_print_temperature description"
  1362. msgid "The temperature to which to already start cooling down just before the end of printing."
  1363. msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión."
  1364. msgctxt "material_extrusion_cool_down_speed label"
  1365. msgid "Extrusion Cool Down Speed Modifier"
  1366. msgstr "Modificador de la velocidad de enfriamiento de la extrusión"
  1367. msgctxt "material_extrusion_cool_down_speed description"
  1368. 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."
  1369. 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."
  1370. msgctxt "default_material_bed_temperature label"
  1371. msgid "Default Build Plate Temperature"
  1372. msgstr "Temperatura predeterminada de la placa de impresión"
  1373. msgctxt "default_material_bed_temperature description"
  1374. 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"
  1375. 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"
  1376. msgctxt "material_bed_temperature label"
  1377. msgid "Build Plate Temperature"
  1378. msgstr "Temperatura de la placa de impresión"
  1379. msgctxt "material_bed_temperature description"
  1380. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1381. msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará."
  1382. msgctxt "material_bed_temperature_layer_0 label"
  1383. msgid "Build Plate Temperature Initial Layer"
  1384. msgstr "Temperatura de la placa de impresión en la capa inicial"
  1385. msgctxt "material_bed_temperature_layer_0 description"
  1386. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  1387. msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa."
  1388. msgctxt "material_adhesion_tendency label"
  1389. msgid "Adhesion Tendency"
  1390. msgstr "Tendencia de adherencia"
  1391. msgctxt "material_adhesion_tendency description"
  1392. msgid "Surface adhesion tendency."
  1393. msgstr "Tendencia de adherencia de la superficie."
  1394. msgctxt "material_surface_energy label"
  1395. msgid "Surface Energy"
  1396. msgstr "Energía de la superficie"
  1397. msgctxt "material_surface_energy description"
  1398. msgid "Surface energy."
  1399. msgstr "Energía de la superficie."
  1400. msgctxt "material_shrinkage_percentage label"
  1401. msgid "Scaling Factor Shrinkage Compensation"
  1402. msgstr "Factor de escala para la compensación de la contracción"
  1403. msgctxt "material_shrinkage_percentage description"
  1404. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1405. msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor."
  1406. msgctxt "material_shrinkage_percentage_xy label"
  1407. msgid "Horizontal Scaling Factor Shrinkage Compensation"
  1408. msgstr "Factor de escala horizontal para la compensación de la contracción"
  1409. msgctxt "material_shrinkage_percentage_xy description"
  1410. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)."
  1411. msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)."
  1412. msgctxt "material_shrinkage_percentage_z label"
  1413. msgid "Vertical Scaling Factor Shrinkage Compensation"
  1414. msgstr "Factor de escala vertical para la compensación de la contracción"
  1415. msgctxt "material_shrinkage_percentage_z description"
  1416. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)."
  1417. msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)."
  1418. msgctxt "material_crystallinity label"
  1419. msgid "Crystalline Material"
  1420. msgstr "Material cristalino"
  1421. msgctxt "material_crystallinity description"
  1422. 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)?"
  1423. 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)?"
  1424. msgctxt "material_anti_ooze_retracted_position label"
  1425. msgid "Anti-ooze Retracted Position"
  1426. msgstr "Velocidad de retracción antirrezumado"
  1427. msgctxt "material_anti_ooze_retracted_position description"
  1428. msgid "How far the material needs to be retracted before it stops oozing."
  1429. msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado."
  1430. msgctxt "material_anti_ooze_retraction_speed label"
  1431. msgid "Anti-ooze Retraction Speed"
  1432. msgstr "Velocidad de retracción antirrezumado"
  1433. msgctxt "material_anti_ooze_retraction_speed description"
  1434. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1435. msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado."
  1436. msgctxt "material_break_preparation_retracted_position label"
  1437. msgid "Break Preparation Retracted Position"
  1438. msgstr "Posición retraída de preparación de rotura"
  1439. msgctxt "material_break_preparation_retracted_position description"
  1440. msgid "How far the filament can be stretched before it breaks, while heated."
  1441. msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta."
  1442. msgctxt "material_break_preparation_speed label"
  1443. msgid "Break Preparation Retraction Speed"
  1444. msgstr "Velocidad de retracción de preparación de rotura"
  1445. msgctxt "material_break_preparation_speed description"
  1446. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1447. msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción."
  1448. msgctxt "material_break_preparation_temperature label"
  1449. msgid "Break Preparation Temperature"
  1450. msgstr "Temperatura de preparación de rotura"
  1451. msgctxt "material_break_preparation_temperature description"
  1452. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1453. msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible."
  1454. msgctxt "material_break_retracted_position label"
  1455. msgid "Break Retracted Position"
  1456. msgstr "Posición retraída de rotura"
  1457. msgctxt "material_break_retracted_position description"
  1458. msgid "How far to retract the filament in order to break it cleanly."
  1459. msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente."
  1460. msgctxt "material_break_speed label"
  1461. msgid "Break Retraction Speed"
  1462. msgstr "Velocidad de retracción de rotura"
  1463. msgctxt "material_break_speed description"
  1464. msgid "The speed at which to retract the filament in order to break it cleanly."
  1465. msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente."
  1466. msgctxt "material_break_temperature label"
  1467. msgid "Break Temperature"
  1468. msgstr "Temperatura de rotura"
  1469. msgctxt "material_break_temperature description"
  1470. msgid "The temperature at which the filament is broken for a clean break."
  1471. msgstr "Temperatura a la que se rompe el filamento de forma limpia."
  1472. msgctxt "material_flush_purge_speed label"
  1473. msgid "Flush Purge Speed"
  1474. msgstr "Velocidad de purga de descarga"
  1475. msgctxt "material_flush_purge_speed description"
  1476. msgid "How fast to prime the material after switching to a different material."
  1477. msgstr "La velocidad de cebado del material después de cambiar a otro material."
  1478. msgctxt "material_flush_purge_length label"
  1479. msgid "Flush Purge Length"
  1480. msgstr "Longitud de purga de descarga"
  1481. msgctxt "material_flush_purge_length description"
  1482. 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."
  1483. 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."
  1484. msgctxt "material_end_of_filament_purge_speed label"
  1485. msgid "End of Filament Purge Speed"
  1486. msgstr "Velocidad de purga del extremo del filamento"
  1487. msgctxt "material_end_of_filament_purge_speed description"
  1488. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1489. msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material."
  1490. msgctxt "material_end_of_filament_purge_length label"
  1491. msgid "End of Filament Purge Length"
  1492. msgstr "Longitud de purga del extremo del filamento"
  1493. msgctxt "material_end_of_filament_purge_length description"
  1494. 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."
  1495. 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."
  1496. msgctxt "material_maximum_park_duration label"
  1497. msgid "Maximum Park Duration"
  1498. msgstr "Duración máxima de estacionamiento"
  1499. msgctxt "material_maximum_park_duration description"
  1500. msgid "How long the material can be kept out of dry storage safely."
  1501. msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura."
  1502. msgctxt "material_no_load_move_factor label"
  1503. msgid "No Load Move Factor"
  1504. msgstr "Factor de desplazamiento sin carga"
  1505. msgctxt "material_no_load_move_factor description"
  1506. 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."
  1507. 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."
  1508. msgctxt "material_flow label"
  1509. msgid "Flow"
  1510. msgstr "Flujo"
  1511. msgctxt "material_flow description"
  1512. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1513. msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor."
  1514. msgctxt "wall_material_flow label"
  1515. msgid "Wall Flow"
  1516. msgstr "Flujo de pared"
  1517. msgctxt "wall_material_flow description"
  1518. msgid "Flow compensation on wall lines."
  1519. msgstr "Compensación de flujo en líneas de pared."
  1520. msgctxt "wall_0_material_flow label"
  1521. msgid "Outer Wall Flow"
  1522. msgstr "Flujo de pared exterior"
  1523. msgctxt "wall_0_material_flow description"
  1524. msgid "Flow compensation on the outermost wall line."
  1525. msgstr "Compensación de flujo en la línea de pared más externa."
  1526. msgctxt "wall_x_material_flow label"
  1527. msgid "Inner Wall(s) Flow"
  1528. msgstr "Flujo de pared o paredes interiores"
  1529. msgctxt "wall_x_material_flow description"
  1530. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1531. msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa."
  1532. msgctxt "wall_0_material_flow_roofing label"
  1533. msgid "Top Surface Outer Wall Flow"
  1534. msgstr "Flujo de la pared exterior de la superficie superior"
  1535. msgctxt "wall_0_material_flow_roofing description"
  1536. msgid "Flow compensation on the top surface outermost wall line."
  1537. msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior."
  1538. msgctxt "wall_x_material_flow_roofing label"
  1539. msgid "Top Surface Inner Wall(s) Flow"
  1540. msgstr "Flujo de la pared interior de la superficie superior"
  1541. msgctxt "wall_x_material_flow_roofing description"
  1542. msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one."
  1543. msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa."
  1544. msgctxt "skin_material_flow label"
  1545. msgid "Top/Bottom Flow"
  1546. msgstr "Flujo superior o inferior"
  1547. msgctxt "skin_material_flow description"
  1548. msgid "Flow compensation on top/bottom lines."
  1549. msgstr "Compensación de flujo en las líneas superiores o inferiores."
  1550. msgctxt "roofing_material_flow label"
  1551. msgid "Top Surface Skin Flow"
  1552. msgstr "Flujo de forro de superficie superior"
  1553. msgctxt "roofing_material_flow description"
  1554. msgid "Flow compensation on lines of the areas at the top of the print."
  1555. msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión."
  1556. msgctxt "infill_material_flow label"
  1557. msgid "Infill Flow"
  1558. msgstr "Flujo de relleno"
  1559. msgctxt "infill_material_flow description"
  1560. msgid "Flow compensation on infill lines."
  1561. msgstr "Compensación de flujo en líneas de relleno."
  1562. msgctxt "skirt_brim_material_flow label"
  1563. msgid "Skirt/Brim Flow"
  1564. msgstr "Flujo de falda/borde"
  1565. msgctxt "skirt_brim_material_flow description"
  1566. msgid "Flow compensation on skirt or brim lines."
  1567. msgstr "Compensación de flujo en líneas de falda o borde."
  1568. msgctxt "support_material_flow label"
  1569. msgid "Support Flow"
  1570. msgstr "Flujo de soporte"
  1571. msgctxt "support_material_flow description"
  1572. msgid "Flow compensation on support structure lines."
  1573. msgstr "Compensación de flujo en líneas de estructura de soporte."
  1574. msgctxt "support_interface_material_flow label"
  1575. msgid "Support Interface Flow"
  1576. msgstr "Flujo de interfaz de soporte"
  1577. msgctxt "support_interface_material_flow description"
  1578. msgid "Flow compensation on lines of support roof or floor."
  1579. msgstr "Compensación de flujo en líneas de techo o suelo de soporte."
  1580. msgctxt "support_roof_material_flow label"
  1581. msgid "Support Roof Flow"
  1582. msgstr "Flujo de techo de soporte"
  1583. msgctxt "support_roof_material_flow description"
  1584. msgid "Flow compensation on support roof lines."
  1585. msgstr "Compensación de flujo en líneas de techo de soporte."
  1586. msgctxt "support_bottom_material_flow label"
  1587. msgid "Support Floor Flow"
  1588. msgstr "Flujo de suelo de soporte"
  1589. msgctxt "support_bottom_material_flow description"
  1590. msgid "Flow compensation on support floor lines."
  1591. msgstr "Compensación de flujo en líneas de suelo de soporte."
  1592. msgctxt "prime_tower_flow label"
  1593. msgid "Prime Tower Flow"
  1594. msgstr "Flujo de la torre auxiliar"
  1595. msgctxt "prime_tower_flow description"
  1596. msgid "Flow compensation on prime tower lines."
  1597. msgstr "Compensación de flujo en líneas de la torre auxiliar."
  1598. msgctxt "material_flow_layer_0 label"
  1599. msgid "Initial Layer Flow"
  1600. msgstr "Flujo de capa inicial"
  1601. msgctxt "material_flow_layer_0 description"
  1602. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1603. msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor."
  1604. msgctxt "wall_x_material_flow_layer_0 label"
  1605. msgid "Initial Layer Inner Wall Flow"
  1606. msgstr "Flujo de pared interior de la capa inicial"
  1607. msgctxt "wall_x_material_flow_layer_0 description"
  1608. msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer"
  1609. msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa."
  1610. msgctxt "wall_0_material_flow_layer_0 label"
  1611. msgid "Initial Layer Outer Wall Flow"
  1612. msgstr "Flujo de pared exterior de la capa inicial"
  1613. msgctxt "wall_0_material_flow_layer_0 description"
  1614. msgid "Flow compensation on the outermost wall line of the first layer."
  1615. msgstr "Compensación de flujo en la línea de pared más externa de la primera capa."
  1616. msgctxt "skin_material_flow_layer_0 label"
  1617. msgid "Initial Layer Bottom Flow"
  1618. msgstr "Flujo inferior de la capa inicial"
  1619. msgctxt "skin_material_flow_layer_0 description"
  1620. msgid "Flow compensation on bottom lines of the first layer"
  1621. msgstr "Compensación de flujo en las líneas inferiores de la primera capa"
  1622. msgctxt "material_standby_temperature label"
  1623. msgid "Standby Temperature"
  1624. msgstr "Temperatura en modo de espera"
  1625. msgctxt "material_standby_temperature description"
  1626. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1627. msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión."
  1628. msgctxt "material_is_support_material label"
  1629. msgid "Is support material"
  1630. msgstr "Es material de soporte"
  1631. msgctxt "material_is_support_material description"
  1632. msgid "Is this material typically used as a support material during printing."
  1633. msgstr "Este material se utiliza normalmente como material de soporte durante la impresión."
  1634. msgctxt "speed label"
  1635. msgid "Speed"
  1636. msgstr "Velocidad"
  1637. msgctxt "speed description"
  1638. msgid "Speed"
  1639. msgstr "Velocidad"
  1640. msgctxt "speed_print label"
  1641. msgid "Print Speed"
  1642. msgstr "Velocidad de impresión"
  1643. msgctxt "speed_print description"
  1644. msgid "The speed at which printing happens."
  1645. msgstr "Velocidad a la que se realiza la impresión."
  1646. msgctxt "speed_infill label"
  1647. msgid "Infill Speed"
  1648. msgstr "Velocidad de relleno"
  1649. msgctxt "speed_infill description"
  1650. msgid "The speed at which infill is printed."
  1651. msgstr "Velocidad a la que se imprime el relleno."
  1652. msgctxt "speed_wall label"
  1653. msgid "Wall Speed"
  1654. msgstr "Velocidad de pared"
  1655. msgctxt "speed_wall description"
  1656. msgid "The speed at which the walls are printed."
  1657. msgstr "Velocidad a la que se imprimen las paredes."
  1658. msgctxt "speed_wall_0 label"
  1659. msgid "Outer Wall Speed"
  1660. msgstr "Velocidad de pared exterior"
  1661. msgctxt "speed_wall_0 description"
  1662. 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."
  1663. 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."
  1664. msgctxt "speed_wall_x label"
  1665. msgid "Inner Wall Speed"
  1666. msgstr "Velocidad de pared interior"
  1667. msgctxt "speed_wall_x description"
  1668. 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."
  1669. 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."
  1670. msgctxt "speed_wall_0_roofing label"
  1671. msgid "Top Surface Outer Wall Speed"
  1672. msgstr "Velocidad de la pared externa de la superficie superior"
  1673. msgctxt "speed_wall_0_roofing description"
  1674. msgid "The speed at which the top surface outermost wall is printed."
  1675. msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior."
  1676. msgctxt "speed_wall_x_roofing label"
  1677. msgid "Top Surface Inner Wall Speed"
  1678. msgstr "Velocidad de la pared interna de la superficie superior"
  1679. msgctxt "speed_wall_x_roofing description"
  1680. msgid "The speed at which the top surface inner walls are printed."
  1681. msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior."
  1682. msgctxt "speed_roofing label"
  1683. msgid "Top Surface Skin Speed"
  1684. msgstr "Velocidad de la superficie superior del forro"
  1685. msgctxt "speed_roofing description"
  1686. msgid "The speed at which top surface skin layers are printed."
  1687. msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro."
  1688. msgctxt "speed_topbottom label"
  1689. msgid "Top/Bottom Speed"
  1690. msgstr "Velocidad superior/inferior"
  1691. msgctxt "speed_topbottom description"
  1692. msgid "The speed at which top/bottom layers are printed."
  1693. msgstr "Velocidad a la que se imprimen las capas superiores/inferiores."
  1694. msgctxt "speed_support label"
  1695. msgid "Support Speed"
  1696. msgstr "Velocidad de soporte"
  1697. msgctxt "speed_support description"
  1698. 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."
  1699. 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."
  1700. msgctxt "speed_support_infill label"
  1701. msgid "Support Infill Speed"
  1702. msgstr "Velocidad de relleno del soporte"
  1703. msgctxt "speed_support_infill description"
  1704. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1705. msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad."
  1706. msgctxt "speed_support_interface label"
  1707. msgid "Support Interface Speed"
  1708. msgstr "Velocidad de interfaz del soporte"
  1709. msgctxt "speed_support_interface description"
  1710. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1711. msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo."
  1712. msgctxt "speed_support_roof label"
  1713. msgid "Support Roof Speed"
  1714. msgstr "Velocidad del techo del soporte"
  1715. msgctxt "speed_support_roof description"
  1716. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1717. msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo."
  1718. msgctxt "speed_support_bottom label"
  1719. msgid "Support Floor Speed"
  1720. msgstr "Velocidad del suelo del soporte"
  1721. msgctxt "speed_support_bottom description"
  1722. 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."
  1723. 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."
  1724. msgctxt "speed_prime_tower label"
  1725. msgid "Prime Tower Speed"
  1726. msgstr "Velocidad de la torre auxiliar"
  1727. msgctxt "speed_prime_tower description"
  1728. 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."
  1729. 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."
  1730. msgctxt "speed_travel label"
  1731. msgid "Travel Speed"
  1732. msgstr "Velocidad de desplazamiento"
  1733. msgctxt "speed_travel description"
  1734. msgid "The speed at which travel moves are made."
  1735. msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento."
  1736. msgctxt "speed_layer_0 label"
  1737. msgid "Initial Layer Speed"
  1738. msgstr "Velocidad de capa inicial"
  1739. msgctxt "speed_layer_0 description"
  1740. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  1741. msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa."
  1742. msgctxt "speed_print_layer_0 label"
  1743. msgid "Initial Layer Print Speed"
  1744. msgstr "Velocidad de impresión de la capa inicial"
  1745. msgctxt "speed_print_layer_0 description"
  1746. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1747. 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."
  1748. msgctxt "speed_travel_layer_0 label"
  1749. msgid "Initial Layer Travel Speed"
  1750. msgstr "Velocidad de desplazamiento de la capa inicial"
  1751. msgctxt "speed_travel_layer_0 description"
  1752. 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."
  1753. 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."
  1754. msgctxt "skirt_brim_speed label"
  1755. msgid "Skirt/Brim Speed"
  1756. msgstr "Velocidad de falda/borde"
  1757. msgctxt "skirt_brim_speed description"
  1758. 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."
  1759. 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."
  1760. msgctxt "speed_z_hop label"
  1761. msgid "Z Hop Speed"
  1762. msgstr "Velocidad del salto en Z"
  1763. msgctxt "speed_z_hop description"
  1764. 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."
  1765. 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."
  1766. msgctxt "speed_slowdown_layers label"
  1767. msgid "Number of Slower Layers"
  1768. msgstr "Número de capas más lentas"
  1769. msgctxt "speed_slowdown_layers description"
  1770. 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."
  1771. 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."
  1772. msgctxt "speed_equalize_flow_width_factor label"
  1773. msgid "Flow Equalization Ratio"
  1774. msgstr "Proporción de ecualización de flujo"
  1775. msgctxt "speed_equalize_flow_width_factor description"
  1776. msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines."
  1777. msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas."
  1778. msgctxt "acceleration_enabled label"
  1779. msgid "Enable Acceleration Control"
  1780. msgstr "Activar control de aceleración"
  1781. msgctxt "acceleration_enabled description"
  1782. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1783. 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."
  1784. msgctxt "acceleration_travel_enabled label"
  1785. msgid "Enable Travel Acceleration"
  1786. msgstr "Habilitar aceleración de desplazamiento"
  1787. msgctxt "acceleration_travel_enabled description"
  1788. msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination."
  1789. msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino."
  1790. msgctxt "acceleration_print label"
  1791. msgid "Print Acceleration"
  1792. msgstr "Aceleración de la impresión"
  1793. msgctxt "acceleration_print description"
  1794. msgid "The acceleration with which printing happens."
  1795. msgstr "Aceleración a la que se realiza la impresión."
  1796. msgctxt "acceleration_infill label"
  1797. msgid "Infill Acceleration"
  1798. msgstr "Aceleración del relleno"
  1799. msgctxt "acceleration_infill description"
  1800. msgid "The acceleration with which infill is printed."
  1801. msgstr "Aceleración a la que se imprime el relleno."
  1802. msgctxt "acceleration_wall label"
  1803. msgid "Wall Acceleration"
  1804. msgstr "Aceleración de la pared"
  1805. msgctxt "acceleration_wall description"
  1806. msgid "The acceleration with which the walls are printed."
  1807. msgstr "Aceleración a la que se imprimen las paredes."
  1808. msgctxt "acceleration_wall_0 label"
  1809. msgid "Outer Wall Acceleration"
  1810. msgstr "Aceleración de pared exterior"
  1811. msgctxt "acceleration_wall_0 description"
  1812. msgid "The acceleration with which the outermost walls are printed."
  1813. msgstr "Aceleración a la que se imprimen las paredes exteriores."
  1814. msgctxt "acceleration_wall_x label"
  1815. msgid "Inner Wall Acceleration"
  1816. msgstr "Aceleración de pared interior"
  1817. msgctxt "acceleration_wall_x description"
  1818. msgid "The acceleration with which all inner walls are printed."
  1819. msgstr "Aceleración a la que se imprimen las paredes interiores."
  1820. msgctxt "acceleration_wall_0_roofing label"
  1821. msgid "Top Surface Outer Wall Acceleration"
  1822. msgstr "Aceleración de la superficie externa superior de la pared"
  1823. msgctxt "acceleration_wall_0_roofing description"
  1824. msgid "The acceleration with which the top surface outermost walls are printed."
  1825. msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior."
  1826. msgctxt "acceleration_wall_x_roofing label"
  1827. msgid "Top Surface Inner Wall Acceleration"
  1828. msgstr "Aceleración de la superficie interna superior de la pared"
  1829. msgctxt "acceleration_wall_x_roofing description"
  1830. msgid "The acceleration with which the top surface inner walls are printed."
  1831. msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior."
  1832. msgctxt "acceleration_roofing label"
  1833. msgid "Top Surface Skin Acceleration"
  1834. msgstr "Aceleración de la superficie superior del forro"
  1835. msgctxt "acceleration_roofing description"
  1836. msgid "The acceleration with which top surface skin layers are printed."
  1837. msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro."
  1838. msgctxt "acceleration_topbottom label"
  1839. msgid "Top/Bottom Acceleration"
  1840. msgstr "Aceleración superior/inferior"
  1841. msgctxt "acceleration_topbottom description"
  1842. msgid "The acceleration with which top/bottom layers are printed."
  1843. msgstr "Aceleración a la que se imprimen las capas superiores/inferiores."
  1844. msgctxt "acceleration_support label"
  1845. msgid "Support Acceleration"
  1846. msgstr "Aceleración de soporte"
  1847. msgctxt "acceleration_support description"
  1848. msgid "The acceleration with which the support structure is printed."
  1849. msgstr "Aceleración a la que se imprime la estructura de soporte."
  1850. msgctxt "acceleration_support_infill label"
  1851. msgid "Support Infill Acceleration"
  1852. msgstr "Aceleración de relleno de soporte"
  1853. msgctxt "acceleration_support_infill description"
  1854. msgid "The acceleration with which the infill of support is printed."
  1855. msgstr "Aceleración a la que se imprime el relleno de soporte."
  1856. msgctxt "acceleration_support_interface label"
  1857. msgid "Support Interface Acceleration"
  1858. msgstr "Aceleración de interfaz de soporte"
  1859. msgctxt "acceleration_support_interface description"
  1860. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1861. 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."
  1862. msgctxt "acceleration_support_roof label"
  1863. msgid "Support Roof Acceleration"
  1864. msgstr "Aceleración del techo del soporte"
  1865. msgctxt "acceleration_support_roof description"
  1866. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1867. msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo."
  1868. msgctxt "acceleration_support_bottom label"
  1869. msgid "Support Floor Acceleration"
  1870. msgstr "Aceleración del suelo del soporte"
  1871. msgctxt "acceleration_support_bottom description"
  1872. 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."
  1873. 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."
  1874. msgctxt "acceleration_prime_tower label"
  1875. msgid "Prime Tower Acceleration"
  1876. msgstr "Aceleración de la torre auxiliar"
  1877. msgctxt "acceleration_prime_tower description"
  1878. msgid "The acceleration with which the prime tower is printed."
  1879. msgstr "Aceleración a la que se imprime la torre auxiliar."
  1880. msgctxt "acceleration_travel label"
  1881. msgid "Travel Acceleration"
  1882. msgstr "Aceleración de desplazamiento"
  1883. msgctxt "acceleration_travel description"
  1884. msgid "The acceleration with which travel moves are made."
  1885. msgstr "Aceleración a la que se realizan los movimientos de desplazamiento."
  1886. msgctxt "acceleration_layer_0 label"
  1887. msgid "Initial Layer Acceleration"
  1888. msgstr "Aceleración de la capa inicial"
  1889. msgctxt "acceleration_layer_0 description"
  1890. msgid "The acceleration for the initial layer."
  1891. msgstr "Aceleración de la capa inicial."
  1892. msgctxt "acceleration_print_layer_0 label"
  1893. msgid "Initial Layer Print Acceleration"
  1894. msgstr "Aceleración de impresión de la capa inicial"
  1895. msgctxt "acceleration_print_layer_0 description"
  1896. msgid "The acceleration during the printing of the initial layer."
  1897. msgstr "Aceleración durante la impresión de la capa inicial."
  1898. msgctxt "acceleration_travel_layer_0 label"
  1899. msgid "Initial Layer Travel Acceleration"
  1900. msgstr "Aceleración de desplazamiento de la capa inicial"
  1901. msgctxt "acceleration_travel_layer_0 description"
  1902. msgid "The acceleration for travel moves in the initial layer."
  1903. msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial."
  1904. msgctxt "acceleration_skirt_brim label"
  1905. msgid "Skirt/Brim Acceleration"
  1906. msgstr "Aceleración de falda/borde"
  1907. msgctxt "acceleration_skirt_brim description"
  1908. 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."
  1909. 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."
  1910. msgctxt "jerk_enabled label"
  1911. msgid "Enable Jerk Control"
  1912. msgstr "Activar control de impulso"
  1913. msgctxt "jerk_enabled description"
  1914. 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."
  1915. 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."
  1916. msgctxt "jerk_travel_enabled label"
  1917. msgid "Enable Travel Jerk"
  1918. msgstr "Activar impulso de desplazamiento"
  1919. msgctxt "jerk_travel_enabled description"
  1920. msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination."
  1921. msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino."
  1922. msgctxt "jerk_print label"
  1923. msgid "Print Jerk"
  1924. msgstr "Impulso de impresión"
  1925. msgctxt "jerk_print description"
  1926. msgid "The maximum instantaneous velocity change of the print head."
  1927. msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión."
  1928. msgctxt "jerk_infill label"
  1929. msgid "Infill Jerk"
  1930. msgstr "Impulso de relleno"
  1931. msgctxt "jerk_infill description"
  1932. msgid "The maximum instantaneous velocity change with which infill is printed."
  1933. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno."
  1934. msgctxt "jerk_wall label"
  1935. msgid "Wall Jerk"
  1936. msgstr "Impulso de pared"
  1937. msgctxt "jerk_wall description"
  1938. msgid "The maximum instantaneous velocity change with which the walls are printed."
  1939. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes."
  1940. msgctxt "jerk_wall_0 label"
  1941. msgid "Outer Wall Jerk"
  1942. msgstr "Impulso de pared exterior"
  1943. msgctxt "jerk_wall_0 description"
  1944. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  1945. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores."
  1946. msgctxt "jerk_wall_x label"
  1947. msgid "Inner Wall Jerk"
  1948. msgstr "Impulso de pared interior"
  1949. msgctxt "jerk_wall_x description"
  1950. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  1951. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores."
  1952. msgctxt "jerk_wall_0_roofing label"
  1953. msgid "Top Surface Outer Wall Jerk"
  1954. msgstr "Sacudida de la pared interior de la superficie superior"
  1955. msgctxt "jerk_wall_0_roofing description"
  1956. msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed."
  1957. msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior."
  1958. msgctxt "jerk_wall_x_roofing label"
  1959. msgid "Top Surface Inner Wall Jerk"
  1960. msgstr "Sacudida de la pared exterior más externa de la superficie superior"
  1961. msgctxt "jerk_wall_x_roofing description"
  1962. msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed."
  1963. msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior."
  1964. msgctxt "jerk_roofing label"
  1965. msgid "Top Surface Skin Jerk"
  1966. msgstr "Impulso de la superficie superior del forro"
  1967. msgctxt "jerk_roofing description"
  1968. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  1969. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro."
  1970. msgctxt "jerk_topbottom label"
  1971. msgid "Top/Bottom Jerk"
  1972. msgstr "Impulso superior/inferior"
  1973. msgctxt "jerk_topbottom description"
  1974. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  1975. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores."
  1976. msgctxt "jerk_support label"
  1977. msgid "Support Jerk"
  1978. msgstr "Impulso de soporte"
  1979. msgctxt "jerk_support description"
  1980. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  1981. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte."
  1982. msgctxt "jerk_support_infill label"
  1983. msgid "Support Infill Jerk"
  1984. msgstr "Impulso de relleno de soporte"
  1985. msgctxt "jerk_support_infill description"
  1986. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  1987. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte."
  1988. msgctxt "jerk_support_interface label"
  1989. msgid "Support Interface Jerk"
  1990. msgstr "Impulso de interfaz de soporte"
  1991. msgctxt "jerk_support_interface description"
  1992. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  1993. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte."
  1994. msgctxt "jerk_support_roof label"
  1995. msgid "Support Roof Jerk"
  1996. msgstr "Impulso del techo del soporte"
  1997. msgctxt "jerk_support_roof description"
  1998. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  1999. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte."
  2000. msgctxt "jerk_support_bottom label"
  2001. msgid "Support Floor Jerk"
  2002. msgstr "Impulso del suelo del soporte"
  2003. msgctxt "jerk_support_bottom description"
  2004. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2005. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte."
  2006. msgctxt "jerk_prime_tower label"
  2007. msgid "Prime Tower Jerk"
  2008. msgstr "Impulso de la torre auxiliar"
  2009. msgctxt "jerk_prime_tower description"
  2010. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2011. msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar."
  2012. msgctxt "jerk_travel label"
  2013. msgid "Travel Jerk"
  2014. msgstr "Impulso de desplazamiento"
  2015. msgctxt "jerk_travel description"
  2016. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2017. msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento."
  2018. msgctxt "jerk_layer_0 label"
  2019. msgid "Initial Layer Jerk"
  2020. msgstr "Impulso de capa inicial"
  2021. msgctxt "jerk_layer_0 description"
  2022. msgid "The print maximum instantaneous velocity change for the initial layer."
  2023. msgstr "Cambio en la velocidad instantánea máxima de la capa inicial."
  2024. msgctxt "jerk_print_layer_0 label"
  2025. msgid "Initial Layer Print Jerk"
  2026. msgstr "Impulso de impresión de capa inicial"
  2027. msgctxt "jerk_print_layer_0 description"
  2028. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2029. msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial."
  2030. msgctxt "jerk_travel_layer_0 label"
  2031. msgid "Initial Layer Travel Jerk"
  2032. msgstr "Impulso de desplazamiento de capa inicial"
  2033. msgctxt "jerk_travel_layer_0 description"
  2034. msgid "The acceleration for travel moves in the initial layer."
  2035. msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial."
  2036. msgctxt "jerk_skirt_brim label"
  2037. msgid "Skirt/Brim Jerk"
  2038. msgstr "Impulso de falda/borde"
  2039. msgctxt "jerk_skirt_brim description"
  2040. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2041. msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde."
  2042. msgctxt "travel label"
  2043. msgid "Travel"
  2044. msgstr "Desplazamiento"
  2045. msgctxt "travel description"
  2046. msgid "travel"
  2047. msgstr "desplazamiento"
  2048. msgctxt "retraction_enable label"
  2049. msgid "Enable Retraction"
  2050. msgstr "Habilitar la retracción"
  2051. msgctxt "retraction_enable description"
  2052. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2053. msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa."
  2054. msgctxt "retract_at_layer_change label"
  2055. msgid "Retract at Layer Change"
  2056. msgstr "Retracción en el cambio de capa"
  2057. msgctxt "retract_at_layer_change description"
  2058. msgid "Retract the filament when the nozzle is moving to the next layer."
  2059. msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa."
  2060. msgctxt "retraction_amount label"
  2061. msgid "Retraction Distance"
  2062. msgstr "Distancia de retracción"
  2063. msgctxt "retraction_amount description"
  2064. msgid "The length of material retracted during a retraction move."
  2065. msgstr "Longitud del material retraído durante un movimiento de retracción."
  2066. msgctxt "retraction_speed label"
  2067. msgid "Retraction Speed"
  2068. msgstr "Velocidad de retracción"
  2069. msgctxt "retraction_speed description"
  2070. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2071. msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción."
  2072. msgctxt "retraction_retract_speed label"
  2073. msgid "Retraction Retract Speed"
  2074. msgstr "Velocidad de retracción"
  2075. msgctxt "retraction_retract_speed description"
  2076. msgid "The speed at which the filament is retracted during a retraction move."
  2077. msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción."
  2078. msgctxt "retraction_prime_speed label"
  2079. msgid "Retraction Prime Speed"
  2080. msgstr "Velocidad de cebado de retracción"
  2081. msgctxt "retraction_prime_speed description"
  2082. msgid "The speed at which the filament is primed during a retraction move."
  2083. msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción."
  2084. msgctxt "retraction_extra_prime_amount label"
  2085. msgid "Retraction Extra Prime Amount"
  2086. msgstr "Cantidad de cebado adicional de retracción"
  2087. msgctxt "retraction_extra_prime_amount description"
  2088. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2089. msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí."
  2090. msgctxt "retraction_min_travel label"
  2091. msgid "Retraction Minimum Travel"
  2092. msgstr "Desplazamiento mínimo de retracción"
  2093. msgctxt "retraction_min_travel description"
  2094. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2095. 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."
  2096. msgctxt "retraction_count_max label"
  2097. msgid "Maximum Retraction Count"
  2098. msgstr "Recuento máximo de retracciones"
  2099. msgctxt "retraction_count_max description"
  2100. 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."
  2101. 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."
  2102. msgctxt "retraction_extrusion_window label"
  2103. msgid "Minimum Extrusion Distance Window"
  2104. msgstr "Ventana de distancia mínima de extrusión"
  2105. msgctxt "retraction_extrusion_window description"
  2106. 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."
  2107. 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."
  2108. msgctxt "retraction_combing label"
  2109. msgid "Combing Mode"
  2110. msgstr "Modo Peinada"
  2111. msgctxt "retraction_combing description"
  2112. 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."
  2113. 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."
  2114. msgctxt "retraction_combing option off"
  2115. msgid "Off"
  2116. msgstr "Apagado"
  2117. msgctxt "retraction_combing option all"
  2118. msgid "All"
  2119. msgstr "Todo"
  2120. msgctxt "retraction_combing option no_outer_surfaces"
  2121. msgid "Not on Outer Surface"
  2122. msgstr "No en la superficie exterior"
  2123. msgctxt "retraction_combing option noskin"
  2124. msgid "Not in Skin"
  2125. msgstr "No en el forro"
  2126. msgctxt "retraction_combing option infill"
  2127. msgid "Within Infill"
  2128. msgstr "Sobre el relleno"
  2129. msgctxt "retraction_combing_max_distance label"
  2130. msgid "Max Comb Distance With No Retract"
  2131. msgstr "Distancia de peinada máxima sin retracción"
  2132. msgctxt "retraction_combing_max_distance description"
  2133. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  2134. msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción."
  2135. msgctxt "travel_retract_before_outer_wall label"
  2136. msgid "Retract Before Outer Wall"
  2137. msgstr "Retracción antes de la pared exterior"
  2138. msgctxt "travel_retract_before_outer_wall description"
  2139. msgid "Always retract when moving to start an outer wall."
  2140. msgstr "Retraer siempre al desplazarse para empezar una pared exterior."
  2141. msgctxt "travel_avoid_other_parts label"
  2142. msgid "Avoid Printed Parts When Traveling"
  2143. msgstr "Evitar partes impresas al desplazarse"
  2144. msgctxt "travel_avoid_other_parts description"
  2145. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2146. 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."
  2147. msgctxt "travel_avoid_supports label"
  2148. msgid "Avoid Supports When Traveling"
  2149. msgstr "Evitar soportes al desplazarse"
  2150. msgctxt "travel_avoid_supports description"
  2151. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2152. 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."
  2153. msgctxt "travel_avoid_distance label"
  2154. msgid "Travel Avoid Distance"
  2155. msgstr "Distancia para evitar al desplazarse"
  2156. msgctxt "travel_avoid_distance description"
  2157. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2158. msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento."
  2159. msgctxt "layer_start_x label"
  2160. msgid "Layer Start X"
  2161. msgstr "X de inicio de capa"
  2162. msgctxt "layer_start_x description"
  2163. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2164. msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa."
  2165. msgctxt "layer_start_y label"
  2166. msgid "Layer Start Y"
  2167. msgstr "Y de inicio de capa"
  2168. msgctxt "layer_start_y description"
  2169. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2170. msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa."
  2171. msgctxt "retraction_hop_enabled label"
  2172. msgid "Z Hop When Retracted"
  2173. msgstr "Salto en Z en la retracción"
  2174. msgctxt "retraction_hop_enabled description"
  2175. 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."
  2176. 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."
  2177. msgctxt "retraction_hop_only_when_collides label"
  2178. msgid "Z Hop Only Over Printed Parts"
  2179. msgstr "Salto en Z solo en las partes impresas"
  2180. msgctxt "retraction_hop_only_when_collides description"
  2181. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2182. 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."
  2183. msgctxt "retraction_hop label"
  2184. msgid "Z Hop Height"
  2185. msgstr "Altura del salto en Z"
  2186. msgctxt "retraction_hop description"
  2187. msgid "The height difference when performing a Z Hop."
  2188. msgstr "Diferencia de altura cuando se realiza un salto en Z."
  2189. msgctxt "retraction_hop_after_extruder_switch label"
  2190. msgid "Z Hop After Extruder Switch"
  2191. msgstr "Salto en Z tras cambio de extrusor"
  2192. msgctxt "retraction_hop_after_extruder_switch description"
  2193. 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."
  2194. 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."
  2195. msgctxt "retraction_hop_after_extruder_switch_height label"
  2196. msgid "Z Hop After Extruder Switch Height"
  2197. msgstr "Salto en Z tras altura de cambio de extrusor"
  2198. msgctxt "retraction_hop_after_extruder_switch_height description"
  2199. msgid "The height difference when performing a Z Hop after extruder switch."
  2200. msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor."
  2201. msgctxt "cooling label"
  2202. msgid "Cooling"
  2203. msgstr "Refrigeración"
  2204. msgctxt "cooling description"
  2205. msgid "Cooling"
  2206. msgstr "Refrigeración"
  2207. msgctxt "cool_fan_enabled label"
  2208. msgid "Enable Print Cooling"
  2209. msgstr "Activar refrigeración de impresión"
  2210. msgctxt "cool_fan_enabled description"
  2211. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2212. 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."
  2213. msgctxt "cool_fan_speed label"
  2214. msgid "Fan Speed"
  2215. msgstr "Velocidad del ventilador"
  2216. msgctxt "cool_fan_speed description"
  2217. msgid "The speed at which the print cooling fans spin."
  2218. msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión."
  2219. msgctxt "cool_fan_speed_min label"
  2220. msgid "Regular Fan Speed"
  2221. msgstr "Velocidad normal del ventilador"
  2222. msgctxt "cool_fan_speed_min description"
  2223. 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."
  2224. 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."
  2225. msgctxt "cool_fan_speed_max label"
  2226. msgid "Maximum Fan Speed"
  2227. msgstr "Velocidad máxima del ventilador"
  2228. msgctxt "cool_fan_speed_max description"
  2229. 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."
  2230. 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."
  2231. msgctxt "cool_min_layer_time_fan_speed_max label"
  2232. msgid "Regular/Maximum Fan Speed Threshold"
  2233. msgstr "Umbral de velocidad normal/máxima del ventilador"
  2234. msgctxt "cool_min_layer_time_fan_speed_max description"
  2235. 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."
  2236. 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."
  2237. msgctxt "cool_fan_speed_0 label"
  2238. msgid "Initial Fan Speed"
  2239. msgstr "Velocidad inicial del ventilador"
  2240. msgctxt "cool_fan_speed_0 description"
  2241. 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."
  2242. 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."
  2243. msgctxt "cool_fan_full_at_height label"
  2244. msgid "Regular Fan Speed at Height"
  2245. msgstr "Velocidad normal del ventilador a altura"
  2246. msgctxt "cool_fan_full_at_height description"
  2247. 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."
  2248. 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."
  2249. msgctxt "cool_fan_full_layer label"
  2250. msgid "Regular Fan Speed at Layer"
  2251. msgstr "Velocidad normal del ventilador por capa"
  2252. msgctxt "cool_fan_full_layer description"
  2253. 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."
  2254. 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."
  2255. msgctxt "cool_min_layer_time label"
  2256. msgid "Minimum Layer Time"
  2257. msgstr "Tiempo mínimo de capa"
  2258. msgctxt "cool_min_layer_time description"
  2259. 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."
  2260. 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."
  2261. msgctxt "cool_min_speed label"
  2262. msgid "Minimum Speed"
  2263. msgstr "Velocidad mínima"
  2264. msgctxt "cool_min_speed description"
  2265. 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."
  2266. 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."
  2267. msgctxt "cool_lift_head label"
  2268. msgid "Lift Head"
  2269. msgstr "Levantar el cabezal"
  2270. msgctxt "cool_lift_head description"
  2271. 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."
  2272. 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."
  2273. msgctxt "cool_min_temperature label"
  2274. msgid "Small Layer Printing Temperature"
  2275. msgstr "Temperatura de impresión de capas pequeñas"
  2276. msgctxt "cool_min_temperature description"
  2277. msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time."
  2278. msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa."
  2279. msgctxt "support label"
  2280. msgid "Support"
  2281. msgstr "Soporte"
  2282. msgctxt "support description"
  2283. msgid "Support"
  2284. msgstr "Soporte"
  2285. msgctxt "support_enable label"
  2286. msgid "Generate Support"
  2287. msgstr "Generar soporte"
  2288. msgctxt "support_enable description"
  2289. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2290. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  2291. msgctxt "support_extruder_nr label"
  2292. msgid "Support Extruder"
  2293. msgstr "Extrusor del soporte"
  2294. msgctxt "support_extruder_nr description"
  2295. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2296. msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple."
  2297. msgctxt "support_infill_extruder_nr label"
  2298. msgid "Support Infill Extruder"
  2299. msgstr "Extrusor del relleno de soporte"
  2300. msgctxt "support_infill_extruder_nr description"
  2301. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2302. msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple."
  2303. msgctxt "support_extruder_nr_layer_0 label"
  2304. msgid "First Layer Support Extruder"
  2305. msgstr "Extrusor del soporte de la primera capa"
  2306. msgctxt "support_extruder_nr_layer_0 description"
  2307. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2308. msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple."
  2309. msgctxt "support_interface_extruder_nr label"
  2310. msgid "Support Interface Extruder"
  2311. msgstr "Extrusor de la interfaz de soporte"
  2312. msgctxt "support_interface_extruder_nr description"
  2313. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2314. msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple."
  2315. msgctxt "support_roof_extruder_nr label"
  2316. msgid "Support Roof Extruder"
  2317. msgstr "Extrusor del techo del soporte"
  2318. msgctxt "support_roof_extruder_nr description"
  2319. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2320. msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple."
  2321. msgctxt "support_bottom_extruder_nr label"
  2322. msgid "Support Floor Extruder"
  2323. msgstr "Extrusor del suelo del soporte"
  2324. msgctxt "support_bottom_extruder_nr description"
  2325. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2326. msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple."
  2327. msgctxt "support_structure label"
  2328. msgid "Support Structure"
  2329. msgstr "Estructura de soporte"
  2330. msgctxt "support_structure description"
  2331. 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."
  2332. 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 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 que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión."
  2333. msgctxt "support_structure option normal"
  2334. msgid "Normal"
  2335. msgstr "Normal"
  2336. msgctxt "support_structure option tree"
  2337. msgid "Tree"
  2338. msgstr "Árbol"
  2339. msgctxt "support_tree_angle label"
  2340. msgid "Maximum Branch Angle"
  2341. msgstr "Ángulo máximo de la rama"
  2342. msgctxt "support_tree_angle description"
  2343. msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  2344. msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más."
  2345. msgctxt "support_tree_branch_diameter label"
  2346. msgid "Branch Diameter"
  2347. msgstr "Diámetro de la rama"
  2348. msgctxt "support_tree_branch_diameter description"
  2349. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2350. 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."
  2351. msgctxt "support_tree_max_diameter label"
  2352. msgid "Trunk Diameter"
  2353. msgstr "Diámetro del tronco"
  2354. msgctxt "support_tree_max_diameter description"
  2355. msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate."
  2356. msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión."
  2357. msgctxt "support_tree_branch_diameter_angle label"
  2358. msgid "Branch Diameter Angle"
  2359. msgstr "Ángulo del diámetro de la rama"
  2360. msgctxt "support_tree_branch_diameter_angle description"
  2361. 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."
  2362. 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."
  2363. msgctxt "support_type label"
  2364. msgid "Support Placement"
  2365. msgstr "Colocación del soporte"
  2366. msgctxt "support_type option buildplate"
  2367. msgid "Touching Buildplate"
  2368. msgstr "Tocando la placa de impresión"
  2369. msgctxt "support_type option everywhere"
  2370. msgid "Everywhere"
  2371. msgstr "En todos sitios"
  2372. msgctxt "support_tree_angle_slow label"
  2373. msgid "Preferred Branch Angle"
  2374. msgstr "Ángulo de rama preferido"
  2375. msgctxt "support_tree_angle_slow description"
  2376. msgid "The preferred angle of the branches, when they do not have to avoid the model. Use a lower angle to make them more vertical and more stable. Use a higher angle for branches to merge faster."
  2377. msgstr "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido."
  2378. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label"
  2379. msgid "Diameter Increase To Model"
  2380. msgstr "Aumento del diámetro para el modelo"
  2381. msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description"
  2382. msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model"
  2383. msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta"
  2384. msgctxt "support_tree_min_height_to_model label"
  2385. msgid "Minimum Height To Model"
  2386. msgstr "Altura mínima para el modelo"
  2387. msgctxt "support_tree_min_height_to_model description"
  2388. msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof."
  2389. msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte."
  2390. msgctxt "support_tree_bp_diameter label"
  2391. msgid "Initial Layer Diameter"
  2392. msgstr "Diámetro de la capa inicial"
  2393. msgctxt "support_tree_bp_diameter description"
  2394. msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion."
  2395. msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma."
  2396. msgctxt "support_tree_top_rate label"
  2397. msgid "Branch Density"
  2398. msgstr "Densidad de la rama"
  2399. msgctxt "support_tree_top_rate description"
  2400. msgid "Adjusts the density of the support structure used to generate the tips of the branches. A higher value results in better overhangs, but the supports are harder to remove. Use Support Roof for very high values or ensure support density is similarly high at the top."
  2401. msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior."
  2402. msgctxt "support_tree_tip_diameter label"
  2403. msgid "Tip Diameter"
  2404. msgstr "Diámetro de la punta"
  2405. msgctxt "support_tree_tip_diameter description"
  2406. msgid "The diameter of the top of the tip of the branches of tree support."
  2407. msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol."
  2408. msgctxt "support_tree_limit_branch_reach label"
  2409. msgid "Limit Branch Reach"
  2410. msgstr "Alcance límite de la rama"
  2411. msgctxt "support_tree_limit_branch_reach description"
  2412. msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)"
  2413. msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)"
  2414. msgctxt "support_tree_branch_reach_limit label"
  2415. msgid "Optimal Branch Range"
  2416. msgstr "Espaciado óptimo de ramas"
  2417. msgctxt "support_tree_branch_reach_limit description"
  2418. msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) "
  2419. msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)"
  2420. msgctxt "support_tree_rest_preference label"
  2421. msgid "Rest Preference"
  2422. msgstr "Preferencia de apoyo"
  2423. msgctxt "support_tree_rest_preference description"
  2424. msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model."
  2425. msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo."
  2426. msgctxt "support_tree_rest_preference option buildplate"
  2427. msgid "On buildplate when possible"
  2428. msgstr "En la placa de impresión, cuando sea posible"
  2429. msgctxt "support_tree_rest_preference option graceful"
  2430. msgid "On model if required"
  2431. msgstr "Sobre el modelo, en caso de que sea necesario"
  2432. msgctxt "support_angle label"
  2433. msgid "Support Overhang Angle"
  2434. msgstr "Ángulo de voladizo del soporte"
  2435. msgctxt "support_angle description"
  2436. 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."
  2437. 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."
  2438. msgctxt "support_pattern label"
  2439. msgid "Support Pattern"
  2440. msgstr "Patrón del soporte"
  2441. msgctxt "support_pattern description"
  2442. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2443. 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."
  2444. msgctxt "support_pattern option lines"
  2445. msgid "Lines"
  2446. msgstr "Líneas"
  2447. msgctxt "support_pattern option grid"
  2448. msgid "Grid"
  2449. msgstr "Rejilla"
  2450. msgctxt "support_pattern option triangles"
  2451. msgid "Triangles"
  2452. msgstr "Triángulos"
  2453. msgctxt "support_pattern option concentric"
  2454. msgid "Concentric"
  2455. msgstr "Concéntrico"
  2456. msgctxt "support_pattern option zigzag"
  2457. msgid "Zig Zag"
  2458. msgstr "Zigzag"
  2459. msgctxt "support_pattern option cross"
  2460. msgid "Cross"
  2461. msgstr "Cruz"
  2462. msgctxt "support_pattern option gyroid"
  2463. msgid "Gyroid"
  2464. msgstr "Giroide"
  2465. msgctxt "support_wall_count label"
  2466. msgid "Support Wall Line Count"
  2467. msgstr "Recuento de líneas de pared del soporte"
  2468. msgctxt "support_wall_count description"
  2469. 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."
  2470. 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."
  2471. msgctxt "support_interface_wall_count label"
  2472. msgid "Support Interface Wall Line Count"
  2473. msgstr "Recuento de líneas de pared de la interfaz de soporte"
  2474. msgctxt "support_interface_wall_count description"
  2475. msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2476. msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado."
  2477. msgctxt "support_roof_wall_count label"
  2478. msgid "Support Roof Wall Line Count"
  2479. msgstr "Recuento de líneas de pared del techo de soporte"
  2480. msgctxt "support_roof_wall_count description"
  2481. msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2482. msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado."
  2483. msgctxt "support_bottom_wall_count label"
  2484. msgid "Support Bottom Wall Line Count"
  2485. msgstr "Recuento de líneas de pared de la base de soporte"
  2486. msgctxt "support_bottom_wall_count description"
  2487. msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2488. msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado."
  2489. msgctxt "zig_zaggify_support label"
  2490. msgid "Connect Support Lines"
  2491. msgstr "Conectar líneas del soporte"
  2492. msgctxt "zig_zaggify_support description"
  2493. 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."
  2494. 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."
  2495. msgctxt "support_connect_zigzags label"
  2496. msgid "Connect Support ZigZags"
  2497. msgstr "Conectar zigzags del soporte"
  2498. msgctxt "support_connect_zigzags description"
  2499. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2500. msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag."
  2501. msgctxt "support_infill_rate label"
  2502. msgid "Support Density"
  2503. msgstr "Densidad del soporte"
  2504. msgctxt "support_infill_rate description"
  2505. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2506. 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."
  2507. msgctxt "support_line_distance label"
  2508. msgid "Support Line Distance"
  2509. msgstr "Distancia de línea del soporte"
  2510. msgctxt "support_line_distance description"
  2511. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2512. msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte."
  2513. msgctxt "support_initial_layer_line_distance label"
  2514. msgid "Initial Layer Support Line Distance"
  2515. msgstr "Distancia de línea del soporte de la capa inicial"
  2516. msgctxt "support_initial_layer_line_distance description"
  2517. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  2518. msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte."
  2519. msgctxt "support_infill_angles label"
  2520. msgid "Support Infill Line Directions"
  2521. msgstr "Dirección de línea de relleno de soporte"
  2522. msgctxt "support_infill_angles description"
  2523. 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."
  2524. 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."
  2525. msgctxt "support_brim_enable label"
  2526. msgid "Enable Support Brim"
  2527. msgstr "Habilitar borde de soporte"
  2528. msgctxt "support_brim_enable description"
  2529. 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."
  2530. 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."
  2531. msgctxt "support_brim_width label"
  2532. msgid "Support Brim Width"
  2533. msgstr "Ancho del borde de soporte"
  2534. msgctxt "support_brim_width description"
  2535. 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."
  2536. 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."
  2537. msgctxt "support_brim_line_count label"
  2538. msgid "Support Brim Line Count"
  2539. msgstr "Recuento de líneas del borde de soporte"
  2540. msgctxt "support_brim_line_count description"
  2541. 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."
  2542. 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."
  2543. msgctxt "support_z_distance label"
  2544. msgid "Support Z Distance"
  2545. msgstr "Distancia en Z del soporte"
  2546. msgctxt "support_z_distance description"
  2547. 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. The topmost support layer below the model might be a fraction of regular layers."
  2548. msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares."
  2549. msgctxt "support_top_distance label"
  2550. msgid "Support Top Distance"
  2551. msgstr "Distancia superior del soporte"
  2552. msgctxt "support_top_distance description"
  2553. msgid "Distance from the top of the support to the print."
  2554. msgstr "Distancia desde la parte superior del soporte a la impresión."
  2555. msgctxt "support_bottom_distance label"
  2556. msgid "Support Bottom Distance"
  2557. msgstr "Distancia inferior del soporte"
  2558. msgctxt "support_bottom_distance description"
  2559. msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height."
  2560. msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa."
  2561. msgctxt "support_xy_distance label"
  2562. msgid "Support X/Y Distance"
  2563. msgstr "Distancia X/Y del soporte"
  2564. msgctxt "support_xy_distance description"
  2565. msgid "Distance of the support structure from the print in the X/Y directions."
  2566. msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y."
  2567. msgctxt "support_xy_overrides_z label"
  2568. msgid "Support Distance Priority"
  2569. msgstr "Prioridad de las distancias del soporte"
  2570. msgctxt "support_xy_overrides_z description"
  2571. 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."
  2572. 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."
  2573. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2574. msgid "X/Y overrides Z"
  2575. msgstr "X/Y sobre Z"
  2576. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2577. msgid "Z overrides X/Y"
  2578. msgstr "Z sobre X/Y"
  2579. msgctxt "support_xy_distance_overhang label"
  2580. msgid "Minimum Support X/Y Distance"
  2581. msgstr "Distancia X/Y mínima del soporte"
  2582. msgctxt "support_xy_distance_overhang description"
  2583. msgid "Distance of the support structure from the overhang in the X/Y directions."
  2584. msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y."
  2585. msgctxt "support_bottom_stair_step_height label"
  2586. msgid "Support Stair Step Height"
  2587. msgstr "Altura del escalón de la escalera del soporte"
  2588. msgctxt "support_bottom_stair_step_height description"
  2589. 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."
  2590. 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."
  2591. msgctxt "support_bottom_stair_step_width label"
  2592. msgid "Support Stair Step Maximum Width"
  2593. msgstr "Ancho máximo del escalón de la escalera del soporte"
  2594. msgctxt "support_bottom_stair_step_width description"
  2595. 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."
  2596. 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."
  2597. msgctxt "support_bottom_stair_step_min_slope label"
  2598. msgid "Support Stair Step Minimum Slope Angle"
  2599. msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte"
  2600. msgctxt "support_bottom_stair_step_min_slope description"
  2601. 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."
  2602. 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 en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo."
  2603. msgctxt "support_join_distance label"
  2604. msgid "Support Join Distance"
  2605. msgstr "Distancia de unión del soporte"
  2606. msgctxt "support_join_distance description"
  2607. 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."
  2608. 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."
  2609. msgctxt "support_offset label"
  2610. msgid "Support Horizontal Expansion"
  2611. msgstr "Expansión horizontal del soporte"
  2612. msgctxt "support_offset description"
  2613. 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."
  2614. 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."
  2615. msgctxt "support_infill_sparse_thickness label"
  2616. msgid "Support Infill Layer Thickness"
  2617. msgstr "Grosor de la capa de relleno de soporte"
  2618. msgctxt "support_infill_sparse_thickness description"
  2619. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2620. 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."
  2621. msgctxt "gradual_support_infill_steps label"
  2622. msgid "Gradual Support Infill Steps"
  2623. msgstr "Escalones de relleno de soporte"
  2624. msgctxt "gradual_support_infill_steps description"
  2625. 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."
  2626. 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."
  2627. msgctxt "gradual_support_infill_step_height label"
  2628. msgid "Gradual Support Infill Step Height"
  2629. msgstr "Altura necesaria de los escalones de relleno de soporte"
  2630. msgctxt "gradual_support_infill_step_height description"
  2631. msgid "The height of support infill of a given density before switching to half the density."
  2632. msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad."
  2633. msgctxt "minimum_support_area label"
  2634. msgid "Minimum Support Area"
  2635. msgstr "Área del soporte mínima"
  2636. msgctxt "minimum_support_area description"
  2637. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  2638. 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."
  2639. msgctxt "support_interface_enable label"
  2640. msgid "Enable Support Interface"
  2641. msgstr "Habilitar interfaz del soporte"
  2642. msgctxt "support_interface_enable description"
  2643. 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."
  2644. 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."
  2645. msgctxt "support_roof_enable label"
  2646. msgid "Enable Support Roof"
  2647. msgstr "Habilitar techo del soporte"
  2648. msgctxt "support_roof_enable description"
  2649. 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."
  2650. 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."
  2651. msgctxt "support_bottom_enable label"
  2652. msgid "Enable Support Floor"
  2653. msgstr "Habilitar suelo del soporte"
  2654. msgctxt "support_bottom_enable description"
  2655. 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."
  2656. 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."
  2657. msgctxt "support_interface_height label"
  2658. msgid "Support Interface Thickness"
  2659. msgstr "Grosor de la interfaz del soporte"
  2660. msgctxt "support_interface_height description"
  2661. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2662. msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior."
  2663. msgctxt "support_roof_height label"
  2664. msgid "Support Roof Thickness"
  2665. msgstr "Grosor del techo del soporte"
  2666. msgctxt "support_roof_height description"
  2667. 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."
  2668. 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."
  2669. msgctxt "support_bottom_height label"
  2670. msgid "Support Floor Thickness"
  2671. msgstr "Grosor del suelo del soporte"
  2672. msgctxt "support_bottom_height description"
  2673. 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."
  2674. 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."
  2675. msgctxt "support_interface_density label"
  2676. msgid "Support Interface Density"
  2677. msgstr "Densidad de la interfaz de soporte"
  2678. msgctxt "support_interface_density description"
  2679. 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."
  2680. 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."
  2681. msgctxt "support_roof_density label"
  2682. msgid "Support Roof Density"
  2683. msgstr "Densidad del techo del soporte"
  2684. msgctxt "support_roof_density description"
  2685. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2686. 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."
  2687. msgctxt "support_roof_line_distance label"
  2688. msgid "Support Roof Line Distance"
  2689. msgstr "Distancia de línea del techo del soporte"
  2690. msgctxt "support_roof_line_distance description"
  2691. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2692. 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."
  2693. msgctxt "support_bottom_density label"
  2694. msgid "Support Floor Density"
  2695. msgstr "Densidad del suelo del soporte"
  2696. msgctxt "support_bottom_density description"
  2697. 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."
  2698. 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."
  2699. msgctxt "support_bottom_line_distance label"
  2700. msgid "Support Floor Line Distance"
  2701. msgstr "Distancia de línea del suelo de soporte"
  2702. msgctxt "support_bottom_line_distance description"
  2703. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2704. 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."
  2705. msgctxt "support_interface_pattern label"
  2706. msgid "Support Interface Pattern"
  2707. msgstr "Patrón de la interfaz de soporte"
  2708. msgctxt "support_interface_pattern description"
  2709. msgid "The pattern with which the interface of the support with the model is printed."
  2710. msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo."
  2711. msgctxt "support_interface_pattern option lines"
  2712. msgid "Lines"
  2713. msgstr "Líneas"
  2714. msgctxt "support_interface_pattern option grid"
  2715. msgid "Grid"
  2716. msgstr "Rejilla"
  2717. msgctxt "support_interface_pattern option triangles"
  2718. msgid "Triangles"
  2719. msgstr "Triángulos"
  2720. msgctxt "support_interface_pattern option concentric"
  2721. msgid "Concentric"
  2722. msgstr "Concéntrico"
  2723. msgctxt "support_interface_pattern option zigzag"
  2724. msgid "Zig Zag"
  2725. msgstr "Zigzag"
  2726. msgctxt "support_roof_pattern label"
  2727. msgid "Support Roof Pattern"
  2728. msgstr "Patrón del techo del soporte"
  2729. msgctxt "support_roof_pattern description"
  2730. msgid "The pattern with which the roofs of the support are printed."
  2731. msgstr "Patrón con el que se imprimen los techos del soporte."
  2732. msgctxt "support_roof_pattern option lines"
  2733. msgid "Lines"
  2734. msgstr "Líneas"
  2735. msgctxt "support_roof_pattern option grid"
  2736. msgid "Grid"
  2737. msgstr "Rejilla"
  2738. msgctxt "support_roof_pattern option triangles"
  2739. msgid "Triangles"
  2740. msgstr "Triángulos"
  2741. msgctxt "support_roof_pattern option concentric"
  2742. msgid "Concentric"
  2743. msgstr "Concéntrico"
  2744. msgctxt "support_roof_pattern option zigzag"
  2745. msgid "Zig Zag"
  2746. msgstr "Zigzag"
  2747. msgctxt "support_bottom_pattern label"
  2748. msgid "Support Floor Pattern"
  2749. msgstr "Patrón del suelo del soporte"
  2750. msgctxt "support_bottom_pattern description"
  2751. msgid "The pattern with which the floors of the support are printed."
  2752. msgstr "Patrón con el que se imprimen los suelos del soporte."
  2753. msgctxt "support_bottom_pattern option lines"
  2754. msgid "Lines"
  2755. msgstr "Líneas"
  2756. msgctxt "support_bottom_pattern option grid"
  2757. msgid "Grid"
  2758. msgstr "Rejilla"
  2759. msgctxt "support_bottom_pattern option triangles"
  2760. msgid "Triangles"
  2761. msgstr "Triángulos"
  2762. msgctxt "support_bottom_pattern option concentric"
  2763. msgid "Concentric"
  2764. msgstr "Concéntrico"
  2765. msgctxt "support_bottom_pattern option zigzag"
  2766. msgid "Zig Zag"
  2767. msgstr "Zigzag"
  2768. msgctxt "minimum_interface_area label"
  2769. msgid "Minimum Support Interface Area"
  2770. msgstr "Área de la interfaz de soporte mínima"
  2771. msgctxt "minimum_interface_area description"
  2772. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  2773. 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."
  2774. msgctxt "minimum_roof_area label"
  2775. msgid "Minimum Support Roof Area"
  2776. msgstr "Área de los techos del soporte mínima"
  2777. msgctxt "minimum_roof_area description"
  2778. 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."
  2779. 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."
  2780. msgctxt "minimum_bottom_area label"
  2781. msgid "Minimum Support Floor Area"
  2782. msgstr "Área de los suelos del soporte mínima"
  2783. msgctxt "minimum_bottom_area description"
  2784. 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."
  2785. 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."
  2786. msgctxt "support_interface_offset label"
  2787. msgid "Support Interface Horizontal Expansion"
  2788. msgstr "Expansión horizontal de la interfaz de soporte"
  2789. msgctxt "support_interface_offset description"
  2790. msgid "Amount of offset applied to the support interface polygons."
  2791. msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte."
  2792. msgctxt "support_roof_offset label"
  2793. msgid "Support Roof Horizontal Expansion"
  2794. msgstr "Expansión horizontal de los techos del soporte"
  2795. msgctxt "support_roof_offset description"
  2796. msgid "Amount of offset applied to the roofs of the support."
  2797. msgstr "Cantidad de desplazamiento aplicado a los techos del soporte."
  2798. msgctxt "support_bottom_offset label"
  2799. msgid "Support Floor Horizontal Expansion"
  2800. msgstr "Expansión horizontal de los suelos de soporte"
  2801. msgctxt "support_bottom_offset description"
  2802. msgid "Amount of offset applied to the floors of the support."
  2803. msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte."
  2804. msgctxt "support_interface_priority label"
  2805. msgid "Support Interface Priority"
  2806. msgstr "Prioridad de la interfaz de soporte"
  2807. msgctxt "support_interface_priority description"
  2808. msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof."
  2809. msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte."
  2810. msgctxt "support_interface_priority option support_area_overwrite_interface_area"
  2811. msgid "Support preferred"
  2812. msgstr "Soporte preferido"
  2813. msgctxt "support_interface_priority option interface_area_overwrite_support_area"
  2814. msgid "Interface preferred"
  2815. msgstr "Interfaz preferida"
  2816. msgctxt "support_interface_priority option support_lines_overwrite_interface_area"
  2817. msgid "Support lines preferred"
  2818. msgstr "Líneas de soporte preferidas"
  2819. msgctxt "support_interface_priority option interface_lines_overwrite_support_area"
  2820. msgid "Interface lines preferred"
  2821. msgstr "Líneas de interfaz preferidas"
  2822. msgctxt "support_interface_priority option nothing"
  2823. msgid "Both overlap"
  2824. msgstr "Ambos se solapan"
  2825. msgctxt "support_interface_angles label"
  2826. msgid "Support Interface Line Directions"
  2827. msgstr "Direcciones de línea de interfaz de soporte"
  2828. msgctxt "support_interface_angles description"
  2829. 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)."
  2830. 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)."
  2831. msgctxt "support_roof_angles label"
  2832. msgid "Support Roof Line Directions"
  2833. msgstr "Direcciones de línea del techo de soporte"
  2834. msgctxt "support_roof_angles description"
  2835. 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)."
  2836. 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)."
  2837. msgctxt "support_bottom_angles label"
  2838. msgid "Support Floor Line Directions"
  2839. msgstr "Direcciones de línea del suelo de soporte"
  2840. msgctxt "support_bottom_angles description"
  2841. 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)."
  2842. 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)."
  2843. msgctxt "support_fan_enable label"
  2844. msgid "Fan Speed Override"
  2845. msgstr "Alteración de velocidad del ventilador"
  2846. msgctxt "support_fan_enable description"
  2847. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  2848. 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."
  2849. msgctxt "support_supported_skin_fan_speed label"
  2850. msgid "Supported Skin Fan Speed"
  2851. msgstr "Velocidad del ventilador para forro con soporte"
  2852. msgctxt "support_supported_skin_fan_speed description"
  2853. 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."
  2854. 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."
  2855. msgctxt "support_use_towers label"
  2856. msgid "Use Towers"
  2857. msgstr "Usar torres"
  2858. msgctxt "support_use_towers description"
  2859. 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."
  2860. 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."
  2861. msgctxt "support_tower_diameter label"
  2862. msgid "Tower Diameter"
  2863. msgstr "Diámetro de la torre"
  2864. msgctxt "support_tower_diameter description"
  2865. msgid "The diameter of a special tower."
  2866. msgstr "Diámetro de una torre especial."
  2867. msgctxt "support_tower_maximum_supported_diameter label"
  2868. msgid "Maximum Tower-Supported Diameter"
  2869. msgstr "Diámetro máximo soportado por la torre"
  2870. msgctxt "support_tower_maximum_supported_diameter description"
  2871. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2872. 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."
  2873. msgctxt "support_tower_roof_angle label"
  2874. msgid "Tower Roof Angle"
  2875. msgstr "Ángulo del techo de la torre"
  2876. msgctxt "support_tower_roof_angle description"
  2877. 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."
  2878. 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."
  2879. msgctxt "support_mesh_drop_down label"
  2880. msgid "Drop Down Support Mesh"
  2881. msgstr "Malla de soporte desplegable"
  2882. msgctxt "support_mesh_drop_down description"
  2883. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2884. msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte."
  2885. msgctxt "support_meshes_present label"
  2886. msgid "Scene Has Support Meshes"
  2887. msgstr "La escena tiene mallas de soporte"
  2888. msgctxt "support_meshes_present description"
  2889. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  2890. msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura."
  2891. msgctxt "platform_adhesion label"
  2892. msgid "Build Plate Adhesion"
  2893. msgstr "Adherencia de la placa de impresión"
  2894. msgctxt "platform_adhesion description"
  2895. msgid "Adhesion"
  2896. msgstr "Adherencia"
  2897. msgctxt "prime_blob_enable label"
  2898. msgid "Enable Prime Blob"
  2899. msgstr "Activar gotas de cebado"
  2900. msgctxt "prime_blob_enable description"
  2901. 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."
  2902. 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."
  2903. msgctxt "extruder_prime_pos_x label"
  2904. msgid "Extruder Prime X Position"
  2905. msgstr "Posición de preparación del extrusor sobre el eje X"
  2906. msgctxt "extruder_prime_pos_x description"
  2907. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2908. msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión."
  2909. msgctxt "extruder_prime_pos_y label"
  2910. msgid "Extruder Prime Y Position"
  2911. msgstr "Posición de preparación del extrusor sobre el eje Y"
  2912. msgctxt "extruder_prime_pos_y description"
  2913. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2914. msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión."
  2915. msgctxt "adhesion_type label"
  2916. msgid "Build Plate Adhesion Type"
  2917. msgstr "Tipo adherencia de la placa de impresión"
  2918. msgctxt "adhesion_type description"
  2919. 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."
  2920. 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."
  2921. msgctxt "adhesion_type option skirt"
  2922. msgid "Skirt"
  2923. msgstr "Falda"
  2924. msgctxt "adhesion_type option brim"
  2925. msgid "Brim"
  2926. msgstr "Borde"
  2927. msgctxt "adhesion_type option raft"
  2928. msgid "Raft"
  2929. msgstr "Balsa"
  2930. msgctxt "adhesion_type option none"
  2931. msgid "None"
  2932. msgstr "Ninguno"
  2933. msgctxt "adhesion_extruder_nr label"
  2934. msgid "Build Plate Adhesion Extruder"
  2935. msgstr "Extrusor de adherencia de la placa de impresión"
  2936. msgctxt "adhesion_extruder_nr description"
  2937. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2938. msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple."
  2939. msgctxt "skirt_brim_extruder_nr label"
  2940. msgid "Skirt/Brim Extruder"
  2941. msgstr "Extrusor de falda o borde"
  2942. msgctxt "skirt_brim_extruder_nr description"
  2943. msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion."
  2944. msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple."
  2945. msgctxt "raft_base_extruder_nr label"
  2946. msgid "Raft Base Extruder"
  2947. msgstr "Extrusor base de la balsa"
  2948. msgctxt "raft_base_extruder_nr description"
  2949. msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion."
  2950. msgstr "El tren extrusor que se utiliza para imprimir la primera capa de la balsa. Se emplea en la extrusión múltiple."
  2951. msgctxt "raft_interface_extruder_nr label"
  2952. msgid "Raft Middle Extruder"
  2953. msgstr "Extrusor medio de la balsa"
  2954. msgctxt "raft_interface_extruder_nr description"
  2955. msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion."
  2956. msgstr "El tren extrusor que se utiliza para imprimir la capa media de la balsa. Se emplea en la extrusión múltiple."
  2957. msgctxt "raft_surface_extruder_nr label"
  2958. msgid "Raft Top Extruder"
  2959. msgstr "Extrusor superior de la balsa"
  2960. msgctxt "raft_surface_extruder_nr description"
  2961. msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion."
  2962. msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple."
  2963. msgctxt "skirt_line_count label"
  2964. msgid "Skirt Line Count"
  2965. msgstr "Recuento de líneas de falda"
  2966. msgctxt "skirt_line_count description"
  2967. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2968. 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."
  2969. msgctxt "skirt_height label"
  2970. msgid "Skirt Height"
  2971. msgstr "Altura de la falda"
  2972. msgctxt "skirt_height description"
  2973. msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt."
  2974. msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación."
  2975. msgctxt "skirt_gap label"
  2976. msgid "Skirt Distance"
  2977. msgstr "Distancia de falda"
  2978. msgctxt "skirt_gap description"
  2979. msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2980. msgstr "La distancia horizontal entre la falda y la primera capa de la impresión."
  2981. "Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia."
  2982. msgctxt "skirt_brim_minimal_length label"
  2983. msgid "Skirt/Brim Minimum Length"
  2984. msgstr "Longitud mínima de falda/borde"
  2985. msgctxt "skirt_brim_minimal_length description"
  2986. 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."
  2987. 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."
  2988. msgctxt "brim_width label"
  2989. msgid "Brim Width"
  2990. msgstr "Ancho del borde"
  2991. msgctxt "brim_width description"
  2992. 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."
  2993. 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."
  2994. msgctxt "brim_line_count label"
  2995. msgid "Brim Line Count"
  2996. msgstr "Recuento de líneas de borde"
  2997. msgctxt "brim_line_count description"
  2998. 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."
  2999. 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."
  3000. msgctxt "brim_gap label"
  3001. msgid "Brim Distance"
  3002. msgstr "Distancia del borde"
  3003. msgctxt "brim_gap description"
  3004. 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."
  3005. 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."
  3006. msgctxt "brim_replaces_support label"
  3007. msgid "Brim Replaces Support"
  3008. msgstr "Sustituir soporte por borde"
  3009. msgctxt "brim_replaces_support description"
  3010. 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."
  3011. 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."
  3012. msgctxt "brim_location label"
  3013. msgid "Brim Location"
  3014. msgstr "Ubicación del borde"
  3015. msgctxt "brim_location description"
  3016. msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion."
  3017. msgstr "Imprima un borde en el exterior del modelo, en el interior o en ambos. Dependiendo del modelo, esto ayuda a reducir la cantidad de borde que tendrá que retirar después, al tiempo que garantiza una correcta adherencia de la cama."
  3018. msgctxt "brim_location option outside"
  3019. msgid "Outside Only"
  3020. msgstr "Solo exterior"
  3021. msgctxt "brim_location option inside"
  3022. msgid "Inside Only"
  3023. msgstr "Solo interior"
  3024. msgctxt "brim_location option everywhere"
  3025. msgid "Everywhere"
  3026. msgstr "En todas partes"
  3027. msgctxt "brim_inside_margin label"
  3028. msgid "Brim Avoid Margin"
  3029. msgstr "Borde, evitar margen"
  3030. msgctxt "brim_inside_margin description"
  3031. msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models."
  3032. msgstr "Un borde alrededor de un modelo puede tocar a otro modelo donde no lo desee. Esto elimina todo el borde dentro de esta distancia de los modelos sin borde."
  3033. msgctxt "brim_smart_ordering label"
  3034. msgid "Smart Brim"
  3035. msgstr "Borde inteligente"
  3036. msgctxt "brim_smart_ordering description"
  3037. msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal."
  3038. msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde."
  3039. msgctxt "raft_margin label"
  3040. msgid "Raft Extra Margin"
  3041. msgstr "Margen adicional de la balsa"
  3042. msgctxt "raft_margin description"
  3043. 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."
  3044. 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."
  3045. msgctxt "raft_base_margin label"
  3046. msgid "Raft Base Extra Margin"
  3047. msgstr "Margen extra de base de balsa"
  3048. msgctxt "raft_base_margin description"
  3049. msgid "If the raft base 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."
  3050. msgstr "Si la base de balsa está activada, esta es el área de balsa extra alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más fuerte, aunque utilizará más material y dejará menos superficie para su impresión."
  3051. msgctxt "raft_interface_margin label"
  3052. msgid "Raft Middle Extra Margin"
  3053. msgstr "Margen extra medio de la balsa"
  3054. msgctxt "raft_interface_margin description"
  3055. msgid "If the raft middle 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."
  3056. msgstr "Si el medio de la balsa está activado, esta es el área adicional de la balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión."
  3057. msgctxt "raft_surface_margin label"
  3058. msgid "Raft Top Extra Margin"
  3059. msgstr "Margen extra de la parte superior de la balsa"
  3060. msgctxt "raft_surface_margin description"
  3061. msgid "If the raft top 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."
  3062. msgstr "Si la parte superior de la balsa está activada, esta es el área extra de balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión."
  3063. msgctxt "raft_remove_inside_corners label"
  3064. msgid "Remove Raft Inside Corners"
  3065. msgstr "Quitar las esquinas internas de la balsa"
  3066. msgctxt "raft_remove_inside_corners description"
  3067. msgid "Remove inside corners from the raft, causing the raft to become convex."
  3068. msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa."
  3069. msgctxt "raft_base_remove_inside_corners label"
  3070. msgid "Remove Raft Base Inside Corners"
  3071. msgstr "Retirar las esquinas interiores de la base de la balsa"
  3072. msgctxt "raft_base_remove_inside_corners description"
  3073. msgid "Remove inside corners from the raft base, causing the raft to become convex."
  3074. msgstr "Retire las esquinas interiores de la base de la balsa, lo que hará que esta se vuelva convexa."
  3075. msgctxt "raft_interface_remove_inside_corners label"
  3076. msgid "Remove Raft Middle Inside Corners"
  3077. msgstr "Retirar las esquinas interiores centrales de la balsa"
  3078. msgctxt "raft_interface_remove_inside_corners description"
  3079. msgid "Remove inside corners from the raft middle part, causing the raft to become convex."
  3080. msgstr "Retire las esquinas interiores de la parte central de la balsa, lo que hará que esta se vuelva convexa."
  3081. msgctxt "raft_surface_remove_inside_corners label"
  3082. msgid "Remove Raft Top Inside Corners"
  3083. msgstr "Retire las esquinas interiores de la parte superior de la balsa"
  3084. msgctxt "raft_surface_remove_inside_corners description"
  3085. msgid "Remove inside corners from the raft top part, causing the raft to become convex."
  3086. msgstr "Retire las esquinas interiores de la parte superior de la balsa, lo que hará que esta se vuelva convexa."
  3087. msgctxt "raft_smoothing label"
  3088. msgid "Raft Smoothing"
  3089. msgstr "Suavizado de la balsa"
  3090. msgctxt "raft_smoothing description"
  3091. 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."
  3092. 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."
  3093. msgctxt "raft_base_smoothing label"
  3094. msgid "Raft Base Smoothing"
  3095. msgstr "Suavizado de la base de la balsa"
  3096. msgctxt "raft_base_smoothing description"
  3097. msgid "This setting controls how much inner corners in the raft base 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."
  3098. msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno de la base de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo."
  3099. msgctxt "raft_interface_smoothing label"
  3100. msgid "Raft Middle Smoothing"
  3101. msgstr "Suavizado medio de la balsa"
  3102. msgctxt "raft_interface_smoothing description"
  3103. msgid "This setting controls how much inner corners in the raft middle 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."
  3104. msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno medio de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo."
  3105. msgctxt "raft_surface_smoothing label"
  3106. msgid "Raft Top Smoothing"
  3107. msgstr "Suavizado de la parte superior de la balsa"
  3108. msgctxt "raft_surface_smoothing description"
  3109. msgid "This setting controls how much inner corners in the raft top 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."
  3110. msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno superior de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo."
  3111. msgctxt "raft_airgap label"
  3112. msgid "Raft Air Gap"
  3113. msgstr "Cámara de aire de la balsa"
  3114. msgctxt "raft_airgap description"
  3115. 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."
  3116. 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."
  3117. msgctxt "layer_0_z_overlap label"
  3118. msgid "Initial Layer Z Overlap"
  3119. msgstr "Superposición de las capas iniciales en Z"
  3120. msgctxt "layer_0_z_overlap description"
  3121. 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.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior"
  3122. msgstr "Haga que la primera y la segunda capa del modelo se solapen en la dirección Z para compensar el filamento perdido en el entrehierro. Todos los modelos situados por encima de la primera capa del modelo se desplazarán hacia abajo en esta medida.\nCabe señalar que a veces la segunda capa se imprime por debajo de la capa inicial debido a este ajuste. Este es el comportamiento previsto."
  3123. msgctxt "raft_base_thickness label"
  3124. msgid "Raft Base Thickness"
  3125. msgstr "Grosor de la base de la balsa"
  3126. msgctxt "raft_base_thickness description"
  3127. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3128. 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."
  3129. msgctxt "raft_base_line_width label"
  3130. msgid "Raft Base Line Width"
  3131. msgstr "Ancho de la línea base de la balsa"
  3132. msgctxt "raft_base_line_width description"
  3133. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3134. 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."
  3135. msgctxt "raft_base_line_spacing label"
  3136. msgid "Raft Base Line Spacing"
  3137. msgstr "Espacio de la línea base de la balsa"
  3138. msgctxt "raft_base_line_spacing description"
  3139. 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."
  3140. 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."
  3141. msgctxt "raft_interface_layers label"
  3142. msgid "Raft Middle Layers"
  3143. msgstr "Capas medias de la balsa"
  3144. msgctxt "raft_interface_layers description"
  3145. msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft."
  3146. msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente."
  3147. msgctxt "raft_interface_thickness label"
  3148. msgid "Raft Middle Thickness"
  3149. msgstr "Grosor intermedio de la balsa"
  3150. msgctxt "raft_interface_thickness description"
  3151. msgid "Layer thickness of the middle raft layer."
  3152. msgstr "Grosor de la capa intermedia de la balsa."
  3153. msgctxt "raft_interface_line_width label"
  3154. msgid "Raft Middle Line Width"
  3155. msgstr "Ancho de la línea intermedia de la balsa"
  3156. msgctxt "raft_interface_line_width description"
  3157. 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."
  3158. 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."
  3159. msgctxt "raft_interface_line_spacing label"
  3160. msgid "Raft Middle Spacing"
  3161. msgstr "Espaciado intermedio de la balsa"
  3162. msgctxt "raft_interface_line_spacing description"
  3163. 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."
  3164. 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."
  3165. msgctxt "raft_surface_layers label"
  3166. msgid "Raft Top Layers"
  3167. msgstr "Capas superiores de la balsa"
  3168. msgctxt "raft_surface_layers description"
  3169. 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."
  3170. 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."
  3171. msgctxt "raft_surface_thickness label"
  3172. msgid "Raft Top Layer Thickness"
  3173. msgstr "Grosor de las capas superiores de la balsa"
  3174. msgctxt "raft_surface_thickness description"
  3175. msgid "Layer thickness of the top raft layers."
  3176. msgstr "Grosor de capa de las capas superiores de la balsa."
  3177. msgctxt "raft_surface_line_width label"
  3178. msgid "Raft Top Line Width"
  3179. msgstr "Ancho de las líneas superiores de la balsa"
  3180. msgctxt "raft_surface_line_width description"
  3181. 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."
  3182. 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."
  3183. msgctxt "raft_surface_line_spacing label"
  3184. msgid "Raft Top Spacing"
  3185. msgstr "Espaciado superior de la balsa"
  3186. msgctxt "raft_surface_line_spacing description"
  3187. 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."
  3188. 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."
  3189. msgctxt "raft_surface_monotonic label"
  3190. msgid "Monotonic Raft Top Surface Order"
  3191. msgstr "Orden monotónico de la superficie superior de la balsa"
  3192. msgctxt "raft_surface_monotonic description"
  3193. msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface."
  3194. msgstr "Imprima las líneas de la superficie superior de la balsa en un orden que haga que siempre se solapen con las líneas adyacentes en una sola dirección. Esto lleva algo más de tiempo de impresión, pero hace que la superficie tenga un aspecto más homogéneo, lo que también se aprecia en la superficie inferior del modelo."
  3195. msgctxt "raft_wall_count label"
  3196. msgid "Raft Wall Count"
  3197. msgstr "Número de paredes de la balsa"
  3198. msgctxt "raft_wall_count description"
  3199. msgid "The number of contours to print around the linear pattern of the raft."
  3200. msgstr "El número de contornos a imprimir alrededor del patrón lineal de la balsa."
  3201. msgctxt "raft_base_wall_count label"
  3202. msgid "Raft Base Wall Count"
  3203. msgstr "Recuento de paredes base de balsa"
  3204. msgctxt "raft_base_wall_count description"
  3205. msgid "The number of contours to print around the linear pattern in the base layer of the raft."
  3206. msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa."
  3207. msgctxt "raft_interface_wall_count label"
  3208. msgid "Raft Middle Wall Count"
  3209. msgstr "Número de paredes intermedias de la balsa"
  3210. msgctxt "raft_interface_wall_count description"
  3211. msgid "The number of contours to print around the linear pattern in the middle layers of the raft."
  3212. msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas medias de la balsa."
  3213. msgctxt "raft_surface_wall_count label"
  3214. msgid "Raft Top Wall Count"
  3215. msgstr "Número de paredes superiores de la balsa"
  3216. msgctxt "raft_surface_wall_count description"
  3217. msgid "The number of contours to print around the linear pattern in the top layers of the raft."
  3218. msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas superiores de la balsa."
  3219. msgctxt "raft_speed label"
  3220. msgid "Raft Print Speed"
  3221. msgstr "Velocidad de impresión de la balsa"
  3222. msgctxt "raft_speed description"
  3223. msgid "The speed at which the raft is printed."
  3224. msgstr "Velocidad a la que se imprime la balsa."
  3225. msgctxt "raft_base_speed label"
  3226. msgid "Raft Base Print Speed"
  3227. msgstr "Velocidad de impresión de la base de la balsa"
  3228. msgctxt "raft_base_speed description"
  3229. 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."
  3230. 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."
  3231. msgctxt "raft_interface_speed label"
  3232. msgid "Raft Middle Print Speed"
  3233. msgstr "Velocidad de impresión de la balsa intermedia"
  3234. msgctxt "raft_interface_speed description"
  3235. 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."
  3236. 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."
  3237. msgctxt "raft_surface_speed label"
  3238. msgid "Raft Top Print Speed"
  3239. msgstr "Velocidad de impresión de la balsa superior"
  3240. msgctxt "raft_surface_speed description"
  3241. 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."
  3242. 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."
  3243. msgctxt "raft_acceleration label"
  3244. msgid "Raft Print Acceleration"
  3245. msgstr "Aceleración de impresión de la balsa"
  3246. msgctxt "raft_acceleration description"
  3247. msgid "The acceleration with which the raft is printed."
  3248. msgstr "Aceleración a la que se imprime la balsa."
  3249. msgctxt "raft_base_acceleration label"
  3250. msgid "Raft Base Print Acceleration"
  3251. msgstr "Aceleración de la impresión de la base de la balsa"
  3252. msgctxt "raft_base_acceleration description"
  3253. msgid "The acceleration with which the base raft layer is printed."
  3254. msgstr "Aceleración a la que se imprime la capa base de la balsa."
  3255. msgctxt "raft_interface_acceleration label"
  3256. msgid "Raft Middle Print Acceleration"
  3257. msgstr "Aceleración de la impresión de la balsa intermedia"
  3258. msgctxt "raft_interface_acceleration description"
  3259. msgid "The acceleration with which the middle raft layer is printed."
  3260. msgstr "Aceleración a la que se imprime la capa intermedia de la balsa."
  3261. msgctxt "raft_surface_acceleration label"
  3262. msgid "Raft Top Print Acceleration"
  3263. msgstr "Aceleración de la impresión de la balsa superior"
  3264. msgctxt "raft_surface_acceleration description"
  3265. msgid "The acceleration with which the top raft layers are printed."
  3266. msgstr "Aceleración a la que se imprimen las capas superiores de la balsa."
  3267. msgctxt "raft_jerk label"
  3268. msgid "Raft Print Jerk"
  3269. msgstr "Impulso de impresión de la balsa"
  3270. msgctxt "raft_jerk description"
  3271. msgid "The jerk with which the raft is printed."
  3272. msgstr "Impulso con el que se imprime la balsa."
  3273. msgctxt "raft_base_jerk label"
  3274. msgid "Raft Base Print Jerk"
  3275. msgstr "Impulso de impresión de base de la balsa"
  3276. msgctxt "raft_base_jerk description"
  3277. msgid "The jerk with which the base raft layer is printed."
  3278. msgstr "Impulso con el que se imprime la capa base de la balsa."
  3279. msgctxt "raft_interface_jerk label"
  3280. msgid "Raft Middle Print Jerk"
  3281. msgstr "Impulso de impresión de balsa intermedia"
  3282. msgctxt "raft_interface_jerk description"
  3283. msgid "The jerk with which the middle raft layer is printed."
  3284. msgstr "Impulso con el que se imprime la capa intermedia de la balsa."
  3285. msgctxt "raft_surface_jerk label"
  3286. msgid "Raft Top Print Jerk"
  3287. msgstr "Impulso de impresión de balsa superior"
  3288. msgctxt "raft_surface_jerk description"
  3289. msgid "The jerk with which the top raft layers are printed."
  3290. msgstr "Impulso con el que se imprimen las capas superiores de la balsa."
  3291. msgctxt "raft_fan_speed label"
  3292. msgid "Raft Fan Speed"
  3293. msgstr "Velocidad del ventilador de la balsa"
  3294. msgctxt "raft_fan_speed description"
  3295. msgid "The fan speed for the raft."
  3296. msgstr "Velocidad del ventilador para la balsa."
  3297. msgctxt "raft_base_fan_speed label"
  3298. msgid "Raft Base Fan Speed"
  3299. msgstr "Velocidad del ventilador de la base de la balsa"
  3300. msgctxt "raft_base_fan_speed description"
  3301. msgid "The fan speed for the base raft layer."
  3302. msgstr "Velocidad del ventilador para la capa base de la balsa."
  3303. msgctxt "raft_interface_fan_speed label"
  3304. msgid "Raft Middle Fan Speed"
  3305. msgstr "Velocidad del ventilador de balsa intermedia"
  3306. msgctxt "raft_interface_fan_speed description"
  3307. msgid "The fan speed for the middle raft layer."
  3308. msgstr "Velocidad del ventilador para la capa intermedia de la balsa."
  3309. msgctxt "raft_surface_fan_speed label"
  3310. msgid "Raft Top Fan Speed"
  3311. msgstr "Velocidad del ventilador de balsa superior"
  3312. msgctxt "raft_surface_fan_speed description"
  3313. msgid "The fan speed for the top raft layers."
  3314. msgstr "Velocidad del ventilador para las capas superiores de la balsa."
  3315. msgctxt "dual label"
  3316. msgid "Dual Extrusion"
  3317. msgstr "Extrusión doble"
  3318. msgctxt "dual description"
  3319. msgid "Settings used for printing with multiple extruders."
  3320. msgstr "Ajustes utilizados en la impresión con varios extrusores."
  3321. msgctxt "prime_tower_enable label"
  3322. msgid "Enable Prime Tower"
  3323. msgstr "Activar la torre auxiliar"
  3324. msgctxt "prime_tower_enable description"
  3325. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3326. msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera."
  3327. msgctxt "prime_tower_mode label"
  3328. msgid "Prime Tower Type"
  3329. msgstr "Tipo de torre de imprimación"
  3330. msgctxt "prime_tower_mode description"
  3331. msgid "<html>How to generate the prime tower:<ul><li><b>Normal:</b> create a bucket in which secondary materials are primed</li><li><b>Interleaved:</b> create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other</li></ul></html>"
  3332. msgstr "<html>Cómo generar la torre de imprimación:<ul><li><b>Normal:</b> cree un cubo en el que los materiales secundarios estén imprimados</li><li><b>Intercalada:</b> cree una torre de imprimación lo más dispersa posible. Esto ahorrará tiempo y filamento, pero solo es posible si los materiales utilizados se adhieren entre sí</li></ul></html>"
  3333. msgctxt "prime_tower_mode option normal"
  3334. msgid "Normal"
  3335. msgstr "Normal"
  3336. msgctxt "prime_tower_mode option interleaved"
  3337. msgid "Interleaved"
  3338. msgstr "Intercalada"
  3339. msgctxt "prime_tower_size label"
  3340. msgid "Prime Tower Size"
  3341. msgstr "Tamaño de la torre auxiliar"
  3342. msgctxt "prime_tower_size description"
  3343. msgid "The width of the prime tower."
  3344. msgstr "Anchura de la torre auxiliar."
  3345. msgctxt "prime_tower_min_volume label"
  3346. msgid "Prime Tower Minimum Volume"
  3347. msgstr "Volumen mínimo de la torre auxiliar"
  3348. msgctxt "prime_tower_min_volume description"
  3349. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3350. msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material."
  3351. msgctxt "prime_tower_max_bridging_distance label"
  3352. msgid "Prime Tower Maximum Bridging Distance"
  3353. msgstr "Distancia máxima de puenteo de la torre de imprimación"
  3354. msgctxt "prime_tower_max_bridging_distance description"
  3355. msgid "The maximum length of the branches which may be printed over the air."
  3356. msgstr "Longitud máxima de las ramas que pueden imprimirse en el aire."
  3357. msgctxt "prime_tower_position_x label"
  3358. msgid "Prime Tower X Position"
  3359. msgstr "Posición de la torre auxiliar sobre el eje X"
  3360. msgctxt "prime_tower_position_x description"
  3361. msgid "The x coordinate of the position of the prime tower."
  3362. msgstr "Coordenada X de la posición de la torre auxiliar."
  3363. msgctxt "prime_tower_position_y label"
  3364. msgid "Prime Tower Y Position"
  3365. msgstr "Posición de la torre auxiliar sobre el eje Y"
  3366. msgctxt "prime_tower_position_y description"
  3367. msgid "The y coordinate of the position of the prime tower."
  3368. msgstr "Coordenada Y de la posición de la torre auxiliar."
  3369. msgctxt "prime_tower_wipe_enabled label"
  3370. msgid "Wipe Inactive Nozzle on Prime Tower"
  3371. msgstr "Limpiar tobera inactiva de la torre auxiliar"
  3372. msgctxt "prime_tower_wipe_enabled description"
  3373. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3374. msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar."
  3375. msgctxt "prime_tower_brim_enable label"
  3376. msgid "Prime Tower Base"
  3377. msgstr "Base de la torre de cebado"
  3378. msgctxt "prime_tower_brim_enable description"
  3379. msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height."
  3380. msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base."
  3381. msgctxt "prime_tower_base_size label"
  3382. msgid "Prime Tower Base Size"
  3383. msgstr "Tamaño de la base de la torre de cebado"
  3384. msgctxt "prime_tower_base_size description"
  3385. msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area."
  3386. msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión."
  3387. msgctxt "prime_tower_base_height label"
  3388. msgid "Prime Tower Base Height"
  3389. msgstr "Altura de la base de la torre de cebado"
  3390. msgctxt "prime_tower_base_height description"
  3391. msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base."
  3392. msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente."
  3393. msgctxt "prime_tower_base_curve_magnitude label"
  3394. msgid "Prime Tower Base Slope"
  3395. msgstr "Pendiente de la Base de la Torre de Cebado"
  3396. msgctxt "prime_tower_base_curve_magnitude description"
  3397. msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker."
  3398. msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa."
  3399. msgctxt "prime_tower_raft_base_line_spacing label"
  3400. msgid "Prime Tower Raft Line Spacing"
  3401. msgstr "Espaciado de las líneas del raft de la torre de cebado"
  3402. msgctxt "prime_tower_raft_base_line_spacing description"
  3403. msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3404. msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción."
  3405. msgctxt "ooze_shield_enabled label"
  3406. msgid "Enable Ooze Shield"
  3407. msgstr "Activar placa de rezumado"
  3408. msgctxt "ooze_shield_enabled description"
  3409. 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."
  3410. 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."
  3411. msgctxt "ooze_shield_angle label"
  3412. msgid "Ooze Shield Angle"
  3413. msgstr "Ángulo de la placa de rezumado"
  3414. msgctxt "ooze_shield_angle description"
  3415. 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."
  3416. 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."
  3417. msgctxt "ooze_shield_dist label"
  3418. msgid "Ooze Shield Distance"
  3419. msgstr "Distancia de la placa de rezumado"
  3420. msgctxt "ooze_shield_dist description"
  3421. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3422. msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y."
  3423. msgctxt "switch_extruder_retraction_amount label"
  3424. msgid "Nozzle Switch Retraction Distance"
  3425. msgstr "Distancia de retracción del cambio de tobera"
  3426. msgctxt "switch_extruder_retraction_amount description"
  3427. 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."
  3428. 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."
  3429. msgctxt "switch_extruder_retraction_speeds label"
  3430. msgid "Nozzle Switch Retraction Speed"
  3431. msgstr "Velocidad de retracción del cambio de tobera"
  3432. msgctxt "switch_extruder_retraction_speeds description"
  3433. 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."
  3434. 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."
  3435. msgctxt "switch_extruder_retraction_speed label"
  3436. msgid "Nozzle Switch Retract Speed"
  3437. msgstr "Velocidad de retracción del cambio de tobera"
  3438. msgctxt "switch_extruder_retraction_speed description"
  3439. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3440. msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
  3441. msgctxt "switch_extruder_prime_speed label"
  3442. msgid "Nozzle Switch Prime Speed"
  3443. msgstr "Velocidad de cebado del cambio de tobera"
  3444. msgctxt "switch_extruder_prime_speed description"
  3445. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3446. msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera."
  3447. msgctxt "switch_extruder_extra_prime_amount label"
  3448. msgid "Nozzle Switch Extra Prime Amount"
  3449. msgstr "Volumen de cebado adicional tras cambio de tobera"
  3450. msgctxt "switch_extruder_extra_prime_amount description"
  3451. msgid "Extra material to prime after nozzle switching."
  3452. msgstr "Material adicional que debe cebarse tras el cambio de tobera."
  3453. msgctxt "meshfix label"
  3454. msgid "Mesh Fixes"
  3455. msgstr "Correcciones de malla"
  3456. msgctxt "meshfix description"
  3457. msgid "Make the meshes more suited for 3D printing."
  3458. msgstr "Consiga las mallas más adecuadas para la impresión 3D."
  3459. msgctxt "meshfix_union_all label"
  3460. msgid "Union Overlapping Volumes"
  3461. msgstr "Volúmenes de superposiciones de uniones"
  3462. msgctxt "meshfix_union_all description"
  3463. 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."
  3464. 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."
  3465. msgctxt "meshfix_union_all_remove_holes label"
  3466. msgid "Remove All Holes"
  3467. msgstr "Eliminar todos los agujeros"
  3468. msgctxt "meshfix_union_all_remove_holes description"
  3469. 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."
  3470. 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."
  3471. msgctxt "meshfix_extensive_stitching label"
  3472. msgid "Extensive Stitching"
  3473. msgstr "Cosido amplio"
  3474. msgctxt "meshfix_extensive_stitching description"
  3475. 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."
  3476. 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."
  3477. msgctxt "meshfix_keep_open_polygons label"
  3478. msgid "Keep Disconnected Faces"
  3479. msgstr "Mantener caras desconectadas"
  3480. msgctxt "meshfix_keep_open_polygons description"
  3481. 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."
  3482. 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."
  3483. msgctxt "multiple_mesh_overlap label"
  3484. msgid "Merged Meshes Overlap"
  3485. msgstr "Superponer mallas combinadas"
  3486. msgctxt "multiple_mesh_overlap description"
  3487. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3488. msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas."
  3489. msgctxt "carve_multiple_volumes label"
  3490. msgid "Remove Mesh Intersection"
  3491. msgstr "Eliminar el cruce de mallas"
  3492. msgctxt "carve_multiple_volumes description"
  3493. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3494. msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales."
  3495. msgctxt "alternate_carve_order label"
  3496. msgid "Alternate Mesh Removal"
  3497. msgstr "Alternar la retirada de las mallas"
  3498. msgctxt "alternate_carve_order description"
  3499. 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."
  3500. 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."
  3501. msgctxt "remove_empty_first_layers label"
  3502. msgid "Remove Empty First Layers"
  3503. msgstr "Eliminar primeras capas vacías"
  3504. msgctxt "remove_empty_first_layers description"
  3505. 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."
  3506. 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."
  3507. msgctxt "meshfix_maximum_resolution label"
  3508. msgid "Maximum Resolution"
  3509. msgstr "Resolución máxima"
  3510. msgctxt "meshfix_maximum_resolution description"
  3511. 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."
  3512. 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."
  3513. msgctxt "meshfix_maximum_travel_resolution label"
  3514. msgid "Maximum Travel Resolution"
  3515. msgstr "Resolución de desplazamiento máximo"
  3516. msgctxt "meshfix_maximum_travel_resolution description"
  3517. 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."
  3518. 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."
  3519. msgctxt "meshfix_maximum_deviation label"
  3520. msgid "Maximum Deviation"
  3521. msgstr "Desviación máxima"
  3522. msgctxt "meshfix_maximum_deviation description"
  3523. 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."
  3524. 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."
  3525. msgctxt "meshfix_maximum_extrusion_area_deviation label"
  3526. msgid "Maximum Extrusion Area Deviation"
  3527. msgstr "Desviación máxima del área de extrusión"
  3528. msgctxt "meshfix_maximum_extrusion_area_deviation description"
  3529. msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller."
  3530. msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño."
  3531. msgctxt "meshfix_fluid_motion_enabled label"
  3532. msgid "Enable Fluid Motion"
  3533. msgstr "Activar movimiento fluido"
  3534. msgctxt "meshfix_fluid_motion_enabled description"
  3535. msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions."
  3536. msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos."
  3537. msgctxt "meshfix_fluid_motion_shift_distance label"
  3538. msgid "Fluid Motion Shift Distance"
  3539. msgstr "Cambio de distancia del movimiento fluido"
  3540. msgctxt "meshfix_fluid_motion_shift_distance description"
  3541. msgid "Distance points are shifted to smooth the path"
  3542. msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria"
  3543. msgctxt "meshfix_fluid_motion_small_distance label"
  3544. msgid "Fluid Motion Small Distance"
  3545. msgstr "Pequeña distancia del movimiento fluido"
  3546. msgctxt "meshfix_fluid_motion_small_distance description"
  3547. msgid "Distance points are shifted to smooth the path"
  3548. msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria"
  3549. msgctxt "meshfix_fluid_motion_angle label"
  3550. msgid "Fluid Motion Angle"
  3551. msgstr "Ángulo de movimiento fluido"
  3552. msgctxt "meshfix_fluid_motion_angle description"
  3553. msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed."
  3554. msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza."
  3555. msgctxt "blackmagic label"
  3556. msgid "Special Modes"
  3557. msgstr "Modos especiales"
  3558. msgctxt "blackmagic description"
  3559. msgid "Non-traditional ways to print your models."
  3560. msgstr "Formas no tradicionales de imprimir sus modelos."
  3561. msgctxt "print_sequence label"
  3562. msgid "Print Sequence"
  3563. msgstr "Secuencia de impresión"
  3564. msgctxt "print_sequence description"
  3565. 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."
  3566. 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."
  3567. msgctxt "print_sequence option all_at_once"
  3568. msgid "All at Once"
  3569. msgstr "Todos a la vez"
  3570. msgctxt "print_sequence option one_at_a_time"
  3571. msgid "One at a Time"
  3572. msgstr "De uno en uno"
  3573. msgctxt "user_defined_print_order_enabled label"
  3574. msgid "Set Print Sequence Manually"
  3575. msgstr "Establecer secuencia de impresión manualmente"
  3576. msgctxt "user_defined_print_order_enabled description"
  3577. msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first."
  3578. msgstr "Le permite ordenar la lista de objetos para establecer manualmente la secuencia de impresión. El primer objeto de la lista se imprimirá primero."
  3579. msgctxt "infill_mesh label"
  3580. msgid "Infill Mesh"
  3581. msgstr "Malla de relleno"
  3582. msgctxt "infill_mesh description"
  3583. 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."
  3584. 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."
  3585. msgctxt "infill_mesh_order label"
  3586. msgid "Mesh Processing Rank"
  3587. msgstr "Rango de procesamiento de la malla"
  3588. msgctxt "infill_mesh_order description"
  3589. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  3590. msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales."
  3591. msgctxt "cutting_mesh label"
  3592. msgid "Cutting Mesh"
  3593. msgstr "Cortar malla"
  3594. msgctxt "cutting_mesh description"
  3595. 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."
  3596. 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."
  3597. msgctxt "mold_enabled label"
  3598. msgid "Mold"
  3599. msgstr "Molde"
  3600. msgctxt "mold_enabled description"
  3601. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3602. 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."
  3603. msgctxt "mold_width label"
  3604. msgid "Minimal Mold Width"
  3605. msgstr "Ancho de molde mínimo"
  3606. msgctxt "mold_width description"
  3607. msgid "The minimal distance between the outside of the mold and the outside of the model."
  3608. msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo."
  3609. msgctxt "mold_roof_height label"
  3610. msgid "Mold Roof Height"
  3611. msgstr "Altura del techo del molde"
  3612. msgctxt "mold_roof_height description"
  3613. msgid "The height above horizontal parts in your model which to print mold."
  3614. msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde."
  3615. msgctxt "mold_angle label"
  3616. msgid "Mold Angle"
  3617. msgstr "Ángulo del molde"
  3618. msgctxt "mold_angle description"
  3619. 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."
  3620. 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."
  3621. msgctxt "support_mesh label"
  3622. msgid "Support Mesh"
  3623. msgstr "Malla de soporte"
  3624. msgctxt "support_mesh description"
  3625. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3626. msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte."
  3627. msgctxt "anti_overhang_mesh label"
  3628. msgid "Anti Overhang Mesh"
  3629. msgstr "Malla antivoladizo"
  3630. msgctxt "anti_overhang_mesh description"
  3631. 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."
  3632. 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."
  3633. msgctxt "magic_mesh_surface_mode label"
  3634. msgid "Surface Mode"
  3635. msgstr "Modo de superficie"
  3636. msgctxt "magic_mesh_surface_mode description"
  3637. 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."
  3638. 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."
  3639. msgctxt "magic_mesh_surface_mode option normal"
  3640. msgid "Normal"
  3641. msgstr "Normal"
  3642. msgctxt "magic_mesh_surface_mode option surface"
  3643. msgid "Surface"
  3644. msgstr "Superficie"
  3645. msgctxt "magic_mesh_surface_mode option both"
  3646. msgid "Both"
  3647. msgstr "Ambos"
  3648. msgctxt "magic_spiralize label"
  3649. msgid "Spiralize Outer Contour"
  3650. msgstr "Espiralizar el contorno exterior"
  3651. msgctxt "magic_spiralize description"
  3652. 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."
  3653. 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."
  3654. msgctxt "smooth_spiralized_contours label"
  3655. msgid "Smooth Spiralized Contours"
  3656. msgstr "Contornos espiralizados suaves"
  3657. msgctxt "smooth_spiralized_contours description"
  3658. 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."
  3659. 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."
  3660. msgctxt "relative_extrusion label"
  3661. msgid "Relative Extrusion"
  3662. msgstr "Extrusión relativa"
  3663. msgctxt "relative_extrusion description"
  3664. 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."
  3665. 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."
  3666. msgctxt "experimental label"
  3667. msgid "Experimental"
  3668. msgstr "Experimental"
  3669. msgctxt "experimental description"
  3670. msgid "Features that haven't completely been fleshed out yet."
  3671. msgstr "Características que aún no se han desarrollado por completo."
  3672. msgctxt "slicing_tolerance label"
  3673. msgid "Slicing Tolerance"
  3674. msgstr "Tolerancia de segmentación"
  3675. msgctxt "slicing_tolerance description"
  3676. 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."
  3677. 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 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 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, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original."
  3678. msgctxt "slicing_tolerance option middle"
  3679. msgid "Middle"
  3680. msgstr "Media"
  3681. msgctxt "slicing_tolerance option exclusive"
  3682. msgid "Exclusive"
  3683. msgstr "Exclusiva"
  3684. msgctxt "slicing_tolerance option inclusive"
  3685. msgid "Inclusive"
  3686. msgstr "Inclusiva"
  3687. msgctxt "infill_enable_travel_optimization label"
  3688. msgid "Infill Travel Optimization"
  3689. msgstr "Optimización del desplazamiento del relleno"
  3690. msgctxt "infill_enable_travel_optimization description"
  3691. 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."
  3692. 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."
  3693. msgctxt "material_flow_temp_graph label"
  3694. msgid "Flow Temperature Graph"
  3695. msgstr "Gráfico de flujo y temperatura"
  3696. msgctxt "material_flow_temp_graph description"
  3697. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3698. msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)."
  3699. msgctxt "minimum_polygon_circumference label"
  3700. msgid "Minimum Polygon Circumference"
  3701. msgstr "Circunferencia mínima de polígono"
  3702. msgctxt "minimum_polygon_circumference description"
  3703. 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."
  3704. 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."
  3705. msgctxt "interlocking_enable label"
  3706. msgid "Generate Interlocking Structure"
  3707. msgstr "Generar estructura entrelazada"
  3708. msgctxt "interlocking_enable description"
  3709. msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials."
  3710. msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes."
  3711. msgctxt "interlocking_beam_width label"
  3712. msgid "Interlocking Beam Width"
  3713. msgstr "Ancho del haz entrelazado"
  3714. msgctxt "interlocking_beam_width description"
  3715. msgid "The width of the interlocking structure beams."
  3716. msgstr "El ancho de los haces de la estructura entrelazada."
  3717. msgctxt "interlocking_orientation label"
  3718. msgid "Interlocking Structure Orientation"
  3719. msgstr "Orientación de estructura entrelazada"
  3720. msgctxt "interlocking_orientation description"
  3721. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3722. msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos."
  3723. msgctxt "interlocking_beam_layer_count label"
  3724. msgid "Interlocking Beam Layer Count"
  3725. msgstr "Recuento de capas de haz entrelazado"
  3726. msgctxt "interlocking_beam_layer_count description"
  3727. msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
  3728. msgstr "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos."
  3729. msgctxt "interlocking_depth label"
  3730. msgid "Interlocking Depth"
  3731. msgstr "Profundidad del entrelazado"
  3732. msgctxt "interlocking_depth description"
  3733. msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
  3734. msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente."
  3735. msgctxt "interlocking_boundary_avoidance label"
  3736. msgid "Interlocking Boundary Avoidance"
  3737. msgstr "Distancia a los límites de entrelazado"
  3738. msgctxt "interlocking_boundary_avoidance description"
  3739. msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
  3740. msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas."
  3741. msgctxt "support_skip_some_zags label"
  3742. msgid "Break Up Support In Chunks"
  3743. msgstr "Descomponer el soporte en pedazos"
  3744. msgctxt "support_skip_some_zags description"
  3745. 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."
  3746. 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."
  3747. msgctxt "support_skip_zag_per_mm label"
  3748. msgid "Support Chunk Size"
  3749. msgstr "Tamaño de los pedazos de soporte"
  3750. msgctxt "support_skip_zag_per_mm description"
  3751. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3752. 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."
  3753. msgctxt "support_zag_skip_count label"
  3754. msgid "Support Chunk Line Count"
  3755. msgstr "Recuento de líneas de pedazos del soporte"
  3756. msgctxt "support_zag_skip_count description"
  3757. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3758. msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente."
  3759. msgctxt "draft_shield_enabled label"
  3760. msgid "Enable Draft Shield"
  3761. msgstr "Habilitar parabrisas"
  3762. msgctxt "draft_shield_enabled description"
  3763. 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."
  3764. 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."
  3765. msgctxt "draft_shield_dist label"
  3766. msgid "Draft Shield X/Y Distance"
  3767. msgstr "Distancia X/Y del parabrisas"
  3768. msgctxt "draft_shield_dist description"
  3769. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3770. msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y."
  3771. msgctxt "draft_shield_height_limitation label"
  3772. msgid "Draft Shield Limitation"
  3773. msgstr "Limitación del parabrisas"
  3774. msgctxt "draft_shield_height_limitation description"
  3775. 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."
  3776. 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."
  3777. msgctxt "draft_shield_height_limitation option full"
  3778. msgid "Full"
  3779. msgstr "Completo"
  3780. msgctxt "draft_shield_height_limitation option limited"
  3781. msgid "Limited"
  3782. msgstr "Limitado"
  3783. msgctxt "draft_shield_height label"
  3784. msgid "Draft Shield Height"
  3785. msgstr "Altura del parabrisas"
  3786. msgctxt "draft_shield_height description"
  3787. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3788. msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas."
  3789. msgctxt "conical_overhang_enabled label"
  3790. msgid "Make Overhang Printable"
  3791. msgstr "Convertir voladizo en imprimible"
  3792. msgctxt "conical_overhang_enabled description"
  3793. 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."
  3794. 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."
  3795. msgctxt "conical_overhang_angle label"
  3796. msgid "Maximum Model Angle"
  3797. msgstr "Ángulo máximo del modelo"
  3798. msgctxt "conical_overhang_angle description"
  3799. 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."
  3800. 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."
  3801. msgctxt "conical_overhang_hole_size label"
  3802. msgid "Maximum Overhang Hole Area"
  3803. msgstr "Área máxima del agujero en voladizo"
  3804. msgctxt "conical_overhang_hole_size description"
  3805. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  3806. msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo."
  3807. msgctxt "coasting_enable label"
  3808. msgid "Enable Coasting"
  3809. msgstr "Habilitar depósito por inercia"
  3810. msgctxt "coasting_enable description"
  3811. 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."
  3812. 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."
  3813. msgctxt "coasting_volume label"
  3814. msgid "Coasting Volume"
  3815. msgstr "Volumen de depósito por inercia"
  3816. msgctxt "coasting_volume description"
  3817. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3818. msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera."
  3819. msgctxt "coasting_min_volume label"
  3820. msgid "Minimum Volume Before Coasting"
  3821. msgstr "Volumen mínimo antes del depósito por inercia"
  3822. msgctxt "coasting_min_volume description"
  3823. 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."
  3824. 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."
  3825. msgctxt "coasting_speed label"
  3826. msgid "Coasting Speed"
  3827. msgstr "Velocidad de depósito por inercia"
  3828. msgctxt "coasting_speed description"
  3829. 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."
  3830. 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."
  3831. msgctxt "cross_infill_pocket_size label"
  3832. msgid "Cross 3D Pocket Size"
  3833. msgstr "Tamaño de las bolsas 3D en cruces"
  3834. msgctxt "cross_infill_pocket_size description"
  3835. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3836. 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."
  3837. msgctxt "cross_infill_density_image label"
  3838. msgid "Cross Infill Density Image"
  3839. msgstr "Imagen de densidad de relleno cruzada"
  3840. msgctxt "cross_infill_density_image description"
  3841. 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."
  3842. 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."
  3843. msgctxt "cross_support_density_image label"
  3844. msgid "Cross Fill Density Image for Support"
  3845. msgstr "Imagen de densidad de relleno cruzada para soporte"
  3846. msgctxt "cross_support_density_image description"
  3847. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3848. 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."
  3849. msgctxt "support_conical_enabled label"
  3850. msgid "Enable Conical Support"
  3851. msgstr "Activar soporte cónico"
  3852. msgctxt "support_conical_enabled description"
  3853. msgid "Make support areas smaller at the bottom than at the overhang."
  3854. msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo."
  3855. msgctxt "support_conical_angle label"
  3856. msgid "Conical Support Angle"
  3857. msgstr "Ángulo del soporte cónico"
  3858. msgctxt "support_conical_angle description"
  3859. 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."
  3860. 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."
  3861. msgctxt "support_conical_min_width label"
  3862. msgid "Conical Support Minimum Width"
  3863. msgstr "Anchura mínima del soporte cónico"
  3864. msgctxt "support_conical_min_width description"
  3865. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3866. 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."
  3867. msgctxt "magic_fuzzy_skin_enabled label"
  3868. msgid "Fuzzy Skin"
  3869. msgstr "Forro difuso"
  3870. msgctxt "magic_fuzzy_skin_enabled description"
  3871. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3872. msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso."
  3873. msgctxt "magic_fuzzy_skin_outside_only label"
  3874. msgid "Fuzzy Skin Outside Only"
  3875. msgstr "Forro difuso exterior únicamente"
  3876. msgctxt "magic_fuzzy_skin_outside_only description"
  3877. msgid "Jitter only the parts' outlines and not the parts' holes."
  3878. msgstr "Use solo los contornos de las piezas, no los orificios de las piezas."
  3879. msgctxt "magic_fuzzy_skin_thickness label"
  3880. msgid "Fuzzy Skin Thickness"
  3881. msgstr "Grosor del forro difuso"
  3882. msgctxt "magic_fuzzy_skin_thickness description"
  3883. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3884. 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."
  3885. msgctxt "magic_fuzzy_skin_point_density label"
  3886. msgid "Fuzzy Skin Density"
  3887. msgstr "Densidad del forro difuso"
  3888. msgctxt "magic_fuzzy_skin_point_density description"
  3889. 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."
  3890. 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."
  3891. msgctxt "magic_fuzzy_skin_point_dist label"
  3892. msgid "Fuzzy Skin Point Distance"
  3893. msgstr "Distancia de punto del forro difuso"
  3894. msgctxt "magic_fuzzy_skin_point_dist description"
  3895. 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."
  3896. 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."
  3897. msgctxt "flow_rate_max_extrusion_offset label"
  3898. msgid "Flow Rate Compensation Max Extrusion Offset"
  3899. msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal"
  3900. msgctxt "flow_rate_max_extrusion_offset description"
  3901. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  3902. msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal."
  3903. msgctxt "flow_rate_extrusion_offset_factor label"
  3904. msgid "Flow Rate Compensation Factor"
  3905. msgstr "Factor de compensación del caudal"
  3906. msgctxt "flow_rate_extrusion_offset_factor description"
  3907. 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."
  3908. 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."
  3909. msgctxt "adaptive_layer_height_enabled label"
  3910. msgid "Use Adaptive Layers"
  3911. msgstr "Utilizar capas de adaptación"
  3912. msgctxt "adaptive_layer_height_enabled description"
  3913. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  3914. msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo."
  3915. msgctxt "adaptive_layer_height_variation label"
  3916. msgid "Adaptive Layers Maximum Variation"
  3917. msgstr "Variación máxima de las capas de adaptación"
  3918. msgctxt "adaptive_layer_height_variation description"
  3919. msgid "The maximum allowed height different from the base layer height."
  3920. msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base."
  3921. msgctxt "adaptive_layer_height_variation_step label"
  3922. msgid "Adaptive Layers Variation Step Size"
  3923. msgstr "Tamaño de pasos de variación de las capas de adaptación"
  3924. msgctxt "adaptive_layer_height_variation_step description"
  3925. msgid "The difference in height of the next layer height compared to the previous one."
  3926. msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior."
  3927. msgctxt "adaptive_layer_height_threshold label"
  3928. msgid "Adaptive Layers Topography Size"
  3929. msgstr "Tamaño de la topografía de las capas de adaptación"
  3930. msgctxt "adaptive_layer_height_threshold description"
  3931. 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."
  3932. 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."
  3933. msgctxt "wall_overhang_angle label"
  3934. msgid "Overhanging Wall Angle"
  3935. msgstr "Ángulo de voladizo de pared"
  3936. msgctxt "wall_overhang_angle description"
  3937. 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."
  3938. 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."
  3939. msgctxt "wall_overhang_speed_factor label"
  3940. msgid "Overhanging Wall Speed"
  3941. msgstr "Velocidad de voladizo de pared"
  3942. msgctxt "wall_overhang_speed_factor description"
  3943. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  3944. msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal."
  3945. msgctxt "bridge_settings_enabled label"
  3946. msgid "Enable Bridge Settings"
  3947. msgstr "Habilitar ajustes del puente"
  3948. msgctxt "bridge_settings_enabled description"
  3949. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  3950. 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."
  3951. msgctxt "bridge_wall_min_length label"
  3952. msgid "Minimum Bridge Wall Length"
  3953. msgstr "Longitud mínima de la pared del puente"
  3954. msgctxt "bridge_wall_min_length description"
  3955. 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."
  3956. 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."
  3957. msgctxt "bridge_skin_support_threshold label"
  3958. msgid "Bridge Skin Support Threshold"
  3959. msgstr "Umbral del soporte del forro del puente"
  3960. msgctxt "bridge_skin_support_threshold description"
  3961. 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."
  3962. 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."
  3963. msgctxt "bridge_sparse_infill_max_density label"
  3964. msgid "Bridge Sparse Infill Max Density"
  3965. msgstr "Densidad máxima de relleno de puente escaso"
  3966. msgctxt "bridge_sparse_infill_max_density description"
  3967. 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."
  3968. 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."
  3969. msgctxt "bridge_wall_coast label"
  3970. msgid "Bridge Wall Coasting"
  3971. msgstr "Depósito por inercia de la pared del puente"
  3972. msgctxt "bridge_wall_coast description"
  3973. 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."
  3974. 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."
  3975. msgctxt "bridge_wall_speed label"
  3976. msgid "Bridge Wall Speed"
  3977. msgstr "Velocidad de pared del puente"
  3978. msgctxt "bridge_wall_speed description"
  3979. msgid "The speed at which the bridge walls are printed."
  3980. msgstr "Velocidad a la que se imprimen las paredes del puente."
  3981. msgctxt "bridge_wall_material_flow label"
  3982. msgid "Bridge Wall Flow"
  3983. msgstr "Flujo de pared del puente"
  3984. msgctxt "bridge_wall_material_flow description"
  3985. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  3986. msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor."
  3987. msgctxt "bridge_skin_speed label"
  3988. msgid "Bridge Skin Speed"
  3989. msgstr "Velocidad de forro del puente"
  3990. msgctxt "bridge_skin_speed description"
  3991. msgid "The speed at which bridge skin regions are printed."
  3992. msgstr "Velocidad a la que se imprimen las áreas de forro del puente."
  3993. msgctxt "bridge_skin_material_flow label"
  3994. msgid "Bridge Skin Flow"
  3995. msgstr "Flujo de forro del puente"
  3996. msgctxt "bridge_skin_material_flow description"
  3997. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  3998. msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor."
  3999. msgctxt "bridge_skin_density label"
  4000. msgid "Bridge Skin Density"
  4001. msgstr "Densidad de forro del puente"
  4002. msgctxt "bridge_skin_density description"
  4003. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4004. msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro."
  4005. msgctxt "bridge_fan_speed label"
  4006. msgid "Bridge Fan Speed"
  4007. msgstr "Velocidad del ventilador del puente"
  4008. msgctxt "bridge_fan_speed description"
  4009. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4010. msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente."
  4011. msgctxt "bridge_enable_more_layers label"
  4012. msgid "Bridge Has Multiple Layers"
  4013. msgstr "Puente con varias capas"
  4014. msgctxt "bridge_enable_more_layers description"
  4015. 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."
  4016. 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."
  4017. msgctxt "bridge_skin_speed_2 label"
  4018. msgid "Bridge Second Skin Speed"
  4019. msgstr "Velocidad del segundo forro del puente"
  4020. msgctxt "bridge_skin_speed_2 description"
  4021. msgid "Print speed to use when printing the second bridge skin layer."
  4022. msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente."
  4023. msgctxt "bridge_skin_material_flow_2 label"
  4024. msgid "Bridge Second Skin Flow"
  4025. msgstr "Flujo del segundo forro del puente"
  4026. msgctxt "bridge_skin_material_flow_2 description"
  4027. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4028. msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor."
  4029. msgctxt "bridge_skin_density_2 label"
  4030. msgid "Bridge Second Skin Density"
  4031. msgstr "Densidad del segundo forro del puente"
  4032. msgctxt "bridge_skin_density_2 description"
  4033. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4034. msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro."
  4035. msgctxt "bridge_fan_speed_2 label"
  4036. msgid "Bridge Second Skin Fan Speed"
  4037. msgstr "Velocidad del ventilador del segundo forro del puente"
  4038. msgctxt "bridge_fan_speed_2 description"
  4039. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4040. msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente."
  4041. msgctxt "bridge_skin_speed_3 label"
  4042. msgid "Bridge Third Skin Speed"
  4043. msgstr "Velocidad del tercer forro del puente"
  4044. msgctxt "bridge_skin_speed_3 description"
  4045. msgid "Print speed to use when printing the third bridge skin layer."
  4046. msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente."
  4047. msgctxt "bridge_skin_material_flow_3 label"
  4048. msgid "Bridge Third Skin Flow"
  4049. msgstr "Flujo del tercer forro del puente"
  4050. msgctxt "bridge_skin_material_flow_3 description"
  4051. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4052. msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor."
  4053. msgctxt "bridge_skin_density_3 label"
  4054. msgid "Bridge Third Skin Density"
  4055. msgstr "Densidad del tercer forro del puente"
  4056. msgctxt "bridge_skin_density_3 description"
  4057. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4058. msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro."
  4059. msgctxt "bridge_fan_speed_3 label"
  4060. msgid "Bridge Third Skin Fan Speed"
  4061. msgstr "Velocidad del ventilador del tercer forro del puente"
  4062. msgctxt "bridge_fan_speed_3 description"
  4063. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4064. msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente."
  4065. msgctxt "clean_between_layers label"
  4066. msgid "Wipe Nozzle Between Layers"
  4067. msgstr "Limpiar tobera entre capas"
  4068. msgctxt "clean_between_layers description"
  4069. 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."
  4070. 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."
  4071. msgctxt "max_extrusion_before_wipe label"
  4072. msgid "Material Volume Between Wipes"
  4073. msgstr "Volumen de material entre limpiezas"
  4074. msgctxt "max_extrusion_before_wipe description"
  4075. 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."
  4076. 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."
  4077. msgctxt "wipe_retraction_enable label"
  4078. msgid "Wipe Retraction Enable"
  4079. msgstr "Habilitación de retracción de limpieza"
  4080. msgctxt "wipe_retraction_enable description"
  4081. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4082. msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa."
  4083. msgctxt "wipe_retraction_amount label"
  4084. msgid "Wipe Retraction Distance"
  4085. msgstr "Distancia de retracción de limpieza"
  4086. msgctxt "wipe_retraction_amount description"
  4087. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4088. msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza."
  4089. msgctxt "wipe_retraction_extra_prime_amount label"
  4090. msgid "Wipe Retraction Extra Prime Amount"
  4091. msgstr "Cantidad de cebado adicional de retracción de limpieza"
  4092. msgctxt "wipe_retraction_extra_prime_amount description"
  4093. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4094. msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí."
  4095. msgctxt "wipe_retraction_speed label"
  4096. msgid "Wipe Retraction Speed"
  4097. msgstr "Velocidad de retracción de limpieza"
  4098. msgctxt "wipe_retraction_speed description"
  4099. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  4100. msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza."
  4101. msgctxt "wipe_retraction_retract_speed label"
  4102. msgid "Wipe Retraction Retract Speed"
  4103. msgstr "Velocidad de retracción en retracción de limpieza"
  4104. msgctxt "wipe_retraction_retract_speed description"
  4105. msgid "The speed at which the filament is retracted during a wipe retraction move."
  4106. msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza."
  4107. msgctxt "wipe_retraction_prime_speed label"
  4108. msgid "Wipe Retraction Prime Speed"
  4109. msgstr "Velocidad de cebado de retracción de limpieza"
  4110. msgctxt "wipe_retraction_prime_speed description"
  4111. msgid "The speed at which the filament is primed during a wipe retraction move."
  4112. msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza."
  4113. msgctxt "wipe_pause label"
  4114. msgid "Wipe Pause"
  4115. msgstr "Pausar limpieza"
  4116. msgctxt "wipe_pause description"
  4117. msgid "Pause after the unretract."
  4118. msgstr "Pausa después de no haber retracción."
  4119. msgctxt "wipe_hop_enable label"
  4120. msgid "Wipe Z Hop"
  4121. msgstr "Limpiar salto en Z"
  4122. msgctxt "wipe_hop_enable description"
  4123. 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."
  4124. 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."
  4125. msgctxt "wipe_hop_amount label"
  4126. msgid "Wipe Z Hop Height"
  4127. msgstr "Limpiar altura del salto en Z"
  4128. msgctxt "wipe_hop_amount description"
  4129. msgid "The height difference when performing a Z Hop."
  4130. msgstr "Diferencia de altura cuando se realiza un salto en Z."
  4131. msgctxt "wipe_hop_speed label"
  4132. msgid "Wipe Hop Speed"
  4133. msgstr "Limpiar velocidad de salto"
  4134. msgctxt "wipe_hop_speed description"
  4135. msgid "Speed to move the z-axis during the hop."
  4136. msgstr "Velocidad para mover el eje Z durante el salto."
  4137. msgctxt "wipe_brush_pos_x label"
  4138. msgid "Wipe Brush X Position"
  4139. msgstr "Limpiar posición X de cepillo"
  4140. msgctxt "wipe_brush_pos_x description"
  4141. msgid "X location where wipe script will start."
  4142. msgstr "Ubicación X donde se iniciará la secuencia de limpieza."
  4143. msgctxt "wipe_repeat_count label"
  4144. msgid "Wipe Repeat Count"
  4145. msgstr "Recuento de repeticiones de limpieza"
  4146. msgctxt "wipe_repeat_count description"
  4147. msgid "Number of times to move the nozzle across the brush."
  4148. msgstr "Número de movimientos de la tobera a lo largo del cepillo."
  4149. msgctxt "wipe_move_distance label"
  4150. msgid "Wipe Move Distance"
  4151. msgstr "Distancia de movimiento de limpieza"
  4152. msgctxt "wipe_move_distance description"
  4153. msgid "The distance to move the head back and forth across the brush."
  4154. msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo."
  4155. msgctxt "small_hole_max_size label"
  4156. msgid "Small Hole Max Size"
  4157. msgstr "Tamaño máximo de agujero pequeño"
  4158. msgctxt "small_hole_max_size description"
  4159. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  4160. 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."
  4161. msgctxt "small_feature_max_length label"
  4162. msgid "Small Feature Max Length"
  4163. msgstr "Longitud máxima de pequeñas partes"
  4164. msgctxt "small_feature_max_length description"
  4165. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  4166. 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."
  4167. msgctxt "small_feature_speed_factor label"
  4168. msgid "Small Feature Speed"
  4169. msgstr "Velocidad de pequeñas partes"
  4170. msgctxt "small_feature_speed_factor description"
  4171. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  4172. 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."
  4173. msgctxt "small_feature_speed_factor_0 label"
  4174. msgid "Small Feature Initial Layer Speed"
  4175. msgstr "Velocidad de la capa inicial de partes pequeñas"
  4176. msgctxt "small_feature_speed_factor_0 description"
  4177. 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."
  4178. 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."
  4179. msgctxt "material_alternate_walls label"
  4180. msgid "Alternate Wall Directions"
  4181. msgstr "Alternar direcciones de pared"
  4182. msgctxt "material_alternate_walls description"
  4183. msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing."
  4184. msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal."
  4185. msgctxt "group_outer_walls label"
  4186. msgid "Group Outer Walls"
  4187. msgstr "Agrupar las paredes exteriores"
  4188. msgctxt "group_outer_walls description"
  4189. msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped."
  4190. msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan."
  4191. msgctxt "ppr label"
  4192. msgid "Print Process Reporting"
  4193. msgstr "Informe del proceso de impresión"
  4194. msgctxt "ppr description"
  4195. msgid "Reporting events that go out of set thresholds"
  4196. msgstr "Informes de eventos que se salen de los umbrales establecidos"
  4197. msgctxt "ppr_enable label"
  4198. msgid "Enable Print Process Reporting"
  4199. msgstr "Activar informe de proceso de impresión"
  4200. msgctxt "ppr_enable description"
  4201. msgid "Enable print process reporting for setting threshold values for possible fault detection."
  4202. msgstr "Habilite la generación de informes de procesos de impresión para establecer valores umbral para la posible detección de fallos."
  4203. msgctxt "flow_warn_limit label"
  4204. msgid "Flow Warning"
  4205. msgstr "Advertencia de caudal"
  4206. msgctxt "flow_warn_limit description"
  4207. msgid "Limit on the flow warning for detection."
  4208. msgstr "Límite del aviso de caudal para la detección."
  4209. msgctxt "flow_anomaly_limit label"
  4210. msgid "Flow Limit"
  4211. msgstr "Límite de caudal"
  4212. msgctxt "flow_anomaly_limit description"
  4213. msgid "Limit on flow anomaly for detection."
  4214. msgstr "Límite en la anomalía de caudal para la detección."
  4215. msgctxt "print_temp_warn_limit label"
  4216. msgid "Print temperature Warning"
  4217. msgstr "Advertencia de temperatura de impresión"
  4218. msgctxt "print_temp_warn_limit description"
  4219. msgid "Limit on Print temperature warning for detection."
  4220. msgstr "Límite en la advertencia de temperatura de impresión para la detección."
  4221. msgctxt "print_temp_anomaly_limit label"
  4222. msgid "Print temperature Limit"
  4223. msgstr "Límite de temperatura de impresión"
  4224. msgctxt "print_temp_anomaly_limit description"
  4225. msgid "Limit on Print Temperature anomaly for detection."
  4226. msgstr "Límite de anomalía de temperatura de impresión para la detección."
  4227. msgctxt "bv_temp_warn_limit label"
  4228. msgid "Build Volume temperature Warning"
  4229. msgstr "Advertencia de temperatura de volumen de construcción"
  4230. msgctxt "bv_temp_warn_limit description"
  4231. msgid "Limit on Build Volume Temperature warning for detection."
  4232. msgstr "Límite de la advertencia de temperatura de volumen de construcción para la detección."
  4233. msgctxt "bv_temp_anomaly_limit label"
  4234. msgid "Build Volume temperature Limit"
  4235. msgstr "Límite de temperatura del volumen de acumulación"
  4236. msgctxt "bv_temp_anomaly_limit description"
  4237. msgid "Limit on Build Volume temperature Anomaly for detection."
  4238. msgstr "Límite de detección de anomalías en la temperatura del volumen de producción."
  4239. msgctxt "command_line_settings label"
  4240. msgid "Command Line Settings"
  4241. msgstr "Ajustes de la línea de comandos"
  4242. msgctxt "command_line_settings description"
  4243. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4244. msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura."
  4245. msgctxt "center_object label"
  4246. msgid "Center Object"
  4247. msgstr "Centrar objeto"
  4248. msgctxt "center_object description"
  4249. 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."
  4250. 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."
  4251. msgctxt "mesh_position_x label"
  4252. msgid "Mesh Position X"
  4253. msgstr "Posición X en la malla"
  4254. msgctxt "mesh_position_x description"
  4255. msgid "Offset applied to the object in the x direction."
  4256. msgstr "Desplazamiento aplicado al objeto en la dirección x."
  4257. msgctxt "mesh_position_y label"
  4258. msgid "Mesh Position Y"
  4259. msgstr "Posición Y en la malla"
  4260. msgctxt "mesh_position_y description"
  4261. msgid "Offset applied to the object in the y direction."
  4262. msgstr "Desplazamiento aplicado al objeto en la dirección y."
  4263. msgctxt "mesh_position_z label"
  4264. msgid "Mesh Position Z"
  4265. msgstr "Posición Z en la malla"
  4266. msgctxt "mesh_position_z description"
  4267. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4268. msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»."
  4269. msgctxt "mesh_rotation_matrix label"
  4270. msgid "Mesh Rotation Matrix"
  4271. msgstr "Matriz de rotación de la malla"
  4272. msgctxt "mesh_rotation_matrix description"
  4273. msgid "Transformation matrix to be applied to the model when loading it from file."
  4274. msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo."
  4275. msgctxt "support_type description"
  4276. 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."
  4277. msgstr "Ajusta la colocacin de las estructuras del soporte. La colocacin se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte tambin se imprimirn en el modelo."