cura.po 238 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529
  1. # Cura
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.4\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2018-06-06 16:13+0200\n"
  11. "PO-Revision-Date: 2018-04-11 14:40+0100\n"
  12. "Last-Translator: Bothof <info@bothof.nl>\n"
  13. "Language-Team: Spanish\n"
  14. "Language: es_ES\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Generator: Poedit 2.0.6\n"
  20. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:22
  21. msgctxt "@action"
  22. msgid "Machine Settings"
  23. msgstr "Ajustes de la máquina"
  24. #: /home/ruben/Projects/Cura/plugins/XRayView/__init__.py:12
  25. msgctxt "@item:inlistbox"
  26. msgid "X-Ray view"
  27. msgstr "Vista de rayos X"
  28. #: /home/ruben/Projects/Cura/plugins/X3DReader/__init__.py:13
  29. msgctxt "@item:inlistbox"
  30. msgid "X3D File"
  31. msgstr "Archivo X3D"
  32. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  33. #: /home/ruben/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  34. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:14
  35. msgctxt "@item:inlistbox"
  36. msgid "G-code File"
  37. msgstr "Archivo GCode"
  38. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:30
  39. msgctxt "@info:title"
  40. msgid "3D Model Assistant"
  41. msgstr "Asistente del modelo 3D"
  42. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:80
  43. #, python-brace-format
  44. msgctxt "@info:status"
  45. msgid ""
  46. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  47. "<p>{model_names}</p>\n"
  48. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  49. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  50. 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>\n"
  51. "<p>{model_names}</p>\n"
  52. "<p>Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.</p>\n"
  53. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guía de impresión de calidad</a></p>"
  54. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:65
  55. msgctxt "@action:button"
  56. msgid "Print with Doodle3D WiFi-Box"
  57. msgstr "Imprimir con un enrutador Doodle3D"
  58. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:66
  59. msgctxt "@properties:tooltip"
  60. msgid "Print with Doodle3D WiFi-Box"
  61. msgstr "Imprimir con un enrutador Doodle3D"
  62. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:86
  63. msgctxt "@info:status"
  64. msgid "Connecting to Doodle3D Connect"
  65. msgstr "Conectar con Doodle3D Connect"
  66. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:87
  67. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:155
  68. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:258
  69. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:204
  70. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:18
  71. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:398
  72. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:88
  73. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:143
  74. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:188
  75. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:391
  76. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:87
  77. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:275
  78. msgctxt "@action:button"
  79. msgid "Cancel"
  80. msgstr "Cancelar"
  81. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:154
  82. msgctxt "@info:status"
  83. msgid "Sending data to Doodle3D Connect"
  84. msgstr "Enviando datos a Doodle3D Connect"
  85. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:161
  86. msgctxt "@info:status"
  87. msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  88. msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?"
  89. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:175
  90. msgctxt "@info:status"
  91. msgid "Storing data on Doodle3D Connect"
  92. msgstr "Guardando datos en Doodle3D Connect"
  93. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:213
  94. msgctxt "@info:status"
  95. msgid "File sent to Doodle3D Connect"
  96. msgstr "Archivo enviado a Doodle3D Connect"
  97. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214
  98. msgctxt "@action:button"
  99. msgid "Open Connect..."
  100. msgstr "Abrir Connect..."
  101. #: /home/ruben/Projects/Cura/plugins/Doodle3D-cura-plugin/Doodle3D/D3DCloudPrintOutputDevicePlugin.py:214
  102. msgctxt "@info:tooltip"
  103. msgid "Open the Doodle3D Connect web interface"
  104. msgstr "Abrir la interfaz web de Doodle3D Connect"
  105. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.py:33
  106. msgctxt "@item:inmenu"
  107. msgid "Show Changelog"
  108. msgstr "Mostrar registro de cambios"
  109. #: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:20
  110. msgctxt "@item:inmenu"
  111. msgid "Flatten active settings"
  112. msgstr "Aplanar ajustes activos"
  113. #: /home/ruben/Projects/Cura/plugins/ProfileFlattener/ProfileFlattener.py:32
  114. msgctxt "@info:status"
  115. msgid "Profile has been flattened & activated."
  116. msgstr "El perfil se ha aplanado y activado."
  117. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:40
  118. msgctxt "@item:inmenu"
  119. msgid "USB printing"
  120. msgstr "Impresión USB"
  121. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:41
  122. msgctxt "@action:button Preceded by 'Ready to'."
  123. msgid "Print via USB"
  124. msgstr "Imprimir mediante USB"
  125. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  126. msgctxt "@info:tooltip"
  127. msgid "Print via USB"
  128. msgstr "Imprimir mediante USB"
  129. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:83
  130. msgctxt "@info:status"
  131. msgid "Connected via USB"
  132. msgstr "Conectado mediante USB"
  133. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/install/X3GWriter/__init__.py:15
  134. #: /home/ruben/Projects/Cura/plugins/X3GWriter/__init__.py:15
  135. msgctxt "X3G Writer File Description"
  136. msgid "X3G File"
  137. msgstr "Archivo X3G"
  138. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:16
  139. msgctxt "X3g Writer Plugin Description"
  140. msgid "Writes X3g to files"
  141. msgstr "Escribe X3g en archivos"
  142. #: /home/ruben/Projects/Cura/plugins/X3GWriter/build/GPX-prefix/src/GPX/slicerplugins/cura15.06/X3gWriter/__init__.py:21
  143. msgctxt "X3g Writer File Description"
  144. msgid "X3g File"
  145. msgstr "Archivo X3g"
  146. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  147. #: /home/ruben/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  148. msgctxt "@item:inlistbox"
  149. msgid "Compressed G-code File"
  150. msgstr "Archivo GCode comprimido"
  151. #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:38
  152. msgctxt "@item:inlistbox"
  153. msgid "Ultimaker Format Package"
  154. msgstr "Paquete de formato Ultimaker"
  155. #: /home/ruben/Projects/Cura/plugins/PrepareStage/__init__.py:12
  156. msgctxt "@item:inmenu"
  157. msgid "Prepare"
  158. msgstr "Preparar"
  159. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  160. msgctxt "@action:button Preceded by 'Ready to'."
  161. msgid "Save to Removable Drive"
  162. msgstr "Guardar en unidad extraíble"
  163. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  164. #, python-brace-format
  165. msgctxt "@item:inlistbox"
  166. msgid "Save to Removable Drive {0}"
  167. msgstr "Guardar en unidad extraíble {0}"
  168. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64
  169. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:113
  170. msgctxt "@info:status"
  171. msgid "There are no file formats available to write with!"
  172. msgstr "No hay formatos de archivo disponibles con los que escribir."
  173. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  174. #, python-brace-format
  175. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  176. msgid "Saving to Removable Drive <filename>{0}</filename>"
  177. msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  178. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  179. msgctxt "@info:title"
  180. msgid "Saving"
  181. msgstr "Guardando"
  182. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:104
  183. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:107
  184. #, python-brace-format
  185. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  186. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  187. msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  188. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  189. #, python-brace-format
  190. msgctxt "@info:status Don't translate the tag {device}!"
  191. msgid "Could not find a file name when trying to write to {device}."
  192. msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
  193. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:136
  194. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  195. #, python-brace-format
  196. msgctxt "@info:status"
  197. msgid "Could not save to removable drive {0}: {1}"
  198. msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
  199. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137
  200. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  201. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:140
  202. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1592
  203. msgctxt "@info:title"
  204. msgid "Error"
  205. msgstr "Error"
  206. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  207. #, python-brace-format
  208. msgctxt "@info:status"
  209. msgid "Saved to Removable Drive {0} as {1}"
  210. msgstr "Guardado en unidad extraíble {0} como {1}"
  211. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  212. msgctxt "@info:title"
  213. msgid "File Saved"
  214. msgstr "Archivo guardado"
  215. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  216. msgctxt "@action:button"
  217. msgid "Eject"
  218. msgstr "Expulsar"
  219. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  220. #, python-brace-format
  221. msgctxt "@action"
  222. msgid "Eject removable device {0}"
  223. msgstr "Expulsar dispositivo extraíble {0}"
  224. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  225. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  226. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1582
  227. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1681
  228. msgctxt "@info:title"
  229. msgid "Warning"
  230. msgstr "Advertencia"
  231. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  232. #, python-brace-format
  233. msgctxt "@info:status"
  234. msgid "Ejected {0}. You can now safely remove the drive."
  235. msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
  236. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  237. msgctxt "@info:title"
  238. msgid "Safely Remove Hardware"
  239. msgstr "Retirar de forma segura el hardware"
  240. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  241. #, python-brace-format
  242. msgctxt "@info:status"
  243. msgid "Failed to eject {0}. Another program may be using the drive."
  244. msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad."
  245. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:68
  246. msgctxt "@item:intext"
  247. msgid "Removable Drive"
  248. msgstr "Unidad extraíble"
  249. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:70
  250. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:78
  251. msgctxt "@action:button Preceded by 'Ready to'."
  252. msgid "Print over network"
  253. msgstr "Imprimir a través de la red"
  254. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:71
  255. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:79
  256. msgctxt "@properties:tooltip"
  257. msgid "Print over network"
  258. msgstr "Imprime a través de la red"
  259. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:84
  260. msgctxt "@info:status"
  261. msgid "Connected over the network."
  262. msgstr "Conectado a través de la red."
  263. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:87
  264. msgctxt "@info:status"
  265. msgid "Connected over the network. Please approve the access request on the printer."
  266. msgstr "Conectado a través de la red. Apruebe la solicitud de acceso en la impresora."
  267. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:89
  268. msgctxt "@info:status"
  269. msgid "Connected over the network. No access to control the printer."
  270. msgstr "Conectado a través de la red. No hay acceso para controlar la impresora."
  271. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:94
  272. msgctxt "@info:status"
  273. msgid "Access to the printer requested. Please approve the request on the printer"
  274. msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora."
  275. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:97
  276. msgctxt "@info:title"
  277. msgid "Authentication status"
  278. msgstr "Estado de la autenticación"
  279. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:99
  280. msgctxt "@info:status"
  281. msgid ""
  282. msgstr ""
  283. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:100
  284. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:106
  285. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:110
  286. msgctxt "@info:title"
  287. msgid "Authentication Status"
  288. msgstr "Estado de la autenticación"
  289. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:101
  290. msgctxt "@action:button"
  291. msgid "Retry"
  292. msgstr "Volver a intentar"
  293. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:102
  294. msgctxt "@info:tooltip"
  295. msgid "Re-send the access request"
  296. msgstr "Reenvía la solicitud de acceso."
  297. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:105
  298. msgctxt "@info:status"
  299. msgid "Access to the printer accepted"
  300. msgstr "Acceso a la impresora aceptado"
  301. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:109
  302. msgctxt "@info:status"
  303. msgid "No access to print with this printer. Unable to send print job."
  304. msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión."
  305. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:111
  306. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:29
  307. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:73
  308. msgctxt "@action:button"
  309. msgid "Request Access"
  310. msgstr "Solicitar acceso"
  311. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:113
  312. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:28
  313. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:72
  314. msgctxt "@info:tooltip"
  315. msgid "Send access request to the printer"
  316. msgstr "Envía la solicitud de acceso a la impresora."
  317. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:198
  318. msgctxt "@label"
  319. msgid "Unable to start a new print job."
  320. msgstr "No se puede iniciar un nuevo trabajo de impresión."
  321. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:200
  322. msgctxt "@label"
  323. msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  324. msgstr "Un problema con la configuración de Ultimaker impide iniciar la impresión. Soluciónelo antes de continuar."
  325. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:206
  326. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:228
  327. msgctxt "@window:title"
  328. msgid "Mismatched configuration"
  329. msgstr "Configuración desajustada"
  330. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:220
  331. msgctxt "@label"
  332. msgid "Are you sure you wish to print with the selected configuration?"
  333. msgstr "¿Seguro que desea imprimir con la configuración seleccionada?"
  334. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:222
  335. msgctxt "@label"
  336. msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  337. msgstr "La configuración o calibración de la impresora y de Cura no coinciden. Para obtener el mejor resultado, segmente siempre los PrintCores y los materiales que se insertan en la impresora."
  338. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:249
  339. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:166
  340. msgctxt "@info:status"
  341. msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  342. msgstr "Envío de nuevos trabajos (temporalmente) bloqueado; se sigue enviando el trabajo de impresión previo."
  343. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:256
  344. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:185
  345. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:202
  346. msgctxt "@info:status"
  347. msgid "Sending data to printer"
  348. msgstr "Enviando datos a la impresora"
  349. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:257
  350. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:186
  351. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:203
  352. msgctxt "@info:title"
  353. msgid "Sending Data"
  354. msgstr "Enviando datos"
  355. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:321
  356. #, python-brace-format
  357. msgctxt "@info:status"
  358. msgid "No Printcore loaded in slot {slot_number}"
  359. msgstr "No se ha cargado ningún PrintCore en la ranura {slot_number}."
  360. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:327
  361. #, python-brace-format
  362. msgctxt "@info:status"
  363. msgid "No material loaded in slot {slot_number}"
  364. msgstr "No se ha cargado ningún material en la ranura {slot_number}."
  365. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:350
  366. #, python-brace-format
  367. msgctxt "@label"
  368. msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  369. msgstr "PrintCore distinto (Cura: {cura_printcore_name}, impresora: {remote_printcore_name}) seleccionado para extrusor {extruder_id}"
  370. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:359
  371. #, python-brace-format
  372. msgctxt "@label"
  373. msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  374. msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  375. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:545
  376. msgctxt "@window:title"
  377. msgid "Sync with your printer"
  378. msgstr "Sincronizar con la impresora"
  379. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:547
  380. msgctxt "@label"
  381. msgid "Would you like to use your current printer configuration in Cura?"
  382. msgstr "¿Desea utilizar la configuración actual de su impresora en Cura?"
  383. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/LegacyUM3OutputDevice.py:549
  384. msgctxt "@label"
  385. msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  386. msgstr "Los PrintCores o los materiales de la impresora difieren de los del proyecto actual. Para obtener el mejor resultado, segmente siempre los PrintCores y materiales que se hayan insertado en la impresora."
  387. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:81
  388. msgctxt "@info:status"
  389. msgid "Connected over the network"
  390. msgstr "Conectado a través de la red."
  391. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:262
  392. msgctxt "@info:status"
  393. msgid "Print job was successfully sent to the printer."
  394. msgstr "El trabajo de impresión se ha enviado correctamente a la impresora."
  395. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:264
  396. msgctxt "@info:title"
  397. msgid "Data Sent"
  398. msgstr "Fecha de envío"
  399. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:265
  400. msgctxt "@action:button"
  401. msgid "View in Monitor"
  402. msgstr "Ver en pantalla"
  403. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:353
  404. #, python-brace-format
  405. msgctxt "@info:status"
  406. msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  407. msgstr "{printer_name} ha terminado de imprimir «{job_name}»."
  408. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:355
  409. #, python-brace-format
  410. msgctxt "@info:status"
  411. msgid "The print job '{job_name}' was finished."
  412. msgstr "El trabajo de impresión '{job_name}' ha terminado."
  413. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterUM3OutputDevice.py:356
  414. msgctxt "@info:status"
  415. msgid "Print finished"
  416. msgstr "Impresión terminada"
  417. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.py:20
  418. msgctxt "@action"
  419. msgid "Connect via Network"
  420. msgstr "Conectar a través de la red"
  421. #: /home/ruben/Projects/Cura/plugins/MonitorStage/__init__.py:12
  422. msgctxt "@item:inmenu"
  423. msgid "Monitor"
  424. msgstr "Supervisar"
  425. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:69
  426. #, python-brace-format
  427. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  428. msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  429. msgstr "Hay nuevas funciones disponibles para {machine_name}. Se recomienda actualizar el firmware de la impresora."
  430. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:73
  431. #, python-format
  432. msgctxt "@info:title The %s gets replaced with the printer name."
  433. msgid "New %s firmware available"
  434. msgstr "Nuevo firmware de %s disponible"
  435. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:76
  436. msgctxt "@action:button"
  437. msgid "How to update"
  438. msgstr "Cómo actualizar"
  439. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:92
  440. msgctxt "@info"
  441. msgid "Could not access update information."
  442. msgstr "No se pudo acceder a la información actualizada."
  443. #: /home/ruben/Projects/Cura/plugins/SimulationView/__init__.py:14
  444. msgctxt "@item:inlistbox"
  445. msgid "Layer view"
  446. msgstr "Vista de capas"
  447. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:103
  448. msgctxt "@info:status"
  449. msgid "Cura does not accurately display layers when Wire Printing is enabled"
  450. msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada."
  451. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:104
  452. msgctxt "@info:title"
  453. msgid "Simulation View"
  454. msgstr "Vista de simulación"
  455. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:27
  456. msgid "Modify G-Code"
  457. msgstr "Modificar GCode"
  458. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:12
  459. msgctxt "@label"
  460. msgid "Support Blocker"
  461. msgstr "Bloqueador de soporte"
  462. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:13
  463. msgctxt "@info:tooltip"
  464. msgid "Create a volume in which supports are not printed."
  465. msgstr "Cree un volumen que no imprima los soportes."
  466. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:44
  467. msgctxt "@info"
  468. msgid "Cura collects anonymized usage statistics."
  469. msgstr "Cura recopila estadísticas de uso de forma anónima."
  470. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:47
  471. msgctxt "@info:title"
  472. msgid "Collecting Data"
  473. msgstr "Recopilando datos"
  474. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:49
  475. msgctxt "@action:button"
  476. msgid "More info"
  477. msgstr "Más información"
  478. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:50
  479. msgctxt "@action:tooltip"
  480. msgid "See more information on what data Cura sends."
  481. msgstr "Obtenga más información sobre qué datos envía Cura."
  482. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:52
  483. msgctxt "@action:button"
  484. msgid "Allow"
  485. msgstr "Permitir"
  486. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/SliceInfo.py:53
  487. msgctxt "@action:tooltip"
  488. msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  489. msgstr "Permitir a Cura enviar estadísticas de uso de forma anónima para ayudar a priorizar mejoras futuras para Cura. Se envían algunas de sus preferencias y ajustes, la versión de Cura y un resumen de los modelos que está fragmentando."
  490. #: /home/ruben/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  491. msgctxt "@item:inlistbox"
  492. msgid "Cura 15.04 profiles"
  493. msgstr "Perfiles de Cura 15.04"
  494. #: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/__init__.py:15
  495. msgctxt "@item:inlistbox"
  496. msgid "Blender file"
  497. msgstr "Archivo Blender"
  498. #: /home/ruben/Projects/Cura/plugins/CuraBlenderPlugin/CadIntegrationUtils/CommonReader.py:199
  499. msgctxt "@info:status"
  500. msgid ""
  501. "Could not export using \"{}\" quality!\n"
  502. "Felt back to \"{}\"."
  503. msgstr "No ha podido exportarse con la calidad \"{}\"\n"
  504. "Retroceder a \"{}\"."
  505. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14
  506. msgctxt "@item:inlistbox"
  507. msgid "JPG Image"
  508. msgstr "Imagen JPG"
  509. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:18
  510. msgctxt "@item:inlistbox"
  511. msgid "JPEG Image"
  512. msgstr "Imagen JPEG"
  513. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:22
  514. msgctxt "@item:inlistbox"
  515. msgid "PNG Image"
  516. msgstr "Imagen PNG"
  517. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:26
  518. msgctxt "@item:inlistbox"
  519. msgid "BMP Image"
  520. msgstr "Imagen BMP"
  521. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:30
  522. msgctxt "@item:inlistbox"
  523. msgid "GIF Image"
  524. msgstr "Imagen GIF"
  525. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315
  526. msgctxt "@info:status"
  527. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  528. msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
  529. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:315
  530. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:344
  531. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:367
  532. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:376
  533. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386
  534. msgctxt "@info:title"
  535. msgid "Unable to slice"
  536. msgstr "No se puede segmentar"
  537. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:343
  538. #, python-brace-format
  539. msgctxt "@info:status"
  540. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  541. msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
  542. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:366
  543. #, python-brace-format
  544. msgctxt "@info:status"
  545. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  546. msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
  547. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:375
  548. msgctxt "@info:status"
  549. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  550. msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
  551. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385
  552. msgctxt "@info:status"
  553. msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  554. msgstr "No hay nada que segmentar porque ninguno de los modelos se adapta al volumen de impresión. Escale o rote los modelos para que se adapten."
  555. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50
  556. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243
  557. msgctxt "@info:status"
  558. msgid "Processing Layers"
  559. msgstr "Procesando capas"
  560. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:243
  561. msgctxt "@info:title"
  562. msgid "Information"
  563. msgstr "Información"
  564. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  565. msgctxt "@label"
  566. msgid "Per Model Settings"
  567. msgstr "Ajustes por modelo"
  568. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  569. msgctxt "@info:tooltip"
  570. msgid "Configure Per Model Settings"
  571. msgstr "Configurar ajustes por modelo"
  572. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:175
  573. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:576
  574. msgctxt "@title:tab"
  575. msgid "Recommended"
  576. msgstr "Recomendado"
  577. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:177
  578. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:581
  579. msgctxt "@title:tab"
  580. msgid "Custom"
  581. msgstr "Personalizado"
  582. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:32
  583. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:38
  584. msgctxt "@item:inlistbox"
  585. msgid "3MF File"
  586. msgstr "Archivo 3MF"
  587. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199
  588. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:695
  589. msgctxt "@label"
  590. msgid "Nozzle"
  591. msgstr "Tobera"
  592. #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12
  593. msgctxt "@item:inmenu"
  594. msgid "Solid view"
  595. msgstr "Vista de sólidos"
  596. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:18
  597. msgctxt "@item:inlistbox"
  598. msgid "G File"
  599. msgstr "Archivo G"
  600. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:322
  601. msgctxt "@info:status"
  602. msgid "Parsing G-code"
  603. msgstr "Analizar GCode"
  604. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:324
  605. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:470
  606. msgctxt "@info:title"
  607. msgid "G-code Details"
  608. msgstr "Datos de GCode"
  609. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:468
  610. msgctxt "@info:generic"
  611. 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."
  612. 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."
  613. #: /home/ruben/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  614. #: /home/ruben/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  615. msgctxt "@item:inlistbox"
  616. msgid "Cura Profile"
  617. msgstr "Perfil de cura"
  618. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:30
  619. msgctxt "@item:inlistbox"
  620. msgid "3MF file"
  621. msgstr "Archivo 3MF"
  622. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:38
  623. msgctxt "@item:inlistbox"
  624. msgid "Cura Project 3MF file"
  625. msgstr "Archivo 3MF del proyecto de Cura"
  626. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelection.py:17
  627. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18
  628. msgctxt "@action"
  629. msgid "Select upgrades"
  630. msgstr "Seleccionar actualizaciones"
  631. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.py:12
  632. msgctxt "@action"
  633. msgid "Upgrade Firmware"
  634. msgstr "Actualizar firmware"
  635. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.py:14
  636. msgctxt "@action"
  637. msgid "Checkup"
  638. msgstr "Comprobación"
  639. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:21
  640. msgctxt "@action"
  641. msgid "Level build plate"
  642. msgstr "Nivelar placa de impresión"
  643. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:98
  644. msgctxt "@tooltip"
  645. msgid "Outer Wall"
  646. msgstr "Pared exterior"
  647. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:99
  648. msgctxt "@tooltip"
  649. msgid "Inner Walls"
  650. msgstr "Paredes interiores"
  651. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:100
  652. msgctxt "@tooltip"
  653. msgid "Skin"
  654. msgstr "Forro"
  655. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:101
  656. msgctxt "@tooltip"
  657. msgid "Infill"
  658. msgstr "Relleno"
  659. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:102
  660. msgctxt "@tooltip"
  661. msgid "Support Infill"
  662. msgstr "Relleno de soporte"
  663. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:103
  664. msgctxt "@tooltip"
  665. msgid "Support Interface"
  666. msgstr "Interfaz de soporte"
  667. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:104
  668. msgctxt "@tooltip"
  669. msgid "Support"
  670. msgstr "Soporte"
  671. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:105
  672. msgctxt "@tooltip"
  673. msgid "Skirt"
  674. msgstr "Falda"
  675. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:106
  676. msgctxt "@tooltip"
  677. msgid "Travel"
  678. msgstr "Desplazamiento"
  679. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:107
  680. msgctxt "@tooltip"
  681. msgid "Retractions"
  682. msgstr "Retracciones"
  683. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:108
  684. msgctxt "@tooltip"
  685. msgid "Other"
  686. msgstr "Otro"
  687. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:229
  688. msgctxt "@label unknown material"
  689. msgid "Unknown"
  690. msgstr "Desconocido"
  691. #: /home/ruben/Projects/Cura/cura/PrintInformation.py:313
  692. #, python-brace-format
  693. msgctxt "@label"
  694. msgid "Pre-sliced file {0}"
  695. msgstr "Archivo {0} presegmentado"
  696. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:235
  697. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:121
  698. msgctxt "@title:window"
  699. msgid "File Already Exists"
  700. msgstr "El archivo ya existe"
  701. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:236
  702. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:122
  703. #, python-brace-format
  704. msgctxt "@label Don't translate the XML tag <filename>!"
  705. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  706. msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  707. #: /home/ruben/Projects/Cura/cura/Settings/ExtrudersModel.py:212
  708. msgctxt "@menuitem"
  709. msgid "Not overridden"
  710. msgstr "No reemplazado"
  711. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:119
  712. msgctxt "@info:status"
  713. msgid "The selected material is incompatible with the selected machine or configuration."
  714. msgstr "El material seleccionado no es compatible con la máquina o la configuración seleccionada."
  715. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:120
  716. msgctxt "@info:title"
  717. msgid "Incompatible Material"
  718. msgstr "Material incompatible"
  719. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:842
  720. #, python-format
  721. msgctxt "@info:generic"
  722. msgid "Settings have been changed to match the current availability of extruders: [%s]"
  723. msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento: [%s]."
  724. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:844
  725. msgctxt "@info:title"
  726. msgid "Settings updated"
  727. msgstr "Ajustes actualizados"
  728. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:131
  729. #, python-brace-format
  730. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  731. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  732. msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  733. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:138
  734. #, python-brace-format
  735. msgctxt "@info:status Don't translate the XML tag <filename>!"
  736. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  737. msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  738. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:143
  739. #, python-brace-format
  740. msgctxt "@info:status Don't translate the XML tag <filename>!"
  741. msgid "Exported profile to <filename>{0}</filename>"
  742. msgstr "Perfil exportado a <filename>{0}</filename>"
  743. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  744. msgctxt "@info:title"
  745. msgid "Export succeeded"
  746. msgstr "Exportación correcta"
  747. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:170
  748. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:194
  749. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:313
  750. #, python-brace-format
  751. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  752. msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  753. msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  754. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:190
  755. #, python-brace-format
  756. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  757. msgid "No custom profile to import in file <filename>{0}</filename>"
  758. msgstr "No hay ningún perfil personalizado que importar en el archivo <filename>{0}</filename>."
  759. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:218
  760. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:228
  761. #, python-brace-format
  762. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  763. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  764. msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  765. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:241
  766. #, python-brace-format
  767. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  768. msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  769. msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  770. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:316
  771. #, python-brace-format
  772. msgctxt "@info:status"
  773. msgid "Successfully imported profile {0}"
  774. msgstr "Perfil {0} importado correctamente"
  775. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:319
  776. #, python-brace-format
  777. msgctxt "@info:status"
  778. msgid "File {0} does not contain any valid profile."
  779. msgstr "El archivo {0} no contiene ningún perfil válido."
  780. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:322
  781. #, python-brace-format
  782. msgctxt "@info:status"
  783. msgid "Profile {0} has an unknown file type or is corrupted."
  784. msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto."
  785. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:340
  786. msgctxt "@label"
  787. msgid "Custom profile"
  788. msgstr "Perfil personalizado"
  789. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:356
  790. msgctxt "@info:status"
  791. msgid "Profile is missing a quality type."
  792. msgstr "Al perfil le falta un tipo de calidad."
  793. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368
  794. #, python-brace-format
  795. msgctxt "@info:status"
  796. msgid "Could not find a quality type {0} for the current configuration."
  797. msgstr "No se ha podido encontrar un tipo de calidad {0} para la configuración actual."
  798. #: /home/ruben/Projects/Cura/cura/ObjectsModel.py:60
  799. #, python-brace-format
  800. msgctxt "@label"
  801. msgid "Group #{group_nr}"
  802. msgstr "N.º de grupo {group_nr}"
  803. #: /home/ruben/Projects/Cura/cura/Machines/Models/MachineManagementModel.py:65
  804. msgctxt "@info:title"
  805. msgid "Network enabled printers"
  806. msgstr "Impresoras de red habilitadas"
  807. #: /home/ruben/Projects/Cura/cura/Machines/Models/MachineManagementModel.py:80
  808. msgctxt "@info:title"
  809. msgid "Local printers"
  810. msgstr "Impresoras locales"
  811. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:109
  812. #, python-brace-format
  813. msgctxt "@item:inlistbox"
  814. msgid "All Supported Types ({0})"
  815. msgstr "Todos los tipos compatibles ({0})"
  816. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:110
  817. msgctxt "@item:inlistbox"
  818. msgid "All Files (*)"
  819. msgstr "Todos los archivos (*)"
  820. #: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:544
  821. msgctxt "@label"
  822. msgid "Custom Material"
  823. msgstr "Material personalizado"
  824. #: /home/ruben/Projects/Cura/cura/Machines/MaterialManager.py:545
  825. msgctxt "@label"
  826. msgid "Custom"
  827. msgstr "Personalizado"
  828. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:80
  829. msgctxt "@info:status"
  830. 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."
  831. 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."
  832. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:82
  833. msgctxt "@info:title"
  834. msgid "Build Volume"
  835. msgstr "Volumen de impresión"
  836. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99
  837. msgctxt "@info:backup_failed"
  838. msgid "Could not create archive from user data directory: {}"
  839. msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}"
  840. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104
  841. msgctxt "@info:title"
  842. msgid "Backup"
  843. msgstr "Copia de seguridad"
  844. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:116
  845. msgctxt "@info:backup_failed"
  846. msgid "Tried to restore a Cura backup without having proper data or meta data."
  847. msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
  848. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:126
  849. msgctxt "@info:backup_failed"
  850. msgid "Tried to restore a Cura backup that does not match your current version."
  851. msgstr "Se ha intentado restaurar una copia de seguridad de Cura que no coincide con la versión actual."
  852. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:27
  853. msgctxt "@info:status"
  854. msgid "Multiplying and placing objects"
  855. msgstr "Multiplicar y colocar objetos"
  856. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:28
  857. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99
  858. msgctxt "@info:title"
  859. msgid "Placing Object"
  860. msgstr "Colocando objeto"
  861. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:99
  862. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:96
  863. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149
  864. msgctxt "@info:status"
  865. msgid "Unable to find a location within the build volume for all objects"
  866. msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos"
  867. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30
  868. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66
  869. msgctxt "@info:status"
  870. msgid "Finding new location for objects"
  871. msgstr "Buscando nueva ubicación para los objetos"
  872. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34
  873. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70
  874. msgctxt "@info:title"
  875. msgid "Finding Location"
  876. msgstr "Buscando ubicación"
  877. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:97
  878. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  879. msgctxt "@info:title"
  880. msgid "Can't Find Location"
  881. msgstr "No se puede encontrar la ubicación"
  882. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:87
  883. msgctxt "@title:window"
  884. msgid "Cura can't start"
  885. msgstr "Cura no puede iniciarse."
  886. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:93
  887. msgctxt "@label crash message"
  888. msgid ""
  889. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  890. " <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"
  891. " <p>Backups can be found in the configuration folder.</p>\n"
  892. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  893. " "
  894. msgstr ""
  895. "<p><b>¡Vaya! Ultimaker Cura ha encontrado un error.</p></b>\n"
  896. " <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>\n"
  897. " <p>Las copias de seguridad se encuentran en la carpeta de configuración.</p>\n"
  898. " <p>Envíenos el informe de errores para que podamos solucionar el problema.</p>\n"
  899. " "
  900. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:102
  901. msgctxt "@action:button"
  902. msgid "Send crash report to Ultimaker"
  903. msgstr "Enviar informe de errores a Ultimaker"
  904. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:105
  905. msgctxt "@action:button"
  906. msgid "Show detailed crash report"
  907. msgstr "Mostrar informe de errores detallado"
  908. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:109
  909. msgctxt "@action:button"
  910. msgid "Show configuration folder"
  911. msgstr "Mostrar carpeta de configuración"
  912. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:120
  913. msgctxt "@action:button"
  914. msgid "Backup and Reset Configuration"
  915. msgstr "Realizar copia de seguridad y restablecer configuración"
  916. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:149
  917. msgctxt "@title:window"
  918. msgid "Crash Report"
  919. msgstr "Informe del accidente"
  920. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:169
  921. msgctxt "@label crash message"
  922. msgid ""
  923. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  924. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  925. " "
  926. msgstr ""
  927. "<p><b>Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>\n"
  928. " <p>Utilice el botón \"Enviar informe\" para publicar automáticamente el informe de errores en nuestros servidores.</p>\n"
  929. " "
  930. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:177
  931. msgctxt "@title:groupbox"
  932. msgid "System information"
  933. msgstr "Información del sistema"
  934. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:185
  935. msgctxt "@label unknown version of Cura"
  936. msgid "Unknown"
  937. msgstr "Desconocido"
  938. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:187
  939. msgctxt "@label Cura version number"
  940. msgid "Cura version"
  941. msgstr "Versión de Cura"
  942. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:188
  943. msgctxt "@label Type of platform"
  944. msgid "Platform"
  945. msgstr "Plataforma"
  946. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:189
  947. msgctxt "@label"
  948. msgid "Qt version"
  949. msgstr "Versión Qt"
  950. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:190
  951. msgctxt "@label"
  952. msgid "PyQt version"
  953. msgstr "Versión PyQt"
  954. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:191
  955. msgctxt "@label OpenGL version"
  956. msgid "OpenGL"
  957. msgstr "OpenGL"
  958. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:208
  959. msgctxt "@label"
  960. msgid "Not yet initialized<br/>"
  961. msgstr "Aún no se ha inicializado<br/>"
  962. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:211
  963. #, python-brace-format
  964. msgctxt "@label OpenGL version"
  965. msgid "<li>OpenGL Version: {version}</li>"
  966. msgstr "<li>Versión de OpenGL: {version}</li>"
  967. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:212
  968. #, python-brace-format
  969. msgctxt "@label OpenGL vendor"
  970. msgid "<li>OpenGL Vendor: {vendor}</li>"
  971. msgstr "<li>Proveedor de OpenGL: {vendor}</li>"
  972. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:213
  973. #, python-brace-format
  974. msgctxt "@label OpenGL renderer"
  975. msgid "<li>OpenGL Renderer: {renderer}</li>"
  976. msgstr "<li>Representador de OpenGL: {renderer}</li>"
  977. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:222
  978. msgctxt "@title:groupbox"
  979. msgid "Error traceback"
  980. msgstr "Rastreabilidad de errores"
  981. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:303
  982. msgctxt "@title:groupbox"
  983. msgid "Logs"
  984. msgstr "Registros"
  985. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:326
  986. msgctxt "@title:groupbox"
  987. msgid "User description"
  988. msgstr "Descripción del usuario"
  989. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:345
  990. msgctxt "@action:button"
  991. msgid "Send report"
  992. msgstr "Enviar informe"
  993. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:328
  994. msgctxt "@info:progress"
  995. msgid "Loading machines..."
  996. msgstr "Cargando máquinas..."
  997. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:756
  998. msgctxt "@info:progress"
  999. msgid "Setting up scene..."
  1000. msgstr "Configurando escena..."
  1001. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:789
  1002. msgctxt "@info:progress"
  1003. msgid "Loading interface..."
  1004. msgstr "Cargando interfaz..."
  1005. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1023
  1006. #, python-format
  1007. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  1008. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  1009. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  1010. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1581
  1011. #, python-brace-format
  1012. msgctxt "@info:status"
  1013. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  1014. msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
  1015. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1591
  1016. #, python-brace-format
  1017. msgctxt "@info:status"
  1018. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  1019. msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
  1020. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1680
  1021. msgctxt "@info:status"
  1022. msgid "The selected model was too small to load."
  1023. msgstr "No se puede cargar el modelo seleccionado, es demasiado pequeño."
  1024. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:59
  1025. msgctxt "@title"
  1026. msgid "Machine Settings"
  1027. msgstr "Ajustes de la máquina"
  1028. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:78
  1029. msgctxt "@title:tab"
  1030. msgid "Printer"
  1031. msgstr "Impresora"
  1032. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:97
  1033. msgctxt "@label"
  1034. msgid "Printer Settings"
  1035. msgstr "Ajustes de la impresora"
  1036. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:108
  1037. msgctxt "@label"
  1038. msgid "X (Width)"
  1039. msgstr "X (anchura)"
  1040. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:109
  1041. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:119
  1042. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:129
  1043. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:235
  1044. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:384
  1045. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:400
  1046. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:418
  1047. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:430
  1048. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:855
  1049. msgctxt "@label"
  1050. msgid "mm"
  1051. msgstr "mm"
  1052. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:118
  1053. msgctxt "@label"
  1054. msgid "Y (Depth)"
  1055. msgstr "Y (profundidad)"
  1056. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:128
  1057. msgctxt "@label"
  1058. msgid "Z (Height)"
  1059. msgstr "Z (altura)"
  1060. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:140
  1061. msgctxt "@label"
  1062. msgid "Build plate shape"
  1063. msgstr "Forma de la placa de impresión"
  1064. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:149
  1065. msgctxt "@option:check"
  1066. msgid "Origin at center"
  1067. msgstr "Origen en el centro"
  1068. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:157
  1069. msgctxt "@option:check"
  1070. msgid "Heated bed"
  1071. msgstr "Plataforma caliente"
  1072. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:168
  1073. msgctxt "@label"
  1074. msgid "G-code flavor"
  1075. msgstr "Tipo de GCode"
  1076. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:181
  1077. msgctxt "@label"
  1078. msgid "Printhead Settings"
  1079. msgstr "Ajustes del cabezal de impresión"
  1080. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:191
  1081. msgctxt "@label"
  1082. msgid "X min"
  1083. msgstr "X mín."
  1084. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:192
  1085. msgctxt "@tooltip"
  1086. msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1087. msgstr "Distancia desde la parte izquierda del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»."
  1088. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:201
  1089. msgctxt "@label"
  1090. msgid "Y min"
  1091. msgstr "Y mín."
  1092. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:202
  1093. msgctxt "@tooltip"
  1094. msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1095. msgstr "Distancia desde la parte frontal del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»."
  1096. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:211
  1097. msgctxt "@label"
  1098. msgid "X max"
  1099. msgstr "X máx."
  1100. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:212
  1101. msgctxt "@tooltip"
  1102. msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1103. msgstr "Distancia desde la parte derecha del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»."
  1104. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:221
  1105. msgctxt "@label"
  1106. msgid "Y max"
  1107. msgstr "Y máx."
  1108. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:222
  1109. msgctxt "@tooltip"
  1110. msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  1111. msgstr "Distancia desde la parte trasera del cabezal de impresión hasta el centro de la tobera. Se usa para evitar que colisionen la impresión anterior con el cabezal de impresión al imprimir «de uno en uno»."
  1112. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:234
  1113. msgctxt "@label"
  1114. msgid "Gantry height"
  1115. msgstr "Altura del caballete"
  1116. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:236
  1117. msgctxt "@tooltip"
  1118. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  1119. msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y). Se usa para evitar que colisionen la impresión anterior con el caballete al imprimir «de uno en uno»."
  1120. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:255
  1121. msgctxt "@label"
  1122. msgid "Number of Extruders"
  1123. msgstr "Número de extrusores"
  1124. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:311
  1125. msgctxt "@label"
  1126. msgid "Start G-code"
  1127. msgstr "Iniciar GCode"
  1128. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:321
  1129. msgctxt "@tooltip"
  1130. msgid "G-code commands to be executed at the very start."
  1131. msgstr "Los comandos de GCode que se ejecutarán justo al inicio."
  1132. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:330
  1133. msgctxt "@label"
  1134. msgid "End G-code"
  1135. msgstr "Finalizar GCode"
  1136. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:340
  1137. msgctxt "@tooltip"
  1138. msgid "G-code commands to be executed at the very end."
  1139. msgstr "Los comandos de GCode que se ejecutarán justo al final."
  1140. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:371
  1141. msgctxt "@label"
  1142. msgid "Nozzle Settings"
  1143. msgstr "Ajustes de la tobera"
  1144. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:383
  1145. msgctxt "@label"
  1146. msgid "Nozzle size"
  1147. msgstr "Tamaño de la tobera"
  1148. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:399
  1149. msgctxt "@label"
  1150. msgid "Compatible material diameter"
  1151. msgstr "Diámetro del material compatible"
  1152. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:401
  1153. msgctxt "@tooltip"
  1154. msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  1155. msgstr "El diámetro nominal del filamento compatible con la impresora. El diámetro exacto se sobrescribirá según el material o el perfil."
  1156. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:417
  1157. msgctxt "@label"
  1158. msgid "Nozzle offset X"
  1159. msgstr "Desplazamiento de la tobera sobre el eje X"
  1160. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:429
  1161. msgctxt "@label"
  1162. msgid "Nozzle offset Y"
  1163. msgstr "Desplazamiento de la tobera sobre el eje Y"
  1164. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:450
  1165. msgctxt "@label"
  1166. msgid "Extruder Start G-code"
  1167. msgstr "GCode inicial del extrusor"
  1168. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:468
  1169. msgctxt "@label"
  1170. msgid "Extruder End G-code"
  1171. msgstr "GCode final del extrusor"
  1172. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:17
  1173. msgctxt "@action:button"
  1174. msgid "Install"
  1175. msgstr "Instalar"
  1176. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxProgressButton.qml:19
  1177. msgctxt "@action:button"
  1178. msgid "Installed"
  1179. msgstr "Instalado"
  1180. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxErrorPage.qml:16
  1181. msgctxt "@info"
  1182. msgid "Could not connect to the Cura Package database. Please check your connection."
  1183. msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión."
  1184. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledPage.qml:35
  1185. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:26
  1186. msgctxt "@title:tab"
  1187. msgid "Plugins"
  1188. msgstr "Complementos"
  1189. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:79
  1190. msgctxt "@label"
  1191. msgid "Version"
  1192. msgstr "Versión"
  1193. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:85
  1194. msgctxt "@label"
  1195. msgid "Last updated"
  1196. msgstr "Última actualización"
  1197. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:91
  1198. msgctxt "@label"
  1199. msgid "Author"
  1200. msgstr "Autor"
  1201. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailPage.qml:109
  1202. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:269
  1203. msgctxt "@label"
  1204. msgid "Unknown"
  1205. msgstr "Desconocido"
  1206. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:44
  1207. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:30
  1208. msgctxt "@action:button"
  1209. msgid "Update"
  1210. msgstr "Actualizar"
  1211. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:45
  1212. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:31
  1213. msgctxt "@action:button"
  1214. msgid "Updating"
  1215. msgstr "Actualizando"
  1216. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDetailTileActions.qml:46
  1217. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:32
  1218. msgctxt "@action:button"
  1219. msgid "Updated"
  1220. msgstr "Actualizado"
  1221. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:13
  1222. msgctxt "@title"
  1223. msgid "Toolbox"
  1224. msgstr "Cuadro de herramientas"
  1225. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxBackColumn.qml:25
  1226. msgctxt "@action:button"
  1227. msgid "Back"
  1228. msgstr "Atrás"
  1229. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:17
  1230. msgctxt "@info"
  1231. msgid "You will need to restart Cura before changes in packages have effect."
  1232. msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto."
  1233. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxFooter.qml:32
  1234. msgctxt "@info:button"
  1235. msgid "Quit Cura"
  1236. msgstr "Salir de Cura"
  1237. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxHeader.qml:54
  1238. msgctxt "@title:tab"
  1239. msgid "Installed"
  1240. msgstr "Instalado"
  1241. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:19
  1242. msgctxt "@label"
  1243. msgid "Will install upon restarting"
  1244. msgstr "Se instalará después de reiniciar"
  1245. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:51
  1246. msgctxt "@action:button"
  1247. msgid "Downgrade"
  1248. msgstr "Degradar"
  1249. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxInstalledTileActions.qml:51
  1250. msgctxt "@action:button"
  1251. msgid "Uninstall"
  1252. msgstr "Desinstalar"
  1253. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:16
  1254. msgctxt "@title:window"
  1255. msgid "Plugin License Agreement"
  1256. msgstr "Acuerdo de licencia de complemento"
  1257. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:33
  1258. msgctxt "@label"
  1259. msgid ""
  1260. "This plugin contains a license.\n"
  1261. "You need to accept this license to install this plugin.\n"
  1262. "Do you agree with the terms below?"
  1263. msgstr "Este complemento incluye una licencia.\nDebe aceptar dicha licencia para instalar el complemento.\n¿Acepta las condiciones que aparecen a continuación?"
  1264. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:54
  1265. msgctxt "@action:button"
  1266. msgid "Accept"
  1267. msgstr "Aceptar"
  1268. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLicenseDialog.qml:65
  1269. msgctxt "@action:button"
  1270. msgid "Decline"
  1271. msgstr "Rechazar"
  1272. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxDownloadsShowcase.qml:17
  1273. msgctxt "@label"
  1274. msgid "Featured"
  1275. msgstr "Destacado"
  1276. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxCompatibilityChart.qml:20
  1277. msgctxt "@label"
  1278. msgid "Compatibility"
  1279. msgstr "Compatibilidad"
  1280. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxLoadingPage.qml:16
  1281. msgctxt "@info"
  1282. msgid "Fetching packages..."
  1283. msgstr "Buscando paquetes..."
  1284. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/ToolboxAuthorPage.qml:87
  1285. msgctxt "@label"
  1286. msgid "Contact"
  1287. msgstr "Contacto"
  1288. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1289. msgctxt "@info:tooltip"
  1290. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1291. msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarla."
  1292. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:18
  1293. msgctxt "@label"
  1294. msgid "Changelog"
  1295. msgstr "Registro de cambios"
  1296. #: /home/ruben/Projects/Cura/plugins/ChangeLogPlugin/ChangeLog.qml:37
  1297. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:84
  1298. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:56
  1299. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  1300. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:509
  1301. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:121
  1302. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:148
  1303. #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:38
  1304. msgctxt "@action:button"
  1305. msgid "Close"
  1306. msgstr "Cerrar"
  1307. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:22
  1308. msgctxt "@title:window"
  1309. msgid "Firmware Update"
  1310. msgstr "Actualización del firmware"
  1311. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:42
  1312. msgctxt "@label"
  1313. msgid "Updating firmware."
  1314. msgstr "Actualización del firmware."
  1315. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:44
  1316. msgctxt "@label"
  1317. msgid "Firmware update completed."
  1318. msgstr "Actualización del firmware completada."
  1319. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:46
  1320. msgctxt "@label"
  1321. msgid "Firmware update failed due to an unknown error."
  1322. msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
  1323. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:48
  1324. msgctxt "@label"
  1325. msgid "Firmware update failed due to an communication error."
  1326. msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
  1327. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:50
  1328. msgctxt "@label"
  1329. msgid "Firmware update failed due to an input/output error."
  1330. msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
  1331. #: /home/ruben/Projects/Cura/plugins/USBPrinting/FirmwareUpdateWindow.qml:52
  1332. msgctxt "@label"
  1333. msgid "Firmware update failed due to missing firmware."
  1334. msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
  1335. #: /home/ruben/Projects/Cura/plugins/UserAgreement/UserAgreement.qml:16
  1336. msgctxt "@title:window"
  1337. msgid "User Agreement"
  1338. msgstr "Acuerdo de usuario"
  1339. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:57
  1340. msgctxt "@window:title"
  1341. msgid "Existing Connection"
  1342. msgstr "Conexión existente"
  1343. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:59
  1344. msgctxt "@message:text"
  1345. msgid "This printer/group is already added to Cura. Please select another printer/group."
  1346. msgstr "Esta impresora o grupo de impresoras ya se ha añadido a Cura. Seleccione otra impresora o grupo de impresoras."
  1347. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:76
  1348. msgctxt "@title:window"
  1349. msgid "Connect to Networked Printer"
  1350. msgstr "Conectar con la impresora en red"
  1351. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:86
  1352. msgctxt "@label"
  1353. msgid ""
  1354. "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.\n"
  1355. "\n"
  1356. "Select your printer from the list below:"
  1357. msgstr "Para imprimir directamente en la impresora a través de la red, asegúrese de que esta está conectada a la red utilizando 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.\n\nSeleccione la impresora de la siguiente lista:"
  1358. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:96
  1359. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:42
  1360. msgctxt "@action:button"
  1361. msgid "Add"
  1362. msgstr "Agregar"
  1363. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:106
  1364. msgctxt "@action:button"
  1365. msgid "Edit"
  1366. msgstr "Editar"
  1367. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:117
  1368. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  1369. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:117
  1370. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:132
  1371. msgctxt "@action:button"
  1372. msgid "Remove"
  1373. msgstr "Eliminar"
  1374. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:125
  1375. msgctxt "@action:button"
  1376. msgid "Refresh"
  1377. msgstr "Actualizar"
  1378. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:218
  1379. msgctxt "@label"
  1380. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1381. 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>"
  1382. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:245
  1383. msgctxt "@label"
  1384. msgid "Type"
  1385. msgstr "Tipo"
  1386. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:282
  1387. msgctxt "@label"
  1388. msgid "Firmware version"
  1389. msgstr "Versión de firmware"
  1390. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:294
  1391. msgctxt "@label"
  1392. msgid "Address"
  1393. msgstr "Dirección"
  1394. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:316
  1395. msgctxt "@label"
  1396. msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  1397. msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3."
  1398. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:320
  1399. msgctxt "@label"
  1400. msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  1401. msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3."
  1402. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:330
  1403. msgctxt "@label"
  1404. msgid "The printer at this address has not yet responded."
  1405. msgstr "La impresora todavía no ha respondido en esta dirección."
  1406. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:335
  1407. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:39
  1408. msgctxt "@action:button"
  1409. msgid "Connect"
  1410. msgstr "Conectar"
  1411. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:349
  1412. msgctxt "@title:window"
  1413. msgid "Printer Address"
  1414. msgstr "Dirección de la impresora"
  1415. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:377
  1416. msgctxt "@alabel"
  1417. msgid "Enter the IP address or hostname of your printer on the network."
  1418. msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red."
  1419. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/DiscoverUM3Action.qml:407
  1420. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:132
  1421. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:181
  1422. msgctxt "@action:button"
  1423. msgid "OK"
  1424. msgstr "Aceptar"
  1425. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:30
  1426. msgctxt "@title:window"
  1427. msgid "Print over network"
  1428. msgstr "Imprimir a través de la red"
  1429. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:61
  1430. msgctxt "@label"
  1431. msgid "Printer selection"
  1432. msgstr "Selección de la impresora"
  1433. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrintWindow.qml:100
  1434. msgctxt "@action:button"
  1435. msgid "Print"
  1436. msgstr "Imprimir"
  1437. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:36
  1438. msgctxt "@label: arg 1 is group name"
  1439. msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  1440. msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  1441. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterMonitorItem.qml:55
  1442. msgctxt "@label link to connect manager"
  1443. msgid "Add/Remove printers"
  1444. msgstr "Agregar/eliminar impresoras"
  1445. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:14
  1446. msgctxt "@info:tooltip"
  1447. msgid "Opens the print jobs page with your default web browser."
  1448. msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  1449. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/OpenPanelButton.qml:15
  1450. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:130
  1451. msgctxt "@action:button"
  1452. msgid "View print jobs"
  1453. msgstr "Ver trabajos de impresión"
  1454. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:37
  1455. msgctxt "@label:status"
  1456. msgid "Preparing to print"
  1457. msgstr "Preparando para impresión"
  1458. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:39
  1459. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:263
  1460. msgctxt "@label:status"
  1461. msgid "Printing"
  1462. msgstr "Imprimiendo"
  1463. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:41
  1464. msgctxt "@label:status"
  1465. msgid "Available"
  1466. msgstr "Disponible"
  1467. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:43
  1468. msgctxt "@label:status"
  1469. msgid "Lost connection with the printer"
  1470. msgstr "Se ha perdido la conexión con la impresora."
  1471. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:45
  1472. msgctxt "@label:status"
  1473. msgid "Unavailable"
  1474. msgstr "No disponible"
  1475. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:47
  1476. msgctxt "@label:status"
  1477. msgid "Unknown"
  1478. msgstr "Desconocido"
  1479. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:249
  1480. msgctxt "@label:status"
  1481. msgid "Disabled"
  1482. msgstr "Deshabilitado"
  1483. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:265
  1484. msgctxt "@label:status"
  1485. msgid "Reserved"
  1486. msgstr "Reservado"
  1487. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:268
  1488. msgctxt "@label:status"
  1489. msgid "Finished"
  1490. msgstr "Terminado"
  1491. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:271
  1492. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:392
  1493. msgctxt "@label"
  1494. msgid "Preparing to print"
  1495. msgstr "Preparando para impresión"
  1496. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:273
  1497. msgctxt "@label:status"
  1498. msgid "Action required"
  1499. msgstr "Acción requerida"
  1500. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:276
  1501. msgctxt "@label:status"
  1502. msgid "Paused"
  1503. msgstr "En pausa"
  1504. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:278
  1505. msgctxt "@label:status"
  1506. msgid "Resuming"
  1507. msgstr "Reanudando"
  1508. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:280
  1509. msgctxt "@label:status"
  1510. msgid "Print aborted"
  1511. msgstr "Impresión cancelada"
  1512. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:373
  1513. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:394
  1514. msgctxt "@label"
  1515. msgid "Not accepting print jobs"
  1516. msgstr "No se aceptan trabajos de impresión"
  1517. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:387
  1518. msgctxt "@label"
  1519. msgid "Finishes at: "
  1520. msgstr "Termina a las: "
  1521. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:389
  1522. msgctxt "@label"
  1523. msgid "Clear build plate"
  1524. msgstr "Borrar placa de impresión"
  1525. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/PrinterInfoBlock.qml:396
  1526. msgctxt "@label"
  1527. msgid "Waiting for configuration change"
  1528. msgstr "Esperando a que se cambie la configuración"
  1529. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:63
  1530. msgctxt "@title"
  1531. msgid "Print jobs"
  1532. msgstr "Trabajos de impresión"
  1533. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:93
  1534. msgctxt "@label"
  1535. msgid "Printing"
  1536. msgstr "Imprimiendo"
  1537. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:111
  1538. msgctxt "@label"
  1539. msgid "Queued"
  1540. msgstr "En cola"
  1541. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:170
  1542. msgctxt "@label:title"
  1543. msgid "Printers"
  1544. msgstr "Impresoras"
  1545. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/ClusterControlItem.qml:224
  1546. msgctxt "@action:button"
  1547. msgid "View printers"
  1548. msgstr "Ver impresoras"
  1549. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:38
  1550. msgctxt "@info:tooltip"
  1551. msgid "Connect to a printer"
  1552. msgstr "Conecta a una impresora."
  1553. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:117
  1554. msgctxt "@info:tooltip"
  1555. msgid "Load the configuration of the printer into Cura"
  1556. msgstr "Carga la configuración de la impresora en Cura."
  1557. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/UM3InfoComponents.qml:118
  1558. msgctxt "@action:button"
  1559. msgid "Activate Configuration"
  1560. msgstr "Activar configuración"
  1561. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:117
  1562. msgctxt "@label"
  1563. msgid "Color scheme"
  1564. msgstr "Combinación de colores"
  1565. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:132
  1566. msgctxt "@label:listbox"
  1567. msgid "Material Color"
  1568. msgstr "Color del material"
  1569. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:136
  1570. msgctxt "@label:listbox"
  1571. msgid "Line Type"
  1572. msgstr "Tipo de línea"
  1573. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:140
  1574. msgctxt "@label:listbox"
  1575. msgid "Feedrate"
  1576. msgstr "Velocidad"
  1577. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:144
  1578. msgctxt "@label:listbox"
  1579. msgid "Layer thickness"
  1580. msgstr "Grosor de la capa"
  1581. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:185
  1582. msgctxt "@label"
  1583. msgid "Compatibility Mode"
  1584. msgstr "Modo de compatibilidad"
  1585. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:264
  1586. msgctxt "@label"
  1587. msgid "Show Travels"
  1588. msgstr "Mostrar desplazamientos"
  1589. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:270
  1590. msgctxt "@label"
  1591. msgid "Show Helpers"
  1592. msgstr "Mostrar asistentes"
  1593. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:276
  1594. msgctxt "@label"
  1595. msgid "Show Shell"
  1596. msgstr "Mostrar perímetro"
  1597. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:282
  1598. msgctxt "@label"
  1599. msgid "Show Infill"
  1600. msgstr "Mostrar relleno"
  1601. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:330
  1602. msgctxt "@label"
  1603. msgid "Only Show Top Layers"
  1604. msgstr "Mostrar solo capas superiores"
  1605. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:339
  1606. msgctxt "@label"
  1607. msgid "Show 5 Detailed Layers On Top"
  1608. msgstr "Mostrar cinco capas detalladas en la parte superior"
  1609. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:350
  1610. msgctxt "@label"
  1611. msgid "Top / Bottom"
  1612. msgstr "Superior o inferior"
  1613. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:354
  1614. msgctxt "@label"
  1615. msgid "Inner Wall"
  1616. msgstr "Pared interior"
  1617. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:410
  1618. msgctxt "@label"
  1619. msgid "min"
  1620. msgstr "mín."
  1621. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.qml:452
  1622. msgctxt "@label"
  1623. msgid "max"
  1624. msgstr "máx."
  1625. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1626. msgctxt "@title:window"
  1627. msgid "Post Processing Plugin"
  1628. msgstr "Complemento de posprocesamiento"
  1629. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1630. msgctxt "@label"
  1631. msgid "Post Processing Scripts"
  1632. msgstr "Secuencias de comandos de posprocesamiento"
  1633. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:225
  1634. msgctxt "@action"
  1635. msgid "Add a script"
  1636. msgstr "Añadir secuencia de comando"
  1637. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:271
  1638. msgctxt "@label"
  1639. msgid "Settings"
  1640. msgstr "Ajustes"
  1641. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:474
  1642. msgctxt "@info:tooltip"
  1643. msgid "Change active post-processing scripts"
  1644. msgstr "Cambia las secuencias de comandos de posprocesamiento."
  1645. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  1646. msgctxt "@title:window"
  1647. msgid "More information on anonymous data collection"
  1648. msgstr "Más información sobre la recopilación de datos anónimos"
  1649. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:66
  1650. msgctxt "@text:window"
  1651. msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  1652. msgstr "Cura envía datos anónimos a Ultimaker para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se han enviado."
  1653. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:101
  1654. msgctxt "@text:window"
  1655. msgid "I don't want to send these data"
  1656. msgstr "No quiero enviar estos datos"
  1657. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:111
  1658. msgctxt "@text:window"
  1659. msgid "Allow sending these data to Ultimaker and help us improve Cura"
  1660. msgstr "Permita enviar estos datos a Ultimaker y ayúdenos a mejorar Cura"
  1661. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1662. msgctxt "@title:window"
  1663. msgid "Convert Image..."
  1664. msgstr "Convertir imagen..."
  1665. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1666. msgctxt "@info:tooltip"
  1667. msgid "The maximum distance of each pixel from \"Base.\""
  1668. msgstr "La distancia máxima de cada píxel desde la \"Base\"."
  1669. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1670. msgctxt "@action:label"
  1671. msgid "Height (mm)"
  1672. msgstr "Altura (mm)"
  1673. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1674. msgctxt "@info:tooltip"
  1675. msgid "The base height from the build plate in millimeters."
  1676. msgstr "La altura de la base desde la placa de impresión en milímetros."
  1677. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1678. msgctxt "@action:label"
  1679. msgid "Base (mm)"
  1680. msgstr "Base (mm)"
  1681. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1682. msgctxt "@info:tooltip"
  1683. msgid "The width in millimeters on the build plate."
  1684. msgstr "La anchura en milímetros en la placa de impresión."
  1685. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1686. msgctxt "@action:label"
  1687. msgid "Width (mm)"
  1688. msgstr "Anchura (mm)"
  1689. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1690. msgctxt "@info:tooltip"
  1691. msgid "The depth in millimeters on the build plate"
  1692. msgstr "La profundidad en milímetros en la placa de impresión"
  1693. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1694. msgctxt "@action:label"
  1695. msgid "Depth (mm)"
  1696. msgstr "Profundidad (mm)"
  1697. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1698. msgctxt "@info:tooltip"
  1699. msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  1700. msgstr "De manera predeterminada, los píxeles blancos representan los puntos altos de la malla y los píxeles negros representan los puntos bajos de la malla. Cambie esta opción para invertir el comportamiento de tal manera que los píxeles negros representen los puntos altos de la malla y los píxeles blancos representen los puntos bajos de la malla."
  1701. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1702. msgctxt "@item:inlistbox"
  1703. msgid "Lighter is higher"
  1704. msgstr "Cuanto más claro más alto"
  1705. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1706. msgctxt "@item:inlistbox"
  1707. msgid "Darker is higher"
  1708. msgstr "Cuanto más oscuro más alto"
  1709. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1710. msgctxt "@info:tooltip"
  1711. msgid "The amount of smoothing to apply to the image."
  1712. msgstr "La cantidad de suavizado que se aplica a la imagen."
  1713. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:154
  1714. msgctxt "@action:label"
  1715. msgid "Smoothing"
  1716. msgstr "Suavizado"
  1717. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:38
  1718. msgctxt "@label"
  1719. msgid "Mesh Type"
  1720. msgstr "Tipo de malla"
  1721. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:69
  1722. msgctxt "@label"
  1723. msgid "Normal model"
  1724. msgstr "Modelo normal"
  1725. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:76
  1726. msgctxt "@label"
  1727. msgid "Print as support"
  1728. msgstr "Imprimir según compatibilidad"
  1729. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:84
  1730. msgctxt "@label"
  1731. msgid "Don't support overlap with other models"
  1732. msgstr "No es compatible la superposición con otros modelos"
  1733. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:92
  1734. msgctxt "@label"
  1735. msgid "Modify settings for overlap with other models"
  1736. msgstr "Modificar ajustes para superponer con otros modelos"
  1737. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:100
  1738. msgctxt "@label"
  1739. msgid "Modify settings for infill of other models"
  1740. msgstr "Modificar ajustes para rellenar con otros modelos"
  1741. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:342
  1742. msgctxt "@action:button"
  1743. msgid "Select settings"
  1744. msgstr "Seleccionar ajustes"
  1745. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:384
  1746. msgctxt "@title:window"
  1747. msgid "Select Settings to Customize for this model"
  1748. msgstr "Seleccionar ajustes o personalizar este modelo"
  1749. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:432
  1750. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:98
  1751. msgctxt "@label:textbox"
  1752. msgid "Filter..."
  1753. msgstr "Filtrar..."
  1754. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:446
  1755. msgctxt "@label:checkbox"
  1756. msgid "Show all"
  1757. msgstr "Mostrar todo"
  1758. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  1759. msgctxt "@title:window"
  1760. msgid "Open Project"
  1761. msgstr "Abrir proyecto"
  1762. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:58
  1763. msgctxt "@action:ComboBox option"
  1764. msgid "Update existing"
  1765. msgstr "Actualizar existente"
  1766. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:59
  1767. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:116
  1768. msgctxt "@action:ComboBox option"
  1769. msgid "Create new"
  1770. msgstr "Crear nuevo"
  1771. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70
  1772. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:68
  1773. msgctxt "@action:title"
  1774. msgid "Summary - Cura Project"
  1775. msgstr "Resumen: proyecto de Cura"
  1776. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92
  1777. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:92
  1778. msgctxt "@action:label"
  1779. msgid "Printer settings"
  1780. msgstr "Ajustes de la impresora"
  1781. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108
  1782. msgctxt "@info:tooltip"
  1783. msgid "How should the conflict in the machine be resolved?"
  1784. msgstr "¿Cómo debería solucionarse el conflicto en la máquina?"
  1785. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:115
  1786. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:124
  1787. msgctxt "@action:ComboBox option"
  1788. msgid "Update"
  1789. msgstr "Actualizar"
  1790. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143
  1791. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:101
  1792. msgctxt "@action:label"
  1793. msgid "Type"
  1794. msgstr "Tipo"
  1795. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:159
  1796. msgctxt "@action:label"
  1797. msgid "Printer Group"
  1798. msgstr "Grupo de impresoras"
  1799. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180
  1800. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:192
  1801. msgctxt "@action:label"
  1802. msgid "Profile settings"
  1803. msgstr "Ajustes del perfil"
  1804. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:196
  1805. msgctxt "@info:tooltip"
  1806. msgid "How should the conflict in the profile be resolved?"
  1807. msgstr "¿Cómo debería solucionarse el conflicto en el perfil?"
  1808. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216
  1809. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:308
  1810. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:216
  1811. msgctxt "@action:label"
  1812. msgid "Name"
  1813. msgstr "Nombre"
  1814. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  1815. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:200
  1816. msgctxt "@action:label"
  1817. msgid "Not in profile"
  1818. msgstr "No está en el perfil"
  1819. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:236
  1820. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:205
  1821. msgctxt "@action:label"
  1822. msgid "%1 override"
  1823. msgid_plural "%1 overrides"
  1824. msgstr[0] "%1 sobrescrito"
  1825. msgstr[1] "%1 sobrescritos"
  1826. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:247
  1827. msgctxt "@action:label"
  1828. msgid "Derivative from"
  1829. msgstr "Derivado de"
  1830. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:252
  1831. msgctxt "@action:label"
  1832. msgid "%1, %2 override"
  1833. msgid_plural "%1, %2 overrides"
  1834. msgstr[0] "%1, %2 sobrescrito"
  1835. msgstr[1] "%1, %2 sobrescritos"
  1836. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:268
  1837. msgctxt "@action:label"
  1838. msgid "Material settings"
  1839. msgstr "Ajustes del material"
  1840. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  1841. msgctxt "@info:tooltip"
  1842. msgid "How should the conflict in the material be resolved?"
  1843. msgstr "¿Cómo debería solucionarse el conflicto en el material?"
  1844. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:327
  1845. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:233
  1846. msgctxt "@action:label"
  1847. msgid "Setting visibility"
  1848. msgstr "Visibilidad de los ajustes"
  1849. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:336
  1850. msgctxt "@action:label"
  1851. msgid "Mode"
  1852. msgstr "Modo"
  1853. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  1854. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:242
  1855. msgctxt "@action:label"
  1856. msgid "Visible settings:"
  1857. msgstr "Ajustes visibles:"
  1858. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:357
  1859. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:247
  1860. msgctxt "@action:label"
  1861. msgid "%1 out of %2"
  1862. msgstr "%1 de un total de %2"
  1863. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:383
  1864. msgctxt "@action:warning"
  1865. msgid "Loading a project will clear all models on the build plate."
  1866. msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  1867. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:401
  1868. msgctxt "@action:button"
  1869. msgid "Open"
  1870. msgstr "Abrir"
  1871. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:26
  1872. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:25
  1873. msgctxt "@title"
  1874. msgid "Select Printer Upgrades"
  1875. msgstr "Seleccionar actualizaciones de impresora"
  1876. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:38
  1877. msgctxt "@label"
  1878. msgid "Please select any upgrades made to this Ultimaker 2."
  1879. msgstr "Seleccione cualquier actualización de este Ultimaker 2."
  1880. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UM2UpgradeSelectionMachineAction.qml:47
  1881. msgctxt "@label"
  1882. msgid "Olsson Block"
  1883. msgstr "Bloque Olsson"
  1884. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:27
  1885. msgctxt "@title"
  1886. msgid "Build Plate Leveling"
  1887. msgstr "Nivelación de la placa de impresión"
  1888. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:38
  1889. msgctxt "@label"
  1890. 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."
  1891. 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."
  1892. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:47
  1893. msgctxt "@label"
  1894. 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."
  1895. 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."
  1896. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:62
  1897. msgctxt "@action:button"
  1898. msgid "Start Build Plate Leveling"
  1899. msgstr "Iniciar nivelación de la placa de impresión"
  1900. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:74
  1901. msgctxt "@action:button"
  1902. msgid "Move to Next Position"
  1903. msgstr "Mover a la siguiente posición"
  1904. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:30
  1905. msgctxt "@title"
  1906. msgid "Upgrade Firmware"
  1907. msgstr "Actualización de firmware"
  1908. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:41
  1909. msgctxt "@label"
  1910. 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."
  1911. 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."
  1912. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:51
  1913. msgctxt "@label"
  1914. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1915. msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
  1916. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:65
  1917. msgctxt "@action:button"
  1918. msgid "Automatically upgrade Firmware"
  1919. msgstr "Actualización de firmware automática"
  1920. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:75
  1921. msgctxt "@action:button"
  1922. msgid "Upload custom Firmware"
  1923. msgstr "Cargar firmware personalizado"
  1924. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UpgradeFirmwareMachineAction.qml:87
  1925. msgctxt "@title:window"
  1926. msgid "Select custom firmware"
  1927. msgstr "Seleccionar firmware personalizado"
  1928. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:37
  1929. msgctxt "@label"
  1930. msgid "Please select any upgrades made to this Ultimaker Original"
  1931. msgstr "Seleccione cualquier actualización de Ultimaker Original."
  1932. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:45
  1933. msgctxt "@label"
  1934. msgid "Heated Build Plate (official kit or self-built)"
  1935. msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
  1936. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:27
  1937. msgctxt "@title"
  1938. msgid "Check Printer"
  1939. msgstr "Comprobar impresora"
  1940. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:39
  1941. msgctxt "@label"
  1942. msgid "It's a good idea to do a few sanity checks on your Ultimaker. You can skip this step if you know your machine is functional"
  1943. msgstr "Es una buena idea hacer un par de comprobaciones en su Ultimaker. Puede omitir este paso si usted sabe que su máquina funciona correctamente"
  1944. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:53
  1945. msgctxt "@action:button"
  1946. msgid "Start Printer Check"
  1947. msgstr "Iniciar comprobación de impresora"
  1948. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:80
  1949. msgctxt "@label"
  1950. msgid "Connection: "
  1951. msgstr "Conexión: "
  1952. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:89
  1953. msgctxt "@info:status"
  1954. msgid "Connected"
  1955. msgstr "Conectado"
  1956. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:89
  1957. msgctxt "@info:status"
  1958. msgid "Not connected"
  1959. msgstr "Sin conexión"
  1960. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:99
  1961. msgctxt "@label"
  1962. msgid "Min endstop X: "
  1963. msgstr "Parada final mín. en X: "
  1964. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:109
  1965. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:130
  1966. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:151
  1967. msgctxt "@info:status"
  1968. msgid "Works"
  1969. msgstr "Funciona"
  1970. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:109
  1971. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:130
  1972. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:151
  1973. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:173
  1974. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:234
  1975. msgctxt "@info:status"
  1976. msgid "Not checked"
  1977. msgstr "Sin comprobar"
  1978. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:120
  1979. msgctxt "@label"
  1980. msgid "Min endstop Y: "
  1981. msgstr "Parada final mín. en Y: "
  1982. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:141
  1983. msgctxt "@label"
  1984. msgid "Min endstop Z: "
  1985. msgstr "Parada final mín. en Z: "
  1986. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:163
  1987. msgctxt "@label"
  1988. msgid "Nozzle temperature check: "
  1989. msgstr "Comprobación de la temperatura de la tobera: "
  1990. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:187
  1991. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:248
  1992. msgctxt "@action:button"
  1993. msgid "Stop Heating"
  1994. msgstr "Detener calentamiento"
  1995. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:187
  1996. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:248
  1997. msgctxt "@action:button"
  1998. msgid "Start Heating"
  1999. msgstr "Iniciar calentamiento"
  2000. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:223
  2001. msgctxt "@label"
  2002. msgid "Build plate temperature check:"
  2003. msgstr "Comprobación de la temperatura de la placa de impresión:"
  2004. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:234
  2005. msgctxt "@info:status"
  2006. msgid "Checked"
  2007. msgstr "Comprobada"
  2008. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml:284
  2009. msgctxt "@label"
  2010. msgid "Everything is in order! You're done with your CheckUp."
  2011. msgstr "¡Todo correcto! Ha terminado con la comprobación."
  2012. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:119
  2013. msgctxt "@label:MonitorStatus"
  2014. msgid "Not connected to a printer"
  2015. msgstr "No está conectado a ninguna impresora."
  2016. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:123
  2017. msgctxt "@label:MonitorStatus"
  2018. msgid "Printer does not accept commands"
  2019. msgstr "La impresora no acepta comandos."
  2020. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:133
  2021. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:197
  2022. msgctxt "@label:MonitorStatus"
  2023. msgid "In maintenance. Please check the printer"
  2024. msgstr "En mantenimiento. Compruebe la impresora."
  2025. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:144
  2026. msgctxt "@label:MonitorStatus"
  2027. msgid "Lost connection with the printer"
  2028. msgstr "Se ha perdido la conexión con la impresora."
  2029. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:146
  2030. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:187
  2031. msgctxt "@label:MonitorStatus"
  2032. msgid "Printing..."
  2033. msgstr "Imprimiendo..."
  2034. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:149
  2035. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:189
  2036. msgctxt "@label:MonitorStatus"
  2037. msgid "Paused"
  2038. msgstr "En pausa"
  2039. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:152
  2040. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:191
  2041. msgctxt "@label:MonitorStatus"
  2042. msgid "Preparing..."
  2043. msgstr "Preparando..."
  2044. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:154
  2045. msgctxt "@label:MonitorStatus"
  2046. msgid "Please remove the print"
  2047. msgstr "Retire la impresión."
  2048. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284
  2049. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293
  2050. msgctxt "@label:"
  2051. msgid "Pause"
  2052. msgstr "Pausar"
  2053. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289
  2054. msgctxt "@label:"
  2055. msgid "Resume"
  2056. msgstr "Reanudar"
  2057. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325
  2058. msgctxt "@label:"
  2059. msgid "Abort Print"
  2060. msgstr "Cancelar impresión"
  2061. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335
  2062. msgctxt "@window:title"
  2063. msgid "Abort print"
  2064. msgstr "Cancela la impresión"
  2065. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337
  2066. msgctxt "@label"
  2067. msgid "Are you sure you want to abort the print?"
  2068. msgstr "¿Está seguro de que desea cancelar la impresión?"
  2069. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:15
  2070. msgctxt "@title:window"
  2071. msgid "Discard or Keep changes"
  2072. msgstr "Descartar o guardar cambios"
  2073. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:57
  2074. msgctxt "@text:window"
  2075. msgid ""
  2076. "You have customized some profile settings.\n"
  2077. "Would you like to keep or discard those settings?"
  2078. msgstr "Ha personalizado parte de los ajustes del perfil.\n¿Desea descartar los cambios o guardarlos?"
  2079. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:110
  2080. msgctxt "@title:column"
  2081. msgid "Profile settings"
  2082. msgstr "Ajustes del perfil"
  2083. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:117
  2084. msgctxt "@title:column"
  2085. msgid "Default"
  2086. msgstr "Valor predeterminado"
  2087. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:124
  2088. msgctxt "@title:column"
  2089. msgid "Customized"
  2090. msgstr "Valor personalizado"
  2091. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:157
  2092. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:634
  2093. msgctxt "@option:discardOrKeep"
  2094. msgid "Always ask me this"
  2095. msgstr "Preguntar siempre"
  2096. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:158
  2097. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635
  2098. msgctxt "@option:discardOrKeep"
  2099. msgid "Discard and never ask again"
  2100. msgstr "Descartar y no volver a preguntar"
  2101. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:159
  2102. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:636
  2103. msgctxt "@option:discardOrKeep"
  2104. msgid "Keep and never ask again"
  2105. msgstr "Guardar y no volver a preguntar"
  2106. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:196
  2107. msgctxt "@action:button"
  2108. msgid "Discard"
  2109. msgstr "Descartar"
  2110. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:209
  2111. msgctxt "@action:button"
  2112. msgid "Keep"
  2113. msgstr "Guardar"
  2114. #: /home/ruben/Projects/Cura/resources/qml/DiscardOrKeepProfileChangesDialog.qml:222
  2115. msgctxt "@action:button"
  2116. msgid "Create New Profile"
  2117. msgstr "Crear nuevo perfil"
  2118. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:65
  2119. msgctxt "@title"
  2120. msgid "Information"
  2121. msgstr "Información"
  2122. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:94
  2123. msgctxt "@title:window"
  2124. msgid "Confirm Diameter Change"
  2125. msgstr "Confirmar cambio de diámetro"
  2126. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:95
  2127. msgctxt "@label (%1 is a number)"
  2128. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  2129. msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
  2130. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:128
  2131. msgctxt "@label"
  2132. msgid "Display Name"
  2133. msgstr "Mostrar nombre"
  2134. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:138
  2135. msgctxt "@label"
  2136. msgid "Brand"
  2137. msgstr "Marca"
  2138. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:148
  2139. msgctxt "@label"
  2140. msgid "Material Type"
  2141. msgstr "Tipo de material"
  2142. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:157
  2143. msgctxt "@label"
  2144. msgid "Color"
  2145. msgstr "Color"
  2146. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:201
  2147. msgctxt "@label"
  2148. msgid "Properties"
  2149. msgstr "Propiedades"
  2150. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:203
  2151. msgctxt "@label"
  2152. msgid "Density"
  2153. msgstr "Densidad"
  2154. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:218
  2155. msgctxt "@label"
  2156. msgid "Diameter"
  2157. msgstr "Diámetro"
  2158. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:253
  2159. msgctxt "@label"
  2160. msgid "Filament Cost"
  2161. msgstr "Coste del filamento"
  2162. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:269
  2163. msgctxt "@label"
  2164. msgid "Filament weight"
  2165. msgstr "Anchura del filamento"
  2166. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:286
  2167. msgctxt "@label"
  2168. msgid "Filament length"
  2169. msgstr "Longitud del filamento"
  2170. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:295
  2171. msgctxt "@label"
  2172. msgid "Cost per Meter"
  2173. msgstr "Coste por metro"
  2174. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:309
  2175. msgctxt "@label"
  2176. msgid "This material is linked to %1 and shares some of its properties."
  2177. msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
  2178. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:316
  2179. msgctxt "@label"
  2180. msgid "Unlink Material"
  2181. msgstr "Desvincular material"
  2182. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:327
  2183. msgctxt "@label"
  2184. msgid "Description"
  2185. msgstr "Descripción"
  2186. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:340
  2187. msgctxt "@label"
  2188. msgid "Adhesion Information"
  2189. msgstr "Información sobre adherencia"
  2190. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialView.qml:366
  2191. msgctxt "@label"
  2192. msgid "Print settings"
  2193. msgstr "Ajustes de impresión"
  2194. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  2195. msgctxt "@title:tab"
  2196. msgid "Setting Visibility"
  2197. msgstr "Visibilidad de los ajustes"
  2198. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:50
  2199. msgctxt "@label:textbox"
  2200. msgid "Check all"
  2201. msgstr "Comprobar todo"
  2202. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:47
  2203. msgctxt "@info:status"
  2204. msgid "Calculated"
  2205. msgstr "Calculado"
  2206. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:60
  2207. msgctxt "@title:column"
  2208. msgid "Setting"
  2209. msgstr "Ajustes"
  2210. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:67
  2211. msgctxt "@title:column"
  2212. msgid "Profile"
  2213. msgstr "Perfil"
  2214. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:74
  2215. msgctxt "@title:column"
  2216. msgid "Current"
  2217. msgstr "Actual"
  2218. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  2219. msgctxt "@title:column"
  2220. msgid "Unit"
  2221. msgstr "Unidad"
  2222. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2223. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:531
  2224. msgctxt "@title:tab"
  2225. msgid "General"
  2226. msgstr "General"
  2227. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:141
  2228. msgctxt "@label"
  2229. msgid "Interface"
  2230. msgstr "Interfaz"
  2231. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:152
  2232. msgctxt "@label"
  2233. msgid "Language:"
  2234. msgstr "Idioma:"
  2235. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:220
  2236. msgctxt "@label"
  2237. msgid "Currency:"
  2238. msgstr "Moneda:"
  2239. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:234
  2240. msgctxt "@label"
  2241. msgid "Theme:"
  2242. msgstr "Tema:"
  2243. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:294
  2244. msgctxt "@label"
  2245. msgid "You will need to restart the application for these changes to have effect."
  2246. msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
  2247. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:311
  2248. msgctxt "@info:tooltip"
  2249. msgid "Slice automatically when changing settings."
  2250. msgstr "Segmentar automáticamente al cambiar los ajustes."
  2251. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:319
  2252. msgctxt "@option:check"
  2253. msgid "Slice automatically"
  2254. msgstr "Segmentar automáticamente"
  2255. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:333
  2256. msgctxt "@label"
  2257. msgid "Viewport behavior"
  2258. msgstr "Comportamiento de la ventanilla"
  2259. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:341
  2260. msgctxt "@info:tooltip"
  2261. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  2262. msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
  2263. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:350
  2264. msgctxt "@option:check"
  2265. msgid "Display overhang"
  2266. msgstr "Mostrar voladizos"
  2267. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:357
  2268. msgctxt "@info:tooltip"
  2269. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  2270. msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo."
  2271. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:362
  2272. msgctxt "@action:button"
  2273. msgid "Center camera when item is selected"
  2274. msgstr "Centrar cámara cuando se selecciona elemento"
  2275. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:371
  2276. msgctxt "@info:tooltip"
  2277. msgid "Should the default zoom behavior of cura be inverted?"
  2278. msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
  2279. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:376
  2280. msgctxt "@action:button"
  2281. msgid "Invert the direction of camera zoom."
  2282. msgstr "Invertir la dirección del zoom de la cámara."
  2283. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:386
  2284. msgctxt "@info:tooltip"
  2285. msgid "Should zooming move in the direction of the mouse?"
  2286. msgstr "¿Debería moverse el zoom en la dirección del ratón?"
  2287. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:391
  2288. msgctxt "@action:button"
  2289. msgid "Zoom toward mouse direction"
  2290. msgstr "Hacer zoom en la dirección del ratón"
  2291. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:401
  2292. msgctxt "@info:tooltip"
  2293. msgid "Should models on the platform be moved so that they no longer intersect?"
  2294. msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
  2295. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:406
  2296. msgctxt "@option:check"
  2297. msgid "Ensure models are kept apart"
  2298. msgstr "Asegúrese de que lo modelos están separados."
  2299. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:415
  2300. msgctxt "@info:tooltip"
  2301. msgid "Should models on the platform be moved down to touch the build plate?"
  2302. msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
  2303. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:420
  2304. msgctxt "@option:check"
  2305. msgid "Automatically drop models to the build plate"
  2306. msgstr "Arrastrar modelos a la placa de impresión de forma automática"
  2307. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:432
  2308. msgctxt "@info:tooltip"
  2309. msgid "Show caution message in g-code reader."
  2310. msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
  2311. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:441
  2312. msgctxt "@option:check"
  2313. msgid "Caution message in g-code reader"
  2314. msgstr "Mensaje de advertencia en el lector de GCode"
  2315. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:449
  2316. msgctxt "@info:tooltip"
  2317. msgid "Should layer be forced into compatibility mode?"
  2318. msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
  2319. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:454
  2320. msgctxt "@option:check"
  2321. msgid "Force layer view compatibility mode (restart required)"
  2322. msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
  2323. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:470
  2324. msgctxt "@label"
  2325. msgid "Opening and saving files"
  2326. msgstr "Abrir y guardar archivos"
  2327. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:477
  2328. msgctxt "@info:tooltip"
  2329. msgid "Should models be scaled to the build volume if they are too large?"
  2330. msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
  2331. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:482
  2332. msgctxt "@option:check"
  2333. msgid "Scale large models"
  2334. msgstr "Escalar modelos de gran tamaño"
  2335. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:492
  2336. msgctxt "@info:tooltip"
  2337. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  2338. msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
  2339. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:497
  2340. msgctxt "@option:check"
  2341. msgid "Scale extremely small models"
  2342. msgstr "Escalar modelos demasiado pequeños"
  2343. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:507
  2344. msgctxt "@info:tooltip"
  2345. msgid "Should models be selected after they are loaded?"
  2346. msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
  2347. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:512
  2348. msgctxt "@option:check"
  2349. msgid "Select models when loaded"
  2350. msgstr "Seleccionar modelos al abrirlos"
  2351. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:522
  2352. msgctxt "@info:tooltip"
  2353. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2354. msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
  2355. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:527
  2356. msgctxt "@option:check"
  2357. msgid "Add machine prefix to job name"
  2358. msgstr "Agregar prefijo de la máquina al nombre del trabajo"
  2359. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:537
  2360. msgctxt "@info:tooltip"
  2361. msgid "Should a summary be shown when saving a project file?"
  2362. msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
  2363. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:541
  2364. msgctxt "@option:check"
  2365. msgid "Show summary dialog when saving project"
  2366. msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
  2367. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:551
  2368. msgctxt "@info:tooltip"
  2369. msgid "Default behavior when opening a project file"
  2370. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
  2371. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:559
  2372. msgctxt "@window:text"
  2373. msgid "Default behavior when opening a project file: "
  2374. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
  2375. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:573
  2376. msgctxt "@option:openProject"
  2377. msgid "Always ask"
  2378. msgstr "Preguntar siempre"
  2379. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:574
  2380. msgctxt "@option:openProject"
  2381. msgid "Always open as a project"
  2382. msgstr "Abrir siempre como un proyecto"
  2383. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  2384. msgctxt "@option:openProject"
  2385. msgid "Always import models"
  2386. msgstr "Importar modelos siempre"
  2387. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:611
  2388. msgctxt "@info:tooltip"
  2389. 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."
  2390. 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."
  2391. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  2392. msgctxt "@label"
  2393. msgid "Override Profile"
  2394. msgstr "Anular perfil"
  2395. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:670
  2396. msgctxt "@label"
  2397. msgid "Privacy"
  2398. msgstr "Privacidad"
  2399. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:678
  2400. msgctxt "@info:tooltip"
  2401. msgid "Should Cura check for updates when the program is started?"
  2402. msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
  2403. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683
  2404. msgctxt "@option:check"
  2405. msgid "Check for updates on start"
  2406. msgstr "Buscar actualizaciones al iniciar"
  2407. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:694
  2408. msgctxt "@info:tooltip"
  2409. 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."
  2410. 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."
  2411. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:699
  2412. msgctxt "@option:check"
  2413. msgid "Send (anonymous) print information"
  2414. msgstr "Enviar información (anónima) de impresión"
  2415. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708
  2416. msgctxt "@action:button"
  2417. msgid "More information"
  2418. msgstr "Más información"
  2419. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:726
  2420. msgctxt "@label"
  2421. msgid "Experimental"
  2422. msgstr "Experimental"
  2423. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
  2424. msgctxt "@info:tooltip"
  2425. msgid "Use multi build plate functionality"
  2426. msgstr "Utilizar funcionalidad de placa de impresión múltiple"
  2427. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:738
  2428. msgctxt "@option:check"
  2429. msgid "Use multi build plate functionality (restart required)"
  2430. msgstr "Utilizar funcionalidad de placa de impresión múltiple (reinicio requerido)"
  2431. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748
  2432. msgctxt "@info:tooltip"
  2433. msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  2434. msgstr "¿Los modelos recién cargados se deben organizar en la placa de impresión? Se han usado junto con la placa de impresión múltiple (EXPERIMENTAL)"
  2435. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:753
  2436. msgctxt "@option:check"
  2437. msgid "Do not arrange objects on load"
  2438. msgstr "No organizar objetos al cargar"
  2439. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2440. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:536
  2441. msgctxt "@title:tab"
  2442. msgid "Printers"
  2443. msgstr "Impresoras"
  2444. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:35
  2445. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:72
  2446. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:90
  2447. msgctxt "@action:button"
  2448. msgid "Activate"
  2449. msgstr "Activar"
  2450. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2451. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:129
  2452. msgctxt "@action:button"
  2453. msgid "Rename"
  2454. msgstr "Cambiar nombre"
  2455. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:147
  2456. msgctxt "@label"
  2457. msgid "Printer type:"
  2458. msgstr "Tipo de impresora:"
  2459. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:156
  2460. msgctxt "@label"
  2461. msgid "Connection:"
  2462. msgstr "Conexión:"
  2463. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:162
  2464. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:47
  2465. msgctxt "@info:status"
  2466. msgid "The printer is not connected."
  2467. msgstr "La impresora no está conectada."
  2468. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:168
  2469. msgctxt "@label"
  2470. msgid "State:"
  2471. msgstr "Estado:"
  2472. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:181
  2473. msgctxt "@label:MonitorStatus"
  2474. msgid "Waiting for a printjob"
  2475. msgstr "Esperando un trabajo de impresión..."
  2476. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:193
  2477. msgctxt "@label:MonitorStatus"
  2478. msgid "Waiting for someone to clear the build plate"
  2479. msgstr "Esperando a que alguien limpie la placa de impresión..."
  2480. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:199
  2481. msgctxt "@label:MonitorStatus"
  2482. msgid "Aborting print..."
  2483. msgstr "Cancelando impresión..."
  2484. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:36
  2485. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:540
  2486. msgctxt "@title:tab"
  2487. msgid "Profiles"
  2488. msgstr "Perfiles"
  2489. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  2490. msgctxt "@label"
  2491. msgid "Create"
  2492. msgstr "Crear"
  2493. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:102
  2494. msgctxt "@label"
  2495. msgid "Duplicate"
  2496. msgstr "Duplicado"
  2497. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  2498. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:145
  2499. msgctxt "@action:button"
  2500. msgid "Import"
  2501. msgstr "Importar"
  2502. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  2503. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:158
  2504. msgctxt "@action:button"
  2505. msgid "Export"
  2506. msgstr "Exportar"
  2507. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  2508. msgctxt "@title:window"
  2509. msgid "Create Profile"
  2510. msgstr "Crear perfil"
  2511. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:225
  2512. msgctxt "@title:window"
  2513. msgid "Duplicate Profile"
  2514. msgstr "Duplicar perfil"
  2515. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:239
  2516. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:221
  2517. msgctxt "@title:window"
  2518. msgid "Confirm Remove"
  2519. msgstr "Confirmar eliminación"
  2520. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:240
  2521. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:222
  2522. msgctxt "@label (%1 is object name)"
  2523. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  2524. msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
  2525. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:256
  2526. msgctxt "@title:window"
  2527. msgid "Rename Profile"
  2528. msgstr "Cambiar nombre de perfil"
  2529. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:269
  2530. msgctxt "@title:window"
  2531. msgid "Import Profile"
  2532. msgstr "Importar perfil"
  2533. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:295
  2534. msgctxt "@title:window"
  2535. msgid "Export Profile"
  2536. msgstr "Exportar perfil"
  2537. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:350
  2538. msgctxt "@label %1 is printer name"
  2539. msgid "Printer: %1"
  2540. msgstr "Impresora: %1"
  2541. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389
  2542. msgctxt "@label"
  2543. msgid "Protected profiles"
  2544. msgstr "Perfiles protegidos"
  2545. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:389
  2546. msgctxt "@label"
  2547. msgid "Custom profiles"
  2548. msgstr "Perfiles personalizados"
  2549. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:468
  2550. msgctxt "@action:button"
  2551. msgid "Update profile with current settings/overrides"
  2552. msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
  2553. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:475
  2554. msgctxt "@action:button"
  2555. msgid "Discard current changes"
  2556. msgstr "Descartar cambios actuales"
  2557. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:492
  2558. msgctxt "@action:label"
  2559. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  2560. 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."
  2561. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:499
  2562. msgctxt "@action:label"
  2563. msgid "Your current settings match the selected profile."
  2564. msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
  2565. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:518
  2566. msgctxt "@title:tab"
  2567. msgid "Global Settings"
  2568. msgstr "Ajustes globales"
  2569. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:40
  2570. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:538
  2571. msgctxt "@title:tab"
  2572. msgid "Materials"
  2573. msgstr "Materiales"
  2574. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:105
  2575. msgctxt "@action:button"
  2576. msgid "Create"
  2577. msgstr "Crear"
  2578. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:118
  2579. msgctxt "@action:button"
  2580. msgid "Duplicate"
  2581. msgstr "Duplicado"
  2582. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:235
  2583. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:243
  2584. msgctxt "@title:window"
  2585. msgid "Import Material"
  2586. msgstr "Importar material"
  2587. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:244
  2588. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2589. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  2590. msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>."
  2591. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:248
  2592. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2593. msgid "Successfully imported material <filename>%1</filename>"
  2594. msgstr "El material se ha importado correctamente en <filename>%1</filename>."
  2595. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:266
  2596. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:274
  2597. msgctxt "@title:window"
  2598. msgid "Export Material"
  2599. msgstr "Exportar material"
  2600. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:278
  2601. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  2602. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  2603. msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>."
  2604. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:284
  2605. msgctxt "@info:status Don't translate the XML tag <filename>!"
  2606. msgid "Successfully exported material to <filename>%1</filename>"
  2607. msgstr "El material se ha exportado correctamente a <filename>%1</filename>."
  2608. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MaterialsPage.qml:337
  2609. msgctxt "@action:label"
  2610. msgid "Printer"
  2611. msgstr "Impresora"
  2612. #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:18
  2613. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:896
  2614. msgctxt "@title:window"
  2615. msgid "Add Printer"
  2616. msgstr "Agregar impresora"
  2617. #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:194
  2618. msgctxt "@label"
  2619. msgid "Printer Name:"
  2620. msgstr "Nombre de la impresora:"
  2621. #: /home/ruben/Projects/Cura/resources/qml/AddMachineDialog.qml:217
  2622. msgctxt "@action:button"
  2623. msgid "Add Printer"
  2624. msgstr "Agregar impresora"
  2625. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:15
  2626. msgctxt "@title:window"
  2627. msgid "About Cura"
  2628. msgstr "Acerca de Cura"
  2629. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:43
  2630. msgctxt "@label"
  2631. msgid "version: %1"
  2632. msgstr "versión: %1"
  2633. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:56
  2634. msgctxt "@label"
  2635. msgid "End-to-end solution for fused filament 3D printing."
  2636. msgstr "Solución completa para la impresión 3D de filamento fundido."
  2637. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:69
  2638. msgctxt "@info:credit"
  2639. msgid ""
  2640. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2641. "Cura proudly uses the following open source projects:"
  2642. msgstr "Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\nCura se enorgullece de utilizar los siguientes proyectos de código abierto:"
  2643. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:118
  2644. msgctxt "@label"
  2645. msgid "Graphical user interface"
  2646. msgstr "Interfaz gráfica de usuario (GUI)"
  2647. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:119
  2648. msgctxt "@label"
  2649. msgid "Application framework"
  2650. msgstr "Entorno de la aplicación"
  2651. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:120
  2652. msgctxt "@label"
  2653. msgid "G-code generator"
  2654. msgstr "Generador de GCode"
  2655. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:121
  2656. msgctxt "@label"
  2657. msgid "Interprocess communication library"
  2658. msgstr "Biblioteca de comunicación entre procesos"
  2659. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:123
  2660. msgctxt "@label"
  2661. msgid "Programming language"
  2662. msgstr "Lenguaje de programación"
  2663. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:124
  2664. msgctxt "@label"
  2665. msgid "GUI framework"
  2666. msgstr "Entorno de la GUI"
  2667. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:125
  2668. msgctxt "@label"
  2669. msgid "GUI framework bindings"
  2670. msgstr "Enlaces del entorno de la GUI"
  2671. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:126
  2672. msgctxt "@label"
  2673. msgid "C/C++ Binding library"
  2674. msgstr "Biblioteca de enlaces C/C++"
  2675. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:127
  2676. msgctxt "@label"
  2677. msgid "Data interchange format"
  2678. msgstr "Formato de intercambio de datos"
  2679. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:128
  2680. msgctxt "@label"
  2681. msgid "Support library for scientific computing"
  2682. msgstr "Biblioteca de apoyo para cálculos científicos"
  2683. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:129
  2684. msgctxt "@label"
  2685. msgid "Support library for faster math"
  2686. msgstr "Biblioteca de apoyo para cálculos más rápidos"
  2687. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:130
  2688. msgctxt "@label"
  2689. msgid "Support library for handling STL files"
  2690. msgstr "Biblioteca de apoyo para gestionar archivos STL"
  2691. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:131
  2692. msgctxt "@label"
  2693. msgid "Support library for handling 3MF files"
  2694. msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
  2695. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:132
  2696. msgctxt "@label"
  2697. msgid "Serial communication library"
  2698. msgstr "Biblioteca de comunicación en serie"
  2699. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:133
  2700. msgctxt "@label"
  2701. msgid "ZeroConf discovery library"
  2702. msgstr "Biblioteca de detección para Zeroconf"
  2703. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:134
  2704. msgctxt "@label"
  2705. msgid "Polygon clipping library"
  2706. msgstr "Biblioteca de recorte de polígonos"
  2707. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:135
  2708. msgctxt "@Label"
  2709. msgid "Python HTTP library"
  2710. msgstr "Biblioteca HTTP de Python"
  2711. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:137
  2712. msgctxt "@label"
  2713. msgid "Font"
  2714. msgstr "Fuente"
  2715. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:138
  2716. msgctxt "@label"
  2717. msgid "SVG icons"
  2718. msgstr "Iconos SVG"
  2719. #: /home/ruben/Projects/Cura/resources/qml/AboutDialog.qml:139
  2720. msgctxt "@label"
  2721. msgid "Linux cross-distribution application deployment"
  2722. msgstr "Implementación de la aplicación de distribución múltiple de Linux"
  2723. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:42
  2724. msgctxt "@label"
  2725. msgid "Profile:"
  2726. msgstr "Perfil:"
  2727. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:103
  2728. msgctxt "@tooltip"
  2729. msgid ""
  2730. "Some setting/override values are different from the values stored in the profile.\n"
  2731. "\n"
  2732. "Click to open the profile manager."
  2733. msgstr "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n\nHaga clic para abrir el administrador de perfiles."
  2734. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:199
  2735. msgctxt "@label:textbox"
  2736. msgid "Search..."
  2737. msgstr "Buscar..."
  2738. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:544
  2739. msgctxt "@action:menu"
  2740. msgid "Copy value to all extruders"
  2741. msgstr "Copiar valor en todos los extrusores"
  2742. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:553
  2743. msgctxt "@action:menu"
  2744. msgid "Copy all changed values to all extruders"
  2745. msgstr "Copiar todos los valores cambiados en todos los extrusores"
  2746. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:568
  2747. msgctxt "@action:menu"
  2748. msgid "Hide this setting"
  2749. msgstr "Ocultar este ajuste"
  2750. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:586
  2751. msgctxt "@action:menu"
  2752. msgid "Don't show this setting"
  2753. msgstr "No mostrar este ajuste"
  2754. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:590
  2755. msgctxt "@action:menu"
  2756. msgid "Keep this setting visible"
  2757. msgstr "Mostrar este ajuste"
  2758. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:614
  2759. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:426
  2760. msgctxt "@action:menu"
  2761. msgid "Configure setting visibility..."
  2762. msgstr "Configurar visibilidad de los ajustes..."
  2763. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:621
  2764. msgctxt "@action:inmenu"
  2765. msgid "Collapse All"
  2766. msgstr "Contraer todo"
  2767. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:626
  2768. msgctxt "@action:inmenu"
  2769. msgid "Expand All"
  2770. msgstr "Ampliar todo"
  2771. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingCategory.qml:249
  2772. msgctxt "@label"
  2773. msgid ""
  2774. "Some hidden settings use values different from their normal calculated value.\n"
  2775. "\n"
  2776. "Click to make these settings visible."
  2777. msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n\nHaga clic para mostrar estos ajustes."
  2778. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:61
  2779. msgctxt "@label Header for list of settings."
  2780. msgid "Affects"
  2781. msgstr "Afecta a"
  2782. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:66
  2783. msgctxt "@label Header for list of settings."
  2784. msgid "Affected By"
  2785. msgstr "Afectado por"
  2786. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:154
  2787. msgctxt "@label"
  2788. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2789. msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  2790. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:157
  2791. msgctxt "@label"
  2792. msgid "The value is resolved from per-extruder values "
  2793. msgstr "El valor se resuelve según los valores de los extrusores. "
  2794. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:188
  2795. msgctxt "@label"
  2796. msgid ""
  2797. "This setting has a value that is different from the profile.\n"
  2798. "\n"
  2799. "Click to restore the value of the profile."
  2800. msgstr "Este ajuste tiene un valor distinto del perfil.\n\nHaga clic para restaurar el valor del perfil."
  2801. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:286
  2802. msgctxt "@label"
  2803. msgid ""
  2804. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2805. "\n"
  2806. "Click to restore the calculated value."
  2807. msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n\nHaga clic para restaurar el valor calculado."
  2808. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:129
  2809. msgctxt "@label"
  2810. msgid "Printer control"
  2811. msgstr "Control de impresoras"
  2812. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:144
  2813. msgctxt "@label"
  2814. msgid "Jog Position"
  2815. msgstr "Posición de desplazamiento"
  2816. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2817. msgctxt "@label"
  2818. msgid "X/Y"
  2819. msgstr "X/Y"
  2820. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:269
  2821. msgctxt "@label"
  2822. msgid "Z"
  2823. msgstr "Z"
  2824. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:334
  2825. msgctxt "@label"
  2826. msgid "Jog Distance"
  2827. msgstr "Distancia de desplazamiento"
  2828. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:443
  2829. msgctxt "@label"
  2830. msgid "Send G-code"
  2831. msgstr "Enviar GCode"
  2832. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:506
  2833. msgctxt "@tooltip of G-code command input"
  2834. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2835. msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
  2836. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:36
  2837. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:268
  2838. msgctxt "@label"
  2839. msgid "Extruder"
  2840. msgstr "Extrusor"
  2841. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:66
  2842. msgctxt "@tooltip"
  2843. 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."
  2844. 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á."
  2845. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:98
  2846. msgctxt "@tooltip"
  2847. msgid "The current temperature of this hotend."
  2848. msgstr "Temperatura actual de este extremo caliente."
  2849. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:172
  2850. msgctxt "@tooltip of temperature input"
  2851. msgid "The temperature to pre-heat the hotend to."
  2852. msgstr "Temperatura a la que se va a precalentar el extremo caliente."
  2853. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:336
  2854. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:331
  2855. msgctxt "@button Cancel pre-heating"
  2856. msgid "Cancel"
  2857. msgstr "Cancelar"
  2858. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:339
  2859. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:334
  2860. msgctxt "@button"
  2861. msgid "Pre-heat"
  2862. msgstr "Precalentar"
  2863. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:365
  2864. msgctxt "@tooltip of pre-heat"
  2865. 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."
  2866. 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."
  2867. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:401
  2868. msgctxt "@tooltip"
  2869. msgid "The colour of the material in this extruder."
  2870. msgstr "Color del material en este extrusor."
  2871. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:433
  2872. msgctxt "@tooltip"
  2873. msgid "The material in this extruder."
  2874. msgstr "Material en este extrusor."
  2875. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:465
  2876. msgctxt "@tooltip"
  2877. msgid "The nozzle inserted in this extruder."
  2878. msgstr "Tobera insertada en este extrusor."
  2879. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2880. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:489
  2881. msgctxt "@label"
  2882. msgid "Build plate"
  2883. msgstr "Placa de impresión"
  2884. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  2885. msgctxt "@tooltip"
  2886. 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."
  2887. 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á."
  2888. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:87
  2889. msgctxt "@tooltip"
  2890. msgid "The current temperature of the heated bed."
  2891. msgstr "Temperatura actual de la plataforma caliente."
  2892. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:160
  2893. msgctxt "@tooltip of temperature input"
  2894. msgid "The temperature to pre-heat the bed to."
  2895. msgstr "Temperatura a la que se va a precalentar la plataforma."
  2896. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:360
  2897. msgctxt "@tooltip of pre-heat"
  2898. 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."
  2899. 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."
  2900. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  2901. msgctxt "@label:category menu label"
  2902. msgid "Network enabled printers"
  2903. msgstr "Impresoras de red habilitadas"
  2904. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  2905. msgctxt "@label:category menu label"
  2906. msgid "Local printers"
  2907. msgstr "Impresoras locales"
  2908. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  2909. msgctxt "@title:menu menubar:toplevel"
  2910. msgid "&View"
  2911. msgstr "&Ver"
  2912. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:39
  2913. msgctxt "@action:inmenu menubar:view"
  2914. msgid "&Camera position"
  2915. msgstr "&Posición de la cámara"
  2916. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:54
  2917. msgctxt "@action:inmenu menubar:view"
  2918. msgid "&Build plate"
  2919. msgstr "&Placa de impresión"
  2920. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  2921. msgctxt "@action:inmenu"
  2922. msgid "Visible Settings"
  2923. msgstr "Ajustes visibles"
  2924. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:43
  2925. msgctxt "@action:inmenu"
  2926. msgid "Show All Settings"
  2927. msgstr "Mostrar todos los ajustes"
  2928. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  2929. msgctxt "@action:inmenu"
  2930. msgid "Manage Setting Visibility..."
  2931. msgstr "Gestionar visibilidad de los ajustes..."
  2932. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  2933. msgctxt "@label"
  2934. msgid "Print Selected Model With:"
  2935. msgid_plural "Print Selected Models With:"
  2936. msgstr[0] "Imprimir modelo seleccionado con:"
  2937. msgstr[1] "Imprimir modelos seleccionados con:"
  2938. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  2939. msgctxt "@title:window"
  2940. msgid "Multiply Selected Model"
  2941. msgid_plural "Multiply Selected Models"
  2942. msgstr[0] "Multiplicar modelo seleccionado"
  2943. msgstr[1] "Multiplicar modelos seleccionados"
  2944. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  2945. msgctxt "@label"
  2946. msgid "Number of Copies"
  2947. msgstr "Número de copias"
  2948. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:33
  2949. msgctxt "@label:header configurations"
  2950. msgid "Available configurations"
  2951. msgstr "Configuraciones disponibles"
  2952. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/PrintCoreConfiguration.qml:28
  2953. msgctxt "@label:extruder label"
  2954. msgid "Extruder"
  2955. msgstr "Extrusor"
  2956. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/SyncButton.qml:16
  2957. msgctxt "@label:extruder label"
  2958. msgid "Yes"
  2959. msgstr "Sí"
  2960. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/SyncButton.qml:16
  2961. msgctxt "@label:extruder label"
  2962. msgid "No"
  2963. msgstr "No"
  2964. #: /home/ruben/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:13
  2965. msgctxt "@title:menu menubar:file"
  2966. msgid "Open &Recent"
  2967. msgstr "Abrir &reciente"
  2968. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:150
  2969. msgctxt "@label:listbox"
  2970. msgid "Print Setup"
  2971. msgstr "Configuración de impresión"
  2972. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:150
  2973. msgctxt "@label:listbox"
  2974. msgid ""
  2975. "Print Setup disabled\n"
  2976. "G-code files cannot be modified"
  2977. msgstr "Ajustes de impresión deshabilitados\nNo se pueden modificar los archivos GCode"
  2978. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:341
  2979. msgctxt "@label Hours and minutes"
  2980. msgid "00h 00min"
  2981. msgstr "00 h 00 min"
  2982. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:359
  2983. msgctxt "@tooltip"
  2984. msgid "Time specification"
  2985. msgstr "Especificación de tiempos"
  2986. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:441
  2987. msgctxt "@label"
  2988. msgid "Cost specification"
  2989. msgstr "Especificación de costes"
  2990. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:446
  2991. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:455
  2992. msgctxt "@label m for meter"
  2993. msgid "%1m"
  2994. msgstr "%1 m"
  2995. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:447
  2996. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:456
  2997. msgctxt "@label g for grams"
  2998. msgid "%1g"
  2999. msgstr "%1 g"
  3000. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:454
  3001. msgctxt "@label"
  3002. msgid "Total:"
  3003. msgstr "Total:"
  3004. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:577
  3005. msgctxt "@tooltip"
  3006. msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  3007. msgstr "<b>Configuración de impresión recomendada</b><br/><br/>Imprimir con los ajustes recomendados para la impresora, el material y la calidad seleccionados."
  3008. #: /home/ruben/Projects/Cura/resources/qml/PrepareSidebar.qml:582
  3009. msgctxt "@tooltip"
  3010. msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  3011. msgstr "<b>Configuración de impresión personalizada</b><br/><br/>Imprimir con un control muy detallado del proceso de segmentación."
  3012. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:107
  3013. msgctxt "@label"
  3014. msgid "Active print"
  3015. msgstr "Activar impresión"
  3016. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:115
  3017. msgctxt "@label"
  3018. msgid "Job Name"
  3019. msgstr "Nombre del trabajo"
  3020. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:123
  3021. msgctxt "@label"
  3022. msgid "Printing Time"
  3023. msgstr "Tiempo de impresión"
  3024. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:131
  3025. msgctxt "@label"
  3026. msgid "Estimated time left"
  3027. msgstr "Tiempo restante estimado"
  3028. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:78
  3029. msgctxt "@action:inmenu"
  3030. msgid "Toggle Fu&ll Screen"
  3031. msgstr "A&lternar pantalla completa"
  3032. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:85
  3033. msgctxt "@action:inmenu menubar:edit"
  3034. msgid "&Undo"
  3035. msgstr "Des&hacer"
  3036. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:95
  3037. msgctxt "@action:inmenu menubar:edit"
  3038. msgid "&Redo"
  3039. msgstr "&Rehacer"
  3040. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:105
  3041. msgctxt "@action:inmenu menubar:file"
  3042. msgid "&Quit"
  3043. msgstr "&Salir"
  3044. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:113
  3045. msgctxt "@action:inmenu menubar:view"
  3046. msgid "&3D View"
  3047. msgstr "&Vista en 3D"
  3048. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:120
  3049. msgctxt "@action:inmenu menubar:view"
  3050. msgid "&Front View"
  3051. msgstr "&Vista frontal"
  3052. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:127
  3053. msgctxt "@action:inmenu menubar:view"
  3054. msgid "&Top View"
  3055. msgstr "&Vista superior"
  3056. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:134
  3057. msgctxt "@action:inmenu menubar:view"
  3058. msgid "&Left Side View"
  3059. msgstr "&Vista del lado izquierdo"
  3060. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:141
  3061. msgctxt "@action:inmenu menubar:view"
  3062. msgid "&Right Side View"
  3063. msgstr "&Vista del lado derecho"
  3064. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:148
  3065. msgctxt "@action:inmenu"
  3066. msgid "Configure Cura..."
  3067. msgstr "Configurar Cura..."
  3068. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:155
  3069. msgctxt "@action:inmenu menubar:printer"
  3070. msgid "&Add Printer..."
  3071. msgstr "&Agregar impresora..."
  3072. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:161
  3073. msgctxt "@action:inmenu menubar:printer"
  3074. msgid "Manage Pr&inters..."
  3075. msgstr "Adm&inistrar impresoras ..."
  3076. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:168
  3077. msgctxt "@action:inmenu"
  3078. msgid "Manage Materials..."
  3079. msgstr "Administrar materiales..."
  3080. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:176
  3081. msgctxt "@action:inmenu menubar:profile"
  3082. msgid "&Update profile with current settings/overrides"
  3083. msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales"
  3084. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:184
  3085. msgctxt "@action:inmenu menubar:profile"
  3086. msgid "&Discard current changes"
  3087. msgstr "&Descartar cambios actuales"
  3088. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:196
  3089. msgctxt "@action:inmenu menubar:profile"
  3090. msgid "&Create profile from current settings/overrides..."
  3091. msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..."
  3092. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:202
  3093. msgctxt "@action:inmenu menubar:profile"
  3094. msgid "Manage Profiles..."
  3095. msgstr "Administrar perfiles..."
  3096. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:209
  3097. msgctxt "@action:inmenu menubar:help"
  3098. msgid "Show Online &Documentation"
  3099. msgstr "Mostrar &documentación en línea"
  3100. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:217
  3101. msgctxt "@action:inmenu menubar:help"
  3102. msgid "Report a &Bug"
  3103. msgstr "Informar de un &error"
  3104. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:225
  3105. msgctxt "@action:inmenu menubar:help"
  3106. msgid "&About..."
  3107. msgstr "&Acerca de..."
  3108. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:232
  3109. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:242
  3110. msgctxt "@action:inmenu menubar:edit"
  3111. msgid "Delete &Selected Model"
  3112. msgid_plural "Delete &Selected Models"
  3113. msgstr[0] "Eliminar modelo &seleccionado"
  3114. msgstr[1] "Eliminar modelos &seleccionados"
  3115. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252
  3116. msgctxt "@action:inmenu menubar:edit"
  3117. msgid "Center Selected Model"
  3118. msgid_plural "Center Selected Models"
  3119. msgstr[0] "Centrar modelo seleccionado"
  3120. msgstr[1] "Centrar modelos seleccionados"
  3121. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:261
  3122. msgctxt "@action:inmenu menubar:edit"
  3123. msgid "Multiply Selected Model"
  3124. msgid_plural "Multiply Selected Models"
  3125. msgstr[0] "Multiplicar modelo seleccionado"
  3126. msgstr[1] "Multiplicar modelos seleccionados"
  3127. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:270
  3128. msgctxt "@action:inmenu"
  3129. msgid "Delete Model"
  3130. msgstr "Eliminar modelo"
  3131. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:278
  3132. msgctxt "@action:inmenu"
  3133. msgid "Ce&nter Model on Platform"
  3134. msgstr "Ce&ntrar modelo en plataforma"
  3135. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284
  3136. msgctxt "@action:inmenu menubar:edit"
  3137. msgid "&Group Models"
  3138. msgstr "A&grupar modelos"
  3139. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:304
  3140. msgctxt "@action:inmenu menubar:edit"
  3141. msgid "Ungroup Models"
  3142. msgstr "Desagrupar modelos"
  3143. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:314
  3144. msgctxt "@action:inmenu menubar:edit"
  3145. msgid "&Merge Models"
  3146. msgstr "Co&mbinar modelos"
  3147. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:324
  3148. msgctxt "@action:inmenu"
  3149. msgid "&Multiply Model..."
  3150. msgstr "&Multiplicar modelo..."
  3151. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:331
  3152. msgctxt "@action:inmenu menubar:edit"
  3153. msgid "&Select All Models"
  3154. msgstr "&Seleccionar todos los modelos"
  3155. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:341
  3156. msgctxt "@action:inmenu menubar:edit"
  3157. msgid "&Clear Build Plate"
  3158. msgstr "&Borrar placa de impresión"
  3159. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:351
  3160. msgctxt "@action:inmenu menubar:file"
  3161. msgid "Re&load All Models"
  3162. msgstr "&Recargar todos los modelos"
  3163. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:360
  3164. msgctxt "@action:inmenu menubar:edit"
  3165. msgid "Arrange All Models To All Build Plates"
  3166. msgstr "Organizar todos los modelos en todas las placas de impresión"
  3167. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:367
  3168. msgctxt "@action:inmenu menubar:edit"
  3169. msgid "Arrange All Models"
  3170. msgstr "Organizar todos los modelos"
  3171. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:375
  3172. msgctxt "@action:inmenu menubar:edit"
  3173. msgid "Arrange Selection"
  3174. msgstr "Organizar selección"
  3175. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:382
  3176. msgctxt "@action:inmenu menubar:edit"
  3177. msgid "Reset All Model Positions"
  3178. msgstr "Restablecer las posiciones de todos los modelos"
  3179. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:389
  3180. msgctxt "@action:inmenu menubar:edit"
  3181. msgid "Reset All Model &Transformations"
  3182. msgstr "Restablecer las &transformaciones de todos los modelos"
  3183. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:396
  3184. msgctxt "@action:inmenu menubar:file"
  3185. msgid "&Open File(s)..."
  3186. msgstr "&Abrir archivo(s)..."
  3187. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:404
  3188. msgctxt "@action:inmenu menubar:file"
  3189. msgid "&New Project..."
  3190. msgstr "&Nuevo proyecto..."
  3191. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:411
  3192. msgctxt "@action:inmenu menubar:help"
  3193. msgid "Show Engine &Log..."
  3194. msgstr "&Mostrar registro del motor..."
  3195. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419
  3196. msgctxt "@action:inmenu menubar:help"
  3197. msgid "Show Configuration Folder"
  3198. msgstr "Mostrar carpeta de configuración"
  3199. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:433
  3200. msgctxt "@action:menu"
  3201. msgid "Browse packages..."
  3202. msgstr "Examinar paquetes..."
  3203. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:440
  3204. msgctxt "@action:inmenu menubar:view"
  3205. msgid "Expand/Collapse Sidebar"
  3206. msgstr "Expandir/contraer barra lateral"
  3207. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:26
  3208. msgctxt "@label:PrintjobStatus"
  3209. msgid "Please load a 3D model"
  3210. msgstr "Cargue un modelo en 3D"
  3211. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:36
  3212. msgctxt "@label:PrintjobStatus"
  3213. msgid "Ready to slice"
  3214. msgstr "Preparado para segmentar"
  3215. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:38
  3216. msgctxt "@label:PrintjobStatus"
  3217. msgid "Slicing..."
  3218. msgstr "Segmentando..."
  3219. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:40
  3220. msgctxt "@label:PrintjobStatus %1 is target operation"
  3221. msgid "Ready to %1"
  3222. msgstr "Listo para %1"
  3223. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:42
  3224. msgctxt "@label:PrintjobStatus"
  3225. msgid "Unable to Slice"
  3226. msgstr "No se puede segmentar."
  3227. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:44
  3228. msgctxt "@label:PrintjobStatus"
  3229. msgid "Slicing unavailable"
  3230. msgstr "No se puede segmentar"
  3231. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171
  3232. msgctxt "@info:tooltip"
  3233. msgid "Slice current printjob"
  3234. msgstr "Fragmentar trabajo de impresión actual"
  3235. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:171
  3236. msgctxt "@info:tooltip"
  3237. msgid "Cancel slicing process"
  3238. msgstr "Cancelar proceso de fragmentación"
  3239. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183
  3240. msgctxt "@label:Printjob"
  3241. msgid "Prepare"
  3242. msgstr "Preparar"
  3243. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:183
  3244. msgctxt "@label:Printjob"
  3245. msgid "Cancel"
  3246. msgstr "Cancelar"
  3247. #: /home/ruben/Projects/Cura/resources/qml/SaveButton.qml:317
  3248. msgctxt "@info:tooltip"
  3249. msgid "Select the active output device"
  3250. msgstr "Seleccione el dispositivo de salida activo"
  3251. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:19
  3252. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:713
  3253. msgctxt "@title:window"
  3254. msgid "Open file(s)"
  3255. msgstr "Abrir archivo(s)"
  3256. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:64
  3257. msgctxt "@text:window"
  3258. 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?"
  3259. 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?"
  3260. #: /home/ruben/Projects/Cura/resources/qml/OpenFilesIncludingProjectsDialog.qml:99
  3261. msgctxt "@action:button"
  3262. msgid "Import all as models"
  3263. msgstr "Importar todos como modelos"
  3264. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:19
  3265. msgctxt "@title:window"
  3266. msgid "Ultimaker Cura"
  3267. msgstr "Ultimaker Cura"
  3268. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:102
  3269. msgctxt "@title:menu menubar:toplevel"
  3270. msgid "&File"
  3271. msgstr "&Archivo"
  3272. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:119
  3273. msgctxt "@action:inmenu menubar:file"
  3274. msgid "&Save Selection to File"
  3275. msgstr "Guardar &selección en archivo"
  3276. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:128
  3277. msgctxt "@title:menu menubar:file"
  3278. msgid "Save &As..."
  3279. msgstr "Guardar &como..."
  3280. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:139
  3281. msgctxt "@title:menu menubar:file"
  3282. msgid "Save &Project..."
  3283. msgstr "Guardar &proyecto..."
  3284. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:162
  3285. msgctxt "@title:menu menubar:toplevel"
  3286. msgid "&Edit"
  3287. msgstr "&Edición"
  3288. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:179
  3289. msgctxt "@title:menu"
  3290. msgid "&View"
  3291. msgstr "&Ver"
  3292. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:184
  3293. msgctxt "@title:menu"
  3294. msgid "&Settings"
  3295. msgstr "A&justes"
  3296. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:186
  3297. msgctxt "@title:menu menubar:toplevel"
  3298. msgid "&Printer"
  3299. msgstr "&Impresora"
  3300. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:195
  3301. msgctxt "@title:menu"
  3302. msgid "&Material"
  3303. msgstr "&Material"
  3304. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:204
  3305. msgctxt "@action:inmenu"
  3306. msgid "Set as Active Extruder"
  3307. msgstr "Definir como extrusor activo"
  3308. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:210
  3309. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:184
  3310. msgctxt "@action:inmenu"
  3311. msgid "Enable Extruder"
  3312. msgstr "Habilitar extrusor"
  3313. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:217
  3314. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:190
  3315. msgctxt "@action:inmenu"
  3316. msgid "Disable Extruder"
  3317. msgstr "Deshabilitar extrusor"
  3318. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:230
  3319. msgctxt "@title:menu"
  3320. msgid "&Profile"
  3321. msgstr "&Perfil"
  3322. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:240
  3323. msgctxt "@title:menu menubar:toplevel"
  3324. msgid "E&xtensions"
  3325. msgstr "E&xtensiones"
  3326. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:274
  3327. msgctxt "@title:menu menubar:toplevel"
  3328. msgid "&Toolbox"
  3329. msgstr "&Cuadro de herramientas"
  3330. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:281
  3331. msgctxt "@title:menu menubar:toplevel"
  3332. msgid "P&references"
  3333. msgstr "Pre&ferencias"
  3334. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:289
  3335. msgctxt "@title:menu menubar:toplevel"
  3336. msgid "&Help"
  3337. msgstr "A&yuda"
  3338. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:335
  3339. msgctxt "@label"
  3340. msgid "This package will be installed after restarting."
  3341. msgstr "Este paquete se instalará después de reiniciar."
  3342. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:364
  3343. msgctxt "@action:button"
  3344. msgid "Open File"
  3345. msgstr "Abrir archivo"
  3346. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:534
  3347. msgctxt "@title:tab"
  3348. msgid "Settings"
  3349. msgstr "Ajustes"
  3350. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:579
  3351. msgctxt "@title:window"
  3352. msgid "New project"
  3353. msgstr "Nuevo proyecto"
  3354. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:580
  3355. msgctxt "@info:question"
  3356. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3357. msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
  3358. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:814
  3359. msgctxt "@window:title"
  3360. msgid "Install Package"
  3361. msgstr "Instalar paquete"
  3362. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:821
  3363. msgctxt "@title:window"
  3364. msgid "Open File(s)"
  3365. msgstr "Abrir archivo(s)"
  3366. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:824
  3367. msgctxt "@text:window"
  3368. 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."
  3369. 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."
  3370. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:14
  3371. msgctxt "@title:window"
  3372. msgid "Save Project"
  3373. msgstr "Guardar proyecto"
  3374. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:116
  3375. msgctxt "@action:label"
  3376. msgid ""
  3377. msgstr ""
  3378. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:133
  3379. msgctxt "@action:label"
  3380. msgid "Build plate"
  3381. msgstr "Placa de impresión"
  3382. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:165
  3383. msgctxt "@action:label"
  3384. msgid "Extruder %1"
  3385. msgstr "Extrusor %1"
  3386. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:175
  3387. msgctxt "@action:label"
  3388. msgid "%1 & material"
  3389. msgstr "%1 y material"
  3390. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:264
  3391. msgctxt "@action:label"
  3392. msgid "Don't show project summary on save again"
  3393. msgstr "No mostrar resumen de proyecto al guardar de nuevo"
  3394. #: /home/ruben/Projects/Cura/resources/qml/WorkspaceSummaryDialog.qml:283
  3395. msgctxt "@action:button"
  3396. msgid "Save"
  3397. msgstr "Guardar"
  3398. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:175
  3399. msgctxt "@label"
  3400. msgid "Layer Height"
  3401. msgstr "Altura de capa"
  3402. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:252
  3403. msgctxt "@tooltip"
  3404. msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  3405. msgstr "Este perfil de calidad no está disponible para la configuración de material y de tobera actual. Cámbiela para poder habilitar este perfil de calidad."
  3406. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:415
  3407. msgctxt "@tooltip"
  3408. msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  3409. msgstr "Hay un perfil personalizado activado en este momento. Para habilitar el control deslizante de calidad, seleccione un perfil de calidad predeterminado en la pestaña Personalizado."
  3410. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:432
  3411. msgctxt "@label"
  3412. msgid "Print Speed"
  3413. msgstr "Velocidad de impresión"
  3414. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:444
  3415. msgctxt "@label"
  3416. msgid "Slower"
  3417. msgstr "Más lento"
  3418. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:455
  3419. msgctxt "@label"
  3420. msgid "Faster"
  3421. msgstr "Más rápido"
  3422. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:483
  3423. msgctxt "@tooltip"
  3424. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  3425. msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado."
  3426. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:506
  3427. msgctxt "@label"
  3428. msgid "Infill"
  3429. msgstr "Relleno"
  3430. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:740
  3431. msgctxt "@label"
  3432. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  3433. msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba."
  3434. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:752
  3435. msgctxt "@label"
  3436. msgid "Enable gradual"
  3437. msgstr "Habilitar gradual"
  3438. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:819
  3439. msgctxt "@label"
  3440. msgid "Generate Support"
  3441. msgstr "Generar soporte"
  3442. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:853
  3443. msgctxt "@label"
  3444. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  3445. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  3446. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:925
  3447. msgctxt "@label"
  3448. msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  3449. msgstr "Seleccione qué extrusor se utilizará como soporte. Esta opción formará estructuras de soporte por debajo del modelo para evitar que éste se combe o la impresión se haga en el aire."
  3450. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:948
  3451. msgctxt "@label"
  3452. msgid "Build Plate Adhesion"
  3453. msgstr "Adherencia de la placa de impresión"
  3454. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1003
  3455. msgctxt "@label"
  3456. 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."
  3457. msgstr "Habilita la impresión de un borde o una balsa. Esta opción agregará un área plana alrededor del objeto, que es fácil de cortar después."
  3458. #: /home/ruben/Projects/Cura/resources/qml/SidebarSimple.qml:1043
  3459. msgctxt "@label"
  3460. msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  3461. msgstr "¿Necesita ayuda para mejorar sus impresiones?<br>Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>"
  3462. #: /home/ruben/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3463. msgctxt "@label %1 is filled in with the name of an extruder"
  3464. msgid "Print Selected Model with %1"
  3465. msgid_plural "Print Selected Models with %1"
  3466. msgstr[0] "Imprimir modelo seleccionado con %1"
  3467. msgstr[1] "Imprimir modelos seleccionados con %1"
  3468. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:20
  3469. msgctxt "@title:window"
  3470. msgid "Open project file"
  3471. msgstr "Abrir archivo de proyecto"
  3472. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:93
  3473. msgctxt "@text:window"
  3474. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3475. msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
  3476. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:103
  3477. msgctxt "@text:window"
  3478. msgid "Remember my choice"
  3479. msgstr "Recordar mi selección"
  3480. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:122
  3481. msgctxt "@action:button"
  3482. msgid "Open as project"
  3483. msgstr "Abrir como proyecto"
  3484. #: /home/ruben/Projects/Cura/resources/qml/AskOpenAsProjectOrModelsDialog.qml:131
  3485. msgctxt "@action:button"
  3486. msgid "Import models"
  3487. msgstr "Importar modelos"
  3488. #: /home/ruben/Projects/Cura/resources/qml/EngineLog.qml:15
  3489. msgctxt "@title:window"
  3490. msgid "Engine Log"
  3491. msgstr "Registro del motor"
  3492. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:70
  3493. msgctxt "@label"
  3494. msgid "Printer type"
  3495. msgstr "Tipo de impresora"
  3496. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:372
  3497. msgctxt "@label"
  3498. msgid "Material"
  3499. msgstr "Material"
  3500. # Added after the string freeze.
  3501. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:538
  3502. msgctxt "@label"
  3503. msgid "Use adhesion sheet or glue with this material combination"
  3504. msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales"
  3505. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:570
  3506. msgctxt "@label"
  3507. msgid "Check compatibility"
  3508. msgstr "Comprobar compatibilidad"
  3509. #: /home/ruben/Projects/Cura/resources/qml/SidebarHeader.qml:588
  3510. msgctxt "@tooltip"
  3511. msgid "Click to check the material compatibility on Ultimaker.com."
  3512. msgstr "Haga clic para comprobar la compatibilidad de los materiales en Utimaker.com."
  3513. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:211
  3514. msgctxt "@option:check"
  3515. msgid "See only current build plate"
  3516. msgstr "Ver solo placa de impresión actual"
  3517. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:227
  3518. msgctxt "@action:button"
  3519. msgid "Arrange to all build plates"
  3520. msgstr "Organizar todas las placas de impresión"
  3521. #: /home/ruben/Projects/Cura/resources/qml/ObjectsList.qml:247
  3522. msgctxt "@action:button"
  3523. msgid "Arrange current build plate"
  3524. msgstr "Organizar placa de impresión actual"
  3525. #: MachineSettingsAction/plugin.json
  3526. msgctxt "description"
  3527. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  3528. msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  3529. #: MachineSettingsAction/plugin.json
  3530. msgctxt "name"
  3531. msgid "Machine Settings action"
  3532. msgstr "Acción Ajustes de la máquina"
  3533. #: Toolbox/plugin.json
  3534. msgctxt "description"
  3535. msgid "Find, manage and install new Cura packages."
  3536. msgstr "Buscar, administrar e instalar nuevos paquetes de Cura."
  3537. #: Toolbox/plugin.json
  3538. msgctxt "name"
  3539. msgid "Toolbox"
  3540. msgstr "Cuadro de herramientas"
  3541. #: XRayView/plugin.json
  3542. msgctxt "description"
  3543. msgid "Provides the X-Ray view."
  3544. msgstr "Proporciona la vista de rayos X."
  3545. #: XRayView/plugin.json
  3546. msgctxt "name"
  3547. msgid "X-Ray View"
  3548. msgstr "Vista de rayos X"
  3549. #: X3DReader/plugin.json
  3550. msgctxt "description"
  3551. msgid "Provides support for reading X3D files."
  3552. msgstr "Proporciona asistencia para leer archivos X3D."
  3553. #: X3DReader/plugin.json
  3554. msgctxt "name"
  3555. msgid "X3D Reader"
  3556. msgstr "Lector de X3D"
  3557. #: GCodeWriter/plugin.json
  3558. msgctxt "description"
  3559. msgid "Writes g-code to a file."
  3560. msgstr "Escribe GCode en un archivo."
  3561. #: GCodeWriter/plugin.json
  3562. msgctxt "name"
  3563. msgid "G-code Writer"
  3564. msgstr "Escritor de GCode"
  3565. #: ModelChecker/plugin.json
  3566. msgctxt "description"
  3567. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  3568. msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos."
  3569. #: ModelChecker/plugin.json
  3570. msgctxt "name"
  3571. msgid "Model Checker"
  3572. msgstr "Comprobador de modelos"
  3573. #: cura-god-mode-plugin/src/GodMode/plugin.json
  3574. msgctxt "description"
  3575. msgid "Dump the contents of all settings to a HTML file."
  3576. msgstr "Vuelva el contenido de todas las configuraciones en un archivo HTML."
  3577. #: cura-god-mode-plugin/src/GodMode/plugin.json
  3578. msgctxt "name"
  3579. msgid "God Mode"
  3580. msgstr "God Mode"
  3581. #: Doodle3D-cura-plugin/Doodle3D/plugin.json
  3582. msgctxt "description"
  3583. msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  3584. msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  3585. #: Doodle3D-cura-plugin/Doodle3D/plugin.json
  3586. msgctxt "name"
  3587. msgid "Doodle3D WiFi-Box"
  3588. msgstr "Enrutador Doodle3D"
  3589. #: ChangeLogPlugin/plugin.json
  3590. msgctxt "description"
  3591. msgid "Shows changes since latest checked version."
  3592. msgstr "Muestra los cambios desde la última versión comprobada."
  3593. #: ChangeLogPlugin/plugin.json
  3594. msgctxt "name"
  3595. msgid "Changelog"
  3596. msgstr "Registro de cambios"
  3597. #: ProfileFlattener/plugin.json
  3598. msgctxt "description"
  3599. msgid "Create a flattend quality changes profile."
  3600. msgstr "Crear un perfil de cambios de calidad aplanado."
  3601. #: ProfileFlattener/plugin.json
  3602. msgctxt "name"
  3603. msgid "Profile flatener"
  3604. msgstr "Aplanador de perfil"
  3605. #: USBPrinting/plugin.json
  3606. msgctxt "description"
  3607. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3608. msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  3609. #: USBPrinting/plugin.json
  3610. msgctxt "name"
  3611. msgid "USB printing"
  3612. msgstr "Impresión USB"
  3613. #: UserAgreement/plugin.json
  3614. msgctxt "description"
  3615. msgid "Ask the user once if he/she agrees with our license."
  3616. msgstr "Preguntar al usuario una vez si acepta la licencia"
  3617. #: UserAgreement/plugin.json
  3618. msgctxt "name"
  3619. msgid "UserAgreement"
  3620. msgstr "UserAgreement"
  3621. #: X3GWriter/plugin.json
  3622. msgctxt "description"
  3623. msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  3624. msgstr "Permite guardar el segmento resultante como un archivo X3G para dar compatibilidad a impresoras que leen este formato (Malyan, Makerbot y otras impresoras basadas en Sailfish)."
  3625. #: X3GWriter/plugin.json
  3626. msgctxt "name"
  3627. msgid "X3GWriter"
  3628. msgstr "X3GWriter"
  3629. #: GCodeGzWriter/plugin.json
  3630. msgctxt "description"
  3631. msgid "Writes g-code to a compressed archive."
  3632. msgstr "Escribe GCode en un archivo comprimido."
  3633. #: GCodeGzWriter/plugin.json
  3634. msgctxt "name"
  3635. msgid "Compressed G-code Writer"
  3636. msgstr "Escritor de GCode comprimido"
  3637. #: UFPWriter/plugin.json
  3638. msgctxt "description"
  3639. msgid "Provides support for writing Ultimaker Format Packages."
  3640. msgstr "Permite la escritura de paquetes de formato Ultimaker."
  3641. #: UFPWriter/plugin.json
  3642. msgctxt "name"
  3643. msgid "UFP Writer"
  3644. msgstr "Escritor de UFP"
  3645. #: PrepareStage/plugin.json
  3646. msgctxt "description"
  3647. msgid "Provides a prepare stage in Cura."
  3648. msgstr "Proporciona una fase de preparación en Cura."
  3649. #: PrepareStage/plugin.json
  3650. msgctxt "name"
  3651. msgid "Prepare Stage"
  3652. msgstr "Fase de preparación"
  3653. #: CuraLiveScriptingPlugin/plugin.json
  3654. msgctxt "description"
  3655. msgid "Provides an edit window for direct script editing."
  3656. msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos."
  3657. #: CuraLiveScriptingPlugin/plugin.json
  3658. msgctxt "name"
  3659. msgid "Live scripting tool"
  3660. msgstr "Herramienta de secuencia de comandos en directo"
  3661. #: RemovableDriveOutputDevice/plugin.json
  3662. msgctxt "description"
  3663. msgid "Provides removable drive hotplugging and writing support."
  3664. msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  3665. #: RemovableDriveOutputDevice/plugin.json
  3666. msgctxt "name"
  3667. msgid "Removable Drive Output Device Plugin"
  3668. msgstr "Complemento de dispositivo de salida de unidad extraíble"
  3669. #: UM3NetworkPrinting/plugin.json
  3670. msgctxt "description"
  3671. msgid "Manages network connections to Ultimaker 3 printers."
  3672. msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  3673. #: UM3NetworkPrinting/plugin.json
  3674. msgctxt "name"
  3675. msgid "UM3 Network Connection"
  3676. msgstr "Conexión de red UM3"
  3677. #: MonitorStage/plugin.json
  3678. msgctxt "description"
  3679. msgid "Provides a monitor stage in Cura."
  3680. msgstr "Proporciona una fase de supervisión en Cura."
  3681. #: MonitorStage/plugin.json
  3682. msgctxt "name"
  3683. msgid "Monitor Stage"
  3684. msgstr "Fase de supervisión"
  3685. #: FirmwareUpdateChecker/plugin.json
  3686. msgctxt "description"
  3687. msgid "Checks for firmware updates."
  3688. msgstr "Busca actualizaciones de firmware."
  3689. #: FirmwareUpdateChecker/plugin.json
  3690. msgctxt "name"
  3691. msgid "Firmware Update Checker"
  3692. msgstr "Buscador de actualizaciones de firmware"
  3693. #: SimulationView/plugin.json
  3694. msgctxt "description"
  3695. msgid "Provides the Simulation view."
  3696. msgstr "Abre la vista de simulación."
  3697. #: SimulationView/plugin.json
  3698. msgctxt "name"
  3699. msgid "Simulation View"
  3700. msgstr "Vista de simulación"
  3701. #: GCodeGzReader/plugin.json
  3702. msgctxt "description"
  3703. msgid "Reads g-code from a compressed archive."
  3704. msgstr "Lee GCode de un archivo comprimido."
  3705. #: GCodeGzReader/plugin.json
  3706. msgctxt "name"
  3707. msgid "Compressed G-code Reader"
  3708. msgstr "Lector de GCode comprimido"
  3709. #: PostProcessingPlugin/plugin.json
  3710. msgctxt "description"
  3711. msgid "Extension that allows for user created scripts for post processing"
  3712. msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios."
  3713. #: PostProcessingPlugin/plugin.json
  3714. msgctxt "name"
  3715. msgid "Post Processing"
  3716. msgstr "Posprocesamiento"
  3717. #: SupportEraser/plugin.json
  3718. msgctxt "description"
  3719. msgid "Creates an eraser mesh to block the printing of support in certain places"
  3720. msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares."
  3721. #: SupportEraser/plugin.json
  3722. msgctxt "name"
  3723. msgid "Support Eraser"
  3724. msgstr "Borrador de soporte"
  3725. #: SliceInfoPlugin/plugin.json
  3726. msgctxt "description"
  3727. msgid "Submits anonymous slice info. Can be disabled through preferences."
  3728. msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  3729. #: SliceInfoPlugin/plugin.json
  3730. msgctxt "name"
  3731. msgid "Slice info"
  3732. msgstr "Info de la segmentación"
  3733. #: XmlMaterialProfile/plugin.json
  3734. msgctxt "description"
  3735. msgid "Provides capabilities to read and write XML-based material profiles."
  3736. msgstr "Permite leer y escribir perfiles de material basados en XML."
  3737. #: XmlMaterialProfile/plugin.json
  3738. msgctxt "name"
  3739. msgid "Material Profiles"
  3740. msgstr "Perfiles de material"
  3741. #: LegacyProfileReader/plugin.json
  3742. msgctxt "description"
  3743. msgid "Provides support for importing profiles from legacy Cura versions."
  3744. msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  3745. #: LegacyProfileReader/plugin.json
  3746. msgctxt "name"
  3747. msgid "Legacy Cura Profile Reader"
  3748. msgstr "Lector de perfiles antiguos de Cura"
  3749. #: CuraBlenderPlugin/plugin.json
  3750. msgctxt "description"
  3751. msgid "Helps to open Blender files directly in Cura."
  3752. msgstr "Ayuda a abrir archivos de Blender directamente en Cura."
  3753. #: CuraBlenderPlugin/plugin.json
  3754. msgctxt "name"
  3755. msgid "Blender Integration (experimental)"
  3756. msgstr "Integración de Blender (experimental)"
  3757. #: GCodeProfileReader/plugin.json
  3758. msgctxt "description"
  3759. msgid "Provides support for importing profiles from g-code files."
  3760. msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  3761. #: GCodeProfileReader/plugin.json
  3762. msgctxt "name"
  3763. msgid "G-code Profile Reader"
  3764. msgstr "Lector de perfiles GCode"
  3765. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  3766. msgctxt "description"
  3767. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3768. msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
  3769. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  3770. msgctxt "name"
  3771. msgid "Version Upgrade 3.2 to 3.3"
  3772. msgstr "Actualización de la versión 3.2 a la 3.3"
  3773. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  3774. msgctxt "description"
  3775. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3776. msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
  3777. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  3778. msgctxt "name"
  3779. msgid "Version Upgrade 3.3 to 3.4"
  3780. msgstr "Actualización de la versión 3.3 a la 3.4"
  3781. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  3782. msgctxt "description"
  3783. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3784. msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  3785. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  3786. msgctxt "name"
  3787. msgid "Version Upgrade 2.5 to 2.6"
  3788. msgstr "Actualización de la versión 2.5 a la 2.6"
  3789. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  3790. msgctxt "description"
  3791. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3792. msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
  3793. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  3794. msgctxt "name"
  3795. msgid "Version Upgrade 2.7 to 3.0"
  3796. msgstr "Actualización de la versión 2.7 a la 3.0"
  3797. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  3798. msgctxt "description"
  3799. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3800. msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
  3801. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  3802. msgctxt "name"
  3803. msgid "Version Upgrade 3.0 to 3.1"
  3804. msgstr "Actualización de la versión 3.0 a la 3.1"
  3805. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  3806. msgctxt "description"
  3807. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3808. msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
  3809. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  3810. msgctxt "name"
  3811. msgid "Version Upgrade 2.6 to 2.7"
  3812. msgstr "Actualización de la versión 2.6 a la 2.7"
  3813. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  3814. msgctxt "description"
  3815. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3816. msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  3817. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  3818. msgctxt "name"
  3819. msgid "Version Upgrade 2.1 to 2.2"
  3820. msgstr "Actualización de la versión 2.1 a la 2.2"
  3821. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  3822. msgctxt "description"
  3823. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3824. msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  3825. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  3826. msgctxt "name"
  3827. msgid "Version Upgrade 2.2 to 2.4"
  3828. msgstr "Actualización de la versión 2.2 a la 2.4"
  3829. #: ImageReader/plugin.json
  3830. msgctxt "description"
  3831. msgid "Enables ability to generate printable geometry from 2D image files."
  3832. msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  3833. #: ImageReader/plugin.json
  3834. msgctxt "name"
  3835. msgid "Image Reader"
  3836. msgstr "Lector de imágenes"
  3837. #: CuraEngineBackend/plugin.json
  3838. msgctxt "description"
  3839. msgid "Provides the link to the CuraEngine slicing backend."
  3840. msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  3841. #: CuraEngineBackend/plugin.json
  3842. msgctxt "name"
  3843. msgid "CuraEngine Backend"
  3844. msgstr "Backend de CuraEngine"
  3845. #: PerObjectSettingsTool/plugin.json
  3846. msgctxt "description"
  3847. msgid "Provides the Per Model Settings."
  3848. msgstr "Proporciona los ajustes por modelo."
  3849. #: PerObjectSettingsTool/plugin.json
  3850. msgctxt "name"
  3851. msgid "Per Model Settings Tool"
  3852. msgstr "Herramienta de ajustes por modelo"
  3853. #: 3MFReader/plugin.json
  3854. msgctxt "description"
  3855. msgid "Provides support for reading 3MF files."
  3856. msgstr "Proporciona asistencia para leer archivos 3MF."
  3857. #: 3MFReader/plugin.json
  3858. msgctxt "name"
  3859. msgid "3MF Reader"
  3860. msgstr "Lector de 3MF"
  3861. #: SolidView/plugin.json
  3862. msgctxt "description"
  3863. msgid "Provides a normal solid mesh view."
  3864. msgstr "Proporciona una vista de malla sólida normal."
  3865. #: SolidView/plugin.json
  3866. msgctxt "name"
  3867. msgid "Solid View"
  3868. msgstr "Vista de sólidos"
  3869. #: GCodeReader/plugin.json
  3870. msgctxt "description"
  3871. msgid "Allows loading and displaying G-code files."
  3872. msgstr "Permite cargar y visualizar archivos GCode."
  3873. #: GCodeReader/plugin.json
  3874. msgctxt "name"
  3875. msgid "G-code Reader"
  3876. msgstr "Lector de GCode"
  3877. #: CuraProfileWriter/plugin.json
  3878. msgctxt "description"
  3879. msgid "Provides support for exporting Cura profiles."
  3880. msgstr "Proporciona asistencia para exportar perfiles de Cura."
  3881. #: CuraProfileWriter/plugin.json
  3882. msgctxt "name"
  3883. msgid "Cura Profile Writer"
  3884. msgstr "Escritor de perfiles de Cura"
  3885. #: 3MFWriter/plugin.json
  3886. msgctxt "description"
  3887. msgid "Provides support for writing 3MF files."
  3888. msgstr "Proporciona asistencia para escribir archivos 3MF."
  3889. #: 3MFWriter/plugin.json
  3890. msgctxt "name"
  3891. msgid "3MF Writer"
  3892. msgstr "Escritor de 3MF"
  3893. #: UltimakerMachineActions/plugin.json
  3894. msgctxt "description"
  3895. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  3896. 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.)."
  3897. #: UltimakerMachineActions/plugin.json
  3898. msgctxt "name"
  3899. msgid "Ultimaker machine actions"
  3900. msgstr "Acciones de la máquina Ultimaker"
  3901. #: CuraProfileReader/plugin.json
  3902. msgctxt "description"
  3903. msgid "Provides support for importing Cura profiles."
  3904. msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  3905. #: CuraProfileReader/plugin.json
  3906. msgctxt "name"
  3907. msgid "Cura Profile Reader"
  3908. msgstr "Lector de perfiles de Cura"
  3909. #~ msgctxt "@info:title"
  3910. #~ msgid "Model Checker Warning"
  3911. #~ msgstr "Advertencia del comprobador de modelos"
  3912. #~ msgctxt "@info:status"
  3913. #~ msgid ""
  3914. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  3915. #~ "Tips that may be useful to improve the print quality:\n"
  3916. #~ "1) Use rounded corners.\n"
  3917. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  3918. #~ "3) Use a different material."
  3919. #~ msgstr ""
  3920. #~ "Es posible que algunos modelos no se impriman correctamente debido al tamaño del objeto y al material elegido para los modelos: {model_names}.\n"
  3921. #~ "Consejos para mejorar la calidad de la impresión:\n"
  3922. #~ "1) Utilizar esquinas redondeadas.\n"
  3923. #~ "2) Apagar el ventilador (solo si el modelo no tiene detalles pequeños).\n"
  3924. #~ "3) Utilizar otro material."
  3925. #~ msgctxt "@info:status"
  3926. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  3927. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  3928. #~ msgctxt "@info:status"
  3929. #~ msgid ""
  3930. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  3931. #~ "\n"
  3932. #~ "Thanks!"
  3933. #~ msgstr ""
  3934. #~ "No se han encontrado modelos en el dibujo. ¿Puede comprobar el contenido de nuevo y asegurarse de que hay una parte o un ensamblado dentro?\n"
  3935. #~ "\n"
  3936. #~ "Gracias."
  3937. #~ msgctxt "@info:status"
  3938. #~ msgid ""
  3939. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  3940. #~ "\n"
  3941. #~ "Sorry!"
  3942. #~ msgstr ""
  3943. #~ "Se ha encontrado más de una parte o ensamblado en el dibujo. Actualmente, únicamente son compatibles dibujos con una sola parte o ensamblado.\n"
  3944. #~ "\n"
  3945. #~ "Perdone las molestias."
  3946. #~ msgctxt "@item:inlistbox"
  3947. #~ msgid "SolidWorks part file"
  3948. #~ msgstr "Archivo de elementos de SolidWorks"
  3949. #~ msgctxt "@item:inlistbox"
  3950. #~ msgid "SolidWorks assembly file"
  3951. #~ msgstr "Archivo de ensamblado de SolidWorks"
  3952. #~ msgctxt "@item:inlistbox"
  3953. #~ msgid "SolidWorks drawing file"
  3954. #~ msgstr "Archivo de dibujo de SolidWorks"
  3955. #~ msgctxt "@info:status"
  3956. #~ msgid ""
  3957. #~ "Dear customer,\n"
  3958. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  3959. #~ "\n"
  3960. #~ "With kind regards\n"
  3961. #~ " - Thomas Karl Pietrowski"
  3962. #~ msgstr ""
  3963. #~ "Estimado cliente:\n"
  3964. #~ "No hemos encontrado una instalación válida de SolidWorks en el sistema. Esto significa que SolidWorks no está instalado o que no dispone de una licencia válida. Asegúrese de que la ejecución del propio SolidWorks funciona sin problemas o póngase en contacto con su CDTI.\n"
  3965. #~ "\n"
  3966. #~ "Atentamente\n"
  3967. #~ " - Thomas Karl Pietrowski"
  3968. #~ msgctxt "@info:status"
  3969. #~ msgid ""
  3970. #~ "Dear customer,\n"
  3971. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  3972. #~ "\n"
  3973. #~ "With kind regards\n"
  3974. #~ " - Thomas Karl Pietrowski"
  3975. #~ msgstr ""
  3976. #~ "Estimado cliente:\n"
  3977. #~ "Actualmente está ejecutando este complemento en un sistema operativo diferente a Windows. Este complemento solo funcionará en Windows con SolidWorks instalado, siempre que se disponga de una licencia válida. Instale este complemento en un equipo Windows con SolidWorks instalado.\n"
  3978. #~ "\n"
  3979. #~ "Atentamente\n"
  3980. #~ " - Thomas Karl Pietrowski"
  3981. #~ msgid "Configure"
  3982. #~ msgstr "Configurar"
  3983. #~ msgid "Installation guide for SolidWorks macro"
  3984. #~ msgstr "Guía de instalación para la macro de SolidWorks"
  3985. #~ msgctxt "@action:button"
  3986. #~ msgid "Disable"
  3987. #~ msgstr "Deshabilitar"
  3988. #~ msgctxt "@action:tooltip"
  3989. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  3990. #~ msgstr "No permitir a Cura enviar estadísticas de uso de forma anónima. Puede habilitarlo de nuevo en las preferencias."
  3991. #~ msgid "Install"
  3992. #~ msgstr "Instalar"
  3993. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  3994. #~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR. No está asignada a ningún directorio."
  3995. #~ msgid "Successfully installed Siemens NX Cura plugin."
  3996. #~ msgstr "El complemento Siemens NX Cura se ha instalado correctamente."
  3997. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  3998. #~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR."
  3999. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  4000. #~ msgstr "Se ha producido un error al instalar el complemento de Siemens NX. No se pudo definir la variable de entorno UGII_USER_DIR de Siemens NX."
  4001. #~ msgctxt "@info:status"
  4002. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  4003. #~ msgstr "No se pudo obtener la ID del complemento de <filename>{0}</filename>"
  4004. #~ msgctxt "@info:tile"
  4005. #~ msgid "Warning"
  4006. #~ msgstr "Advertencia"
  4007. #~ msgctxt "@window:title"
  4008. #~ msgid "Plugin browser"
  4009. #~ msgstr "Explorador de complementos"
  4010. #~ msgctxt "@label"
  4011. #~ msgid "Ultimaker 3"
  4012. #~ msgstr "Ultimaker 3"
  4013. #~ msgctxt "@label"
  4014. #~ msgid "Ultimaker 3 Extended"
  4015. #~ msgstr "Ultimaker 3 Extended"
  4016. #~ msgctxt "@title:window"
  4017. #~ msgid "SolidWorks: Export wizard"
  4018. #~ msgstr "SolidWorks: exportar asistente"
  4019. #~ msgctxt "@action:label"
  4020. #~ msgid "Quality:"
  4021. #~ msgstr "Calidad:"
  4022. #~ msgctxt "@option:curaSolidworksStlQuality"
  4023. #~ msgid "Fine (3D-printing)"
  4024. #~ msgstr "Fina (impresión en 3D)"
  4025. #~ msgctxt "@option:curaSolidworksStlQuality"
  4026. #~ msgid "Coarse (3D-printing)"
  4027. #~ msgstr "Gruesa (impresión en 3D)"
  4028. #~ msgctxt "@option:curaSolidworksStlQuality"
  4029. #~ msgid "Fine (SolidWorks)"
  4030. #~ msgstr "Fina (SolidWorks)"
  4031. #~ msgctxt "@option:curaSolidworksStlQuality"
  4032. #~ msgid "Coarse (SolidWorks)"
  4033. #~ msgstr "Gruesa (SolidWorks)"
  4034. #~ msgctxt "@text:window"
  4035. #~ msgid "Show this dialog again"
  4036. #~ msgstr "Mostrar este cuadro de diálogo de nuevo"
  4037. #~ msgctxt "@action:button"
  4038. #~ msgid "Continue"
  4039. #~ msgstr "Continuar"
  4040. #~ msgctxt "@action:button"
  4041. #~ msgid "Abort"
  4042. #~ msgstr "Cancelar"
  4043. #~ msgctxt "@title:window"
  4044. #~ msgid "How to install Cura SolidWorks macro"
  4045. #~ msgstr "Cómo instalar la macro SolidWorks de Cura"
  4046. #~ msgctxt "@description:label"
  4047. #~ msgid "Steps:"
  4048. #~ msgstr "Pasos:"
  4049. #~ msgctxt "@action:button"
  4050. #~ msgid ""
  4051. #~ "Open the directory\n"
  4052. #~ "with macro and icon"
  4053. #~ msgstr ""
  4054. #~ "Abra el directorio\n"
  4055. #~ "con la macro y el icono"
  4056. #~ msgctxt "@description:label"
  4057. #~ msgid "Instructions:"
  4058. #~ msgstr "Instrucciones:"
  4059. #~ msgctxt "@action:playpause"
  4060. #~ msgid "Play"
  4061. #~ msgstr "Reproducir"
  4062. #~ msgctxt "@action:playpause"
  4063. #~ msgid "Pause"
  4064. #~ msgstr "Pausar"
  4065. #~ msgctxt "@action:button"
  4066. #~ msgid "Previous Step"
  4067. #~ msgstr "Paso anterior"
  4068. #~ msgctxt "@action:button"
  4069. #~ msgid "Done"
  4070. #~ msgstr "Realizado"
  4071. #~ msgctxt "@action:button"
  4072. #~ msgid "Next Step"
  4073. #~ msgstr "Paso siguiente"
  4074. #~ msgctxt "@title:window"
  4075. #~ msgid "SolidWorks plugin: Configuration"
  4076. #~ msgstr "Complementos de SolidWorks: configuración"
  4077. #~ msgctxt "@title:tab"
  4078. #~ msgid "Conversion settings"
  4079. #~ msgstr "Ajustes de la conversión"
  4080. #~ msgctxt "@label"
  4081. #~ msgid "First choice:"
  4082. #~ msgstr "Primera opción:"
  4083. #~ msgctxt "@text:menu"
  4084. #~ msgid "Latest installed version (Recommended)"
  4085. #~ msgstr "Última versión instalada (recomendada)"
  4086. #~ msgctxt "@text:menu"
  4087. #~ msgid "Default version"
  4088. #~ msgstr "Versión predeterminada"
  4089. #~ msgctxt "@label"
  4090. #~ msgid "Show wizard before opening SolidWorks files"
  4091. #~ msgstr "Mostrar asistente antes de abrir los archivos de SolidWorks"
  4092. #~ msgctxt "@label"
  4093. #~ msgid "Automatically rotate opened file into normed orientation"
  4094. #~ msgstr "Girar automáticamente el archivo abierto a la orientación normal"
  4095. #~ msgctxt "@title:tab"
  4096. #~ msgid "Installation(s)"
  4097. #~ msgstr "Instalación(es)"
  4098. #~ msgctxt "@label"
  4099. #~ msgid "COM service found"
  4100. #~ msgstr "Servicio COM encontrado"
  4101. #~ msgctxt "@label"
  4102. #~ msgid "Executable found"
  4103. #~ msgstr "Ejecutable encontrado"
  4104. #~ msgctxt "@label"
  4105. #~ msgid "COM starting"
  4106. #~ msgstr "Iniciando COM"
  4107. #~ msgctxt "@label"
  4108. #~ msgid "Revision number"
  4109. #~ msgstr "Número de revisión"
  4110. #~ msgctxt "@label"
  4111. #~ msgid "Functions available"
  4112. #~ msgstr "Funciones disponibles"
  4113. #~ msgctxt "@label (%1 is object name)"
  4114. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  4115. #~ msgstr "El nuevo diámetro del material está ajustado en %1 mm y no es compatible con el equipo actual. ¿Desea continuar?"
  4116. #~ msgctxt "@action:menu"
  4117. #~ msgid "Browse plugins..."
  4118. #~ msgstr "Examinar complementos..."
  4119. #~ msgctxt "@title:menu"
  4120. #~ msgid "&Build plate"
  4121. #~ msgstr "&Placa de impresión"
  4122. #~ msgctxt "@title:menu menubar:toplevel"
  4123. #~ msgid "P&lugins"
  4124. #~ msgstr "&Complementos"
  4125. #~ msgctxt "@window:title"
  4126. #~ msgid "Install Plugin"
  4127. #~ msgstr "Instalar complemento"
  4128. #~ msgctxt "description"
  4129. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  4130. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  4131. #~ msgctxt "description"
  4132. #~ msgid "Manages network connections to Ultimaker 3 printers"
  4133. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  4134. #~ msgctxt "description"
  4135. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  4136. #~ msgstr "Permite abrir determinados archivos con el propio SolidWorks. La conversión se lleva a cabo mediante este complemento y optimizaciones adicionales."
  4137. #~ msgctxt "name"
  4138. #~ msgid "SolidWorks Integration"
  4139. #~ msgstr "Integración con SolidWorks"
  4140. #~ msgctxt "description"
  4141. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  4142. #~ msgstr "Guarda automáticamente preferencias, máquinas y perfiles después de los cambios."
  4143. #~ msgctxt "name"
  4144. #~ msgid "Auto Save"
  4145. #~ msgstr "Guardado automático"
  4146. #~ msgctxt "description"
  4147. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  4148. #~ msgstr "Ayuda a instalar el botón para exportar a Cura en in Siemens NX."
  4149. #~ msgctxt "name"
  4150. #~ msgid "Siemens NX Integration"
  4151. #~ msgstr "Siemens NX Integration"
  4152. #~ msgctxt "description"
  4153. #~ msgid "Find, manage and install new plugins."
  4154. #~ msgstr "Busca, administra e instala nuevos complementos."
  4155. #~ msgctxt "name"
  4156. #~ msgid "Plugin Browser"
  4157. #~ msgstr "Explorador de complementos"
  4158. #~ msgctxt "description"
  4159. #~ msgid "Ask the user once if he/she agrees with our license"
  4160. #~ msgstr "Preguntar al usuario una vez si acepta la licencia"
  4161. #~ msgctxt "description"
  4162. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  4163. #~ 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.)."
  4164. #~ msgctxt "@item:inlistbox"
  4165. #~ msgid "GCode File"
  4166. #~ msgstr "Archivo GCode"
  4167. #~ msgctxt "@info:status"
  4168. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  4169. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora está ocupada o no está conectada."
  4170. #~ msgctxt "@info:title"
  4171. #~ msgid "Printer Unavailable"
  4172. #~ msgstr "Impresora no disponible"
  4173. #~ msgctxt "@info:status"
  4174. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  4175. #~ msgstr "Esta impresora no es compatible con la impresión USB porque utiliza el tipo UltiGCode."
  4176. #~ msgctxt "@info:title"
  4177. #~ msgid "USB Printing"
  4178. #~ msgstr "Impresión USB"
  4179. #~ msgctxt "@info:status"
  4180. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  4181. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora no es compatible con la impresión USB."
  4182. #~ msgctxt "@info"
  4183. #~ msgid "Unable to update firmware because there are no printers connected."
  4184. #~ msgstr "No se puede actualizar el firmware porque no hay impresoras conectadas."
  4185. #~ msgctxt "@info"
  4186. #~ msgid "Could not find firmware required for the printer at %s."
  4187. #~ msgstr "No se pudo encontrar el firmware necesario para la impresora en %s."
  4188. #~ msgctxt "@info:title"
  4189. #~ msgid "Printer Firmware"
  4190. #~ msgstr "Firmware de la impresora"
  4191. #~ msgctxt "@info:title"
  4192. #~ msgid "Connection status"
  4193. #~ msgstr "Estado de la conexión"
  4194. #~ msgctxt "@info:title"
  4195. #~ msgid "Connection Status"
  4196. #~ msgstr "Estado de la conexión"
  4197. #~ msgctxt "@info:status"
  4198. #~ msgid "Access request was denied on the printer."
  4199. #~ msgstr "Solicitud de acceso denegada en la impresora."
  4200. #~ msgctxt "@info:status"
  4201. #~ msgid "Access request failed due to a timeout."
  4202. #~ msgstr "Se ha producido un error al solicitar acceso porque se ha agotado el tiempo de espera."
  4203. #~ msgctxt "@info:status"
  4204. #~ msgid "The connection with the network was lost."
  4205. #~ msgstr "Se ha perdido la conexión de red."
  4206. #~ msgctxt "@info:status"
  4207. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  4208. #~ msgstr "Se ha perdido la conexión con la impresora. Compruebe que la impresora está conectada."
  4209. #~ msgctxt "@info:status"
  4210. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  4211. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión, la impresora está ocupada. El estado actual de la impresora es %s."
  4212. #~ msgctxt "@info:title"
  4213. #~ msgid "Printer Status"
  4214. #~ msgstr "Estado de la impresora"
  4215. #~ msgctxt "@info:status"
  4216. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  4217. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  4218. #~ msgctxt "@info:status"
  4219. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  4220. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado material en la ranura {0}."
  4221. #~ msgctxt "@label"
  4222. #~ msgid "Not enough material for spool {0}."
  4223. #~ msgstr "No hay suficiente material para la bobina {0}."
  4224. #~ msgctxt "@label"
  4225. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  4226. #~ msgstr "PrintCore distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  4227. #~ msgctxt "@label"
  4228. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  4229. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  4230. #~ msgctxt "@info:status"
  4231. #~ msgid "Unable to send data to printer. Is another job still active?"
  4232. #~ msgstr "No se puede enviar datos a la impresora. ¿Hay otro trabajo que todavía esté activo?"
  4233. #~ msgctxt "@label:MonitorStatus"
  4234. #~ msgid "Print aborted. Please check the printer"
  4235. #~ msgstr "Impresión cancelada. Compruebe la impresora."
  4236. #~ msgctxt "@label:MonitorStatus"
  4237. #~ msgid "Pausing print..."
  4238. #~ msgstr "Pausando impresión..."
  4239. #~ msgctxt "@label:MonitorStatus"
  4240. #~ msgid "Resuming print..."
  4241. #~ msgstr "Reanudando impresión..."
  4242. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  4243. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3."
  4244. #~ msgctxt "Count is number of printers."
  4245. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  4246. #~ msgstr "La impresora aloja un grupo de {count} impresoras conectadas de Ultimaker 3."
  4247. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  4248. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}». Recoja el impreso y confirme que ha borrado la placa de impresión."
  4249. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  4250. #~ msgstr "{printer_name} está reservada para imprimir «{job_name}». Modifique la configuración de la impresora de modo que se adapte al trabajo para comenzar la impresión."
  4251. #~ msgctxt "@info:status"
  4252. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  4253. #~ msgstr "No se pudo enviar el nuevo trabajo de impresión: esta impresora 3D (todavía) no está configurada para alojar un grupo de impresoras de Ultimaker 3 conectadas."
  4254. #~ msgctxt "@info:status"
  4255. #~ msgid "Unable to send print job to group {cluster_name}."
  4256. #~ msgstr "No se puede enviar el trabajo de impresión al grupo {cluster_name}."
  4257. #~ msgctxt "@info:status"
  4258. #~ msgid "Sent {file_name} to group {cluster_name}."
  4259. #~ msgstr "Enviar {file_name} al grupo {cluster_name}."
  4260. #~ msgctxt "@action:button"
  4261. #~ msgid "Show print jobs"
  4262. #~ msgstr "Mostrar trabajos de impresión"
  4263. #~ msgctxt "@info:tooltip"
  4264. #~ msgid "Opens the print jobs interface in your browser."
  4265. #~ msgstr "Abre la interfaz de trabajos de impresión en el navegador."
  4266. #~ msgctxt "@label Printer name"
  4267. #~ msgid "Unknown"
  4268. #~ msgstr "Desconocido"
  4269. #~ msgctxt "@info:progress"
  4270. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  4271. #~ msgstr "Enviando <filename>{file_name}</filename> al grupo {cluster_name}"
  4272. #~ msgctxt "@info:status"
  4273. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  4274. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  4275. #~ msgctxt "@info:status"
  4276. #~ msgid ""
  4277. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  4278. #~ "\n"
  4279. #~ " Thanks!."
  4280. #~ msgstr ""
  4281. #~ "No se han encontrado modelos en el dibujo. ¿Puede comprobar el contenido de nuevo y asegurarse de que hay una parte o un ensamblado dentro?\n"
  4282. #~ "\n"
  4283. #~ " Gracias."
  4284. #~ msgctxt "@info:status"
  4285. #~ msgid ""
  4286. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  4287. #~ "\n"
  4288. #~ "Sorry!"
  4289. #~ msgstr ""
  4290. #~ "Se ha encontrado más de una parte o ensamblado en el dibujo. Actualmente únicamente son compatibles dibujos con una sola parte o ensamblado.\n"
  4291. #~ "\n"
  4292. #~ " Disculpe."
  4293. #~ msgctxt "@item:inmenu"
  4294. #~ msgid "Profile Assistant"
  4295. #~ msgstr "Asistente del perfil"
  4296. #~ msgctxt "@item:inlistbox"
  4297. #~ msgid "Profile Assistant"
  4298. #~ msgstr "Asistente del perfil"
  4299. #~ msgctxt "@item:material"
  4300. #~ msgid "No material loaded"
  4301. #~ msgstr "No se ha cargado material."
  4302. #~ msgctxt "@item:material"
  4303. #~ msgid "Unknown material"
  4304. #~ msgstr "Material desconocido"
  4305. #~ msgctxt "@info:status Has a cancel button next to it."
  4306. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  4307. #~ msgstr "El diámetro del material seleccionado hace que el material sea incompatible con la impresora actual."
  4308. #~ msgctxt "@action:button"
  4309. #~ msgid "Undo"
  4310. #~ msgstr "Deshacer"
  4311. #~ msgctxt "@action"
  4312. #~ msgid "Undo changing the material diameter."
  4313. #~ msgstr "Deshacer cambio del diámetro del material."
  4314. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4315. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  4316. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> no coincide con su equipo actual, no se ha podido importar."
  4317. #~ msgctxt "@label crash message"
  4318. #~ msgid ""
  4319. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  4320. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  4321. #~ " "
  4322. #~ msgstr ""
  4323. #~ "<p><b>Se ha producido un error grave. Envíenos este informe de incidencias para que podamos solucionar el problema.</p></b>\n"
  4324. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  4325. #~ " "
  4326. #~ msgctxt "@label"
  4327. #~ msgid "not yet initialised<br/>"
  4328. #~ msgstr "aún no se ha inicializado<br/>"
  4329. #~ msgctxt "@label"
  4330. #~ msgid "Gcode flavor"
  4331. #~ msgstr "Tipo de Gcode"
  4332. #~ msgctxt "@label"
  4333. #~ msgid "Start Gcode"
  4334. #~ msgstr "Iniciar GCode"
  4335. #~ msgctxt "@tooltip"
  4336. #~ msgid "Gcode commands to be executed at the very start."
  4337. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al inicio."
  4338. #~ msgctxt "@label"
  4339. #~ msgid "End Gcode"
  4340. #~ msgstr "Finalizar GCode"
  4341. #~ msgctxt "@tooltip"
  4342. #~ msgid "Gcode commands to be executed at the very end."
  4343. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al final."
  4344. #~ msgctxt "@label"
  4345. #~ msgid "Extruder Start Gcode"
  4346. #~ msgstr "GCode inicial del extrusor"
  4347. #~ msgctxt "@label"
  4348. #~ msgid "Extruder End Gcode"
  4349. #~ msgstr "GCode final del extrusor"
  4350. #~ msgctxt "@label"
  4351. #~ msgid "Starting firmware update, this may take a while."
  4352. #~ msgstr "Comenzando la actualización del firmware, esto puede tardar algún tiempo."
  4353. #~ msgctxt "@label"
  4354. #~ msgid "Unknown error code: %1"
  4355. #~ msgstr "Código de error desconocido: %1"
  4356. #~ msgctxt "@label Printer name"
  4357. #~ msgid "Ultimaker 3"
  4358. #~ msgstr "Ultimaker 3"
  4359. #~ msgctxt "@label Printer name"
  4360. #~ msgid "Ultimaker 3 Extended"
  4361. #~ msgstr "Ultimaker 3 Extended"
  4362. #~ msgctxt "@label Printer status"
  4363. #~ msgid "Unknown"
  4364. #~ msgstr "Desconocido"
  4365. #~ msgctxt "@title:window"
  4366. #~ msgid "Find & Update plugins"
  4367. #~ msgstr "Buscar y actualizar complementos"
  4368. #~ msgctxt "@label"
  4369. #~ msgid "Here you can find a list of Third Party plugins."
  4370. #~ msgstr "Puede ver aquí una lista de complementos de terceros."
  4371. #~ msgctxt "@action:button"
  4372. #~ msgid "Upgrade"
  4373. #~ msgstr "Actualización"
  4374. #~ msgctxt "@action:button"
  4375. #~ msgid "Download"
  4376. #~ msgstr "Descargar"
  4377. #~ msgctxt "@info:tooltip"
  4378. #~ msgid "Show caution message in gcode reader."
  4379. #~ msgstr "Mostrar mensaje de advertencia en el lector de GCode."
  4380. #~ msgctxt "@option:check"
  4381. #~ msgid "Caution message in gcode reader"
  4382. #~ msgstr "Mensaje de advertencia en el lector de GCode"
  4383. #~ msgctxt "@window:title"
  4384. #~ msgid "Import Profile"
  4385. #~ msgstr "Importar perfil"
  4386. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  4387. #~ msgid "Printer: %1, %2: %3"
  4388. #~ msgstr "Impresora: %1, %2: %3"
  4389. #~ msgctxt "@action:label %1 is printer name"
  4390. #~ msgid "Printer: %1"
  4391. #~ msgstr "Impresora: %1"
  4392. #~ msgctxt "@label"
  4393. #~ msgid "GCode generator"
  4394. #~ msgstr "Generador de GCode"
  4395. #~ msgctxt "@action:menu"
  4396. #~ msgid "Configure setting visiblity..."
  4397. #~ msgstr "Configurar la visibilidad de los ajustes..."
  4398. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  4399. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  4400. #~ msgstr "%1 m/~ %2 g/~ %4 %3"
  4401. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  4402. #~ msgid "%1m / ~ %2g"
  4403. #~ msgstr "%1 m/~ %2 g"
  4404. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  4405. #~ msgid "Automatic: %1"
  4406. #~ msgstr "Automático: %1"
  4407. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  4408. #~ msgid "Automatic: %1"
  4409. #~ msgstr "Automático: %1"
  4410. #~ msgctxt "@info:status"
  4411. #~ msgid "No printer connected"
  4412. #~ msgstr "No hay ninguna impresora conectada"
  4413. #~ msgctxt "@tooltip"
  4414. #~ msgid "The current temperature of this extruder."
  4415. #~ msgstr "Temperatura actual de este extrusor."
  4416. #~ msgctxt "@action:menu"
  4417. #~ msgid "Installed plugins..."
  4418. #~ msgstr "Complementos instalados..."
  4419. #~ msgctxt "@label"
  4420. #~ msgid "Support Extruder"
  4421. #~ msgstr "Extrusor del soporte"
  4422. #~ msgctxt "description"
  4423. #~ msgid "Writes GCode to a file."
  4424. #~ msgstr "Escribe Gcode en un archivo."
  4425. #~ msgctxt "name"
  4426. #~ msgid "GCode Writer"
  4427. #~ msgstr "Escritor de Gcode"
  4428. #~ msgctxt "name"
  4429. #~ msgid "GCode Profile Reader"
  4430. #~ msgstr "Lector de perfiles Gcode"
  4431. #~ msgctxt "description"
  4432. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  4433. #~ msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada."
  4434. #~ msgctxt "name"
  4435. #~ msgid "Print Profile Assistant"
  4436. #~ msgstr "Imprimir asistente del perfil"
  4437. #~ msgctxt "@info:status"
  4438. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  4439. #~ msgstr "Se han producido varios errores al abrir el archivo de SolidWorks. Compruebe que el archivo se puede abrir correctamente en SolidWorks."
  4440. #~ msgctxt "@info:status"
  4441. #~ msgid "Error while starting %s!"
  4442. #~ msgstr "Error al iniciar %s"
  4443. #~ msgctxt "@item:inlistbox"
  4444. #~ msgid "Simulation view"
  4445. #~ msgstr "Vista de simulación"
  4446. #~ msgctxt "@info"
  4447. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  4448. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  4449. #~ msgctxt "@action:button"
  4450. #~ msgid "Dismiss"
  4451. #~ msgstr "Descartar"
  4452. #~ msgctxt "@menuitem"
  4453. #~ msgid "Global"
  4454. #~ msgstr "Global"
  4455. #~ msgctxt "@label crash message"
  4456. #~ msgid ""
  4457. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  4458. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  4459. #~ " "
  4460. #~ msgstr ""
  4461. #~ "<p><b>Se ha producido una excepción fatal. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>\n"
  4462. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  4463. #~ " "
  4464. #~ msgctxt "@label Cura version"
  4465. #~ msgid "<b>Cura version:</b> {version}<br/>"
  4466. #~ msgstr "<b>Versión de Cura:</b> {version}<br/>"
  4467. #~ msgctxt "@label Platform"
  4468. #~ msgid "<b>Platform:</b> {platform}<br/>"
  4469. #~ msgstr "<b>Platforma:</b> {platform}<br/>"
  4470. #~ msgctxt "@label Qt version"
  4471. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  4472. #~ msgstr "<b>Versión de Qt:</b> {qt}<br/>"
  4473. #~ msgctxt "@label PyQt version"
  4474. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  4475. #~ msgstr "<b>Versión de PyQt:</b> {pyqt}<br/>"
  4476. #~ msgctxt "@label OpenGL"
  4477. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  4478. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  4479. #~ msgctxt "@title:groupbox"
  4480. #~ msgid "Exception traceback"
  4481. #~ msgstr "Rastreabilidad de excepciones"
  4482. #~ msgctxt "@label"
  4483. #~ msgid "Material diameter"
  4484. #~ msgstr "Diámetro del material"
  4485. #~ msgctxt "@title:window"
  4486. #~ msgid "Cura SolidWorks Plugin Configuration"
  4487. #~ msgstr "Configuración de complementos Cura SolidWorks"
  4488. #~ msgctxt "@action:label"
  4489. #~ msgid "Default quality of the exported STL:"
  4490. #~ msgstr "Calidad predeterminada del STL exportado:"
  4491. #~ msgctxt "@option:curaSolidworksStlQuality"
  4492. #~ msgid "Always ask"
  4493. #~ msgstr "Preguntar siempre"
  4494. #~ msgctxt "@option:curaSolidworksStlQuality"
  4495. #~ msgid "Always use Fine quality"
  4496. #~ msgstr "Usar siempre calidad fina"
  4497. #~ msgctxt "@option:curaSolidworksStlQuality"
  4498. #~ msgid "Always use Coarse quality"
  4499. #~ msgstr "Usar siempre calidad gruesa"
  4500. #~ msgctxt "@title:window"
  4501. #~ msgid "Import SolidWorks File as STL..."
  4502. #~ msgstr "Importar el archivo SolidWorks como STL..."
  4503. #~ msgctxt "@info:tooltip"
  4504. #~ msgid "Quality of the Exported STL"
  4505. #~ msgstr "Calidad del STL exportado"
  4506. #~ msgctxt "@action:label"
  4507. #~ msgid "Quality"
  4508. #~ msgstr "Calidad"
  4509. #~ msgctxt "@option:curaSolidworksStlQuality"
  4510. #~ msgid "Coarse"
  4511. #~ msgstr "Gruesa"
  4512. #~ msgctxt "@option:curaSolidworksStlQuality"
  4513. #~ msgid "Fine"
  4514. #~ msgstr "Fina"
  4515. #~ msgctxt "@"
  4516. #~ msgid "No Profile Available"
  4517. #~ msgstr "No hay perfiles disponibles."
  4518. #~ msgctxt "@label"
  4519. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  4520. #~ msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  4521. #~ msgctxt "@tooltip"
  4522. #~ msgid "<b>Time specification</b><br/><table>"
  4523. #~ msgstr "<b>Especificación de tiempo</b><br/><table>"
  4524. #~ msgctxt "@action:inmenu menubar:view"
  4525. #~ msgid "&Reset camera position"
  4526. #~ msgstr "&Restablecer posición de la cámara"
  4527. #~ msgctxt "@title:menu menubar:file"
  4528. #~ msgid "Save project"
  4529. #~ msgstr "Guardar proyecto"
  4530. #~ msgctxt "@title:tab"
  4531. #~ msgid "Prepare"
  4532. #~ msgstr "Preparar"
  4533. #~ msgctxt "@title:tab"
  4534. #~ msgid "Monitor"
  4535. #~ msgstr "Supervisar"
  4536. #~ msgctxt "@label"
  4537. #~ msgid "<a href='%1'>Check compatibility</a>"
  4538. #~ msgstr "<a href='%1'>Comprobar compatibilidad</a>"
  4539. #~ msgctxt "description"
  4540. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  4541. #~ msgstr "Permite abrir ciertos archivos con el propio SolidWorks que, a continuación, puede convertirse y cargarse en Cura."
  4542. #~ msgctxt "@label:status"
  4543. #~ msgid "Blocked"
  4544. #~ msgstr "Deshabilitada"
  4545. #~ msgctxt "@label:status"
  4546. #~ msgid "Can't start print"
  4547. #~ msgstr "No se puede imprimir"
  4548. #~ msgctxt "@action:button"
  4549. #~ msgid "Open Connect.."
  4550. #~ msgstr "Abrir Connect"
  4551. #~ msgctxt "@info:title"
  4552. #~ msgid "Print Details"
  4553. #~ msgstr "Datos de impresión"
  4554. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4555. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  4556. #~ msgstr "Para garantizar que su {machine_name} disponga de las prestaciones más recientes, se recomienda actualizar el firmware con regularidad. Esto se puede hacer en la {machine_name} (cuando esté conectada a la red) o vía USB."
  4557. #~ msgctxt "@info:title"
  4558. #~ msgid "Layer View"
  4559. #~ msgstr "Vista de capas"
  4560. #~ msgctxt "@menuitem"
  4561. #~ msgid "Browse plugins"
  4562. #~ msgstr "Examinar complementos"
  4563. #~ msgctxt "@info:title"
  4564. #~ msgid "Export Details"
  4565. #~ msgstr "Datos de exportación"
  4566. #~ msgctxt "@label"
  4567. #~ msgid ""
  4568. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  4569. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  4570. #~ " "
  4571. #~ msgstr ""
  4572. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  4573. #~ " <p>Use la siguiente información para enviar un informe de error a <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  4574. #~ " "
  4575. #~ msgctxt "@action:button"
  4576. #~ msgid "Open Web Page"
  4577. #~ msgstr "Abrir página web"
  4578. #~ msgctxt "@action:button"
  4579. #~ msgid "Ok"
  4580. #~ msgstr "Aceptar"
  4581. #~ msgctxt "@label"
  4582. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  4583. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  4584. #~ msgctxt "@label"
  4585. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  4586. #~ msgstr "La impresora aloja un grupo de %1 impresoras conectadas de Ultimaker 3"
  4587. #~ msgctxt "@label:status"
  4588. #~ msgid "Preparing"
  4589. #~ msgstr "Preparando"
  4590. #~ msgctxt "@label"
  4591. #~ msgid "Completed on: "
  4592. #~ msgstr "Completado el: "
  4593. #~ msgctxt "@info:tooltip"
  4594. #~ msgid "Opens the print jobs page with your default web browser."
  4595. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  4596. #~ msgctxt "@label"
  4597. #~ msgid "PRINTER GROUP"
  4598. #~ msgstr "GRUPO DE IMPRESORAS"
  4599. #~ msgctxt "@action:warning"
  4600. #~ msgid "Loading a project will clear all models on the buildplate"
  4601. #~ msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  4602. #~ msgctxt "@label"
  4603. #~ msgid ""
  4604. #~ " plugin contains a license.\n"
  4605. #~ "You need to accept this license to install this plugin.\n"
  4606. #~ "Do you agree with the terms below?"
  4607. #~ msgstr ""
  4608. #~ " El complemento incluye una licencia.\n"
  4609. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  4610. #~ "¿Acepta las siguientes condiciones?"
  4611. #~ msgctxt "@label"
  4612. #~ msgid "00h 00min"
  4613. #~ msgstr "00h 00min"
  4614. #~ msgctxt "@tooltip"
  4615. #~ msgid "<b>Time information</b>"
  4616. #~ msgstr "<b>Información sobre el tiempo</b>"
  4617. #~ msgctxt "@description"
  4618. #~ msgid "Print time"
  4619. #~ msgstr "Tiempo de impresión"
  4620. #~ msgctxt "@label"
  4621. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  4622. #~ msgstr "%1m / ~ %2g/ ~ %4 %3"
  4623. #~ msgctxt "@label"
  4624. #~ msgid "%1m / ~ %2g"
  4625. #~ msgstr "%1m / ~ %2g"
  4626. #~ msgctxt "@title:window"
  4627. #~ msgid "Cura"
  4628. #~ msgstr "Cura"
  4629. #~ msgctxt "@label"
  4630. #~ msgid "<a href='%1'>Check material compatibility</a>"
  4631. #~ msgstr "<a href='%1'>Comprobar la compatibilidad de los materiales</a>"
  4632. #~ msgctxt "name"
  4633. #~ msgid "UM3 Network Connection (Cluster)"
  4634. #~ msgstr "Conexión de red UM3 (grupo)"
  4635. #~ msgctxt "description"
  4636. #~ msgid "Provides the Layer view."
  4637. #~ msgstr "Proporciona la vista de capas."
  4638. #~ msgctxt "name"
  4639. #~ msgid "Layer View"
  4640. #~ msgstr "Vista de capas"
  4641. #~ msgctxt "@item:inlistbox"
  4642. #~ msgid "X-Ray"
  4643. #~ msgstr "Rayos X"
  4644. #~ msgctxt "@label"
  4645. #~ msgid "Doodle3D"
  4646. #~ msgstr "Doodle3D"
  4647. #~ msgctxt "@info:whatsthis"
  4648. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  4649. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  4650. #~ msgctxt "@item:inmenu"
  4651. #~ msgid "Doodle3D printing"
  4652. #~ msgstr "Impresión Doodle3D"
  4653. #~ msgctxt "@action:button"
  4654. #~ msgid "Print with Doodle3D"
  4655. #~ msgstr "Imprimir con Doodle3D"
  4656. #~ msgctxt "@info:tooltip"
  4657. #~ msgid "Print with "
  4658. #~ msgstr "Imprimir con"
  4659. #~ msgctxt "@title:menu"
  4660. #~ msgid "Doodle3D"
  4661. #~ msgstr "Doodle3D"
  4662. #~ msgctxt "@item:inlistbox"
  4663. #~ msgid "Enable Scan devices..."
  4664. #~ msgstr "Habilitar dispositivos de digitalización..."
  4665. #~ msgctxt "@info:progress"
  4666. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  4667. #~ msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  4668. #~ msgctxt "@info:status"
  4669. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  4670. #~ msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  4671. #~ msgctxt "@info:status"
  4672. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  4673. #~ msgstr "Tenga en cuenta que tiene que volver a abrir el archivo SolidWorks manualmente. Volver a cargar el modelo no funciona."
  4674. #~ msgctxt "@item:inlistbox"
  4675. #~ msgid "Layers"
  4676. #~ msgstr "Capas"
  4677. #~ msgid "Browse plugins"
  4678. #~ msgstr "Examinar complementos"
  4679. #~ msgctxt "@item:inmenu"
  4680. #~ msgid "Solid"
  4681. #~ msgstr "Sólido"
  4682. #~ msgctxt "@label"
  4683. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  4684. #~ msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  4685. #~ msgctxt "@info:status"
  4686. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  4687. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  4688. #~ msgctxt "@info:status"
  4689. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  4690. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  4691. #~ msgctxt "@info:status"
  4692. #~ msgid "Exported profile to <filename>{0}</filename>"
  4693. #~ msgstr "Perfil exportado a <filename>{0}</filename>"
  4694. #~ msgctxt "@info:status"
  4695. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  4696. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  4697. #~ msgctxt "@title:window"
  4698. #~ msgid "Doodle3D Settings"
  4699. #~ msgstr "Ajustes de Doodle3D"
  4700. #~ msgctxt "@title:window"
  4701. #~ msgid "Print to: %1"
  4702. #~ msgstr "Imprimir en: %1"
  4703. #~ msgctxt "@label"
  4704. #~ msgid "Extruder Temperature: %1/%2°C"
  4705. #~ msgstr "Temperatura del extrusor: %1/%2 °C"
  4706. #~ msgctxt "@label"
  4707. #~ msgid "Bed Temperature: %1/%2°C"
  4708. #~ msgstr "Temperatura de la plataforma: %1/%2 °C"
  4709. #~ msgctxt "@label"
  4710. #~ msgid "%1"
  4711. #~ msgstr "%1"
  4712. #~ msgctxt "@label"
  4713. #~ msgid "View Mode: Layers"
  4714. #~ msgstr "Ver modo: Capas"
  4715. #~ msgctxt "@info:status"
  4716. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4717. #~ msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>."
  4718. #~ msgctxt "@info:status"
  4719. #~ msgid "Successfully imported material <filename>%1</filename>"
  4720. #~ msgstr "El material se ha importado correctamente en <filename>%1</filename>."
  4721. #~ msgctxt "@info:status"
  4722. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4723. #~ msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>."
  4724. #~ msgctxt "@info:status"
  4725. #~ msgid "Successfully exported material to <filename>%1</filename>"
  4726. #~ msgstr "El material se ha exportado correctamente a <filename>%1</filename>."
  4727. #~ msgctxt "@label"
  4728. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  4729. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  4730. #~ msgctxt "@label"
  4731. #~ msgid "%1 m / ~ %2 g"
  4732. #~ msgstr "%1 m/~ %2 g"
  4733. #~ msgctxt "@label"
  4734. #~ msgid "Hotend"
  4735. #~ msgstr "Extremo caliente"
  4736. #~ msgctxt "@action:button"
  4737. #~ msgid "View Mode"
  4738. #~ msgstr "Ver modo"
  4739. #~ msgctxt "@title:tab"
  4740. #~ msgid "Print"
  4741. #~ msgstr "Imprimir"
  4742. #~ msgctxt "@label"
  4743. #~ msgid "0%"
  4744. #~ msgstr "0 %"
  4745. #~ msgctxt "@label"
  4746. #~ msgid "Empty infill will leave your model hollow with low strength."
  4747. #~ msgstr "Un relleno vacío dejará hueco el modelo con baja resistencia."
  4748. #~ msgctxt "@label"
  4749. #~ msgid "20%"
  4750. #~ msgstr "20 %"
  4751. #~ msgctxt "@label"
  4752. #~ msgid "Light (20%) infill will give your model an average strength."
  4753. #~ msgstr "Un relleno ligero (20 %) dará al modelo una resistencia media."
  4754. #~ msgctxt "@label"
  4755. #~ msgid "50%"
  4756. #~ msgstr "50 %"
  4757. #~ msgctxt "@label"
  4758. #~ msgid "Dense (50%) infill will give your model an above average strength."
  4759. #~ msgstr "Un relleno denso (50 %) dará al modelo una resistencia por encima de la media."
  4760. #~ msgctxt "@label"
  4761. #~ msgid "100%"
  4762. #~ msgstr "100 %"
  4763. #~ msgctxt "@label"
  4764. #~ msgid "Solid (100%) infill will make your model completely solid."
  4765. #~ msgstr "Un relleno sólido (100 %) hará que el modelo sea completamente macizo."
  4766. #~ msgctxt "@label"
  4767. #~ msgid "Gradual"
  4768. #~ msgstr "Gradual"
  4769. #~ msgctxt "description"
  4770. #~ msgid "Provides support for writing X3G files"
  4771. #~ msgstr "Proporciona asistencia para escribir archivos X3G."
  4772. #~ msgctxt "name"
  4773. #~ msgid "X3G Writer"
  4774. #~ msgstr "Escritor de X3G"
  4775. #~ msgctxt "@label"
  4776. #~ msgid "Machine Settings action"
  4777. #~ msgstr "Acción Ajustes de la máquina"
  4778. #~ msgctxt "@info:whatsthis"
  4779. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  4780. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  4781. #~ msgctxt "@label"
  4782. #~ msgid "X-Ray View"
  4783. #~ msgstr "Vista de rayos X"
  4784. #~ msgctxt "@info:whatsthis"
  4785. #~ msgid "Provides the X-Ray view."
  4786. #~ msgstr "Proporciona la vista de rayos X."
  4787. #~ msgctxt "@label"
  4788. #~ msgid "X3D Reader"
  4789. #~ msgstr "Lector de X3D"
  4790. #~ msgctxt "@info:whatsthis"
  4791. #~ msgid "Provides support for reading X3D files."
  4792. #~ msgstr "Proporciona asistencia para leer archivos X3D."
  4793. #~ msgctxt "@label"
  4794. #~ msgid "GCode Writer"
  4795. #~ msgstr "Escritor de GCode"
  4796. #~ msgctxt "@info:whatsthis"
  4797. #~ msgid "Writes GCode to a file."
  4798. #~ msgstr "Escribe GCode en un archivo."
  4799. #~ msgctxt "@action:button Preceded by 'Ready to'."
  4800. #~ msgid "Print with Doodle3D"
  4801. #~ msgstr "Imprimir con Doodle3D"
  4802. #~ msgctxt "@info:whatsthis"
  4803. #~ msgid "Shows changes since latest checked version."
  4804. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  4805. #~ msgctxt "@label"
  4806. #~ msgid "Profile flatener"
  4807. #~ msgstr "Aplanador de perfil"
  4808. #~ msgctxt "@info:whatsthis"
  4809. #~ msgid "Create a flattend quality changes profile."
  4810. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  4811. #~ msgctxt "@label"
  4812. #~ msgid "USB printing"
  4813. #~ msgstr "Impresión USB"
  4814. #~ msgctxt "@info:whatsthis"
  4815. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4816. #~ msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  4817. #~ msgctxt "X3G Writer Plugin Description"
  4818. #~ msgid "Writes X3G to a file"
  4819. #~ msgstr "Escribe X3G en un archivo."
  4820. #~ msgctxt "@label"
  4821. #~ msgid "Removable Drive Output Device Plugin"
  4822. #~ msgstr "Complemento de dispositivo de salida de unidad extraíble"
  4823. #~ msgctxt "@info:whatsthis"
  4824. #~ msgid "Provides removable drive hotplugging and writing support."
  4825. #~ msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  4826. #~ msgctxt "@info:whatsthis"
  4827. #~ msgid "Manages network connections to Ultimaker 3 printers"
  4828. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  4829. #~ msgctxt "@label"
  4830. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  4831. #~ msgstr "Print core distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  4832. #~ msgctxt "@label"
  4833. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  4834. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  4835. #~ msgctxt "@label"
  4836. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  4837. #~ msgstr "Los print cores o los materiales de la impresora difieren de los del proyecto actual. Para obtener el mejor resultado, segmente siempre los print cores y materiales que se hayan insertado en la impresora."
  4838. #~ msgctxt "@label"
  4839. #~ msgid "Post Processing"
  4840. #~ msgstr "Posprocesamiento"
  4841. #~ msgctxt "Description of plugin"
  4842. #~ msgid "Extension that allows for user created scripts for post processing"
  4843. #~ msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios."
  4844. #~ msgctxt "@label"
  4845. #~ msgid "Auto Save"
  4846. #~ msgstr "Guardado automático"
  4847. #~ msgctxt "@info:whatsthis"
  4848. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  4849. #~ msgstr "Guarda automáticamente Preferencias, Máquinas y Perfiles después de los cambios."
  4850. #~ msgctxt "@label"
  4851. #~ msgid "Slice info"
  4852. #~ msgstr "Info de la segmentación"
  4853. #~ msgctxt "@info:whatsthis"
  4854. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  4855. #~ msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  4856. #~ msgctxt "@info"
  4857. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  4858. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  4859. #~ msgctxt "@label"
  4860. #~ msgid "Material Profiles"
  4861. #~ msgstr "Perfiles de material"
  4862. #~ msgctxt "@info:whatsthis"
  4863. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  4864. #~ msgstr "Permite leer y escribir perfiles de material basados en XML."
  4865. #~ msgctxt "@label"
  4866. #~ msgid "Legacy Cura Profile Reader"
  4867. #~ msgstr "Lector de perfiles antiguos de Cura"
  4868. #~ msgctxt "@info:whatsthis"
  4869. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  4870. #~ msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  4871. #~ msgctxt "@label"
  4872. #~ msgid "GCode Profile Reader"
  4873. #~ msgstr "Lector de perfiles GCode"
  4874. #~ msgctxt "@info:whatsthis"
  4875. #~ msgid "Provides support for importing profiles from g-code files."
  4876. #~ msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  4877. #~ msgctxt "@label"
  4878. #~ msgid "Layer View"
  4879. #~ msgstr "Vista de capas"
  4880. #~ msgctxt "@info:whatsthis"
  4881. #~ msgid "Provides the Layer view."
  4882. #~ msgstr "Proporciona la vista de capas."
  4883. #~ msgctxt "@label"
  4884. #~ msgid "Version Upgrade 2.5 to 2.6"
  4885. #~ msgstr "Actualización de la versión 2.5 a la 2.6"
  4886. #~ msgctxt "@info:whatsthis"
  4887. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4888. #~ msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  4889. #~ msgctxt "@label"
  4890. #~ msgid "Version Upgrade 2.1 to 2.2"
  4891. #~ msgstr "Actualización de la versión 2.1 a la 2.2"
  4892. #~ msgctxt "@info:whatsthis"
  4893. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4894. #~ msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  4895. #~ msgctxt "@label"
  4896. #~ msgid "Version Upgrade 2.2 to 2.4"
  4897. #~ msgstr "Actualización de la versión 2.2 a la 2.4"
  4898. #~ msgctxt "@info:whatsthis"
  4899. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4900. #~ msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  4901. #~ msgctxt "@label"
  4902. #~ msgid "Image Reader"
  4903. #~ msgstr "Lector de imágenes"
  4904. #~ msgctxt "@info:whatsthis"
  4905. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  4906. #~ msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  4907. #~ msgctxt "@label"
  4908. #~ msgid "CuraEngine Backend"
  4909. #~ msgstr "Backend de CuraEngine"
  4910. #~ msgctxt "@info:whatsthis"
  4911. #~ msgid "Provides the link to the CuraEngine slicing backend."
  4912. #~ msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  4913. #~ msgctxt "@label"
  4914. #~ msgid "Per Model Settings Tool"
  4915. #~ msgstr "Herramienta de ajustes por modelo"
  4916. #~ msgctxt "@info:whatsthis"
  4917. #~ msgid "Provides the Per Model Settings."
  4918. #~ msgstr "Proporciona los ajustes por modelo."
  4919. #~ msgctxt "@label"
  4920. #~ msgid "3MF Reader"
  4921. #~ msgstr "Lector de 3MF"
  4922. #~ msgctxt "@info:whatsthis"
  4923. #~ msgid "Provides support for reading 3MF files."
  4924. #~ msgstr "Proporciona asistencia para leer archivos 3MF."
  4925. #~ msgctxt "@label"
  4926. #~ msgid "Solid View"
  4927. #~ msgstr "Vista de sólidos"
  4928. #~ msgctxt "@info:whatsthis"
  4929. #~ msgid "Provides a normal solid mesh view."
  4930. #~ msgstr "Proporciona una vista de malla sólida normal."
  4931. #~ msgctxt "@label"
  4932. #~ msgid "G-code Reader"
  4933. #~ msgstr "Lector de GCode"
  4934. #~ msgctxt "@info:whatsthis"
  4935. #~ msgid "Allows loading and displaying G-code files."
  4936. #~ msgstr "Permite cargar y visualizar archivos GCode."
  4937. #~ msgctxt "@label"
  4938. #~ msgid "Cura Profile Writer"
  4939. #~ msgstr "Escritor de perfiles de Cura"
  4940. #~ msgctxt "@info:whatsthis"
  4941. #~ msgid "Provides support for exporting Cura profiles."
  4942. #~ msgstr "Proporciona asistencia para exportar perfiles de Cura."
  4943. #~ msgctxt "@label"
  4944. #~ msgid "3MF Writer"
  4945. #~ msgstr "Escritor de 3MF"
  4946. #~ msgctxt "@info:whatsthis"
  4947. #~ msgid "Provides support for writing 3MF files."
  4948. #~ msgstr "Proporciona asistencia para escribir archivos 3MF."
  4949. #~ msgctxt "@label"
  4950. #~ msgid "Ultimaker machine actions"
  4951. #~ msgstr "Acciones de la máquina Ultimaker"
  4952. #~ msgctxt "@info:whatsthis"
  4953. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  4954. #~ 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.)."
  4955. #~ msgctxt "@label"
  4956. #~ msgid "Cura Profile Reader"
  4957. #~ msgstr "Lector de perfiles de Cura"
  4958. #~ msgctxt "@info:whatsthis"
  4959. #~ msgid "Provides support for importing Cura profiles."
  4960. #~ msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  4961. #~ msgctxt "@info"
  4962. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  4963. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  4964. #~ msgctxt "@label"
  4965. #~ msgid "Build Plate Shape"
  4966. #~ msgstr "Forma de la placa de impresión"
  4967. #~ msgctxt "@option:check"
  4968. #~ msgid "Machine Center is Zero"
  4969. #~ msgstr "El centro de la máquina es cero."
  4970. #~ msgctxt "@option:check"
  4971. #~ msgid "Heated Bed"
  4972. #~ msgstr "Plataforma caliente"
  4973. #~ msgctxt "@label"
  4974. #~ msgid "GCode Flavor"
  4975. #~ msgstr "Tipo de GCode"
  4976. #~ msgctxt "@label"
  4977. #~ msgid "Material Diameter"
  4978. #~ msgstr "Diámetro del material"
  4979. #~ msgctxt "@label"
  4980. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  4981. #~ 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>"
  4982. #~ msgctxt "@item:inlistbox"
  4983. #~ msgid "Ultimaker"
  4984. #~ msgstr "Ultimaker"
  4985. #~ msgctxt "@label"
  4986. #~ msgid "Support library for scientific computing "
  4987. #~ msgstr "Biblioteca de apoyo para cálculos científicos "
  4988. #~ msgctxt "@tooltip"
  4989. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  4990. #~ msgstr "<b>Configuración de impresión</b><br/><br/>Editar o revisar los ajustes del trabajo de impresión activo."
  4991. #~ msgctxt "@tooltip"
  4992. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  4993. #~ msgstr "<b>Monitor de impresión</b><br/><br/>Supervisar el estado de la impresora conectada y del trabajo de impresión en curso."
  4994. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  4995. #~ msgid "Automatic: %1"
  4996. #~ msgstr "Automático: %1"
  4997. #~ msgctxt "@label:PrintjobStatus"
  4998. #~ msgid "Please load a 3d model"
  4999. #~ msgstr "Cargue un modelo en 3D"
  5000. #~ msgctxt "@label"
  5001. #~ msgid "Print Selected Model with %1"
  5002. #~ msgid_plural "Print Selected Models With %1"
  5003. #~ msgstr[0] "Imprimir modelo seleccionado con %1"
  5004. #~ msgstr[1] "Imprimir modelos seleccionados con %1"
  5005. #~ msgctxt "@info:status"
  5006. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  5007. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  5008. #~ msgctxt "@label"
  5009. #~ msgid "Version Upgrade 2.4 to 2.5"
  5010. #~ msgstr "Actualización de la versión 2.4 a la 2.5"
  5011. #~ msgctxt "@info:whatsthis"
  5012. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  5013. #~ msgstr "Actualiza la configuración de Cura 2.4 a Cura 2.5."
  5014. #~ msgctxt "@info:status"
  5015. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  5016. #~ msgstr "No se puede encontrar el perfil de calidad de esta combinación. Se utilizarán los ajustes predeterminados."
  5017. #~ msgctxt "@title:window"
  5018. #~ msgid "Oops!"
  5019. #~ msgstr "¡Vaya!"
  5020. #~ msgctxt "@label"
  5021. #~ msgid ""
  5022. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  5023. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  5024. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  5025. #~ " "
  5026. #~ msgstr ""
  5027. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  5028. #~ " <p>Esperamos que la imagen de este gatito le ayude a recuperarse del shock.</p>\n"
  5029. #~ " <p>Use la siguiente información para enviar un informe de error a <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  5030. #~ " "
  5031. #~ msgctxt "@label"
  5032. #~ msgid "Please enter the correct settings for your printer below:"
  5033. #~ msgstr "Introduzca los ajustes correctos de la impresora a continuación:"
  5034. #~ msgctxt "@label"
  5035. #~ msgid "Extruder %1"
  5036. #~ msgstr "Extrusor %1"
  5037. #~ msgctxt "@label Followed by extruder selection drop-down."
  5038. #~ msgid "Print model with"
  5039. #~ msgstr "Imprimir modelo con"
  5040. #~ msgctxt "@label"
  5041. #~ msgid "You will need to restart the application for language changes to have effect."
  5042. #~ msgstr "Tendrá que reiniciar la aplicación para que tengan efecto los cambios del idioma."
  5043. #~ msgctxt "@info:tooltip"
  5044. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  5045. #~ msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo."
  5046. #~ msgctxt "@action:inmenu menubar:edit"
  5047. #~ msgid "Delete &Selection"
  5048. #~ msgstr "Eliminar &selección"
  5049. #~ msgctxt "@action:inmenu menubar:file"
  5050. #~ msgid "&Open File..."
  5051. #~ msgstr "&Abrir archivo..."
  5052. #~ msgctxt "@action:inmenu menubar:file"
  5053. #~ msgid "&Open Project..."
  5054. #~ msgstr "A&brir proyecto..."
  5055. #~ msgctxt "@title:window"
  5056. #~ msgid "Multiply Model"
  5057. #~ msgstr "Multiplicar modelo"
  5058. #~ msgctxt "@title:menu menubar:file"
  5059. #~ msgid "Save &All"
  5060. #~ msgstr "Guardar &todo"
  5061. #~ msgctxt "@title:window"
  5062. #~ msgid "Open file"
  5063. #~ msgstr "Abrir archivo"
  5064. #~ msgctxt "@title:window"
  5065. #~ msgid "Open workspace"
  5066. #~ msgstr "Abrir área de trabajo"
  5067. #~ msgctxt "@label"
  5068. #~ msgid "Hollow"
  5069. #~ msgstr "Hueco"
  5070. #~ msgctxt "@label"
  5071. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  5072. #~ msgstr "Ningún (0%) relleno, lo que dejará hueco el modelo a costa de baja resistencia"
  5073. #~ msgctxt "@label"
  5074. #~ msgid "Light"
  5075. #~ msgstr "Ligero"
  5076. #~ msgctxt "@label"
  5077. #~ msgid "Light (20%) infill will give your model an average strength"
  5078. #~ msgstr "Un relleno ligero (20%) dará al modelo de una resistencia media"
  5079. #~ msgctxt "@label"
  5080. #~ msgid "Dense"
  5081. #~ msgstr "Denso"
  5082. #~ msgctxt "@label"
  5083. #~ msgid "Dense (50%) infill will give your model an above average strength"
  5084. #~ msgstr "Un relleno denso (50%) dará al modelo de una resistencia por encima de la media"
  5085. #~ msgctxt "@label"
  5086. #~ msgid "Solid"
  5087. #~ msgstr "Sólido"
  5088. #~ msgctxt "@label"
  5089. #~ msgid "Solid (100%) infill will make your model completely solid"
  5090. #~ msgstr "Un relleno sólido (100%) hará que el modelo sea completamente macizo"
  5091. #~ msgctxt "@label"
  5092. #~ msgid "Enable Support"
  5093. #~ msgstr "Habilitar el soporte"
  5094. #~ msgctxt "@label"
  5095. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5096. #~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos."
  5097. #~ msgctxt "@label"
  5098. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5099. #~ msgstr "¿Necesita mejorar sus impresiones? Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>."
  5100. #~ msgctxt "@info:status"
  5101. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  5102. #~ msgstr "Conectado a través de la red a {0}. Apruebe la solicitud de acceso en la impresora."
  5103. #~ msgctxt "@info:status"
  5104. #~ msgid "Connected over the network to {0}."
  5105. #~ msgstr "Conectado a través de la red a {0}."
  5106. #~ msgctxt "@info:status"
  5107. #~ msgid "Connected over the network to {0}. No access to control the printer."
  5108. #~ msgstr "Conectado a través de la red a {0}. No hay acceso para controlar la impresora."
  5109. #~ msgctxt "@info:status"
  5110. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  5111. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión porque la impresora está ocupada. Compruebe la impresora."
  5112. #~ msgctxt "@label"
  5113. #~ msgid "You made changes to the following setting(s)/override(s):"
  5114. #~ msgstr "Ha realizado cambios en los siguientes ajustes o se ha sobrescrito:"
  5115. #~ msgctxt "@window:title"
  5116. #~ msgid "Switched profiles"
  5117. #~ msgstr "Perfiles activados"
  5118. #~ msgctxt "@label"
  5119. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  5120. #~ msgstr "¿Desea transferir los %d ajustes o sobrescrituras modificados a este perfil?"
  5121. #~ msgctxt "@label"
  5122. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  5123. #~ msgstr "Si transfiere los ajustes, se sobrescribirán los del perfil. Si no los transfiere, se perderán."
  5124. #~ msgctxt "@label"
  5125. #~ msgid "Cost per Meter (Approx.)"
  5126. #~ msgstr "Coste por metro (aprox.)"
  5127. #~ msgctxt "@label"
  5128. #~ msgid "%1/m"
  5129. #~ msgstr "%1/m"
  5130. #~ msgctxt "@info:tooltip"
  5131. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  5132. #~ msgstr "Mostrar las cinco primeras capas en la vista de capas o solo la primera. Aunque para representar cinco capas se necesita más tiempo, puede mostrar más información."
  5133. #~ msgctxt "@action:button"
  5134. #~ msgid "Display five top layers in layer view"
  5135. #~ msgstr "Mostrar las cinco primeras capas en la vista de capas"
  5136. #~ msgctxt "@info:tooltip"
  5137. #~ msgid "Should only the top layers be displayed in layerview?"
  5138. #~ msgstr "¿Deben mostrarse solo las primeras capas en la vista de capas?"
  5139. #~ msgctxt "@option:check"
  5140. #~ msgid "Only display top layer(s) in layer view"
  5141. #~ msgstr "Mostrar solo las primeras capas en la vista de capas"
  5142. #~ msgctxt "@label"
  5143. #~ msgid "Opening files"
  5144. #~ msgstr "Abriendo archivos..."
  5145. #~ msgctxt "@label"
  5146. #~ msgid "Printer Monitor"
  5147. #~ msgstr "Monitor de la impresora"
  5148. #~ msgctxt "@label"
  5149. #~ msgid "Temperatures"
  5150. #~ msgstr "Temperaturas"
  5151. #~ msgctxt "@label:PrintjobStatus"
  5152. #~ msgid "Preparing to slice..."
  5153. #~ msgstr "Preparando para segmentar..."
  5154. #~ msgctxt "@window:title"
  5155. #~ msgid "Changes on the Printer"
  5156. #~ msgstr "Cambios en la impresora"
  5157. #~ msgctxt "@action:inmenu"
  5158. #~ msgid "&Duplicate Model"
  5159. #~ msgstr "&Duplicar modelo"
  5160. #~ msgctxt "@label"
  5161. #~ msgid "Helper Parts:"
  5162. #~ msgstr "Partes de los asistentes:"
  5163. #~ msgctxt "@label"
  5164. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5165. #~ msgstr "Habilita estructuras de soporte de impresión. Esta opción formará estructuras de soporte por debajo del modelo para evitar que el modelo se combe o la impresión en el aire."
  5166. #~ msgctxt "@label"
  5167. #~ msgid "Don't print support"
  5168. #~ msgstr "No utilizar soporte de impresión."
  5169. #~ msgctxt "@label"
  5170. #~ msgid "Print support using %1"
  5171. #~ msgstr "Soporte de impresión con %1"
  5172. #~ msgctxt "@label:listbox"
  5173. #~ msgid "Printer:"
  5174. #~ msgstr "Impresora:"
  5175. #~ msgctxt "@info:status"
  5176. #~ msgid "Successfully imported profiles {0}"
  5177. #~ msgstr "Perfiles {0} importados correctamente"
  5178. #~ msgctxt "@label"
  5179. #~ msgid "Scripts"
  5180. #~ msgstr "Secuencias de comandos"
  5181. #~ msgctxt "@label"
  5182. #~ msgid "Active Scripts"
  5183. #~ msgstr "Secuencias de comandos activas"
  5184. #~ msgctxt "@label"
  5185. #~ msgid "Done"
  5186. #~ msgstr "Realizada"
  5187. #~ msgctxt "@item:inlistbox"
  5188. #~ msgid "English"
  5189. #~ msgstr "Inglés"
  5190. #~ msgctxt "@item:inlistbox"
  5191. #~ msgid "Finnish"
  5192. #~ msgstr "Finlandés"
  5193. #~ msgctxt "@item:inlistbox"
  5194. #~ msgid "French"
  5195. #~ msgstr "Francés"
  5196. #~ msgctxt "@item:inlistbox"
  5197. #~ msgid "German"
  5198. #~ msgstr "Alemán"
  5199. #~ msgctxt "@item:inlistbox"
  5200. #~ msgid "Italian"
  5201. #~ msgstr "Italiano"
  5202. #~ msgctxt "@item:inlistbox"
  5203. #~ msgid "Dutch"
  5204. #~ msgstr "Holandés"
  5205. #~ msgctxt "@item:inlistbox"
  5206. #~ msgid "Spanish"
  5207. #~ msgstr "Español"
  5208. #~ msgctxt "@label"
  5209. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  5210. #~ msgstr "¿Desea cambiar los PrintCores y materiales de Cura para que coincidan con la impresora?"
  5211. #~ msgctxt "@label:"
  5212. #~ msgid "Print Again"
  5213. #~ msgstr "Volver a imprimir"