cura.po 171 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608
  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 "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  15. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  16. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  17. msgctxt "@action:label"
  18. msgid "%1 & material"
  19. msgstr "%1 y material"
  20. msgctxt "@action:label"
  21. msgid "%1 out of %2"
  22. msgstr "%1 de un total de %2"
  23. msgctxt "@action:label"
  24. msgid "%1 override"
  25. msgid_plural "%1 overrides"
  26. msgstr[0] "%1 sobrescrito"
  27. msgstr[1] "%1 sobrescritos"
  28. msgctxt "@action:label"
  29. msgid "%1, %2 override"
  30. msgid_plural "%1, %2 overrides"
  31. msgstr[0] "%1, %2 sobrescrito"
  32. msgstr[1] "%1, %2 sobrescritos"
  33. msgctxt "@label g for grams"
  34. msgid "%1g"
  35. msgstr "%1 g"
  36. msgctxt "@label m for meter"
  37. msgid "%1m"
  38. msgstr "%1 m"
  39. msgctxt "@action:inmenu menubar:printer"
  40. msgid "&Add Printer..."
  41. msgstr "&Agregar impresora..."
  42. msgctxt "@action:inmenu menubar:view"
  43. msgid "&Camera position"
  44. msgstr "&Posición de la cámara"
  45. msgctxt "@action:inmenu menubar:profile"
  46. msgid "&Create profile from current settings/overrides..."
  47. msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..."
  48. msgctxt "@action:inmenu menubar:profile"
  49. msgid "&Discard current changes"
  50. msgstr "&Descartar cambios actuales"
  51. msgctxt "@title:menu menubar:toplevel"
  52. msgid "&Edit"
  53. msgstr "&Edición"
  54. msgctxt "@title:menu menubar:file"
  55. msgid "&Export..."
  56. msgstr "&Exportar..."
  57. msgctxt "@title:menu menubar:toplevel"
  58. msgid "&File"
  59. msgstr "&Archivo"
  60. msgctxt "@action:inmenu menubar:edit"
  61. msgid "&Group Models"
  62. msgstr "A&grupar modelos"
  63. msgctxt "@title:menu menubar:toplevel"
  64. msgid "&Help"
  65. msgstr "A&yuda"
  66. msgctxt "@title:menu"
  67. msgid "&Material"
  68. msgstr "&Material"
  69. msgctxt "@action:inmenu menubar:edit"
  70. msgid "&Merge Models"
  71. msgstr "Co&mbinar modelos"
  72. msgctxt "@action:inmenu"
  73. msgid "&Multiply Model..."
  74. msgstr "&Multiplicar modelo..."
  75. msgctxt "@action:inmenu menubar:file"
  76. msgid "&New Project..."
  77. msgstr "&Nuevo proyecto..."
  78. msgctxt "@action:inmenu menubar:file"
  79. msgid "&Open File(s)..."
  80. msgstr "&Abrir archivo(s)..."
  81. msgctxt "@title:menu menubar:settings"
  82. msgid "&Printer"
  83. msgstr "&Impresora"
  84. msgctxt "@action:inmenu menubar:file"
  85. msgid "&Quit"
  86. msgstr "&Salir"
  87. msgctxt "@action:inmenu menubar:edit"
  88. msgid "&Redo"
  89. msgstr "&Rehacer"
  90. msgctxt "@title:menu menubar:file"
  91. msgid "&Save Project..."
  92. msgstr "&Guardar proyecto..."
  93. msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'"
  94. msgid "&Save Universal Cura Project..."
  95. msgstr "&Guardar proyecto Universal Cura..."
  96. msgctxt "@title:menu menubar:toplevel"
  97. msgid "&Settings"
  98. msgstr "A&justes"
  99. msgctxt "@action:inmenu menubar:edit"
  100. msgid "&Undo"
  101. msgstr "Des&hacer"
  102. msgctxt "@action:inmenu menubar:profile"
  103. msgid "&Update profile with current settings/overrides"
  104. msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales"
  105. msgctxt "@title:menu menubar:toplevel"
  106. msgid "&View"
  107. msgstr "&Ver"
  108. msgctxt "@label"
  109. msgid "*You will need to restart the application for these changes to have effect."
  110. msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
  111. msgctxt "@text"
  112. msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community"
  113. msgstr "- Añada perfiles de materiales y complementos del Marketplace "
  114. "- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales "
  115. "- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker"
  116. msgctxt "@heading"
  117. msgid "-- incomplete --"
  118. msgstr "-- incompleto --"
  119. msgctxt "@action:label"
  120. msgid "1mm Transmittance (%)"
  121. msgstr "Transmitancia de 1 mm (%)"
  122. msgctxt "@info:title"
  123. msgid "3D Model Assistant"
  124. msgstr "Asistente del modelo 3D"
  125. msgctxt "@action:inmenu menubar:view"
  126. msgid "3D View"
  127. msgstr "Vista en 3D"
  128. msgctxt "@info:tooltip"
  129. msgid "3D View"
  130. msgstr "Vista en 3D"
  131. msgctxt "@item:inlistbox"
  132. msgid "3MF File"
  133. msgstr "Archivo 3MF"
  134. msgctxt "@error:zip"
  135. msgid "3MF Writer plug-in is corrupt."
  136. msgstr "El complemento del Escritor de 3MF está dañado."
  137. msgctxt "@item:inlistbox"
  138. msgid "3MF file"
  139. msgstr "Archivo 3MF"
  140. msgctxt "@info, %1 is the name of the custom profile"
  141. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  142. msgstr "El perfil personalizado <b>%1</b> está activo y ha sobrescrito algunos ajustes."
  143. msgctxt "@info, %1 is the name of the custom profile"
  144. msgid "<b>%1</b> custom profile is overriding some settings."
  145. msgstr "El perfil personalizado <b>%1</b> anula algunos ajustes."
  146. msgctxt "@label %i will be replaced with a profile name"
  147. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  148. msgstr "<b>Solo la configuración modificada por el usuario se guardar en el perfil personalizado.</b><br/>El nuevo perfil personalizado heredar las propiedades de <b>%1</b> para los materiales compatibles."
  149. msgctxt "@label OpenGL renderer"
  150. msgid "<li>OpenGL Renderer: {renderer}</li>"
  151. msgstr "<li>Representador de OpenGL: {renderer}</li>"
  152. msgctxt "@label OpenGL vendor"
  153. msgid "<li>OpenGL Vendor: {vendor}</li>"
  154. msgstr "<li>Proveedor de OpenGL: {vendor}</li>"
  155. msgctxt "@label OpenGL version"
  156. msgid "<li>OpenGL Version: {version}</li>"
  157. msgstr "<li>Versión de OpenGL: {version}</li>"
  158. msgctxt "@label crash message"
  159. msgid "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n "
  160. msgstr "<p><b>Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>"
  161. " <p>Utilice el botón &quot;Enviar informe&quot; para publicar automáticamente el informe de errores en nuestros servidores.</p>"
  162. " "
  163. msgctxt "@label crash message"
  164. msgid "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n <p>Backups can be found in the configuration folder.</p>\n <p>Please send us this Crash Report to fix the problem.</p>\n "
  165. msgstr "<p><b>¡Vaya! UltiMaker Cura ha encontrado un error.</p></b>"
  166. " <p>Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.</p>"
  167. " <p>Las copias de seguridad se encuentran en la carpeta de configuración.</p>"
  168. " <p>Envíenos el informe de errores para que podamos solucionar el problema.</p>"
  169. " "
  170. msgctxt "@info:status"
  171. msgid "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n<p>{model_names}</p>\n<p>Find out how to ensure the best possible print quality and reliability.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  172. msgstr "<p>Es posible que uno o más modelos 3D no se impriman correctamente debido al tamaño del modelo y la configuración del material:</p>"
  173. "<p>{model_names}</p>"
  174. "<p>Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.</p>"
  175. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guía de impresión de calidad</a></p>"
  176. msgctxt "@label"
  177. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  178. msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?"
  179. msgctxt "info:status"
  180. msgid "A cloud connection is not available for a printer"
  181. msgid_plural "A cloud connection is not available for some printers"
  182. msgstr[0] "La conexión a la nube no está disponible para una impresora"
  183. msgstr[1] "La conexión a la nube no está disponible para algunas impresoras"
  184. msgctxt "@text"
  185. msgid "A highly dense and strong part but at a slower print time. Great for functional parts."
  186. msgstr "Una pieza muy densa y resistente pero con un tiempo de impresión más lento. Excelente para piezas funcionales."
  187. msgctxt "@message"
  188. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  189. msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior."
  190. msgctxt "@item:inlistbox"
  191. msgid "AMF File"
  192. msgstr "Archivo AMF"
  193. msgctxt "@label"
  194. msgid "Abort"
  195. msgstr "Cancelar"
  196. msgctxt "@label"
  197. msgid "Abort Print"
  198. msgstr "Cancelar impresión"
  199. msgctxt "@window:title"
  200. msgid "Abort print"
  201. msgstr "Cancela la impresión"
  202. msgctxt "@label:status"
  203. msgid "Aborted"
  204. msgstr "Cancelado"
  205. msgctxt "@label"
  206. msgid "Aborting..."
  207. msgstr "Cancelando..."
  208. msgctxt "@label:status"
  209. msgid "Aborting..."
  210. msgstr "Cancelando..."
  211. msgctxt "@title:window The argument is the application name."
  212. msgid "About %1"
  213. msgstr "Acerca de %1"
  214. msgctxt "@action:inmenu menubar:help"
  215. msgid "About..."
  216. msgstr "Acerca de..."
  217. msgctxt "@button"
  218. msgid "Accept"
  219. msgstr "Aceptar"
  220. msgctxt "@label"
  221. msgid "Account synced"
  222. msgstr "Cuenta sincronizada"
  223. msgctxt "@label:status"
  224. msgid "Action required"
  225. msgstr "Acción requerida"
  226. msgctxt "@action:button"
  227. msgid "Activate"
  228. msgstr "Activar"
  229. msgctxt "@label"
  230. msgid "Active print"
  231. msgstr "Activar impresión"
  232. msgctxt "@action:button"
  233. msgid "Add"
  234. msgstr "Agregar"
  235. msgctxt "@button"
  236. msgid "Add"
  237. msgstr "Agregar"
  238. msgctxt "@action:button"
  239. msgid "Add New"
  240. msgstr "Añadir nuevo"
  241. msgctxt "@title:window"
  242. msgid "Add Printer"
  243. msgstr "Agregar impresora"
  244. msgctxt "@button"
  245. msgid "Add UltiMaker printer via Digital Factory"
  246. msgstr "Añadir impresora UltiMaker a través de Digital Factory"
  247. msgctxt "@label"
  248. msgid "Add a Cloud printer"
  249. msgstr "Añadir una impresora a la nube"
  250. msgctxt "@label"
  251. msgid "Add a networked printer"
  252. msgstr "Agregar una impresora en red"
  253. msgctxt "@label"
  254. msgid "Add a non-networked printer"
  255. msgstr "Agregar una impresora fuera de red"
  256. msgctxt "@action"
  257. msgid "Add a script"
  258. msgstr "Añadir secuencia de comando"
  259. msgctxt "@option:check"
  260. msgid "Add icon to system tray *"
  261. msgstr "Añadir icono a la bandeja del sistema *"
  262. msgctxt "@button"
  263. msgid "Add local printer"
  264. msgstr "Añadir impresora local"
  265. msgctxt "@option:check"
  266. msgid "Add machine prefix to job name"
  267. msgstr "Agregar prefijo de la máquina al nombre del trabajo"
  268. msgctxt "@text"
  269. msgid "Add material settings and plugins from the Marketplace"
  270. msgstr "Añada ajustes de material y complementos desde Marketplace"
  271. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  272. msgid "Add more materials from Marketplace"
  273. msgstr "Añadir más materiales de Marketplace"
  274. msgctxt "@button"
  275. msgid "Add printer"
  276. msgstr "Agregar impresora"
  277. msgctxt "@label"
  278. msgid "Add printer"
  279. msgstr "Agregar impresora"
  280. msgctxt "@label"
  281. msgid "Add printer by IP"
  282. msgstr "Agregar impresora por IP"
  283. msgctxt "@label"
  284. msgid "Add printer by IP address"
  285. msgstr "Agregar impresora por dirección IP"
  286. msgctxt "@button"
  287. msgid "Add printer manually"
  288. msgstr "Añadir impresora manualmente"
  289. msgctxt "info:status Filled in with printer name and printer model."
  290. msgid "Adding printer {name} ({model}) from your account"
  291. msgstr "Añadiendo la impresora {name} ({model}) de su cuenta"
  292. msgctxt "@label"
  293. msgid "Address"
  294. msgstr "Dirección"
  295. msgctxt "@label"
  296. msgid "Adhesion"
  297. msgstr "Adherencia"
  298. msgctxt "@label"
  299. msgid "Adhesion Information"
  300. msgstr "Información sobre adherencia"
  301. msgctxt "@label"
  302. msgid "Adjusts the density of infill of the print."
  303. msgstr "Ajusta la densidad del relleno de la impresión."
  304. msgctxt "support_type description"
  305. 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."
  306. 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."
  307. msgctxt "@label Header for list of settings."
  308. msgid "Affected By"
  309. msgstr "Afectado por"
  310. msgctxt "@label Header for list of settings."
  311. msgid "Affects"
  312. msgstr "Afecta a"
  313. msgctxt "@button"
  314. msgid "Agree"
  315. msgstr "Estoy de acuerdo"
  316. msgctxt "@item:inlistbox"
  317. msgid "All Files (*)"
  318. msgstr "Todos los archivos (*)"
  319. msgctxt "@item:inlistbox"
  320. msgid "All Supported Types ({0})"
  321. msgstr "Todos los tipos compatibles ({0})"
  322. msgctxt "@text:window"
  323. msgid "Allow sending anonymous data"
  324. msgstr "Permitir el envío de datos anónimos"
  325. msgctxt "@option:discardOrKeep"
  326. msgid "Always ask me this"
  327. msgstr "Preguntar siempre"
  328. msgctxt "@option:openProject"
  329. msgid "Always ask me this"
  330. msgstr "Preguntar siempre"
  331. msgctxt "@option:discardOrKeep"
  332. msgid "Always discard changed settings"
  333. msgstr "Descartar siempre los ajustes modificados"
  334. msgctxt "@option:openProject"
  335. msgid "Always import models"
  336. msgstr "Importar modelos siempre"
  337. msgctxt "@option:openProject"
  338. msgid "Always open as a project"
  339. msgstr "Abrir siempre como un proyecto"
  340. msgctxt "@option:discardOrKeep"
  341. msgid "Always transfer changed settings to new profile"
  342. msgstr "Transferir siempre los ajustes modificados al nuevo perfil"
  343. msgctxt "@info:tooltip"
  344. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  345. msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
  346. msgctxt "@label"
  347. msgid "Annealing"
  348. msgstr "Recocido"
  349. msgctxt "@label"
  350. msgid "Anonymous"
  351. msgstr "Anónimo"
  352. msgctxt "@option:radio"
  353. msgid "Anonymous crash reports"
  354. msgstr "Informes anónimos de fallos"
  355. msgctxt "@label Description for application component"
  356. msgid "Application framework"
  357. msgstr "Entorno de la aplicación"
  358. msgctxt "@title:column"
  359. msgid "Applies on"
  360. msgstr "Se aplica en"
  361. msgctxt "@label"
  362. msgid "Apply Extruder offsets to GCode"
  363. msgstr "Aplicar compensaciones del extrusor a GCode"
  364. msgctxt "@info:title"
  365. msgid "Are you ready for cloud printing?"
  366. msgstr "¿Está preparado para la impresión en la nube?"
  367. msgctxt "@label %1 is the name of a print job."
  368. msgid "Are you sure you want to abort %1?"
  369. msgstr "¿Seguro que desea cancelar %1?"
  370. msgctxt "@label"
  371. msgid "Are you sure you want to abort the print?"
  372. msgstr "¿Está seguro de que desea cancelar la impresión?"
  373. msgctxt "@label %1 is the name of a print job."
  374. msgid "Are you sure you want to delete %1?"
  375. msgstr "¿Seguro que desea borrar %1?"
  376. msgctxt "@dialog:info"
  377. msgid "Are you sure you want to delete this backup? This cannot be undone."
  378. msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer."
  379. msgctxt "@label %1 is the application name"
  380. msgid "Are you sure you want to exit %1?"
  381. msgstr "¿Seguro que desea salir de %1?"
  382. msgctxt "@label %1 is the name of a print job."
  383. msgid "Are you sure you want to move %1 to the top of the queue?"
  384. msgstr "¿Seguro que desea mover %1 al principio de la cola?"
  385. msgctxt "@message {printer_name} is replaced with the name of the printer"
  386. msgid "Are you sure you want to remove {printer_name} temporarily?"
  387. msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?"
  388. msgctxt "@info:question"
  389. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  390. msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
  391. msgctxt "@label (%1 is object name)"
  392. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  393. msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
  394. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  395. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  396. msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!"
  397. msgctxt "@action:inmenu menubar:edit"
  398. msgid "Arrange All Models"
  399. msgstr "Organizar todos los modelos"
  400. msgctxt "@action:inmenu menubar:edit"
  401. msgid "Arrange All Models in a grid"
  402. msgstr "Organizar todos los modelos en una cuadrícula"
  403. msgctxt "@action:inmenu menubar:edit"
  404. msgid "Arrange Selection"
  405. msgstr "Organizar selección"
  406. msgctxt "@label:button"
  407. msgid "Ask a question"
  408. msgstr "Haga una pregunta"
  409. msgctxt "@checkbox:description"
  410. msgid "Auto Backup"
  411. msgstr "Copia de seguridad automática"
  412. msgctxt "@checkbox:description"
  413. msgid "Automatically create a backup each day that Cura is started."
  414. msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura."
  415. msgctxt "@option:check"
  416. msgid "Automatically drop models to the build plate"
  417. msgstr "Arrastrar modelos a la placa de impresión de forma automática"
  418. msgctxt "@action:button"
  419. msgid "Automatically upgrade Firmware"
  420. msgstr "Actualización de firmware automática"
  421. msgctxt "@label"
  422. msgid "Available networked printers"
  423. msgstr "Impresoras en red disponibles"
  424. msgctxt "@item:inlistbox"
  425. msgid "BMP Image"
  426. msgstr "Imagen BMP"
  427. msgctxt "@button"
  428. msgid "Back"
  429. msgstr "Atrás"
  430. msgctxt "@button:tooltip"
  431. msgid "Back"
  432. msgstr "Atrás"
  433. msgctxt "@info:title"
  434. msgid "Backup"
  435. msgstr "Copia de seguridad"
  436. msgctxt "@button"
  437. msgid "Backup Now"
  438. msgstr "Realizar copia de seguridad ahora"
  439. msgctxt "@action:button"
  440. msgid "Backup and Reset Configuration"
  441. msgstr "Realizar copia de seguridad y restablecer configuración"
  442. msgctxt "@text"
  443. msgid "Backup and sync your material settings and plugins"
  444. msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales"
  445. msgctxt "@description"
  446. msgid "Backup and synchronize your Cura settings."
  447. msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura."
  448. msgctxt "@info:title"
  449. msgid "Backups"
  450. msgstr "Copias de seguridad"
  451. msgctxt "@label"
  452. msgid "Balanced"
  453. msgstr "Equilibrado"
  454. msgctxt "@action:label"
  455. msgid "Base (mm)"
  456. msgstr "Base (mm)"
  457. msgctxt "@action:inmenu menubar:view"
  458. msgid "Bottom View"
  459. msgstr "Vista inferior"
  460. msgctxt "@label"
  461. msgid "Brand"
  462. msgstr "Marca"
  463. msgctxt "@title"
  464. msgid "Build Plate Leveling"
  465. msgstr "Nivelación de la placa de impresión"
  466. msgctxt "@info:title"
  467. msgid "Build Volume"
  468. msgstr "Volumen de impresión"
  469. msgctxt "@label"
  470. msgid "Build plate"
  471. msgstr "Placa de impresión"
  472. msgctxt "@label"
  473. msgid "Build plate shape"
  474. msgstr "Forma de la placa de impresión"
  475. msgctxt "@label"
  476. msgid "Bundled Materials"
  477. msgstr "Materiales agrupados"
  478. msgctxt "@label"
  479. msgid "Bundled Plugins"
  480. msgstr "Complementos agrupados"
  481. msgctxt "@button"
  482. msgid "Buy spool"
  483. msgstr "Comprar bobina"
  484. msgctxt "@label Is followed by the name of an author"
  485. msgid "By"
  486. msgstr "Por"
  487. msgctxt "@label Description for application dependency"
  488. msgid "C/C++ Binding library"
  489. msgstr "Biblioteca de enlaces C/C++"
  490. msgctxt "@item:inlistbox"
  491. msgid "COLLADA Digital Asset Exchange"
  492. msgstr "COLLADA Digital Asset Exchange"
  493. msgctxt "@info:status"
  494. msgid "Calculated"
  495. msgstr "Calculado"
  496. msgctxt "@window:text"
  497. msgid "Camera navigation:"
  498. msgstr "Navegación por la cámara:"
  499. msgctxt "@window:text"
  500. msgid "Camera rendering:"
  501. msgstr "Renderizado de cámara:"
  502. msgctxt "@action:inmenu menubar:view"
  503. msgid "Camera view"
  504. msgstr "Vista de cámara"
  505. msgctxt "@info:title"
  506. msgid "Can't Find Location"
  507. msgstr "No se puede encontrar la ubicación"
  508. msgctxt "@info:title"
  509. msgid "Can't Open Project File"
  510. msgstr "No se puede abrir el archivo de proyecto"
  511. msgctxt "@label"
  512. msgid "Can't connect to your UltiMaker printer?"
  513. msgstr "¿No puede conectarse a la impresora UltiMaker?"
  514. msgctxt "@info:status Don't translate the XML tags <filename>!"
  515. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  516. msgstr "No se puede importar el perfil de <filename>{0}</filename> antes de añadir una impresora."
  517. msgctxt "@info:status"
  518. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  519. msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
  520. msgctxt "@info:error"
  521. msgid "Can't write to UFP file:"
  522. msgstr "No se puede escribir en el archivo UFP:"
  523. msgctxt "@action:button"
  524. msgid "Cancel"
  525. msgstr "Cancelar"
  526. msgctxt "@button"
  527. msgid "Cancel"
  528. msgstr "Cancelar"
  529. msgctxt "@button Cancel pre-heating"
  530. msgid "Cancel"
  531. msgstr "Cancelar"
  532. msgctxt "@option:check"
  533. msgid "Caution message in g-code reader"
  534. msgstr "Mensaje de advertencia en el lector de GCode"
  535. msgctxt "@action:inmenu"
  536. msgid "Ce&nter Model on Platform"
  537. msgstr "Ce&ntrar modelo en plataforma"
  538. msgctxt "@action:inmenu menubar:edit"
  539. msgid "Center Selected"
  540. msgstr "Centrar selección"
  541. msgctxt "@action:button"
  542. msgid "Center camera when item is selected"
  543. msgstr "Centrar cámara cuando se selecciona elemento"
  544. msgctxt "@info:tooltip"
  545. msgid "Change active post-processing scripts."
  546. msgstr "Cambiar las secuencias de comandos de posprocesamiento."
  547. msgctxt "@label"
  548. msgid "Change material %1 from %2 to %3."
  549. msgstr "Cambiar material %1, de %2 a %3."
  550. msgctxt "@label"
  551. msgid "Change print core %1 from %2 to %3."
  552. msgstr "Cambiar print core %1, de %2 a %3."
  553. msgctxt "@info:title"
  554. msgid "Changes detected from your UltiMaker account"
  555. msgstr "Se han detectado cambios desde su cuenta de UltiMaker"
  556. msgctxt "@title"
  557. msgid "Changes from your account"
  558. msgstr "Cambios desde su cuenta"
  559. msgctxt "@label:textbox"
  560. msgid "Check all"
  561. msgstr "Comprobar todo"
  562. msgctxt "@button"
  563. msgid "Check for account updates"
  564. msgstr "Buscar actualizaciones de la cuenta"
  565. msgctxt "@option:check"
  566. msgid "Check for updates on start"
  567. msgstr "Buscar actualizaciones al iniciar"
  568. msgctxt "@label"
  569. msgid "Checking..."
  570. msgstr "Comprobando..."
  571. msgctxt "@label"
  572. msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"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."
  573. 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."
  574. msgctxt "@action:inmenu menubar:edit"
  575. msgid "Clear Build Plate"
  576. msgstr "Borrar placa de impresión"
  577. msgctxt "@option:check"
  578. msgid "Clear buildplate before loading model into the single instance"
  579. msgstr "Limpiar la placa de impresión antes de cargar el modelo en la instancia única"
  580. msgctxt "@text"
  581. msgid "Click the export material archive button."
  582. msgstr "Haga clic en el botón para exportar el archivo de material."
  583. msgctxt "@action:button"
  584. msgid "Close"
  585. msgstr "Cerrar"
  586. msgctxt "@title:window %1 is the application name"
  587. msgid "Closing %1"
  588. msgstr "Cerrando %1"
  589. msgctxt "@action:inmenu"
  590. msgid "Collapse All Categories"
  591. msgstr "Contraer todas las categorías"
  592. msgctxt "@label"
  593. msgid "Color"
  594. msgstr "Color"
  595. msgctxt "@action:label"
  596. msgid "Color Model"
  597. msgstr "Modelo de color"
  598. msgctxt "@label"
  599. msgid "Color scheme"
  600. msgstr "Combinación de colores"
  601. msgctxt "@info"
  602. msgid "Compare and save."
  603. msgstr "Comparar y guardar."
  604. msgctxt "@label"
  605. msgid "Compatibility Mode"
  606. msgstr "Modo de compatibilidad"
  607. msgctxt "@label Description for application dependency"
  608. msgid "Compatibility between Python 2 and 3"
  609. msgstr "Compatibilidad entre Python 2 y 3"
  610. msgctxt "@title:label"
  611. msgid "Compatible Printers"
  612. msgstr "Impresoras compatibles"
  613. msgctxt "@label"
  614. msgid "Compatible material diameter"
  615. msgstr "Diámetro del material compatible"
  616. msgctxt "@header"
  617. msgid "Compatible printers"
  618. msgstr "Impresoras compatibles"
  619. msgctxt "@header"
  620. msgid "Compatible support materials"
  621. msgstr "Materiales de soporte compatibles"
  622. msgctxt "@header"
  623. msgid "Compatible with Material Station"
  624. msgstr "Compatible con Material Station"
  625. msgctxt "@item:inlistbox"
  626. msgid "Compressed COLLADA Digital Asset Exchange"
  627. msgstr "COLLADA Digital Asset Exchange comprimido"
  628. msgctxt "@item:inlistbox"
  629. msgid "Compressed G-code File"
  630. msgstr "Archivo GCode comprimido"
  631. msgctxt "@title:window"
  632. msgid "Configuration Changes"
  633. msgstr "Cambios de configuración"
  634. msgctxt "@error"
  635. msgid "Configuration not supported"
  636. msgstr "Configuración no admitida"
  637. msgctxt "@header"
  638. msgid "Configurations"
  639. msgstr "Configuraciones"
  640. msgctxt "@label"
  641. msgid "Configurations"
  642. msgstr "Configuraciones"
  643. msgctxt "@action:inmenu"
  644. msgid "Configure Cura..."
  645. msgstr "Configurar Cura..."
  646. msgctxt "@info:tooltip"
  647. msgid "Configure Per Model Settings"
  648. msgstr "Configurar ajustes por modelo"
  649. msgctxt "@action"
  650. msgid "Configure group"
  651. msgstr "Configurar grupo"
  652. msgctxt "@action:menu"
  653. msgid "Configure setting visibility..."
  654. msgstr "Configurar visibilidad de los ajustes..."
  655. msgctxt "@title:window"
  656. msgid "Confirm Diameter Change"
  657. msgstr "Confirmar cambio de diámetro"
  658. msgctxt "@title:window"
  659. msgid "Confirm Remove"
  660. msgstr "Confirmar eliminación"
  661. msgctxt "@action:button"
  662. msgid "Connect"
  663. msgstr "Conectar"
  664. msgctxt "@button"
  665. msgid "Connect"
  666. msgstr "Conectar"
  667. msgctxt "@title:window"
  668. msgid "Connect to Networked Printer"
  669. msgstr "Conectar con la impresora en red"
  670. msgctxt "@action"
  671. msgid "Connect via Network"
  672. msgstr "Conectar a través de la red"
  673. msgctxt "@info:status"
  674. msgid "Connected over the network"
  675. msgstr "Conectado a través de la red"
  676. msgctxt "@label"
  677. msgid "Connected printers"
  678. msgstr "Impresoras conectadas"
  679. msgctxt "@info:status"
  680. msgid "Connected via USB"
  681. msgstr "Conectado mediante USB"
  682. msgctxt "@info:status"
  683. msgid "Connected via cloud"
  684. msgstr "Conectado mediante cloud"
  685. msgctxt "@tooltip:button"
  686. msgid "Consult the UltiMaker Community."
  687. msgstr "Consulte en la Comunidad UltiMaker."
  688. msgctxt "@title:window"
  689. msgid "Convert Image"
  690. msgstr "Convertir imagen"
  691. msgctxt "@label"
  692. msgid "Cooling Fan Number"
  693. msgstr "Número de ventilador de enfriamiento"
  694. msgctxt "@action:menu"
  695. msgid "Copy all changed values to all extruders"
  696. msgstr "Copiar todos los valores cambiados en todos los extrusores"
  697. msgctxt "@action:inmenu menubar:edit"
  698. msgid "Copy to clipboard"
  699. msgstr "Copiar en el portapapeles"
  700. msgctxt "@action:menu"
  701. msgid "Copy value to all extruders"
  702. msgstr "Copiar valor en todos los extrusores"
  703. msgctxt "@label"
  704. msgid "Cost per Meter"
  705. msgstr "Coste por metro"
  706. msgctxt "@info"
  707. msgid "Could not access update information."
  708. msgstr "No se pudo acceder a la información actualizada."
  709. msgctxt "@label"
  710. msgid "Could not connect to device."
  711. msgstr "No se ha podido conectar al dispositivo."
  712. msgctxt "@info:backup_failed"
  713. msgid "Could not create archive from user data directory: {}"
  714. msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}"
  715. msgctxt "@info:status Don't translate the tag {device}!"
  716. msgid "Could not find a file name when trying to write to {device}."
  717. msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
  718. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  719. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  720. msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>"
  721. msgctxt "@info:error"
  722. msgid "Could not interpret the server's response."
  723. msgstr "Imposible interpretar la respuesta del servidor."
  724. msgctxt "@error:load"
  725. msgid "Could not load GCodeWriter plugin. Try to re-enable the plugin."
  726. msgstr "No se pudo cargar el plugin GCodeWriter. Intenta volver a habilitar el plugin."
  727. msgctxt "@info:error"
  728. msgid "Could not reach Marketplace."
  729. msgstr "Imposible acceder a Marketplace."
  730. msgctxt "@message"
  731. msgid "Could not read response."
  732. msgstr "No se ha podido leer la respuesta."
  733. msgctxt "@message:text"
  734. msgid "Could not save material archive to {}:"
  735. msgstr "No se pudo guardar el archivo de material en {}:"
  736. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  737. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  738. msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  739. msgctxt "@info:status"
  740. msgid "Could not save to removable drive {0}: {1}"
  741. msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
  742. msgctxt "@info:text"
  743. msgid "Could not upload the data to the printer."
  744. msgstr "No se han podido cargar los datos en la impresora."
  745. msgctxt "@info:plugin_failed"
  746. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process."
  747. msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}"
  748. "No se tiene permiso para ejecutar el proceso."
  749. msgctxt "@info:plugin_failed"
  750. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)"
  751. msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}"
  752. "El sistema operativo lo está bloqueando (¿antivirus?)"
  753. msgctxt "@info:plugin_failed"
  754. msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable"
  755. msgstr "No se pudo iniciar EnginePlugin: {self._plugin_id}"
  756. "El recurso no está disponible temporalmente"
  757. msgctxt "@title:window"
  758. msgid "Crash Report"
  759. msgstr "Informe del accidente"
  760. msgctxt "@title:window"
  761. msgid "Create Profile"
  762. msgstr "Crear perfil"
  763. msgctxt "@text"
  764. msgid "Create a free UltiMaker Account"
  765. msgstr "Cree una cuenta gratuita de UltiMaker"
  766. msgctxt "@button"
  767. msgid "Create a free UltiMaker account"
  768. msgstr "Cree una cuenta gratuita de UltiMaker"
  769. msgctxt "@info:tooltip"
  770. msgid "Create a volume in which supports are not printed."
  771. msgstr "Cree un volumen que no imprima los soportes."
  772. msgctxt "@action:ComboBox Save settings in a new profile"
  773. msgid "Create new"
  774. msgstr "Crear nuevo"
  775. msgctxt "@action:button"
  776. msgid "Create new"
  777. msgstr "Crear nuevo"
  778. msgctxt "@button"
  779. msgid "Create new"
  780. msgstr "Crear nuevo"
  781. msgctxt "@action:tooltip"
  782. msgid "Create new profile from current settings/overrides"
  783. msgstr "Crear nuevo perfil a partir de la configuración o anulaciones actuales"
  784. msgctxt "@tooltip:button"
  785. msgid "Create print projects in Digital Library."
  786. msgstr "Cree proyectos de impresión en Digital Library."
  787. msgctxt "@info:backup_status"
  788. msgid "Creating your backup..."
  789. msgstr "Creando copia de seguridad..."
  790. msgctxt "@item:inlistbox"
  791. msgid "Cura 15.04 profiles"
  792. msgstr "Perfiles de Cura 15.04"
  793. msgctxt "@title:window"
  794. msgid "Cura Backups"
  795. msgstr "Copias de seguridad de Cura"
  796. msgctxt "@item:inlistbox"
  797. msgid "Cura Profile"
  798. msgstr "Perfil de cura"
  799. msgctxt "@item:inlistbox"
  800. msgid "Cura Project 3MF file"
  801. msgstr "Archivo 3MF del proyecto de Cura"
  802. msgctxt "@backuplist:label"
  803. msgid "Cura Version"
  804. msgstr "Versión de Cura"
  805. msgctxt "@title:window"
  806. msgid "Cura can't start"
  807. msgstr "Cura no puede iniciarse"
  808. msgctxt "@info:status"
  809. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  810. msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}."
  811. msgctxt "@info:credit"
  812. msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:"
  813. msgstr "UltiMaker ha desarrollado Cura en cooperación con la comunidad."
  814. "Cura se enorgullece de utilizar los siguientes proyectos de código abierto:"
  815. msgctxt "@label"
  816. msgid "Cura language"
  817. msgstr "Idioma de Cura"
  818. msgctxt "@label Cura version number"
  819. msgid "Cura version"
  820. msgstr "Versión de Cura"
  821. msgctxt "@label"
  822. msgid "Currency:"
  823. msgstr "Moneda:"
  824. msgctxt "@title:column"
  825. msgid "Current"
  826. msgstr "Actual"
  827. msgctxt "@title:column"
  828. msgid "Current changes"
  829. msgstr "Cambios actuales"
  830. msgctxt "@header"
  831. msgid "Custom"
  832. msgstr "Personalizado"
  833. msgctxt "@label"
  834. msgid "Custom"
  835. msgstr "Personalizado"
  836. msgctxt "@title:tab"
  837. msgid "Custom"
  838. msgstr "Personalizado"
  839. msgctxt "@label"
  840. msgid "Custom Material"
  841. msgstr "Material personalizado"
  842. msgctxt "@label"
  843. msgid "Custom profile"
  844. msgstr "Perfil personalizado"
  845. msgctxt "@info"
  846. msgid "Custom profile name:"
  847. msgstr "Nombre del perfil personalizado:"
  848. msgctxt "@label"
  849. msgid "Custom profiles"
  850. msgstr "Perfiles personalizados"
  851. msgctxt "@label:header"
  852. msgid "Custom profiles"
  853. msgstr "Perfiles personalizados"
  854. msgctxt "@action:inmenu menubar:edit"
  855. msgid "Cut"
  856. msgstr "Cortar"
  857. msgctxt "@item:inlistbox"
  858. msgid "Cutting mesh"
  859. msgstr "Cortar malla"
  860. msgctxt "@item:inlistbox"
  861. msgid "Darker is higher"
  862. msgstr "Cuanto más oscuro más alto"
  863. msgctxt "@info:title"
  864. msgid "Data Sent"
  865. msgstr "Fecha de envío"
  866. msgctxt "@label Description for application dependency"
  867. msgid "Data interchange format"
  868. msgstr "Formato de intercambio de datos"
  869. msgctxt "@button"
  870. msgid "Decline"
  871. msgstr "Rechazar"
  872. msgctxt "@button"
  873. msgid "Decline and close"
  874. msgstr "Rechazar y cerrar"
  875. msgctxt "@button"
  876. msgid "Decline and remove from account"
  877. msgstr "Rechazar y eliminar de la cuenta"
  878. msgctxt "@info:No intent profile selected"
  879. msgid "Default"
  880. msgstr "Default"
  881. msgctxt "@window:text"
  882. msgid "Default behavior for changed setting values when switching to a different profile: "
  883. msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: "
  884. msgctxt "@info:tooltip"
  885. msgid "Default behavior when opening a project file"
  886. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
  887. msgctxt "@window:text"
  888. msgid "Default behavior when opening a project file: "
  889. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
  890. msgctxt "@action:button"
  891. msgid "Defaults"
  892. msgstr "Valores predeterminados"
  893. msgctxt "@label"
  894. msgid "Defines the thickness of your part side walls, roof and floor."
  895. msgstr "Define el grosor de las paredes laterales, el techo y la base de la pieza."
  896. msgctxt "@label"
  897. msgid "Delete"
  898. msgstr "Borrar"
  899. msgctxt "@dialog:title"
  900. msgid "Delete Backup"
  901. msgstr "Eliminar copia de seguridad"
  902. msgctxt "@action:inmenu"
  903. msgid "Delete Model"
  904. msgstr "Eliminar modelo"
  905. msgctxt "@action:inmenu menubar:edit"
  906. msgid "Delete Selected"
  907. msgstr "Eliminar selección"
  908. msgctxt "@window:title"
  909. msgid "Delete print job"
  910. msgstr "Borrar trabajo de impresión"
  911. msgctxt "@label"
  912. msgid "Density"
  913. msgstr "Densidad"
  914. msgctxt "@label Description for development tool"
  915. msgid "Dependency and package manager"
  916. msgstr "Gestor de dependencias y paquetes"
  917. msgctxt "@action:label"
  918. msgid "Depth (mm)"
  919. msgstr "Profundidad (mm)"
  920. msgctxt "@action:label"
  921. msgid "Derivative from"
  922. msgstr "Derivado de"
  923. msgctxt "@header"
  924. msgid "Description"
  925. msgstr "Descripción"
  926. msgctxt "@label"
  927. msgid "Description"
  928. msgstr "Descripción"
  929. msgctxt "@action:button"
  930. msgid "Details"
  931. msgstr "Detalles"
  932. msgctxt "@label"
  933. msgid "Diameter"
  934. msgstr "Diámetro"
  935. msgctxt "@button"
  936. msgid "Disable"
  937. msgstr "Deshabilitar"
  938. msgctxt "@action:inmenu"
  939. msgid "Disable Extruder"
  940. msgstr "Deshabilitar extrusor"
  941. msgctxt "@option:discardOrKeep"
  942. msgid "Discard and never ask again"
  943. msgstr "Descartar y no volver a preguntar"
  944. msgctxt "@action:button"
  945. msgid "Discard changes"
  946. msgstr "Descartar los cambios"
  947. msgctxt "@action:button"
  948. msgid "Discard current changes"
  949. msgstr "Descartar cambios actuales"
  950. msgctxt "@title:window"
  951. msgid "Discard or Keep changes"
  952. msgstr "Descartar o guardar cambios"
  953. msgctxt "@button"
  954. msgid "Dismiss"
  955. msgstr "Descartar"
  956. msgctxt "@label"
  957. msgid "Display Name"
  958. msgstr "Mostrar nombre"
  959. msgctxt "@option:check"
  960. msgid "Display model errors"
  961. msgstr "Mostrar errores de modelo"
  962. msgctxt "@option:check"
  963. msgid "Display overhang"
  964. msgstr "Mostrar voladizos"
  965. msgctxt "@info:option_text"
  966. msgid "Do not show this message again"
  967. msgstr "No volver a mostrar este mensaje"
  968. msgctxt "@info:generic"
  969. msgid "Do you want to sync material and software packages with your account?"
  970. msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
  971. msgctxt "@action:label"
  972. msgid "Don't show project summary on save again"
  973. msgstr "No mostrar resumen de proyecto al guardar de nuevo"
  974. msgctxt "@action:menu"
  975. msgid "Don't show this setting"
  976. msgstr "No mostrar este ajuste"
  977. msgctxt "@label"
  978. msgid "Don't support overlaps"
  979. msgstr "No es compatible con superposiciones"
  980. msgctxt "@button"
  981. msgid "Done"
  982. msgstr "Realizado"
  983. msgctxt "@button"
  984. msgid "Downgrade"
  985. msgstr "Degradar"
  986. msgctxt "@button"
  987. msgid "Downgrading..."
  988. msgstr "Degradando..."
  989. msgctxt "@label"
  990. msgid "Draft"
  991. msgstr "Boceto"
  992. msgctxt "@action:inmenu menubar:edit"
  993. msgid "Drop All Models to buildplate"
  994. msgstr "Soltar todos los modelos en la placa de construcción"
  995. msgctxt "@action:button"
  996. msgid "Duplicate"
  997. msgstr "Duplicado"
  998. msgctxt "@title:window"
  999. msgid "Duplicate Profile"
  1000. msgstr "Duplicar perfil"
  1001. msgctxt "@backup_limit_info"
  1002. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1003. msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas."
  1004. msgctxt "@title:menu menubar:toplevel"
  1005. msgid "E&xtensions"
  1006. msgstr "E&xtensiones"
  1007. msgctxt "@action:button"
  1008. msgid "Edit"
  1009. msgstr "Editar"
  1010. msgctxt "@action:button"
  1011. msgid "Eject"
  1012. msgstr "Expulsar"
  1013. msgctxt "@action"
  1014. msgid "Eject removable device {0}"
  1015. msgstr "Expulsar dispositivo extraíble {0}"
  1016. msgctxt "@info:status"
  1017. msgid "Ejected {0}. You can now safely remove the drive."
  1018. msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
  1019. msgctxt "@label"
  1020. msgid "Empty"
  1021. msgstr "Vacío"
  1022. msgctxt "@button"
  1023. msgid "Enable"
  1024. msgstr "Habilitar"
  1025. msgctxt "@action:inmenu"
  1026. msgid "Enable Extruder"
  1027. msgstr "Habilitar extrusor"
  1028. msgctxt "@label"
  1029. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default."
  1030. msgstr "Active la impresión de un borde o una plataforma. Esto añadirá un área plana alrededor o debajo de su objeto que es fácil de cortar después. Si se desactiva, alrededor del objeto aparecerá un faldón por defecto."
  1031. msgctxt "@label"
  1032. msgid "Enabled"
  1033. msgstr "Habilitado"
  1034. msgctxt "@title:label"
  1035. msgid "End G-code"
  1036. msgstr "Finalizar GCode"
  1037. msgctxt "@label"
  1038. msgid "End-to-end solution for fused filament 3D printing."
  1039. msgstr "Solución completa para la impresión 3D de filamento fundido."
  1040. msgctxt "@info:title"
  1041. msgid "EnginePlugin"
  1042. msgstr "EnginePlugin"
  1043. msgctxt "@label"
  1044. msgid "Engineering"
  1045. msgstr "Engineering"
  1046. msgctxt "@option:check"
  1047. msgid "Ensure models are kept apart"
  1048. msgstr "Asegúrese de que los modelos están separados"
  1049. msgctxt "@label"
  1050. msgid "Enter the IP address of your printer on the network."
  1051. msgstr "Introduzca la dirección IP de la impresora en la red."
  1052. msgctxt "@text"
  1053. msgid "Enter your printer's IP address."
  1054. msgstr "Introduzca la dirección IP de su impresora."
  1055. msgctxt "@info:title"
  1056. msgid "Error"
  1057. msgstr "Error"
  1058. msgctxt "@title:groupbox"
  1059. msgid "Error traceback"
  1060. msgstr "Rastreabilidad de errores"
  1061. msgctxt "@label"
  1062. msgid "Estimated time left"
  1063. msgstr "Tiempo restante estimado"
  1064. msgctxt "@action:inmenu"
  1065. msgid "Exit Full Screen"
  1066. msgstr "Salir de modo de pantalla completa"
  1067. msgctxt "@label"
  1068. msgid "Experimental"
  1069. msgstr "Experimental"
  1070. msgctxt "@action:button"
  1071. msgid "Export"
  1072. msgstr "Exportar"
  1073. msgctxt "@title:window"
  1074. msgid "Export All Materials"
  1075. msgstr "Exportar todos los materiales"
  1076. msgctxt "@title:window"
  1077. msgid "Export Material"
  1078. msgstr "Exportar material"
  1079. msgctxt "@title:window"
  1080. msgid "Export Profile"
  1081. msgstr "Exportar perfil"
  1082. msgctxt "@action:inmenu menubar:file"
  1083. msgid "Export Selection..."
  1084. msgstr "Exportar selección..."
  1085. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  1086. msgid "Export Universal Cura Project"
  1087. msgstr "Exportar proyecto Universal Cura"
  1088. msgctxt "@button"
  1089. msgid "Export material archive"
  1090. msgstr "Exportar archivo de material"
  1091. msgctxt "@info:title"
  1092. msgid "Export succeeded"
  1093. msgstr "Exportación correcta"
  1094. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1095. msgid "Exported profile to <filename>{0}</filename>"
  1096. msgstr "Perfil exportado a <filename>{0}</filename>"
  1097. msgctxt "@tooltip:button"
  1098. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1099. msgstr "Amplíe UltiMaker Cura con complementos y perfiles de materiales."
  1100. msgctxt "@label"
  1101. msgid "Extruder"
  1102. msgstr "Extrusor"
  1103. msgctxt "@action:label"
  1104. msgid "Extruder %1"
  1105. msgstr "Extrusor %1"
  1106. msgctxt "@title:label"
  1107. msgid "Extruder End G-code"
  1108. msgstr "GCode final del extrusor"
  1109. msgctxt "@label"
  1110. msgid "Extruder End G-code duration"
  1111. msgstr "Duración del código G de fin de extrusora"
  1112. msgctxt "@title:label"
  1113. msgid "Extruder Start G-code"
  1114. msgstr "GCode inicial del extrusor"
  1115. msgctxt "@label"
  1116. msgid "Extruder Start G-code duration"
  1117. msgstr "Duración del código G de inicio del extrusor"
  1118. msgctxt "@label"
  1119. msgid "Extruder {0}"
  1120. msgstr "Extrusor {0}"
  1121. msgctxt "@info:title"
  1122. msgid "Extruder(s) Disabled"
  1123. msgstr "Extrusores deshabilitados"
  1124. msgctxt "@label:status"
  1125. msgid "Failed"
  1126. msgstr "Error"
  1127. msgctxt "@text:error"
  1128. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1129. msgstr "Error al conectarse con Digital Factory para sincronizar los materiales con algunas de las impresoras."
  1130. msgctxt "@text:error"
  1131. msgid "Failed to connect to Digital Factory."
  1132. msgstr "Error al conectarse con Digital Factory."
  1133. msgctxt "@text:error"
  1134. msgid "Failed to create archive of materials to sync with printers."
  1135. msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras."
  1136. msgctxt "@info:status"
  1137. msgid "Failed to eject {0}. Another program may be using the drive."
  1138. msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad."
  1139. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1140. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1141. msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>"
  1142. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1143. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1144. msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  1145. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1146. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1147. msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  1148. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1149. msgid "Failed to import profile from <filename>{0}</filename>:"
  1150. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  1151. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1152. msgid "Failed to import profile from <filename>{0}</filename>:"
  1153. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  1154. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1155. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1156. msgstr "Error al importar el perfil de <filename>{0}</filename>: {1}"
  1157. msgctxt "@button"
  1158. msgid "Failed to load packages:"
  1159. msgstr "Error al cargar los paquetes:"
  1160. msgctxt "@text:error"
  1161. msgid "Failed to load the archive of materials to sync it with printers."
  1162. msgstr "Error al cargar el archivo de materiales para sincronizarlo con las impresoras."
  1163. msgctxt "@message:title"
  1164. msgid "Failed to save material archive"
  1165. msgstr "Se ha producido un error al guardar el archivo de material"
  1166. msgctxt "@info:status"
  1167. msgid "Failed writing to specific cloud printer: {0} not in remote clusters."
  1168. msgstr "Fallo al escribir en una impresora en nube específica: {0} no está en grupos remotos."
  1169. msgctxt "@label:category menu label"
  1170. msgid "Favorites"
  1171. msgstr "Favoritos"
  1172. msgctxt "@label"
  1173. msgid "Filament Cost"
  1174. msgstr "Coste del filamento"
  1175. msgctxt "@label"
  1176. msgid "Filament length"
  1177. msgstr "Longitud del filamento"
  1178. msgctxt "@label"
  1179. msgid "Filament weight"
  1180. msgstr "Peso del filamento"
  1181. msgctxt "@title:window"
  1182. msgid "File Already Exists"
  1183. msgstr "El archivo ya existe"
  1184. msgctxt "@info:title"
  1185. msgid "File Saved"
  1186. msgstr "Archivo guardado"
  1187. msgctxt "@info:status"
  1188. msgid "File {0} does not contain any valid profile."
  1189. msgstr "El archivo {0} no contiene ningún perfil válido."
  1190. msgctxt "@label:textbox"
  1191. msgid "Filter..."
  1192. msgstr "Filtrar..."
  1193. msgctxt "@info:title"
  1194. msgid "Finding Location"
  1195. msgstr "Buscando ubicación"
  1196. msgctxt "@info:status"
  1197. msgid "Finding new location for objects"
  1198. msgstr "Buscando nueva ubicación para los objetos"
  1199. msgctxt "@action:button"
  1200. msgid "Finish"
  1201. msgstr "Finalizar"
  1202. msgctxt "@label:status"
  1203. msgid "Finished"
  1204. msgstr "Terminado"
  1205. msgctxt "@label:status"
  1206. msgid "Finishes %1 at %2"
  1207. msgstr "Termina el %1 a las %2"
  1208. msgctxt "@title:window"
  1209. msgid "Firmware Update"
  1210. msgstr "Actualización del firmware"
  1211. msgctxt "@label"
  1212. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1213. msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware."
  1214. msgctxt "@label"
  1215. msgid "Firmware can not be updated because there is no connection with the printer."
  1216. msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora."
  1217. msgctxt "@label"
  1218. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1219. msgstr "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora."
  1220. msgctxt "@label"
  1221. msgid "Firmware update completed."
  1222. msgstr "Actualización del firmware completada."
  1223. msgctxt "@label"
  1224. msgid "Firmware update failed due to an communication error."
  1225. msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
  1226. msgctxt "@label"
  1227. msgid "Firmware update failed due to an input/output error."
  1228. msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
  1229. msgctxt "@label"
  1230. msgid "Firmware update failed due to an unknown error."
  1231. msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
  1232. msgctxt "@label"
  1233. msgid "Firmware update failed due to missing firmware."
  1234. msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
  1235. msgctxt "@label"
  1236. msgid "Firmware version"
  1237. msgstr "Versión de firmware"
  1238. msgctxt "@label"
  1239. msgid "First available"
  1240. msgstr "Primera disponible"
  1241. msgctxt "@label:listbox"
  1242. msgid "Flow"
  1243. msgstr "Flujo"
  1244. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1245. msgid "Follow the following steps to load the new material profiles to your printer."
  1246. msgstr "Siga estos pasos para cargar los nuevos perfiles de material en la impresora."
  1247. msgctxt "@info"
  1248. msgid "Follow the procedure to add a new printer"
  1249. msgstr "Siga el procedimiento para añadir una nueva impresora"
  1250. msgctxt "@text"
  1251. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1252. msgstr "Con unos sencillos pasos puede sincronizar todos sus perfiles de material con sus impresoras."
  1253. msgctxt "@label"
  1254. msgid "Font"
  1255. msgstr "Fuente"
  1256. msgctxt "@label"
  1257. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  1258. msgstr "Para cada posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera."
  1259. msgctxt "@info:tooltip"
  1260. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1261. msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente."
  1262. msgctxt "@info:tooltip"
  1263. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1264. msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado."
  1265. msgctxt "@option:check"
  1266. msgid "Force layer view compatibility mode (restart required)"
  1267. msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
  1268. msgid "FreeCAD trackpad"
  1269. msgstr "Panel de seguimiento de FreeCAD"
  1270. msgctxt "@action:inmenu menubar:view"
  1271. msgid "Front View"
  1272. msgstr "Vista frontal"
  1273. msgctxt "@info:tooltip"
  1274. msgid "Front View"
  1275. msgstr "Vista frontal"
  1276. msgctxt "@item:inlistbox"
  1277. msgid "G File"
  1278. msgstr "Archivo G"
  1279. msgctxt "@info:title"
  1280. msgid "G-code Details"
  1281. msgstr "Datos de GCode"
  1282. msgctxt "@item:inlistbox"
  1283. msgid "G-code File"
  1284. msgstr "Archivo GCode"
  1285. msgctxt "@label"
  1286. msgid "G-code flavor"
  1287. msgstr "Tipo de GCode"
  1288. msgctxt "@label Description for application component"
  1289. msgid "G-code generator"
  1290. msgstr "Generador de GCode"
  1291. msgctxt "@error:not supported"
  1292. msgid "GCodeGzWriter does not support text mode."
  1293. msgstr "GCodeGzWriter no es compatible con el modo texto."
  1294. msgctxt "@error:not supported"
  1295. msgid "GCodeWriter does not support non-text mode."
  1296. msgstr "GCodeWriter no es compatible con el modo sin texto."
  1297. msgctxt "@item:inlistbox"
  1298. msgid "GIF Image"
  1299. msgstr "Imagen GIF"
  1300. msgctxt "@label Description for application dependency"
  1301. msgid "GUI framework"
  1302. msgstr "Entorno de la GUI"
  1303. msgctxt "@label Description for application dependency"
  1304. msgid "GUI framework bindings"
  1305. msgstr "Enlaces del entorno de la GUI"
  1306. msgctxt "@label"
  1307. msgid "Gantry Height"
  1308. msgstr "Altura del puente"
  1309. msgctxt "@title:tab"
  1310. msgid "General"
  1311. msgstr "General"
  1312. msgctxt "@label"
  1313. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1314. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  1315. msgctxt "@label Description for development tool"
  1316. msgid "Generating Windows installers"
  1317. msgstr "Generación de instaladores de Windows"
  1318. msgctxt "@label:category menu label"
  1319. msgid "Generic"
  1320. msgstr "Genérico"
  1321. msgctxt "@option:check"
  1322. msgid "Get notifications for plugin updates"
  1323. msgstr "Recibir notificaciones de actualizaciones de complementos"
  1324. msgctxt "@action"
  1325. msgid "Get started"
  1326. msgstr "Empezar"
  1327. msgctxt "@label"
  1328. msgid "Global"
  1329. msgstr "Mundial"
  1330. msgctxt "@title:tab"
  1331. msgid "Global Settings"
  1332. msgstr "Ajustes globales"
  1333. msgctxt "@label Description for application component"
  1334. msgid "Graphical user interface"
  1335. msgstr "Interfaz gráfica de usuario (GUI)"
  1336. msgctxt "@label"
  1337. msgid "Grid Placement"
  1338. msgstr "Colocación de cuadrícula"
  1339. msgctxt "@label"
  1340. msgid "Group #{group_nr}"
  1341. msgstr "N.º de grupo {group_nr}"
  1342. msgctxt "@tooltip of pre-heat"
  1343. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  1344. msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir."
  1345. msgctxt "@tooltip of pre-heat"
  1346. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  1347. msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir."
  1348. msgctxt "@label"
  1349. msgid "Heated Build Plate (official kit or self-built)"
  1350. msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
  1351. msgctxt "@label"
  1352. msgid "Heated bed"
  1353. msgstr "Plataforma calentada"
  1354. msgctxt "@label"
  1355. msgid "Heated build volume"
  1356. msgstr "Volumen de impresión calentado"
  1357. msgctxt "@action:label"
  1358. msgid "Height (mm)"
  1359. msgstr "Altura (mm)"
  1360. msgctxt "@label"
  1361. msgid "Helpers"
  1362. msgstr "Asistentes"
  1363. msgctxt "@label"
  1364. msgid "Hide all connected printers"
  1365. msgstr "Ocultar todas las impresoras conectadas"
  1366. msgctxt "@action:button"
  1367. msgid "Hide settings"
  1368. msgstr "Ocultar configuración"
  1369. msgctxt "@action:menu"
  1370. msgid "Hide this setting"
  1371. msgstr "Ocultar este ajuste"
  1372. msgctxt "@info:tooltip"
  1373. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1374. msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista."
  1375. msgctxt "@info:tooltip"
  1376. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1377. msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
  1378. msgctxt "@button"
  1379. msgid "How to load new material profiles to my printer"
  1380. msgstr "Cómo cargar nuevos perfiles de material en mi impresora"
  1381. msgctxt "@action:button"
  1382. msgid "How to update"
  1383. msgstr "Cómo actualizar"
  1384. msgctxt "@text:window"
  1385. msgid "I don't want to send anonymous data"
  1386. msgstr "No deseo enviar datos anónimos"
  1387. msgctxt "@label:status"
  1388. msgid "Idle"
  1389. msgstr "Sin actividad"
  1390. msgctxt "@label"
  1391. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1392. msgstr "Si está intentando añadir una nueva impresora UltiMaker a Cura"
  1393. msgctxt "@label"
  1394. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1395. msgstr "Si la impresora no aparece en la lista, lea la <a href='%1'>guía de solución de problemas de impresión y red</a>"
  1396. msgctxt "@action:button"
  1397. msgid "Import"
  1398. msgstr "Importar"
  1399. msgctxt "@title:window"
  1400. msgid "Import Material"
  1401. msgstr "Importar material"
  1402. msgctxt "@title:window"
  1403. msgid "Import Profile"
  1404. msgstr "Importar perfil"
  1405. msgctxt "@action:button"
  1406. msgid "Import all as models"
  1407. msgstr "Importar todos como modelos"
  1408. msgctxt "@action:button"
  1409. msgid "Import models"
  1410. msgstr "Importar modelos"
  1411. msgctxt "@label:MonitorStatus"
  1412. msgid "In maintenance. Please check the printer"
  1413. msgstr "En mantenimiento. Compruebe la impresora"
  1414. msgctxt "@info"
  1415. msgid "In order to monitor your print from Cura, please connect the printer."
  1416. msgstr "Para supervisar la copia impresa desde Cura, conecte la impresora."
  1417. msgctxt "@label"
  1418. msgid "In order to start using Cura you will need to configure a printer."
  1419. msgstr "Para empezar a utilizar Cura, deberá configurar una impresora."
  1420. msgctxt "@button"
  1421. msgid "In order to use the package you will need to restart Cura"
  1422. msgstr "Para utilizar el paquete, deberá reiniciar Cura"
  1423. msgctxt "@option:radio"
  1424. msgid "Include UltiMaker account name"
  1425. msgstr "Incluir nombre de cuenta UltiMaker"
  1426. msgctxt "@label"
  1427. msgid "Infill"
  1428. msgstr "Relleno"
  1429. msgctxt "@tooltip"
  1430. msgid "Infill"
  1431. msgstr "Relleno"
  1432. msgctxt "infill_sparse_density description"
  1433. msgid "Infill Density"
  1434. msgstr "Densidad de relleno"
  1435. msgctxt "@action:label"
  1436. msgid "Infill Pattern"
  1437. msgstr "Patrón de relleno"
  1438. msgctxt "@item:inlistbox"
  1439. msgid "Infill mesh only"
  1440. msgstr "Solo malla de relleno"
  1441. msgctxt "@label"
  1442. msgid "Infill overlapping with this model is modified."
  1443. msgstr "Se ha modificado la superposición del relleno con este modelo."
  1444. msgctxt "@info:title"
  1445. msgid "Information"
  1446. msgstr "Información"
  1447. msgctxt "@title"
  1448. msgid "Information"
  1449. msgstr "Información"
  1450. msgctxt "@info:progress"
  1451. msgid "Initializing Active Machine..."
  1452. msgstr "Iniciando la máquina activa..."
  1453. msgctxt "@info:progress"
  1454. msgid "Initializing build volume..."
  1455. msgstr "Iniciando el volumen de impresión..."
  1456. msgctxt "@info:progress"
  1457. msgid "Initializing engine..."
  1458. msgstr "Iniciando el motor..."
  1459. msgctxt "@info:progress"
  1460. msgid "Initializing machine manager..."
  1461. msgstr "Iniciando el administrador de la máquina..."
  1462. msgctxt "@label"
  1463. msgid "Inner Wall"
  1464. msgstr "Pared interior"
  1465. msgctxt "@tooltip"
  1466. msgid "Inner Walls"
  1467. msgstr "Paredes interiores"
  1468. msgctxt "@text"
  1469. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1470. msgstr "Inserte la memoria USB en la impresora e inicie el procedimiento para cargar nuevos perfiles de material."
  1471. msgctxt "@button"
  1472. msgid "Install"
  1473. msgstr "Instalar"
  1474. msgctxt "@header"
  1475. msgid "Install Materials"
  1476. msgstr "Instalar materiales"
  1477. msgctxt "@window:title"
  1478. msgid "Install Package"
  1479. msgstr "Instalar paquete"
  1480. msgctxt "@action:button"
  1481. msgid "Install Packages"
  1482. msgstr "Instalar paquetes"
  1483. msgctxt "@header"
  1484. msgid "Install Packages"
  1485. msgstr "Instalar paquetes"
  1486. msgctxt "@header"
  1487. msgid "Install Plugins"
  1488. msgstr "Instalar complementos"
  1489. msgctxt "@action:button"
  1490. msgid "Install missing packages"
  1491. msgstr "Instalar paquetes que faltan"
  1492. msgctxt "@title"
  1493. msgid "Install missing packages"
  1494. msgstr "Instalar paquetes que faltan"
  1495. msgctxt "@label"
  1496. msgid "Install missing packages from project file."
  1497. msgstr "Instale los paquetes que faltan desde el archivo del proyecto."
  1498. msgctxt "@button"
  1499. msgid "Install pending updates"
  1500. msgstr "Instalar actualizaciones pendientes"
  1501. msgctxt "@label"
  1502. msgid "Installed Materials"
  1503. msgstr "Materiales instalados"
  1504. msgctxt "@label"
  1505. msgid "Installed Plugins"
  1506. msgstr "Complementos instalados"
  1507. msgctxt "@button"
  1508. msgid "Installing..."
  1509. msgstr "Instalando..."
  1510. msgctxt "@action:label"
  1511. msgid "Intent"
  1512. msgstr "Intent"
  1513. msgctxt "@label"
  1514. msgid "Interface"
  1515. msgstr "Interfaz"
  1516. msgctxt "@label Description for application component"
  1517. msgid "Interprocess communication library"
  1518. msgstr "Biblioteca de comunicación entre procesos"
  1519. msgctxt "@title:window"
  1520. msgid "Invalid IP address"
  1521. msgstr "Dirección IP no válida"
  1522. msgctxt "@info:status"
  1523. msgid "Invalid file URL:"
  1524. msgstr "URL del archivo no válida:"
  1525. msgctxt "@action:button"
  1526. msgid "Invert the direction of camera zoom."
  1527. msgstr "Invertir la dirección del zoom de la cámara."
  1528. msgctxt "@label"
  1529. msgid "Is printed as support."
  1530. msgstr "Se imprime como soporte."
  1531. msgctxt "@text"
  1532. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1533. msgstr "Parece que no tiene ninguna impresora compatible conectada a Digital Factory. Asegúrese de que su impresora esté conectada y ejecutando el firmware más reciente."
  1534. msgctxt "@item:inlistbox"
  1535. msgid "JPEG Image"
  1536. msgstr "Imagen JPEG"
  1537. msgctxt "@item:inlistbox"
  1538. msgid "JPG Image"
  1539. msgstr "Imagen JPG"
  1540. msgctxt "@label Description for application dependency"
  1541. msgid "JSON parser"
  1542. msgstr "Parser JSON"
  1543. msgctxt "@label"
  1544. msgid "Job Name"
  1545. msgstr "Nombre del trabajo"
  1546. msgctxt "@label"
  1547. msgid "Jog Distance"
  1548. msgstr "Distancia de desplazamiento"
  1549. msgctxt "@label"
  1550. msgid "Jog Position"
  1551. msgstr "Posición de desplazamiento"
  1552. msgctxt "@option:discardOrKeep"
  1553. msgid "Keep and never ask again"
  1554. msgstr "Guardar y no volver a preguntar"
  1555. msgctxt "@action:button"
  1556. msgid "Keep changes"
  1557. msgstr "Mantener los cambios"
  1558. msgctxt "@action:button"
  1559. msgid "Keep printer configurations"
  1560. msgstr "Mantener las configuraciones de la impresora"
  1561. msgctxt "@action:menu"
  1562. msgid "Keep this setting visible"
  1563. msgstr "Mostrar este ajuste"
  1564. msgctxt "@label The argument is a timestamp"
  1565. msgid "Last update: %1"
  1566. msgstr "Última actualización: %1"
  1567. msgctxt "@label:listbox"
  1568. msgid "Layer Thickness"
  1569. msgstr "Grosor de la capa"
  1570. msgctxt "@item:inlistbox"
  1571. msgid "Layer view"
  1572. msgstr "Vista de capas"
  1573. msgctxt "@button:label"
  1574. msgid "Learn More"
  1575. msgstr "Más Información"
  1576. msgctxt "@button"
  1577. msgid "Learn how to connect your printer to Digital Factory"
  1578. msgstr "Aprenda a conectar su impresora a Digital Factory"
  1579. msgctxt "@tooltip:button"
  1580. msgid "Learn how to get started with UltiMaker Cura."
  1581. msgstr "Aprenda cómo empezar a utilizar UltiMaker Cura."
  1582. msgctxt "@action"
  1583. msgid "Learn more"
  1584. msgstr "Más información"
  1585. msgctxt "@action:button"
  1586. msgid "Learn more"
  1587. msgstr "Más información"
  1588. msgctxt "@button"
  1589. msgid "Learn more"
  1590. msgstr "Más Información"
  1591. msgctxt "@button:label"
  1592. msgid "Learn more"
  1593. msgstr "Más información"
  1594. msgctxt "@action:button"
  1595. msgid "Learn more about Cura print profiles"
  1596. msgstr "Más información sobre los perfiles de impresión de Cura"
  1597. msgctxt "@button"
  1598. msgid "Learn more about adding printers to Cura"
  1599. msgstr "Más información sobre cómo agregar impresoras a Cura"
  1600. msgctxt "@label"
  1601. msgid "Learn more about project packages."
  1602. msgstr "Más información sobre los paquetes de proyectos."
  1603. msgctxt "@action:inmenu menubar:view"
  1604. msgid "Left Side View"
  1605. msgstr "Vista del lado izquierdo"
  1606. msgctxt "@info:tooltip"
  1607. msgid "Left View"
  1608. msgstr "Vista del lado izquierdo"
  1609. msgctxt "@tooltip:button"
  1610. msgid "Let developers know that something is going wrong."
  1611. msgstr "Informe a los desarrolladores de que algo no funciona bien."
  1612. msgctxt "@action"
  1613. msgid "Level build plate"
  1614. msgstr "Nivelar placa de impresión"
  1615. msgctxt "@item:inlistbox"
  1616. msgid "Lighter is higher"
  1617. msgstr "Cuanto más claro más alto"
  1618. msgctxt "@label:listbox"
  1619. msgid "Line Type"
  1620. msgstr "Tipo de línea"
  1621. msgctxt "@label:listbox"
  1622. msgid "Line Width"
  1623. msgstr "Ancho de línea"
  1624. msgctxt "@item:inlistbox"
  1625. msgid "Linear"
  1626. msgstr "Lineal"
  1627. msgctxt "@label Description for development tool"
  1628. msgid "Linux cross-distribution application deployment"
  1629. msgstr "Implementación de la aplicación de distribución múltiple de Linux"
  1630. msgctxt "@label"
  1631. msgid "Load %3 as material %1 (This cannot be overridden)."
  1632. msgstr "Cargar %3 como material %1 (no se puede anular)."
  1633. msgctxt "@button"
  1634. msgid "Load more"
  1635. msgstr "Cargar más"
  1636. msgctxt "@button"
  1637. msgid "Loading"
  1638. msgstr "Cargando"
  1639. msgctxt "@action:warning"
  1640. msgid "Loading a project will clear all models on the build plate."
  1641. msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  1642. msgctxt "@label"
  1643. msgid "Loading available configurations from the printer..."
  1644. msgstr "Cargando configuraciones disponibles desde la impresora..."
  1645. msgctxt "@info:progress"
  1646. msgid "Loading interface..."
  1647. msgstr "Cargando interfaz..."
  1648. msgctxt "@info:progress"
  1649. msgid "Loading machines..."
  1650. msgstr "Cargando máquinas..."
  1651. msgctxt "@label:status"
  1652. msgid "Loading..."
  1653. msgstr "Cargando..."
  1654. msgctxt "@title"
  1655. msgid "Loading..."
  1656. msgstr "Cargando..."
  1657. msgctxt "@label:category menu label"
  1658. msgid "Local printers"
  1659. msgstr "Impresoras locales"
  1660. msgctxt "@info:title"
  1661. msgid "Log-in failed"
  1662. msgstr "Error de inicio de sesión"
  1663. msgctxt "@info:title"
  1664. msgid "Login failed"
  1665. msgstr "Fallo de inicio de sesión"
  1666. msgctxt "@title:groupbox"
  1667. msgid "Logs"
  1668. msgstr "Registros"
  1669. msgctxt "@label:MonitorStatus"
  1670. msgid "Lost connection with the printer"
  1671. msgstr "Se ha perdido la conexión con la impresora"
  1672. msgctxt "@action"
  1673. msgid "Machine Settings"
  1674. msgstr "Ajustes de la máquina"
  1675. msgctxt "@backuplist:label"
  1676. msgid "Machines"
  1677. msgstr "Máquinas"
  1678. msgctxt "@text"
  1679. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1680. msgstr "Asegúrese de que todas las impresoras estén encendidas y conectadas a Digital Factory."
  1681. msgctxt "@info:generic"
  1682. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  1683. msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa."
  1684. msgctxt "@item:inlistbox"
  1685. msgid "Makerbot Printfile"
  1686. msgstr "Archivo de impresión Makerbot"
  1687. msgctxt "@error"
  1688. msgid "MakerbotWriter could not save to the designated path."
  1689. msgstr "MakerbotWriter no pudo guardar en la ruta designada."
  1690. msgctxt "@error:not supported"
  1691. msgid "MakerbotWriter does not support text mode."
  1692. msgstr "MakerbotWriter no soporta el modo texto."
  1693. msgctxt "@action:inmenu"
  1694. msgid "Manage Materials..."
  1695. msgstr "Administrar materiales..."
  1696. msgctxt "@action:inmenu menubar:printer"
  1697. msgid "Manage Pr&inters..."
  1698. msgstr "Adm&inistrar impresoras ..."
  1699. msgctxt "@action:inmenu menubar:profile"
  1700. msgid "Manage Profiles..."
  1701. msgstr "Administrar perfiles..."
  1702. msgctxt "@action:inmenu"
  1703. msgid "Manage Setting Visibility..."
  1704. msgstr "Gestionar visibilidad de los ajustes..."
  1705. msgctxt "@item:inmenu"
  1706. msgid "Manage backups"
  1707. msgstr "Administrar copias de seguridad"
  1708. msgctxt "@label link to connect manager"
  1709. msgid "Manage in browser"
  1710. msgstr "Gestionar en el navegador"
  1711. msgctxt "@header"
  1712. msgid "Manage packages"
  1713. msgstr "Gestionar paquetes"
  1714. msgctxt "@info:tooltip"
  1715. msgid "Manage packages"
  1716. msgstr "Gestionar paquetes"
  1717. msgctxt "@action"
  1718. msgid "Manage print jobs"
  1719. msgstr "Administrar trabajos de impresión"
  1720. msgctxt "@label link to Connect and Cloud interfaces"
  1721. msgid "Manage printer"
  1722. msgstr "Administrar impresora"
  1723. msgctxt "@button"
  1724. msgid "Manage printers"
  1725. msgstr "Administrar impresoras"
  1726. msgctxt "@text"
  1727. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1728. msgstr "Gestionar los complementos y los perfiles de materiales de UltiMaker Cura aquí. Asegúrese de mantener los complementos actualizados y hacer una copia de seguridad de su configuración regularmente."
  1729. msgctxt "@label"
  1730. msgid "Manufacturer"
  1731. msgstr "Fabricante"
  1732. msgctxt "@action:button"
  1733. msgid "Marketplace"
  1734. msgstr "Marketplace"
  1735. msgctxt "@label"
  1736. msgid "Marketplace"
  1737. msgstr "Marketplace"
  1738. msgctxt "@action:label"
  1739. msgid "Material"
  1740. msgstr "Material"
  1741. msgctxt "@label"
  1742. msgid "Material"
  1743. msgstr "Material"
  1744. msgctxt "@label:category menu label"
  1745. msgid "Material"
  1746. msgstr "Material"
  1747. msgctxt "@label:listbox"
  1748. msgid "Material Color"
  1749. msgstr "Color del material"
  1750. msgctxt "@label"
  1751. msgid "Material Type"
  1752. msgstr "Tipo de material"
  1753. msgctxt "@title"
  1754. msgid "Material color picker"
  1755. msgstr "Seleccionador de color del material"
  1756. msgctxt "@label"
  1757. msgid "Material estimation"
  1758. msgstr "Estimación de material"
  1759. msgctxt "@title:header"
  1760. msgid "Material profiles successfully synced with the following printers:"
  1761. msgstr "Los perfiles de material se han sincronizado correctamente con las siguientes impresoras:"
  1762. msgctxt "@action:label"
  1763. msgid "Material settings"
  1764. msgstr "Ajustes del material"
  1765. msgctxt "@backuplist:label"
  1766. msgid "Materials"
  1767. msgstr "Materiales"
  1768. msgctxt "@button"
  1769. msgid "Materials"
  1770. msgstr "Materiales"
  1771. msgctxt "@title:tab"
  1772. msgid "Materials"
  1773. msgstr "Materiales"
  1774. msgctxt "@label"
  1775. msgid "Materials compatible with active printer:"
  1776. msgstr "Materiales compatibles con la impresora activa:"
  1777. msgctxt "@label"
  1778. msgid "Mesh Type"
  1779. msgstr "Tipo de malla"
  1780. msgctxt "@action:label"
  1781. msgid "Mode"
  1782. msgstr "Modo"
  1783. msgctxt "@info:title"
  1784. msgid "Model Errors"
  1785. msgstr "Errores de modelo"
  1786. msgctxt "@item:inmenu"
  1787. msgid "Modify G-Code"
  1788. msgstr "Modificar GCode"
  1789. msgctxt "@label"
  1790. msgid "Modify settings for overlaps"
  1791. msgstr "Modificar los ajustes de las superposiciones"
  1792. msgctxt "@item:inmenu"
  1793. msgid "Monitor"
  1794. msgstr "Supervisar"
  1795. msgctxt "@action:button"
  1796. msgid "Monitor print"
  1797. msgstr "Supervisar la impresión"
  1798. msgctxt "@tooltip:button"
  1799. msgid "Monitor print jobs and reprint from your print history."
  1800. msgstr "Supervise los trabajos de impresión y vuelva a imprimir desde su historial de impresión."
  1801. msgctxt "@tooltip:button"
  1802. msgid "Monitor printers in Ultimaker Digital Factory."
  1803. msgstr "Supervise las impresoras de Ultimaker Digital Factory."
  1804. msgctxt "@info"
  1805. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1806. msgstr "Supervise sus impresoras desde cualquier lugar con Ultimaker Digital Factory"
  1807. msgctxt "@title:window"
  1808. msgid "More information on anonymous data collection"
  1809. msgstr "Más información sobre la recopilación de datos anónimos"
  1810. msgctxt "@window:title"
  1811. msgid "Move print job to top"
  1812. msgstr "Mover trabajo de impresión al principio"
  1813. msgctxt "@action:button"
  1814. msgid "Move to Next Position"
  1815. msgstr "Mover a la siguiente posición"
  1816. msgctxt "@label"
  1817. msgid "Move to top"
  1818. msgstr "Mover al principio"
  1819. msgctxt "@info:tooltip"
  1820. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1821. msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo"
  1822. msgctxt "@action:inmenu menubar:edit"
  1823. msgid "Multiply Selected"
  1824. msgstr "Multiplicar selección"
  1825. msgctxt "@title:window"
  1826. msgid "Multiply Selected Model"
  1827. msgid_plural "Multiply Selected Models"
  1828. msgstr[0] "Multiplicar modelo seleccionado"
  1829. msgstr[1] "Multiplicar modelos seleccionados"
  1830. msgctxt "@info"
  1831. msgid "Multiply selected item and place them in a grid of build plate."
  1832. msgstr "Multiplique el elemento seleccionado y colóquelo en una cuadrícula de la placa de construcción."
  1833. msgctxt "@info:status"
  1834. msgid "Multiplying and placing objects"
  1835. msgstr "Multiplicar y colocar objetos"
  1836. msgctxt "@title"
  1837. msgid "My Backups"
  1838. msgstr "Mis copias de seguridad"
  1839. msgctxt "@label:button"
  1840. msgid "My printers"
  1841. msgstr "Mis impresoras"
  1842. msgctxt "@action:label"
  1843. msgid "Name"
  1844. msgstr "Nombre"
  1845. msgctxt "@label:category menu label"
  1846. msgid "Network enabled printers"
  1847. msgstr "Impresoras de red habilitadas"
  1848. msgctxt "@info:title"
  1849. msgid "Network error"
  1850. msgstr "Error de red"
  1851. msgctxt "@info:title The %s gets replaced with the printer name."
  1852. msgid "New %s stable firmware available"
  1853. msgstr "Nuevo firmware de %s estable disponible"
  1854. msgctxt "@textfield:placeholder"
  1855. msgid "New Custom Profile"
  1856. msgstr "Nuevo perfil personalizado"
  1857. msgctxt "@label"
  1858. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1859. msgstr "Las nuevas impresoras UltiMaker pueden conectarse a Digital Factory y supervisarse a distancia."
  1860. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1861. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1862. msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}."
  1863. msgctxt "@action:button"
  1864. msgid "New materials installed"
  1865. msgstr "Nuevos materiales instalados"
  1866. msgctxt "info:status"
  1867. msgid "New printer detected from your Ultimaker account"
  1868. msgid_plural "New printers detected from your Ultimaker account"
  1869. msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker"
  1870. msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker"
  1871. msgctxt "@title:window"
  1872. msgid "New project"
  1873. msgstr "Nuevo proyecto"
  1874. msgctxt "@action:button"
  1875. msgid "Next"
  1876. msgstr "Siguiente"
  1877. msgctxt "@button"
  1878. msgid "Next"
  1879. msgstr "Siguiente"
  1880. msgctxt "@info:title"
  1881. msgid "Nightly build"
  1882. msgstr "Creación nocturna"
  1883. msgctxt "@info"
  1884. msgid "No"
  1885. msgstr "No"
  1886. msgctxt "@info"
  1887. msgid "No compatibility information"
  1888. msgstr "No hay información sobre la compatibilidad"
  1889. msgctxt "@description"
  1890. msgid "No compatible printers, that are currently online, were found."
  1891. msgstr "No se han encontrado impresoras compatibles que estén actualmente en línea."
  1892. msgctxt "@label"
  1893. msgid "No cost estimation available"
  1894. msgstr "Ningún cálculo de costes disponible"
  1895. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1896. msgid "No custom profile to import in file <filename>{0}</filename>"
  1897. msgstr "No hay ningún perfil personalizado para importar en el archivo <filename>{0}</filename>"
  1898. msgctxt "@label"
  1899. msgid "No items to select from"
  1900. msgstr "No hay elementos para seleccionar"
  1901. msgctxt "@info:title"
  1902. msgid "No layers to show"
  1903. msgstr "No hay capas para mostrar"
  1904. msgctxt "@message"
  1905. msgid "No more results to load"
  1906. msgstr "No hay más resultados para cargar"
  1907. msgctxt "@error:zip"
  1908. msgid "No permission to write the workspace here."
  1909. msgstr "No tiene permiso para escribir el espacio de trabajo aquí."
  1910. msgctxt "@title:header"
  1911. msgid "No printers found"
  1912. msgstr "No se ha encontrado ninguna impresora"
  1913. msgctxt "@label"
  1914. msgid "No printers found in your account?"
  1915. msgstr "¿No se han encontrado impresoras en su cuenta?"
  1916. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  1917. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  1918. msgstr "No hay perfiles disponibles para la configuración de material/%1 elegida. Modifique su configuración."
  1919. msgctxt "@message"
  1920. msgid "No results found with current filter"
  1921. msgstr "No se han encontrado resultados con el filtro actual"
  1922. msgctxt "@label"
  1923. msgid "No specific value has been set"
  1924. msgstr "No se ha establecido ningún valor específico"
  1925. msgctxt "@label"
  1926. msgid "No time estimation available"
  1927. msgstr "Ningún cálculo de tiempo disponible"
  1928. msgctxt "@button"
  1929. msgid "Non UltiMaker printer"
  1930. msgstr "Impresoras no UltiMaker"
  1931. msgctxt "@info No materials"
  1932. msgid "None"
  1933. msgstr "Ninguno"
  1934. msgctxt "@label"
  1935. msgid "Normal model"
  1936. msgstr "Modelo normal"
  1937. msgctxt "@info:title"
  1938. msgid "Not a group host"
  1939. msgstr "No es un host de grupo"
  1940. msgctxt "@label:MonitorStatus"
  1941. msgid "Not connected to a printer"
  1942. msgstr "No está conectado a ninguna impresora"
  1943. msgctxt "@action:label"
  1944. msgid "Not in profile"
  1945. msgstr "No está en el perfil"
  1946. msgctxt "@menuitem"
  1947. msgid "Not overridden"
  1948. msgstr "No reemplazado"
  1949. msgctxt "@info:not supported profile"
  1950. msgid "Not supported"
  1951. msgstr "No compatible"
  1952. msgctxt "@label"
  1953. msgid "Not yet initialized"
  1954. msgstr "Aún no inicializado"
  1955. msgctxt "@info:status"
  1956. msgid "Nothing is shown because you need to slice first."
  1957. msgstr "No se muestra nada porque primero hay que cortar."
  1958. msgctxt "@label"
  1959. msgid "Nozzle"
  1960. msgstr "Tobera"
  1961. msgctxt "@title:label"
  1962. msgid "Nozzle Settings"
  1963. msgstr "Ajustes de la tobera"
  1964. msgctxt "@label"
  1965. msgid "Nozzle offset X"
  1966. msgstr "Desplazamiento de la tobera sobre el eje X"
  1967. msgctxt "@label"
  1968. msgid "Nozzle offset Y"
  1969. msgstr "Desplazamiento de la tobera sobre el eje Y"
  1970. msgctxt "@label"
  1971. msgid "Nozzle size"
  1972. msgstr "Tamaño de la tobera"
  1973. msgctxt "@label"
  1974. msgid "Number of Copies"
  1975. msgstr "Número de copias"
  1976. msgctxt "@label"
  1977. msgid "Number of Extruders"
  1978. msgstr "Número de extrusores"
  1979. msgctxt "@action:button"
  1980. msgid "OK"
  1981. msgstr "Aceptar"
  1982. msgctxt "@label"
  1983. msgid "OS language"
  1984. msgstr "Idioma del sistema operativo"
  1985. msgctxt "@label"
  1986. msgid "Object list"
  1987. msgstr "Lista de objetos"
  1988. msgctxt "@label:Should be short"
  1989. msgid "Off"
  1990. msgstr "Apagado"
  1991. msgctxt "@label:Should be short"
  1992. msgid "On"
  1993. msgstr "Encendido"
  1994. msgctxt "@label"
  1995. msgid "Only Show Top Layers"
  1996. msgstr "Mostrar solo capas superiores"
  1997. msgctxt "@info:status"
  1998. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1999. msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
  2000. msgctxt "@message"
  2001. msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker."
  2002. msgstr "¡Vaya! Se ha producido un error inesperado durante su proceso de corte. Tenga la seguridad de que hemos recibido automáticamente los registros del fallo para su análisis, si no ha desactivado el uso compartido de datos en sus preferencias. Para ayudarnos un poco más, considere la posibilidad de compartir los detalles de su proyecto en nuestro localizador de incidencias."
  2003. msgctxt "@action:button"
  2004. msgid "Open"
  2005. msgstr "Abrir"
  2006. msgctxt "@title:menu menubar:file"
  2007. msgid "Open &Recent"
  2008. msgstr "Abrir &reciente"
  2009. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2010. msgid "Open Compressed Triangle Mesh"
  2011. msgstr "Open Compressed Triangle Mesh"
  2012. msgctxt "@title:window"
  2013. msgid "Open File(s)"
  2014. msgstr "Abrir archivo(s)"
  2015. msgctxt "@title:menu menubar:file"
  2016. msgid "Open File(s)..."
  2017. msgstr "Abrir archivo(s)..."
  2018. msgctxt "@title:window"
  2019. msgid "Open Project"
  2020. msgstr "Abrir proyecto"
  2021. msgctxt "@info:title"
  2022. msgid "Open Project File"
  2023. msgstr "Abrir archivo de proyecto"
  2024. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2025. msgid "Open Universal Cura Project (UCP)"
  2026. msgstr "Abrir el proyecto Universal Cura (UCP)"
  2027. msgctxt "@title:window Don't translate 'Universal Cura Project'"
  2028. msgid "Open Universal Cura Project (UCP) file"
  2029. msgstr "Abrir el archivo del proyecto Universal Cura (UCP)"
  2030. msgctxt "@action:label"
  2031. msgid "Open With"
  2032. msgstr "Abrir con"
  2033. msgctxt "@action:button"
  2034. msgid "Open as UCP"
  2035. msgstr "Abrir como UCP"
  2036. msgctxt "@action:button"
  2037. msgid "Open as project"
  2038. msgstr "Abrir como proyecto"
  2039. msgctxt "@title:window"
  2040. msgid "Open file(s)"
  2041. msgstr "Abrir archivo(s)"
  2042. msgctxt "@action:button"
  2043. msgid "Open project anyway"
  2044. msgstr "Abrir el proyecto de todos modos"
  2045. msgctxt "@title:window"
  2046. msgid "Open project file"
  2047. msgstr "Abrir archivo de proyecto"
  2048. msgctxt "@label OpenGL version"
  2049. msgid "OpenGL"
  2050. msgstr "OpenGL"
  2051. msgctxt "@label"
  2052. msgid "Opening and saving files"
  2053. msgstr "Abrir y guardar archivos"
  2054. msgctxt "@header"
  2055. msgid "Optimized for Air Manager"
  2056. msgstr "Optimizado para Air Manager"
  2057. msgctxt "@label"
  2058. msgid "Origin at center"
  2059. msgstr "Origen en el centro"
  2060. msgid "Orthographic"
  2061. msgstr "Ortográfica"
  2062. msgctxt "@action:inmenu menubar:view"
  2063. msgid "Orthographic"
  2064. msgstr "Ortográfica"
  2065. msgctxt "@tooltip"
  2066. msgid "Other"
  2067. msgstr "Otro"
  2068. msgctxt "@label"
  2069. msgid "Other models overlapping with this model are modified."
  2070. msgstr "Se han modificado otros modelos que se superponen con este modelo."
  2071. msgctxt "@label"
  2072. msgid "Other printers"
  2073. msgstr "Otras impresoras"
  2074. msgctxt "@tooltip"
  2075. msgid "Outer Wall"
  2076. msgstr "Pared exterior"
  2077. msgctxt "@label"
  2078. msgid "Overlaps with this model are not supported."
  2079. msgstr "No se admiten superposiciones con este modelo."
  2080. msgctxt "@action:button"
  2081. msgid "Override"
  2082. msgstr "Anular"
  2083. msgctxt "@label"
  2084. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2085. msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión."
  2086. msgctxt "@label %1 is the number of settings it overrides."
  2087. msgid "Overrides %1 setting."
  2088. msgid_plural "Overrides %1 settings."
  2089. msgstr[0] "%1 sobrescrito."
  2090. msgstr[1] "%1 sobrescritos."
  2091. msgctxt "@title:menu menubar:toplevel"
  2092. msgid "P&references"
  2093. msgstr "Pre&ferencias"
  2094. msgctxt "@item:inlistbox"
  2095. msgid "PNG Image"
  2096. msgstr "Imagen PNG"
  2097. msgctxt "@header"
  2098. msgid "Package details"
  2099. msgstr "Detalles del paquete"
  2100. msgctxt "@label Description for development tool"
  2101. msgid "Packaging Python-applications"
  2102. msgstr "Empaquetado de aplicaciones Python"
  2103. msgctxt "@info:status"
  2104. msgid "Parsing G-code"
  2105. msgstr "Analizar GCode"
  2106. msgctxt "@action:inmenu menubar:edit"
  2107. msgid "Paste from clipboard"
  2108. msgstr "Copiar desde el portapapeles"
  2109. msgctxt "@label"
  2110. msgid "Pause"
  2111. msgstr "Pausar"
  2112. msgctxt "@label:MonitorStatus"
  2113. msgid "Paused"
  2114. msgstr "En pausa"
  2115. msgctxt "@label:status"
  2116. msgid "Paused"
  2117. msgstr "En pausa"
  2118. msgctxt "@label"
  2119. msgid "Pausing..."
  2120. msgstr "Pausando..."
  2121. msgctxt "@label:status"
  2122. msgid "Pausing..."
  2123. msgstr "Pausando..."
  2124. msgctxt "@label"
  2125. msgid "Per Model Settings"
  2126. msgstr "Ajustes por modelo"
  2127. msgid "Perspective"
  2128. msgstr "Perspectiva"
  2129. msgctxt "@action:inmenu menubar:view"
  2130. msgid "Perspective"
  2131. msgstr "Perspectiva"
  2132. msgctxt "@action:label"
  2133. msgid "Placement"
  2134. msgstr "Colocación"
  2135. msgctxt "@info:title"
  2136. msgid "Placing Object"
  2137. msgstr "Colocando objeto"
  2138. msgctxt "@info:title"
  2139. msgid "Placing Objects"
  2140. msgstr "Colocando objetos"
  2141. msgctxt "@label Type of platform"
  2142. msgid "Platform"
  2143. msgstr "Plataforma"
  2144. msgctxt "@info"
  2145. msgid "Please connect your printer to the network."
  2146. msgstr "Conecte su impresora a la red."
  2147. msgctxt "@text"
  2148. msgid "Please enter a valid IP address."
  2149. msgstr "Introduzca una dirección IP válida."
  2150. msgctxt "@message"
  2151. msgid "Please give the required permissions when authorizing this application."
  2152. msgstr "Conceda los permisos necesarios al autorizar esta aplicación."
  2153. msgctxt "@info"
  2154. msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers."
  2155. msgstr "Asegúrese de que la impresora está conectada:"
  2156. "- Compruebe que la impresora está encendida."
  2157. "- Compruebe que la impresora está conectada a la red."
  2158. "- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube."
  2159. msgctxt "@text"
  2160. msgid "Please name your printer"
  2161. msgstr "Asigne un nombre a su impresora"
  2162. msgctxt "@warning:status"
  2163. msgid "Please prepare G-code before exporting."
  2164. msgstr "Prepare el Gcode antes de la exportación."
  2165. msgctxt "@info"
  2166. msgid "Please provide a name for this profile."
  2167. msgstr "Introduzca un nombre para este perfil."
  2168. msgctxt "@info"
  2169. msgid "Please provide a new name."
  2170. msgstr "Por favor, proporciona un nuevo nombre."
  2171. msgctxt "@text"
  2172. msgid "Please read and agree with the plugin licence."
  2173. msgstr "Lea y acepte la licencia del complemento."
  2174. msgctxt "@label:MonitorStatus"
  2175. msgid "Please remove the print"
  2176. msgstr "Retire la impresión"
  2177. msgctxt "@info:status"
  2178. msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes"
  2179. msgstr "Revise la configuración y compruebe si sus modelos:"
  2180. "- Se integran en el volumen de impresión"
  2181. "- Están asignados a un extrusor activado"
  2182. "- No están todos definidos como mallas modificadoras"
  2183. msgctxt "@label"
  2184. msgid "Please select any upgrades made to this UltiMaker Original"
  2185. msgstr "Seleccione cualquier actualización de UltiMaker Original"
  2186. msgctxt "@description"
  2187. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2188. msgstr "Inicie sesión para obtener complementos y materiales verificados para UltiMaker Cura Enterprise"
  2189. msgctxt "@info:tooltip"
  2190. msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data."
  2191. msgstr "Inicie sesión en su cuenta de UltiMaker para permitir el envío de datos no anónimos."
  2192. msgctxt "@action:button"
  2193. msgid "Please sync the material profiles with your printers before starting to print."
  2194. msgstr "Sincronice los perfiles de material con sus impresoras antes de comenzar a imprimir."
  2195. msgctxt "@info"
  2196. msgid "Please update your printer's firmware to manage the queue remotely."
  2197. msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota."
  2198. msgctxt "@info:status"
  2199. msgid "Please wait until the current job has been sent."
  2200. msgstr "Espere hasta que se envíe el trabajo actual."
  2201. msgctxt "@title:window"
  2202. msgid "Plugin License Agreement"
  2203. msgstr "Acuerdo de licencia de complemento"
  2204. msgctxt "@button"
  2205. msgid "Plugin license agreement"
  2206. msgstr "Acuerdo de licencia de complemento"
  2207. msgctxt "@backuplist:label"
  2208. msgid "Plugins"
  2209. msgstr "Complementos"
  2210. msgctxt "@button"
  2211. msgid "Plugins"
  2212. msgstr "Complementos"
  2213. msgctxt "@label Description for application dependency"
  2214. msgid "Polygon clipping library"
  2215. msgstr "Biblioteca de recorte de polígonos"
  2216. msgctxt "@label Description for application component"
  2217. msgid "Polygon packing library, developed by Prusa Research"
  2218. msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research"
  2219. msgctxt "@item:inmenu"
  2220. msgid "Post Processing"
  2221. msgstr "Posprocesamiento"
  2222. msgctxt "@title:window"
  2223. msgid "Post Processing Plugin"
  2224. msgstr "Complemento de posprocesamiento"
  2225. msgctxt "@label"
  2226. msgid "Post Processing Scripts"
  2227. msgstr "Secuencias de comandos de posprocesamiento"
  2228. msgctxt "@button"
  2229. msgid "Pre-heat"
  2230. msgstr "Precalentar"
  2231. msgctxt "@item:inmenu"
  2232. msgid "Prepare"
  2233. msgstr "Preparar"
  2234. msgctxt "@label:MonitorStatus"
  2235. msgid "Preparing..."
  2236. msgstr "Preparando..."
  2237. msgctxt "@label:status"
  2238. msgid "Preparing..."
  2239. msgstr "Preparando..."
  2240. msgctxt "@label"
  2241. msgid "Preset printers"
  2242. msgstr "Impresoras preconfiguradas"
  2243. msgctxt "@button"
  2244. msgid "Preview"
  2245. msgstr "Vista previa"
  2246. msgctxt "@item:inmenu"
  2247. msgid "Preview"
  2248. msgstr "Vista previa"
  2249. msgctxt "@tooltip"
  2250. msgid "Prime Tower"
  2251. msgstr "Torre auxiliar"
  2252. msgctxt "@action:button"
  2253. msgid "Print"
  2254. msgstr "Imprimir"
  2255. msgctxt "@action:inmenu menubar:edit"
  2256. msgid "Print After"
  2257. msgstr "Imprimir después"
  2258. msgctxt "@action:inmenu menubar:edit"
  2259. msgid "Print Before"
  2260. msgstr "Imprimir antes"
  2261. msgctxt "@label"
  2262. msgid "Print Selected Model With:"
  2263. msgid_plural "Print Selected Models With:"
  2264. msgstr[0] "Imprimir modelo seleccionado con:"
  2265. msgstr[1] "Imprimir modelos seleccionados con:"
  2266. msgctxt "@label %1 is filled in with the name of an extruder"
  2267. msgid "Print Selected Model with %1"
  2268. msgid_plural "Print Selected Models with %1"
  2269. msgstr[0] "Imprimir modelo seleccionado con %1"
  2270. msgstr[1] "Imprimir modelos seleccionados con %1"
  2271. msgctxt "@label"
  2272. msgid "Print as support"
  2273. msgstr "Imprimir como soporte"
  2274. msgctxt "@info:title"
  2275. msgid "Print error"
  2276. msgstr "Error de impresión"
  2277. msgctxt "@message"
  2278. msgid "Print in Progress"
  2279. msgstr "Impresión en curso"
  2280. msgctxt "@info:status"
  2281. msgid "Print job queue is full. The printer can't accept a new job."
  2282. msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos."
  2283. msgctxt "@info:status"
  2284. msgid "Print job was successfully sent to the printer."
  2285. msgstr "El trabajo de impresión se ha enviado correctamente a la impresora."
  2286. msgctxt "@label"
  2287. msgid "Print jobs"
  2288. msgstr "Trabajos de impresión"
  2289. msgctxt "@label:button"
  2290. msgid "Print jobs"
  2291. msgstr "Trabajos de impresión"
  2292. msgctxt "@action:button Preceded by 'Ready to'."
  2293. msgid "Print over network"
  2294. msgstr "Imprimir a través de la red"
  2295. msgctxt "@properties:tooltip"
  2296. msgid "Print over network"
  2297. msgstr "Imprime a través de la red"
  2298. msgctxt "@title:window"
  2299. msgid "Print over network"
  2300. msgstr "Imprimir a través de la red"
  2301. msgctxt "@label"
  2302. msgid "Print settings"
  2303. msgstr "Ajustes de impresión"
  2304. msgctxt "@label shown when we load a Gcode file"
  2305. msgid "Print setup disabled. G-code file can not be modified."
  2306. msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode."
  2307. msgctxt "@action:button Preceded by 'Ready to'."
  2308. msgid "Print via USB"
  2309. msgstr "Imprimir mediante USB"
  2310. msgctxt "@info:tooltip"
  2311. msgid "Print via USB"
  2312. msgstr "Imprimir mediante USB"
  2313. msgctxt "@action:button"
  2314. msgid "Print via cloud"
  2315. msgstr "Imprimir mediante cloud"
  2316. msgctxt "@properties:tooltip"
  2317. msgid "Print via cloud"
  2318. msgstr "Imprimir mediante cloud"
  2319. msgctxt "@action:label"
  2320. msgid "Print with"
  2321. msgstr "Imprimir con"
  2322. msgctxt "@title:tab"
  2323. msgid "Printer"
  2324. msgstr "Impresora"
  2325. msgctxt "@title:window"
  2326. msgid "Printer Address"
  2327. msgstr "Dirección de la impresora"
  2328. msgctxt "@action:label"
  2329. msgid "Printer Group"
  2330. msgstr "Grupo de impresoras"
  2331. msgctxt "@title:label"
  2332. msgid "Printer Settings"
  2333. msgstr "Ajustes de la impresora"
  2334. msgctxt "@label"
  2335. msgid "Printer control"
  2336. msgstr "Control de impresoras"
  2337. msgctxt "@label:MonitorStatus"
  2338. msgid "Printer does not accept commands"
  2339. msgstr "La impresora no acepta comandos"
  2340. msgctxt "@label"
  2341. msgid "Printer name"
  2342. msgstr "Nombre de la impresora"
  2343. msgctxt "@label"
  2344. msgid "Printer selection"
  2345. msgstr "Selección de la impresora"
  2346. msgctxt "@action:label"
  2347. msgid "Printer settings"
  2348. msgstr "Ajustes de la impresora"
  2349. msgctxt "@info:tooltip"
  2350. msgid "Printer settings will be updated to match the settings saved with the project."
  2351. msgstr "La configuración de la impresora se actualizar para que coincida con la configuración guardada con el proyecto."
  2352. msgctxt "@title:tab"
  2353. msgid "Printers"
  2354. msgstr "Impresoras"
  2355. msgctxt "info:status"
  2356. msgid "Printers added from Digital Factory:"
  2357. msgstr "Impresoras añadidas desde Digital Factory:"
  2358. msgctxt "@text Asking the user whether printers are missing in a list."
  2359. msgid "Printers missing?"
  2360. msgstr "¿Faltan impresoras?"
  2361. msgctxt "@title:label"
  2362. msgid "Printhead Settings"
  2363. msgstr "Ajustes del cabezal de impresión"
  2364. msgctxt "@label:status"
  2365. msgid "Printing"
  2366. msgstr "Imprimiendo"
  2367. msgctxt "@label"
  2368. msgid "Printing Time"
  2369. msgstr "Tiempo de impresión"
  2370. msgctxt "@label:MonitorStatus"
  2371. msgid "Printing..."
  2372. msgstr "Imprimiendo..."
  2373. msgctxt "@label"
  2374. msgid "Privacy"
  2375. msgstr "Privacidad"
  2376. msgctxt "@button"
  2377. msgid "Processing"
  2378. msgstr "Procesando"
  2379. msgctxt "@info:status"
  2380. msgid "Processing Layers"
  2381. msgstr "Procesando capas"
  2382. msgctxt "@label"
  2383. msgid "Profile"
  2384. msgstr "Perfil"
  2385. msgctxt "@title:column"
  2386. msgid "Profile"
  2387. msgstr "Perfil"
  2388. msgctxt "@label"
  2389. msgid "Profile author"
  2390. msgstr "Autor del perfil"
  2391. msgctxt "@info:status"
  2392. msgid "Profile is missing a quality type."
  2393. msgstr "Al perfil le falta un tipo de calidad."
  2394. msgctxt "@action:label"
  2395. msgid "Profile settings"
  2396. msgstr "Ajustes del perfil"
  2397. msgctxt "@title:column"
  2398. msgid "Profile settings"
  2399. msgstr "Ajustes del perfil"
  2400. msgctxt "@info:status"
  2401. msgid "Profile {0} has an unknown file type or is corrupted."
  2402. msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto."
  2403. msgctxt "@backuplist:label"
  2404. msgid "Profiles"
  2405. msgstr "Perfiles"
  2406. msgctxt "@label"
  2407. msgid "Profiles"
  2408. msgstr "Perfiles"
  2409. msgctxt "@title:tab"
  2410. msgid "Profiles"
  2411. msgstr "Perfiles"
  2412. msgctxt "@label"
  2413. msgid "Profiles compatible with active printer:"
  2414. msgstr "Perfiles compatibles con la impresora activa:"
  2415. msgctxt "@label Description for application dependency"
  2416. msgid "Programming language"
  2417. msgstr "Lenguaje de programación"
  2418. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2419. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2420. msgstr "El archivo del proyecto <filename>{0}</filename> contiene un tipo de máquina desconocida <message>{1}</message>. No se puede importar la máquina, en su lugar, se importarán los modelos."
  2421. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2422. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2423. msgstr "El archivo de proyecto <filename>{0}</filename> está dañado: <message>{1}</message>."
  2424. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2425. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2426. msgstr "El archivo de proyecto <filename>{0}</filename> se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura."
  2427. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2428. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2429. msgstr "El archivo de proyecto <filename>{0}</filename> está repentinamente inaccesible: <message>{1}</message>."
  2430. msgctxt "@label"
  2431. msgid "Properties"
  2432. msgstr "Propiedades"
  2433. msgctxt "@label"
  2434. msgid "PyQt version"
  2435. msgstr "Versión PyQt"
  2436. msgctxt "@Label Description for application dependency"
  2437. msgid "Python Error tracking library"
  2438. msgstr "Biblioteca de seguimiento de errores de Python"
  2439. msgctxt "@label Description for application dependency"
  2440. msgid "Python bindings for Clipper"
  2441. msgstr "Enlaces de Python para Clipper"
  2442. msgctxt "@label Description for application component"
  2443. msgid "Python bindings for libnest2d"
  2444. msgstr "Enlaces de Python para libnest2d"
  2445. msgctxt "@label"
  2446. msgid "Qt version"
  2447. msgstr "Versión Qt"
  2448. msgctxt "@info:status"
  2449. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2450. msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'."
  2451. msgctxt "@info:title"
  2452. msgid "Queue Full"
  2453. msgstr "Cola llena"
  2454. msgctxt "@label"
  2455. msgid "Queued"
  2456. msgstr "En cola"
  2457. msgctxt "@info:button, %1 is the application name"
  2458. msgid "Quit %1"
  2459. msgstr "Salir de %1"
  2460. msgctxt "@button"
  2461. msgid "Recommended"
  2462. msgstr "Recomendado"
  2463. msgctxt "@title:tab"
  2464. msgid "Recommended"
  2465. msgstr "Recomendado"
  2466. msgctxt "@label"
  2467. msgid "Recommended print settings"
  2468. msgstr "Ajustes de impresión recomendados"
  2469. msgctxt "@info %1 is the name of a profile"
  2470. msgid "Recommended settings (for <b>%1</b>) were altered."
  2471. msgstr "Se ha modificado la configuración recomendada (para <b>%1</b>)."
  2472. msgctxt "@action:button"
  2473. msgid "Refresh"
  2474. msgstr "Actualizar"
  2475. msgctxt "@button"
  2476. msgid "Refresh"
  2477. msgstr "Actualizar"
  2478. msgctxt "@label"
  2479. msgid "Refresh"
  2480. msgstr "Actualizar"
  2481. msgctxt "@button"
  2482. msgid "Refresh List"
  2483. msgstr "Actualizar la lista"
  2484. msgctxt "@button"
  2485. msgid "Refreshing..."
  2486. msgstr "Actualizando..."
  2487. msgctxt "@label"
  2488. msgid "Release Notes"
  2489. msgstr "Notas de la versión"
  2490. msgctxt "@action:inmenu menubar:file"
  2491. msgid "Reload All Models"
  2492. msgstr "Recargar todos los modelos"
  2493. msgctxt "@text:window"
  2494. msgid "Remember my choice"
  2495. msgstr "Recordar mi selección"
  2496. msgctxt "@item:intext"
  2497. msgid "Removable Drive"
  2498. msgstr "Unidad extraíble"
  2499. msgctxt "@action:button"
  2500. msgid "Remove"
  2501. msgstr "Eliminar"
  2502. msgctxt "@action:button"
  2503. msgid "Remove printers"
  2504. msgstr "Eliminar impresoras"
  2505. msgctxt "@title:window"
  2506. msgid "Remove printers?"
  2507. msgstr "¿Eliminar impresoras?"
  2508. msgctxt "@action:button"
  2509. msgid "Rename"
  2510. msgstr "Cambiar nombre"
  2511. msgctxt "@title:window"
  2512. msgid "Rename"
  2513. msgstr "Renombrar"
  2514. msgctxt "@title:window"
  2515. msgid "Rename Profile"
  2516. msgstr "Cambiar nombre de perfil"
  2517. msgctxt "@action:inmenu menubar:help"
  2518. msgid "Report a &Bug"
  2519. msgstr "Informar de un &error"
  2520. msgctxt "@label:button"
  2521. msgid "Report a bug"
  2522. msgstr "Informar del error"
  2523. msgctxt "@message:button"
  2524. msgid "Report a bug"
  2525. msgstr "Informar del error"
  2526. msgctxt "@message:description"
  2527. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2528. msgstr "Informar de un error en el rastreador de problemas de UltiMaker Cura."
  2529. msgctxt "@label:status"
  2530. msgid "Requires configuration changes"
  2531. msgstr "Debe cambiar la configuración"
  2532. msgctxt "@action:inmenu menubar:edit"
  2533. msgid "Reset All Model Positions"
  2534. msgstr "Restablecer las posiciones de todos los modelos"
  2535. msgctxt "@action:inmenu menubar:edit"
  2536. msgid "Reset All Model Transformations"
  2537. msgstr "Restablecer las transformaciones de todos los modelos"
  2538. msgctxt "@info"
  2539. msgid "Reset to defaults."
  2540. msgstr "Restablecer los valores por defecto."
  2541. msgctxt "@label"
  2542. msgid "Resolution"
  2543. msgstr "Resolución"
  2544. msgctxt "@button"
  2545. msgid "Restore"
  2546. msgstr "Restaurar"
  2547. msgctxt "@dialog:title"
  2548. msgid "Restore Backup"
  2549. msgstr "Restaurar copia de seguridad"
  2550. msgctxt "@option:check"
  2551. msgid "Restore window position on start"
  2552. msgstr "Restaurar la posición de la ventana al inicio"
  2553. msgctxt "@label"
  2554. msgid "Resume"
  2555. msgstr "Reanudar"
  2556. msgctxt "@label"
  2557. msgid "Resuming..."
  2558. msgstr "Reanudando..."
  2559. msgctxt "@label:status"
  2560. msgid "Resuming..."
  2561. msgstr "Reanudando..."
  2562. msgctxt "@tooltip"
  2563. msgid "Retractions"
  2564. msgstr "Retracciones"
  2565. msgctxt "@button"
  2566. msgid "Retry?"
  2567. msgstr "¿Desea volver a intentarlo?"
  2568. msgctxt "@action:inmenu menubar:view"
  2569. msgid "Right Side View"
  2570. msgstr "Vista del lado derecho"
  2571. msgctxt "@info:tooltip"
  2572. msgid "Right View"
  2573. msgstr "Vista del lado derecho"
  2574. msgctxt "@label Description for application dependency"
  2575. msgid "Root Certificates for validating SSL trustworthiness"
  2576. msgstr "Certificados de raíz para validar la fiabilidad del SSL"
  2577. msgctxt "@info:title"
  2578. msgid "Safely Remove Hardware"
  2579. msgstr "Retirar de forma segura el hardware"
  2580. msgctxt "@button"
  2581. msgid "Safety datasheet"
  2582. msgstr "Hoja de datos de seguridad"
  2583. msgctxt "@action:button"
  2584. msgid "Save"
  2585. msgstr "Guardar"
  2586. msgctxt "@option"
  2587. msgid "Save Cura project"
  2588. msgstr "Guardar el proyecto de Cura"
  2589. msgctxt "@option"
  2590. msgid "Save Cura project and .makerbot print file"
  2591. msgstr "Guardar proyecto Cura y archivo de impresión .makerbot"
  2592. msgctxt "@option"
  2593. msgid "Save Cura project and .ufp print file"
  2594. msgstr "Guardar proyecto Cura y archivo de impresión .ufp"
  2595. msgctxt "@title:window"
  2596. msgid "Save Custom Profile"
  2597. msgstr "Guardar perfil personalizado"
  2598. msgctxt "@title:window"
  2599. msgid "Save Project"
  2600. msgstr "Guardar proyecto"
  2601. msgctxt "@title:menu menubar:file"
  2602. msgid "Save Project..."
  2603. msgstr "Guardar proyecto..."
  2604. msgctxt "@action:button"
  2605. msgid "Save as new custom profile"
  2606. msgstr "Guardar como nuevo perfil personalizado"
  2607. msgctxt "@action:button"
  2608. msgid "Save changes"
  2609. msgstr "Guardar cambios"
  2610. msgctxt "@button"
  2611. msgid "Save new profile"
  2612. msgstr "Guardar nuevo perfil"
  2613. msgctxt "@action:button"
  2614. msgid "Save project"
  2615. msgstr "Guardar proyecto"
  2616. msgctxt "@text"
  2617. msgid "Save the .umm file on a USB stick."
  2618. msgstr "Guarde el archivo .umm en una memoria USB."
  2619. msgctxt "@action:button Preceded by 'Ready to'."
  2620. msgid "Save to Removable Drive"
  2621. msgstr "Guardar en unidad extraíble"
  2622. msgctxt "@item:inlistbox"
  2623. msgid "Save to Removable Drive {0}"
  2624. msgstr "Guardar en unidad extraíble {0}"
  2625. msgctxt "@info:status"
  2626. msgid "Saved to Removable Drive {0} as {1}"
  2627. msgstr "Guardado en unidad extraíble {0} como {1}"
  2628. msgctxt "@info:title"
  2629. msgid "Saving"
  2630. msgstr "Guardando"
  2631. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2632. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2633. msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  2634. msgctxt "@option:check"
  2635. msgid "Scale extremely small models"
  2636. msgstr "Escalar modelos demasiado pequeños"
  2637. msgctxt "@option:check"
  2638. msgid "Scale large models"
  2639. msgstr "Escalar modelos de gran tamaño"
  2640. msgctxt "@placeholder"
  2641. msgid "Search"
  2642. msgstr "Buscar"
  2643. msgctxt "@info"
  2644. msgid "Search in the browser"
  2645. msgstr "Buscar en el navegador"
  2646. msgctxt "@label:textbox"
  2647. msgid "Search settings"
  2648. msgstr "Buscar ajustes"
  2649. msgctxt "@action:inmenu menubar:edit"
  2650. msgid "Select All Models"
  2651. msgstr "Seleccionar todos los modelos"
  2652. msgctxt "@title:window"
  2653. msgid "Select Printer"
  2654. msgstr "Seleccionar impresora"
  2655. msgctxt "@title:window"
  2656. msgid "Select Settings to Customize for this model"
  2657. msgstr "Seleccionar ajustes o personalizar este modelo"
  2658. msgctxt "@text"
  2659. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2660. msgstr "Seleccione e instale perfiles de material optimizados para sus impresoras 3D UltiMaker."
  2661. msgctxt "@label"
  2662. msgid "Select configuration"
  2663. msgstr "Seleccionar configuración"
  2664. msgctxt "@title:window"
  2665. msgid "Select custom firmware"
  2666. msgstr "Seleccionar firmware personalizado"
  2667. msgctxt "@option:check"
  2668. msgid "Select models when loaded"
  2669. msgstr "Seleccionar modelos al abrirlos"
  2670. msgctxt "@action:button"
  2671. msgid "Select settings"
  2672. msgstr "Seleccionar ajustes"
  2673. msgctxt "@action"
  2674. msgid "Select upgrades"
  2675. msgstr "Seleccionar actualizaciones"
  2676. msgctxt "@label"
  2677. msgid "Select your printer from the list below:"
  2678. msgstr "Seleccione la impresora en la lista siguiente:"
  2679. msgctxt "@option:check"
  2680. msgid "Send (anonymous) print information"
  2681. msgstr "Enviar información (anónima) de impresión"
  2682. msgctxt "@label"
  2683. msgid "Send G-code"
  2684. msgstr "Enviar GCode"
  2685. msgctxt "@tooltip of G-code command input"
  2686. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2687. msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
  2688. msgctxt "@action:button"
  2689. msgid "Send crash report to UltiMaker"
  2690. msgstr "Enviar informe de errores a UltiMaker"
  2691. msgctxt "@info:tooltip"
  2692. msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send."
  2693. msgstr "Envíe informes de fallos con el nombre de su cuenta UltiMaker registrada y el nombre del proyecto a UltiMaker Sentry. No se envían datos reales del modelo."
  2694. msgctxt "@info:tooltip"
  2695. msgid "Send crash reports without any personally identifiable information or models data to UltiMaker."
  2696. msgstr "Envíe a UltiMaker informes de incidencias sin ningún tipo de información que permita la identificación personal ni datos de modelos."
  2697. msgctxt "@option:check"
  2698. msgid "Send engine crash reports"
  2699. msgstr "Enviar informes de fallos del motor"
  2700. msgctxt "@action:button"
  2701. msgid "Send report"
  2702. msgstr "Enviar informe"
  2703. msgctxt "@info:status"
  2704. msgid "Sending Print Job"
  2705. msgstr "Enviando trabajo de impresión"
  2706. msgctxt "@info:title"
  2707. msgid "Sending materials to printer"
  2708. msgstr "Enviando materiales a la impresora"
  2709. msgctxt "@label Description for application dependency"
  2710. msgid "Serial communication library"
  2711. msgstr "Biblioteca de comunicación en serie"
  2712. msgctxt "@action:inmenu"
  2713. msgid "Set as Active Extruder"
  2714. msgstr "Definir como extrusor activo"
  2715. msgctxt "@title:column"
  2716. msgid "Setting"
  2717. msgstr "Ajustes"
  2718. msgctxt "@title:tab"
  2719. msgid "Setting Visibility"
  2720. msgstr "Visibilidad de los ajustes"
  2721. msgctxt "@info:progress"
  2722. msgid "Setting up preferences..."
  2723. msgstr "Configurando preferencias...."
  2724. msgctxt "@info:progress"
  2725. msgid "Setting up scene..."
  2726. msgstr "Configurando escena..."
  2727. msgctxt "@action:label"
  2728. msgid "Setting visibility"
  2729. msgstr "Visibilidad de los ajustes"
  2730. msgctxt "@label"
  2731. msgid "Settings"
  2732. msgstr "Ajustes"
  2733. msgctxt "@title:tab"
  2734. msgid "Settings"
  2735. msgstr "Ajustes"
  2736. msgctxt "@action:label"
  2737. msgid "Settings Loaded from UCP file"
  2738. msgstr "Ajustes cargados desde el archivo UCP"
  2739. msgctxt "@info:message Followed by a list of settings."
  2740. msgid "Settings have been changed to match the current availability of extruders:"
  2741. msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:"
  2742. msgctxt "@info:title"
  2743. msgid "Settings updated"
  2744. msgstr "Ajustes actualizados"
  2745. msgctxt "@text"
  2746. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2747. msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad UltiMaker"
  2748. msgctxt "@label"
  2749. msgid "Shell"
  2750. msgstr "Perímetro"
  2751. msgctxt "@action:label"
  2752. msgid "Shell Thickness"
  2753. msgstr "Grosor del perímetro"
  2754. msgctxt "@info:tooltip"
  2755. msgid "Should Cura check for updates when the program is started?"
  2756. msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
  2757. msgctxt "@info:tooltip"
  2758. msgid "Should Cura open at the location it was closed?"
  2759. msgstr "¿Debería abrirse Cura en el lugar donde se cerró?"
  2760. msgctxt "@info:tooltip"
  2761. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2762. msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
  2763. msgctxt "@info:tooltip"
  2764. msgid "Should a summary be shown when saving a project file?"
  2765. msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
  2766. msgctxt "@info:tooltip"
  2767. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2768. msgstr "¿Debería Cura buscar automáticamente nuevos complementos cada vez que se inicia? Le recomendamos encarecidamente que no desactive esta opción!"
  2769. msgctxt "@info:tooltip"
  2770. msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  2771. msgstr "¿Deben enviarse datos anónimos sobre la impresión a UltiMaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal."
  2772. msgctxt "@info:tooltip"
  2773. msgid "Should layer be forced into compatibility mode?"
  2774. msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
  2775. msgctxt "@info:tooltip"
  2776. msgid "Should models be scaled to the build volume if they are too large?"
  2777. msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
  2778. msgctxt "@info:tooltip"
  2779. msgid "Should models be selected after they are loaded?"
  2780. msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
  2781. msgctxt "@info:tooltip"
  2782. msgid "Should models on the platform be moved down to touch the build plate?"
  2783. msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
  2784. msgctxt "@info:tooltip"
  2785. msgid "Should models on the platform be moved so that they no longer intersect?"
  2786. msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
  2787. msgctxt "@info:tooltip"
  2788. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2789. msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?"
  2790. msgctxt "@info:tooltip"
  2791. msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission."
  2792. msgstr "¿Deben notificarse automáticamente las incidencias de rebanado a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP u otra información de identificación personal, a menos que usted lo autorice explícitamente."
  2793. msgctxt "@info:tooltip"
  2794. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2795. msgstr "¿Se debe limpiar la placa de impresión antes de cargar un nuevo modelo en una única instancia de Cura?"
  2796. msgctxt "@info:tooltip"
  2797. msgid "Should the default zoom behavior of cura be inverted?"
  2798. msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
  2799. msgctxt "@info:tooltip"
  2800. msgid "Should zooming move in the direction of the mouse?"
  2801. msgstr "¿Debería moverse el zoom en la dirección del ratón?"
  2802. msgctxt "@label"
  2803. msgid "Show 5 Detailed Layers On Top"
  2804. msgstr "Mostrar cinco capas detalladas en la parte superior"
  2805. msgctxt "@action:inmenu menubar:help"
  2806. msgid "Show Configuration Folder"
  2807. msgstr "Mostrar carpeta de configuración"
  2808. msgctxt "@button"
  2809. msgid "Show Custom"
  2810. msgstr "Mostrar personalización"
  2811. msgctxt "@action:inmenu menubar:help"
  2812. msgid "Show Online &Documentation"
  2813. msgstr "Mostrar &documentación en línea"
  2814. msgctxt "@action:inmenu"
  2815. msgid "Show Online Troubleshooting"
  2816. msgstr "Mostrar resolución de problemas online"
  2817. msgctxt "@label:checkbox"
  2818. msgid "Show all"
  2819. msgstr "Mostrar todo"
  2820. msgctxt "@label"
  2821. msgid "Show all connected printers"
  2822. msgstr "Mostrar todas las impresoras conectadas"
  2823. msgctxt "@info:tooltip"
  2824. msgid "Show an icon and notifications in the system notification area."
  2825. msgstr "Mostrar un icono y notificaciones en el área de notificaciones del sistema."
  2826. msgctxt "@info:tooltip"
  2827. msgid "Show caution message in g-code reader."
  2828. msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
  2829. msgctxt "@action:button"
  2830. msgid "Show configuration folder"
  2831. msgstr "Mostrar carpeta de configuración"
  2832. msgctxt "@action:button"
  2833. msgid "Show detailed crash report"
  2834. msgstr "Mostrar informe de errores detallado"
  2835. msgctxt "@action:button"
  2836. msgid "Show settings"
  2837. msgstr "Mostrar ajustes"
  2838. msgctxt "@option:check"
  2839. msgid "Show summary dialog when saving project"
  2840. msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
  2841. msgctxt "@tooltip:button"
  2842. msgid "Show your support for Cura with a donation."
  2843. msgstr "Muestre su apoyo a Cura con una donación."
  2844. msgctxt "@button"
  2845. msgid "Sign Out"
  2846. msgstr "Cerrar sesión"
  2847. msgctxt "@action:button"
  2848. msgid "Sign in"
  2849. msgstr "Iniciar sesión"
  2850. msgctxt "@button"
  2851. msgid "Sign in"
  2852. msgstr "Iniciar sesión"
  2853. msgctxt "@title:header"
  2854. msgid "Sign in"
  2855. msgstr "Iniciar sesión"
  2856. msgctxt "@info"
  2857. msgid "Sign in into UltiMaker Digital Factory"
  2858. msgstr "Inicie sesión en UltiMaker Digital Factory"
  2859. msgctxt "@button"
  2860. msgid "Sign in to Digital Factory"
  2861. msgstr "Iniciar sesión en Digital Factory"
  2862. msgctxt "@label"
  2863. msgid "Sign in to the UltiMaker platform"
  2864. msgstr "Inicie sesión en la plataforma UltiMaker"
  2865. msgctxt "@tooltip"
  2866. msgid "Skin"
  2867. msgstr "Forro"
  2868. msgctxt "@action:button"
  2869. msgid "Skip"
  2870. msgstr "Omitir"
  2871. msgctxt "@button"
  2872. msgid "Skip"
  2873. msgstr "Omitir"
  2874. msgctxt "@tooltip"
  2875. msgid "Skirt"
  2876. msgstr "Falda"
  2877. msgctxt "@button"
  2878. msgid "Slice"
  2879. msgstr "Segmentación"
  2880. msgctxt "@option:check"
  2881. msgid "Slice automatically"
  2882. msgstr "Segmentar automáticamente"
  2883. msgctxt "@info:tooltip"
  2884. msgid "Slice automatically when changing settings."
  2885. msgstr "Segmentar automáticamente al cambiar los ajustes."
  2886. msgctxt "@message:title"
  2887. msgid "Slicing failed"
  2888. msgstr "Error en el corte"
  2889. msgctxt "@label:PrintjobStatus"
  2890. msgid "Slicing..."
  2891. msgstr "Segmentando..."
  2892. msgctxt "@action:label"
  2893. msgid "Smoothing"
  2894. msgstr "Suavizado"
  2895. msgctxt "@label"
  2896. msgid "Solid"
  2897. msgstr "Sólido"
  2898. msgctxt "@item:inmenu"
  2899. msgid "Solid view"
  2900. msgstr "Vista de sólidos"
  2901. msgctxt "@label"
  2902. msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible."
  2903. msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados."
  2904. "Haga clic para mostrar estos ajustes."
  2905. msgctxt "@info:status"
  2906. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  2907. msgstr "Algunos de los paquetes utilizados en el archivo del proyecto no están instalados actualmente en Cura, esto podría producir resultados de impresión no deseados. Recomendamos encarecidamente instalar todos los paquetes requeridos desde el Marketplace."
  2908. msgctxt "@info:title"
  2909. msgid "Some required packages are not installed"
  2910. msgstr "Algunos paquetes necesarios no están instalados"
  2911. msgctxt "@info %1 is the name of a profile"
  2912. msgid "Some setting-values defined in <b>%1</b> were overridden."
  2913. msgstr "Algunos de los valores de configuración definidos en <b>%1</b> se han anulado."
  2914. msgctxt "@tooltip"
  2915. msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager."
  2916. msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil."
  2917. "Haga clic para abrir el administrador de perfiles."
  2918. msgctxt "@action:label"
  2919. msgid "Some settings from current profile were overwritten."
  2920. msgstr "Algunas configuraciones del perfil actual se han sobrescrito."
  2921. msgctxt "@message"
  2922. msgid "Something unexpected happened when trying to log in, please try again."
  2923. msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo."
  2924. msgctxt "@title:header"
  2925. msgid "Something went wrong when sending the materials to the printers."
  2926. msgstr "Hubo un error al enviar los materiales a las impresoras."
  2927. msgctxt "@label"
  2928. msgid "Something went wrong..."
  2929. msgstr "Se ha producido un error..."
  2930. msgctxt "@label:listbox"
  2931. msgid "Speed"
  2932. msgstr "Velocidad"
  2933. msgctxt "@action:inmenu"
  2934. msgid "Sponsor Cura"
  2935. msgstr "Patrocinar Cura"
  2936. msgctxt "@label:button"
  2937. msgid "Sponsor Cura"
  2938. msgstr "Patrocinar Cura"
  2939. msgctxt "@option:radio"
  2940. msgid "Stable and Beta releases"
  2941. msgstr "Versiones estables y beta"
  2942. msgctxt "@option:radio"
  2943. msgid "Stable releases only"
  2944. msgstr "Solo versiones estables"
  2945. msgctxt "@item:inlistbox"
  2946. msgid "Stanford Triangle Format"
  2947. msgstr "Stanford Triangle Format"
  2948. msgctxt "@button"
  2949. msgid "Start"
  2950. msgstr "Iniciar"
  2951. msgctxt "@action:button"
  2952. msgid "Start Build Plate Leveling"
  2953. msgstr "Iniciar nivelación de la placa de impresión"
  2954. msgctxt "@title:label"
  2955. msgid "Start G-code"
  2956. msgstr "Iniciar GCode"
  2957. msgctxt "@label"
  2958. msgid "Start the slicing process"
  2959. msgstr "Iniciar el proceso de segmentación"
  2960. msgctxt "@label"
  2961. msgid "Starts"
  2962. msgstr "Inicios"
  2963. msgctxt "@text"
  2964. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  2965. msgstr "Optimice su flujo de trabajo y personalice su experiencia de UltiMaker Cura con complementos proporcionados por nuestra increíble comunidad de usuarios."
  2966. msgctxt "@label"
  2967. msgid "Strength"
  2968. msgstr "Resistencia"
  2969. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2970. msgid "Successfully exported material to <filename>%1</filename>"
  2971. msgstr "El material se ha exportado correctamente a <filename>%1</filename>"
  2972. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2973. msgid "Successfully imported material <filename>%1</filename>"
  2974. msgstr "El material se ha importado correctamente en <filename>%1</filename>"
  2975. msgctxt "@info:status"
  2976. msgid "Successfully imported profile {0}."
  2977. msgstr "Perfil {0} importado correctamente."
  2978. msgctxt "@action:label"
  2979. msgid "Suggested Material settings"
  2980. msgstr "Ajustes de material sugeridos"
  2981. msgctxt "@action:label"
  2982. msgid "Suggested Profile settings"
  2983. msgstr "Ajustes de perfil sugeridos"
  2984. msgctxt "@action:title"
  2985. msgid "Summary - Cura Project"
  2986. msgstr "Resumen: proyecto de Cura"
  2987. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2988. msgid "Summary - Open Universal Cura Project (UCP)"
  2989. msgstr "Resumen: Abrir proyecto Universal Cura (UCP)"
  2990. msgctxt "@action:title Don't translate 'Universal Cura Project'"
  2991. msgid "Summary - Universal Cura Project"
  2992. msgstr "Resumen: Proyecto Universal Cura"
  2993. msgctxt "@label"
  2994. msgid "Support"
  2995. msgstr "Soporte"
  2996. msgctxt "@tooltip"
  2997. msgid "Support"
  2998. msgstr "Soporte"
  2999. msgctxt "@label"
  3000. msgid "Support Blocker"
  3001. msgstr "Bloqueador de soporte"
  3002. msgctxt "@tooltip"
  3003. msgid "Support Infill"
  3004. msgstr "Relleno de soporte"
  3005. msgctxt "@tooltip"
  3006. msgid "Support Interface"
  3007. msgstr "Interfaz de soporte"
  3008. msgctxt "@action:label"
  3009. msgid "Support Type"
  3010. msgstr "Tipo de soporte"
  3011. msgctxt "@label Description for application dependency"
  3012. msgid "Support library for faster math"
  3013. msgstr "Biblioteca de apoyo para cálculos más rápidos"
  3014. msgctxt "@label Description for application component"
  3015. msgid "Support library for file metadata and streaming"
  3016. msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos"
  3017. msgctxt "@label Description for application component"
  3018. msgid "Support library for handling 3MF files"
  3019. msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
  3020. msgctxt "@label Description for application dependency"
  3021. msgid "Support library for handling STL files"
  3022. msgstr "Biblioteca de apoyo para gestionar archivos STL"
  3023. msgctxt "@label Description for application dependency"
  3024. msgid "Support library for handling triangular meshes"
  3025. msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares"
  3026. msgctxt "@label Description for application dependency"
  3027. msgid "Support library for scientific computing"
  3028. msgstr "Biblioteca de apoyo para cálculos científicos"
  3029. msgctxt "@label Description for application dependency"
  3030. msgid "Support library for system keyring access"
  3031. msgstr "Biblioteca de soporte para el acceso al llavero del sistema"
  3032. msgctxt "@action:button"
  3033. msgid "Sync"
  3034. msgstr "Sincronizar"
  3035. msgctxt "@button"
  3036. msgid "Sync"
  3037. msgstr "Sincronizar"
  3038. msgctxt "@title:header"
  3039. msgid "Sync material profiles via USB"
  3040. msgstr "Sincronización de perfiles de material a través USB"
  3041. msgctxt "@action:button"
  3042. msgid "Sync materials"
  3043. msgstr "Sincronizar materiales"
  3044. msgctxt "@button"
  3045. msgid "Sync materials with USB"
  3046. msgstr "Sincronización de materiales con USB"
  3047. msgctxt "@title:header"
  3048. msgid "Sync materials with printers"
  3049. msgstr "Sincronizar materiales con impresoras"
  3050. msgctxt "@title:window"
  3051. msgid "Sync materials with printers"
  3052. msgstr "Sincronizar materiales con impresoras"
  3053. msgctxt "@action:button"
  3054. msgid "Sync with Printers"
  3055. msgstr "Sincronizar con las impresoras"
  3056. msgctxt "@button"
  3057. msgid "Syncing"
  3058. msgstr "Sincronizando"
  3059. msgctxt "@info:generic"
  3060. msgid "Syncing..."
  3061. msgstr "Sincronizando..."
  3062. msgctxt "@title:groupbox"
  3063. msgid "System information"
  3064. msgstr "Información del sistema"
  3065. msgctxt "@button"
  3066. msgid "Technical datasheet"
  3067. msgstr "Ficha técnica"
  3068. msgctxt "@info:tooltip"
  3069. msgid "The amount of smoothing to apply to the image."
  3070. msgstr "La cantidad de suavizado que se aplica a la imagen."
  3071. msgctxt "@text"
  3072. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3073. msgstr "El perfil de recocido requiere un tratamiento posterior en un horno después de que la impresión haya terminado. Este perfil mantiene la precisión dimensional de la pieza impresa tras el recocido y mejora la solidez, rigidez y resistencia térmica."
  3074. msgctxt "@label"
  3075. msgid "The assigned printer, %1, requires the following configuration change:"
  3076. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3077. msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:"
  3078. msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:"
  3079. msgctxt "@error:file_size"
  3080. msgid "The backup exceeds the maximum file size."
  3081. msgstr "La copia de seguridad excede el tamaño máximo de archivo."
  3082. msgctxt "@text"
  3083. msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy."
  3084. msgstr "El perfil equilibrado está diseñado para lograr un equilibrio entre la productividad, la calidad de la superficie, las propiedades mecánicas y la precisión dimensional."
  3085. msgctxt "@info:tooltip"
  3086. msgid "The base height from the build plate in millimeters."
  3087. msgstr "La altura de la base desde la placa de impresión en milímetros."
  3088. msgctxt "@info:status"
  3089. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  3090. msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos."
  3091. msgctxt "@status"
  3092. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3093. msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet."
  3094. msgctxt "@status"
  3095. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3096. msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube."
  3097. msgctxt "@status"
  3098. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3099. msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet."
  3100. msgctxt "@tooltip"
  3101. msgid "The colour of the material in this extruder."
  3102. msgstr "Color del material en este extrusor."
  3103. msgctxt "@tooltip"
  3104. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3105. msgstr "La configuración de este extrusor no está permitida y evita el corte."
  3106. msgctxt "@label"
  3107. msgid "The configurations are not available because the printer is disconnected."
  3108. msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada."
  3109. msgctxt "@tooltip"
  3110. msgid "The current temperature of the heated bed."
  3111. msgstr "Temperatura actual de la plataforma caliente."
  3112. msgctxt "@tooltip"
  3113. msgid "The current temperature of this hotend."
  3114. msgstr "Temperatura actual de este extremo caliente."
  3115. msgctxt "@info:tooltip"
  3116. msgid "The depth in millimeters on the build plate"
  3117. msgstr "La profundidad en milímetros en la placa de impresión"
  3118. msgctxt "@text"
  3119. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3120. msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable."
  3121. msgctxt "@text"
  3122. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3123. msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas."
  3124. msgctxt "@label"
  3125. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3126. msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple."
  3127. msgctxt "@label Don't translate the XML tag <filename>!"
  3128. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3129. msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  3130. msgctxt "@label"
  3131. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3132. msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
  3133. msgctxt "@info:backup_failed"
  3134. msgid "The following error occurred while trying to restore a Cura backup:"
  3135. msgstr "Se ha producido el siguiente error al intentar restaurar una copia de seguridad de Cura:"
  3136. msgctxt "@label"
  3137. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3138. msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:"
  3139. msgctxt "@label"
  3140. msgid "The following packages will be added:"
  3141. msgstr "Se añadirán los siguientes paquetes:"
  3142. msgctxt "@label"
  3143. msgid "The following printers in your account have been added in Cura:"
  3144. msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:"
  3145. msgctxt "@title:header"
  3146. msgid "The following printers will receive the new material profiles:"
  3147. msgstr "Las siguientes impresoras recibirán los nuevos perfiles de material:"
  3148. msgctxt "@info:tooltip"
  3149. msgid "The following script is active:"
  3150. msgid_plural "The following scripts are active:"
  3151. msgstr[0] "La siguiente secuencia de comandos está activa:"
  3152. msgstr[1] "Las siguientes secuencias de comandos están activas:"
  3153. msgctxt "@label"
  3154. msgid "The following settings define the strength of your part."
  3155. msgstr "Los siguientes ajustes definen la resistencia de la pieza."
  3156. msgctxt "@info:status"
  3157. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3158. msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura."
  3159. msgctxt "@tooltip"
  3160. msgid "The material in this extruder."
  3161. msgstr "Material en este extrusor."
  3162. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3163. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3164. msgstr "No se ha podido encontrar el paquete de materiales asociado con el proyecto de Cura en Ultimaker Marketplace. Utilice la definicin parcial del perfil del material que aparece en el archivo del proyecto de Cura bajo su propia responsabilidad."
  3165. msgctxt "@info:tooltip"
  3166. msgid "The maximum distance of each pixel from \"Base.\""
  3167. msgstr "La distancia máxima de cada píxel desde la \"Base\"."
  3168. msgctxt "@label (%1 is a number)"
  3169. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3170. msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
  3171. msgctxt "@tooltip"
  3172. msgid "The nozzle inserted in this extruder."
  3173. msgstr "Tobera insertada en este extrusor."
  3174. msgctxt "@label"
  3175. msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3176. msgstr "Patrón del material de relleno de la impresión:"
  3177. "Para impresiones rpidas de modelos no funcionales, elija lnea, zigzag o relleno ligero."
  3178. "Para una pieza funcional que no est sujeta a mucha tensin, recomendamos rejilla, tringulo o trihexgono."
  3179. "Para las impresiones 3D funcionales que requieran una alta resistencia en varias direcciones, utilice cbico, subdivisin cbica, cbico bitruncado, octeto o giroide."
  3180. msgctxt "@info:tooltip"
  3181. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  3182. msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen."
  3183. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3184. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3185. msgstr "No se pudo encontrar el complemento asociado con el proyecto Cura en el Marketplace de Ultimaker. Como el complemento puede ser necesario para cortar el proyecto, es posible que no se pueda cortar correctamente el archivo."
  3186. msgctxt "@info:title"
  3187. msgid "The print job was successfully submitted"
  3188. msgstr "El trabajo de impresión se ha enviado correctamente"
  3189. msgctxt "@label"
  3190. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3191. msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido."
  3192. msgctxt "@label"
  3193. msgid "The printer at this address has not responded yet."
  3194. msgstr "La impresora todavía no ha respondido en esta dirección."
  3195. msgctxt "@label"
  3196. msgid "The printer at this address has not yet responded."
  3197. msgstr "La impresora todavía no ha respondido en esta dirección."
  3198. msgctxt "@info:status"
  3199. msgid "The printer is not connected."
  3200. msgstr "La impresora no está conectada."
  3201. msgctxt "@label"
  3202. msgid "The printer(s) below cannot be connected because they are part of a group"
  3203. msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo"
  3204. msgctxt "@message"
  3205. msgid "The provided state is not correct."
  3206. msgstr "El estado indicado no es correcto."
  3207. msgctxt "@text:window"
  3208. msgid "The release notes could not be opened."
  3209. msgstr "No se han podido abrir las notas de la versión."
  3210. msgctxt "@text:error"
  3211. msgid "The response from Digital Factory appears to be corrupted."
  3212. msgstr "La respuesta de Digital Factory parece estar dañada."
  3213. msgctxt "@text:error"
  3214. msgid "The response from Digital Factory is missing important information."
  3215. msgstr "A la respuesta de Digital Factory le falta información importante."
  3216. msgctxt "@tooltip"
  3217. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3218. msgstr "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará."
  3219. msgctxt "@tooltip"
  3220. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3221. msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará."
  3222. msgctxt "@tooltip of temperature input"
  3223. msgid "The temperature to pre-heat the bed to."
  3224. msgstr "Temperatura a la que se va a precalentar la plataforma."
  3225. msgctxt "@tooltip of temperature input"
  3226. msgid "The temperature to pre-heat the hotend to."
  3227. msgstr "Temperatura a la que se va a precalentar el extremo caliente."
  3228. msgctxt "@text"
  3229. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3230. msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies."
  3231. msgctxt "@info:tooltip"
  3232. msgid "The width in millimeters on the build plate"
  3233. msgstr "La anchura en milímetros en la placa de impresión"
  3234. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3235. msgid "Theme*:"
  3236. msgstr "Tema*:"
  3237. msgctxt "@info:status"
  3238. msgid "There are no file formats available to write with!"
  3239. msgstr "¡No hay formatos de archivo disponibles con los que escribir!"
  3240. msgctxt "@label"
  3241. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3242. msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno."
  3243. msgctxt "@tooltip"
  3244. msgid "There are no profiles matching the configuration of this extruder."
  3245. msgstr "No hay perfiles que coincidan con la configuración de este extrusor."
  3246. msgctxt "@info:status"
  3247. msgid "There is no active printer yet."
  3248. msgstr "Todavía no hay ninguna impresora activa."
  3249. msgctxt "@label"
  3250. msgid "There is no printer found over your network."
  3251. msgstr "No se ha encontrado ninguna impresora en su red."
  3252. msgctxt "@error"
  3253. msgid "There is no workspace yet to write. Please add a printer first."
  3254. msgstr "Aún no hay espacio de trabajo en el que escribir. Añada una impresora primero."
  3255. msgctxt "@info:backup_status"
  3256. msgid "There was an error trying to restore your backup."
  3257. msgstr "Se ha producido un error al intentar restaurar su copia de seguridad."
  3258. msgctxt "@info:backup_status"
  3259. msgid "There was an error while creating your backup."
  3260. msgstr "Se ha producido un error al crear la copia de seguridad."
  3261. msgctxt "@info:backup_status"
  3262. msgid "There was an error while uploading your backup."
  3263. msgstr "Se ha producido un error al cargar su copia de seguridad."
  3264. msgctxt "@label"
  3265. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3266. msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto."
  3267. msgctxt "@text:window"
  3268. msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?"
  3269. msgstr "Este es un archivo de proyecto Cura Universal. ¿Desea abrirlo como proyecto Cura o proyecto Universal Cura o importar los modelos desde él?"
  3270. msgctxt "@text:window"
  3271. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3272. msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
  3273. msgctxt "@label"
  3274. msgid "This material is linked to %1 and shares some of its properties."
  3275. msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
  3276. msgctxt "@label"
  3277. msgid "This package will be installed after restarting."
  3278. msgstr "Este paquete se instalará después de reiniciar."
  3279. msgctxt "@label"
  3280. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3281. msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo."
  3282. msgctxt "info:status"
  3283. msgid "This printer is not linked to the Digital Factory:"
  3284. msgid_plural "These printers are not linked to the Digital Factory:"
  3285. msgstr[0] "Esta impresora no está vinculada a Digital Factory:"
  3286. msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:"
  3287. msgctxt "@status"
  3288. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3289. msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión."
  3290. msgctxt "@label"
  3291. msgid "This printer is not set up to host a group of printers."
  3292. msgstr "Esta impresora no está configurada para alojar un grupo de impresoras."
  3293. msgctxt "@label"
  3294. msgid "This printer is the host for a group of %1 printers."
  3295. msgstr "Esta impresora aloja un grupo de %1 impresoras."
  3296. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3297. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3298. msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  3299. msgctxt "@action:label"
  3300. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3301. msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación."
  3302. msgctxt "@label"
  3303. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3304. msgstr "Este proyecto contiene materiales o complementos que actualmente no están instalados en Cura.<br/>Instale los paquetes que faltan y vuelva a abrir el proyecto."
  3305. msgctxt "@label"
  3306. msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile."
  3307. msgstr "Este ajuste tiene un valor distinto del perfil."
  3308. "Haga clic para restaurar el valor del perfil."
  3309. msgctxt "@item:tooltip"
  3310. msgid "This setting has been hidden by the active machine and will not be visible."
  3311. msgstr "La máquina activa ha ocultado este ajuste y no se verá."
  3312. msgctxt "@item:tooltip %1 is list of setting names"
  3313. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3314. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3315. msgstr[0] "El valor de %1 ha ocultado este ajuste. Cambie el valor para que se muestre el ajuste."
  3316. msgstr[1] "Los valores de %1 han ocultado este ajuste. Cambie los valores para que muestre el ajuste."
  3317. msgctxt "@label"
  3318. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3319. msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  3320. msgctxt "@label"
  3321. msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value."
  3322. msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido."
  3323. "Haga clic para restaurar el valor calculado."
  3324. msgctxt "@label"
  3325. msgid "This setting is not used because all the settings that it influences are overridden."
  3326. msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos."
  3327. msgctxt "@label"
  3328. msgid "This setting is resolved from conflicting extruder-specific values:"
  3329. msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:"
  3330. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3331. msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk."
  3332. msgstr "Es posible que este ajuste no funcione correctamente al exportar a un proyecto Universal Cura, se ruega a los usuarios que lo añadan bajo su propia responsabilidad."
  3333. msgctxt "@tooltip Don't translate 'Universal Cura Project'"
  3334. msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk."
  3335. msgstr "Es posible que este ajuste no funcione correctamente al exportar a un proyecto Universal Cura. Se ruega a los usuarios que lo añadan bajo su propia responsabilidad."
  3336. msgctxt "@info:warning"
  3337. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3338. msgstr "Esta versión no está destinada al uso en producción. Si tiene algún problema, notifíquelo en nuestra página de GitHub, mencionando la versión completa {self.getVersion()}"
  3339. msgctxt "@label"
  3340. msgid "Time estimation"
  3341. msgstr "Estimación de tiempos"
  3342. msgctxt "@message"
  3343. msgid "Timeout when authenticating with the account server."
  3344. msgstr "Se agotó el tiempo de autenticación con el servidor de la cuenta."
  3345. msgctxt "@text"
  3346. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3347. msgstr "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura."
  3348. msgctxt "info:status"
  3349. msgid "To establish a connection, please visit the {website_link}"
  3350. msgstr "Para establecer una conexión, visite {website_link}"
  3351. msgctxt "@label"
  3352. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  3353. msgstr "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar."
  3354. msgctxt "@label"
  3355. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  3356. msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora."
  3357. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3358. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3359. msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}"
  3360. msgctxt "@action:inmenu"
  3361. msgid "Toggle Full Screen"
  3362. msgstr "Alternar pantalla completa"
  3363. msgctxt "@label"
  3364. msgid "Top / Bottom"
  3365. msgstr "Superior o inferior"
  3366. msgctxt "@action:inmenu menubar:view"
  3367. msgid "Top View"
  3368. msgstr "Vista superior"
  3369. msgctxt "@info:tooltip"
  3370. msgid "Top View"
  3371. msgstr "Vista superior"
  3372. msgctxt "@label"
  3373. msgid "Total print time"
  3374. msgstr "Tiempo de impresión total"
  3375. msgctxt "@action:tooltip"
  3376. msgid "Track the print in Ultimaker Digital Factory"
  3377. msgstr "Haga un seguimiento de la impresión en Ultimaker Digital Factory"
  3378. msgctxt "@item:inlistbox"
  3379. msgid "Translucency"
  3380. msgstr "Translucidez"
  3381. msgctxt "@tooltip"
  3382. msgid "Travel"
  3383. msgstr "Desplazamiento"
  3384. msgctxt "@label"
  3385. msgid "Travels"
  3386. msgstr "Desplazamientos"
  3387. msgctxt "@info:backup_failed"
  3388. msgid "Tried to restore a Cura backup that is higher than the current version."
  3389. msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual."
  3390. msgctxt "@info:backup_failed"
  3391. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3392. msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
  3393. msgctxt "@button"
  3394. msgid "Troubleshooting"
  3395. msgstr "Solución de problemas"
  3396. msgctxt "@label"
  3397. msgid "Troubleshooting"
  3398. msgstr "Solución de problemas"
  3399. msgctxt "@button"
  3400. msgid "Try again"
  3401. msgstr "Inténtelo de nuevo"
  3402. msgctxt "@action:label"
  3403. msgid "Type"
  3404. msgstr "Tipo"
  3405. msgctxt "@label"
  3406. msgid "Type"
  3407. msgstr "Tipo"
  3408. msgctxt "@item:inmenu"
  3409. msgid "USB printing"
  3410. msgstr "Impresión USB"
  3411. msgctxt "@button"
  3412. msgid "UltiMaker Account"
  3413. msgstr "Cuenta de UltiMaker"
  3414. msgctxt "@info"
  3415. msgid "UltiMaker Certified Material"
  3416. msgstr "Material certificado por UltiMaker"
  3417. msgctxt "@text:window"
  3418. msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  3419. msgstr "UltiMaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:"
  3420. msgctxt "@item:inlistbox"
  3421. msgid "UltiMaker Format Package"
  3422. msgstr "Paquete de formato UltiMaker"
  3423. msgctxt "@info"
  3424. msgid "UltiMaker Verified Package"
  3425. msgstr "Paquete verificado por UltiMaker"
  3426. msgctxt "@info"
  3427. msgid "UltiMaker Verified Plug-in"
  3428. msgstr "Complemento verificado por UltiMaker"
  3429. msgctxt "@button"
  3430. msgid "UltiMaker printer"
  3431. msgstr "Impresoras UltiMaker"
  3432. msgctxt "@label:button"
  3433. msgid "UltiMaker support"
  3434. msgstr "Soporte técnico de UltiMaker"
  3435. msgctxt "info:name"
  3436. msgid "Ultimaker Digital Factory"
  3437. msgstr "Ultimaker Digital Factory"
  3438. msgctxt "@info:status"
  3439. msgid "Unable to add the profile."
  3440. msgstr "No se puede añadir el perfil."
  3441. msgctxt "@info:status"
  3442. msgid "Unable to find a location within the build volume for all objects"
  3443. msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos"
  3444. msgctxt "@info:plugin_failed"
  3445. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3446. msgstr "No se puede encontrar el ejecutable del servidor EnginePlugin local para: {self._plugin_id}"
  3447. msgctxt "@info:plugin_failed"
  3448. msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied."
  3449. msgstr "No se puede detener el EnginePlugin en ejecución: {self._plugin_id}"
  3450. "El acceso se ha denegado."
  3451. msgctxt "@info"
  3452. msgid "Unable to reach the UltiMaker account server."
  3453. msgstr "No se puede acceder al servidor de cuentas de UltiMaker."
  3454. msgctxt "@text"
  3455. msgid "Unable to read example data file."
  3456. msgstr "No se puede leer el archivo de datos de ejemplo."
  3457. msgctxt "@info:title"
  3458. msgid "Unable to slice"
  3459. msgstr "No se puede segmentar"
  3460. msgctxt "@label:PrintjobStatus"
  3461. msgid "Unable to slice"
  3462. msgstr "No se puede segmentar"
  3463. msgctxt "@info:status"
  3464. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3465. msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
  3466. msgctxt "@info:status"
  3467. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3468. msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado."
  3469. msgctxt "@info:status"
  3470. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3471. msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
  3472. msgctxt "@info:status"
  3473. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3474. msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
  3475. msgctxt "@info:status"
  3476. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3477. msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
  3478. msgctxt "@info"
  3479. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3480. msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión."
  3481. msgctxt "@info:error"
  3482. msgid "Unable to write to file: {0}"
  3483. msgstr "No se puede escribir en el archivo: {0}"
  3484. msgctxt "@label:status"
  3485. msgid "Unavailable"
  3486. msgstr "No disponible"
  3487. msgctxt "@label"
  3488. msgid "Unavailable printer"
  3489. msgstr "Impresora no disponible"
  3490. msgctxt "@action:inmenu menubar:edit"
  3491. msgid "Ungroup Models"
  3492. msgstr "Desagrupar modelos"
  3493. msgctxt "@button"
  3494. msgid "Uninstall"
  3495. msgstr "Desinstalar"
  3496. msgctxt "@title:column Unit of measurement"
  3497. msgid "Unit"
  3498. msgstr "Unidad"
  3499. msgctxt "@item:inlistbox"
  3500. msgid "Universal Cura Project"
  3501. msgstr "Proyecto Universal Cura"
  3502. msgctxt "@action:description Don't translate 'Universal Cura Project'"
  3503. msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing."
  3504. msgstr "Los archivos del proyecto Universal Cura pueden imprimirse en diferentes impresoras 3D conservando los datos de posición y los ajustes seleccionados. Al exportarlos, se incluirán todos los modelos presentes en la placa de impresión junto con su posición, orientación y escala actuales. También puede seleccionar qué ajustes por extrusor o por modelo deben incluirse para garantizar una impresión adecuada."
  3505. msgctxt "@label Description for development tool"
  3506. msgid "Universal build system configuration"
  3507. msgstr "Configuración del sistema de construcción universal"
  3508. msgctxt "@label"
  3509. msgid "Unknown"
  3510. msgstr "Desconocido"
  3511. msgctxt "@label unknown version of Cura"
  3512. msgid "Unknown"
  3513. msgstr "Desconocido"
  3514. msgctxt "@label:property"
  3515. msgid "Unknown Author"
  3516. msgstr "Autor desconocido"
  3517. msgctxt "@label:property"
  3518. msgid "Unknown Package"
  3519. msgstr "Paquete desconocido"
  3520. msgctxt "@error:send"
  3521. msgid "Unknown error code when uploading print job: {0}"
  3522. msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}"
  3523. msgctxt "@text"
  3524. msgid "Unknown error."
  3525. msgstr "Error desconocido."
  3526. msgctxt "@label"
  3527. msgid "Unlink Material"
  3528. msgstr "Desvincular material"
  3529. msgctxt "@label:status"
  3530. msgid "Unreachable"
  3531. msgstr "No se puede conectar"
  3532. msgctxt "@label"
  3533. msgid "Untitled"
  3534. msgstr "Sin título"
  3535. msgctxt "@text Print job name"
  3536. msgid "Untitled"
  3537. msgstr "Sin título"
  3538. msgctxt "@button"
  3539. msgid "Update"
  3540. msgstr "Actualizar"
  3541. msgctxt "@action"
  3542. msgid "Update Firmware"
  3543. msgstr "Actualizar firmware"
  3544. msgctxt "@title"
  3545. msgid "Update Firmware"
  3546. msgstr "Actualizar firmware"
  3547. msgctxt "@action:ComboBox Update/override existing profile"
  3548. msgid "Update existing"
  3549. msgstr "Actualizar existente"
  3550. msgctxt "@action:tooltip"
  3551. msgid "Update profile with current settings/overrides"
  3552. msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
  3553. msgctxt "@action:button"
  3554. msgid "Update profile."
  3555. msgstr "Actualizar perfil."
  3556. msgctxt "@info:title"
  3557. msgid "Update your printer"
  3558. msgstr "Actualice su impresora"
  3559. msgctxt "@label"
  3560. msgid "Updates"
  3561. msgstr "Actualizaciones"
  3562. msgctxt "@label"
  3563. msgid "Updating firmware."
  3564. msgstr "Actualización del firmware."
  3565. msgctxt "@button"
  3566. msgid "Updating..."
  3567. msgstr "Actualizando..."
  3568. msgctxt "@action:button"
  3569. msgid "Upload custom Firmware"
  3570. msgstr "Cargar firmware personalizado"
  3571. msgctxt "@info:status"
  3572. msgid "Uploading print job to printer."
  3573. msgstr "Cargando el trabajo de impresión a la impresora."
  3574. msgctxt "@info:backup_status"
  3575. msgid "Uploading your backup..."
  3576. msgstr "Cargando su copia de seguridad..."
  3577. msgctxt "@option:check"
  3578. msgid "Use a single instance of Cura"
  3579. msgstr "Utilizar una sola instancia de Cura"
  3580. msgctxt "@label"
  3581. msgid "Use glue for better adhesion with this material combination."
  3582. msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión."
  3583. msgctxt "@label"
  3584. msgid "User Agreement"
  3585. msgstr "Acuerdo de usuario"
  3586. msgctxt "@label Description for application dependency"
  3587. msgid "Utility functions, including an image loader"
  3588. msgstr "Funciones de utilidades, incluido un cargador de imágenes"
  3589. msgctxt "@label Description for application dependency"
  3590. msgid "Utility library, including Voronoi generation"
  3591. msgstr "Biblioteca de utilidades, incluida la generación de Voronoi"
  3592. msgctxt "@title:column"
  3593. msgid "Value"
  3594. msgstr "Valor"
  3595. msgctxt "@button"
  3596. msgid "View printers in Digital Factory"
  3597. msgstr "Ver impresoras en Digital Factory"
  3598. msgctxt "@label"
  3599. msgid "View type"
  3600. msgstr "Ver tipo"
  3601. msgctxt "@label link to technical assistance"
  3602. msgid "View user manuals online"
  3603. msgstr "Ver manuales de usuario en línea"
  3604. msgctxt "@label"
  3605. msgid "Viewport behavior"
  3606. msgstr "Comportamiento de la ventanilla"
  3607. msgctxt "@action:inmenu"
  3608. msgid "Visible Settings"
  3609. msgstr "Ajustes visibles"
  3610. msgctxt "@button"
  3611. msgid "Visit plug-in website"
  3612. msgstr "Visite el sitio web de complementos"
  3613. msgctxt "@tooltip:button"
  3614. msgid "Visit the UltiMaker website."
  3615. msgstr "Visite el sitio web de UltiMaker."
  3616. msgctxt "@label"
  3617. msgid "Visual"
  3618. msgstr "Visual"
  3619. msgctxt "@label"
  3620. msgid "Waiting for"
  3621. msgstr "Esperando"
  3622. msgctxt "@label"
  3623. msgid "Waiting for Cloud response"
  3624. msgstr "Esperando la respuesta de la nube"
  3625. msgctxt "@button"
  3626. msgid "Waiting for new printers"
  3627. msgstr "A la espera de nuevas impresoras"
  3628. msgctxt "@button"
  3629. msgid "Want more?"
  3630. msgstr "¿Desea obtener más información?"
  3631. msgctxt "@info:title"
  3632. msgid "Warning"
  3633. msgstr "Advertencia"
  3634. msgctxt "@info:status"
  3635. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  3636. msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera que pueda utilizar este tipo de calidad."
  3637. msgctxt "@text:window"
  3638. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  3639. msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno."
  3640. msgctxt "@text:window"
  3641. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3642. msgstr "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?"
  3643. msgctxt "@info"
  3644. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  3645. msgstr "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en UltiMaker Cura. Haga clic en \"Administrar impresora\" para ir a Ultimaker Digital Factory y ver esta cámara web."
  3646. msgctxt "@button"
  3647. msgid "Website"
  3648. msgstr "Sitio web"
  3649. msgctxt "@label"
  3650. msgid "What printer would you like to setup?"
  3651. msgstr "¿Qué impresora le gustaría configurar?"
  3652. msgctxt "@info:tooltip"
  3653. msgid "What type of camera navigation should be used?"
  3654. msgstr "¿Qué tipo de cámara de navegación debe utilizarse?"
  3655. msgctxt "@info:tooltip"
  3656. msgid "What type of camera rendering should be used?"
  3657. msgstr "¿Qué tipo de renderizado de cámara debería usarse?"
  3658. msgctxt "@action:inmenu menubar:help"
  3659. msgid "What's New"
  3660. msgstr "Novedades"
  3661. msgctxt "@label"
  3662. msgid "What's New"
  3663. msgstr "Novedades"
  3664. msgctxt "@title:window"
  3665. msgid "What's New"
  3666. msgstr "Novedades"
  3667. msgctxt "@info:tooltip"
  3668. msgid "When checking for updates, check for both stable and for beta releases."
  3669. msgstr "Cuando busque actualizaciones, compruebe si hay versiones estables y versiones beta."
  3670. msgctxt "@info:tooltip"
  3671. msgid "When checking for updates, only check for stable releases."
  3672. msgstr "Cuando busque actualizaciones, compruebe solo si hay versiones estables."
  3673. msgctxt "@info:tooltip"
  3674. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  3675. msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer."
  3676. msgctxt "@button"
  3677. msgid "Why do I need to sync material profiles?"
  3678. msgstr "¿Por qué tengo que sincronizar los perfiles de materiales?"
  3679. msgctxt "@action:label"
  3680. msgid "Width (mm)"
  3681. msgstr "Anchura (mm)"
  3682. msgctxt "@label"
  3683. msgid "X (Width)"
  3684. msgstr "X (anchura)"
  3685. msgctxt "@label"
  3686. msgid "X max"
  3687. msgstr "X máx"
  3688. msgctxt "@label"
  3689. msgid "X min"
  3690. msgstr "X mín"
  3691. msgctxt "@item:inlistbox"
  3692. msgid "X-Ray view"
  3693. msgstr "Vista de rayos X"
  3694. msgctxt "@label"
  3695. msgid "X/Y"
  3696. msgstr "X/Y"
  3697. msgctxt "@item:inlistbox"
  3698. msgid "X3D File"
  3699. msgstr "Archivo X3D"
  3700. msgctxt "@label"
  3701. msgid "Y (Depth)"
  3702. msgstr "Y (profundidad)"
  3703. msgctxt "@label"
  3704. msgid "Y max"
  3705. msgstr "Y máx"
  3706. msgctxt "@label"
  3707. msgid "Y min"
  3708. msgstr "Y mín"
  3709. msgctxt "@info"
  3710. msgid "Yes"
  3711. msgstr "Sí"
  3712. msgctxt "@label"
  3713. msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3714. msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?"
  3715. msgctxt "@label"
  3716. msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3717. msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?"
  3718. msgstr[0] "Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?"
  3719. msgstr[1] "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?"
  3720. msgctxt "@info:status"
  3721. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  3722. msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente."
  3723. msgctxt "@info:status"
  3724. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  3725. msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo."
  3726. msgctxt "@empty_state"
  3727. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  3728. msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una."
  3729. msgctxt "@text:window, %1 is a profile name"
  3730. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3731. msgstr "Ha personalizado algunos ajustes del perfil."
  3732. "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?"
  3733. "También puede descartar los cambios para cargar los valores predeterminados de'%1'."
  3734. msgctxt "@label"
  3735. msgid "You need to accept the license to install the package"
  3736. msgstr "Tiene que aceptar la licencia para instalar el paquete"
  3737. msgctxt "@info:generic"
  3738. msgid "You need to quit and restart {} before changes have effect."
  3739. msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto."
  3740. msgctxt "@dialog:info"
  3741. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  3742. msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?"
  3743. msgctxt "@info:status"
  3744. msgid "You will receive a confirmation via email when the print job is approved"
  3745. msgstr "Recibirá una confirmación por correo electrónico cuando se apruebe el trabajo de impresión"
  3746. msgctxt "@info:backup_status"
  3747. msgid "Your backup has finished uploading."
  3748. msgstr "Su copia de seguridad ha terminado de cargarse."
  3749. msgctxt "@action:label"
  3750. msgid "Your current settings match the selected profile."
  3751. msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
  3752. msgctxt "@info"
  3753. msgid "Your new printer will automatically appear in Cura"
  3754. msgstr "Su nueva impresora aparecerá automáticamente en Cura"
  3755. msgctxt "@info:status"
  3756. msgid "Your printer <b>{printer_name}</b> could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  3757. msgstr "Su impresora <b>{printer_name} </b> podría estar conectada a través de la nube."
  3758. " Administre su cola de impresión y supervise las impresiones desde cualquier lugar conectando su impresora a Digital Factory"
  3759. msgctxt "@label"
  3760. msgid "Z"
  3761. msgstr "Z"
  3762. msgctxt "@label"
  3763. msgid "Z (Height)"
  3764. msgstr "Z (altura)"
  3765. msgctxt "@label Description for application dependency"
  3766. msgid "ZeroConf discovery library"
  3767. msgstr "Biblioteca de detección para Zeroconf"
  3768. msgctxt "@action:button"
  3769. msgid "Zoom toward mouse direction"
  3770. msgstr "Hacer zoom en la dirección del ratón"
  3771. msgctxt "@info:tooltip"
  3772. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3773. msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica."
  3774. msgctxt "@text Placeholder for the username if it has been deleted"
  3775. msgid "deleted user"
  3776. msgstr "usuario borrado"
  3777. msgctxt "@item:inlistbox"
  3778. msgid "glTF Binary"
  3779. msgstr "glTF binario"
  3780. msgctxt "@item:inlistbox"
  3781. msgid "glTF Embedded JSON"
  3782. msgstr "glTF incrustado JSON"
  3783. msgctxt "@label"
  3784. msgid "max"
  3785. msgstr "máx"
  3786. msgctxt "@label"
  3787. msgid "min"
  3788. msgstr "mín"
  3789. msgctxt "@label"
  3790. msgid "mm"
  3791. msgstr "mm"
  3792. msgctxt "@label"
  3793. msgid "s"
  3794. msgstr "s"
  3795. msgctxt "@info:status"
  3796. msgid "today"
  3797. msgstr "hoy"
  3798. msgctxt "@info:status"
  3799. msgid "tomorrow"
  3800. msgstr "mañana"
  3801. msgctxt "@label"
  3802. msgid "version: %1"
  3803. msgstr "versión: %1"
  3804. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3805. msgid "{printer_name} will be removed until the next account sync."
  3806. msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta."
  3807. msgctxt "@info:generic"
  3808. msgid "{} plugins failed to download"
  3809. msgstr "Error al descargar los complementos {}"
  3810. msgctxt "description"
  3811. msgid "Manages network connections to UltiMaker networked printers."
  3812. msgstr "Gestiona las conexiones de red con las impresoras en red UltiMaker."
  3813. msgctxt "name"
  3814. msgid "UltiMaker Network Connection"
  3815. msgstr "Conexión en red de UltiMaker"
  3816. msgctxt "description"
  3817. msgid "Provides support for importing profiles from g-code files."
  3818. msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  3819. msgctxt "name"
  3820. msgid "G-code Profile Reader"
  3821. msgstr "Lector de perfiles GCode"
  3822. msgctxt "description"
  3823. msgid "Provides a normal solid mesh view."
  3824. msgstr "Proporciona una vista de malla sólida normal."
  3825. msgctxt "name"
  3826. msgid "Solid View"
  3827. msgstr "Vista de sólidos"
  3828. msgctxt "description"
  3829. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  3830. msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados"
  3831. msgctxt "name"
  3832. msgid "CuraEngineGradualFlow"
  3833. msgstr "Flujo gradual de CuraEngine"
  3834. msgctxt "description"
  3835. msgid "Provides support for reading 3MF files."
  3836. msgstr "Proporciona asistencia para leer archivos 3MF."
  3837. msgctxt "name"
  3838. msgid "3MF Reader"
  3839. msgstr "Lector de 3MF"
  3840. msgctxt "description"
  3841. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3842. msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  3843. msgctxt "name"
  3844. msgid "USB printing"
  3845. msgstr "Impresión USB"
  3846. msgctxt "description"
  3847. msgid "Checks for firmware updates."
  3848. msgstr "Busca actualizaciones de firmware."
  3849. msgctxt "name"
  3850. msgid "Firmware Update Checker"
  3851. msgstr "Buscador de actualizaciones de firmware"
  3852. msgctxt "description"
  3853. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  3854. msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker."
  3855. msgctxt "name"
  3856. msgid "Marketplace"
  3857. msgstr "Marketplace"
  3858. msgctxt "description"
  3859. msgid "Backup and restore your configuration."
  3860. msgstr "Realice una copia de seguridad de su configuración y restáurela."
  3861. msgctxt "name"
  3862. msgid "Cura Backups"
  3863. msgstr "Copias de seguridad de Cura"
  3864. msgctxt "description"
  3865. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3866. msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  3867. msgctxt "name"
  3868. msgid "Machine Settings Action"
  3869. msgstr "Acción Ajustes de la máquina"
  3870. msgctxt "description"
  3871. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3872. msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  3873. msgctxt "name"
  3874. msgid "Version Upgrade 2.5 to 2.6"
  3875. msgstr "Actualización de la versión 2.5 a la 2.6"
  3876. msgctxt "description"
  3877. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3878. msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8."
  3879. msgctxt "name"
  3880. msgid "Version Upgrade 4.7 to 4.8"
  3881. msgstr "Actualización de la versión 4.7 a la 4.8"
  3882. msgctxt "description"
  3883. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3884. msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5."
  3885. msgctxt "name"
  3886. msgid "Version Upgrade 4.4 to 4.5"
  3887. msgstr "Actualización de la versión 4.4 a la 4.5"
  3888. msgctxt "description"
  3889. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3890. msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
  3891. msgctxt "name"
  3892. msgid "Version Upgrade 3.0 to 3.1"
  3893. msgstr "Actualización de la versión 3.0 a la 3.1"
  3894. msgctxt "description"
  3895. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3896. msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12."
  3897. msgctxt "name"
  3898. msgid "Version Upgrade 4.11 to 4.12"
  3899. msgstr "Actualización de la versión 4.11 a 4.12"
  3900. msgctxt "description"
  3901. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3902. msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2."
  3903. msgctxt "name"
  3904. msgid "Version Upgrade 4.1 to 4.2"
  3905. msgstr "Actualización de la versión 4.1 a la 4.2"
  3906. msgctxt "description"
  3907. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3908. msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
  3909. msgctxt "name"
  3910. msgid "Version Upgrade 2.6 to 2.7"
  3911. msgstr "Actualización de la versión 2.6 a la 2.7"
  3912. msgctxt "description"
  3913. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3914. msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2."
  3915. msgctxt "name"
  3916. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3917. msgstr "Actualización de la versión 4.6.0 a la 4.6.2"
  3918. msgctxt "description"
  3919. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3920. msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
  3921. msgctxt "name"
  3922. msgid "Version Upgrade 3.3 to 3.4"
  3923. msgstr "Actualización de la versión 3.3 a la 3.4"
  3924. msgctxt "description"
  3925. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3926. msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9."
  3927. msgctxt "name"
  3928. msgid "Version Upgrade 4.8 to 4.9"
  3929. msgstr "Actualización de la versión 4.8 a la 4.9"
  3930. msgctxt "description"
  3931. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3932. msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6."
  3933. msgctxt "name"
  3934. msgid "Version Upgrade 4.5 to 4.6"
  3935. msgstr "Actualización de la versión 4.5 a la 4.6"
  3936. msgctxt "description"
  3937. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3938. msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3."
  3939. msgctxt "name"
  3940. msgid "Version Upgrade 4.2 to 4.3"
  3941. msgstr "Actualización de la versión 4.2 a la 4.3"
  3942. msgctxt "description"
  3943. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3944. msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
  3945. msgctxt "name"
  3946. msgid "Version Upgrade 3.2 to 3.3"
  3947. msgstr "Actualización de la versión 3.2 a la 3.3"
  3948. msgctxt "description"
  3949. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3950. msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4."
  3951. msgctxt "name"
  3952. msgid "Version Upgrade 4.3 to 4.4"
  3953. msgstr "Actualización de la versión 4.3 a la 4.4"
  3954. msgctxt "description"
  3955. msgid "Upgrades configurations from Cura 5.6 to Cura 5.7."
  3956. msgstr "Actualiza las configuraciones de Cura 5.6 a Cura 5.7."
  3957. msgctxt "name"
  3958. msgid "Version Upgrade 5.6 to 5.7"
  3959. msgstr "Actualización de la versión 5.6 a la 5.7"
  3960. msgctxt "description"
  3961. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3962. msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  3963. msgctxt "name"
  3964. msgid "Version Upgrade 2.1 to 2.2"
  3965. msgstr "Actualización de la versión 2.1 a la 2.2"
  3966. msgctxt "description"
  3967. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3968. msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4."
  3969. msgctxt "name"
  3970. msgid "Version Upgrade 5.3 to 5.4"
  3971. msgstr "Actualización de versión 5.3 a 5.4"
  3972. msgctxt "description"
  3973. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3974. msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10."
  3975. msgctxt "name"
  3976. msgid "Version Upgrade 4.9 to 4.10"
  3977. msgstr "Actualización de la versión 4.9 a la 4.10"
  3978. msgctxt "description"
  3979. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3980. msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
  3981. msgctxt "name"
  3982. msgid "Version Upgrade 2.7 to 3.0"
  3983. msgstr "Actualización de la versión 2.7 a la 3.0"
  3984. msgctxt "description"
  3985. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3986. msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0."
  3987. msgctxt "name"
  3988. msgid "Version Upgrade 3.5 to 4.0"
  3989. msgstr "Actualización de la versión 3.5 a la 4.0"
  3990. msgctxt "description"
  3991. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3992. msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3."
  3993. msgctxt "name"
  3994. msgid "Version Upgrade 5.2 to 5.3"
  3995. msgstr "Actualización de la versión 5.2 a la 5.3"
  3996. msgctxt "description"
  3997. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3998. msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1."
  3999. msgctxt "name"
  4000. msgid "Version Upgrade 4.0 to 4.1"
  4001. msgstr "Actualización de la versión 4.0 a la 4.1"
  4002. msgctxt "description"
  4003. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  4004. msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0."
  4005. msgctxt "name"
  4006. msgid "Version Upgrade 4.13 to 5.0"
  4007. msgstr "Actualización de la versión 4.3 a la 5.0"
  4008. msgctxt "description"
  4009. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4010. msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5."
  4011. msgctxt "name"
  4012. msgid "Version Upgrade 3.4 to 3.5"
  4013. msgstr "Actualización de la versión 3.4 a la 3.5"
  4014. msgctxt "description"
  4015. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4016. msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  4017. msgctxt "name"
  4018. msgid "Version Upgrade 2.2 to 2.4"
  4019. msgstr "Actualización de la versión 2.2 a la 2.4"
  4020. msgctxt "description"
  4021. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4022. msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7."
  4023. msgctxt "name"
  4024. msgid "Version Upgrade 4.6.2 to 4.7"
  4025. msgstr "Actualización de la versión 4.6.2 a la 4.7"
  4026. msgctxt "description"
  4027. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  4028. msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5."
  4029. msgctxt "name"
  4030. msgid "Version Upgrade 5.4 to 5.5"
  4031. msgstr "Actualización de versión 5.4 a 5.5"
  4032. msgctxt "description"
  4033. msgid "Allows loading and displaying G-code files."
  4034. msgstr "Permite cargar y visualizar archivos GCode."
  4035. msgctxt "name"
  4036. msgid "G-code Reader"
  4037. msgstr "Lector de GCode"
  4038. msgctxt "description"
  4039. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4040. msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  4041. msgctxt "name"
  4042. msgid "Slice info"
  4043. msgstr "Info de la segmentación"
  4044. msgctxt "description"
  4045. msgid "Provides removable drive hotplugging and writing support."
  4046. msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  4047. msgctxt "name"
  4048. msgid "Removable Drive Output Device Plugin"
  4049. msgstr "Complemento de dispositivo de salida de unidad extraíble"
  4050. msgctxt "description"
  4051. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4052. msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares"
  4053. msgctxt "name"
  4054. msgid "Support Eraser"
  4055. msgstr "Borrador de soporte"
  4056. msgctxt "description"
  4057. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4058. msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos."
  4059. msgctxt "name"
  4060. msgid "Model Checker"
  4061. msgstr "Comprobador de modelos"
  4062. msgctxt "description"
  4063. msgid "Provides a prepare stage in Cura."
  4064. msgstr "Proporciona una fase de preparación en Cura."
  4065. msgctxt "name"
  4066. msgid "Prepare Stage"
  4067. msgstr "Fase de preparación"
  4068. msgctxt "description"
  4069. msgid "Provides the preview of sliced layerdata."
  4070. msgstr "Proporciona la vista previa de los datos de las capas cortadas."
  4071. msgctxt "name"
  4072. msgid "Simulation View"
  4073. msgstr "Vista de simulación"
  4074. msgctxt "description"
  4075. msgid "Provides support for reading AMF files."
  4076. msgstr "Proporciona asistencia para leer archivos AMF."
  4077. msgctxt "name"
  4078. msgid "AMF Reader"
  4079. msgstr "Lector de AMF"
  4080. msgctxt "description"
  4081. msgid "Provides the X-Ray view."
  4082. msgstr "Proporciona la vista de rayos X."
  4083. msgctxt "name"
  4084. msgid "X-Ray View"
  4085. msgstr "Vista de rayos X"
  4086. msgctxt "description"
  4087. msgid "Provides a machine actions for updating firmware."
  4088. msgstr "Proporciona opciones a la máquina para actualizar el firmware."
  4089. msgctxt "name"
  4090. msgid "Firmware Updater"
  4091. msgstr "Actualizador de firmware"
  4092. msgctxt "description"
  4093. msgid "Provides support for importing profiles from legacy Cura versions."
  4094. msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  4095. msgctxt "name"
  4096. msgid "Legacy Cura Profile Reader"
  4097. msgstr "Lector de perfiles antiguos de Cura"
  4098. msgctxt "description"
  4099. msgid "Extension that allows for user created scripts for post processing"
  4100. msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios"
  4101. msgctxt "name"
  4102. msgid "Post Processing"
  4103. msgstr "Posprocesamiento"
  4104. msgctxt "description"
  4105. msgid "Logs certain events so that they can be used by the crash reporter"
  4106. msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente"
  4107. msgctxt "name"
  4108. msgid "Sentry Logger"
  4109. msgstr "Registro de Sentry"
  4110. msgctxt "description"
  4111. msgid "Provides support for writing MakerBot Format Packages."
  4112. msgstr "Proporciona soporte para escribir paquetes de formato MakerBot."
  4113. msgctxt "name"
  4114. msgid "Makerbot Printfile Writer"
  4115. msgstr "Escritor de archivos de impresión Makerbot"
  4116. msgctxt "description"
  4117. msgid "Provides support for importing Cura profiles."
  4118. msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  4119. msgctxt "name"
  4120. msgid "Cura Profile Reader"
  4121. msgstr "Lector de perfiles de Cura"
  4122. msgctxt "description"
  4123. msgid "Provides support for reading Ultimaker Format Packages."
  4124. msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker."
  4125. msgctxt "name"
  4126. msgid "UFP Reader"
  4127. msgstr "Lector de UFP"
  4128. msgctxt "description"
  4129. msgid "Enables ability to generate printable geometry from 2D image files."
  4130. msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  4131. msgctxt "name"
  4132. msgid "Image Reader"
  4133. msgstr "Lector de imágenes"
  4134. msgctxt "description"
  4135. msgid "Provides the link to the CuraEngine slicing backend."
  4136. msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  4137. msgctxt "name"
  4138. msgid "CuraEngine Backend"
  4139. msgstr "Backend de CuraEngine"
  4140. msgctxt "description"
  4141. msgid "Writes g-code to a compressed archive."
  4142. msgstr "Escribe GCode en un archivo comprimido."
  4143. msgctxt "name"
  4144. msgid "Compressed G-code Writer"
  4145. msgstr "Escritor de GCode comprimido"
  4146. msgctxt "description"
  4147. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4148. msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)."
  4149. msgctxt "name"
  4150. msgid "UltiMaker machine actions"
  4151. msgstr "Acciones de la máquina UltiMaker"
  4152. msgctxt "description"
  4153. msgid "Reads g-code from a compressed archive."
  4154. msgstr "Lee GCode de un archivo comprimido."
  4155. msgctxt "name"
  4156. msgid "Compressed G-code Reader"
  4157. msgstr "Lector de GCode comprimido"
  4158. msgctxt "description"
  4159. msgid "Provides a preview stage in Cura."
  4160. msgstr "Proporciona una fase de vista previa en Cura."
  4161. msgctxt "name"
  4162. msgid "Preview Stage"
  4163. msgstr "Fase de vista previa"
  4164. msgctxt "description"
  4165. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  4166. msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella."
  4167. msgctxt "name"
  4168. msgid "Ultimaker Digital Library"
  4169. msgstr "Ultimaker Digital Library"
  4170. msgctxt "description"
  4171. msgid "Provides support for exporting Cura profiles."
  4172. msgstr "Proporciona asistencia para exportar perfiles de Cura."
  4173. msgctxt "name"
  4174. msgid "Cura Profile Writer"
  4175. msgstr "Escritor de perfiles de Cura"
  4176. msgctxt "description"
  4177. msgid "Provides support for reading X3D files."
  4178. msgstr "Proporciona asistencia para leer archivos X3D."
  4179. msgctxt "name"
  4180. msgid "X3D Reader"
  4181. msgstr "Lector de X3D"
  4182. msgctxt "description"
  4183. msgid "Provides support for reading model files."
  4184. msgstr "Proporciona asistencia para leer archivos 3D."
  4185. msgctxt "name"
  4186. msgid "Trimesh Reader"
  4187. msgstr "Lector Trimesh"
  4188. msgctxt "description"
  4189. msgid "Provides a monitor stage in Cura."
  4190. msgstr "Proporciona una fase de supervisión en Cura."
  4191. msgctxt "name"
  4192. msgid "Monitor Stage"
  4193. msgstr "Fase de supervisión"
  4194. msgctxt "description"
  4195. msgid "Provides the Per Model Settings."
  4196. msgstr "Proporciona los ajustes por modelo."
  4197. msgctxt "name"
  4198. msgid "Per Model Settings Tool"
  4199. msgstr "Herramienta de ajustes por modelo"
  4200. msgctxt "description"
  4201. msgid "Provides capabilities to read and write XML-based material profiles."
  4202. msgstr "Permite leer y escribir perfiles de material basados en XML."
  4203. msgctxt "name"
  4204. msgid "Material Profiles"
  4205. msgstr "Perfiles de material"
  4206. msgctxt "description"
  4207. msgid "Provides support for writing 3MF and UCP files."
  4208. msgstr "Permite escribir archivos 3MF y UCP."
  4209. msgctxt "name"
  4210. msgid "3MF Writer"
  4211. msgstr "Escritor de 3MF"
  4212. msgctxt "description"
  4213. msgid "Provides support for writing Ultimaker Format Packages."
  4214. msgstr "Permite la escritura de paquetes de formato Ultimaker."
  4215. msgctxt "name"
  4216. msgid "UFP Writer"
  4217. msgstr "Escritor de UFP"
  4218. msgctxt "description"
  4219. msgid "Writes g-code to a file."
  4220. msgstr "Escribe GCode en un archivo."
  4221. msgctxt "name"
  4222. msgid "G-code Writer"
  4223. msgstr "Escritor de GCode"