cura.po 392 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590
  1. # Cura
  2. # Copyright (C) 2022 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: PACKAGE VERSION\n"
  8. "Report-Msgid-Bugs-To: \n"
  9. "POT-Creation-Date: 2022-04-13 10:49+0200\n"
  10. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  11. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  12. "Language-Team: LANGUAGE <LL@li.org>\n"
  13. "Language: es_ES\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "Plural-Forms: nplurals=2; plural=n != 1;\n"
  18. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PrepareStage/__init__.py:12
  19. msgctxt "@item:inmenu"
  20. msgid "Prepare"
  21. msgstr "Preparar"
  22. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileWriter/__init__.py:14
  23. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraProfileReader/__init__.py:14
  24. msgctxt "@item:inlistbox"
  25. msgid "Cura Profile"
  26. msgstr "Perfil de cura"
  27. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:15
  28. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  29. msgid "Open Compressed Triangle Mesh"
  30. msgstr "Open Compressed Triangle Mesh"
  31. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:19
  32. msgctxt "@item:inlistbox"
  33. msgid "COLLADA Digital Asset Exchange"
  34. msgstr "COLLADA Digital Asset Exchange"
  35. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:23
  36. msgctxt "@item:inlistbox"
  37. msgid "glTF Binary"
  38. msgstr "glTF binario"
  39. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:27
  40. msgctxt "@item:inlistbox"
  41. msgid "glTF Embedded JSON"
  42. msgstr "glTF incrustado JSON"
  43. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:36
  44. msgctxt "@item:inlistbox"
  45. msgid "Stanford Triangle Format"
  46. msgstr "Stanford Triangle Format"
  47. #: /home/remco/dev/code/ulti/trans/Cura/plugins/TrimeshReader/__init__.py:40
  48. msgctxt "@item:inlistbox"
  49. msgid "Compressed COLLADA Digital Asset Exchange"
  50. msgstr "COLLADA Digital Asset Exchange comprimido"
  51. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  52. msgctxt "@info"
  53. msgid "Could not access update information."
  54. msgstr "No se pudo acceder a la información actualizada."
  55. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  56. #, python-brace-format
  57. msgctxt ""
  58. "@info Don't translate {machine_name}, since it gets replaced by a printer "
  59. "name!"
  60. msgid ""
  61. "New features or bug-fixes may be available for your {machine_name}! If you "
  62. "haven't done so already, it is recommended to update the firmware on your "
  63. "printer to version {latest_version}."
  64. msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no dispone de la última versión disponible, se recomienda"
  65. " actualizar el firmware de la impresora a la versión {latest_version}."
  66. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  67. #, python-format
  68. msgctxt "@info:title The %s gets replaced with the printer name."
  69. msgid "New %s stable firmware available"
  70. msgstr "Nuevo firmware de %s estable disponible"
  71. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  72. msgctxt "@action:button"
  73. msgid "How to update"
  74. msgstr "Cómo actualizar"
  75. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/__init__.py:14
  76. msgctxt "@item:inmenu"
  77. msgid "Monitor"
  78. msgstr "Supervisar"
  79. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  80. msgctxt "@action:button Preceded by 'Ready to'."
  81. msgid "Save to Removable Drive"
  82. msgstr "Guardar en unidad extraíble"
  83. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  84. #, python-brace-format
  85. msgctxt "@item:inlistbox"
  86. msgid "Save to Removable Drive {0}"
  87. msgstr "Guardar en unidad extraíble {0}"
  88. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  89. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  90. msgctxt "@info:status"
  91. msgid "There are no file formats available to write with!"
  92. msgstr "¡No hay formatos de archivo disponibles con los que escribir!"
  93. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:97
  94. #, python-brace-format
  95. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  96. msgid "Saving to Removable Drive <filename>{0}</filename>"
  97. msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  98. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:98
  99. msgctxt "@info:title"
  100. msgid "Saving"
  101. msgstr "Guardando"
  102. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:108
  103. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:111
  104. #, python-brace-format
  105. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  106. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  107. msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  108. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:127
  109. #, python-brace-format
  110. msgctxt "@info:status Don't translate the tag {device}!"
  111. msgid "Could not find a file name when trying to write to {device}."
  112. msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
  113. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:140
  114. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:159
  115. #, python-brace-format
  116. msgctxt "@info:status"
  117. msgid "Could not save to removable drive {0}: {1}"
  118. msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
  119. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:141
  120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  121. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1782
  122. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:156
  123. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:166
  124. msgctxt "@info:title"
  125. msgid "Error"
  126. msgstr "Error"
  127. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:150
  128. #, python-brace-format
  129. msgctxt "@info:status"
  130. msgid "Saved to Removable Drive {0} as {1}"
  131. msgstr "Guardado en unidad extraíble {0} como {1}"
  132. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  133. msgctxt "@info:title"
  134. msgid "File Saved"
  135. msgstr "Archivo guardado"
  136. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  137. msgctxt "@action:button"
  138. msgid "Eject"
  139. msgstr "Expulsar"
  140. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  141. #, python-brace-format
  142. msgctxt "@action"
  143. msgid "Eject removable device {0}"
  144. msgstr "Expulsar dispositivo extraíble {0}"
  145. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:172
  146. #, python-brace-format
  147. msgctxt "@info:status"
  148. msgid "Ejected {0}. You can now safely remove the drive."
  149. msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
  150. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  151. msgctxt "@info:title"
  152. msgid "Safely Remove Hardware"
  153. msgstr "Retirar de forma segura el hardware"
  154. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:176
  155. #, python-brace-format
  156. msgctxt "@info:status"
  157. msgid "Failed to eject {0}. Another program may be using the drive."
  158. msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad."
  159. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:177
  160. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1770
  161. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:217
  162. msgctxt "@info:title"
  163. msgid "Warning"
  164. msgstr "Advertencia"
  165. #: /home/remco/dev/code/ulti/trans/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  166. msgctxt "@item:intext"
  167. msgid "Removable Drive"
  168. msgstr "Unidad extraíble"
  169. #: /home/remco/dev/code/ulti/trans/Cura/plugins/AMFReader/__init__.py:15
  170. msgctxt "@item:inlistbox"
  171. msgid "AMF File"
  172. msgstr "Archivo AMF"
  173. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPReader/__init__.py:22
  174. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/__init__.py:28
  175. msgctxt "@item:inlistbox"
  176. msgid "Ultimaker Format Package"
  177. msgstr "Paquete de formato Ultimaker"
  178. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  179. msgctxt "@label"
  180. msgid "Per Model Settings"
  181. msgstr "Ajustes por modelo"
  182. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  183. msgctxt "@info:tooltip"
  184. msgid "Configure Per Model Settings"
  185. msgstr "Configurar ajustes por modelo"
  186. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  187. msgctxt "@action"
  188. msgid "Update Firmware"
  189. msgstr "Actualizar firmware"
  190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  191. #, python-brace-format
  192. msgctxt "@info:status"
  193. msgid ""
  194. "Cura has detected material profiles that were not yet installed on the host "
  195. "printer of group {0}."
  196. msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}."
  197. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  198. msgctxt "@info:title"
  199. msgid "Sending materials to printer"
  200. msgstr "Enviando materiales a la impresora"
  201. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  202. #, python-brace-format
  203. msgctxt "@info:status"
  204. msgid ""
  205. "You are attempting to connect to {0} but it is not the host of a group. You "
  206. "can visit the web page to configure it as a group host."
  207. msgstr "Está intentando conectarse a {0} pero ese no es el host de un grupo. Puede visitar la página web para configurarlo como host de grupo."
  208. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  209. msgctxt "@info:title"
  210. msgid "Not a group host"
  211. msgstr "No es un host de grupo"
  212. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  213. msgctxt "@action"
  214. msgid "Configure group"
  215. msgstr "Configurar grupo"
  216. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  217. msgctxt "@info:status"
  218. msgid "Sending Print Job"
  219. msgstr "Enviando trabajo de impresión"
  220. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  221. msgctxt "@info:status"
  222. msgid "Uploading print job to printer."
  223. msgstr "Cargando el trabajo de impresión a la impresora."
  224. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  225. msgctxt "@info:status"
  226. msgid "Print job queue is full. The printer can't accept a new job."
  227. msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos."
  228. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  229. msgctxt "@info:title"
  230. msgid "Queue Full"
  231. msgstr "Cola llena"
  232. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  233. msgctxt "@info:status"
  234. msgid "Please wait until the current job has been sent."
  235. msgstr "Espere hasta que se envíe el trabajo actual."
  236. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  237. msgctxt "@info:title"
  238. msgid "Print error"
  239. msgstr "Error de impresión"
  240. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  241. msgctxt "@info:status"
  242. msgid "Print job was successfully sent to the printer."
  243. msgstr "El trabajo de impresión se ha enviado correctamente a la impresora."
  244. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  245. msgctxt "@info:title"
  246. msgid "Data Sent"
  247. msgstr "Fecha de envío"
  248. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  249. #, python-brace-format
  250. msgctxt "@info:status"
  251. msgid ""
  252. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  253. " Manage your print queue and monitor your prints from anywhere connecting "
  254. "your printer to Digital Factory"
  255. msgstr "Su impresora <b>{printer_name} </b> podría estar conectada a través de la nube.\n Administre su cola de impresión y supervise las impresiones desde cualquier"
  256. " lugar conectando su impresora a Digital Factory"
  257. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  258. msgctxt "@info:title"
  259. msgid "Are you ready for cloud printing?"
  260. msgstr "¿Está preparado para la impresión en la nube?"
  261. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  262. msgctxt "@action"
  263. msgid "Get started"
  264. msgstr "Empezar"
  265. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  266. msgctxt "@action"
  267. msgid "Learn more"
  268. msgstr "Más información"
  269. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  270. msgctxt "@info:status"
  271. msgid ""
  272. "You are attempting to connect to a printer that is not running Ultimaker "
  273. "Connect. Please update the printer to the latest firmware."
  274. msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente."
  275. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  276. msgctxt "@info:title"
  277. msgid "Update your printer"
  278. msgstr "Actualice su impresora"
  279. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  280. msgctxt "@info:text"
  281. msgid "Could not upload the data to the printer."
  282. msgstr "No se han podido cargar los datos en la impresora."
  283. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  284. msgctxt "@info:title"
  285. msgid "Network error"
  286. msgstr "Error de red"
  287. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  288. msgctxt "@action:button Preceded by 'Ready to'."
  289. msgid "Print over network"
  290. msgstr "Imprimir a través de la red"
  291. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  292. msgctxt "@properties:tooltip"
  293. msgid "Print over network"
  294. msgstr "Imprime a través de la red"
  295. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  296. msgctxt "@info:status"
  297. msgid "Connected over the network"
  298. msgstr "Conectado a través de la red"
  299. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  300. msgctxt "@info:status"
  301. msgid "tomorrow"
  302. msgstr "mañana"
  303. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  304. msgctxt "@info:status"
  305. msgid "today"
  306. msgstr "hoy"
  307. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  308. msgctxt "@action"
  309. msgid "Connect via Network"
  310. msgstr "Conectar a través de la red"
  311. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:229
  312. msgctxt "info:status"
  313. msgid "New printer detected from your Ultimaker account"
  314. msgid_plural "New printers detected from your Ultimaker account"
  315. msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker"
  316. msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker"
  317. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:240
  318. #, python-brace-format
  319. msgctxt "info:status Filled in with printer name and printer model."
  320. msgid "Adding printer {name} ({model}) from your account"
  321. msgstr "Añadiendo la impresora {name} ({model}) de su cuenta"
  322. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:257
  323. #, python-brace-format
  324. msgctxt "info:{0} gets replaced by a number of printers"
  325. msgid "... and {0} other"
  326. msgid_plural "... and {0} others"
  327. msgstr[0] "... y {0} más"
  328. msgstr[1] "... y {0} más"
  329. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:262
  330. msgctxt "info:status"
  331. msgid "Printers added from Digital Factory:"
  332. msgstr "Impresoras añadidas desde Digital Factory:"
  333. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:328
  334. msgctxt "info:status"
  335. msgid "A cloud connection is not available for a printer"
  336. msgid_plural "A cloud connection is not available for some printers"
  337. msgstr[0] "La conexión a la nube no está disponible para una impresora"
  338. msgstr[1] "La conexión a la nube no está disponible para algunas impresoras"
  339. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  340. msgctxt "info:status"
  341. msgid "This printer is not linked to the Digital Factory:"
  342. msgid_plural "These printers are not linked to the Digital Factory:"
  343. msgstr[0] "Esta impresora no está vinculada a Digital Factory:"
  344. msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:"
  345. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  346. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:432
  347. msgctxt "info:name"
  348. msgid "Ultimaker Digital Factory"
  349. msgstr "Ultimaker Digital Factory"
  350. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:346
  351. #, python-brace-format
  352. msgctxt "info:status"
  353. msgid "To establish a connection, please visit the {website_link}"
  354. msgstr "Para establecer una conexión, visite {website_link}"
  355. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:350
  356. msgctxt "@action:button"
  357. msgid "Keep printer configurations"
  358. msgstr "Mantener las configuraciones de la impresora"
  359. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:355
  360. msgctxt "@action:button"
  361. msgid "Remove printers"
  362. msgstr "Eliminar impresoras"
  363. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:434
  364. #, python-brace-format
  365. msgctxt "@message {printer_name} is replaced with the name of the printer"
  366. msgid "{printer_name} will be removed until the next account sync."
  367. msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta."
  368. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:435
  369. #, python-brace-format
  370. msgctxt "@message {printer_name} is replaced with the name of the printer"
  371. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  372. msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}"
  373. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:436
  374. #, python-brace-format
  375. msgctxt "@message {printer_name} is replaced with the name of the printer"
  376. msgid "Are you sure you want to remove {printer_name} temporarily?"
  377. msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?"
  378. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:473
  379. msgctxt "@title:window"
  380. msgid "Remove printers?"
  381. msgstr "¿Eliminar impresoras?"
  382. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:476
  383. #, python-brace-format
  384. msgctxt "@label"
  385. msgid ""
  386. "You are about to remove {0} printer from Cura. This action cannot be "
  387. "undone.\n"
  388. "Are you sure you want to continue?"
  389. msgid_plural ""
  390. "You are about to remove {0} printers from Cura. This action cannot be "
  391. "undone.\n"
  392. "Are you sure you want to continue?"
  393. msgstr[0] "Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?"
  394. msgstr[1] "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?"
  395. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:481
  396. msgctxt "@label"
  397. msgid ""
  398. "You are about to remove all printers from Cura. This action cannot be "
  399. "undone.\n"
  400. "Are you sure you want to continue?"
  401. msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?"
  402. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  403. msgctxt "@action:button"
  404. msgid "Print via cloud"
  405. msgstr "Imprimir mediante cloud"
  406. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:155
  407. msgctxt "@properties:tooltip"
  408. msgid "Print via cloud"
  409. msgstr "Imprimir mediante cloud"
  410. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:156
  411. msgctxt "@info:status"
  412. msgid "Connected via cloud"
  413. msgstr "Conectado mediante cloud"
  414. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:261
  415. msgctxt "@action:button"
  416. msgid "Monitor print"
  417. msgstr "Supervisar la impresión"
  418. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:263
  419. msgctxt "@action:tooltip"
  420. msgid "Track the print in Ultimaker Digital Factory"
  421. msgstr "Haga un seguimiento de la impresión en Ultimaker Digital Factory"
  422. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:279
  423. #, python-brace-format
  424. msgctxt "@error:send"
  425. msgid "Unknown error code when uploading print job: {0}"
  426. msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}"
  427. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:31
  428. msgctxt "@info:title"
  429. msgid "3D Model Assistant"
  430. msgstr "Asistente del modelo 3D"
  431. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ModelChecker/ModelChecker.py:97
  432. #, python-brace-format
  433. msgctxt "@info:status"
  434. msgid ""
  435. "<p>One or more 3D models may not print optimally due to the model size and "
  436. "material configuration:</p>\n"
  437. "<p>{model_names}</p>\n"
  438. "<p>Find out how to ensure the best possible print quality and reliability.</"
  439. "p>\n"
  440. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality "
  441. "guide</a></p>"
  442. 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<p>{model_names}</p>\n<p>Obtenga"
  443. " más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.</p>\n<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver"
  444. " guía de impresión de calidad</a></p>"
  445. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:129
  446. msgctxt "@info:status"
  447. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  448. msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada."
  449. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:130
  450. msgctxt "@info:title"
  451. msgid "Simulation View"
  452. msgstr "Vista de simulación"
  453. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:133
  454. msgctxt "@info:status"
  455. msgid "Nothing is shown because you need to slice first."
  456. msgstr "No se muestra nada porque primero hay que cortar."
  457. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:134
  458. msgctxt "@info:title"
  459. msgid "No layers to show"
  460. msgstr "No hay capas para mostrar"
  461. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationView.py:136
  462. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:74
  463. msgctxt "@info:option_text"
  464. msgid "Do not show this message again"
  465. msgstr "No volver a mostrar este mensaje"
  466. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/__init__.py:15
  467. msgctxt "@item:inlistbox"
  468. msgid "Layer view"
  469. msgstr "Vista de capas"
  470. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  471. msgctxt "@error:not supported"
  472. msgid "GCodeWriter does not support non-text mode."
  473. msgstr "GCodeWriter no es compatible con el modo sin texto."
  474. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  475. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  476. msgctxt "@warning:status"
  477. msgid "Please prepare G-code before exporting."
  478. msgstr "Prepare el Gcode antes de la exportación."
  479. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeWriter/__init__.py:16
  480. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeProfileReader/__init__.py:14
  481. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:14
  482. msgctxt "@item:inlistbox"
  483. msgid "G-code File"
  484. msgstr "Archivo GCode"
  485. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWriter.py:226
  486. msgctxt "@error:zip"
  487. msgid "Error writing 3mf file."
  488. msgstr "Error al escribir el archivo 3MF."
  489. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  490. msgctxt "@error:zip"
  491. msgid "3MF Writer plug-in is corrupt."
  492. msgstr "El complemento del Escritor de 3MF está dañado."
  493. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  494. msgctxt "@error"
  495. msgid "There is no workspace yet to write. Please add a printer first."
  496. msgstr "Aún no hay espacio de trabajo en el que escribir. Añada una impresora primero."
  497. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  498. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  499. msgctxt "@error:zip"
  500. msgid "No permission to write the workspace here."
  501. msgstr "No tiene permiso para escribir el espacio de trabajo aquí."
  502. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  503. msgctxt "@error:zip"
  504. msgid ""
  505. "The operating system does not allow saving a project file to this location "
  506. "or with this file name."
  507. msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo."
  508. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:26
  509. msgctxt "@item:inlistbox"
  510. msgid "3MF file"
  511. msgstr "Archivo 3MF"
  512. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFWriter/__init__.py:34
  513. msgctxt "@item:inlistbox"
  514. msgid "Cura Project 3MF file"
  515. msgstr "Archivo 3MF del proyecto de Cura"
  516. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzReader/__init__.py:17
  517. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/__init__.py:17
  518. msgctxt "@item:inlistbox"
  519. msgid "Compressed G-code File"
  520. msgstr "Archivo GCode comprimido"
  521. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:161
  522. msgctxt "@message"
  523. msgid ""
  524. "Slicing failed with an unexpected error. Please consider reporting a bug on "
  525. "our issue tracker."
  526. msgstr "Se ha producido un error inesperado al realizar el corte o slicing. Le rogamos que informe sobre este error en nuestro rastreador de problemas."
  527. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:162
  528. msgctxt "@message:title"
  529. msgid "Slicing failed"
  530. msgstr "Error en el corte"
  531. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:167
  532. msgctxt "@message:button"
  533. msgid "Report a bug"
  534. msgstr "Informar del error"
  535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:168
  536. msgctxt "@message:description"
  537. msgid "Report a bug on Ultimaker Cura's issue tracker."
  538. msgstr "Informar de un error en el rastreador de problemas de Ultimaker Cura."
  539. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  540. msgctxt "@info:status"
  541. msgid ""
  542. "Unable to slice with the current material as it is incompatible with the "
  543. "selected machine or configuration."
  544. msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
  545. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:396
  546. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  547. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:456
  548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:468
  549. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:480
  550. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:493
  551. msgctxt "@info:title"
  552. msgid "Unable to slice"
  553. msgstr "No se puede segmentar"
  554. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  555. #, python-brace-format
  556. msgctxt "@info:status"
  557. msgid ""
  558. "Unable to slice with the current settings. The following settings have "
  559. "errors: {0}"
  560. msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
  561. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  562. #, python-brace-format
  563. msgctxt "@info:status"
  564. msgid ""
  565. "Unable to slice due to some per-model settings. The following settings have "
  566. "errors on one or more models: {error_labels}"
  567. msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
  568. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  569. msgctxt "@info:status"
  570. msgid ""
  571. "Unable to slice because the prime tower or prime position(s) are invalid."
  572. msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
  573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:479
  574. #, python-format
  575. msgctxt "@info:status"
  576. msgid ""
  577. "Unable to slice because there are objects associated with disabled Extruder "
  578. "%s."
  579. msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado."
  580. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:489
  581. msgctxt "@info:status"
  582. msgid ""
  583. "Please review settings and check if your models:\n"
  584. "- Fit within the build volume\n"
  585. "- Are assigned to an enabled extruder\n"
  586. "- Are not all set as modifier meshes"
  587. msgstr "Revise la configuración y compruebe si sus modelos:\n - Se integran en el volumen de impresión\n- Están asignados a un extrusor activado\n - No están todos"
  588. " definidos como mallas modificadoras"
  589. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  591. msgctxt "@info:status"
  592. msgid "Processing Layers"
  593. msgstr "Procesando capas"
  594. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  595. msgctxt "@info:title"
  596. msgid "Information"
  597. msgstr "Información"
  598. #: /home/remco/dev/code/ulti/trans/Cura/plugins/X3DReader/__init__.py:13
  599. msgctxt "@item:inlistbox"
  600. msgid "X3D File"
  601. msgstr "Archivo X3D"
  602. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:14
  603. msgctxt "@item:inlistbox"
  604. msgid "JPG Image"
  605. msgstr "Imagen JPG"
  606. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:18
  607. msgctxt "@item:inlistbox"
  608. msgid "JPEG Image"
  609. msgstr "Imagen JPEG"
  610. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:22
  611. msgctxt "@item:inlistbox"
  612. msgid "PNG Image"
  613. msgstr "Imagen PNG"
  614. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:26
  615. msgctxt "@item:inlistbox"
  616. msgid "BMP Image"
  617. msgstr "Imagen BMP"
  618. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/__init__.py:30
  619. msgctxt "@item:inlistbox"
  620. msgid "GIF Image"
  621. msgstr "Imagen GIF"
  622. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:218
  623. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:713
  624. msgctxt "@label"
  625. msgid "Nozzle"
  626. msgstr "Tobera"
  627. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:544
  628. #, python-brace-format
  629. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  630. msgid ""
  631. "Project file <filename>{0}</filename> contains an unknown machine type "
  632. "<message>{1}</message>. Cannot import the machine. Models will be imported "
  633. "instead."
  634. msgstr "El archivo del proyecto <filename>{0}</filename> contiene un tipo de máquina desconocida <message>{1}</message>. No se puede importar la máquina, en su"
  635. " lugar, se importarán los modelos."
  636. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:547
  637. msgctxt "@info:title"
  638. msgid "Open Project File"
  639. msgstr "Abrir archivo de proyecto"
  640. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:644
  641. #, python-brace-format
  642. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  643. msgid ""
  644. "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}"
  645. "</message>."
  646. msgstr "El archivo de proyecto <filename>{0}</filename> está repentinamente inaccesible: <message>{1}</message>."
  647. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:645
  648. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:653
  649. msgctxt "@info:title"
  650. msgid "Can't Open Project File"
  651. msgstr "No se puede abrir el archivo de proyecto"
  652. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:652
  653. #, python-brace-format
  654. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  655. msgid ""
  656. "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  657. msgstr "El archivo de proyecto <filename>{0}</filename> está dañado: <message>{1}</message>."
  658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:705
  659. #, python-brace-format
  660. msgctxt "@info:error Don't translate the XML tag <filename>!"
  661. msgid ""
  662. "Project file <filename>{0}</filename> is made using profiles that are "
  663. "unknown to this version of Ultimaker Cura."
  664. msgstr "El archivo de proyecto <filename>{0}</filename> se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura."
  665. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  666. msgctxt "@title:tab"
  667. msgid "Recommended"
  668. msgstr "Recomendado"
  669. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  670. msgctxt "@title:tab"
  671. msgid "Custom"
  672. msgstr "Personalizado"
  673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:27
  674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/__init__.py:33
  675. msgctxt "@item:inlistbox"
  676. msgid "3MF File"
  677. msgstr "Archivo 3MF"
  678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:57
  679. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:72
  680. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:94
  681. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:149
  682. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UFPWriter/UFPWriter.py:159
  683. msgctxt "@info:error"
  684. msgid "Can't write to UFP file:"
  685. msgstr "No se puede escribir en el archivo UFP:"
  686. #: /home/remco/dev/code/ulti/trans/Cura/plugins/LegacyProfileReader/__init__.py:14
  687. msgctxt "@item:inlistbox"
  688. msgid "Cura 15.04 profiles"
  689. msgstr "Perfiles de Cura 15.04"
  690. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:25
  691. msgctxt "@info:title"
  692. msgid "Backups"
  693. msgstr "Copias de seguridad"
  694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  695. msgctxt "@info:backup_status"
  696. msgid "There was an error while uploading your backup."
  697. msgstr "Se ha producido un error al cargar su copia de seguridad."
  698. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:46
  699. msgctxt "@info:backup_status"
  700. msgid "Creating your backup..."
  701. msgstr "Creando copia de seguridad..."
  702. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:55
  703. msgctxt "@info:backup_status"
  704. msgid "There was an error while creating your backup."
  705. msgstr "Se ha producido un error al crear la copia de seguridad."
  706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:59
  707. msgctxt "@info:backup_status"
  708. msgid "Uploading your backup..."
  709. msgstr "Cargando su copia de seguridad..."
  710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:69
  711. msgctxt "@info:backup_status"
  712. msgid "Your backup has finished uploading."
  713. msgstr "Su copia de seguridad ha terminado de cargarse."
  714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/CreateBackupJob.py:103
  715. msgctxt "@error:file_size"
  716. msgid "The backup exceeds the maximum file size."
  717. msgstr "La copia de seguridad excede el tamaño máximo de archivo."
  718. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:69
  719. msgctxt "@item:inmenu"
  720. msgid "Manage backups"
  721. msgstr "Administrar copias de seguridad"
  722. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:118
  723. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:126
  724. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:122
  725. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:159
  726. msgctxt "@info:title"
  727. msgid "Backup"
  728. msgstr "Copia de seguridad"
  729. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  730. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:26
  731. msgctxt "@info:backup_status"
  732. msgid "There was an error trying to restore your backup."
  733. msgstr "Se ha producido un error al intentar restaurar su copia de seguridad."
  734. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/SliceInfo.py:95
  735. msgctxt "@text"
  736. msgid "Unable to read example data file."
  737. msgstr "No se puede leer el archivo de datos de ejemplo."
  738. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  739. msgctxt "@error:not supported"
  740. msgid "GCodeGzWriter does not support text mode."
  741. msgstr "GCodeGzWriter no es compatible con el modo texto."
  742. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  743. msgctxt "@item:inmenu"
  744. msgid "Post Processing"
  745. msgstr "Posprocesamiento"
  746. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  747. msgctxt "@item:inmenu"
  748. msgid "Modify G-Code"
  749. msgstr "Modificar GCode"
  750. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:12
  751. msgctxt "@label"
  752. msgid "Support Blocker"
  753. msgstr "Bloqueador de soporte"
  754. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SupportEraser/__init__.py:13
  755. msgctxt "@info:tooltip"
  756. msgid "Create a volume in which supports are not printed."
  757. msgstr "Cree un volumen que no imprima los soportes."
  758. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PreviewStage/__init__.py:13
  759. msgctxt "@item:inmenu"
  760. msgid "Preview"
  761. msgstr "Vista previa"
  762. #: /home/remco/dev/code/ulti/trans/Cura/plugins/XRayView/__init__.py:12
  763. msgctxt "@item:inlistbox"
  764. msgid "X-Ray view"
  765. msgstr "Vista de rayos X"
  766. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  767. msgctxt "@action"
  768. msgid "Level build plate"
  769. msgstr "Nivelar placa de impresión"
  770. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  771. msgctxt "@action"
  772. msgid "Select upgrades"
  773. msgstr "Seleccionar actualizaciones"
  774. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:43
  775. msgctxt "@label:property"
  776. msgid "Unknown Package"
  777. msgstr "Paquete desconocido"
  778. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/PackageModel.py:66
  779. msgctxt "@label:property"
  780. msgid "Unknown Author"
  781. msgstr "Autor desconocido"
  782. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:116
  783. msgctxt "@info:error"
  784. msgid "Could not interpret the server's response."
  785. msgstr "Imposible interpretar la respuesta del servidor."
  786. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/RemotePackageList.py:146
  787. msgctxt "@info:error"
  788. msgid "Could not reach Marketplace."
  789. msgstr "Imposible acceder a Marketplace."
  790. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:28
  791. msgctxt "@label"
  792. msgid "Installed Plugins"
  793. msgstr "Complementos instalados"
  794. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:29
  795. msgctxt "@label"
  796. msgid "Installed Materials"
  797. msgstr "Materiales instalados"
  798. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:33
  799. msgctxt "@label"
  800. msgid "Bundled Plugins"
  801. msgstr "Complementos agrupados"
  802. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/LocalPackageList.py:34
  803. msgctxt "@label"
  804. msgid "Bundled Materials"
  805. msgstr "Materiales agrupados"
  806. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:71
  807. msgctxt "@info:status"
  808. msgid ""
  809. "The highlighted areas indicate either missing or extraneous surfaces. Fix "
  810. "your model and open it again into Cura."
  811. msgstr "Las áreas resaltadas indican que faltan superficies o son inusuales. Corrija los errores en el modelo y vuelva a abrirlo en Cura."
  812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:73
  813. msgctxt "@info:title"
  814. msgid "Model Errors"
  815. msgstr "Errores de modelo"
  816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/SolidView.py:80
  817. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:71
  818. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:82
  819. msgctxt "@action:button"
  820. msgid "Learn more"
  821. msgstr "Más información"
  822. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SolidView/__init__.py:12
  823. msgctxt "@item:inmenu"
  824. msgid "Solid view"
  825. msgstr "Vista de sólidos"
  826. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:350
  827. msgctxt "@info:status"
  828. msgid "Parsing G-code"
  829. msgstr "Analizar GCode"
  830. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:352
  831. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:506
  832. msgctxt "@info:title"
  833. msgid "G-code Details"
  834. msgstr "Datos de GCode"
  835. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/FlavorParser.py:504
  836. msgctxt "@info:generic"
  837. msgid ""
  838. "Make sure the g-code is suitable for your printer and printer configuration "
  839. "before sending the file to it. The g-code representation may not be accurate."
  840. 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"
  841. " del GCode no sea precisa."
  842. #: /home/remco/dev/code/ulti/trans/Cura/plugins/GCodeReader/__init__.py:18
  843. msgctxt "@item:inlistbox"
  844. msgid "G File"
  845. msgstr "Archivo G"
  846. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  847. msgctxt "@action"
  848. msgid "Machine Settings"
  849. msgstr "Ajustes de la máquina"
  850. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  851. msgctxt "@item:inmenu"
  852. msgid "USB printing"
  853. msgstr "Impresión USB"
  854. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  855. msgctxt "@action:button Preceded by 'Ready to'."
  856. msgid "Print via USB"
  857. msgstr "Imprimir mediante USB"
  858. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  859. msgctxt "@info:tooltip"
  860. msgid "Print via USB"
  861. msgstr "Imprimir mediante USB"
  862. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  863. msgctxt "@info:status"
  864. msgid "Connected via USB"
  865. msgstr "Conectado mediante USB"
  866. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  867. msgctxt "@label"
  868. msgid ""
  869. "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  870. msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?"
  871. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:135
  872. msgctxt "@message"
  873. msgid ""
  874. "A print is still in progress. Cura cannot start another print via USB until "
  875. "the previous print has completed."
  876. msgstr "Todavía hay una impresión en curso. Cura no puede iniciar otra impresión a través de USB hasta que se haya completado la impresión anterior."
  877. #: /home/remco/dev/code/ulti/trans/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:136
  878. msgctxt "@message"
  879. msgid "Print in Progress"
  880. msgstr "Impresión en curso"
  881. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:529
  882. msgctxt "@info:progress"
  883. msgid "Loading machines..."
  884. msgstr "Cargando máquinas..."
  885. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:536
  886. msgctxt "@info:progress"
  887. msgid "Setting up preferences..."
  888. msgstr "Configurando preferencias...."
  889. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:678
  890. msgctxt "@info:progress"
  891. msgid "Initializing Active Machine..."
  892. msgstr "Iniciando la máquina activa..."
  893. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:802
  894. msgctxt "@info:progress"
  895. msgid "Initializing machine manager..."
  896. msgstr "Iniciando el administrador de la máquina..."
  897. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:816
  898. msgctxt "@info:progress"
  899. msgid "Initializing build volume..."
  900. msgstr "Iniciando el volumen de impresión..."
  901. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:884
  902. msgctxt "@info:progress"
  903. msgid "Setting up scene..."
  904. msgstr "Configurando escena..."
  905. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:920
  906. msgctxt "@info:progress"
  907. msgid "Loading interface..."
  908. msgstr "Cargando interfaz..."
  909. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:925
  910. msgctxt "@info:progress"
  911. msgid "Initializing engine..."
  912. msgstr "Iniciando el motor..."
  913. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1242
  914. #, python-format
  915. msgctxt ""
  916. "@info 'width', 'depth' and 'height' are variable names that must NOT be "
  917. "translated; just translate the format of ##x##x## mm."
  918. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  919. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  920. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1768
  921. #, python-brace-format
  922. msgctxt "@info:status"
  923. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  924. msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
  925. #: /home/remco/dev/code/ulti/trans/Cura/cura/CuraApplication.py:1780
  926. #, python-brace-format
  927. msgctxt "@info:status"
  928. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  929. msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
  930. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  931. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:338
  932. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:11
  933. msgctxt "@label"
  934. msgid "Default"
  935. msgstr "Default"
  936. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  937. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:14
  938. msgctxt "@label"
  939. msgid "Visual"
  940. msgstr "Visual"
  941. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  942. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:15
  943. msgctxt "@text"
  944. msgid ""
  945. "The visual profile is designed to print visual prototypes and models with "
  946. "the intent of high visual and surface quality."
  947. msgstr "El perfil visual está diseñado para imprimir prototipos y modelos visuales con la intención de obtener una alta calidad visual y de superficies."
  948. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  949. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:18
  950. msgctxt "@label"
  951. msgid "Engineering"
  952. msgstr "Engineering"
  953. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  954. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:19
  955. msgctxt "@text"
  956. msgid ""
  957. "The engineering profile is designed to print functional prototypes and end-"
  958. "use parts with the intent of better accuracy and for closer tolerances."
  959. msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias"
  960. " más precisas."
  961. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  962. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:22
  963. msgctxt "@label"
  964. msgid "Draft"
  965. msgstr "Boceto"
  966. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  967. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/IntentTranslations.py:23
  968. msgctxt "@text"
  969. msgid ""
  970. "The draft profile is designed to print initial prototypes and concept "
  971. "validation with the intent of significant print time reduction."
  972. msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión"
  973. " de manera considerable."
  974. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/ExtrudersModel.py:219
  975. msgctxt "@menuitem"
  976. msgid "Not overridden"
  977. msgstr "No reemplazado"
  978. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/GlobalStacksModel.py:143
  979. #, python-brace-format
  980. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  981. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  982. msgstr "¿Seguro que desea eliminar {0}? ¡Esta acción no se puede deshacer!"
  983. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  984. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:361
  985. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1614
  986. msgctxt "@label"
  987. msgid "Unknown"
  988. msgstr "Desconocido"
  989. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  990. msgctxt "@label"
  991. msgid ""
  992. "The printer(s) below cannot be connected because they are part of a group"
  993. msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo"
  994. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  995. msgctxt "@label"
  996. msgid "Available networked printers"
  997. msgstr "Impresoras en red disponibles"
  998. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualitySettingsModel.py:182
  999. msgctxt "@info:status"
  1000. msgid "Calculated"
  1001. msgstr "Calculado"
  1002. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:55
  1003. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:66
  1004. msgctxt "@action:button"
  1005. msgid ""
  1006. "Please sync the material profiles with your printers before starting to "
  1007. "print."
  1008. msgstr "Sincronice los perfiles de material con sus impresoras antes de comenzar a imprimir."
  1009. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:56
  1010. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:67
  1011. msgctxt "@action:button"
  1012. msgid "New materials installed"
  1013. msgstr "Nuevos materiales instalados"
  1014. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:63
  1015. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:74
  1016. msgctxt "@action:button"
  1017. msgid "Sync materials"
  1018. msgstr "Sincronizar materiales"
  1019. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:288
  1020. msgctxt "@label"
  1021. msgid "Custom Material"
  1022. msgstr "Material personalizado"
  1023. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/MaterialManagementModel.py:289
  1024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:336
  1025. msgctxt "@label"
  1026. msgid "Custom"
  1027. msgstr "Personalizado"
  1028. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:390
  1029. msgctxt "@label"
  1030. msgid "Custom profiles"
  1031. msgstr "Perfiles personalizados"
  1032. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:425
  1033. #, python-brace-format
  1034. msgctxt "@item:inlistbox"
  1035. msgid "All Supported Types ({0})"
  1036. msgstr "Todos los tipos compatibles ({0})"
  1037. #: /home/remco/dev/code/ulti/trans/Cura/cura/Machines/Models/QualityManagementModel.py:426
  1038. msgctxt "@item:inlistbox"
  1039. msgid "All Files (*)"
  1040. msgstr "Todos los archivos (*)"
  1041. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:104
  1042. msgctxt "@text:error"
  1043. msgid "Failed to create archive of materials to sync with printers."
  1044. msgstr "Error al crear un archivo de materiales para sincronizarlo con las impresoras."
  1045. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:111
  1046. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:165
  1047. msgctxt "@text:error"
  1048. msgid "Failed to load the archive of materials to sync it with printers."
  1049. msgstr "Error al cargar el archivo de materiales para sincronizarlo con las impresoras."
  1050. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:143
  1051. msgctxt "@text:error"
  1052. msgid "The response from Digital Factory appears to be corrupted."
  1053. msgstr "La respuesta de Digital Factory parece estar dañada."
  1054. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:147
  1055. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:151
  1056. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:155
  1057. msgctxt "@text:error"
  1058. msgid "The response from Digital Factory is missing important information."
  1059. msgstr "A la respuesta de Digital Factory le falta información importante."
  1060. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:218
  1061. msgctxt "@text:error"
  1062. msgid ""
  1063. "Failed to connect to Digital Factory to sync materials with some of the "
  1064. "printers."
  1065. msgstr "Error al conectarse con Digital Factory para sincronizar los materiales con algunas de las impresoras."
  1066. #: /home/remco/dev/code/ulti/trans/Cura/cura/PrinterOutput/UploadMaterialsJob.py:232
  1067. msgctxt "@text:error"
  1068. msgid "Failed to connect to Digital Factory."
  1069. msgstr "Error al conectarse con Digital Factory."
  1070. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:115
  1071. msgctxt "@info:backup_failed"
  1072. msgid "Could not create archive from user data directory: {}"
  1073. msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}"
  1074. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:134
  1075. msgctxt "@info:backup_failed"
  1076. msgid "Tried to restore a Cura backup without having proper data or meta data."
  1077. msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
  1078. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:145
  1079. msgctxt "@info:backup_failed"
  1080. msgid "Tried to restore a Cura backup that is higher than the current version."
  1081. msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual."
  1082. #: /home/remco/dev/code/ulti/trans/Cura/cura/Backups/Backup.py:158
  1083. msgctxt "@info:backup_failed"
  1084. msgid "The following error occurred while trying to restore a Cura backup:"
  1085. msgstr "Se ha producido el siguiente error al intentar restaurar una copia de seguridad de Cura:"
  1086. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  1087. msgctxt "@info:status"
  1088. msgid "Finding new location for objects"
  1089. msgstr "Buscando nueva ubicación para los objetos"
  1090. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  1091. msgctxt "@info:title"
  1092. msgid "Finding Location"
  1093. msgstr "Buscando ubicación"
  1094. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  1095. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:99
  1096. msgctxt "@info:status"
  1097. msgid "Unable to find a location within the build volume for all objects"
  1098. msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos"
  1099. #: /home/remco/dev/code/ulti/trans/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  1100. msgctxt "@info:title"
  1101. msgid "Can't Find Location"
  1102. msgstr "No se puede encontrar la ubicación"
  1103. #: /home/remco/dev/code/ulti/trans/Cura/cura/API/Account.py:190
  1104. msgctxt "@info:title"
  1105. msgid "Login failed"
  1106. msgstr "Fallo de inicio de sesión"
  1107. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:85
  1108. msgctxt "@tooltip"
  1109. msgid "Outer Wall"
  1110. msgstr "Pared exterior"
  1111. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:86
  1112. msgctxt "@tooltip"
  1113. msgid "Inner Walls"
  1114. msgstr "Paredes interiores"
  1115. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:87
  1116. msgctxt "@tooltip"
  1117. msgid "Skin"
  1118. msgstr "Forro"
  1119. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:88
  1120. msgctxt "@tooltip"
  1121. msgid "Infill"
  1122. msgstr "Relleno"
  1123. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:89
  1124. msgctxt "@tooltip"
  1125. msgid "Support Infill"
  1126. msgstr "Relleno de soporte"
  1127. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:90
  1128. msgctxt "@tooltip"
  1129. msgid "Support Interface"
  1130. msgstr "Interfaz de soporte"
  1131. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:91
  1132. msgctxt "@tooltip"
  1133. msgid "Support"
  1134. msgstr "Soporte"
  1135. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:92
  1136. msgctxt "@tooltip"
  1137. msgid "Skirt"
  1138. msgstr "Falda"
  1139. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:93
  1140. msgctxt "@tooltip"
  1141. msgid "Prime Tower"
  1142. msgstr "Torre auxiliar"
  1143. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:94
  1144. msgctxt "@tooltip"
  1145. msgid "Travel"
  1146. msgstr "Desplazamiento"
  1147. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:95
  1148. msgctxt "@tooltip"
  1149. msgid "Retractions"
  1150. msgstr "Retracciones"
  1151. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/PrintInformation.py:96
  1152. msgctxt "@tooltip"
  1153. msgid "Other"
  1154. msgstr "Otro"
  1155. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/ObjectsModel.py:69
  1156. #, python-brace-format
  1157. msgctxt "@label"
  1158. msgid "Group #{group_nr}"
  1159. msgstr "N.º de grupo {group_nr}"
  1160. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:37
  1161. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/TextManager.py:63
  1162. msgctxt "@text:window"
  1163. msgid "The release notes could not be opened."
  1164. msgstr "No se han podido abrir las notas de la versión."
  1165. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:67
  1166. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:286
  1167. msgctxt "@action:button"
  1168. msgid "Skip"
  1169. msgstr "Omitir"
  1170. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WhatsNewPagesModel.py:72
  1171. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  1172. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:178
  1173. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:450
  1174. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:172
  1175. msgctxt "@action:button"
  1176. msgid "Close"
  1177. msgstr "Cerrar"
  1178. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:17
  1179. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  1180. msgctxt "@action:button"
  1181. msgid "Add"
  1182. msgstr "Agregar"
  1183. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:26
  1184. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:290
  1185. msgctxt "@action:button"
  1186. msgid "Finish"
  1187. msgstr "Finalizar"
  1188. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/AddPrinterPagesModel.py:33
  1189. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1190. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  1191. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:323
  1192. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:451
  1193. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  1194. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  1195. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  1196. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:74
  1197. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:136
  1198. msgctxt "@action:button"
  1199. msgid "Cancel"
  1200. msgstr "Cancelar"
  1201. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:57
  1202. #: /home/remco/dev/code/ulti/trans/Cura/cura/UI/WelcomePagesModel.py:277
  1203. msgctxt "@action:button"
  1204. msgid "Next"
  1205. msgstr "Siguiente"
  1206. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:100
  1207. msgctxt "@info:status"
  1208. msgid ""
  1209. "The build volume height has been reduced due to the value of the \"Print "
  1210. "Sequence\" setting to prevent the gantry from colliding with printed models."
  1211. 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"
  1212. " impresos."
  1213. #: /home/remco/dev/code/ulti/trans/Cura/cura/BuildVolume.py:103
  1214. msgctxt "@info:title"
  1215. msgid "Build Volume"
  1216. msgstr "Volumen de impresión"
  1217. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:135
  1218. msgctxt "@message:text"
  1219. msgid "Could not save material archive to {}:"
  1220. msgstr "No se pudo guardar el archivo de material en {}:"
  1221. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:136
  1222. msgctxt "@message:title"
  1223. msgid "Failed to save material archive"
  1224. msgstr "Se ha producido un error al guardar el archivo de material"
  1225. #: /home/remco/dev/code/ulti/trans/Cura/cura/UltimakerCloud/CloudMaterialSync.py:188
  1226. msgctxt "@text"
  1227. msgid "Unknown error."
  1228. msgstr "Error desconocido."
  1229. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:207
  1230. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:140
  1231. msgctxt "@title:window"
  1232. msgid "File Already Exists"
  1233. msgstr "El archivo ya existe"
  1234. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:208
  1235. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:141
  1236. #, python-brace-format
  1237. msgctxt "@label Don't translate the XML tag <filename>!"
  1238. msgid ""
  1239. "The file <filename>{0}</filename> already exists. Are you sure you want to "
  1240. "overwrite it?"
  1241. msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  1242. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:459
  1243. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/ContainerManager.py:462
  1244. msgctxt "@info:status"
  1245. msgid "Invalid file URL:"
  1246. msgstr "URL del archivo no válida:"
  1247. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:36
  1248. msgctxt "@info:not supported profile"
  1249. msgid "Not supported"
  1250. msgstr "No compatible"
  1251. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/cura_empty_instance_containers.py:55
  1252. msgctxt "@info:No intent profile selected"
  1253. msgid "Default"
  1254. msgstr "Default"
  1255. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:857
  1256. msgctxt "@info:message Followed by a list of settings."
  1257. msgid ""
  1258. "Settings have been changed to match the current availability of extruders:"
  1259. msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:"
  1260. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:858
  1261. msgctxt "@info:title"
  1262. msgid "Settings updated"
  1263. msgstr "Ajustes actualizados"
  1264. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/MachineManager.py:1480
  1265. msgctxt "@info:title"
  1266. msgid "Extruder(s) Disabled"
  1267. msgstr "Extrusores deshabilitados"
  1268. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:153
  1269. #, python-brace-format
  1270. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1271. msgid ""
  1272. "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1273. msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  1274. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:163
  1275. #, python-brace-format
  1276. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1277. msgid ""
  1278. "Failed to export profile to <filename>{0}</filename>: Writer plugin reported "
  1279. "failure."
  1280. msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  1281. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:171
  1282. #, python-brace-format
  1283. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1284. msgid "Exported profile to <filename>{0}</filename>"
  1285. msgstr "Perfil exportado a <filename>{0}</filename>"
  1286. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:173
  1287. msgctxt "@info:title"
  1288. msgid "Export succeeded"
  1289. msgstr "Exportación correcta"
  1290. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:205
  1291. #, python-brace-format
  1292. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1293. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1294. msgstr "Error al importar el perfil de <filename>{0}</filename>: {1}"
  1295. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:209
  1296. #, python-brace-format
  1297. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1298. msgid ""
  1299. "Can't import profile from <filename>{0}</filename> before a printer is added."
  1300. msgstr "No se puede importar el perfil de <filename>{0}</filename> antes de añadir una impresora."
  1301. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:224
  1302. #, python-brace-format
  1303. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1304. msgid "No custom profile to import in file <filename>{0}</filename>"
  1305. msgstr "No hay ningún perfil personalizado para importar en el archivo <filename>{0}</filename>"
  1306. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:228
  1307. #, python-brace-format
  1308. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1309. msgid "Failed to import profile from <filename>{0}</filename>:"
  1310. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  1311. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:252
  1312. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:262
  1313. #, python-brace-format
  1314. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1315. msgid ""
  1316. "This profile <filename>{0}</filename> contains incorrect data, could not "
  1317. "import it."
  1318. msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  1319. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:355
  1320. #, python-brace-format
  1321. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1322. msgid "Failed to import profile from <filename>{0}</filename>:"
  1323. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  1324. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:359
  1325. #, python-brace-format
  1326. msgctxt "@info:status"
  1327. msgid "Successfully imported profile {0}."
  1328. msgstr "Perfil {0} importado correctamente."
  1329. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:366
  1330. #, python-brace-format
  1331. msgctxt "@info:status"
  1332. msgid "File {0} does not contain any valid profile."
  1333. msgstr "El archivo {0} no contiene ningún perfil válido."
  1334. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:369
  1335. #, python-brace-format
  1336. msgctxt "@info:status"
  1337. msgid "Profile {0} has an unknown file type or is corrupted."
  1338. msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto."
  1339. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:443
  1340. msgctxt "@label"
  1341. msgid "Custom profile"
  1342. msgstr "Perfil personalizado"
  1343. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:459
  1344. msgctxt "@info:status"
  1345. msgid "Profile is missing a quality type."
  1346. msgstr "Al perfil le falta un tipo de calidad."
  1347. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:463
  1348. msgctxt "@info:status"
  1349. msgid "There is no active printer yet."
  1350. msgstr "Todavía no hay ninguna impresora activa."
  1351. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:469
  1352. msgctxt "@info:status"
  1353. msgid "Unable to add the profile."
  1354. msgstr "No se puede añadir el perfil."
  1355. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:483
  1356. #, python-brace-format
  1357. msgctxt "@info:status"
  1358. msgid ""
  1359. "Quality type '{0}' is not compatible with the current active machine "
  1360. "definition '{1}'."
  1361. msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'."
  1362. #: /home/remco/dev/code/ulti/trans/Cura/cura/Settings/CuraContainerRegistry.py:488
  1363. #, python-brace-format
  1364. msgctxt "@info:status"
  1365. msgid ""
  1366. "Warning: The profile is not visible because its quality type '{0}' is not "
  1367. "available for the current configuration. Switch to a material/nozzle "
  1368. "combination that can use this quality type."
  1369. msgstr "Advertencia: el perfil no es visible porque su tipo de calidad '{0}' no está disponible para la configuración actual. Cambie a una combinación de material/tobera"
  1370. " que pueda utilizar este tipo de calidad."
  1371. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:30
  1372. msgctxt "@info:status"
  1373. msgid "Multiplying and placing objects"
  1374. msgstr "Multiplicar y colocar objetos"
  1375. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:32
  1376. msgctxt "@info:title"
  1377. msgid "Placing Objects"
  1378. msgstr "Colocando objetos"
  1379. #: /home/remco/dev/code/ulti/trans/Cura/cura/MultiplyObjectsJob.py:100
  1380. msgctxt "@info:title"
  1381. msgid "Placing Object"
  1382. msgstr "Colocando objeto"
  1383. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:216
  1384. msgctxt "@info"
  1385. msgid ""
  1386. "Unable to start a new sign in process. Check if another sign in attempt is "
  1387. "still active."
  1388. msgstr "No se puede iniciar un nuevo proceso de inicio de sesión. Compruebe si todavía está activo otro intento de inicio de sesión."
  1389. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:277
  1390. msgctxt "@info"
  1391. msgid "Unable to reach the Ultimaker account server."
  1392. msgstr "No se puede acceder al servidor de cuentas de Ultimaker."
  1393. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationService.py:278
  1394. msgctxt "@info:title"
  1395. msgid "Log-in failed"
  1396. msgstr "Error de inicio de sesión"
  1397. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationHelpers.py:89
  1398. msgctxt "@message"
  1399. msgid "Could not read response."
  1400. msgstr "No se ha podido leer la respuesta."
  1401. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:75
  1402. msgctxt "@message"
  1403. msgid "The provided state is not correct."
  1404. msgstr "El estado indicado no es correcto."
  1405. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:80
  1406. msgctxt "@message"
  1407. msgid "Timeout when authenticating with the account server."
  1408. msgstr "Se agotó el tiempo de autenticación con el servidor de la cuenta."
  1409. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:97
  1410. msgctxt "@message"
  1411. msgid "Please give the required permissions when authorizing this application."
  1412. msgstr "Conceda los permisos necesarios al autorizar esta aplicación."
  1413. #: /home/remco/dev/code/ulti/trans/Cura/cura/OAuth2/AuthorizationRequestHandler.py:104
  1414. msgctxt "@message"
  1415. msgid "Something unexpected happened when trying to log in, please try again."
  1416. msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo."
  1417. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:107
  1418. msgctxt "@title:window"
  1419. msgid "Cura can't start"
  1420. msgstr "Cura no puede iniciarse"
  1421. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:113
  1422. msgctxt "@label crash message"
  1423. msgid ""
  1424. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right."
  1425. "</p></b>\n"
  1426. " <p>We encountered an unrecoverable error during start "
  1427. "up. It was possibly caused by some incorrect configuration files. We suggest "
  1428. "to backup and reset your configuration.</p>\n"
  1429. " <p>Backups can be found in the configuration folder.</"
  1430. "p>\n"
  1431. " <p>Please send us this Crash Report to fix the problem.</"
  1432. "p>\n"
  1433. " "
  1434. msgstr "<p><b>¡Vaya! Ultimaker Cura ha encontrado un error.</p></b>\n <p>Hemos detectado un error irreversible durante el inicio, posiblemente"
  1435. " 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"
  1436. " <p>Las copias de seguridad se encuentran en la carpeta de configuración.</p>\n <p>Envíenos el informe de errores"
  1437. " para que podamos solucionar el problema.</p>\n "
  1438. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:122
  1439. msgctxt "@action:button"
  1440. msgid "Send crash report to Ultimaker"
  1441. msgstr "Enviar informe de errores a Ultimaker"
  1442. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:125
  1443. msgctxt "@action:button"
  1444. msgid "Show detailed crash report"
  1445. msgstr "Mostrar informe de errores detallado"
  1446. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:129
  1447. msgctxt "@action:button"
  1448. msgid "Show configuration folder"
  1449. msgstr "Mostrar carpeta de configuración"
  1450. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:140
  1451. msgctxt "@action:button"
  1452. msgid "Backup and Reset Configuration"
  1453. msgstr "Realizar copia de seguridad y restablecer configuración"
  1454. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:171
  1455. msgctxt "@title:window"
  1456. msgid "Crash Report"
  1457. msgstr "Informe del accidente"
  1458. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:190
  1459. msgctxt "@label crash message"
  1460. msgid ""
  1461. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report "
  1462. "to fix the problem</p></b>\n"
  1463. " <p>Please use the \"Send report\" button to post a bug report "
  1464. "automatically to our servers</p>\n"
  1465. " "
  1466. msgstr "<p><b>Se ha producido un error grave en Cura. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>\n <p>Utilice"
  1467. " el botón &quot;Enviar informe&quot; para publicar automáticamente el informe de errores en nuestros servidores.</p>\n "
  1468. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:198
  1469. msgctxt "@title:groupbox"
  1470. msgid "System information"
  1471. msgstr "Información del sistema"
  1472. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:207
  1473. msgctxt "@label unknown version of Cura"
  1474. msgid "Unknown"
  1475. msgstr "Desconocido"
  1476. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:228
  1477. msgctxt "@label Cura version number"
  1478. msgid "Cura version"
  1479. msgstr "Versión de Cura"
  1480. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:229
  1481. msgctxt "@label"
  1482. msgid "Cura language"
  1483. msgstr "Idioma de Cura"
  1484. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:230
  1485. msgctxt "@label"
  1486. msgid "OS language"
  1487. msgstr "Idioma del sistema operativo"
  1488. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:231
  1489. msgctxt "@label Type of platform"
  1490. msgid "Platform"
  1491. msgstr "Plataforma"
  1492. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:232
  1493. msgctxt "@label"
  1494. msgid "Qt version"
  1495. msgstr "Versión Qt"
  1496. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:233
  1497. msgctxt "@label"
  1498. msgid "PyQt version"
  1499. msgstr "Versión PyQt"
  1500. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:234
  1501. msgctxt "@label OpenGL version"
  1502. msgid "OpenGL"
  1503. msgstr "OpenGL"
  1504. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:264
  1505. msgctxt "@label"
  1506. msgid "Not yet initialized<br/>"
  1507. msgstr "Aún no se ha inicializado<br/>"
  1508. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:267
  1509. #, python-brace-format
  1510. msgctxt "@label OpenGL version"
  1511. msgid "<li>OpenGL Version: {version}</li>"
  1512. msgstr "<li>Versión de OpenGL: {version}</li>"
  1513. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:268
  1514. #, python-brace-format
  1515. msgctxt "@label OpenGL vendor"
  1516. msgid "<li>OpenGL Vendor: {vendor}</li>"
  1517. msgstr "<li>Proveedor de OpenGL: {vendor}</li>"
  1518. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:269
  1519. #, python-brace-format
  1520. msgctxt "@label OpenGL renderer"
  1521. msgid "<li>OpenGL Renderer: {renderer}</li>"
  1522. msgstr "<li>Representador de OpenGL: {renderer}</li>"
  1523. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:303
  1524. msgctxt "@title:groupbox"
  1525. msgid "Error traceback"
  1526. msgstr "Rastreabilidad de errores"
  1527. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:389
  1528. msgctxt "@title:groupbox"
  1529. msgid "Logs"
  1530. msgstr "Registros"
  1531. #: /home/remco/dev/code/ulti/trans/Cura/cura/CrashHandler.py:417
  1532. msgctxt "@action:button"
  1533. msgid "Send report"
  1534. msgstr "Enviar informe"
  1535. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1536. msgctxt "@info"
  1537. msgid ""
  1538. "Please make sure your printer has a connection:\n"
  1539. "- Check if the printer is turned on.\n"
  1540. "- Check if the printer is connected to the network.\n"
  1541. "- Check if you are signed in to discover cloud-connected printers."
  1542. msgstr "Asegúrese de que la impresora está conectada:\n- Compruebe que la impresora está encendida.\n- Compruebe que la impresora está conectada a la red.\n- Compruebe"
  1543. " que ha iniciado sesión para ver impresoras conectadas a la nube."
  1544. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:113
  1545. msgctxt "@info"
  1546. msgid "Please connect your printer to the network."
  1547. msgstr "Conecte su impresora a la red."
  1548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:146
  1549. msgctxt "@label link to technical assistance"
  1550. msgid "View user manuals online"
  1551. msgstr "Ver manuales de usuario en línea"
  1552. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MonitorStage/MonitorMain.qml:163
  1553. msgctxt "@info"
  1554. msgid "In order to monitor your print from Cura, please connect the printer."
  1555. msgstr "Para supervisar la copia impresa desde Cura, conecte la impresora."
  1556. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  1557. msgctxt "@title:window"
  1558. msgid "Select Settings to Customize for this model"
  1559. msgstr "Seleccionar ajustes o personalizar este modelo"
  1560. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  1561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:100
  1562. msgctxt "@label:textbox"
  1563. msgid "Filter..."
  1564. msgstr "Filtrar..."
  1565. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  1566. msgctxt "@label:checkbox"
  1567. msgid "Show all"
  1568. msgstr "Mostrar todo"
  1569. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1570. msgctxt "@label"
  1571. msgid "Mesh Type"
  1572. msgstr "Tipo de malla"
  1573. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1574. msgctxt "@label"
  1575. msgid "Normal model"
  1576. msgstr "Modelo normal"
  1577. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1578. msgctxt "@label"
  1579. msgid "Print as support"
  1580. msgstr "Imprimir como soporte"
  1581. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  1582. msgctxt "@label"
  1583. msgid "Modify settings for overlaps"
  1584. msgstr "Modificar los ajustes de las superposiciones"
  1585. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  1586. msgctxt "@label"
  1587. msgid "Don't support overlaps"
  1588. msgstr "No es compatible con superposiciones"
  1589. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:159
  1590. msgctxt "@item:inlistbox"
  1591. msgid "Infill mesh only"
  1592. msgstr "Solo malla de relleno"
  1593. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  1594. msgctxt "@item:inlistbox"
  1595. msgid "Cutting mesh"
  1596. msgstr "Cortar malla"
  1597. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:385
  1598. msgctxt "@action:button"
  1599. msgid "Select settings"
  1600. msgstr "Seleccionar ajustes"
  1601. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1602. msgctxt "@title"
  1603. msgid "Update Firmware"
  1604. msgstr "Actualizar firmware"
  1605. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1606. msgctxt "@label"
  1607. msgid ""
  1608. "Firmware is the piece of software running directly on your 3D printer. This "
  1609. "firmware controls the step motors, regulates the temperature and ultimately "
  1610. "makes your printer work."
  1611. 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"
  1612. " y, finalmente, hace que funcione la impresora."
  1613. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1614. msgctxt "@label"
  1615. msgid ""
  1616. "The firmware shipping with new printers works, but new versions tend to have "
  1617. "more features and improvements."
  1618. msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
  1619. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1620. msgctxt "@action:button"
  1621. msgid "Automatically upgrade Firmware"
  1622. msgstr "Actualización de firmware automática"
  1623. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1624. msgctxt "@action:button"
  1625. msgid "Upload custom Firmware"
  1626. msgstr "Cargar firmware personalizado"
  1627. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1628. msgctxt "@label"
  1629. msgid ""
  1630. "Firmware can not be updated because there is no connection with the printer."
  1631. msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora."
  1632. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1633. msgctxt "@label"
  1634. msgid ""
  1635. "Firmware can not be updated because the connection with the printer does not "
  1636. "support upgrading firmware."
  1637. msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware."
  1638. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1639. msgctxt "@title:window"
  1640. msgid "Select custom firmware"
  1641. msgstr "Seleccionar firmware personalizado"
  1642. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:114
  1643. msgctxt "@title:window"
  1644. msgid "Firmware Update"
  1645. msgstr "Actualización del firmware"
  1646. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:138
  1647. msgctxt "@label"
  1648. msgid "Updating firmware."
  1649. msgstr "Actualización del firmware."
  1650. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:140
  1651. msgctxt "@label"
  1652. msgid "Firmware update completed."
  1653. msgstr "Actualización del firmware completada."
  1654. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:142
  1655. msgctxt "@label"
  1656. msgid "Firmware update failed due to an unknown error."
  1657. msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
  1658. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:144
  1659. msgctxt "@label"
  1660. msgid "Firmware update failed due to an communication error."
  1661. msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
  1662. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:146
  1663. msgctxt "@label"
  1664. msgid "Firmware update failed due to an input/output error."
  1665. msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
  1666. #: /home/remco/dev/code/ulti/trans/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:148
  1667. msgctxt "@label"
  1668. msgid "Firmware update failed due to missing firmware."
  1669. msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
  1670. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  1671. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  1672. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  1673. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  1674. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  1675. msgctxt "@label:status"
  1676. msgid "Aborted"
  1677. msgstr "Cancelado"
  1678. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  1679. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  1680. msgctxt "@label:status"
  1681. msgid "Finished"
  1682. msgstr "Terminado"
  1683. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  1684. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1685. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:351
  1686. msgctxt "@label:status"
  1687. msgid "Preparing..."
  1688. msgstr "Preparando..."
  1689. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  1690. msgctxt "@label:status"
  1691. msgid "Aborting..."
  1692. msgstr "Cancelando..."
  1693. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1694. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  1695. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  1696. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  1697. msgctxt "@label:status"
  1698. msgid "Failed"
  1699. msgstr "Error"
  1700. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  1701. msgctxt "@label:status"
  1702. msgid "Pausing..."
  1703. msgstr "Pausando..."
  1704. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  1705. msgctxt "@label:status"
  1706. msgid "Paused"
  1707. msgstr "En pausa"
  1708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  1709. msgctxt "@label:status"
  1710. msgid "Resuming..."
  1711. msgstr "Reanudando..."
  1712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  1713. msgctxt "@label:status"
  1714. msgid "Action required"
  1715. msgstr "Acción requerida"
  1716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  1717. msgctxt "@label:status"
  1718. msgid "Finishes %1 at %2"
  1719. msgstr "Termina el %1 a las %2"
  1720. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  1721. msgctxt "@label link to Connect and Cloud interfaces"
  1722. msgid "Manage printer"
  1723. msgstr "Administrar impresora"
  1724. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:178
  1725. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:151
  1726. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:175
  1727. msgctxt "@label"
  1728. msgid "Glass"
  1729. msgstr "Vidrio"
  1730. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:241
  1731. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:467
  1732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:239
  1733. msgctxt "@info"
  1734. msgid "Please update your printer's firmware to manage the queue remotely."
  1735. msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota."
  1736. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:275
  1737. msgctxt "@info"
  1738. msgid ""
  1739. "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura. Click "
  1740. "\"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  1741. msgstr "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en Ultimaker Cura. Haga clic en \"Administrar impresora\" para ir a Ultimaker"
  1742. " Digital Factory y ver esta cámara web."
  1743. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:335
  1744. msgctxt "@label:status"
  1745. msgid "Loading..."
  1746. msgstr "Cargando..."
  1747. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:339
  1748. msgctxt "@label:status"
  1749. msgid "Unavailable"
  1750. msgstr "No disponible"
  1751. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:343
  1752. msgctxt "@label:status"
  1753. msgid "Unreachable"
  1754. msgstr "No se puede conectar"
  1755. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:347
  1756. msgctxt "@label:status"
  1757. msgid "Idle"
  1758. msgstr "Sin actividad"
  1759. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  1760. msgctxt "@label:status"
  1761. msgid "Printing"
  1762. msgstr "Imprimiendo"
  1763. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:397
  1764. msgctxt "@label"
  1765. msgid "Untitled"
  1766. msgstr "Sin título"
  1767. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:412
  1768. msgctxt "@label"
  1769. msgid "Anonymous"
  1770. msgstr "Anónimo"
  1771. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:433
  1772. msgctxt "@label:status"
  1773. msgid "Requires configuration changes"
  1774. msgstr "Debe cambiar la configuración"
  1775. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:447
  1776. msgctxt "@action:button"
  1777. msgid "Details"
  1778. msgstr "Detalles"
  1779. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1780. msgctxt "@title:window"
  1781. msgid "Configuration Changes"
  1782. msgstr "Cambios de configuración"
  1783. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  1784. msgctxt "@action:button"
  1785. msgid "Override"
  1786. msgstr "Anular"
  1787. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  1788. msgctxt "@label"
  1789. msgid "The assigned printer, %1, requires the following configuration change:"
  1790. msgid_plural ""
  1791. "The assigned printer, %1, requires the following configuration changes:"
  1792. msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:"
  1793. msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:"
  1794. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  1795. msgctxt "@label"
  1796. msgid ""
  1797. "The printer %1 is assigned, but the job contains an unknown material "
  1798. "configuration."
  1799. msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido."
  1800. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  1801. msgctxt "@label"
  1802. msgid "Change material %1 from %2 to %3."
  1803. msgstr "Cambiar material %1, de %2 a %3."
  1804. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  1805. msgctxt "@label"
  1806. msgid "Load %3 as material %1 (This cannot be overridden)."
  1807. msgstr "Cargar %3 como material %1 (no se puede anular)."
  1808. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  1809. msgctxt "@label"
  1810. msgid "Change print core %1 from %2 to %3."
  1811. msgstr "Cambiar print core %1, de %2 a %3."
  1812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:106
  1813. msgctxt "@label"
  1814. msgid "Change build plate to %1 (This cannot be overridden)."
  1815. msgstr "Cambiar la placa de impresión a %1 (no se puede anular)."
  1816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:113
  1817. msgctxt "@label"
  1818. msgid ""
  1819. "Override will use the specified settings with the existing printer "
  1820. "configuration. This may result in a failed print."
  1821. msgstr "Al sobrescribir la configuración se usarán los ajustes especificados con la configuración de impresora existente. Esto podría provocar un fallo en la impresión."
  1822. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:154
  1823. msgctxt "@label"
  1824. msgid "Aluminum"
  1825. msgstr "Aluminio"
  1826. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  1827. msgctxt "@title:window"
  1828. msgid "Print over network"
  1829. msgstr "Imprimir a través de la red"
  1830. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  1831. msgctxt "@action:button"
  1832. msgid "Print"
  1833. msgstr "Imprimir"
  1834. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  1835. msgctxt "@label"
  1836. msgid "Printer selection"
  1837. msgstr "Selección de la impresora"
  1838. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  1839. msgctxt "@title:window"
  1840. msgid "Connect to Networked Printer"
  1841. msgstr "Conectar con la impresora en red"
  1842. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1843. msgctxt "@label"
  1844. msgid ""
  1845. "To print directly to your printer over the network, please make sure your "
  1846. "printer is connected to the network using a network cable or by connecting "
  1847. "your printer to your WIFI network. If you don't connect Cura with your "
  1848. "printer, you can still use a USB drive to transfer g-code files to your "
  1849. "printer."
  1850. msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi."
  1851. " Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora."
  1852. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  1853. msgctxt "@label"
  1854. msgid "Select your printer from the list below:"
  1855. msgstr "Seleccione la impresora en la lista siguiente:"
  1856. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  1857. msgctxt "@action:button"
  1858. msgid "Edit"
  1859. msgstr "Editar"
  1860. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  1861. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:141
  1862. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:186
  1863. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:320
  1864. msgctxt "@action:button"
  1865. msgid "Remove"
  1866. msgstr "Eliminar"
  1867. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  1868. msgctxt "@action:button"
  1869. msgid "Refresh"
  1870. msgstr "Actualizar"
  1871. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  1872. msgctxt "@label"
  1873. msgid ""
  1874. "If your printer is not listed, read the <a href='%1'>network printing "
  1875. "troubleshooting guide</a>"
  1876. 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>"
  1877. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  1878. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1879. msgctxt "@label"
  1880. msgid "Type"
  1881. msgstr "Tipo"
  1882. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  1883. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1884. msgctxt "@label"
  1885. msgid "Firmware version"
  1886. msgstr "Versión de firmware"
  1887. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  1888. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1889. msgctxt "@label"
  1890. msgid "Address"
  1891. msgstr "Dirección"
  1892. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  1893. msgctxt "@label"
  1894. msgid "This printer is not set up to host a group of printers."
  1895. msgstr "Esta impresora no está configurada para alojar un grupo de impresoras."
  1896. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  1897. msgctxt "@label"
  1898. msgid "This printer is the host for a group of %1 printers."
  1899. msgstr "Esta impresora aloja un grupo de %1 impresoras."
  1900. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  1901. msgctxt "@label"
  1902. msgid "The printer at this address has not yet responded."
  1903. msgstr "La impresora todavía no ha respondido en esta dirección."
  1904. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  1905. msgctxt "@action:button"
  1906. msgid "Connect"
  1907. msgstr "Conectar"
  1908. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  1909. msgctxt "@title:window"
  1910. msgid "Invalid IP address"
  1911. msgstr "Dirección IP no válida"
  1912. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  1913. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1914. msgctxt "@text"
  1915. msgid "Please enter a valid IP address."
  1916. msgstr "Introduzca una dirección IP válida."
  1917. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  1918. msgctxt "@title:window"
  1919. msgid "Printer Address"
  1920. msgstr "Dirección de la impresora"
  1921. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1922. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1923. msgctxt "@label"
  1924. msgid "Enter the IP address of your printer on the network."
  1925. msgstr "Introduzca la dirección IP de la impresora en la red."
  1926. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  1927. msgctxt "@label"
  1928. msgid "Unavailable printer"
  1929. msgstr "Impresora no disponible"
  1930. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  1931. msgctxt "@label"
  1932. msgid "First available"
  1933. msgstr "Primera disponible"
  1934. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1935. msgctxt "@label"
  1936. msgid "Move to top"
  1937. msgstr "Mover al principio"
  1938. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1939. msgctxt "@label"
  1940. msgid "Delete"
  1941. msgstr "Borrar"
  1942. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1943. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:284
  1944. msgctxt "@label"
  1945. msgid "Resume"
  1946. msgstr "Reanudar"
  1947. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1948. msgctxt "@label"
  1949. msgid "Pausing..."
  1950. msgstr "Pausando..."
  1951. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1952. msgctxt "@label"
  1953. msgid "Resuming..."
  1954. msgstr "Reanudando..."
  1955. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1956. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:279
  1957. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:288
  1958. msgctxt "@label"
  1959. msgid "Pause"
  1960. msgstr "Pausar"
  1961. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1962. msgctxt "@label"
  1963. msgid "Aborting..."
  1964. msgstr "Cancelando..."
  1965. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1966. msgctxt "@label"
  1967. msgid "Abort"
  1968. msgstr "Cancelar"
  1969. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:142
  1970. msgctxt "@label %1 is the name of a print job."
  1971. msgid "Are you sure you want to move %1 to the top of the queue?"
  1972. msgstr "¿Seguro que desea mover %1 al principio de la cola?"
  1973. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1974. msgctxt "@window:title"
  1975. msgid "Move print job to top"
  1976. msgstr "Mover trabajo de impresión al principio"
  1977. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:151
  1978. msgctxt "@label %1 is the name of a print job."
  1979. msgid "Are you sure you want to delete %1?"
  1980. msgstr "¿Seguro que desea borrar %1?"
  1981. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:152
  1982. msgctxt "@window:title"
  1983. msgid "Delete print job"
  1984. msgstr "Borrar trabajo de impresión"
  1985. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:160
  1986. msgctxt "@label %1 is the name of a print job."
  1987. msgid "Are you sure you want to abort %1?"
  1988. msgstr "¿Seguro que desea cancelar %1?"
  1989. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:161
  1990. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:326
  1991. msgctxt "@window:title"
  1992. msgid "Abort print"
  1993. msgstr "Cancela la impresión"
  1994. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  1995. msgctxt "@label"
  1996. msgid "Queued"
  1997. msgstr "En cola"
  1998. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:63
  1999. msgctxt "@label link to connect manager"
  2000. msgid "Manage in browser"
  2001. msgstr "Gestionar en el navegador"
  2002. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:90
  2003. msgctxt "@label"
  2004. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2005. msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno."
  2006. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:98
  2007. msgctxt "@label"
  2008. msgid "Print jobs"
  2009. msgstr "Trabajos de impresión"
  2010. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:107
  2011. msgctxt "@label"
  2012. msgid "Total print time"
  2013. msgstr "Tiempo de impresión total"
  2014. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:116
  2015. msgctxt "@label"
  2016. msgid "Waiting for"
  2017. msgstr "Esperando"
  2018. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:19
  2019. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:48
  2020. msgctxt "@label"
  2021. msgid "Color scheme"
  2022. msgstr "Combinación de colores"
  2023. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:105
  2024. msgctxt "@label:listbox"
  2025. msgid "Material Color"
  2026. msgstr "Color del material"
  2027. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2028. msgctxt "@label:listbox"
  2029. msgid "Line Type"
  2030. msgstr "Tipo de línea"
  2031. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2032. msgctxt "@label:listbox"
  2033. msgid "Speed"
  2034. msgstr "Velocidad"
  2035. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2036. msgctxt "@label:listbox"
  2037. msgid "Layer Thickness"
  2038. msgstr "Grosor de la capa"
  2039. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2040. msgctxt "@label:listbox"
  2041. msgid "Line Width"
  2042. msgstr "Ancho de línea"
  2043. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2044. msgctxt "@label:listbox"
  2045. msgid "Flow"
  2046. msgstr "Flujo"
  2047. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:165
  2048. msgctxt "@label"
  2049. msgid "Compatibility Mode"
  2050. msgstr "Modo de compatibilidad"
  2051. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:232
  2052. msgctxt "@label"
  2053. msgid "Travels"
  2054. msgstr "Desplazamientos"
  2055. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:238
  2056. msgctxt "@label"
  2057. msgid "Helpers"
  2058. msgstr "Asistentes"
  2059. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:244
  2060. msgctxt "@label"
  2061. msgid "Shell"
  2062. msgstr "Perímetro"
  2063. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:250
  2064. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:64
  2065. msgctxt "@label"
  2066. msgid "Infill"
  2067. msgstr "Relleno"
  2068. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:258
  2069. msgctxt "@label"
  2070. msgid "Starts"
  2071. msgstr "Inicios"
  2072. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:307
  2073. msgctxt "@label"
  2074. msgid "Only Show Top Layers"
  2075. msgstr "Mostrar solo capas superiores"
  2076. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:316
  2077. msgctxt "@label"
  2078. msgid "Show 5 Detailed Layers On Top"
  2079. msgstr "Mostrar cinco capas detalladas en la parte superior"
  2080. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:329
  2081. msgctxt "@label"
  2082. msgid "Top / Bottom"
  2083. msgstr "Superior o inferior"
  2084. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:333
  2085. msgctxt "@label"
  2086. msgid "Inner Wall"
  2087. msgstr "Pared interior"
  2088. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:400
  2089. msgctxt "@label"
  2090. msgid "min"
  2091. msgstr "mín"
  2092. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:465
  2093. msgctxt "@label"
  2094. msgid "max"
  2095. msgstr "máx"
  2096. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:14
  2097. msgctxt "@title:window"
  2098. msgid "Convert Image"
  2099. msgstr "Convertir imagen"
  2100. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:33
  2101. msgctxt "@action:label"
  2102. msgid "Height (mm)"
  2103. msgstr "Altura (mm)"
  2104. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:56
  2105. msgctxt "@info:tooltip"
  2106. msgid "The maximum distance of each pixel from \"Base.\""
  2107. msgstr "La distancia máxima de cada píxel desde la \"Base\"."
  2108. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:66
  2109. msgctxt "@action:label"
  2110. msgid "Base (mm)"
  2111. msgstr "Base (mm)"
  2112. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:90
  2113. msgctxt "@info:tooltip"
  2114. msgid "The base height from the build plate in millimeters."
  2115. msgstr "La altura de la base desde la placa de impresión en milímetros."
  2116. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:100
  2117. msgctxt "@action:label"
  2118. msgid "Width (mm)"
  2119. msgstr "Anchura (mm)"
  2120. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:124
  2121. msgctxt "@info:tooltip"
  2122. msgid "The width in millimeters on the build plate"
  2123. msgstr "La anchura en milímetros en la placa de impresión"
  2124. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:134
  2125. msgctxt "@action:label"
  2126. msgid "Depth (mm)"
  2127. msgstr "Profundidad (mm)"
  2128. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:158
  2129. msgctxt "@info:tooltip"
  2130. msgid "The depth in millimeters on the build plate"
  2131. msgstr "La profundidad en milímetros en la placa de impresión"
  2132. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:187
  2133. msgctxt "@item:inlistbox"
  2134. msgid "Darker is higher"
  2135. msgstr "Cuanto más oscuro más alto"
  2136. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:188
  2137. msgctxt "@item:inlistbox"
  2138. msgid "Lighter is higher"
  2139. msgstr "Cuanto más claro más alto"
  2140. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:195
  2141. msgctxt "@info:tooltip"
  2142. msgid ""
  2143. "For lithophanes dark pixels should correspond to thicker locations in order "
  2144. "to block more light coming through. For height maps lighter pixels signify "
  2145. "higher terrain, so lighter pixels should correspond to thicker locations in "
  2146. "the generated 3D model."
  2147. msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles"
  2148. " más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado."
  2149. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:205
  2150. msgctxt "@action:label"
  2151. msgid "Color Model"
  2152. msgstr "Modelo de color"
  2153. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:224
  2154. msgctxt "@item:inlistbox"
  2155. msgid "Linear"
  2156. msgstr "Lineal"
  2157. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:225
  2158. msgctxt "@item:inlistbox"
  2159. msgid "Translucency"
  2160. msgstr "Translucidez"
  2161. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:232
  2162. msgctxt "@info:tooltip"
  2163. msgid ""
  2164. "For lithophanes a simple logarithmic model for translucency is available. "
  2165. "For height maps the pixel values correspond to heights linearly."
  2166. msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a"
  2167. " las alturas linealmente."
  2168. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:242
  2169. msgctxt "@action:label"
  2170. msgid "1mm Transmittance (%)"
  2171. msgstr "Transmitancia de 1 mm (%)"
  2172. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:263
  2173. msgctxt "@info:tooltip"
  2174. msgid ""
  2175. "The percentage of light penetrating a print with a thickness of 1 "
  2176. "millimeter. Lowering this value increases the contrast in dark regions and "
  2177. "decreases the contrast in light regions of the image."
  2178. msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye"
  2179. " el contraste en las regiones claras de la imagen."
  2180. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:274
  2181. msgctxt "@action:label"
  2182. msgid "Smoothing"
  2183. msgstr "Suavizado"
  2184. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:298
  2185. msgctxt "@info:tooltip"
  2186. msgid "The amount of smoothing to apply to the image."
  2187. msgstr "La cantidad de suavizado que se aplica a la imagen."
  2188. #: /home/remco/dev/code/ulti/trans/Cura/plugins/ImageReader/ConfigUI.qml:329
  2189. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  2190. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:80
  2191. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:140
  2192. msgctxt "@action:button"
  2193. msgid "OK"
  2194. msgstr "Aceptar"
  2195. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2196. msgctxt "@title:window"
  2197. msgid "Open Project"
  2198. msgstr "Abrir proyecto"
  2199. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:55
  2200. msgctxt "@action:ComboBox Update/override existing profile"
  2201. msgid "Update existing"
  2202. msgstr "Actualizar existente"
  2203. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:56
  2204. msgctxt "@action:ComboBox Save settings in a new profile"
  2205. msgid "Create new"
  2206. msgstr "Crear nuevo"
  2207. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  2208. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:52
  2209. msgctxt "@action:title"
  2210. msgid "Summary - Cura Project"
  2211. msgstr "Resumen: proyecto de Cura"
  2212. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:100
  2213. msgctxt "@info:tooltip"
  2214. msgid "How should the conflict in the machine be resolved?"
  2215. msgstr "¿Cómo debería solucionarse el conflicto en la máquina?"
  2216. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:156
  2217. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:88
  2218. msgctxt "@action:label"
  2219. msgid "Printer settings"
  2220. msgstr "Ajustes de la impresora"
  2221. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2222. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2223. msgctxt "@action:label"
  2224. msgid "Type"
  2225. msgstr "Tipo"
  2226. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:184
  2227. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2228. msgctxt "@action:label"
  2229. msgid "Printer Group"
  2230. msgstr "Grupo de impresoras"
  2231. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:209
  2232. msgctxt "@info:tooltip"
  2233. msgid "How should the conflict in the profile be resolved?"
  2234. msgstr "¿Cómo debería solucionarse el conflicto en el perfil?"
  2235. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2236. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:213
  2237. msgctxt "@action:label"
  2238. msgid "Profile settings"
  2239. msgstr "Ajustes del perfil"
  2240. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2241. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  2242. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:112
  2243. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:237
  2244. msgctxt "@action:label"
  2245. msgid "Name"
  2246. msgstr "Nombre"
  2247. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:260
  2248. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:254
  2249. msgctxt "@action:label"
  2250. msgid "Intent"
  2251. msgstr "Intent"
  2252. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:278
  2253. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:221
  2254. msgctxt "@action:label"
  2255. msgid "Not in profile"
  2256. msgstr "No está en el perfil"
  2257. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:284
  2258. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2259. msgctxt "@action:label"
  2260. msgid "%1 override"
  2261. msgid_plural "%1 overrides"
  2262. msgstr[0] "%1 sobrescrito"
  2263. msgstr[1] "%1 sobrescritos"
  2264. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:297
  2265. msgctxt "@action:label"
  2266. msgid "Derivative from"
  2267. msgstr "Derivado de"
  2268. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:303
  2269. msgctxt "@action:label"
  2270. msgid "%1, %2 override"
  2271. msgid_plural "%1, %2 overrides"
  2272. msgstr[0] "%1, %2 sobrescrito"
  2273. msgstr[1] "%1, %2 sobrescritos"
  2274. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  2275. msgctxt "@info:tooltip"
  2276. msgid "How should the conflict in the material be resolved?"
  2277. msgstr "¿Cómo debería solucionarse el conflicto en el material?"
  2278. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:352
  2279. msgctxt "@action:label"
  2280. msgid "Material settings"
  2281. msgstr "Ajustes del material"
  2282. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:388
  2283. msgctxt "@action:label"
  2284. msgid "Setting visibility"
  2285. msgstr "Visibilidad de los ajustes"
  2286. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:397
  2287. msgctxt "@action:label"
  2288. msgid "Mode"
  2289. msgstr "Modo"
  2290. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:413
  2291. msgctxt "@action:label"
  2292. msgid "Visible settings:"
  2293. msgstr "Ajustes visibles:"
  2294. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:418
  2295. msgctxt "@action:label"
  2296. msgid "%1 out of %2"
  2297. msgstr "%1 de un total de %2"
  2298. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:439
  2299. msgctxt "@action:warning"
  2300. msgid "Loading a project will clear all models on the build plate."
  2301. msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  2302. #: /home/remco/dev/code/ulti/trans/Cura/plugins/3MFReader/WorkspaceDialog.qml:456
  2303. msgctxt "@action:button"
  2304. msgid "Open"
  2305. msgstr "Abrir"
  2306. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2307. msgctxt "@button"
  2308. msgid "Want more?"
  2309. msgstr "¿Desea obtener más información?"
  2310. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2311. msgctxt "@button"
  2312. msgid "Backup Now"
  2313. msgstr "Realizar copia de seguridad ahora"
  2314. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2315. msgctxt "@checkbox:description"
  2316. msgid "Auto Backup"
  2317. msgstr "Copia de seguridad automática"
  2318. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2319. msgctxt "@checkbox:description"
  2320. msgid "Automatically create a backup each day that Cura is started."
  2321. msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura."
  2322. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2323. msgctxt "@backuplist:label"
  2324. msgid "Cura Version"
  2325. msgstr "Versión de Cura"
  2326. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2327. msgctxt "@backuplist:label"
  2328. msgid "Machines"
  2329. msgstr "Máquinas"
  2330. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2331. msgctxt "@backuplist:label"
  2332. msgid "Materials"
  2333. msgstr "Materiales"
  2334. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2335. msgctxt "@backuplist:label"
  2336. msgid "Profiles"
  2337. msgstr "Perfiles"
  2338. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2339. msgctxt "@backuplist:label"
  2340. msgid "Plugins"
  2341. msgstr "Complementos"
  2342. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  2343. msgctxt "@button"
  2344. msgid "Restore"
  2345. msgstr "Restaurar"
  2346. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  2347. msgctxt "@dialog:title"
  2348. msgid "Delete Backup"
  2349. msgstr "Eliminar copia de seguridad"
  2350. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  2351. msgctxt "@dialog:info"
  2352. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2353. msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer."
  2354. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  2355. msgctxt "@dialog:title"
  2356. msgid "Restore Backup"
  2357. msgstr "Restaurar copia de seguridad"
  2358. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  2359. msgctxt "@dialog:info"
  2360. msgid ""
  2361. "You will need to restart Cura before your backup is restored. Do you want to "
  2362. "close Cura now?"
  2363. msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?"
  2364. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2365. msgctxt "@description"
  2366. msgid "Backup and synchronize your Cura settings."
  2367. msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura."
  2368. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  2369. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:49
  2370. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:163
  2371. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:225
  2372. msgctxt "@button"
  2373. msgid "Sign in"
  2374. msgstr "Iniciar sesión"
  2375. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2376. msgctxt "@title"
  2377. msgid "My Backups"
  2378. msgstr "Mis copias de seguridad"
  2379. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2380. msgctxt "@empty_state"
  2381. msgid ""
  2382. "You don't have any backups currently. Use the 'Backup Now' button to create "
  2383. "one."
  2384. msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una."
  2385. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2386. msgctxt "@backup_limit_info"
  2387. msgid ""
  2388. "During the preview phase, you'll be limited to 5 visible backups. Remove a "
  2389. "backup to see older ones."
  2390. msgstr "Durante la fase de vista previa, solo se mostrarán 5 copias de seguridad. Elimine una copia de seguridad para ver copias de seguridad antiguas."
  2391. #: /home/remco/dev/code/ulti/trans/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2392. msgctxt "@title:window"
  2393. msgid "Cura Backups"
  2394. msgstr "Copias de seguridad de Cura"
  2395. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2396. msgctxt "@title:window"
  2397. msgid "More information on anonymous data collection"
  2398. msgstr "Más información sobre la recopilación de datos anónimos"
  2399. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2400. msgctxt "@text:window"
  2401. msgid ""
  2402. "Ultimaker Cura collects anonymous data in order to improve the print quality "
  2403. "and user experience. Below is an example of all the data that is shared:"
  2404. msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos"
  2405. " que se comparten:"
  2406. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2407. msgctxt "@text:window"
  2408. msgid "I don't want to send anonymous data"
  2409. msgstr "No deseo enviar datos anónimos"
  2410. #: /home/remco/dev/code/ulti/trans/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2411. msgctxt "@text:window"
  2412. msgid "Allow sending anonymous data"
  2413. msgstr "Permitir el envío de datos anónimos"
  2414. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2415. msgctxt "@title:window"
  2416. msgid "Post Processing Plugin"
  2417. msgstr "Complemento de posprocesamiento"
  2418. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2419. msgctxt "@label"
  2420. msgid "Post Processing Scripts"
  2421. msgstr "Secuencias de comandos de posprocesamiento"
  2422. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:221
  2423. msgctxt "@action"
  2424. msgid "Add a script"
  2425. msgstr "Añadir secuencia de comando"
  2426. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:257
  2427. msgctxt "@label"
  2428. msgid "Settings"
  2429. msgstr "Ajustes"
  2430. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:466
  2431. msgctxt "@info:tooltip"
  2432. msgid "Change active post-processing scripts."
  2433. msgstr "Cambiar las secuencias de comandos de posprocesamiento."
  2434. #: /home/remco/dev/code/ulti/trans/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:470
  2435. msgctxt "@info:tooltip"
  2436. msgid "The following script is active:"
  2437. msgid_plural "The following scripts are active:"
  2438. msgstr[0] "La siguiente secuencia de comandos está activa:"
  2439. msgstr[1] "Las siguientes secuencias de comandos están activas:"
  2440. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2441. msgctxt "@label"
  2442. msgid "Please select any upgrades made to this Ultimaker Original"
  2443. msgstr "Seleccione cualquier actualización de Ultimaker Original"
  2444. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2445. msgctxt "@label"
  2446. msgid "Heated Build Plate (official kit or self-built)"
  2447. msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
  2448. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2449. msgctxt "@title"
  2450. msgid "Build Plate Leveling"
  2451. msgstr "Nivelación de la placa de impresión"
  2452. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2453. msgctxt "@label"
  2454. msgid ""
  2455. "To make sure your prints will come out great, you can now adjust your "
  2456. "buildplate. When you click 'Move to Next Position' the nozzle will move to "
  2457. "the different positions that can be adjusted."
  2458. 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"
  2459. " tobera se trasladará a las diferentes posiciones que se pueden ajustar."
  2460. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2461. msgctxt "@label"
  2462. msgid ""
  2463. "For every position; insert a piece of paper under the nozzle and adjust the "
  2464. "print build plate height. The print build plate height is right when the "
  2465. "paper is slightly gripped by the tip of the nozzle."
  2466. 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"
  2467. " cuando el papel queda ligeramente sujeto por la punta de la tobera."
  2468. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2469. msgctxt "@action:button"
  2470. msgid "Start Build Plate Leveling"
  2471. msgstr "Iniciar nivelación de la placa de impresión"
  2472. #: /home/remco/dev/code/ulti/trans/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2473. msgctxt "@action:button"
  2474. msgid "Move to Next Position"
  2475. msgstr "Mover a la siguiente posición"
  2476. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  2477. msgctxt "@info"
  2478. msgid "Ultimaker Verified Plug-in"
  2479. msgstr "Complemento verificado por Ultimaker"
  2480. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  2481. msgctxt "@info"
  2482. msgid "Ultimaker Certified Material"
  2483. msgstr "Material certificado por Ultimaker"
  2484. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  2485. msgctxt "@info"
  2486. msgid "Ultimaker Verified Package"
  2487. msgstr "Paquete verificado por Ultimaker"
  2488. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:84
  2489. msgctxt "@title"
  2490. msgid "Loading..."
  2491. msgstr "Cargando..."
  2492. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:143
  2493. msgctxt "@button"
  2494. msgid "Plugins"
  2495. msgstr "Complementos"
  2496. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:151
  2497. msgctxt "@button"
  2498. msgid "Materials"
  2499. msgstr "Materiales"
  2500. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:188
  2501. msgctxt "@info"
  2502. msgid "Search in the browser"
  2503. msgstr "Buscar en el navegador"
  2504. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:266
  2505. msgctxt "@button"
  2506. msgid "In order to use the package you will need to restart Cura"
  2507. msgstr "Para utilizar el paquete, deberá reiniciar Cura"
  2508. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Marketplace.qml:274
  2509. msgctxt "@info:button, %1 is the application name"
  2510. msgid "Quit %1"
  2511. msgstr "Salir de %1"
  2512. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:165
  2513. msgctxt "@label"
  2514. msgid "By"
  2515. msgstr "Por"
  2516. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2517. msgctxt "@button"
  2518. msgid "Enable"
  2519. msgstr "Habilitar"
  2520. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:199
  2521. msgctxt "@button"
  2522. msgid "Disable"
  2523. msgstr "Deshabilitar"
  2524. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:217
  2525. msgctxt "@button"
  2526. msgid "Downgrading..."
  2527. msgstr "Degradando..."
  2528. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:218
  2529. msgctxt "@button"
  2530. msgid "Downgrade"
  2531. msgstr "Degradar"
  2532. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:222
  2533. msgctxt "@button"
  2534. msgid "Installing..."
  2535. msgstr "Instalando..."
  2536. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:223
  2537. msgctxt "@button"
  2538. msgid "Install"
  2539. msgstr "Instalar"
  2540. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:227
  2541. msgctxt "@button"
  2542. msgid "Uninstall"
  2543. msgstr "Desinstalar"
  2544. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2545. msgctxt "@button"
  2546. msgid "Updating..."
  2547. msgstr "Actualizando..."
  2548. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  2549. msgctxt "@button"
  2550. msgid "Update"
  2551. msgstr "Actualizar"
  2552. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:8
  2553. msgctxt "@header"
  2554. msgid "Install Plugins"
  2555. msgstr "Instalar complementos"
  2556. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Plugins.qml:12
  2557. msgctxt "@text"
  2558. msgid ""
  2559. "Streamline your workflow and customize your Ultimaker Cura experience with "
  2560. "plugins contributed by our amazing community of users."
  2561. msgstr "Optimice su flujo de trabajo y personalice su experiencia de Ultimaker Cura con complementos proporcionados por nuestra increíble comunidad de usuarios."
  2562. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  2563. msgctxt "@info:tooltip"
  2564. msgid "Manage packages"
  2565. msgstr "Gestionar paquetes"
  2566. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:85
  2567. msgctxt "@header"
  2568. msgid "Description"
  2569. msgstr "Descripción"
  2570. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:117
  2571. msgctxt "@header"
  2572. msgid "Compatible printers"
  2573. msgstr "Impresoras compatibles"
  2574. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:143
  2575. msgctxt "@info"
  2576. msgid "No compatibility information"
  2577. msgstr "No hay información sobre la compatibilidad"
  2578. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:162
  2579. msgctxt "@header"
  2580. msgid "Compatible support materials"
  2581. msgstr "Materiales de soporte compatibles"
  2582. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:188
  2583. msgctxt "@info No materials"
  2584. msgid "None"
  2585. msgstr "Ninguno"
  2586. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:206
  2587. msgctxt "@header"
  2588. msgid "Compatible with Material Station"
  2589. msgstr "Compatible con Material Station"
  2590. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2591. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2592. msgctxt "@info"
  2593. msgid "Yes"
  2594. msgstr "Sí"
  2595. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:216
  2596. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:244
  2597. msgctxt "@info"
  2598. msgid "No"
  2599. msgstr "No"
  2600. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:234
  2601. msgctxt "@header"
  2602. msgid "Optimized for Air Manager"
  2603. msgstr "Optimizado para Air Manager"
  2604. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2605. msgctxt "@button"
  2606. msgid "Visit plug-in website"
  2607. msgstr "Visite el sitio web de complementos"
  2608. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:260
  2609. msgctxt "@button"
  2610. msgid "Website"
  2611. msgstr "Sitio web"
  2612. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:269
  2613. msgctxt "@button"
  2614. msgid "Buy spool"
  2615. msgstr "Comprar bobina"
  2616. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:278
  2617. msgctxt "@button"
  2618. msgid "Safety datasheet"
  2619. msgstr "Hoja de datos de seguridad"
  2620. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackagePage.qml:287
  2621. msgctxt "@button"
  2622. msgid "Technical datasheet"
  2623. msgstr "Ficha técnica"
  2624. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:15
  2625. msgctxt "@header"
  2626. msgid "Package details"
  2627. msgstr "Detalles del paquete"
  2628. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/PackageDetails.qml:40
  2629. msgctxt "@button:tooltip"
  2630. msgid "Back"
  2631. msgstr "Atrás"
  2632. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:16
  2633. msgctxt "@button"
  2634. msgid "Plugin license agreement"
  2635. msgstr "Acuerdo de licencia de complemento"
  2636. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:48
  2637. msgctxt "@text"
  2638. msgid "Please read and agree with the plugin licence."
  2639. msgstr "Lea y acepte la licencia del complemento."
  2640. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:74
  2641. msgctxt "@button"
  2642. msgid "Accept"
  2643. msgstr "Aceptar"
  2644. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/LicenseDialog.qml:83
  2645. msgctxt "@button"
  2646. msgid "Decline"
  2647. msgstr "Rechazar"
  2648. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2649. msgctxt "@button"
  2650. msgid "Failed to load packages:"
  2651. msgstr "Error al cargar los paquetes:"
  2652. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:164
  2653. msgctxt "@button"
  2654. msgid "Retry?"
  2655. msgstr "¿Desea volver a intentarlo?"
  2656. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:180
  2657. msgctxt "@button"
  2658. msgid "Loading"
  2659. msgstr "Cargando"
  2660. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2661. msgctxt "@message"
  2662. msgid "No more results to load"
  2663. msgstr "No hay más resultados para cargar"
  2664. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:196
  2665. msgctxt "@message"
  2666. msgid "No results found with current filter"
  2667. msgstr "No se han encontrado resultados con el filtro actual"
  2668. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Packages.qml:239
  2669. msgctxt "@button"
  2670. msgid "Load more"
  2671. msgstr "Cargar más"
  2672. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:11
  2673. msgctxt "@header"
  2674. msgid "Manage packages"
  2675. msgstr "Gestionar paquetes"
  2676. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/ManagedPackages.qml:15
  2677. msgctxt "@text"
  2678. msgid ""
  2679. "Manage your Ultimaker Cura plugins and material profiles here. Make sure to "
  2680. "keep your plugins up to date and backup your setup regularly."
  2681. msgstr "Gestionar los complementos y los perfiles de materiales de Ultimaker Cura aquí. Asegúrese de mantener los complementos actualizados y hacer una copia de"
  2682. " seguridad de su configuración regularmente."
  2683. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:8
  2684. msgctxt "@header"
  2685. msgid "Install Materials"
  2686. msgstr "Instalar materiales"
  2687. #: /home/remco/dev/code/ulti/trans/Cura/plugins/Marketplace/resources/qml/Materials.qml:12
  2688. msgctxt "@text"
  2689. msgid ""
  2690. "Select and install material profiles optimised for your Ultimaker 3D "
  2691. "printers."
  2692. msgstr "Seleccione e instale perfiles de material optimizados para sus impresoras 3D Ultimaker."
  2693. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2694. msgctxt "@title:tab"
  2695. msgid "Printer"
  2696. msgstr "Impresora"
  2697. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2698. msgctxt "@title:label"
  2699. msgid "Nozzle Settings"
  2700. msgstr "Ajustes de la tobera"
  2701. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2702. msgctxt "@label"
  2703. msgid "Nozzle size"
  2704. msgstr "Tamaño de la tobera"
  2705. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2706. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2707. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2708. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2709. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2710. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2711. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2712. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2713. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2714. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2715. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2716. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2717. msgctxt "@label"
  2718. msgid "mm"
  2719. msgstr "mm"
  2720. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2721. msgctxt "@label"
  2722. msgid "Compatible material diameter"
  2723. msgstr "Diámetro del material compatible"
  2724. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2725. msgctxt "@label"
  2726. msgid "Nozzle offset X"
  2727. msgstr "Desplazamiento de la tobera sobre el eje X"
  2728. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2729. msgctxt "@label"
  2730. msgid "Nozzle offset Y"
  2731. msgstr "Desplazamiento de la tobera sobre el eje Y"
  2732. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2733. msgctxt "@label"
  2734. msgid "Cooling Fan Number"
  2735. msgstr "Número de ventilador de enfriamiento"
  2736. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2737. msgctxt "@title:label"
  2738. msgid "Extruder Start G-code"
  2739. msgstr "GCode inicial del extrusor"
  2740. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2741. msgctxt "@title:label"
  2742. msgid "Extruder End G-code"
  2743. msgstr "GCode final del extrusor"
  2744. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2745. msgctxt "@title:label"
  2746. msgid "Printer Settings"
  2747. msgstr "Ajustes de la impresora"
  2748. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2749. msgctxt "@label"
  2750. msgid "X (Width)"
  2751. msgstr "X (anchura)"
  2752. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2753. msgctxt "@label"
  2754. msgid "Y (Depth)"
  2755. msgstr "Y (profundidad)"
  2756. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2757. msgctxt "@label"
  2758. msgid "Z (Height)"
  2759. msgstr "Z (altura)"
  2760. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2761. msgctxt "@label"
  2762. msgid "Build plate shape"
  2763. msgstr "Forma de la placa de impresión"
  2764. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2765. msgctxt "@label"
  2766. msgid "Origin at center"
  2767. msgstr "Origen en el centro"
  2768. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2769. msgctxt "@label"
  2770. msgid "Heated bed"
  2771. msgstr "Plataforma calentada"
  2772. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2773. msgctxt "@label"
  2774. msgid "Heated build volume"
  2775. msgstr "Volumen de impresión calentado"
  2776. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2777. msgctxt "@label"
  2778. msgid "G-code flavor"
  2779. msgstr "Tipo de GCode"
  2780. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2781. msgctxt "@title:label"
  2782. msgid "Printhead Settings"
  2783. msgstr "Ajustes del cabezal de impresión"
  2784. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2785. msgctxt "@label"
  2786. msgid "X min"
  2787. msgstr "X mín"
  2788. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2789. msgctxt "@label"
  2790. msgid "Y min"
  2791. msgstr "Y mín"
  2792. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2793. msgctxt "@label"
  2794. msgid "X max"
  2795. msgstr "X máx"
  2796. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2797. msgctxt "@label"
  2798. msgid "Y max"
  2799. msgstr "Y máx"
  2800. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2801. msgctxt "@label"
  2802. msgid "Gantry Height"
  2803. msgstr "Altura del puente"
  2804. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2805. msgctxt "@label"
  2806. msgid "Number of Extruders"
  2807. msgstr "Número de extrusores"
  2808. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2809. msgctxt "@label"
  2810. msgid "Apply Extruder offsets to GCode"
  2811. msgstr "Aplicar compensaciones del extrusor a GCode"
  2812. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2813. msgctxt "@title:label"
  2814. msgid "Start G-code"
  2815. msgstr "Iniciar GCode"
  2816. #: /home/remco/dev/code/ulti/trans/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2817. msgctxt "@title:label"
  2818. msgid "End G-code"
  2819. msgstr "Finalizar GCode"
  2820. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  2821. msgctxt "@label:button"
  2822. msgid "My printers"
  2823. msgstr "Mis impresoras"
  2824. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  2825. msgctxt "@tooltip:button"
  2826. msgid "Monitor printers in Ultimaker Digital Factory."
  2827. msgstr "Supervise las impresoras de Ultimaker Digital Factory."
  2828. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  2829. msgctxt "@tooltip:button"
  2830. msgid "Create print projects in Digital Library."
  2831. msgstr "Cree proyectos de impresión en Digital Library."
  2832. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  2833. msgctxt "@label:button"
  2834. msgid "Print jobs"
  2835. msgstr "Trabajos de impresión"
  2836. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  2837. msgctxt "@tooltip:button"
  2838. msgid "Monitor print jobs and reprint from your print history."
  2839. msgstr "Supervise los trabajos de impresión y vuelva a imprimir desde su historial de impresión."
  2840. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  2841. msgctxt "@tooltip:button"
  2842. msgid "Extend Ultimaker Cura with plugins and material profiles."
  2843. msgstr "Amplíe Ultimaker Cura con complementos y perfiles de materiales."
  2844. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  2845. msgctxt "@tooltip:button"
  2846. msgid "Become a 3D printing expert with Ultimaker e-learning."
  2847. msgstr "Conviértase en un experto en impresión 3D con el aprendizaje electrónico de Ultimaker."
  2848. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  2849. msgctxt "@label:button"
  2850. msgid "Ultimaker support"
  2851. msgstr "Soporte técnico de Ultimaker"
  2852. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  2853. msgctxt "@tooltip:button"
  2854. msgid "Learn how to get started with Ultimaker Cura."
  2855. msgstr "Aprenda cómo empezar a utilizar Ultimaker Cura."
  2856. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  2857. msgctxt "@label:button"
  2858. msgid "Ask a question"
  2859. msgstr "Haga una pregunta"
  2860. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  2861. msgctxt "@tooltip:button"
  2862. msgid "Consult the Ultimaker Community."
  2863. msgstr "Consulte en la Comunidad Ultimaker."
  2864. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  2865. msgctxt "@label:button"
  2866. msgid "Report a bug"
  2867. msgstr "Informar del error"
  2868. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  2869. msgctxt "@tooltip:button"
  2870. msgid "Let developers know that something is going wrong."
  2871. msgstr "Informe a los desarrolladores de que algo no funciona bien."
  2872. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  2873. msgctxt "@tooltip:button"
  2874. msgid "Visit the Ultimaker website."
  2875. msgstr "Visite el sitio web de Ultimaker."
  2876. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ExtruderButton.qml:16
  2877. msgctxt "@label %1 is filled in with the name of an extruder"
  2878. msgid "Print Selected Model with %1"
  2879. msgid_plural "Print Selected Models with %1"
  2880. msgstr[0] "Imprimir modelo seleccionado con %1"
  2881. msgstr[1] "Imprimir modelos seleccionados con %1"
  2882. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:63
  2883. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2884. msgctxt "@title:menu menubar:toplevel"
  2885. msgid "&Settings"
  2886. msgstr "A&justes"
  2887. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:87
  2888. msgctxt "@title:window"
  2889. msgid "New project"
  2890. msgstr "Nuevo proyecto"
  2891. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/ApplicationMenu.qml:88
  2892. msgctxt "@info:question"
  2893. msgid ""
  2894. "Are you sure you want to start a new project? This will clear the build "
  2895. "plate and any unsaved settings."
  2896. msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
  2897. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MainWindow/MainWindowHeader.qml:135
  2898. msgctxt "@action:button"
  2899. msgid "Marketplace"
  2900. msgstr "Marketplace"
  2901. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:25
  2902. msgctxt "@label"
  2903. msgid "Build plate"
  2904. msgstr "Placa de impresión"
  2905. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:55
  2906. msgctxt "@tooltip"
  2907. msgid ""
  2908. "The target temperature of the heated bed. The bed will heat up or cool down "
  2909. "towards this temperature. If this is 0, the bed heating is turned off."
  2910. 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"
  2911. " de la plataforma se desactivará."
  2912. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  2913. msgctxt "@tooltip"
  2914. msgid "The current temperature of the heated bed."
  2915. msgstr "Temperatura actual de la plataforma caliente."
  2916. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:162
  2917. msgctxt "@tooltip of temperature input"
  2918. msgid "The temperature to pre-heat the bed to."
  2919. msgstr "Temperatura a la que se va a precalentar la plataforma."
  2920. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:259
  2921. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:271
  2922. msgctxt "@button Cancel pre-heating"
  2923. msgid "Cancel"
  2924. msgstr "Cancelar"
  2925. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:263
  2926. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:274
  2927. msgctxt "@button"
  2928. msgid "Pre-heat"
  2929. msgstr "Precalentar"
  2930. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:286
  2931. msgctxt "@tooltip of pre-heat"
  2932. msgid ""
  2933. "Heat the bed in advance before printing. You can continue adjusting your "
  2934. "print while it is heating, and you won't have to wait for the bed to heat up "
  2935. "when you're ready to print."
  2936. 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"
  2937. " se caliente para poder imprimir."
  2938. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:56
  2939. msgctxt "@info:status"
  2940. msgid "The printer is not connected."
  2941. msgstr "La impresora no está conectada."
  2942. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  2943. msgctxt "@label"
  2944. msgid "Printer control"
  2945. msgstr "Control de impresoras"
  2946. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  2947. msgctxt "@label"
  2948. msgid "Jog Position"
  2949. msgstr "Posición de desplazamiento"
  2950. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  2951. msgctxt "@label"
  2952. msgid "X/Y"
  2953. msgstr "X/Y"
  2954. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  2955. msgctxt "@label"
  2956. msgid "Z"
  2957. msgstr "Z"
  2958. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  2959. msgctxt "@label"
  2960. msgid "Jog Distance"
  2961. msgstr "Distancia de desplazamiento"
  2962. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  2963. msgctxt "@label"
  2964. msgid "Send G-code"
  2965. msgstr "Enviar GCode"
  2966. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  2967. msgctxt "@tooltip of G-code command input"
  2968. msgid ""
  2969. "Send a custom G-code command to the connected printer. Press 'enter' to send "
  2970. "the command."
  2971. msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
  2972. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:40
  2973. msgctxt "@label"
  2974. msgid "Extruder"
  2975. msgstr "Extrusor"
  2976. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:70
  2977. msgctxt "@tooltip"
  2978. msgid ""
  2979. "The target temperature of the hotend. The hotend will heat up or cool down "
  2980. "towards this temperature. If this is 0, the hotend heating is turned off."
  2981. 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"
  2982. " del extremo caliente se desactivará."
  2983. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:105
  2984. msgctxt "@tooltip"
  2985. msgid "The current temperature of this hotend."
  2986. msgstr "Temperatura actual de este extremo caliente."
  2987. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:182
  2988. msgctxt "@tooltip of temperature input"
  2989. msgid "The temperature to pre-heat the hotend to."
  2990. msgstr "Temperatura a la que se va a precalentar el extremo caliente."
  2991. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:297
  2992. msgctxt "@tooltip of pre-heat"
  2993. msgid ""
  2994. "Heat the hotend in advance before printing. You can continue adjusting your "
  2995. "print while it is heating, and you won't have to wait for the hotend to heat "
  2996. "up when you're ready to print."
  2997. 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"
  2998. " caliente se caliente para poder imprimir."
  2999. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:335
  3000. msgctxt "@tooltip"
  3001. msgid "The colour of the material in this extruder."
  3002. msgstr "Color del material en este extrusor."
  3003. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:367
  3004. msgctxt "@tooltip"
  3005. msgid "The material in this extruder."
  3006. msgstr "Material en este extrusor."
  3007. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:400
  3008. msgctxt "@tooltip"
  3009. msgid "The nozzle inserted in this extruder."
  3010. msgstr "Tobera insertada en este extrusor."
  3011. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3012. msgctxt "@title:window"
  3013. msgid "Open project file"
  3014. msgstr "Abrir archivo de proyecto"
  3015. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:83
  3016. msgctxt "@text:window"
  3017. msgid ""
  3018. "This is a Cura project file. Would you like to open it as a project or "
  3019. "import the models from it?"
  3020. msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
  3021. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3022. msgctxt "@text:window"
  3023. msgid "Remember my choice"
  3024. msgstr "Recordar mi selección"
  3025. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3026. msgctxt "@action:button"
  3027. msgid "Open as project"
  3028. msgstr "Abrir como proyecto"
  3029. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3030. msgctxt "@action:button"
  3031. msgid "Import models"
  3032. msgstr "Importar modelos"
  3033. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  3034. msgctxt "@title:window"
  3035. msgid "Save Project"
  3036. msgstr "Guardar proyecto"
  3037. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:168
  3038. msgctxt "@action:label"
  3039. msgid "Extruder %1"
  3040. msgstr "Extrusor %1"
  3041. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:184
  3042. msgctxt "@action:label"
  3043. msgid "%1 & material"
  3044. msgstr "%1 y material"
  3045. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:186
  3046. msgctxt "@action:label"
  3047. msgid "Material"
  3048. msgstr "Material"
  3049. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:275
  3050. msgctxt "@action:label"
  3051. msgid "Don't show project summary on save again"
  3052. msgstr "No mostrar resumen de proyecto al guardar de nuevo"
  3053. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:289
  3054. msgctxt "@action:button"
  3055. msgid "Save"
  3056. msgstr "Guardar"
  3057. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3058. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:637
  3059. msgctxt "@title:window"
  3060. msgid "Open file(s)"
  3061. msgstr "Abrir archivo(s)"
  3062. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  3063. msgctxt "@text:window"
  3064. msgid ""
  3065. "We have found one or more project file(s) within the files you have "
  3066. "selected. You can open only one project file at a time. We suggest to only "
  3067. "import models from those files. Would you like to proceed?"
  3068. 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"
  3069. " que solo importe modelos de esos archivos. ¿Desea continuar?"
  3070. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3071. msgctxt "@action:button"
  3072. msgid "Import all as models"
  3073. msgstr "Importar todos como modelos"
  3074. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  3075. msgctxt "@title:window The argument is the application name."
  3076. msgid "About %1"
  3077. msgstr "Acerca de %1"
  3078. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  3079. msgctxt "@label"
  3080. msgid "version: %1"
  3081. msgstr "versión: %1"
  3082. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  3083. msgctxt "@label"
  3084. msgid "End-to-end solution for fused filament 3D printing."
  3085. msgstr "Solución completa para la impresión 3D de filamento fundido."
  3086. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  3087. msgctxt "@info:credit"
  3088. msgid ""
  3089. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  3090. "Cura proudly uses the following open source projects:"
  3091. 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:"
  3092. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:134
  3093. msgctxt "@label"
  3094. msgid "Graphical user interface"
  3095. msgstr "Interfaz gráfica de usuario (GUI)"
  3096. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  3097. msgctxt "@label"
  3098. msgid "Application framework"
  3099. msgstr "Entorno de la aplicación"
  3100. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  3101. msgctxt "@label"
  3102. msgid "G-code generator"
  3103. msgstr "Generador de GCode"
  3104. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  3105. msgctxt "@label"
  3106. msgid "Interprocess communication library"
  3107. msgstr "Biblioteca de comunicación entre procesos"
  3108. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:139
  3109. msgctxt "@label"
  3110. msgid "Programming language"
  3111. msgstr "Lenguaje de programación"
  3112. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  3113. msgctxt "@label"
  3114. msgid "GUI framework"
  3115. msgstr "Entorno de la GUI"
  3116. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  3117. msgctxt "@label"
  3118. msgid "GUI framework bindings"
  3119. msgstr "Enlaces del entorno de la GUI"
  3120. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  3121. msgctxt "@label"
  3122. msgid "C/C++ Binding library"
  3123. msgstr "Biblioteca de enlaces C/C++"
  3124. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  3125. msgctxt "@label"
  3126. msgid "Data interchange format"
  3127. msgstr "Formato de intercambio de datos"
  3128. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  3129. msgctxt "@label"
  3130. msgid "Support library for scientific computing"
  3131. msgstr "Biblioteca de apoyo para cálculos científicos"
  3132. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  3133. msgctxt "@label"
  3134. msgid "Support library for faster math"
  3135. msgstr "Biblioteca de apoyo para cálculos más rápidos"
  3136. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3137. msgctxt "@label"
  3138. msgid "Support library for handling STL files"
  3139. msgstr "Biblioteca de apoyo para gestionar archivos STL"
  3140. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3141. msgctxt "@label"
  3142. msgid "Support library for handling triangular meshes"
  3143. msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares"
  3144. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3145. msgctxt "@label"
  3146. msgid "Support library for handling 3MF files"
  3147. msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
  3148. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3149. msgctxt "@label"
  3150. msgid "Support library for file metadata and streaming"
  3151. msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos"
  3152. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3153. msgctxt "@label"
  3154. msgid "Serial communication library"
  3155. msgstr "Biblioteca de comunicación en serie"
  3156. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3157. msgctxt "@label"
  3158. msgid "ZeroConf discovery library"
  3159. msgstr "Biblioteca de detección para Zeroconf"
  3160. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3161. msgctxt "@label"
  3162. msgid "Polygon clipping library"
  3163. msgstr "Biblioteca de recorte de polígonos"
  3164. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3165. msgctxt "@label"
  3166. msgid "Python bindings for Clipper"
  3167. msgstr "Enlaces de Python para Clipper"
  3168. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3169. msgctxt "@Label"
  3170. msgid "Static type checker for Python"
  3171. msgstr "Comprobador de tipo estático para Python"
  3172. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3173. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3174. msgctxt "@Label"
  3175. msgid "Root Certificates for validating SSL trustworthiness"
  3176. msgstr "Certificados de raíz para validar la fiabilidad del SSL"
  3177. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3178. msgctxt "@Label"
  3179. msgid "Python Error tracking library"
  3180. msgstr "Biblioteca de seguimiento de errores de Python"
  3181. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3182. msgctxt "@label"
  3183. msgid "Polygon packing library, developed by Prusa Research"
  3184. msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research"
  3185. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3186. msgctxt "@label"
  3187. msgid "Python bindings for libnest2d"
  3188. msgstr "Enlaces de Python para libnest2d"
  3189. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3190. msgctxt "@label"
  3191. msgid "Support library for system keyring access"
  3192. msgstr "Biblioteca de soporte para el acceso al llavero del sistema"
  3193. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3194. msgctxt "@label"
  3195. msgid "Python extensions for Microsoft Windows"
  3196. msgstr "Extensiones Python para Microsoft Windows"
  3197. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3198. msgctxt "@label"
  3199. msgid "Font"
  3200. msgstr "Fuente"
  3201. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3202. msgctxt "@label"
  3203. msgid "SVG icons"
  3204. msgstr "Iconos SVG"
  3205. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3206. msgctxt "@label"
  3207. msgid "Linux cross-distribution application deployment"
  3208. msgstr "Implementación de la aplicación de distribución múltiple de Linux"
  3209. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:14
  3210. msgctxt "@title:window"
  3211. msgid "Discard or Keep changes"
  3212. msgstr "Descartar o guardar cambios"
  3213. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:50
  3214. msgctxt "@text:window, %1 is a profile name"
  3215. msgid ""
  3216. "You have customized some profile settings. Would you like to Keep these "
  3217. "changed settings after switching profiles? Alternatively, you can discard "
  3218. "the changes to load the defaults from '%1'."
  3219. msgstr "Ha personalizado algunos ajustes del perfil.\n¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\nTambién puede descartar los"
  3220. " cambios para cargar los valores predeterminados de'%1'."
  3221. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:76
  3222. msgctxt "@title:column"
  3223. msgid "Profile settings"
  3224. msgstr "Ajustes del perfil"
  3225. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:78
  3226. msgctxt "@title:column"
  3227. msgid "Current changes"
  3228. msgstr "Cambios actuales"
  3229. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:107
  3230. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:798
  3231. msgctxt "@option:discardOrKeep"
  3232. msgid "Always ask me this"
  3233. msgstr "Preguntar siempre"
  3234. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:108
  3235. msgctxt "@option:discardOrKeep"
  3236. msgid "Discard and never ask again"
  3237. msgstr "Descartar y no volver a preguntar"
  3238. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  3239. msgctxt "@option:discardOrKeep"
  3240. msgid "Keep and never ask again"
  3241. msgstr "Guardar y no volver a preguntar"
  3242. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:139
  3243. msgctxt "@action:button"
  3244. msgid "Discard changes"
  3245. msgstr "Descartar los cambios"
  3246. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:145
  3247. msgctxt "@action:button"
  3248. msgid "Keep changes"
  3249. msgstr "Mantener los cambios"
  3250. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Widgets/ComboBox.qml:18
  3251. msgctxt "@label"
  3252. msgid "No items to select from"
  3253. msgstr "No hay elementos para seleccionar"
  3254. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  3255. msgctxt "@title:menu menubar:file"
  3256. msgid "Open File(s)..."
  3257. msgstr "Abrir archivo(s)..."
  3258. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3259. msgctxt "@title:menu menubar:file"
  3260. msgid "Open &Recent"
  3261. msgstr "Abrir &reciente"
  3262. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  3263. msgctxt "@action:inmenu"
  3264. msgid "Visible Settings"
  3265. msgstr "Ajustes visibles"
  3266. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:45
  3267. msgctxt "@action:inmenu"
  3268. msgid "Collapse All Categories"
  3269. msgstr "Contraer todas las categorías"
  3270. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:54
  3271. msgctxt "@action:inmenu"
  3272. msgid "Manage Setting Visibility..."
  3273. msgstr "Gestionar visibilidad de los ajustes..."
  3274. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:34
  3275. msgctxt "@title:menu"
  3276. msgid "&Material"
  3277. msgstr "&Material"
  3278. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:49
  3279. msgctxt "@action:inmenu"
  3280. msgid "Set as Active Extruder"
  3281. msgstr "Definir como extrusor activo"
  3282. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:55
  3283. msgctxt "@action:inmenu"
  3284. msgid "Enable Extruder"
  3285. msgstr "Habilitar extrusor"
  3286. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SettingsMenu.qml:63
  3287. msgctxt "@action:inmenu"
  3288. msgid "Disable Extruder"
  3289. msgstr "Deshabilitar extrusor"
  3290. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3291. msgctxt "@label:category menu label"
  3292. msgid "Material"
  3293. msgstr "Material"
  3294. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:53
  3295. msgctxt "@label:category menu label"
  3296. msgid "Favorites"
  3297. msgstr "Favoritos"
  3298. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/MaterialMenu.qml:78
  3299. msgctxt "@label:category menu label"
  3300. msgid "Generic"
  3301. msgstr "Genérico"
  3302. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/HelpMenu.qml:14
  3303. msgctxt "@title:menu menubar:toplevel"
  3304. msgid "&Help"
  3305. msgstr "A&yuda"
  3306. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:13
  3307. msgctxt "@title:menu menubar:toplevel"
  3308. msgid "&File"
  3309. msgstr "&Archivo"
  3310. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:44
  3311. msgctxt "@title:menu menubar:file"
  3312. msgid "&Save Project..."
  3313. msgstr "&Guardar proyecto..."
  3314. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:77
  3315. msgctxt "@title:menu menubar:file"
  3316. msgid "&Export..."
  3317. msgstr "&Exportar..."
  3318. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/FileMenu.qml:88
  3319. msgctxt "@action:inmenu menubar:file"
  3320. msgid "Export Selection..."
  3321. msgstr "Exportar selección..."
  3322. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PreferencesMenu.qml:21
  3323. msgctxt "@title:menu menubar:toplevel"
  3324. msgid "P&references"
  3325. msgstr "Pre&ferencias"
  3326. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/EditMenu.qml:12
  3327. msgctxt "@title:menu menubar:toplevel"
  3328. msgid "&Edit"
  3329. msgstr "&Edición"
  3330. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:13
  3331. msgctxt "@title:menu menubar:settings"
  3332. msgid "&Printer"
  3333. msgstr "&Impresora"
  3334. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:17
  3335. msgctxt "@label:category menu label"
  3336. msgid "Network enabled printers"
  3337. msgstr "Impresoras de red habilitadas"
  3338. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/PrinterMenu.qml:50
  3339. msgctxt "@label:category menu label"
  3340. msgid "Local printers"
  3341. msgstr "Impresoras locales"
  3342. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ExtensionMenu.qml:13
  3343. msgctxt "@title:menu menubar:toplevel"
  3344. msgid "E&xtensions"
  3345. msgstr "E&xtensiones"
  3346. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3347. msgctxt "@header"
  3348. msgid "Configurations"
  3349. msgstr "Configuraciones"
  3350. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  3351. msgctxt "@label"
  3352. msgid "Loading available configurations from the printer..."
  3353. msgstr "Cargando configuraciones disponibles desde la impresora..."
  3354. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  3355. msgctxt "@label"
  3356. msgid ""
  3357. "The configurations are not available because the printer is disconnected."
  3358. msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada."
  3359. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3360. msgctxt "@label"
  3361. msgid ""
  3362. "This configuration is not available because %1 is not recognized. Please "
  3363. "visit %2 to download the correct material profile."
  3364. msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto."
  3365. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3366. msgctxt "@label"
  3367. msgid "Marketplace"
  3368. msgstr "Marketplace"
  3369. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:101
  3370. msgctxt "@tooltip"
  3371. msgid ""
  3372. "The configuration of this extruder is not allowed, and prohibits slicing."
  3373. msgstr "La configuración de este extrusor no está permitida y evita el corte."
  3374. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:105
  3375. msgctxt "@tooltip"
  3376. msgid "There are no profiles matching the configuration of this extruder."
  3377. msgstr "No hay perfiles que coincidan con la configuración de este extrusor."
  3378. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:245
  3379. msgctxt "@label"
  3380. msgid "Select configuration"
  3381. msgstr "Seleccionar configuración"
  3382. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:354
  3383. msgctxt "@label"
  3384. msgid "Configurations"
  3385. msgstr "Configuraciones"
  3386. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  3387. msgctxt "@header"
  3388. msgid "Custom"
  3389. msgstr "Personalizado"
  3390. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:62
  3391. msgctxt "@label"
  3392. msgid "Printer"
  3393. msgstr "Impresora"
  3394. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:214
  3395. msgctxt "@label"
  3396. msgid "Enabled"
  3397. msgstr "Habilitado"
  3398. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:263
  3399. msgctxt "@label"
  3400. msgid "Material"
  3401. msgstr "Material"
  3402. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:391
  3403. msgctxt "@label"
  3404. msgid "Use glue for better adhesion with this material combination."
  3405. msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión."
  3406. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:29
  3407. msgctxt "@label"
  3408. msgid "Print Selected Model With:"
  3409. msgid_plural "Print Selected Models With:"
  3410. msgstr[0] "Imprimir modelo seleccionado con:"
  3411. msgstr[1] "Imprimir modelos seleccionados con:"
  3412. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:92
  3413. msgctxt "@title:window"
  3414. msgid "Multiply Selected Model"
  3415. msgid_plural "Multiply Selected Models"
  3416. msgstr[0] "Multiplicar modelo seleccionado"
  3417. msgstr[1] "Multiplicar modelos seleccionados"
  3418. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ContextMenu.qml:123
  3419. msgctxt "@label"
  3420. msgid "Number of Copies"
  3421. msgstr "Número de copias"
  3422. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  3423. msgctxt "@title:menu menubar:file"
  3424. msgid "Save Project..."
  3425. msgstr "Guardar proyecto..."
  3426. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:13
  3427. msgctxt "@title:menu menubar:toplevel"
  3428. msgid "&View"
  3429. msgstr "&Ver"
  3430. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:17
  3431. msgctxt "@action:inmenu menubar:view"
  3432. msgid "&Camera position"
  3433. msgstr "&Posición de la cámara"
  3434. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:30
  3435. msgctxt "@action:inmenu menubar:view"
  3436. msgid "Camera view"
  3437. msgstr "Vista de cámara"
  3438. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:48
  3439. msgctxt "@action:inmenu menubar:view"
  3440. msgid "Perspective"
  3441. msgstr "Perspectiva"
  3442. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Menus/ViewMenu.qml:59
  3443. msgctxt "@action:inmenu menubar:view"
  3444. msgid "Orthographic"
  3445. msgstr "Ortográfica"
  3446. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewsSelector.qml:50
  3447. msgctxt "@label"
  3448. msgid "View type"
  3449. msgstr "Ver tipo"
  3450. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:19
  3451. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3452. msgctxt "@label"
  3453. msgid "Sign in to the Ultimaker platform"
  3454. msgstr "Inicie sesión en la plataforma Ultimaker"
  3455. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:39
  3456. msgctxt "@text"
  3457. msgid ""
  3458. "- Add material profiles and plug-ins from the Marketplace\n"
  3459. "- Back-up and sync your material profiles and plug-ins\n"
  3460. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3461. msgstr "- Añada perfiles de materiales y complementos del Marketplace \n- Realice copias de seguridad y sincronice los perfiles y complementos de sus materiales"
  3462. " \n- Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker"
  3463. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/GeneralOperations.qml:58
  3464. msgctxt "@button"
  3465. msgid "Create a free Ultimaker account"
  3466. msgstr "Cree una cuenta gratuita de Ultimaker"
  3467. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/AccountWidget.qml:24
  3468. msgctxt "@action:button"
  3469. msgid "Sign in"
  3470. msgstr "Iniciar sesión"
  3471. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:77
  3472. msgctxt "@label The argument is a timestamp"
  3473. msgid "Last update: %1"
  3474. msgstr "Última actualización: %1"
  3475. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:104
  3476. msgctxt "@button"
  3477. msgid "Ultimaker Account"
  3478. msgstr "Cuenta de Ultimaker"
  3479. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/UserOperations.qml:120
  3480. msgctxt "@button"
  3481. msgid "Sign Out"
  3482. msgstr "Cerrar sesión"
  3483. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:28
  3484. msgctxt "@label"
  3485. msgid "Checking..."
  3486. msgstr "Comprobando..."
  3487. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:35
  3488. msgctxt "@label"
  3489. msgid "Account synced"
  3490. msgstr "Cuenta sincronizada"
  3491. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:42
  3492. msgctxt "@label"
  3493. msgid "Something went wrong..."
  3494. msgstr "Se ha producido un error..."
  3495. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:95
  3496. msgctxt "@button"
  3497. msgid "Install pending updates"
  3498. msgstr "Instalar actualizaciones pendientes"
  3499. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Account/SyncState.qml:116
  3500. msgctxt "@button"
  3501. msgid "Check for account updates"
  3502. msgstr "Buscar actualizaciones de la cuenta"
  3503. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3504. msgctxt "@label:PrintjobStatus"
  3505. msgid "Slicing..."
  3506. msgstr "Segmentando..."
  3507. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:81
  3508. msgctxt "@label:PrintjobStatus"
  3509. msgid "Unable to slice"
  3510. msgstr "No se puede segmentar"
  3511. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3512. msgctxt "@button"
  3513. msgid "Processing"
  3514. msgstr "Procesando"
  3515. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:120
  3516. msgctxt "@button"
  3517. msgid "Slice"
  3518. msgstr "Segmentación"
  3519. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:121
  3520. msgctxt "@label"
  3521. msgid "Start the slicing process"
  3522. msgstr "Iniciar el proceso de segmentación"
  3523. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:137
  3524. msgctxt "@button"
  3525. msgid "Cancel"
  3526. msgstr "Cancelar"
  3527. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  3528. msgctxt "@label"
  3529. msgid "Time estimation"
  3530. msgstr "Estimación de tiempos"
  3531. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  3532. msgctxt "@label"
  3533. msgid "Material estimation"
  3534. msgstr "Estimación de material"
  3535. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  3536. msgctxt "@label m for meter"
  3537. msgid "%1m"
  3538. msgstr "%1 m"
  3539. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  3540. msgctxt "@label g for grams"
  3541. msgid "%1g"
  3542. msgstr "%1 g"
  3543. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3544. msgctxt "@label"
  3545. msgid "No time estimation available"
  3546. msgstr "Ningún cálculo de tiempo disponible"
  3547. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3548. msgctxt "@label"
  3549. msgid "No cost estimation available"
  3550. msgstr "Ningún cálculo de costes disponible"
  3551. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3552. msgctxt "@button"
  3553. msgid "Preview"
  3554. msgstr "Vista previa"
  3555. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:253
  3556. msgctxt "@label"
  3557. msgid "This package will be installed after restarting."
  3558. msgstr "Este paquete se instalará después de reiniciar."
  3559. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:463
  3560. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:14
  3561. msgctxt "@title:tab"
  3562. msgid "General"
  3563. msgstr "General"
  3564. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:466
  3565. msgctxt "@title:tab"
  3566. msgid "Settings"
  3567. msgstr "Ajustes"
  3568. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:468
  3569. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3570. msgctxt "@title:tab"
  3571. msgid "Printers"
  3572. msgstr "Impresoras"
  3573. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:470
  3574. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3575. msgctxt "@title:tab"
  3576. msgid "Materials"
  3577. msgstr "Materiales"
  3578. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:472
  3579. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:56
  3580. msgctxt "@title:tab"
  3581. msgid "Profiles"
  3582. msgstr "Perfiles"
  3583. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:589
  3584. msgctxt "@title:window %1 is the application name"
  3585. msgid "Closing %1"
  3586. msgstr "Cerrando %1"
  3587. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:590
  3588. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:599
  3589. msgctxt "@label %1 is the application name"
  3590. msgid "Are you sure you want to exit %1?"
  3591. msgstr "¿Seguro que desea salir de %1?"
  3592. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:747
  3593. msgctxt "@window:title"
  3594. msgid "Install Package"
  3595. msgstr "Instalar paquete"
  3596. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:754
  3597. msgctxt "@title:window"
  3598. msgid "Open File(s)"
  3599. msgstr "Abrir archivo(s)"
  3600. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:756
  3601. msgctxt "@text:window"
  3602. msgid ""
  3603. "We have found one or more G-Code files within the files you have selected. "
  3604. "You can only open one G-Code file at a time. If you want to open a G-Code "
  3605. "file, please just select only one."
  3606. 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"
  3607. " un archivo GCode, seleccione solo uno."
  3608. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:836
  3609. msgctxt "@title:window"
  3610. msgid "Add Printer"
  3611. msgstr "Agregar impresora"
  3612. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Cura.qml:844
  3613. msgctxt "@title:window"
  3614. msgid "What's New"
  3615. msgstr "Novedades"
  3616. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  3617. msgctxt "@label:Should be short"
  3618. msgid "On"
  3619. msgstr "Encendido"
  3620. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  3621. msgctxt "@label:Should be short"
  3622. msgid "Off"
  3623. msgstr "Apagado"
  3624. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:34
  3625. msgctxt "@label"
  3626. msgid "Experimental"
  3627. msgstr "Experimental"
  3628. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3629. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:642
  3630. msgctxt "@label"
  3631. msgid "Print settings"
  3632. msgstr "Ajustes de impresión"
  3633. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  3634. msgctxt "@label shown when we load a Gcode file"
  3635. msgid "Print setup disabled. G-code file can not be modified."
  3636. msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode."
  3637. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  3638. msgctxt "@button"
  3639. msgid "Recommended"
  3640. msgstr "Recomendado"
  3641. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  3642. msgctxt "@button"
  3643. msgid "Custom"
  3644. msgstr "Personalizado"
  3645. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  3646. msgctxt ""
  3647. "@label %1 is filled in with the type of a profile. %2 is filled with a list "
  3648. "of numbers (eg '1' or '1, 2')"
  3649. msgid ""
  3650. "There is no %1 profile for the configuration in extruder %2. The default "
  3651. "intent will be used instead"
  3652. msgid_plural ""
  3653. "There is no %1 profile for the configurations in extruders %2. The default "
  3654. "intent will be used instead"
  3655. msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada"
  3656. msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada"
  3657. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:195
  3658. msgctxt "@label"
  3659. msgid "Gradual infill"
  3660. msgstr "Relleno gradual"
  3661. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:233
  3662. msgctxt "@label"
  3663. msgid ""
  3664. "Gradual infill will gradually increase the amount of infill towards the top."
  3665. msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba."
  3666. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:28
  3667. msgctxt "@label"
  3668. msgid "Support"
  3669. msgstr "Soporte"
  3670. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:69
  3671. msgctxt "@label"
  3672. msgid ""
  3673. "Generate structures to support parts of the model which have overhangs. "
  3674. "Without these structures, such parts would collapse during printing."
  3675. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  3676. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:50
  3677. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:779
  3678. msgctxt "@label"
  3679. msgid "Profiles"
  3680. msgstr "Perfiles"
  3681. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:80
  3682. msgctxt "@tooltip"
  3683. msgid ""
  3684. "You have modified some profile settings. If you want to change these go to "
  3685. "custom mode."
  3686. msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado."
  3687. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:27
  3688. msgctxt "@label"
  3689. msgid "Adhesion"
  3690. msgstr "Adherencia"
  3691. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:72
  3692. msgctxt "@label"
  3693. msgid ""
  3694. "Enable printing a brim or raft. This will add a flat area around or under "
  3695. "your object which is easy to cut off afterwards."
  3696. 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."
  3697. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  3698. msgctxt "@label:header"
  3699. msgid "Custom profiles"
  3700. msgstr "Perfiles personalizados"
  3701. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:256
  3702. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:147
  3703. msgctxt "@action:button"
  3704. msgid "Discard current changes"
  3705. msgstr "Descartar cambios actuales"
  3706. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  3707. msgctxt "@label"
  3708. msgid "Profile"
  3709. msgstr "Perfil"
  3710. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:157
  3711. msgctxt "@tooltip"
  3712. msgid ""
  3713. "Some setting/override values are different from the values stored in the "
  3714. "profile.\n"
  3715. "\n"
  3716. "Click to open the profile manager."
  3717. 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."
  3718. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:37
  3719. msgctxt "@title:column"
  3720. msgid "Setting"
  3721. msgstr "Ajustes"
  3722. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:38
  3723. msgctxt "@title:column"
  3724. msgid "Profile"
  3725. msgstr "Perfil"
  3726. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:39
  3727. msgctxt "@title:column"
  3728. msgid "Current"
  3729. msgstr "Actual"
  3730. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ProfileOverview.qml:40
  3731. msgctxt "@title:column Unit of measurement"
  3732. msgid "Unit"
  3733. msgstr "Unidad"
  3734. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:22
  3735. msgctxt "@title:window"
  3736. msgid "Rename"
  3737. msgstr "Cambiar nombre"
  3738. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/RenameDialog.qml:23
  3739. msgctxt "@info"
  3740. msgid "Please provide a new name."
  3741. msgstr "Introduzca otro nombre."
  3742. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:56
  3743. msgctxt "@item:tooltip"
  3744. msgid ""
  3745. "This setting has been hidden by the active machine and will not be visible."
  3746. msgstr "La máquina activa ha ocultado este ajuste y no se verá."
  3747. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityItem.qml:73
  3748. msgctxt "@item:tooltip %1 is list of setting names"
  3749. msgid ""
  3750. "This setting has been hidden by the value of %1. Change the value of that "
  3751. "setting to make this setting visible."
  3752. msgid_plural ""
  3753. "This setting has been hidden by the values of %1. Change the values of those "
  3754. "settings to make this setting visible."
  3755. msgstr[0] "El valor de %1 ha ocultado este ajuste. Cambie el valor para que se muestre el ajuste."
  3756. msgstr[1] "Los valores de %1 han ocultado este ajuste. Cambie los valores para que muestre el ajuste."
  3757. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:13
  3758. msgctxt "@title:tab"
  3759. msgid "Setting Visibility"
  3760. msgstr "Visibilidad de los ajustes"
  3761. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:22
  3762. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:131
  3763. msgctxt "@action:button"
  3764. msgid "Defaults"
  3765. msgstr "Valores predeterminados"
  3766. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:53
  3767. msgctxt "@label:textbox"
  3768. msgid "Check all"
  3769. msgstr "Comprobar todo"
  3770. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:49
  3771. msgctxt "@action:button"
  3772. msgid "Add New"
  3773. msgstr "Añadir nuevo"
  3774. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:135
  3775. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:160
  3776. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:293
  3777. msgctxt "@action:button"
  3778. msgid "Activate"
  3779. msgstr "Activar"
  3780. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/MachinesPage.qml:147
  3781. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:330
  3782. msgctxt "@action:button"
  3783. msgid "Rename"
  3784. msgstr "Cambiar nombre"
  3785. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:121
  3786. msgctxt "@title:window"
  3787. msgid "Confirm Diameter Change"
  3788. msgstr "Confirmar cambio de diámetro"
  3789. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:122
  3790. msgctxt "@label (%1 is a number)"
  3791. msgid ""
  3792. "The new filament diameter is set to %1 mm, which is not compatible with the "
  3793. "current extruder. Do you wish to continue?"
  3794. msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
  3795. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:152
  3796. msgctxt "@label"
  3797. msgid "Display Name"
  3798. msgstr "Mostrar nombre"
  3799. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:171
  3800. msgctxt "@label"
  3801. msgid "Brand"
  3802. msgstr "Marca"
  3803. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:190
  3804. msgctxt "@label"
  3805. msgid "Material Type"
  3806. msgstr "Tipo de material"
  3807. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:209
  3808. msgctxt "@label"
  3809. msgid "Color"
  3810. msgstr "Color"
  3811. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:261
  3812. msgctxt "@title"
  3813. msgid "Material color picker"
  3814. msgstr "Seleccionador de color del material"
  3815. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:274
  3816. msgctxt "@label"
  3817. msgid "Properties"
  3818. msgstr "Propiedades"
  3819. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:285
  3820. msgctxt "@label"
  3821. msgid "Density"
  3822. msgstr "Densidad"
  3823. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:318
  3824. msgctxt "@label"
  3825. msgid "Diameter"
  3826. msgstr "Diámetro"
  3827. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:368
  3828. msgctxt "@label"
  3829. msgid "Filament Cost"
  3830. msgstr "Coste del filamento"
  3831. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:400
  3832. msgctxt "@label"
  3833. msgid "Filament weight"
  3834. msgstr "Peso del filamento"
  3835. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:432
  3836. msgctxt "@label"
  3837. msgid "Filament length"
  3838. msgstr "Longitud del filamento"
  3839. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:450
  3840. msgctxt "@label"
  3841. msgid "Cost per Meter"
  3842. msgstr "Coste por metro"
  3843. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:464
  3844. msgctxt "@label"
  3845. msgid "This material is linked to %1 and shares some of its properties."
  3846. msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
  3847. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:471
  3848. msgctxt "@label"
  3849. msgid "Unlink Material"
  3850. msgstr "Desvincular material"
  3851. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:484
  3852. msgctxt "@label"
  3853. msgid "Description"
  3854. msgstr "Descripción"
  3855. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:502
  3856. msgctxt "@label"
  3857. msgid "Adhesion Information"
  3858. msgstr "Información sobre adherencia"
  3859. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:637
  3860. msgctxt "@title"
  3861. msgid "Information"
  3862. msgstr "Información"
  3863. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:17
  3864. msgctxt "@title:window"
  3865. msgid "Sync materials with printers"
  3866. msgstr "Sincronizar materiales con impresoras"
  3867. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:48
  3868. msgctxt "@title:header"
  3869. msgid "Sync materials with printers"
  3870. msgstr "Sincronizar materiales con impresoras"
  3871. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:54
  3872. msgctxt "@text"
  3873. msgid ""
  3874. "Following a few simple steps, you will be able to synchronize all your "
  3875. "material profiles with your printers."
  3876. msgstr "Con unos sencillos pasos puede sincronizar todos sus perfiles de material con sus impresoras."
  3877. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:76
  3878. msgctxt "@button"
  3879. msgid "Why do I need to sync material profiles?"
  3880. msgstr "¿Por qué tengo que sincronizar los perfiles de materiales?"
  3881. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:85
  3882. msgctxt "@button"
  3883. msgid "Start"
  3884. msgstr "Iniciar"
  3885. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:127
  3886. msgctxt "@title:header"
  3887. msgid "Sign in"
  3888. msgstr "Iniciar sesión"
  3889. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:133
  3890. msgctxt "@text"
  3891. msgid ""
  3892. "To automatically sync the material profiles with all your printers connected "
  3893. "to Digital Factory you need to be signed in in Cura."
  3894. msgstr "Para sincronizar automáticamente los perfiles de material con todas sus impresoras conectadas a Digital Factory debe iniciar sesión en Cura."
  3895. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:157
  3896. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:446
  3897. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:587
  3898. msgctxt "@button"
  3899. msgid "Sync materials with USB"
  3900. msgstr "Sincronización de materiales con USB"
  3901. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:190
  3902. msgctxt "@title:header"
  3903. msgid "The following printers will receive the new material profiles:"
  3904. msgstr "Las siguientes impresoras recibirán los nuevos perfiles de material:"
  3905. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:197
  3906. msgctxt "@title:header"
  3907. msgid "Something went wrong when sending the materials to the printers."
  3908. msgstr "Hubo un error al enviar los materiales a las impresoras."
  3909. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:204
  3910. msgctxt "@title:header"
  3911. msgid "Material profiles successfully synced with the following printers:"
  3912. msgstr "Los perfiles de material se han sincronizado correctamente con las siguientes impresoras:"
  3913. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:242
  3914. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:429
  3915. msgctxt "@button"
  3916. msgid "Troubleshooting"
  3917. msgstr "Solución de problemas"
  3918. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:406
  3919. msgctxt "@text Asking the user whether printers are missing in a list."
  3920. msgid "Printers missing?"
  3921. msgstr "¿Faltan impresoras?"
  3922. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:408
  3923. msgctxt "@text"
  3924. msgid ""
  3925. "Make sure all your printers are turned ON and connected to Digital Factory."
  3926. msgstr "Asegúrese de que todas las impresoras estén encendidas y conectadas a Digital Factory."
  3927. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:417
  3928. msgctxt "@button"
  3929. msgid "Refresh List"
  3930. msgstr "Actualizar la lista"
  3931. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:457
  3932. msgctxt "@button"
  3933. msgid "Try again"
  3934. msgstr "Inténtelo de nuevo"
  3935. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:461
  3936. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  3937. msgctxt "@button"
  3938. msgid "Done"
  3939. msgstr "Realizado"
  3940. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:463
  3941. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:607
  3942. msgctxt "@button"
  3943. msgid "Sync"
  3944. msgstr "Sincronizar"
  3945. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:519
  3946. msgctxt "@button"
  3947. msgid "Syncing"
  3948. msgstr "Sincronizando"
  3949. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:537
  3950. msgctxt "@title:header"
  3951. msgid "No printers found"
  3952. msgstr "No se ha encontrado ninguna impresora"
  3953. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:558
  3954. msgctxt "@text"
  3955. msgid ""
  3956. "It seems like you don't have any compatible printers connected to Digital "
  3957. "Factory. Make sure your printer is connected and it's running the latest "
  3958. "firmware."
  3959. msgstr "Parece que no tiene ninguna impresora compatible conectada a Digital Factory. Asegúrese de que su impresora esté conectada y ejecutando el firmware más"
  3960. " reciente."
  3961. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:570
  3962. msgctxt "@button"
  3963. msgid "Learn how to connect your printer to Digital Factory"
  3964. msgstr "Aprenda a conectar su impresora a Digital Factory"
  3965. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:598
  3966. msgctxt "@button"
  3967. msgid "Refresh"
  3968. msgstr "Actualizar"
  3969. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:627
  3970. msgctxt "@title:header"
  3971. msgid "Sync material profiles via USB"
  3972. msgstr "Sincronización de perfiles de material a través USB"
  3973. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:633
  3974. msgctxt ""
  3975. "@text In the UI this is followed by a list of steps the user needs to take."
  3976. msgid ""
  3977. "Follow the following steps to load the new material profiles to your printer."
  3978. msgstr "Siga estos pasos para cargar los nuevos perfiles de material en la impresora."
  3979. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:665
  3980. msgctxt "@text"
  3981. msgid "Click the export material archive button."
  3982. msgstr "Haga clic en el botón para exportar el archivo de material."
  3983. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:666
  3984. msgctxt "@text"
  3985. msgid "Save the .umm file on a USB stick."
  3986. msgstr "Guarde el archivo .umm en una memoria USB."
  3987. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:667
  3988. msgctxt "@text"
  3989. msgid ""
  3990. "Insert the USB stick into your printer and launch the procedure to load new "
  3991. "material profiles."
  3992. msgstr "Inserte la memoria USB en la impresora e inicie el procedimiento para cargar nuevos perfiles de material."
  3993. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:675
  3994. msgctxt "@button"
  3995. msgid "How to load new material profiles to my printer"
  3996. msgstr "Cómo cargar nuevos perfiles de material en mi impresora"
  3997. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  3998. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3999. msgctxt "@button"
  4000. msgid "Back"
  4001. msgstr "Atrás"
  4002. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:698
  4003. msgctxt "@button"
  4004. msgid "Export material archive"
  4005. msgstr "Exportar archivo de material"
  4006. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:733
  4007. msgctxt "@title:window"
  4008. msgid "Export All Materials"
  4009. msgstr "Exportar todos los materiales"
  4010. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4011. msgctxt "@label"
  4012. msgid "Materials compatible with active printer:"
  4013. msgstr "Materiales compatibles con la impresora activa:"
  4014. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4015. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:93
  4016. msgctxt "@action:button"
  4017. msgid "Create new"
  4018. msgstr "Crear nuevo"
  4019. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4020. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:87
  4021. msgctxt "@action:button"
  4022. msgid "Import"
  4023. msgstr "Importar"
  4024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4025. msgctxt "@action:button"
  4026. msgid "Sync with Printers"
  4027. msgstr "Sincronizar con las impresoras"
  4028. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4029. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:310
  4030. msgctxt "@action:button"
  4031. msgid "Duplicate"
  4032. msgstr "Duplicado"
  4033. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4034. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:341
  4035. msgctxt "@action:button"
  4036. msgid "Export"
  4037. msgstr "Exportar"
  4038. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4039. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:386
  4040. msgctxt "@title:window"
  4041. msgid "Confirm Remove"
  4042. msgstr "Confirmar eliminación"
  4043. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4044. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:387
  4045. msgctxt "@label (%1 is object name)"
  4046. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4047. msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
  4048. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4049. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4050. msgctxt "@title:window"
  4051. msgid "Import Material"
  4052. msgstr "Importar material"
  4053. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4054. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4055. msgid "Successfully imported material <filename>%1</filename>"
  4056. msgstr "El material se ha importado correctamente en <filename>%1</filename>"
  4057. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4058. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4059. msgid ""
  4060. "Could not import material <filename>%1</filename>: <message>%2</message>"
  4061. msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>"
  4062. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4063. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:265
  4064. msgctxt "@title:window"
  4065. msgid "Export Material"
  4066. msgstr "Exportar material"
  4067. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:270
  4068. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4069. msgid ""
  4070. "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4071. msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>"
  4072. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:273
  4073. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4074. msgid "Successfully exported material to <filename>%1</filename>"
  4075. msgstr "El material se ha exportado correctamente a <filename>%1</filename>"
  4076. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:58
  4077. msgctxt "@label"
  4078. msgid "Profiles compatible with active printer:"
  4079. msgstr "Perfiles compatibles con la impresora activa:"
  4080. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:97
  4081. msgctxt "@action:tooltip"
  4082. msgid "Create new profile from current settings/overrides"
  4083. msgstr "Crear nuevo perfil a partir de la configuración o anulaciones actuales"
  4084. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:124
  4085. msgctxt "@action:label"
  4086. msgid "Some settings from current profile were overwritten."
  4087. msgstr "Algunas configuraciones del perfil actual se han sobrescrito."
  4088. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:139
  4089. msgctxt "@action:button"
  4090. msgid "Update profile."
  4091. msgstr "Actualizar perfil."
  4092. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:142
  4093. msgctxt "@action:tooltip"
  4094. msgid "Update profile with current settings/overrides"
  4095. msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
  4096. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:157
  4097. msgctxt "@action:label"
  4098. msgid ""
  4099. "This profile uses the defaults specified by the printer, so it has no "
  4100. "settings/overrides in the list below."
  4101. 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"
  4102. " a continuación."
  4103. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:164
  4104. msgctxt "@action:label"
  4105. msgid "Your current settings match the selected profile."
  4106. msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
  4107. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:174
  4108. msgctxt "@title:tab"
  4109. msgid "Global Settings"
  4110. msgstr "Ajustes globales"
  4111. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  4112. msgctxt "@title:window"
  4113. msgid "Create Profile"
  4114. msgstr "Crear perfil"
  4115. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:279
  4116. msgctxt "@info"
  4117. msgid "Please provide a name for this profile."
  4118. msgstr "Introduzca un nombre para este perfil."
  4119. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:351
  4120. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:362
  4121. msgctxt "@title:window"
  4122. msgid "Export Profile"
  4123. msgstr "Exportar perfil"
  4124. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:376
  4125. msgctxt "@title:window"
  4126. msgid "Duplicate Profile"
  4127. msgstr "Duplicar perfil"
  4128. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:403
  4129. msgctxt "@title:window"
  4130. msgid "Rename Profile"
  4131. msgstr "Cambiar nombre de perfil"
  4132. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:416
  4133. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/ProfilesPage.qml:423
  4134. msgctxt "@title:window"
  4135. msgid "Import Profile"
  4136. msgstr "Importar perfil"
  4137. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:169
  4138. msgctxt "@label"
  4139. msgid "Interface"
  4140. msgstr "Interfaz"
  4141. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:213
  4142. msgctxt "@heading"
  4143. msgid "-- incomplete --"
  4144. msgstr "-- incompleto --"
  4145. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:258
  4146. msgctxt "@label"
  4147. msgid "Currency:"
  4148. msgstr "Moneda:"
  4149. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:273
  4150. msgctxt ""
  4151. "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4152. msgid "Theme*:"
  4153. msgstr "Tema*:"
  4154. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:319
  4155. msgctxt "@info:tooltip"
  4156. msgid "Slice automatically when changing settings."
  4157. msgstr "Segmentar automáticamente al cambiar los ajustes."
  4158. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:327
  4159. msgctxt "@option:check"
  4160. msgid "Slice automatically"
  4161. msgstr "Segmentar automáticamente"
  4162. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:336
  4163. msgctxt "@label"
  4164. msgid ""
  4165. "*You will need to restart the application for these changes to have effect."
  4166. msgstr "*Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
  4167. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:351
  4168. msgctxt "@label"
  4169. msgid "Viewport behavior"
  4170. msgstr "Comportamiento de la ventanilla"
  4171. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:359
  4172. msgctxt "@info:tooltip"
  4173. msgid ""
  4174. "Highlight unsupported areas of the model in red. Without support these areas "
  4175. "will not print properly."
  4176. msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
  4177. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:368
  4178. msgctxt "@option:check"
  4179. msgid "Display overhang"
  4180. msgstr "Mostrar voladizos"
  4181. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:378
  4182. msgctxt "@info:tooltip"
  4183. msgid ""
  4184. "Highlight missing or extraneous surfaces of the model using warning signs. "
  4185. "The toolpaths will often be missing parts of the intended geometry."
  4186. msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes"
  4187. " de la geometría prevista."
  4188. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:387
  4189. msgctxt "@option:check"
  4190. msgid "Display model errors"
  4191. msgstr "Mostrar errores de modelo"
  4192. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:395
  4193. msgctxt "@info:tooltip"
  4194. msgid ""
  4195. "Moves the camera so the model is in the center of the view when a model is "
  4196. "selected"
  4197. msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo"
  4198. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:400
  4199. msgctxt "@action:button"
  4200. msgid "Center camera when item is selected"
  4201. msgstr "Centrar cámara cuando se selecciona elemento"
  4202. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:410
  4203. msgctxt "@info:tooltip"
  4204. msgid "Should the default zoom behavior of cura be inverted?"
  4205. msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
  4206. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:415
  4207. msgctxt "@action:button"
  4208. msgid "Invert the direction of camera zoom."
  4209. msgstr "Invertir la dirección del zoom de la cámara."
  4210. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  4211. msgctxt "@info:tooltip"
  4212. msgid "Should zooming move in the direction of the mouse?"
  4213. msgstr "¿Debería moverse el zoom en la dirección del ratón?"
  4214. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:431
  4215. msgctxt "@info:tooltip"
  4216. msgid ""
  4217. "Zooming towards the mouse is not supported in the orthographic perspective."
  4218. msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica."
  4219. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:436
  4220. msgctxt "@action:button"
  4221. msgid "Zoom toward mouse direction"
  4222. msgstr "Hacer zoom en la dirección del ratón"
  4223. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:462
  4224. msgctxt "@info:tooltip"
  4225. msgid ""
  4226. "Should models on the platform be moved so that they no longer intersect?"
  4227. msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
  4228. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:467
  4229. msgctxt "@option:check"
  4230. msgid "Ensure models are kept apart"
  4231. msgstr "Asegúrese de que los modelos están separados"
  4232. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:476
  4233. msgctxt "@info:tooltip"
  4234. msgid "Should models on the platform be moved down to touch the build plate?"
  4235. msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
  4236. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:481
  4237. msgctxt "@option:check"
  4238. msgid "Automatically drop models to the build plate"
  4239. msgstr "Arrastrar modelos a la placa de impresión de forma automática"
  4240. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:493
  4241. msgctxt "@info:tooltip"
  4242. msgid "Show caution message in g-code reader."
  4243. msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
  4244. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:502
  4245. msgctxt "@option:check"
  4246. msgid "Caution message in g-code reader"
  4247. msgstr "Mensaje de advertencia en el lector de GCode"
  4248. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:510
  4249. msgctxt "@info:tooltip"
  4250. msgid "Should layer be forced into compatibility mode?"
  4251. msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
  4252. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:515
  4253. msgctxt "@option:check"
  4254. msgid "Force layer view compatibility mode (restart required)"
  4255. msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
  4256. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:525
  4257. msgctxt "@info:tooltip"
  4258. msgid "Should Cura open at the location it was closed?"
  4259. msgstr "¿Debería abrirse Cura en el lugar donde se cerró?"
  4260. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:530
  4261. msgctxt "@option:check"
  4262. msgid "Restore window position on start"
  4263. msgstr "Restaurar la posición de la ventana al inicio"
  4264. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:540
  4265. msgctxt "@info:tooltip"
  4266. msgid "What type of camera rendering should be used?"
  4267. msgstr "¿Qué tipo de renderizado de cámara debería usarse?"
  4268. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:547
  4269. msgctxt "@window:text"
  4270. msgid "Camera rendering:"
  4271. msgstr "Renderizado de cámara:"
  4272. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:554
  4273. msgid "Perspective"
  4274. msgstr "Perspectiva"
  4275. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:555
  4276. msgid "Orthographic"
  4277. msgstr "Ortográfica"
  4278. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:595
  4279. msgctxt "@label"
  4280. msgid "Opening and saving files"
  4281. msgstr "Abrir y guardar archivos"
  4282. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:602
  4283. msgctxt "@info:tooltip"
  4284. msgid ""
  4285. "Should opening files from the desktop or external applications open in the "
  4286. "same instance of Cura?"
  4287. msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?"
  4288. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:607
  4289. msgctxt "@option:check"
  4290. msgid "Use a single instance of Cura"
  4291. msgstr "Utilizar una sola instancia de Cura"
  4292. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:618
  4293. msgctxt "@info:tooltip"
  4294. msgid ""
  4295. "Should the build plate be cleared before loading a new model in the single "
  4296. "instance of Cura?"
  4297. msgstr "¿Se debe limpiar la placa de impresión antes de cargar un nuevo modelo en una única instancia de Cura?"
  4298. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:624
  4299. msgctxt "@option:check"
  4300. msgid "Clear buildplate before loading model into the single instance"
  4301. msgstr "Limpiar la placa de impresión antes de cargar el modelo en la instancia única"
  4302. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:634
  4303. msgctxt "@info:tooltip"
  4304. msgid "Should models be scaled to the build volume if they are too large?"
  4305. msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
  4306. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:639
  4307. msgctxt "@option:check"
  4308. msgid "Scale large models"
  4309. msgstr "Escalar modelos de gran tamaño"
  4310. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:649
  4311. msgctxt "@info:tooltip"
  4312. msgid ""
  4313. "An model may appear extremely small if its unit is for example in meters "
  4314. "rather than millimeters. Should these models be scaled up?"
  4315. msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
  4316. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:654
  4317. msgctxt "@option:check"
  4318. msgid "Scale extremely small models"
  4319. msgstr "Escalar modelos demasiado pequeños"
  4320. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:664
  4321. msgctxt "@info:tooltip"
  4322. msgid "Should models be selected after they are loaded?"
  4323. msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
  4324. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:669
  4325. msgctxt "@option:check"
  4326. msgid "Select models when loaded"
  4327. msgstr "Seleccionar modelos al abrirlos"
  4328. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:679
  4329. msgctxt "@info:tooltip"
  4330. msgid ""
  4331. "Should a prefix based on the printer name be added to the print job name "
  4332. "automatically?"
  4333. msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
  4334. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:684
  4335. msgctxt "@option:check"
  4336. msgid "Add machine prefix to job name"
  4337. msgstr "Agregar prefijo de la máquina al nombre del trabajo"
  4338. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:694
  4339. msgctxt "@info:tooltip"
  4340. msgid "Should a summary be shown when saving a project file?"
  4341. msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
  4342. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:698
  4343. msgctxt "@option:check"
  4344. msgid "Show summary dialog when saving project"
  4345. msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
  4346. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:708
  4347. msgctxt "@info:tooltip"
  4348. msgid "Default behavior when opening a project file"
  4349. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
  4350. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:716
  4351. msgctxt "@window:text"
  4352. msgid "Default behavior when opening a project file: "
  4353. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
  4354. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:731
  4355. msgctxt "@option:openProject"
  4356. msgid "Always ask me this"
  4357. msgstr "Preguntar siempre"
  4358. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:732
  4359. msgctxt "@option:openProject"
  4360. msgid "Always open as a project"
  4361. msgstr "Abrir siempre como un proyecto"
  4362. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:733
  4363. msgctxt "@option:openProject"
  4364. msgid "Always import models"
  4365. msgstr "Importar modelos siempre"
  4366. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:770
  4367. msgctxt "@info:tooltip"
  4368. msgid ""
  4369. "When you have made changes to a profile and switched to a different one, a "
  4370. "dialog will be shown asking whether you want to keep your modifications or "
  4371. "not, or you can choose a default behaviour and never show that dialog again."
  4372. 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"
  4373. " los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer."
  4374. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:784
  4375. msgctxt "@window:text"
  4376. msgid ""
  4377. "Default behavior for changed setting values when switching to a different "
  4378. "profile: "
  4379. msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: "
  4380. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:799
  4381. msgctxt "@option:discardOrKeep"
  4382. msgid "Always discard changed settings"
  4383. msgstr "Descartar siempre los ajustes modificados"
  4384. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:800
  4385. msgctxt "@option:discardOrKeep"
  4386. msgid "Always transfer changed settings to new profile"
  4387. msgstr "Transferir siempre los ajustes modificados al nuevo perfil"
  4388. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:834
  4389. msgctxt "@label"
  4390. msgid "Privacy"
  4391. msgstr "Privacidad"
  4392. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:840
  4393. msgctxt "@info:tooltip"
  4394. msgid ""
  4395. "Should anonymous data about your print be sent to Ultimaker? Note, no "
  4396. "models, IP addresses or other personally identifiable information is sent or "
  4397. "stored."
  4398. 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"
  4399. " de identificación personal."
  4400. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:845
  4401. msgctxt "@option:check"
  4402. msgid "Send (anonymous) print information"
  4403. msgstr "Enviar información (anónima) de impresión"
  4404. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:875
  4405. msgctxt "@label"
  4406. msgid "Updates"
  4407. msgstr "Actualizaciones"
  4408. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:882
  4409. msgctxt "@info:tooltip"
  4410. msgid "Should Cura check for updates when the program is started?"
  4411. msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
  4412. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:887
  4413. msgctxt "@option:check"
  4414. msgid "Check for updates on start"
  4415. msgstr "Buscar actualizaciones al iniciar"
  4416. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:903
  4417. msgctxt "@info:tooltip"
  4418. msgid "When checking for updates, only check for stable releases."
  4419. msgstr "Cuando busque actualizaciones, compruebe solo si hay versiones estables."
  4420. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:909
  4421. msgctxt "@option:radio"
  4422. msgid "Stable releases only"
  4423. msgstr "Solo versiones estables"
  4424. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:919
  4425. msgctxt "@info:tooltip"
  4426. msgid "When checking for updates, check for both stable and for beta releases."
  4427. msgstr "Cuando busque actualizaciones, compruebe si hay versiones estables y versiones beta."
  4428. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:925
  4429. msgctxt "@option:radio"
  4430. msgid "Stable and Beta releases"
  4431. msgstr "Versiones estables y beta"
  4432. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:935
  4433. msgctxt "@info:tooltip"
  4434. msgid ""
  4435. "Should an automatic check for new plugins be done every time Cura is "
  4436. "started? It is highly recommended that you do not disable this!"
  4437. msgstr "¿Debería Cura buscar automáticamente nuevos complementos cada vez que se inicia? Le recomendamos encarecidamente que no desactive esta opción!"
  4438. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Preferences/GeneralPage.qml:940
  4439. msgctxt "@option:check"
  4440. msgid "Get notifications for plugin updates"
  4441. msgstr "Recibir notificaciones de actualizaciones de complementos"
  4442. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4443. msgctxt "@label"
  4444. msgid "Add printer by IP address"
  4445. msgstr "Agregar impresora por dirección IP"
  4446. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4447. msgctxt "@text"
  4448. msgid "Enter your printer's IP address."
  4449. msgstr "Introduzca la dirección IP de su impresora."
  4450. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4451. msgctxt "@button"
  4452. msgid "Add"
  4453. msgstr "Agregar"
  4454. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4455. msgctxt "@label"
  4456. msgid "Could not connect to device."
  4457. msgstr "No se ha podido conectar al dispositivo."
  4458. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4459. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4460. msgctxt "@label"
  4461. msgid "Can't connect to your Ultimaker printer?"
  4462. msgstr "¿No puede conectarse a la impresora Ultimaker?"
  4463. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4464. msgctxt "@label"
  4465. msgid "The printer at this address has not responded yet."
  4466. msgstr "La impresora todavía no ha respondido en esta dirección."
  4467. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4468. msgctxt "@label"
  4469. msgid ""
  4470. "This printer cannot be added because it's an unknown printer or it's not the "
  4471. "host of a group."
  4472. msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo."
  4473. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4474. msgctxt "@button"
  4475. msgid "Connect"
  4476. msgstr "Conectar"
  4477. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  4478. msgctxt "@label"
  4479. msgid "Release Notes"
  4480. msgstr "Notas de la versión"
  4481. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4482. msgctxt "@label"
  4483. msgid "User Agreement"
  4484. msgstr "Acuerdo de usuario"
  4485. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:53
  4486. msgctxt "@button"
  4487. msgid "Agree"
  4488. msgstr "Estoy de acuerdo"
  4489. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:67
  4490. msgctxt "@button"
  4491. msgid "Decline and close"
  4492. msgstr "Rechazar y cerrar"
  4493. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:29
  4494. msgctxt "@label"
  4495. msgid "What's New"
  4496. msgstr "Novedades"
  4497. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:184
  4498. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  4499. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  4500. msgctxt "@button"
  4501. msgid "Next"
  4502. msgstr "Siguiente"
  4503. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4504. msgctxt "@label"
  4505. msgid "Add a Cloud printer"
  4506. msgstr "Añadir una impresora a la nube"
  4507. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4508. msgctxt "@label"
  4509. msgid "Waiting for Cloud response"
  4510. msgstr "Esperando la respuesta de la nube"
  4511. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4512. msgctxt "@label"
  4513. msgid "No printers found in your account?"
  4514. msgstr "¿No se han encontrado impresoras en su cuenta?"
  4515. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4516. msgctxt "@label"
  4517. msgid "The following printers in your account have been added in Cura:"
  4518. msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:"
  4519. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:194
  4520. msgctxt "@button"
  4521. msgid "Add printer manually"
  4522. msgstr "Añadir impresora manualmente"
  4523. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  4524. msgctxt "@text"
  4525. msgid "Add material settings and plugins from the Marketplace"
  4526. msgstr "Añada ajustes de material y complementos desde Marketplace"
  4527. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  4528. msgctxt "@text"
  4529. msgid "Backup and sync your material settings and plugins"
  4530. msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales"
  4531. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  4532. msgctxt "@text"
  4533. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  4534. msgstr "Comparta ideas y obtenga ayuda de más de 48 000 usuarios de la comunidad Ultimaker"
  4535. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:202
  4536. msgctxt "@button"
  4537. msgid "Skip"
  4538. msgstr "Omitir"
  4539. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/CloudContent.qml:214
  4540. msgctxt "@text"
  4541. msgid "Create a free Ultimaker Account"
  4542. msgstr "Cree una cuenta gratuita de Ultimaker"
  4543. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  4544. msgctxt "@label"
  4545. msgid "Welcome to Ultimaker Cura"
  4546. msgstr "Le damos la bienvenida a Ultimaker Cura"
  4547. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  4548. msgctxt "@text"
  4549. msgid ""
  4550. "Please follow these steps to set up Ultimaker Cura. This will only take a "
  4551. "few moments."
  4552. msgstr "Siga estos pasos para configurar\nUltimaker Cura. Solo le llevará unos minutos."
  4553. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  4554. msgctxt "@button"
  4555. msgid "Get started"
  4556. msgstr "Empezar"
  4557. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4558. msgctxt "@label"
  4559. msgid "Empty"
  4560. msgstr "Vacío"
  4561. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:206
  4562. msgctxt "@label"
  4563. msgid "Manufacturer"
  4564. msgstr "Fabricante"
  4565. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:217
  4566. msgctxt "@label"
  4567. msgid "Profile author"
  4568. msgstr "Autor del perfil"
  4569. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:229
  4570. msgctxt "@label"
  4571. msgid "Printer name"
  4572. msgstr "Nombre de la impresora"
  4573. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:235
  4574. msgctxt "@text"
  4575. msgid "Please name your printer"
  4576. msgstr "Asigne un nombre a su impresora"
  4577. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4578. msgctxt "@label"
  4579. msgid "Add a printer"
  4580. msgstr "Agregar una impresora"
  4581. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4582. msgctxt "@label"
  4583. msgid "Add a networked printer"
  4584. msgstr "Agregar una impresora en red"
  4585. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:88
  4586. msgctxt "@label"
  4587. msgid "Add a non-networked printer"
  4588. msgstr "Agregar una impresora fuera de red"
  4589. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4590. msgctxt "@label"
  4591. msgid "There is no printer found over your network."
  4592. msgstr "No se ha encontrado ninguna impresora en su red."
  4593. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  4594. msgctxt "@label"
  4595. msgid "Refresh"
  4596. msgstr "Actualizar"
  4597. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  4598. msgctxt "@label"
  4599. msgid "Add printer by IP"
  4600. msgstr "Agregar impresora por IP"
  4601. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:184
  4602. msgctxt "@label"
  4603. msgid "Add cloud printer"
  4604. msgstr "Añadir impresora a la nube"
  4605. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:221
  4606. msgctxt "@label"
  4607. msgid "Troubleshooting"
  4608. msgstr "Solución de problemas"
  4609. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4610. msgctxt "@label"
  4611. msgid "Help us to improve Ultimaker Cura"
  4612. msgstr "Ayúdenos a mejorar Ultimaker Cura"
  4613. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4614. msgctxt "@text"
  4615. msgid ""
  4616. "Ultimaker Cura collects anonymous data to improve print quality and user "
  4617. "experience, including:"
  4618. msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:"
  4619. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4620. msgctxt "@text"
  4621. msgid "Machine types"
  4622. msgstr "Tipos de máquina"
  4623. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4624. msgctxt "@text"
  4625. msgid "Material usage"
  4626. msgstr "Uso de material"
  4627. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4628. msgctxt "@text"
  4629. msgid "Number of slices"
  4630. msgstr "Número de segmentos"
  4631. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4632. msgctxt "@text"
  4633. msgid "Print settings"
  4634. msgstr "Ajustes de impresión"
  4635. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4636. msgctxt "@text"
  4637. msgid ""
  4638. "Data collected by Ultimaker Cura will not contain any personal information."
  4639. msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal."
  4640. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4641. msgctxt "@text"
  4642. msgid "More information"
  4643. msgstr "Más información"
  4644. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectSelector.qml:59
  4645. msgctxt "@label"
  4646. msgid "Object list"
  4647. msgstr "Lista de objetos"
  4648. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:109
  4649. msgctxt "@label"
  4650. msgid "Is printed as support."
  4651. msgstr "Se imprime como soporte."
  4652. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:112
  4653. msgctxt "@label"
  4654. msgid "Other models overlapping with this model are modified."
  4655. msgstr "Se han modificado otros modelos que se superponen con este modelo."
  4656. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:115
  4657. msgctxt "@label"
  4658. msgid "Infill overlapping with this model is modified."
  4659. msgstr "Se ha modificado la superposición del relleno con este modelo."
  4660. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:118
  4661. msgctxt "@label"
  4662. msgid "Overlaps with this model are not supported."
  4663. msgstr "No se admiten superposiciones con este modelo."
  4664. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ObjectItemButton.qml:125
  4665. msgctxt "@label %1 is the number of settings it overrides."
  4666. msgid "Overrides %1 setting."
  4667. msgid_plural "Overrides %1 settings."
  4668. msgstr[0] "%1 sobrescrito."
  4669. msgstr[1] "%1 sobrescritos."
  4670. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4671. msgctxt "@label"
  4672. msgid "Connected printers"
  4673. msgstr "Impresoras conectadas"
  4674. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:24
  4675. msgctxt "@label"
  4676. msgid "Preset printers"
  4677. msgstr "Impresoras preconfiguradas"
  4678. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4679. msgctxt "@status"
  4680. msgid ""
  4681. "The cloud printer is offline. Please check if the printer is turned on and "
  4682. "connected to the internet."
  4683. msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet."
  4684. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4685. msgctxt "@status"
  4686. msgid ""
  4687. "This printer is not linked to your account. Please visit the Ultimaker "
  4688. "Digital Factory to establish a connection."
  4689. msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión."
  4690. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4691. msgctxt "@status"
  4692. msgid ""
  4693. "The cloud connection is currently unavailable. Please sign in to connect to "
  4694. "the cloud printer."
  4695. msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube."
  4696. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4697. msgctxt "@status"
  4698. msgid ""
  4699. "The cloud connection is currently unavailable. Please check your internet "
  4700. "connection."
  4701. msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet."
  4702. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:236
  4703. msgctxt "@button"
  4704. msgid "Add printer"
  4705. msgstr "Agregar impresora"
  4706. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrinterSelector/MachineSelector.qml:253
  4707. msgctxt "@button"
  4708. msgid "Manage printers"
  4709. msgstr "Administrar impresoras"
  4710. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/SearchBar.qml:17
  4711. msgctxt "@placeholder"
  4712. msgid "Search"
  4713. msgstr "Buscar"
  4714. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/JobSpecs.qml:93
  4715. msgctxt "@text Print job name"
  4716. msgid "Untitled"
  4717. msgstr "Sin título"
  4718. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:115
  4719. msgctxt "@label:MonitorStatus"
  4720. msgid "Not connected to a printer"
  4721. msgstr "No está conectado a ninguna impresora"
  4722. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:119
  4723. msgctxt "@label:MonitorStatus"
  4724. msgid "Printer does not accept commands"
  4725. msgstr "La impresora no acepta comandos"
  4726. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:129
  4727. msgctxt "@label:MonitorStatus"
  4728. msgid "In maintenance. Please check the printer"
  4729. msgstr "En mantenimiento. Compruebe la impresora"
  4730. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:140
  4731. msgctxt "@label:MonitorStatus"
  4732. msgid "Lost connection with the printer"
  4733. msgstr "Se ha perdido la conexión con la impresora"
  4734. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:142
  4735. msgctxt "@label:MonitorStatus"
  4736. msgid "Printing..."
  4737. msgstr "Imprimiendo..."
  4738. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:145
  4739. msgctxt "@label:MonitorStatus"
  4740. msgid "Paused"
  4741. msgstr "En pausa"
  4742. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:148
  4743. msgctxt "@label:MonitorStatus"
  4744. msgid "Preparing..."
  4745. msgstr "Preparando..."
  4746. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:150
  4747. msgctxt "@label:MonitorStatus"
  4748. msgid "Please remove the print"
  4749. msgstr "Retire la impresión"
  4750. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:318
  4751. msgctxt "@label"
  4752. msgid "Abort Print"
  4753. msgstr "Cancelar impresión"
  4754. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/MonitorButton.qml:327
  4755. msgctxt "@label"
  4756. msgid "Are you sure you want to abort the print?"
  4757. msgstr "¿Está seguro de que desea cancelar la impresión?"
  4758. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingCategory.qml:115
  4759. msgctxt "@label"
  4760. msgid ""
  4761. "Some hidden settings use values different from their normal calculated "
  4762. "value.\n"
  4763. "\n"
  4764. "Click to make these settings visible."
  4765. msgstr "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n\nHaga clic para mostrar estos ajustes."
  4766. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:47
  4767. msgctxt "@label:textbox"
  4768. msgid "Search settings"
  4769. msgstr "Buscar ajustes"
  4770. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:428
  4771. msgctxt "@action:menu"
  4772. msgid "Copy value to all extruders"
  4773. msgstr "Copiar valor en todos los extrusores"
  4774. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:437
  4775. msgctxt "@action:menu"
  4776. msgid "Copy all changed values to all extruders"
  4777. msgstr "Copiar todos los valores cambiados en todos los extrusores"
  4778. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:473
  4779. msgctxt "@action:menu"
  4780. msgid "Hide this setting"
  4781. msgstr "Ocultar este ajuste"
  4782. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:486
  4783. msgctxt "@action:menu"
  4784. msgid "Don't show this setting"
  4785. msgstr "No mostrar este ajuste"
  4786. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:490
  4787. msgctxt "@action:menu"
  4788. msgid "Keep this setting visible"
  4789. msgstr "Mostrar este ajuste"
  4790. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingView.qml:509
  4791. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:467
  4792. msgctxt "@action:menu"
  4793. msgid "Configure setting visibility..."
  4794. msgstr "Configurar visibilidad de los ajustes..."
  4795. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:78
  4796. msgctxt "@label"
  4797. msgid ""
  4798. "This setting is not used because all the settings that it influences are "
  4799. "overridden."
  4800. msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos."
  4801. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:83
  4802. msgctxt "@label Header for list of settings."
  4803. msgid "Affects"
  4804. msgstr "Afecta a"
  4805. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:88
  4806. msgctxt "@label Header for list of settings."
  4807. msgid "Affected By"
  4808. msgstr "Afectado por"
  4809. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:185
  4810. msgctxt "@label"
  4811. msgid ""
  4812. "This setting is always shared between all extruders. Changing it here will "
  4813. "change the value for all extruders."
  4814. msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  4815. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:189
  4816. msgctxt "@label"
  4817. msgid "This setting is resolved from conflicting extruder-specific values:"
  4818. msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:"
  4819. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:229
  4820. msgctxt "@label"
  4821. msgid ""
  4822. "This setting has a value that is different from the profile.\n"
  4823. "\n"
  4824. "Click to restore the value of the profile."
  4825. msgstr "Este ajuste tiene un valor distinto del perfil.\n\nHaga clic para restaurar el valor del perfil."
  4826. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Settings/SettingItem.qml:329
  4827. msgctxt "@label"
  4828. msgid ""
  4829. "This setting is normally calculated, but it currently has an absolute value "
  4830. "set.\n"
  4831. "\n"
  4832. "Click to restore the calculated value."
  4833. msgstr "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n\nHaga clic para restaurar el valor calculado."
  4834. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ColorDialog.qml:104
  4835. msgctxt "@label"
  4836. msgid "Hex"
  4837. msgstr "Hex"
  4838. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:156
  4839. msgctxt "@label"
  4840. msgid "Active print"
  4841. msgstr "Activar impresión"
  4842. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:164
  4843. msgctxt "@label"
  4844. msgid "Job Name"
  4845. msgstr "Nombre del trabajo"
  4846. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:172
  4847. msgctxt "@label"
  4848. msgid "Printing Time"
  4849. msgstr "Tiempo de impresión"
  4850. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/PrintMonitor.qml:180
  4851. msgctxt "@label"
  4852. msgid "Estimated time left"
  4853. msgstr "Tiempo restante estimado"
  4854. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:81
  4855. msgctxt "@action:inmenu"
  4856. msgid "Show Online Troubleshooting"
  4857. msgstr "Mostrar resolución de problemas online"
  4858. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:88
  4859. msgctxt "@action:inmenu"
  4860. msgid "Toggle Full Screen"
  4861. msgstr "Alternar pantalla completa"
  4862. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:96
  4863. msgctxt "@action:inmenu"
  4864. msgid "Exit Full Screen"
  4865. msgstr "Salir de modo de pantalla completa"
  4866. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:103
  4867. msgctxt "@action:inmenu menubar:edit"
  4868. msgid "&Undo"
  4869. msgstr "Des&hacer"
  4870. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:113
  4871. msgctxt "@action:inmenu menubar:edit"
  4872. msgid "&Redo"
  4873. msgstr "&Rehacer"
  4874. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:131
  4875. msgctxt "@action:inmenu menubar:file"
  4876. msgid "&Quit"
  4877. msgstr "&Salir"
  4878. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:139
  4879. msgctxt "@action:inmenu menubar:view"
  4880. msgid "3D View"
  4881. msgstr "Vista en 3D"
  4882. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:146
  4883. msgctxt "@action:inmenu menubar:view"
  4884. msgid "Front View"
  4885. msgstr "Vista frontal"
  4886. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:153
  4887. msgctxt "@action:inmenu menubar:view"
  4888. msgid "Top View"
  4889. msgstr "Vista superior"
  4890. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:160
  4891. msgctxt "@action:inmenu menubar:view"
  4892. msgid "Bottom View"
  4893. msgstr "Vista inferior"
  4894. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:167
  4895. msgctxt "@action:inmenu menubar:view"
  4896. msgid "Left Side View"
  4897. msgstr "Vista del lado izquierdo"
  4898. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:174
  4899. msgctxt "@action:inmenu menubar:view"
  4900. msgid "Right Side View"
  4901. msgstr "Vista del lado derecho"
  4902. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:188
  4903. msgctxt "@action:inmenu"
  4904. msgid "Configure Cura..."
  4905. msgstr "Configurar Cura..."
  4906. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:195
  4907. msgctxt "@action:inmenu menubar:printer"
  4908. msgid "&Add Printer..."
  4909. msgstr "&Agregar impresora..."
  4910. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:201
  4911. msgctxt "@action:inmenu menubar:printer"
  4912. msgid "Manage Pr&inters..."
  4913. msgstr "Adm&inistrar impresoras ..."
  4914. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:208
  4915. msgctxt "@action:inmenu"
  4916. msgid "Manage Materials..."
  4917. msgstr "Administrar materiales..."
  4918. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:216
  4919. msgctxt ""
  4920. "@action:inmenu Marketplace is a brand name of Ultimaker's, so don't "
  4921. "translate."
  4922. msgid "Add more materials from Marketplace"
  4923. msgstr "Añadir más materiales de Marketplace"
  4924. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:223
  4925. msgctxt "@action:inmenu menubar:profile"
  4926. msgid "&Update profile with current settings/overrides"
  4927. msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales"
  4928. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:231
  4929. msgctxt "@action:inmenu menubar:profile"
  4930. msgid "&Discard current changes"
  4931. msgstr "&Descartar cambios actuales"
  4932. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:243
  4933. msgctxt "@action:inmenu menubar:profile"
  4934. msgid "&Create profile from current settings/overrides..."
  4935. msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..."
  4936. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:249
  4937. msgctxt "@action:inmenu menubar:profile"
  4938. msgid "Manage Profiles..."
  4939. msgstr "Administrar perfiles..."
  4940. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:257
  4941. msgctxt "@action:inmenu menubar:help"
  4942. msgid "Show Online &Documentation"
  4943. msgstr "Mostrar &documentación en línea"
  4944. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:265
  4945. msgctxt "@action:inmenu menubar:help"
  4946. msgid "Report a &Bug"
  4947. msgstr "Informar de un &error"
  4948. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:273
  4949. msgctxt "@action:inmenu menubar:help"
  4950. msgid "What's New"
  4951. msgstr "Novedades"
  4952. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:287
  4953. msgctxt "@action:inmenu menubar:help"
  4954. msgid "About..."
  4955. msgstr "Acerca de..."
  4956. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:294
  4957. msgctxt "@action:inmenu menubar:edit"
  4958. msgid "Delete Selected"
  4959. msgstr "Eliminar selección"
  4960. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:304
  4961. msgctxt "@action:inmenu menubar:edit"
  4962. msgid "Center Selected"
  4963. msgstr "Centrar selección"
  4964. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:313
  4965. msgctxt "@action:inmenu menubar:edit"
  4966. msgid "Multiply Selected"
  4967. msgstr "Multiplicar selección"
  4968. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:322
  4969. msgctxt "@action:inmenu"
  4970. msgid "Delete Model"
  4971. msgstr "Eliminar modelo"
  4972. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:330
  4973. msgctxt "@action:inmenu"
  4974. msgid "Ce&nter Model on Platform"
  4975. msgstr "Ce&ntrar modelo en plataforma"
  4976. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:336
  4977. msgctxt "@action:inmenu menubar:edit"
  4978. msgid "&Group Models"
  4979. msgstr "A&grupar modelos"
  4980. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:356
  4981. msgctxt "@action:inmenu menubar:edit"
  4982. msgid "Ungroup Models"
  4983. msgstr "Desagrupar modelos"
  4984. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:366
  4985. msgctxt "@action:inmenu menubar:edit"
  4986. msgid "&Merge Models"
  4987. msgstr "Co&mbinar modelos"
  4988. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:376
  4989. msgctxt "@action:inmenu"
  4990. msgid "&Multiply Model..."
  4991. msgstr "&Multiplicar modelo..."
  4992. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:383
  4993. msgctxt "@action:inmenu menubar:edit"
  4994. msgid "Select All Models"
  4995. msgstr "Seleccionar todos los modelos"
  4996. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:393
  4997. msgctxt "@action:inmenu menubar:edit"
  4998. msgid "Clear Build Plate"
  4999. msgstr "Borrar placa de impresión"
  5000. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:403
  5001. msgctxt "@action:inmenu menubar:file"
  5002. msgid "Reload All Models"
  5003. msgstr "Recargar todos los modelos"
  5004. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:412
  5005. msgctxt "@action:inmenu menubar:edit"
  5006. msgid "Arrange All Models"
  5007. msgstr "Organizar todos los modelos"
  5008. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:420
  5009. msgctxt "@action:inmenu menubar:edit"
  5010. msgid "Arrange Selection"
  5011. msgstr "Organizar selección"
  5012. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:427
  5013. msgctxt "@action:inmenu menubar:edit"
  5014. msgid "Reset All Model Positions"
  5015. msgstr "Restablecer las posiciones de todos los modelos"
  5016. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:434
  5017. msgctxt "@action:inmenu menubar:edit"
  5018. msgid "Reset All Model Transformations"
  5019. msgstr "Restablecer las transformaciones de todos los modelos"
  5020. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:443
  5021. msgctxt "@action:inmenu menubar:file"
  5022. msgid "&Open File(s)..."
  5023. msgstr "&Abrir archivo(s)..."
  5024. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:453
  5025. msgctxt "@action:inmenu menubar:file"
  5026. msgid "&New Project..."
  5027. msgstr "&Nuevo proyecto..."
  5028. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/Actions.qml:460
  5029. msgctxt "@action:inmenu menubar:help"
  5030. msgid "Show Configuration Folder"
  5031. msgstr "Mostrar carpeta de configuración"
  5032. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:25
  5033. msgctxt "@info:tooltip"
  5034. msgid "3D View"
  5035. msgstr "Vista en 3D"
  5036. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:38
  5037. msgctxt "@info:tooltip"
  5038. msgid "Front View"
  5039. msgstr "Vista frontal"
  5040. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:51
  5041. msgctxt "@info:tooltip"
  5042. msgid "Top View"
  5043. msgstr "Vista superior"
  5044. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:64
  5045. msgctxt "@info:tooltip"
  5046. msgid "Left View"
  5047. msgstr "Vista del lado izquierdo"
  5048. #: /home/remco/dev/code/ulti/trans/Cura/resources/qml/ViewOrientationControls.qml:77
  5049. msgctxt "@info:tooltip"
  5050. msgid "Right View"
  5051. msgstr "Vista del lado derecho"
  5052. #: PrepareStage/plugin.json
  5053. msgctxt "description"
  5054. msgid "Provides a prepare stage in Cura."
  5055. msgstr "Proporciona una fase de preparación en Cura."
  5056. #: PrepareStage/plugin.json
  5057. msgctxt "name"
  5058. msgid "Prepare Stage"
  5059. msgstr "Fase de preparación"
  5060. #: CuraProfileWriter/plugin.json
  5061. msgctxt "description"
  5062. msgid "Provides support for exporting Cura profiles."
  5063. msgstr "Proporciona asistencia para exportar perfiles de Cura."
  5064. #: CuraProfileWriter/plugin.json
  5065. msgctxt "name"
  5066. msgid "Cura Profile Writer"
  5067. msgstr "Escritor de perfiles de Cura"
  5068. #: TrimeshReader/plugin.json
  5069. msgctxt "description"
  5070. msgid "Provides support for reading model files."
  5071. msgstr "Proporciona asistencia para leer archivos 3D."
  5072. #: TrimeshReader/plugin.json
  5073. msgctxt "name"
  5074. msgid "Trimesh Reader"
  5075. msgstr "Lector Trimesh"
  5076. #: FirmwareUpdateChecker/plugin.json
  5077. msgctxt "description"
  5078. msgid "Checks for firmware updates."
  5079. msgstr "Busca actualizaciones de firmware."
  5080. #: FirmwareUpdateChecker/plugin.json
  5081. msgctxt "name"
  5082. msgid "Firmware Update Checker"
  5083. msgstr "Buscador de actualizaciones de firmware"
  5084. #: SentryLogger/plugin.json
  5085. msgctxt "description"
  5086. msgid "Logs certain events so that they can be used by the crash reporter"
  5087. msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente"
  5088. #: SentryLogger/plugin.json
  5089. msgctxt "name"
  5090. msgid "Sentry Logger"
  5091. msgstr "Registro de Sentry"
  5092. #: MonitorStage/plugin.json
  5093. msgctxt "description"
  5094. msgid "Provides a monitor stage in Cura."
  5095. msgstr "Proporciona una fase de supervisión en Cura."
  5096. #: MonitorStage/plugin.json
  5097. msgctxt "name"
  5098. msgid "Monitor Stage"
  5099. msgstr "Fase de supervisión"
  5100. #: RemovableDriveOutputDevice/plugin.json
  5101. msgctxt "description"
  5102. msgid "Provides removable drive hotplugging and writing support."
  5103. msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  5104. #: RemovableDriveOutputDevice/plugin.json
  5105. msgctxt "name"
  5106. msgid "Removable Drive Output Device Plugin"
  5107. msgstr "Complemento de dispositivo de salida de unidad extraíble"
  5108. #: AMFReader/plugin.json
  5109. msgctxt "description"
  5110. msgid "Provides support for reading AMF files."
  5111. msgstr "Proporciona asistencia para leer archivos AMF."
  5112. #: AMFReader/plugin.json
  5113. msgctxt "name"
  5114. msgid "AMF Reader"
  5115. msgstr "Lector de AMF"
  5116. #: UFPReader/plugin.json
  5117. msgctxt "description"
  5118. msgid "Provides support for reading Ultimaker Format Packages."
  5119. msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker."
  5120. #: UFPReader/plugin.json
  5121. msgctxt "name"
  5122. msgid "UFP Reader"
  5123. msgstr "Lector de UFP"
  5124. #: DigitalLibrary/plugin.json
  5125. msgctxt "description"
  5126. msgid ""
  5127. "Connects to the Digital Library, allowing Cura to open files from and save "
  5128. "files to the Digital Library."
  5129. msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella."
  5130. #: DigitalLibrary/plugin.json
  5131. msgctxt "name"
  5132. msgid "Ultimaker Digital Library"
  5133. msgstr "Ultimaker Digital Library"
  5134. #: PerObjectSettingsTool/plugin.json
  5135. msgctxt "description"
  5136. msgid "Provides the Per Model Settings."
  5137. msgstr "Proporciona los ajustes por modelo."
  5138. #: PerObjectSettingsTool/plugin.json
  5139. msgctxt "name"
  5140. msgid "Per Model Settings Tool"
  5141. msgstr "Herramienta de ajustes por modelo"
  5142. #: FirmwareUpdater/plugin.json
  5143. msgctxt "description"
  5144. msgid "Provides a machine actions for updating firmware."
  5145. msgstr "Proporciona opciones a la máquina para actualizar el firmware."
  5146. #: FirmwareUpdater/plugin.json
  5147. msgctxt "name"
  5148. msgid "Firmware Updater"
  5149. msgstr "Actualizador de firmware"
  5150. #: UM3NetworkPrinting/plugin.json
  5151. msgctxt "description"
  5152. msgid "Manages network connections to Ultimaker networked printers."
  5153. msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas."
  5154. #: UM3NetworkPrinting/plugin.json
  5155. msgctxt "name"
  5156. msgid "Ultimaker Network Connection"
  5157. msgstr "Conexión en red de Ultimaker"
  5158. #: ModelChecker/plugin.json
  5159. msgctxt "description"
  5160. msgid ""
  5161. "Checks models and print configuration for possible printing issues and give "
  5162. "suggestions."
  5163. msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos."
  5164. #: ModelChecker/plugin.json
  5165. msgctxt "name"
  5166. msgid "Model Checker"
  5167. msgstr "Comprobador de modelos"
  5168. #: SimulationView/plugin.json
  5169. msgctxt "description"
  5170. msgid "Provides the preview of sliced layerdata."
  5171. msgstr "Proporciona la vista previa de los datos de las capas cortadas."
  5172. #: SimulationView/plugin.json
  5173. msgctxt "name"
  5174. msgid "Simulation View"
  5175. msgstr "Vista de simulación"
  5176. #: GCodeWriter/plugin.json
  5177. msgctxt "description"
  5178. msgid "Writes g-code to a file."
  5179. msgstr "Escribe GCode en un archivo."
  5180. #: GCodeWriter/plugin.json
  5181. msgctxt "name"
  5182. msgid "G-code Writer"
  5183. msgstr "Escritor de GCode"
  5184. #: 3MFWriter/plugin.json
  5185. msgctxt "description"
  5186. msgid "Provides support for writing 3MF files."
  5187. msgstr "Proporciona asistencia para escribir archivos 3MF."
  5188. #: 3MFWriter/plugin.json
  5189. msgctxt "name"
  5190. msgid "3MF Writer"
  5191. msgstr "Escritor de 3MF"
  5192. #: GCodeGzReader/plugin.json
  5193. msgctxt "description"
  5194. msgid "Reads g-code from a compressed archive."
  5195. msgstr "Lee GCode de un archivo comprimido."
  5196. #: GCodeGzReader/plugin.json
  5197. msgctxt "name"
  5198. msgid "Compressed G-code Reader"
  5199. msgstr "Lector de GCode comprimido"
  5200. #: XmlMaterialProfile/plugin.json
  5201. msgctxt "description"
  5202. msgid "Provides capabilities to read and write XML-based material profiles."
  5203. msgstr "Permite leer y escribir perfiles de material basados en XML."
  5204. #: XmlMaterialProfile/plugin.json
  5205. msgctxt "name"
  5206. msgid "Material Profiles"
  5207. msgstr "Perfiles de material"
  5208. #: CuraEngineBackend/plugin.json
  5209. msgctxt "description"
  5210. msgid "Provides the link to the CuraEngine slicing backend."
  5211. msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  5212. #: CuraEngineBackend/plugin.json
  5213. msgctxt "name"
  5214. msgid "CuraEngine Backend"
  5215. msgstr "Backend de CuraEngine"
  5216. #: X3DReader/plugin.json
  5217. msgctxt "description"
  5218. msgid "Provides support for reading X3D files."
  5219. msgstr "Proporciona asistencia para leer archivos X3D."
  5220. #: X3DReader/plugin.json
  5221. msgctxt "name"
  5222. msgid "X3D Reader"
  5223. msgstr "Lector de X3D"
  5224. #: ImageReader/plugin.json
  5225. msgctxt "description"
  5226. msgid "Enables ability to generate printable geometry from 2D image files."
  5227. msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  5228. #: ImageReader/plugin.json
  5229. msgctxt "name"
  5230. msgid "Image Reader"
  5231. msgstr "Lector de imágenes"
  5232. #: 3MFReader/plugin.json
  5233. msgctxt "description"
  5234. msgid "Provides support for reading 3MF files."
  5235. msgstr "Proporciona asistencia para leer archivos 3MF."
  5236. #: 3MFReader/plugin.json
  5237. msgctxt "name"
  5238. msgid "3MF Reader"
  5239. msgstr "Lector de 3MF"
  5240. #: UFPWriter/plugin.json
  5241. msgctxt "description"
  5242. msgid "Provides support for writing Ultimaker Format Packages."
  5243. msgstr "Permite la escritura de paquetes de formato Ultimaker."
  5244. #: UFPWriter/plugin.json
  5245. msgctxt "name"
  5246. msgid "UFP Writer"
  5247. msgstr "Escritor de UFP"
  5248. #: LegacyProfileReader/plugin.json
  5249. msgctxt "description"
  5250. msgid "Provides support for importing profiles from legacy Cura versions."
  5251. msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  5252. #: LegacyProfileReader/plugin.json
  5253. msgctxt "name"
  5254. msgid "Legacy Cura Profile Reader"
  5255. msgstr "Lector de perfiles antiguos de Cura"
  5256. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5257. msgctxt "description"
  5258. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  5259. msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4."
  5260. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  5261. msgctxt "name"
  5262. msgid "Version Upgrade 4.3 to 4.4"
  5263. msgstr "Actualización de la versión 4.3 a la 4.4"
  5264. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5265. msgctxt "description"
  5266. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  5267. msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  5268. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  5269. msgctxt "name"
  5270. msgid "Version Upgrade 2.1 to 2.2"
  5271. msgstr "Actualización de la versión 2.1 a la 2.2"
  5272. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5273. msgctxt "description"
  5274. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  5275. msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2."
  5276. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  5277. msgctxt "name"
  5278. msgid "Version Upgrade 4.1 to 4.2"
  5279. msgstr "Actualización de la versión 4.1 a la 4.2"
  5280. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5281. msgctxt "description"
  5282. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  5283. msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0."
  5284. #: VersionUpgrade/VersionUpgrade413to50/plugin.json
  5285. msgctxt "name"
  5286. msgid "Version Upgrade 4.13 to 5.0"
  5287. msgstr "Actualización de la versión 4.3 a la 5.0"
  5288. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5289. msgctxt "description"
  5290. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  5291. msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6."
  5292. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  5293. msgctxt "name"
  5294. msgid "Version Upgrade 4.5 to 4.6"
  5295. msgstr "Actualización de la versión 4.5 a la 4.6"
  5296. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5297. msgctxt "description"
  5298. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  5299. msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
  5300. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  5301. msgctxt "name"
  5302. msgid "Version Upgrade 3.3 to 3.4"
  5303. msgstr "Actualización de la versión 3.3 a la 3.4"
  5304. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5305. msgctxt "description"
  5306. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  5307. msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9."
  5308. #: VersionUpgrade/VersionUpgrade48to49/plugin.json
  5309. msgctxt "name"
  5310. msgid "Version Upgrade 4.8 to 4.9"
  5311. msgstr "Actualización de la versión 4.8 a la 4.9"
  5312. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5313. msgctxt "description"
  5314. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  5315. msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
  5316. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  5317. msgctxt "name"
  5318. msgid "Version Upgrade 2.7 to 3.0"
  5319. msgstr "Actualización de la versión 2.7 a la 3.0"
  5320. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5321. msgctxt "description"
  5322. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  5323. msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5."
  5324. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  5325. msgctxt "name"
  5326. msgid "Version Upgrade 4.4 to 4.5"
  5327. msgstr "Actualización de la versión 4.4 a la 4.5"
  5328. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5329. msgctxt "description"
  5330. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  5331. msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
  5332. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  5333. msgctxt "name"
  5334. msgid "Version Upgrade 3.0 to 3.1"
  5335. msgstr "Actualización de la versión 3.0 a la 3.1"
  5336. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5337. msgctxt "description"
  5338. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  5339. msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2."
  5340. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  5341. msgctxt "name"
  5342. msgid "Version Upgrade 4.6.0 to 4.6.2"
  5343. msgstr "Actualización de la versión 4.6.0 a la 4.6.2"
  5344. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5345. msgctxt "description"
  5346. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  5347. msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
  5348. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  5349. msgctxt "name"
  5350. msgid "Version Upgrade 2.6 to 2.7"
  5351. msgstr "Actualización de la versión 2.6 a la 2.7"
  5352. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5353. msgctxt "description"
  5354. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  5355. msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3."
  5356. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  5357. msgctxt "name"
  5358. msgid "Version Upgrade 4.2 to 4.3"
  5359. msgstr "Actualización de la versión 4.2 a la 4.3"
  5360. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5361. msgctxt "description"
  5362. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  5363. msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1."
  5364. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  5365. msgctxt "name"
  5366. msgid "Version Upgrade 4.0 to 4.1"
  5367. msgstr "Actualización de la versión 4.0 a la 4.1"
  5368. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5369. msgctxt "description"
  5370. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  5371. msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7."
  5372. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  5373. msgctxt "name"
  5374. msgid "Version Upgrade 4.6.2 to 4.7"
  5375. msgstr "Actualización de la versión 4.6.2 a la 4.7"
  5376. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5377. msgctxt "description"
  5378. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  5379. msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10."
  5380. #: VersionUpgrade/VersionUpgrade49to410/plugin.json
  5381. msgctxt "name"
  5382. msgid "Version Upgrade 4.9 to 4.10"
  5383. msgstr "Actualización de la versión 4.9 a la 4.10"
  5384. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5385. msgctxt "description"
  5386. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  5387. msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  5388. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  5389. msgctxt "name"
  5390. msgid "Version Upgrade 2.2 to 2.4"
  5391. msgstr "Actualización de la versión 2.2 a la 2.4"
  5392. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5393. msgctxt "description"
  5394. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  5395. msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
  5396. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  5397. msgctxt "name"
  5398. msgid "Version Upgrade 3.2 to 3.3"
  5399. msgstr "Actualización de la versión 3.2 a la 3.3"
  5400. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5401. msgctxt "description"
  5402. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  5403. msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  5404. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  5405. msgctxt "name"
  5406. msgid "Version Upgrade 2.5 to 2.6"
  5407. msgstr "Actualización de la versión 2.5 a la 2.6"
  5408. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5409. msgctxt "description"
  5410. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  5411. msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0."
  5412. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  5413. msgctxt "name"
  5414. msgid "Version Upgrade 3.5 to 4.0"
  5415. msgstr "Actualización de la versión 3.5 a la 4.0"
  5416. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5417. msgctxt "description"
  5418. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  5419. msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5."
  5420. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  5421. msgctxt "name"
  5422. msgid "Version Upgrade 3.4 to 3.5"
  5423. msgstr "Actualización de la versión 3.4 a la 3.5"
  5424. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5425. msgctxt "description"
  5426. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  5427. msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8."
  5428. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  5429. msgctxt "name"
  5430. msgid "Version Upgrade 4.7 to 4.8"
  5431. msgstr "Actualización de la versión 4.7 a la 4.8"
  5432. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5433. msgctxt "description"
  5434. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  5435. msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12."
  5436. #: VersionUpgrade/VersionUpgrade411to412/plugin.json
  5437. msgctxt "name"
  5438. msgid "Version Upgrade 4.11 to 4.12"
  5439. msgstr "Actualización de la versión 4.11 a 4.12"
  5440. #: CuraDrive/plugin.json
  5441. msgctxt "description"
  5442. msgid "Backup and restore your configuration."
  5443. msgstr "Realice una copia de seguridad de su configuración y restáurela."
  5444. #: CuraDrive/plugin.json
  5445. msgctxt "name"
  5446. msgid "Cura Backups"
  5447. msgstr "Copias de seguridad de Cura"
  5448. #: CuraProfileReader/plugin.json
  5449. msgctxt "description"
  5450. msgid "Provides support for importing Cura profiles."
  5451. msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  5452. #: CuraProfileReader/plugin.json
  5453. msgctxt "name"
  5454. msgid "Cura Profile Reader"
  5455. msgstr "Lector de perfiles de Cura"
  5456. #: SliceInfoPlugin/plugin.json
  5457. msgctxt "description"
  5458. msgid "Submits anonymous slice info. Can be disabled through preferences."
  5459. msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  5460. #: SliceInfoPlugin/plugin.json
  5461. msgctxt "name"
  5462. msgid "Slice info"
  5463. msgstr "Info de la segmentación"
  5464. #: GCodeProfileReader/plugin.json
  5465. msgctxt "description"
  5466. msgid "Provides support for importing profiles from g-code files."
  5467. msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  5468. #: GCodeProfileReader/plugin.json
  5469. msgctxt "name"
  5470. msgid "G-code Profile Reader"
  5471. msgstr "Lector de perfiles GCode"
  5472. #: GCodeGzWriter/plugin.json
  5473. msgctxt "description"
  5474. msgid "Writes g-code to a compressed archive."
  5475. msgstr "Escribe GCode en un archivo comprimido."
  5476. #: GCodeGzWriter/plugin.json
  5477. msgctxt "name"
  5478. msgid "Compressed G-code Writer"
  5479. msgstr "Escritor de GCode comprimido"
  5480. #: PostProcessingPlugin/plugin.json
  5481. msgctxt "description"
  5482. msgid "Extension that allows for user created scripts for post processing"
  5483. msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios"
  5484. #: PostProcessingPlugin/plugin.json
  5485. msgctxt "name"
  5486. msgid "Post Processing"
  5487. msgstr "Posprocesamiento"
  5488. #: SupportEraser/plugin.json
  5489. msgctxt "description"
  5490. msgid ""
  5491. "Creates an eraser mesh to block the printing of support in certain places"
  5492. msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares"
  5493. #: SupportEraser/plugin.json
  5494. msgctxt "name"
  5495. msgid "Support Eraser"
  5496. msgstr "Borrador de soporte"
  5497. #: PreviewStage/plugin.json
  5498. msgctxt "description"
  5499. msgid "Provides a preview stage in Cura."
  5500. msgstr "Proporciona una fase de vista previa en Cura."
  5501. #: PreviewStage/plugin.json
  5502. msgctxt "name"
  5503. msgid "Preview Stage"
  5504. msgstr "Fase de vista previa"
  5505. #: XRayView/plugin.json
  5506. msgctxt "description"
  5507. msgid "Provides the X-Ray view."
  5508. msgstr "Proporciona la vista de rayos X."
  5509. #: XRayView/plugin.json
  5510. msgctxt "name"
  5511. msgid "X-Ray View"
  5512. msgstr "Vista de rayos X"
  5513. #: UltimakerMachineActions/plugin.json
  5514. msgctxt "description"
  5515. msgid ""
  5516. "Provides machine actions for Ultimaker machines (such as bed leveling "
  5517. "wizard, selecting upgrades, etc.)."
  5518. 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,"
  5519. " etc.)."
  5520. #: UltimakerMachineActions/plugin.json
  5521. msgctxt "name"
  5522. msgid "Ultimaker machine actions"
  5523. msgstr "Acciones de la máquina Ultimaker"
  5524. #: Marketplace/plugin.json
  5525. msgctxt "description"
  5526. msgid ""
  5527. "Manages extensions to the application and allows browsing extensions from "
  5528. "the Ultimaker website."
  5529. msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de Ultimaker."
  5530. #: Marketplace/plugin.json
  5531. msgctxt "name"
  5532. msgid "Marketplace"
  5533. msgstr "Marketplace"
  5534. #: SolidView/plugin.json
  5535. msgctxt "description"
  5536. msgid "Provides a normal solid mesh view."
  5537. msgstr "Proporciona una vista de malla sólida normal."
  5538. #: SolidView/plugin.json
  5539. msgctxt "name"
  5540. msgid "Solid View"
  5541. msgstr "Vista de sólidos"
  5542. #: GCodeReader/plugin.json
  5543. msgctxt "description"
  5544. msgid "Allows loading and displaying G-code files."
  5545. msgstr "Permite cargar y visualizar archivos GCode."
  5546. #: GCodeReader/plugin.json
  5547. msgctxt "name"
  5548. msgid "G-code Reader"
  5549. msgstr "Lector de GCode"
  5550. #: MachineSettingsAction/plugin.json
  5551. msgctxt "description"
  5552. msgid ""
  5553. "Provides a way to change machine settings (such as build volume, nozzle "
  5554. "size, etc.)."
  5555. msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  5556. #: MachineSettingsAction/plugin.json
  5557. msgctxt "name"
  5558. msgid "Machine Settings Action"
  5559. msgstr "Acción Ajustes de la máquina"
  5560. #: USBPrinting/plugin.json
  5561. msgctxt "description"
  5562. msgid ""
  5563. "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  5564. msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  5565. #: USBPrinting/plugin.json
  5566. msgctxt "name"
  5567. msgid "USB printing"
  5568. msgstr "Impresión USB"
  5569. #~ msgctxt "@action:button"
  5570. #~ msgid "Sync materials with printers"
  5571. #~ msgstr "Sincronizar materiales"
  5572. #~ msgctxt "@info:generic"
  5573. #~ msgid "You need to quit and restart {} before changes have effect."
  5574. #~ msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto."
  5575. #~ msgctxt "@info:generic"
  5576. #~ msgid "Syncing..."
  5577. #~ msgstr "Sincronizando..."
  5578. #~ msgctxt "@info:title"
  5579. #~ msgid "Changes detected from your Ultimaker account"
  5580. #~ msgstr "Se han detectado cambios desde su cuenta de Ultimaker"
  5581. #~ msgctxt "@info:generic"
  5582. #~ msgid "Do you want to sync material and software packages with your account?"
  5583. #~ msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
  5584. #~ msgctxt "@action:button"
  5585. #~ msgid "Sync"
  5586. #~ msgstr "Sincronizar"
  5587. #~ msgctxt "@button"
  5588. #~ msgid "Decline and remove from account"
  5589. #~ msgstr "Rechazar y eliminar de la cuenta"
  5590. #~ msgctxt "@info:generic"
  5591. #~ msgid "{} plugins failed to download"
  5592. #~ msgstr "Error al descargar los complementos {}"
  5593. #~ msgctxt "@title:window"
  5594. #~ msgid "Plugin License Agreement"
  5595. #~ msgstr "Acuerdo de licencia de complemento"
  5596. #~ msgctxt "@title:window"
  5597. #~ msgid "Convert Image..."
  5598. #~ msgstr "Convertir imagen..."
  5599. #~ msgctxt "@info:tooltip"
  5600. #~ msgid "The width in millimeters on the build plate."
  5601. #~ msgstr "La anchura en milímetros en la placa de impresión."
  5602. #~ msgctxt "@title"
  5603. #~ msgid "Marketplace"
  5604. #~ msgstr "Marketplace"
  5605. #~ msgctxt "@info"
  5606. #~ msgid "You will need to restart Cura before changes in packages have effect."
  5607. #~ msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto."
  5608. #~ msgctxt "@action:button"
  5609. #~ msgid "Install"
  5610. #~ msgstr "Instalar"
  5611. #~ msgctxt "@action:button"
  5612. #~ msgid "Installed"
  5613. #~ msgstr "Instalado"
  5614. #~ msgctxt "@label"
  5615. #~ msgid "Premium"
  5616. #~ msgstr "Prémium"
  5617. #~ msgctxt "@info:tooltip"
  5618. #~ msgid "Go to Web Marketplace"
  5619. #~ msgstr "Ir a Web Marketplace"
  5620. #~ msgctxt "@label"
  5621. #~ msgid "Search materials"
  5622. #~ msgstr "Buscar materiales"
  5623. #~ msgctxt "@label"
  5624. #~ msgid "Compatibility"
  5625. #~ msgstr "Compatibilidad"
  5626. #~ msgctxt "@label:table_header"
  5627. #~ msgid "Machine"
  5628. #~ msgstr "Máquina"
  5629. #~ msgctxt "@label:table_header"
  5630. #~ msgid "Build Plate"
  5631. #~ msgstr "Placa de impresión"
  5632. #~ msgctxt "@label:table_header"
  5633. #~ msgid "Support"
  5634. #~ msgstr "Soporte"
  5635. #~ msgctxt "@label:table_header"
  5636. #~ msgid "Quality"
  5637. #~ msgstr "Calidad"
  5638. #~ msgctxt "@action:label"
  5639. #~ msgid "Technical Data Sheet"
  5640. #~ msgstr "Especificaciones técnicas"
  5641. #~ msgctxt "@action:label"
  5642. #~ msgid "Safety Data Sheet"
  5643. #~ msgstr "Especificaciones de seguridad"
  5644. #~ msgctxt "@action:label"
  5645. #~ msgid "Printing Guidelines"
  5646. #~ msgstr "Directrices de impresión"
  5647. #~ msgctxt "@action:label"
  5648. #~ msgid "Website"
  5649. #~ msgstr "Sitio web"
  5650. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5651. #~ msgid "<a href='%1'>Log in</a> is required to install or update"
  5652. #~ msgstr "<a href='%1'>Inicie sesión</a> para realizar la instalación o la actualización"
  5653. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5654. #~ msgid "<a href='%1'>Buy material spools</a>"
  5655. #~ msgstr "<a href=”%1”>Comprar bobinas de material</a>"
  5656. #~ msgctxt "@action:button"
  5657. #~ msgid "Update"
  5658. #~ msgstr "Actualizar"
  5659. #~ msgctxt "@action:button"
  5660. #~ msgid "Updating"
  5661. #~ msgstr "Actualizando"
  5662. #~ msgctxt "@action:button"
  5663. #~ msgid "Updated"
  5664. #~ msgstr "Actualizado"
  5665. #~ msgctxt "@action:button"
  5666. #~ msgid "Back"
  5667. #~ msgstr "Atrás"
  5668. #~ msgctxt "@title:tab"
  5669. #~ msgid "Plugins"
  5670. #~ msgstr "Complementos"
  5671. #~ msgctxt "@title:tab"
  5672. #~ msgid "Installed"
  5673. #~ msgstr "Instalado"
  5674. #~ msgctxt "@label"
  5675. #~ msgid "Will install upon restarting"
  5676. #~ msgstr "Se instalará después de reiniciar"
  5677. #~ msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  5678. #~ msgid "<a href='%1'>Log in</a> is required to update"
  5679. #~ msgstr "<a href='%1'>Inicie sesión</a> para realizar la actualización"
  5680. #~ msgctxt "@action:button"
  5681. #~ msgid "Downgrade"
  5682. #~ msgstr "Degradar"
  5683. #~ msgctxt "@action:button"
  5684. #~ msgid "Uninstall"
  5685. #~ msgstr "Desinstalar"
  5686. #~ msgctxt "@label"
  5687. #~ msgid "Community Contributions"
  5688. #~ msgstr "Contribuciones de la comunidad"
  5689. #~ msgctxt "@label"
  5690. #~ msgid "Community Plugins"
  5691. #~ msgstr "Complementos de la comunidad"
  5692. #~ msgctxt "@label"
  5693. #~ msgid "Generic Materials"
  5694. #~ msgstr "Materiales genéricos"
  5695. #~ msgctxt "@info"
  5696. #~ msgid "Fetching packages..."
  5697. #~ msgstr "Buscando paquetes..."
  5698. #~ msgctxt "@label"
  5699. #~ msgid "Website"
  5700. #~ msgstr "Sitio web"
  5701. #~ msgctxt "@label"
  5702. #~ msgid "Email"
  5703. #~ msgstr "Correo electrónico"
  5704. #~ msgctxt "@description"
  5705. #~ msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  5706. #~ msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise"
  5707. #~ msgctxt "@label"
  5708. #~ msgid "Version"
  5709. #~ msgstr "Versión"
  5710. #~ msgctxt "@label"
  5711. #~ msgid "Last updated"
  5712. #~ msgstr "Última actualización"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "Downloads"
  5715. #~ msgstr "Descargas"
  5716. #~ msgctxt "@title:tab"
  5717. #~ msgid "Installed plugins"
  5718. #~ msgstr "Complementos instalados"
  5719. #~ msgctxt "@info"
  5720. #~ msgid "No plugin has been installed."
  5721. #~ msgstr "No se ha instalado ningún complemento."
  5722. #~ msgctxt "@title:tab"
  5723. #~ msgid "Installed materials"
  5724. #~ msgstr "Materiales instalados"
  5725. #~ msgctxt "@info"
  5726. #~ msgid "No material has been installed."
  5727. #~ msgstr "No se ha instalado ningún material."
  5728. #~ msgctxt "@title:tab"
  5729. #~ msgid "Bundled plugins"
  5730. #~ msgstr "Complementos agrupados"
  5731. #~ msgctxt "@title:tab"
  5732. #~ msgid "Bundled materials"
  5733. #~ msgstr "Materiales agrupados"
  5734. #~ msgctxt "@info"
  5735. #~ msgid "Could not connect to the Cura Package database. Please check your connection."
  5736. #~ msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión."
  5737. #~ msgctxt "@label"
  5738. #~ msgid "You need to accept the license to install the package"
  5739. #~ msgstr "Tiene que aceptar la licencia para instalar el paquete"
  5740. #~ msgctxt "@title"
  5741. #~ msgid "Changes from your account"
  5742. #~ msgstr "Cambios desde su cuenta"
  5743. #~ msgctxt "@button"
  5744. #~ msgid "Dismiss"
  5745. #~ msgstr "Descartar"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "The following packages will be added:"
  5748. #~ msgstr "Se añadirán los siguientes paquetes:"
  5749. #~ msgctxt "@label"
  5750. #~ msgid "The following packages can not be installed because of an incompatible Cura version:"
  5751. #~ msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:"
  5752. #~ msgctxt "@title:window"
  5753. #~ msgid "Confirm uninstall"
  5754. #~ msgstr "Confirmar desinstalación"
  5755. #~ msgctxt "@text:window"
  5756. #~ msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  5757. #~ msgstr "Va a desinstalar materiales o perfiles que todavía están en uso. Si confirma la desinstalación, los siguientes materiales o perfiles volverán a sus valores predeterminados."
  5758. #~ msgctxt "@text:window"
  5759. #~ msgid "Materials"
  5760. #~ msgstr "Materiales"
  5761. #~ msgctxt "@text:window"
  5762. #~ msgid "Profiles"
  5763. #~ msgstr "Perfiles"
  5764. #~ msgctxt "@action:button"
  5765. #~ msgid "Confirm"
  5766. #~ msgstr "Confirmar"
  5767. #~ msgctxt "@info:tooltip"
  5768. #~ msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  5769. #~ msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos."
  5770. #~ msgctxt "@label"
  5771. #~ msgid "Support library for handling planar objects"
  5772. #~ msgstr "Biblioteca de compatibilidad para trabajar con objetos planos"
  5773. #~ msgctxt "@text:window, %1 is a profile name"
  5774. #~ msgid ""
  5775. #~ "You have customized some profile settings.\n"
  5776. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5777. #~ "Alternatively, you can discard the changes to load the defaults from '%1'."
  5778. #~ msgstr ""
  5779. #~ "Ha personalizado algunos ajustes del perfil.\n"
  5780. #~ "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n"
  5781. #~ "También puede descartar los cambios para cargar los valores predeterminados de'%1'."
  5782. #~ msgctxt "@action:inmenu menubar:view"
  5783. #~ msgid "&Build plate"
  5784. #~ msgstr "P&laca de impresión"
  5785. #~ msgctxt "@label"
  5786. #~ msgid "Create"
  5787. #~ msgstr "Crear"
  5788. #~ msgctxt "@label"
  5789. #~ msgid "Duplicate"
  5790. #~ msgstr "Duplicado"
  5791. #~ msgctxt "@label %1 is printer name"
  5792. #~ msgid "Printer: %1"
  5793. #~ msgstr "Impresora: %1"
  5794. #~ msgctxt "@action:button"
  5795. #~ msgid "Update profile with current settings/overrides"
  5796. #~ msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
  5797. #~ msgctxt "@label"
  5798. #~ msgid "Theme:"
  5799. #~ msgstr "Tema:"
  5800. #~ msgctxt "@label"
  5801. #~ msgid "You will need to restart the application for these changes to have effect."
  5802. #~ msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
  5803. #~ msgctxt "@action:button"
  5804. #~ msgid "More information"
  5805. #~ msgstr "Más información"
  5806. #~ msgctxt "@action:button"
  5807. #~ msgid "Create"
  5808. #~ msgstr "Crear"
  5809. #~ msgctxt "@action:button Sending materials to printers"
  5810. #~ msgid "Sync with Printers"
  5811. #~ msgstr "Sincronizar con las impresoras"
  5812. #~ msgctxt "@action:label"
  5813. #~ msgid "Printer"
  5814. #~ msgstr "Impresora"
  5815. #~ msgctxt "@title:column"
  5816. #~ msgid "Unit"
  5817. #~ msgstr "Unidad"
  5818. #~ msgctxt "@action:inmenu"
  5819. #~ msgid "Show Online Troubleshooting Guide"
  5820. #~ msgstr "Mostrar Guía de resolución de problemas en línea"
  5821. #~ msgctxt "@action:inmenu"
  5822. #~ msgid "Add more materials from Marketplace"
  5823. #~ msgstr "Añadir más materiales de Marketplace"
  5824. #~ msgctxt "@action:inmenu menubar:edit"
  5825. #~ msgid "Arrange All Models To All Build Plates"
  5826. #~ msgstr "Organizar todos los modelos en todas las placas de impresión"
  5827. #~ msgctxt "@action:menu"
  5828. #~ msgid "&Marketplace"
  5829. #~ msgstr "&Marketplace"
  5830. #~ msgctxt "description"
  5831. #~ msgid "Find, manage and install new Cura packages."
  5832. #~ msgstr "Buscar, administrar e instalar nuevos paquetes de Cura."
  5833. #~ msgctxt "name"
  5834. #~ msgid "Toolbox"
  5835. #~ msgstr "Cuadro de herramientas"
  5836. #~ msgctxt "description"
  5837. #~ msgid "Provides the Simulation view."
  5838. #~ msgstr "Abre la vista de simulación."
  5839. #~ msgctxt "@info:status"
  5840. #~ msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  5841. #~ msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
  5842. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5843. #~ msgid "Connect to Ultimaker Digital Factory"
  5844. #~ msgstr "Conectar con Ultimaker Digital Factory"
  5845. #~ msgctxt "@info"
  5846. #~ msgid "Webcam feeds for cloud printers cannot be viewed from Ultimaker Cura."
  5847. #~ msgstr "Las transmisiones de la cámara web para impresoras en la nube no se pueden ver en Ultimaker Cura."
  5848. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5849. #~ msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  5850. #~ msgstr "Puede que haya nuevas funciones o correcciones de errores disponibles para {machine_name}. Si no tiene la última versión disponible, se recomienda actualizar el firmware de la impresora a la versión {latest_version}."
  5851. #~ msgctxt "@info:title The %s gets replaced with the printer name."
  5852. #~ msgid "New %s firmware available"
  5853. #~ msgstr "Nuevo firmware de %s disponible"
  5854. #~ msgctxt "@info:status"
  5855. #~ msgid "Global stack is missing."
  5856. #~ msgstr "Falta la pila global."
  5857. #~ msgctxt "@info:status"
  5858. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  5859. #~ msgstr "Su modelo no es funcional. Las áreas resaltadas indican que faltan superficies o son extrañas."
  5860. #~ msgctxt "@info:title"
  5861. #~ msgid "Model errors"
  5862. #~ msgstr "Errores de modelo"
  5863. #~ msgctxt "@label:listbox"
  5864. #~ msgid "Layer thickness"
  5865. #~ msgstr "Grosor de la capa"
  5866. #~ msgctxt "@label"
  5867. #~ msgid "Your key to connected 3D printing"
  5868. #~ msgstr "Su clave para una impresión 3D conectada"
  5869. #~ msgctxt "@text"
  5870. #~ msgid ""
  5871. #~ "- Customize your experience with more print profiles and plugins\n"
  5872. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  5873. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  5874. #~ msgstr ""
  5875. #~ "- Personalice su experiencia con más perfiles de impresión y complementos\n"
  5876. #~ "- Consiga más flexibilidad sincronizando su configuración y cargándola en cualquier lugar\n"
  5877. #~ "- Aumente la eficiencia con un flujo de trabajo remoto en las impresoras Ultimaker"
  5878. #~ msgctxt "@button"
  5879. #~ msgid "Create account"
  5880. #~ msgstr "Crear cuenta"
  5881. #~ msgctxt "@action:inmenu menubar:edit"
  5882. #~ msgid "Delete Selected Model"
  5883. #~ msgid_plural "Delete Selected Models"
  5884. #~ msgstr[0] "Eliminar modelo seleccionado"
  5885. #~ msgstr[1] "Eliminar modelos seleccionados"
  5886. #~ msgctxt "@action:inmenu menubar:edit"
  5887. #~ msgid "Center Selected Model"
  5888. #~ msgid_plural "Center Selected Models"
  5889. #~ msgstr[0] "Centrar modelo seleccionado"
  5890. #~ msgstr[1] "Centrar modelos seleccionados"
  5891. #~ msgctxt "@action:inmenu menubar:edit"
  5892. #~ msgid "Multiply Selected Model"
  5893. #~ msgid_plural "Multiply Selected Models"
  5894. #~ msgstr[0] "Multiplicar modelo seleccionado"
  5895. #~ msgstr[1] "Multiplicar modelos seleccionados"
  5896. #~ msgctxt "@button"
  5897. #~ msgid "Finish"
  5898. #~ msgstr "Finalizar"
  5899. #~ msgctxt "@label"
  5900. #~ msgid "Ultimaker Account"
  5901. #~ msgstr "Cuenta de Ultimaker"
  5902. #~ msgctxt "@text"
  5903. #~ msgid "Your key to connected 3D printing"
  5904. #~ msgstr "Su clave para una impresión 3D conectada"
  5905. #~ msgctxt "@text"
  5906. #~ msgid "- Customize your experience with more print profiles and plugins"
  5907. #~ msgstr "- Personalice su experiencia con más perfiles de impresión y complementos"
  5908. #~ msgctxt "@text"
  5909. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  5910. #~ msgstr "- Consiga más flexibilidad sincronizando su configuración y cargándola en cualquier lugar"
  5911. #~ msgctxt "@text"
  5912. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  5913. #~ msgstr "- Aumente la eficiencia con un flujo de trabajo remoto en las impresoras Ultimaker"
  5914. #~ msgctxt "@text"
  5915. #~ msgid ""
  5916. #~ "Please follow these steps to set up\n"
  5917. #~ "Ultimaker Cura. This will only take a few moments."
  5918. #~ msgstr ""
  5919. #~ "Siga estos pasos para configurar\n"
  5920. #~ "Ultimaker Cura. Solo le llevará unos minutos."
  5921. #~ msgctxt "@label"
  5922. #~ msgid "What's new in Ultimaker Cura"
  5923. #~ msgstr "Novedades en Ultimaker Cura"
  5924. #~ msgctxt "@label ({} is object name)"
  5925. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  5926. #~ msgstr "¿Seguro que desea eliminar {}? ¡Esta acción no se puede deshacer!"
  5927. #~ msgctxt "@info:status"
  5928. #~ msgid "The selected model was too small to load."
  5929. #~ msgstr "No se puede cargar el modelo seleccionado, es demasiado pequeño."
  5930. #~ msgctxt "@info:status"
  5931. #~ msgid "Successfully imported profile {0}"
  5932. #~ msgstr "Perfil {0} importado correctamente"
  5933. #~ msgctxt "@info:status"
  5934. #~ msgid "Could not find a quality type {0} for the current configuration."
  5935. #~ msgstr "No se ha podido encontrar un tipo de calidad {0} para la configuración actual."
  5936. #~ msgctxt "info:status"
  5937. #~ msgid "Adding printer {} ({}) from your account"
  5938. #~ msgstr "Añadiendo la impresora {} ({}) de su cuenta"
  5939. #~ msgctxt "info:hidden list items"
  5940. #~ msgid "<li>... and {} others</li>"
  5941. #~ msgstr "<li>... y {} más</li>"
  5942. #~ msgctxt "info:status"
  5943. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5944. #~ msgstr "Impresoras añadidas desde Digital Factory:<ul>{}</ul>"
  5945. #~ msgctxt "info:status"
  5946. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5947. #~ msgstr "<ul>{}</ul>Para establecer una conexión, visite <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5948. #~ msgctxt "@label ({} is printer name)"
  5949. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  5950. #~ msgstr "{} se eliminará hasta la próxima sincronización de la cuenta. <br> Para eliminar {} permanentemente, visite <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>¿Seguro que desea eliminar {} temporalmente?"
  5951. #~ msgctxt "@label"
  5952. #~ msgid ""
  5953. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5954. #~ "Are you sure you want to continue?"
  5955. #~ msgstr ""
  5956. #~ "Está a punto de eliminar {} impresora(s) de Cura. Esta acción no se puede deshacer.\n"
  5957. #~ "¿Seguro que desea continuar?"
  5958. #~ msgctxt "@label"
  5959. #~ msgid ""
  5960. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5961. #~ "Are you sure you want to continue?"
  5962. #~ msgstr ""
  5963. #~ "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.\n"
  5964. #~ "¿Seguro que desea continuar?"
  5965. #~ msgctxt "@action:ComboBox option"
  5966. #~ msgid "Update"
  5967. #~ msgstr "Actualizar"
  5968. #~ msgctxt "@action:ComboBox option"
  5969. #~ msgid "Create new"
  5970. #~ msgstr "Crear nuevo"
  5971. #~ msgctxt "@label"
  5972. #~ msgid "Shared Heater"
  5973. #~ msgstr "Calentador compartido"
  5974. #~ msgctxt "@info"
  5975. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5976. #~ msgstr "La cámara web no se encuentra disponible porque está supervisando una impresora en la nube."
  5977. #~ msgctxt "@button"
  5978. #~ msgid "Ultimaker Digital Factory"
  5979. #~ msgstr "Ultimaker Digital Factory"
  5980. #~ msgctxt "@text:window, %1 is a profile name"
  5981. #~ msgid ""
  5982. #~ "You have customized some profile settings.\n"
  5983. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5984. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5985. #~ msgstr ""
  5986. #~ "Ha personalizado algunos ajustes del perfil.\n"
  5987. #~ "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n"
  5988. #~ "También puede descartar los cambios para cargar los valores predeterminados de '%1'."
  5989. #~ msgctxt "@label"
  5990. #~ msgid "Overrides %1 setting."
  5991. #~ msgid_plural "Overrides %1 settings."
  5992. #~ msgstr[0] "Anula el ajuste de %1."
  5993. #~ msgstr[1] "Anula los ajustes de %1."
  5994. #~ msgctxt "@text"
  5995. #~ msgid "Please give your printer a name"
  5996. #~ msgstr "Indique un nombre para su impresora"
  5997. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5998. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5999. #~ msgstr "Hay nuevas funciones disponibles para {machine_name}. Se recomienda actualizar el firmware de la impresora."
  6000. #~ msgctxt "@action:button"
  6001. #~ msgid "Print via Cloud"
  6002. #~ msgstr "Imprimir mediante Cloud"
  6003. #~ msgctxt "@properties:tooltip"
  6004. #~ msgid "Print via Cloud"
  6005. #~ msgstr "Imprimir mediante Cloud"
  6006. #~ msgctxt "@info:status"
  6007. #~ msgid "Connected via Cloud"
  6008. #~ msgstr "Conectado mediante Cloud"
  6009. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  6010. #~ msgid "Connect to Ultimaker Cloud"
  6011. #~ msgstr "Conectar a Ultimaker Cloud"
  6012. #~ msgctxt "@label"
  6013. #~ msgid "You need to login first before you can rate"
  6014. #~ msgstr "Debe iniciar sesión antes de enviar sus calificaciones"
  6015. #~ msgctxt "@label"
  6016. #~ msgid "You need to install the package before you can rate"
  6017. #~ msgstr "Debe instalar el paquete antes de enviar sus calificaciones"
  6018. #~ msgctxt "@label"
  6019. #~ msgid "ratings"
  6020. #~ msgstr "calificaciones"
  6021. #~ msgctxt "@label"
  6022. #~ msgid "Featured"
  6023. #~ msgstr "Destacado"
  6024. #~ msgctxt "@label"
  6025. #~ msgid "Your rating"
  6026. #~ msgstr "Su calificación"
  6027. #~ msgctxt "@label"
  6028. #~ msgid "Author"
  6029. #~ msgstr "Autor"
  6030. #~ msgctxt "@description"
  6031. #~ msgid "Get plugins and materials verified by Ultimaker"
  6032. #~ msgstr "Obtener complementos y materiales verificados por Ultimaker"
  6033. #~ msgctxt "@label The argument is a username."
  6034. #~ msgid "Hi %1"
  6035. #~ msgstr "Hola, %1"
  6036. #~ msgctxt "@button"
  6037. #~ msgid "Ultimaker account"
  6038. #~ msgstr "Cuenta de Ultimaker"
  6039. #~ msgctxt "@button"
  6040. #~ msgid "Sign out"
  6041. #~ msgstr "Cerrar sesión"
  6042. #~ msgctxt "@label"
  6043. #~ msgid "Support library for analysis of complex networks"
  6044. #~ msgstr "Biblioteca de compatibilidad para analizar redes complejas"
  6045. #~ msgctxt "@Label"
  6046. #~ msgid "Python HTTP library"
  6047. #~ msgstr "Biblioteca HTTP de Python"
  6048. #~ msgctxt "@text:window"
  6049. #~ msgid ""
  6050. #~ "You have customized some profile settings.\n"
  6051. #~ "Would you like to keep or discard those settings?"
  6052. #~ msgstr ""
  6053. #~ "Ha personalizado parte de los ajustes del perfil.\n"
  6054. #~ "¿Desea descartar los cambios o guardarlos?"
  6055. #~ msgctxt "@title:column"
  6056. #~ msgid "Default"
  6057. #~ msgstr "Valor predeterminado"
  6058. #~ msgctxt "@title:column"
  6059. #~ msgid "Customized"
  6060. #~ msgstr "Valor personalizado"
  6061. #~ msgctxt "@action:button"
  6062. #~ msgid "Discard"
  6063. #~ msgstr "Descartar"
  6064. #~ msgctxt "@action:button"
  6065. #~ msgid "Keep"
  6066. #~ msgstr "Guardar"
  6067. #~ msgctxt "@action:button"
  6068. #~ msgid "Create New Profile"
  6069. #~ msgstr "Crear nuevo perfil"
  6070. #~ msgctxt "@title:menu menubar:file"
  6071. #~ msgid "&Save..."
  6072. #~ msgstr "&Guardar..."
  6073. #~ msgctxt "@text"
  6074. #~ msgid "Place enter your printer's IP address."
  6075. #~ msgstr "Introduzca la dirección IP de su impresora."
  6076. #~ msgctxt "@button"
  6077. #~ msgid "Create an account"
  6078. #~ msgstr "Crear una cuenta"
  6079. #~ msgctxt "@info:generic"
  6080. #~ msgid ""
  6081. #~ "\n"
  6082. #~ "Do you want to sync material and software packages with your account?"
  6083. #~ msgstr ""
  6084. #~ "\n"
  6085. #~ "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
  6086. #~ msgctxt "@info:generic"
  6087. #~ msgid ""
  6088. #~ "\n"
  6089. #~ "Syncing..."
  6090. #~ msgstr ""
  6091. #~ "\n"
  6092. #~ "Sincronizando..."
  6093. #~ msgctxt "@info:status"
  6094. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  6095. #~ msgstr "No hay nada que segmentar porque ninguno de los modelos se adapta al volumen de impresión o los modelos están asignados a un extrusor deshabilitado. Escale o rote los modelos para que se adapten o habilite un extrusor."
  6096. #~ msgctxt "@info:backup_status"
  6097. #~ msgid "There was an error listing your backups."
  6098. #~ msgstr "Se ha producido un error al obtener sus copias de seguridad."
  6099. #~ msgctxt "@title:groupbox"
  6100. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  6101. #~ msgstr "Descripción del usuario (Nota: es posible que los desarrolladores no hablen su idioma; si es posible, utilice el inglés)"
  6102. #~ msgctxt "@title:window"
  6103. #~ msgid "Closing Cura"
  6104. #~ msgstr "Cerrando Cura"
  6105. #~ msgctxt "@label"
  6106. #~ msgid "Are you sure you want to exit Cura?"
  6107. #~ msgstr "¿Seguro que desea salir de Cura?"
  6108. #~ msgctxt "@label"
  6109. #~ msgid "Language:"
  6110. #~ msgstr "Idioma:"
  6111. #~ msgctxt "@label"
  6112. #~ msgid "Ultimaker Cloud"
  6113. #~ msgstr "Ultimaker Cloud"
  6114. #~ msgctxt "@text"
  6115. #~ msgid "The next generation 3D printing workflow"
  6116. #~ msgstr "El flujo de trabajo de impresión 3D de próxima generación"
  6117. #~ msgctxt "@text"
  6118. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  6119. #~ msgstr "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local"
  6120. #~ msgctxt "@text"
  6121. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  6122. #~ msgstr "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar"
  6123. #~ msgctxt "@text"
  6124. #~ msgid "- Get exclusive access to print profiles from leading brands"
  6125. #~ msgstr "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes"
  6126. #~ msgctxt "@label"
  6127. #~ msgid "The value is resolved from per-extruder values "
  6128. #~ msgstr "El valor se resuelve según los valores de los extrusores. "
  6129. #~ msgctxt "@label"
  6130. #~ msgid "The next generation 3D printing workflow"
  6131. #~ msgstr "El flujo de trabajo de impresión 3D de próxima generación"
  6132. #~ msgctxt "@text"
  6133. #~ msgid ""
  6134. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6135. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6136. #~ "- Get exclusive access to print profiles from leading brands"
  6137. #~ msgstr ""
  6138. #~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n"
  6139. #~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n"
  6140. #~ "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes"
  6141. #~ msgctxt "@title:window"
  6142. #~ msgid "About "
  6143. #~ msgstr "Acerca de "
  6144. #~ msgctxt "@info:button"
  6145. #~ msgid "Quit Cura"
  6146. #~ msgstr "Salir de Cura"
  6147. #~ msgctxt "@action:checkbox"
  6148. #~ msgid "Infill only"
  6149. #~ msgstr "Solo relleno"
  6150. #~ msgctxt "@info:tooltip"
  6151. #~ msgid "Change active post-processing scripts"
  6152. #~ msgstr "Cambia las secuencias de comandos de posprocesamiento"
  6153. #~ msgctxt "@label:listbox"
  6154. #~ msgid "Feedrate"
  6155. #~ msgstr "Velocidad"
  6156. #~ msgctxt "name"
  6157. #~ msgid "Machine Settings action"
  6158. #~ msgstr "Acción Ajustes de la máquina"
  6159. #~ msgctxt "@info:title"
  6160. #~ msgid "New cloud printers found"
  6161. #~ msgstr "Se han encontrado nuevas impresoras en la nube"
  6162. #~ msgctxt "@info:message"
  6163. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  6164. #~ msgstr "Se han encontrado nuevas impresoras conectadas a tu cuenta; puedes verlas en la lista de impresoras descubiertas."
  6165. #~ msgctxt "@info:status"
  6166. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  6167. #~ msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada"
  6168. #~ msgctxt "@label"
  6169. #~ msgid "Pre-sliced file {0}"
  6170. #~ msgstr "Archivo {0} presegmentado"
  6171. #~ msgctxt "@label"
  6172. #~ msgid ""
  6173. #~ "This plugin contains a license.\n"
  6174. #~ "You need to accept this license to install this plugin.\n"
  6175. #~ "Do you agree with the terms below?"
  6176. #~ msgstr ""
  6177. #~ "Este complemento incluye una licencia.\n"
  6178. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  6179. #~ "¿Acepta las condiciones que aparecen a continuación?"
  6180. #~ msgctxt "@action:button"
  6181. #~ msgid "Accept"
  6182. #~ msgstr "Aceptar"
  6183. #~ msgctxt "@action:button"
  6184. #~ msgid "Decline"
  6185. #~ msgstr "Rechazar"
  6186. #~ msgctxt "@action:inmenu"
  6187. #~ msgid "Show All Settings"
  6188. #~ msgstr "Mostrar todos los ajustes"
  6189. #~ msgctxt "@title:window"
  6190. #~ msgid "Ultimaker Cura"
  6191. #~ msgstr "Ultimaker Cura"
  6192. #~ msgctxt "@title:window"
  6193. #~ msgid "About Cura"
  6194. #~ msgstr "Acerca de Cura"
  6195. #~ msgctxt "@item:inmenu"
  6196. #~ msgid "Flatten active settings"
  6197. #~ msgstr "Aplanar ajustes activos"
  6198. #~ msgctxt "@info:status"
  6199. #~ msgid "Profile has been flattened & activated."
  6200. #~ msgstr "El perfil se ha aplanado y activado."
  6201. #~ msgctxt "X3g Writer Plugin Description"
  6202. #~ msgid "Writes X3g to files"
  6203. #~ msgstr "Escribe X3g en archivos"
  6204. #~ msgctxt "X3g Writer File Description"
  6205. #~ msgid "X3g File"
  6206. #~ msgstr "Archivo X3g"
  6207. #~ msgctxt "X3G Writer File Description"
  6208. #~ msgid "X3G File"
  6209. #~ msgstr "Archivo X3G"
  6210. #~ msgctxt "@item:inmenu"
  6211. #~ msgid "Profile Assistant"
  6212. #~ msgstr "Asistente del perfil"
  6213. #~ msgctxt "@item:inlistbox"
  6214. #~ msgid "Profile Assistant"
  6215. #~ msgstr "Asistente del perfil"
  6216. #~ msgctxt "@action:button"
  6217. #~ msgid "Retry"
  6218. #~ msgstr "Volver a intentar"
  6219. #~ msgctxt "@label:table_header"
  6220. #~ msgid "Print Core"
  6221. #~ msgstr "Print core"
  6222. #~ msgctxt "@label"
  6223. #~ msgid "Don't support overlap with other models"
  6224. #~ msgstr "No crear soporte en otros modelos (por superposición)"
  6225. #~ msgctxt "@label"
  6226. #~ msgid "Modify settings for overlap with other models"
  6227. #~ msgstr "Modificar ajustes de otros modelos (por superposición)"
  6228. #~ msgctxt "@label"
  6229. #~ msgid "Modify settings for infill of other models"
  6230. #~ msgstr "Modificar ajustes del relleno de otros modelos"
  6231. #~ msgctxt "@action:ComboBox option"
  6232. #~ msgid "Update existing"
  6233. #~ msgstr "Actualizar existente"
  6234. #~ msgctxt "@label"
  6235. #~ msgid "Not supported"
  6236. #~ msgstr "No compatible"
  6237. #~ msgctxt "@action:button"
  6238. #~ msgid "Previous"
  6239. #~ msgstr "Anterior"
  6240. #~ msgctxt "@label"
  6241. #~ msgid "Tip"
  6242. #~ msgstr "Consejo"
  6243. #~ msgctxt "@label"
  6244. #~ msgid "Print experiment"
  6245. #~ msgstr "Ensayo de impresión"
  6246. #~ msgctxt "@label"
  6247. #~ msgid "Checklist"
  6248. #~ msgstr "Lista de verificación"
  6249. #~ msgctxt "@label"
  6250. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  6251. #~ msgstr "Seleccione cualquier actualización de este Ultimaker 2."
  6252. #~ msgctxt "@label"
  6253. #~ msgid "Olsson Block"
  6254. #~ msgstr "Bloque Olsson"
  6255. #~ msgctxt "@window:text"
  6256. #~ msgid "Camera rendering: "
  6257. #~ msgstr "Renderizado de cámara: "
  6258. #~ msgctxt "@info:tooltip"
  6259. #~ msgid "Use multi build plate functionality"
  6260. #~ msgstr "Utilizar funcionalidad de placa de impresión múltiple"
  6261. #~ msgctxt "@option:check"
  6262. #~ msgid "Use multi build plate functionality (restart required)"
  6263. #~ msgstr "Utilizar funcionalidad de placa de impresión múltiple (reinicio requerido)"
  6264. #~ msgctxt "@label"
  6265. #~ msgid "Default profiles"
  6266. #~ msgstr "Perfiles predeterminados"
  6267. #~ msgctxt "@label:textbox"
  6268. #~ msgid "search settings"
  6269. #~ msgstr "buscar ajustes"
  6270. #~ msgctxt "@label"
  6271. #~ msgid "Layer Height"
  6272. #~ msgstr "Altura de capa"
  6273. #~ msgctxt "@tooltip"
  6274. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  6275. #~ msgstr "Este perfil de calidad no se encuentra disponible para su configuración de material y tobera actual. Cámbielas para poder habilitar este perfil de calidad."
  6276. #~ msgctxt "@tooltip"
  6277. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  6278. #~ 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"
  6279. #~ msgctxt "@title:menu"
  6280. #~ msgid "&Build plate"
  6281. #~ msgstr "&Placa de impresión"
  6282. #~ msgctxt "@title:settings"
  6283. #~ msgid "&Profile"
  6284. #~ msgstr "&Perfil"
  6285. #~ msgctxt "@action:label"
  6286. #~ msgid "Build plate"
  6287. #~ msgstr "Placa de impresión"
  6288. #~ msgctxt "description"
  6289. #~ msgid "Dump the contents of all settings to a HTML file."
  6290. #~ msgstr "Vuelva el contenido de todas las configuraciones en un archivo HTML."
  6291. #~ msgctxt "name"
  6292. #~ msgid "God Mode"
  6293. #~ msgstr "God Mode"
  6294. #~ msgctxt "description"
  6295. #~ msgid "Create a flattened quality changes profile."
  6296. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  6297. #~ msgctxt "name"
  6298. #~ msgid "Profile Flattener"
  6299. #~ msgstr "Aplanador de perfil"
  6300. #~ msgctxt "description"
  6301. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  6302. #~ msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada."
  6303. #~ msgctxt "name"
  6304. #~ msgid "Print Profile Assistant"
  6305. #~ msgstr "Imprimir asistente del perfil"
  6306. #~ msgctxt "@info:status"
  6307. #~ msgid "Connected over the network."
  6308. #~ msgstr "Conectado a través de la red."
  6309. #~ msgctxt "@info:status"
  6310. #~ msgid "Connected over the network. Please approve the access request on the printer."
  6311. #~ msgstr "Conectado a través de la red. Apruebe la solicitud de acceso en la impresora."
  6312. #~ msgctxt "@info:status"
  6313. #~ msgid "Connected over the network. No access to control the printer."
  6314. #~ msgstr "Conectado a través de la red. No hay acceso para controlar la impresora."
  6315. #~ msgctxt "@info:status"
  6316. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  6317. #~ msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora"
  6318. #~ msgctxt "@info:title"
  6319. #~ msgid "Authentication status"
  6320. #~ msgstr "Estado de la autenticación"
  6321. #~ msgctxt "@info:title"
  6322. #~ msgid "Authentication Status"
  6323. #~ msgstr "Estado de la autenticación"
  6324. #~ msgctxt "@info:tooltip"
  6325. #~ msgid "Re-send the access request"
  6326. #~ msgstr "Reenvía la solicitud de acceso"
  6327. #~ msgctxt "@info:status"
  6328. #~ msgid "Access to the printer accepted"
  6329. #~ msgstr "Acceso a la impresora aceptado"
  6330. #~ msgctxt "@info:status"
  6331. #~ msgid "No access to print with this printer. Unable to send print job."
  6332. #~ msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión."
  6333. #~ msgctxt "@action:button"
  6334. #~ msgid "Request Access"
  6335. #~ msgstr "Solicitar acceso"
  6336. #~ msgctxt "@info:tooltip"
  6337. #~ msgid "Send access request to the printer"
  6338. #~ msgstr "Envía la solicitud de acceso a la impresora"
  6339. #~ msgctxt "@label"
  6340. #~ msgid "Unable to start a new print job."
  6341. #~ msgstr "No se puede iniciar un nuevo trabajo de impresión."
  6342. #~ msgctxt "@label"
  6343. #~ 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."
  6344. #~ msgstr "Un problema con la configuración de Ultimaker impide iniciar la impresión. Soluciónelo antes de continuar."
  6345. #~ msgctxt "@window:title"
  6346. #~ msgid "Mismatched configuration"
  6347. #~ msgstr "Configuración desajustada"
  6348. #~ msgctxt "@label"
  6349. #~ msgid "Are you sure you wish to print with the selected configuration?"
  6350. #~ msgstr "¿Seguro que desea imprimir con la configuración seleccionada?"
  6351. #~ msgctxt "@label"
  6352. #~ 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."
  6353. #~ 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."
  6354. #~ msgctxt "@info:status"
  6355. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  6356. #~ msgstr "Envío de nuevos trabajos (temporalmente) bloqueado; se sigue enviando el trabajo de impresión previo."
  6357. #~ msgctxt "@info:status"
  6358. #~ msgid "Sending data to printer"
  6359. #~ msgstr "Enviando datos a la impresora"
  6360. #~ msgctxt "@info:title"
  6361. #~ msgid "Sending Data"
  6362. #~ msgstr "Enviando datos"
  6363. #~ msgctxt "@info:status"
  6364. #~ msgid "No Printcore loaded in slot {slot_number}"
  6365. #~ msgstr "No se ha cargado ningún PrintCore en la ranura {slot_number}."
  6366. #~ msgctxt "@info:status"
  6367. #~ msgid "No material loaded in slot {slot_number}"
  6368. #~ msgstr "No se ha cargado ningún material en la ranura {slot_number}."
  6369. #~ msgctxt "@label"
  6370. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  6371. #~ msgstr "PrintCore distinto (Cura: {cura_printcore_name}, impresora: {remote_printcore_name}) seleccionado para extrusor {extruder_id}"
  6372. #~ msgctxt "@label"
  6373. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6374. #~ msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  6375. #~ msgctxt "@window:title"
  6376. #~ msgid "Sync with your printer"
  6377. #~ msgstr "Sincronizar con la impresora"
  6378. #~ msgctxt "@label"
  6379. #~ msgid "Would you like to use your current printer configuration in Cura?"
  6380. #~ msgstr "¿Desea utilizar la configuración actual de su impresora en Cura?"
  6381. #~ msgctxt "@label"
  6382. #~ 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."
  6383. #~ 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."
  6384. #~ msgctxt "@action:button"
  6385. #~ msgid "View in Monitor"
  6386. #~ msgstr "Ver en pantalla"
  6387. #~ msgctxt "@info:status"
  6388. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  6389. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}»."
  6390. #~ msgctxt "@info:status"
  6391. #~ msgid "The print job '{job_name}' was finished."
  6392. #~ msgstr "El trabajo de impresión '{job_name}' ha terminado."
  6393. #~ msgctxt "@info:status"
  6394. #~ msgid "Print finished"
  6395. #~ msgstr "Impresión terminada"
  6396. #~ msgctxt "@label:material"
  6397. #~ msgid "Empty"
  6398. #~ msgstr "Vacío"
  6399. #~ msgctxt "@label:material"
  6400. #~ msgid "Unknown"
  6401. #~ msgstr "Desconocido"
  6402. #~ msgctxt "@info:title"
  6403. #~ msgid "Cloud error"
  6404. #~ msgstr "Error de Cloud"
  6405. #~ msgctxt "@info:status"
  6406. #~ msgid "Could not export print job."
  6407. #~ msgstr "No se ha podido exportar el trabajo de impresión."
  6408. #~ msgctxt "@info:description"
  6409. #~ msgid "There was an error connecting to the cloud."
  6410. #~ msgstr "Se ha producido un error al conectarse a la nube."
  6411. #~ msgctxt "@info:status"
  6412. #~ msgid "Uploading via Ultimaker Cloud"
  6413. #~ msgstr "Cargando a través de Ultimaker Cloud"
  6414. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  6415. #~ msgid "Connect to Ultimaker Cloud"
  6416. #~ msgstr "Conectar a Ultimaker Cloud"
  6417. #~ msgctxt "@action"
  6418. #~ msgid "Don't ask me again for this printer."
  6419. #~ msgstr "No volver a preguntarme para esta impresora."
  6420. #~ msgctxt "@info:status"
  6421. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  6422. #~ msgstr "Ahora ya puede enviar y supervisar sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
  6423. #~ msgctxt "@info:status"
  6424. #~ msgid "Connected!"
  6425. #~ msgstr "¡Conectado!"
  6426. #~ msgctxt "@action"
  6427. #~ msgid "Review your connection"
  6428. #~ msgstr "Revise su conexión"
  6429. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  6430. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6431. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  6432. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6433. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  6434. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  6435. #~ msgctxt "@window:title"
  6436. #~ msgid "Existing Connection"
  6437. #~ msgstr "Conexión existente"
  6438. #~ msgctxt "@message:text"
  6439. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  6440. #~ msgstr "Esta impresora o grupo de impresoras ya se ha añadido a Cura. Seleccione otra impresora o grupo de impresoras."
  6441. #~ msgctxt "@label"
  6442. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6443. #~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en la red."
  6444. #~ msgctxt "@info:tooltip"
  6445. #~ msgid "Connect to a printer"
  6446. #~ msgstr "Conecta a una impresora"
  6447. #~ msgctxt "@title"
  6448. #~ msgid "Cura Settings Guide"
  6449. #~ msgstr "Guía de ajustes de Cura"
  6450. #~ msgctxt "@info:tooltip"
  6451. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  6452. #~ msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortogonal."
  6453. #~ msgid "Orthogonal"
  6454. #~ msgstr "Ortográfica"
  6455. #~ msgctxt "description"
  6456. #~ msgid "Manages network connections to Ultimaker 3 printers."
  6457. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  6458. #~ msgctxt "name"
  6459. #~ msgid "UM3 Network Connection"
  6460. #~ msgstr "Conexión de red UM3"
  6461. #~ msgctxt "description"
  6462. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  6463. #~ msgstr "Proporciona información y explicaciones adicionales sobre los ajustes de Cura con imágenes y animaciones."
  6464. #~ msgctxt "name"
  6465. #~ msgid "Settings Guide"
  6466. #~ msgstr "Guía de ajustes"
  6467. #~ msgctxt "@item:inmenu"
  6468. #~ msgid "Cura Settings Guide"
  6469. #~ msgstr "Guía de ajustes de Cura"
  6470. #~ msgctxt "@info:generic"
  6471. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  6472. #~ msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento: [%s]."
  6473. #~ msgctxt "@title:groupbox"
  6474. #~ msgid "User description"
  6475. #~ msgstr "Descripción del usuario"
  6476. #~ msgctxt "@info"
  6477. #~ msgid "These options are not available because you are monitoring a cloud printer."
  6478. #~ msgstr "Estas opciones no se encuentran disponibles porque está supervisando una impresora en la nube."
  6479. #~ msgctxt "@label link to connect manager"
  6480. #~ msgid "Go to Cura Connect"
  6481. #~ msgstr "Ir a Cura Connect"
  6482. #~ msgctxt "@info"
  6483. #~ msgid "All jobs are printed."
  6484. #~ msgstr "Se han imprimido todos los trabajos."
  6485. #~ msgctxt "@label link to connect manager"
  6486. #~ msgid "View print history"
  6487. #~ msgstr "Ver historial de impresión"
  6488. #~ msgctxt "@label"
  6489. #~ msgid ""
  6490. #~ "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"
  6491. #~ "\n"
  6492. #~ "Select your printer from the list below:"
  6493. #~ msgstr ""
  6494. #~ "Para imprimir directamente en la impresora a través de la red, asegúrese de que ésta 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"
  6495. #~ "\n"
  6496. #~ "Seleccione la impresora de la siguiente lista:"
  6497. #~ msgctxt "@info"
  6498. #~ msgid ""
  6499. #~ "Please make sure your printer has a connection:\n"
  6500. #~ "- Check if the printer is turned on.\n"
  6501. #~ "- Check if the printer is connected to the network."
  6502. #~ msgstr ""
  6503. #~ "Asegúrese de que su impresora está conectada:\n"
  6504. #~ "- Compruebe que la impresora está encendida.\n"
  6505. #~ "- Compruebe que la impresora está conectada a la red."
  6506. #~ msgctxt "@option:check"
  6507. #~ msgid "See only current build plate"
  6508. #~ msgstr "Ver solo placa de impresión actual"
  6509. #~ msgctxt "@action:button"
  6510. #~ msgid "Arrange to all build plates"
  6511. #~ msgstr "Organizar todas las placas de impresión"
  6512. #~ msgctxt "@action:button"
  6513. #~ msgid "Arrange current build plate"
  6514. #~ msgstr "Organizar placa de impresión actual"
  6515. #~ msgctxt "description"
  6516. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  6517. #~ 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)."
  6518. #~ msgctxt "name"
  6519. #~ msgid "X3GWriter"
  6520. #~ msgstr "X3GWriter"
  6521. #~ msgctxt "description"
  6522. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  6523. #~ msgstr "Lee archivos SVG como trayectorias de herramienta para solucionar errores en los movimientos de la impresora."
  6524. #~ msgctxt "name"
  6525. #~ msgid "SVG Toolpath Reader"
  6526. #~ msgstr "Lector de trayectoria de herramienta de SVG"
  6527. #~ msgctxt "@item:inmenu"
  6528. #~ msgid "Changelog"
  6529. #~ msgstr "Registro de cambios"
  6530. #~ msgctxt "@item:inmenu"
  6531. #~ msgid "Show Changelog"
  6532. #~ msgstr "Mostrar registro de cambios"
  6533. #~ msgctxt "@info:status"
  6534. #~ msgid "Sending data to remote cluster"
  6535. #~ msgstr "Enviando datos al clúster remoto"
  6536. #~ msgctxt "@info:status"
  6537. #~ msgid "Connect to Ultimaker Cloud"
  6538. #~ msgstr "Conectar a Ultimaker Cloud"
  6539. #~ msgctxt "@info"
  6540. #~ msgid "Cura collects anonymized usage statistics."
  6541. #~ msgstr "Cura recopila estadísticas de uso de forma anónima."
  6542. #~ msgctxt "@info:title"
  6543. #~ msgid "Collecting Data"
  6544. #~ msgstr "Recopilando datos"
  6545. #~ msgctxt "@action:button"
  6546. #~ msgid "More info"
  6547. #~ msgstr "Más información"
  6548. #~ msgctxt "@action:tooltip"
  6549. #~ msgid "See more information on what data Cura sends."
  6550. #~ msgstr "Obtenga más información sobre qué datos envía Cura."
  6551. #~ msgctxt "@action:button"
  6552. #~ msgid "Allow"
  6553. #~ msgstr "Permitir"
  6554. #~ msgctxt "@action:tooltip"
  6555. #~ 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."
  6556. #~ 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."
  6557. #~ msgctxt "@item:inmenu"
  6558. #~ msgid "Evaluation"
  6559. #~ msgstr "Evaluación"
  6560. #~ msgctxt "@info:title"
  6561. #~ msgid "Network enabled printers"
  6562. #~ msgstr "Impresoras de red habilitadas"
  6563. #~ msgctxt "@info:title"
  6564. #~ msgid "Local printers"
  6565. #~ msgstr "Impresoras locales"
  6566. #~ msgctxt "@info:backup_failed"
  6567. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  6568. #~ msgstr "Se ha intentado restaurar una copia de seguridad de Cura que no coincide con la versión actual."
  6569. #~ msgctxt "@title"
  6570. #~ msgid "Machine Settings"
  6571. #~ msgstr "Ajustes de la máquina"
  6572. #~ msgctxt "@label"
  6573. #~ msgid "Printer Settings"
  6574. #~ msgstr "Ajustes de la impresora"
  6575. #~ msgctxt "@option:check"
  6576. #~ msgid "Origin at center"
  6577. #~ msgstr "Origen en el centro"
  6578. #~ msgctxt "@option:check"
  6579. #~ msgid "Heated bed"
  6580. #~ msgstr "Plataforma caliente"
  6581. #~ msgctxt "@label"
  6582. #~ msgid "Printhead Settings"
  6583. #~ msgstr "Ajustes del cabezal de impresión"
  6584. #~ msgctxt "@tooltip"
  6585. #~ 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\"."
  6586. #~ 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»."
  6587. #~ msgctxt "@tooltip"
  6588. #~ 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\"."
  6589. #~ 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»."
  6590. #~ msgctxt "@tooltip"
  6591. #~ 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\"."
  6592. #~ 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»."
  6593. #~ msgctxt "@tooltip"
  6594. #~ 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\"."
  6595. #~ 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»."
  6596. #~ msgctxt "@label"
  6597. #~ msgid "Gantry height"
  6598. #~ msgstr "Altura del caballete"
  6599. #~ msgctxt "@tooltip"
  6600. #~ 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\"."
  6601. #~ 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»."
  6602. #~ msgctxt "@label"
  6603. #~ msgid "Start G-code"
  6604. #~ msgstr "Iniciar GCode"
  6605. #~ msgctxt "@tooltip"
  6606. #~ msgid "G-code commands to be executed at the very start."
  6607. #~ msgstr "Los comandos de GCode que se ejecutarán justo al inicio."
  6608. #~ msgctxt "@label"
  6609. #~ msgid "End G-code"
  6610. #~ msgstr "Finalizar GCode"
  6611. #~ msgctxt "@tooltip"
  6612. #~ msgid "G-code commands to be executed at the very end."
  6613. #~ msgstr "Los comandos de GCode que se ejecutarán justo al final."
  6614. #~ msgctxt "@label"
  6615. #~ msgid "Nozzle Settings"
  6616. #~ msgstr "Ajustes de la tobera"
  6617. #~ msgctxt "@tooltip"
  6618. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  6619. #~ msgstr "El diámetro nominal del filamento compatible con la impresora. El diámetro exacto se sobrescribirá según el material o el perfil."
  6620. #~ msgctxt "@label"
  6621. #~ msgid "Extruder Start G-code"
  6622. #~ msgstr "GCode inicial del extrusor"
  6623. #~ msgctxt "@label"
  6624. #~ msgid "Extruder End G-code"
  6625. #~ msgstr "GCode final del extrusor"
  6626. #~ msgctxt "@label"
  6627. #~ msgid "Changelog"
  6628. #~ msgstr "Registro de cambios"
  6629. #~ msgctxt "@title:window"
  6630. #~ msgid "User Agreement"
  6631. #~ msgstr "Acuerdo de usuario"
  6632. #~ msgctxt "@alabel"
  6633. #~ msgid "Enter the IP address or hostname of your printer on the network."
  6634. #~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red."
  6635. #~ msgctxt "@info"
  6636. #~ msgid "Please select a network connected printer to monitor."
  6637. #~ msgstr "Seleccione la impresora conectada a la red que desee supervisar."
  6638. #~ msgctxt "@info"
  6639. #~ msgid "Please connect your Ultimaker printer to your local network."
  6640. #~ msgstr "Conecte su impresora Ultimaker a su red local."
  6641. #~ msgctxt "@text:window"
  6642. #~ 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."
  6643. #~ 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."
  6644. #~ msgctxt "@text:window"
  6645. #~ msgid "I don't want to send this data"
  6646. #~ msgstr "No deseo enviar estos datos"
  6647. #~ msgctxt "@text:window"
  6648. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  6649. #~ msgstr "Permita que estos datos se envíen a Ultimaker y ayúdenos a mejorar Cura"
  6650. #~ msgctxt "@label"
  6651. #~ msgid "No print selected"
  6652. #~ msgstr "No ha seleccionado ninguna impresora"
  6653. #~ msgctxt "@info:tooltip"
  6654. #~ 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."
  6655. #~ 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."
  6656. #~ msgctxt "@title"
  6657. #~ msgid "Select Printer Upgrades"
  6658. #~ msgstr "Seleccionar actualizaciones de impresora"
  6659. #~ msgctxt "@label"
  6660. #~ 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."
  6661. #~ 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."
  6662. #~ msgctxt "@tooltip"
  6663. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  6664. #~ msgstr "Este perfil de calidad no se encuentra disponible para su configuración de material y tobera actual. Cámbiela para poder habilitar este perfil de calidad."
  6665. #~ msgctxt "@label shown when we load a Gcode file"
  6666. #~ msgid "Print setup disabled. G code file can not be modified."
  6667. #~ msgstr "Configuración de impresión deshabilitada. No se puede modificar el GCode."
  6668. #~ msgctxt "@label"
  6669. #~ msgid "See the material compatibility chart"
  6670. #~ msgstr "Ver el gráfico de compatibilidad de materiales"
  6671. #~ msgctxt "@label"
  6672. #~ msgid "View types"
  6673. #~ msgstr "Ver tipos"
  6674. #~ msgctxt "@label"
  6675. #~ msgid "Hi "
  6676. #~ msgstr "Hola "
  6677. #~ msgctxt "@text"
  6678. #~ msgid ""
  6679. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  6680. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  6681. #~ "- Get exclusive access to material profiles from leading brands"
  6682. #~ msgstr ""
  6683. #~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n"
  6684. #~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n"
  6685. #~ "- Disfrute de acceso exclusivo a perfiles de materiales de marcas líderes"
  6686. #~ msgctxt "@label:PrintjobStatus"
  6687. #~ msgid "Unable to Slice"
  6688. #~ msgstr "No se puede segmentar"
  6689. #~ msgctxt "@label"
  6690. #~ msgid "Time specification"
  6691. #~ msgstr "Especificación de tiempos"
  6692. #~ msgctxt "@label"
  6693. #~ msgid "Material specification"
  6694. #~ msgstr "Especificación de materiales"
  6695. #~ msgctxt "@title:tab"
  6696. #~ msgid "Add a printer to Cura"
  6697. #~ msgstr "Añadir una impresora a Cura"
  6698. #~ msgctxt "@title:tab"
  6699. #~ msgid ""
  6700. #~ "Select the printer you want to use from the list below.\n"
  6701. #~ "\n"
  6702. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  6703. #~ msgstr ""
  6704. #~ "Seleccione la impresora que desee utilizar de la lista que se muestra a continuación.\n"
  6705. #~ "\n"
  6706. #~ "Si no encuentra su impresora en la lista, utilice la opción \"Custom FFF Printer\" (Impresora FFF personalizada) de la categoría Personalizado y configure los ajustes para adaptarlos a su impresora en el siguiente cuadro de diálogo."
  6707. #~ msgctxt "@label"
  6708. #~ msgid "Printer Name"
  6709. #~ msgstr "Nombre de la impresora"
  6710. #~ msgctxt "@action:button"
  6711. #~ msgid "Add Printer"
  6712. #~ msgstr "Agregar impresora"
  6713. #~ msgid "Modify G-Code"
  6714. #~ msgstr "Modificar GCode"
  6715. #~ msgctxt "@info:status"
  6716. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  6717. #~ 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."
  6718. #~ msgctxt "@info:status"
  6719. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  6720. #~ msgstr "El material seleccionado no es compatible con la máquina o la configuración seleccionada."
  6721. #~ msgctxt "@info:title"
  6722. #~ msgid "Incompatible Material"
  6723. #~ msgstr "Material incompatible"
  6724. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6725. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6726. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  6727. #~ msgctxt "@title"
  6728. #~ msgid "Toolbox"
  6729. #~ msgstr "Cuadro de herramientas"
  6730. #~ msgctxt "@label"
  6731. #~ msgid "Not available"
  6732. #~ msgstr "No disponible"
  6733. #~ msgctxt "@label"
  6734. #~ msgid "Unreachable"
  6735. #~ msgstr "No se puede conectar"
  6736. #~ msgctxt "@label"
  6737. #~ msgid "Available"
  6738. #~ msgstr "Disponible"
  6739. #~ msgctxt "@label:status"
  6740. #~ msgid "Preparing"
  6741. #~ msgstr "Preparando"
  6742. #~ msgctxt "@label:status"
  6743. #~ msgid "Pausing"
  6744. #~ msgstr "Pausando"
  6745. #~ msgctxt "@label:status"
  6746. #~ msgid "Resuming"
  6747. #~ msgstr "Reanudando"
  6748. #~ msgctxt "@label"
  6749. #~ msgid "Waiting for: Unavailable printer"
  6750. #~ msgstr "Esperando: impresora no disponible"
  6751. #~ msgctxt "@label"
  6752. #~ msgid "Waiting for: First available"
  6753. #~ msgstr "Esperando: primera disponible"
  6754. #~ msgctxt "@label"
  6755. #~ msgid "Waiting for: "
  6756. #~ msgstr "Esperando: "
  6757. #~ msgctxt "@label"
  6758. #~ msgid "Configuration change"
  6759. #~ msgstr "Cambio de configuración"
  6760. #~ msgctxt "@label"
  6761. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  6762. #~ msgstr "Es necesario modificar la siguiente configuración de la impresora asignada %1:"
  6763. #~ msgctxt "@label"
  6764. #~ msgid "Override"
  6765. #~ msgstr "Anular"
  6766. #~ msgctxt "@label"
  6767. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  6768. #~ msgstr "Iniciar un trabajo de impresión con una configuración no compatible puede causar daños en su impresora 3D. ¿Seguro de que desea sobrescribir la configuración e imprimir %1?"
  6769. #~ msgctxt "@window:title"
  6770. #~ msgid "Override configuration configuration and start print"
  6771. #~ msgstr "Sobrescribir la configuración e iniciar la impresión"
  6772. #~ msgctxt "@label link to connect manager"
  6773. #~ msgid "Manage queue"
  6774. #~ msgstr "Administrar cola"
  6775. #~ msgctxt "@label"
  6776. #~ msgid "Printing"
  6777. #~ msgstr "Imprimiendo"
  6778. #~ msgctxt "@label link to connect manager"
  6779. #~ msgid "Manage printers"
  6780. #~ msgstr "Administrar impresoras"
  6781. #~ msgctxt "@action:button"
  6782. #~ msgid "Activate Configuration"
  6783. #~ msgstr "Activar configuración"
  6784. #~ msgctxt "@info:tooltip"
  6785. #~ msgid "Load the configuration of the printer into Cura"
  6786. #~ msgstr "Carga la configuración de la impresora en Cura"
  6787. #~ msgctxt "@label"
  6788. #~ msgid "Show Travels"
  6789. #~ msgstr "Mostrar desplazamientos"
  6790. #~ msgctxt "@label"
  6791. #~ msgid "Show Helpers"
  6792. #~ msgstr "Mostrar asistentes"
  6793. #~ msgctxt "@label"
  6794. #~ msgid "Show Shell"
  6795. #~ msgstr "Mostrar perímetro"
  6796. #~ msgctxt "@label"
  6797. #~ msgid "Show Infill"
  6798. #~ msgstr "Mostrar relleno"
  6799. #~ msgctxt "@text:window"
  6800. #~ msgid "I don't want to send these data"
  6801. #~ msgstr "No quiero enviar estos datos"
  6802. #~ msgctxt "@text:window"
  6803. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  6804. #~ msgstr "Permita enviar estos datos a Ultimaker y ayúdenos a mejorar Cura"
  6805. #~ msgctxt "@label"
  6806. #~ msgid "Printer type:"
  6807. #~ msgstr "Tipo de impresora:"
  6808. #~ msgctxt "@label"
  6809. #~ msgid "Connection:"
  6810. #~ msgstr "Conexión:"
  6811. #~ msgctxt "@label"
  6812. #~ msgid "State:"
  6813. #~ msgstr "Estado:"
  6814. #~ msgctxt "@label:MonitorStatus"
  6815. #~ msgid "Waiting for a printjob"
  6816. #~ msgstr "Esperando un trabajo de impresión"
  6817. #~ msgctxt "@label:MonitorStatus"
  6818. #~ msgid "Waiting for someone to clear the build plate"
  6819. #~ msgstr "Esperando a que alguien limpie la placa de impresión"
  6820. #~ msgctxt "@label:MonitorStatus"
  6821. #~ msgid "Aborting print..."
  6822. #~ msgstr "Cancelando impresión..."
  6823. #~ msgctxt "@label"
  6824. #~ msgid "Protected profiles"
  6825. #~ msgstr "Perfiles protegidos"
  6826. #~ msgctxt "@label"
  6827. #~ msgid "Printer Name:"
  6828. #~ msgstr "Nombre de la impresora:"
  6829. #~ msgctxt "@label"
  6830. #~ msgid "Profile:"
  6831. #~ msgstr "Perfil:"
  6832. #~ msgctxt "@label:textbox"
  6833. #~ msgid "Search..."
  6834. #~ msgstr "Buscar..."
  6835. #~ msgctxt "@action:inmenu"
  6836. #~ msgid "Collapse All"
  6837. #~ msgstr "Contraer todo"
  6838. #~ msgctxt "@action:inmenu"
  6839. #~ msgid "Expand All"
  6840. #~ msgstr "Ampliar todo"
  6841. #~ msgctxt "@label:header configurations"
  6842. #~ msgid "Available configurations"
  6843. #~ msgstr "Configuraciones disponibles"
  6844. #~ msgctxt "@label:extruder label"
  6845. #~ msgid "Extruder"
  6846. #~ msgstr "Extrusor"
  6847. #~ msgctxt "@label:extruder label"
  6848. #~ msgid "Yes"
  6849. #~ msgstr "Sí"
  6850. #~ msgctxt "@label:extruder label"
  6851. #~ msgid "No"
  6852. #~ msgstr "No"
  6853. #~ msgctxt "@label:listbox"
  6854. #~ msgid "Print Setup"
  6855. #~ msgstr "Configuración de impresión"
  6856. #~ msgctxt "@label:listbox"
  6857. #~ msgid ""
  6858. #~ "Print Setup disabled\n"
  6859. #~ "G-code files cannot be modified"
  6860. #~ msgstr ""
  6861. #~ "Ajustes de impresión deshabilitados\n"
  6862. #~ "No se pueden modificar los archivos GCode"
  6863. #~ msgctxt "@label Hours and minutes"
  6864. #~ msgid "00h 00min"
  6865. #~ msgstr "00 h 00 min"
  6866. #~ msgctxt "@tooltip"
  6867. #~ msgid "Time specification"
  6868. #~ msgstr "Especificación de tiempos"
  6869. #~ msgctxt "@label"
  6870. #~ msgid "Cost specification"
  6871. #~ msgstr "Especificación de costes"
  6872. #~ msgctxt "@label"
  6873. #~ msgid "Total:"
  6874. #~ msgstr "Total:"
  6875. #~ msgctxt "@tooltip"
  6876. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  6877. #~ 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."
  6878. #~ msgctxt "@tooltip"
  6879. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  6880. #~ msgstr "<b>Configuración de impresión personalizada</b><br/><br/>Imprimir con un control muy detallado del proceso de segmentación."
  6881. #~ msgctxt "@action:inmenu menubar:help"
  6882. #~ msgid "Show Engine &Log..."
  6883. #~ msgstr "&Mostrar registro del motor..."
  6884. #~ msgctxt "@action:menu"
  6885. #~ msgid "Browse packages..."
  6886. #~ msgstr "Examinar paquetes..."
  6887. #~ msgctxt "@action:inmenu menubar:view"
  6888. #~ msgid "Expand/Collapse Sidebar"
  6889. #~ msgstr "Expandir/contraer barra lateral"
  6890. #~ msgctxt "@label:PrintjobStatus"
  6891. #~ msgid "Please load a 3D model"
  6892. #~ msgstr "Cargue un modelo en 3D"
  6893. #~ msgctxt "@label:PrintjobStatus"
  6894. #~ msgid "Ready to slice"
  6895. #~ msgstr "Preparado para segmentar"
  6896. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  6897. #~ msgid "Ready to %1"
  6898. #~ msgstr "Listo para %1"
  6899. #~ msgctxt "@label:PrintjobStatus"
  6900. #~ msgid "Slicing unavailable"
  6901. #~ msgstr "No se puede segmentar"
  6902. #~ msgctxt "@info:tooltip"
  6903. #~ msgid "Slice current printjob"
  6904. #~ msgstr "Fragmentar trabajo de impresión actual"
  6905. #~ msgctxt "@info:tooltip"
  6906. #~ msgid "Cancel slicing process"
  6907. #~ msgstr "Cancelar proceso de fragmentación"
  6908. #~ msgctxt "@label:Printjob"
  6909. #~ msgid "Prepare"
  6910. #~ msgstr "Preparar"
  6911. #~ msgctxt "@label:Printjob"
  6912. #~ msgid "Cancel"
  6913. #~ msgstr "Cancelar"
  6914. #~ msgctxt "@info:tooltip"
  6915. #~ msgid "Select the active output device"
  6916. #~ msgstr "Seleccione el dispositivo de salida activo"
  6917. #~ msgctxt "@title:menu"
  6918. #~ msgid "&View"
  6919. #~ msgstr "&Ver"
  6920. #~ msgctxt "@title:menu"
  6921. #~ msgid "&Settings"
  6922. #~ msgstr "A&justes"
  6923. #~ msgctxt "@title:menu menubar:toplevel"
  6924. #~ msgid "&Toolbox"
  6925. #~ msgstr "&Cuadro de herramientas"
  6926. #~ msgctxt "@action:button"
  6927. #~ msgid "Open File"
  6928. #~ msgstr "Abrir archivo"
  6929. #~ msgctxt "@tooltip"
  6930. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  6931. #~ 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"
  6932. #~ msgctxt "@label"
  6933. #~ msgid "Print Speed"
  6934. #~ msgstr "Velocidad de impresión"
  6935. #~ msgctxt "@label"
  6936. #~ msgid "Slower"
  6937. #~ msgstr "Más lento"
  6938. #~ msgctxt "@label"
  6939. #~ msgid "Faster"
  6940. #~ msgstr "Más rápido"
  6941. #~ msgctxt "@label"
  6942. #~ msgid "Enable gradual"
  6943. #~ msgstr "Habilitar gradual"
  6944. #~ msgctxt "@label"
  6945. #~ msgid "Generate Support"
  6946. #~ msgstr "Generar soporte"
  6947. #~ msgctxt "@label"
  6948. #~ msgid "Build Plate Adhesion"
  6949. #~ msgstr "Adherencia de la placa de impresión"
  6950. #~ msgctxt "@label"
  6951. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6952. #~ msgstr "¿Necesita ayuda para mejorar sus impresiones?<br>Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>"
  6953. #~ msgctxt "@title:window"
  6954. #~ msgid "Engine Log"
  6955. #~ msgstr "Registro del motor"
  6956. #~ msgctxt "@label"
  6957. #~ msgid "Printer type"
  6958. #~ msgstr "Tipo de impresora"
  6959. #~ msgctxt "@label"
  6960. #~ msgid "Use glue with this material combination"
  6961. #~ msgstr "Utilizar pegamento con esta combinación de materiales"
  6962. #~ msgctxt "@label"
  6963. #~ msgid "Check compatibility"
  6964. #~ msgstr "Comprobar compatibilidad"
  6965. #~ msgctxt "@tooltip"
  6966. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6967. #~ msgstr "Haga clic para comprobar la compatibilidad de los materiales en Utimaker.com."
  6968. #~ msgctxt "description"
  6969. #~ msgid "Shows changes since latest checked version."
  6970. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  6971. #~ msgctxt "name"
  6972. #~ msgid "Changelog"
  6973. #~ msgstr "Registro de cambios"
  6974. #~ msgctxt "description"
  6975. #~ msgid "Create a flattend quality changes profile."
  6976. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  6977. #~ msgctxt "name"
  6978. #~ msgid "Profile flatener"
  6979. #~ msgstr "Aplanador de perfil"
  6980. #~ msgctxt "description"
  6981. #~ msgid "Ask the user once if he/she agrees with our license."
  6982. #~ msgstr "Preguntar al usuario una vez si acepta la licencia."
  6983. #~ msgctxt "name"
  6984. #~ msgid "UserAgreement"
  6985. #~ msgstr "UserAgreement"
  6986. #~ msgctxt "@warning:status"
  6987. #~ msgid "Please generate G-code before saving."
  6988. #~ msgstr "Genere un G-code antes de guardar."
  6989. #~ msgctxt "@action"
  6990. #~ msgid "Upgrade Firmware"
  6991. #~ msgstr "Actualizar firmware"
  6992. #~ msgctxt "@label unknown material"
  6993. #~ msgid "Unknown"
  6994. #~ msgstr "Desconocido"
  6995. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6996. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6997. #~ msgstr "No hay ningún perfil personalizado que importar en el archivo <filename>{0}</filename>"
  6998. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6999. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  7000. #~ msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  7001. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7002. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  7003. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  7004. #~ msgctxt "@title:window"
  7005. #~ msgid "Confirm uninstall "
  7006. #~ msgstr "Confirmar desinstalación "
  7007. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  7008. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7009. #~ msgstr "%1 m/~ %2 g/~ %4 %3"
  7010. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  7011. #~ msgid "%1m / ~ %2g"
  7012. #~ msgstr "%1 m/~ %2 g"
  7013. #~ msgctxt "@title"
  7014. #~ msgid "Upgrade Firmware"
  7015. #~ msgstr "Actualización de firmware"
  7016. #~ msgctxt "@action:button"
  7017. #~ msgid "Print with Doodle3D WiFi-Box"
  7018. #~ msgstr "Imprimir con un enrutador Doodle3D"
  7019. #~ msgctxt "@properties:tooltip"
  7020. #~ msgid "Print with Doodle3D WiFi-Box"
  7021. #~ msgstr "Imprimir con un enrutador Doodle3D"
  7022. #~ msgctxt "@info:status"
  7023. #~ msgid "Connecting to Doodle3D Connect"
  7024. #~ msgstr "Conectar con Doodle3D Connect"
  7025. #~ msgctxt "@info:status"
  7026. #~ msgid "Sending data to Doodle3D Connect"
  7027. #~ msgstr "Enviando datos a Doodle3D Connect"
  7028. #~ msgctxt "@info:status"
  7029. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  7030. #~ msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?"
  7031. #~ msgctxt "@info:status"
  7032. #~ msgid "Storing data on Doodle3D Connect"
  7033. #~ msgstr "Guardando datos en Doodle3D Connect"
  7034. #~ msgctxt "@info:status"
  7035. #~ msgid "File sent to Doodle3D Connect"
  7036. #~ msgstr "Archivo enviado a Doodle3D Connect"
  7037. #~ msgctxt "@action:button"
  7038. #~ msgid "Open Connect..."
  7039. #~ msgstr "Abrir Connect..."
  7040. #~ msgctxt "@info:tooltip"
  7041. #~ msgid "Open the Doodle3D Connect web interface"
  7042. #~ msgstr "Abrir la interfaz web de Doodle3D Connect"
  7043. #~ msgctxt "@item:inlistbox"
  7044. #~ msgid "Blender file"
  7045. #~ msgstr "Archivo Blender"
  7046. #~ msgctxt "@info:status"
  7047. #~ msgid ""
  7048. #~ "Could not export using \"{}\" quality!\n"
  7049. #~ "Felt back to \"{}\"."
  7050. #~ msgstr ""
  7051. #~ "No ha podido exportarse con la calidad \"{}\"\n"
  7052. #~ "Retroceder a \"{}\"."
  7053. #~ msgctxt "@label"
  7054. #~ msgid "Contact"
  7055. #~ msgstr "Contacto"
  7056. #~ msgctxt "@label"
  7057. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  7058. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3."
  7059. #~ msgctxt "@label"
  7060. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  7061. #~ msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3."
  7062. #~ msgctxt "@label: arg 1 is group name"
  7063. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  7064. #~ msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  7065. #~ msgctxt "@label link to connect manager"
  7066. #~ msgid "Add/Remove printers"
  7067. #~ msgstr "Agregar/eliminar impresoras"
  7068. #~ msgctxt "@info:tooltip"
  7069. #~ msgid "Opens the print jobs page with your default web browser."
  7070. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  7071. #~ msgctxt "@action:button"
  7072. #~ msgid "View print jobs"
  7073. #~ msgstr "Ver trabajos de impresión"
  7074. #~ msgctxt "@label:status"
  7075. #~ msgid "Preparing to print"
  7076. #~ msgstr "Preparando para impresión"
  7077. #~ msgctxt "@label:status"
  7078. #~ msgid "Available"
  7079. #~ msgstr "Disponible"
  7080. #~ msgctxt "@label:status"
  7081. #~ msgid "Lost connection with the printer"
  7082. #~ msgstr "Se ha perdido la conexión con la impresora."
  7083. #~ msgctxt "@label:status"
  7084. #~ msgid "Unknown"
  7085. #~ msgstr "Desconocido"
  7086. #~ msgctxt "@label:status"
  7087. #~ msgid "Disabled"
  7088. #~ msgstr "Deshabilitado"
  7089. #~ msgctxt "@label:status"
  7090. #~ msgid "Reserved"
  7091. #~ msgstr "Reservado"
  7092. #~ msgctxt "@label"
  7093. #~ msgid "Preparing to print"
  7094. #~ msgstr "Preparando para impresión"
  7095. #~ msgctxt "@label:status"
  7096. #~ msgid "Print aborted"
  7097. #~ msgstr "Impresión cancelada"
  7098. #~ msgctxt "@label"
  7099. #~ msgid "Not accepting print jobs"
  7100. #~ msgstr "No se aceptan trabajos de impresión"
  7101. #~ msgctxt "@label"
  7102. #~ msgid "Finishes at: "
  7103. #~ msgstr "Termina a las: "
  7104. #~ msgctxt "@label"
  7105. #~ msgid "Clear build plate"
  7106. #~ msgstr "Borrar placa de impresión"
  7107. #~ msgctxt "@label"
  7108. #~ msgid "Waiting for configuration change"
  7109. #~ msgstr "Esperando a que se cambie la configuración"
  7110. #~ msgctxt "@title"
  7111. #~ msgid "Print jobs"
  7112. #~ msgstr "Trabajos de impresión"
  7113. #~ msgctxt "@label:title"
  7114. #~ msgid "Printers"
  7115. #~ msgstr "Impresoras"
  7116. #~ msgctxt "@action:button"
  7117. #~ msgid "View printers"
  7118. #~ msgstr "Ver impresoras"
  7119. #~ msgctxt "@label:"
  7120. #~ msgid "Pause"
  7121. #~ msgstr "Pausar"
  7122. #~ msgctxt "@label:"
  7123. #~ msgid "Resume"
  7124. #~ msgstr "Reanudar"
  7125. #~ msgctxt "@label:"
  7126. #~ msgid "Abort Print"
  7127. #~ msgstr "Cancelar impresión"
  7128. #~ msgctxt "@option:openProject"
  7129. #~ msgid "Always ask"
  7130. #~ msgstr "Preguntar siempre"
  7131. #~ msgctxt "@label"
  7132. #~ msgid "Override Profile"
  7133. #~ msgstr "Anular perfil"
  7134. #~ msgctxt "@info:tooltip"
  7135. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  7136. #~ 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)"
  7137. #~ msgctxt "@option:check"
  7138. #~ msgid "Do not arrange objects on load"
  7139. #~ msgstr "No organizar objetos al cargar"
  7140. #~ msgctxt "@action:inmenu menubar:file"
  7141. #~ msgid "&Save Selection to File"
  7142. #~ msgstr "&Guardar selección en archivo"
  7143. #~ msgctxt "@title:menu menubar:file"
  7144. #~ msgid "Save &As..."
  7145. #~ msgstr "Guardar &como..."
  7146. #~ msgctxt "@title:menu menubar:file"
  7147. #~ msgid "Save &Project..."
  7148. #~ msgstr "Guardar &proyecto..."
  7149. # Added after the string freeze.
  7150. #~ msgctxt "@label"
  7151. #~ msgid "Use adhesion sheet or glue with this material combination"
  7152. #~ msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales"
  7153. #~ msgctxt "description"
  7154. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7155. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  7156. #~ msgctxt "name"
  7157. #~ msgid "Doodle3D WiFi-Box"
  7158. #~ msgstr "Enrutador Doodle3D"
  7159. #~ msgctxt "description"
  7160. #~ msgid "Provides an edit window for direct script editing."
  7161. #~ msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos."
  7162. #~ msgctxt "name"
  7163. #~ msgid "Live scripting tool"
  7164. #~ msgstr "Herramienta de secuencia de comandos en directo"
  7165. #~ msgctxt "description"
  7166. #~ msgid "Helps to open Blender files directly in Cura."
  7167. #~ msgstr "Ayuda a abrir archivos de Blender directamente en Cura."
  7168. #~ msgctxt "name"
  7169. #~ msgid "Blender Integration (experimental)"
  7170. #~ msgstr "Integración de Blender (experimental)"
  7171. #~ msgctxt "@info:title"
  7172. #~ msgid "Model Checker Warning"
  7173. #~ msgstr "Advertencia del comprobador de modelos"
  7174. #~ msgctxt "@info:status"
  7175. #~ msgid ""
  7176. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  7177. #~ "Tips that may be useful to improve the print quality:\n"
  7178. #~ "1) Use rounded corners.\n"
  7179. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  7180. #~ "3) Use a different material."
  7181. #~ msgstr ""
  7182. #~ "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"
  7183. #~ "Consejos para mejorar la calidad de la impresión:\n"
  7184. #~ "1) Utilizar esquinas redondeadas.\n"
  7185. #~ "2) Apagar el ventilador (solo si el modelo no tiene detalles pequeños).\n"
  7186. #~ "3) Utilizar otro material."
  7187. #~ msgctxt "@info:status"
  7188. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7189. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  7190. #~ msgctxt "@info:status"
  7191. #~ msgid ""
  7192. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  7193. #~ "\n"
  7194. #~ "Thanks!"
  7195. #~ msgstr ""
  7196. #~ "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"
  7197. #~ "\n"
  7198. #~ "Gracias."
  7199. #~ msgctxt "@info:status"
  7200. #~ msgid ""
  7201. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7202. #~ "\n"
  7203. #~ "Sorry!"
  7204. #~ msgstr ""
  7205. #~ "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"
  7206. #~ "\n"
  7207. #~ "Perdone las molestias."
  7208. #~ msgctxt "@item:inlistbox"
  7209. #~ msgid "SolidWorks part file"
  7210. #~ msgstr "Archivo de elementos de SolidWorks"
  7211. #~ msgctxt "@item:inlistbox"
  7212. #~ msgid "SolidWorks assembly file"
  7213. #~ msgstr "Archivo de ensamblado de SolidWorks"
  7214. #~ msgctxt "@item:inlistbox"
  7215. #~ msgid "SolidWorks drawing file"
  7216. #~ msgstr "Archivo de dibujo de SolidWorks"
  7217. #~ msgctxt "@info:status"
  7218. #~ msgid ""
  7219. #~ "Dear customer,\n"
  7220. #~ "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"
  7221. #~ "\n"
  7222. #~ "With kind regards\n"
  7223. #~ " - Thomas Karl Pietrowski"
  7224. #~ msgstr ""
  7225. #~ "Estimado cliente:\n"
  7226. #~ "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"
  7227. #~ "\n"
  7228. #~ "Atentamente\n"
  7229. #~ " - Thomas Karl Pietrowski"
  7230. #~ msgctxt "@info:status"
  7231. #~ msgid ""
  7232. #~ "Dear customer,\n"
  7233. #~ "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"
  7234. #~ "\n"
  7235. #~ "With kind regards\n"
  7236. #~ " - Thomas Karl Pietrowski"
  7237. #~ msgstr ""
  7238. #~ "Estimado cliente:\n"
  7239. #~ "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"
  7240. #~ "\n"
  7241. #~ "Atentamente\n"
  7242. #~ " - Thomas Karl Pietrowski"
  7243. #~ msgid "Configure"
  7244. #~ msgstr "Configurar"
  7245. #~ msgid "Installation guide for SolidWorks macro"
  7246. #~ msgstr "Guía de instalación para la macro de SolidWorks"
  7247. #~ msgctxt "@action:button"
  7248. #~ msgid "Disable"
  7249. #~ msgstr "Deshabilitar"
  7250. #~ msgctxt "@action:tooltip"
  7251. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  7252. #~ msgstr "No permitir a Cura enviar estadísticas de uso de forma anónima. Puede habilitarlo de nuevo en las preferencias."
  7253. #~ msgid "Install"
  7254. #~ msgstr "Instalar"
  7255. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  7256. #~ 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."
  7257. #~ msgid "Successfully installed Siemens NX Cura plugin."
  7258. #~ msgstr "El complemento Siemens NX Cura se ha instalado correctamente."
  7259. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  7260. #~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR."
  7261. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  7262. #~ 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."
  7263. #~ msgctxt "@info:status"
  7264. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  7265. #~ msgstr "No se pudo obtener la ID del complemento de <filename>{0}</filename>"
  7266. #~ msgctxt "@info:tile"
  7267. #~ msgid "Warning"
  7268. #~ msgstr "Advertencia"
  7269. #~ msgctxt "@window:title"
  7270. #~ msgid "Plugin browser"
  7271. #~ msgstr "Explorador de complementos"
  7272. #~ msgctxt "@label"
  7273. #~ msgid "Ultimaker 3"
  7274. #~ msgstr "Ultimaker 3"
  7275. #~ msgctxt "@label"
  7276. #~ msgid "Ultimaker 3 Extended"
  7277. #~ msgstr "Ultimaker 3 Extended"
  7278. #~ msgctxt "@title:window"
  7279. #~ msgid "SolidWorks: Export wizard"
  7280. #~ msgstr "SolidWorks: exportar asistente"
  7281. #~ msgctxt "@action:label"
  7282. #~ msgid "Quality:"
  7283. #~ msgstr "Calidad:"
  7284. #~ msgctxt "@option:curaSolidworksStlQuality"
  7285. #~ msgid "Fine (3D-printing)"
  7286. #~ msgstr "Fina (impresión en 3D)"
  7287. #~ msgctxt "@option:curaSolidworksStlQuality"
  7288. #~ msgid "Coarse (3D-printing)"
  7289. #~ msgstr "Gruesa (impresión en 3D)"
  7290. #~ msgctxt "@option:curaSolidworksStlQuality"
  7291. #~ msgid "Fine (SolidWorks)"
  7292. #~ msgstr "Fina (SolidWorks)"
  7293. #~ msgctxt "@option:curaSolidworksStlQuality"
  7294. #~ msgid "Coarse (SolidWorks)"
  7295. #~ msgstr "Gruesa (SolidWorks)"
  7296. #~ msgctxt "@text:window"
  7297. #~ msgid "Show this dialog again"
  7298. #~ msgstr "Mostrar este cuadro de diálogo de nuevo"
  7299. #~ msgctxt "@action:button"
  7300. #~ msgid "Continue"
  7301. #~ msgstr "Continuar"
  7302. #~ msgctxt "@action:button"
  7303. #~ msgid "Abort"
  7304. #~ msgstr "Cancelar"
  7305. #~ msgctxt "@title:window"
  7306. #~ msgid "How to install Cura SolidWorks macro"
  7307. #~ msgstr "Cómo instalar la macro SolidWorks de Cura"
  7308. #~ msgctxt "@description:label"
  7309. #~ msgid "Steps:"
  7310. #~ msgstr "Pasos:"
  7311. #~ msgctxt "@action:button"
  7312. #~ msgid ""
  7313. #~ "Open the directory\n"
  7314. #~ "with macro and icon"
  7315. #~ msgstr ""
  7316. #~ "Abra el directorio\n"
  7317. #~ "con la macro y el icono"
  7318. #~ msgctxt "@description:label"
  7319. #~ msgid "Instructions:"
  7320. #~ msgstr "Instrucciones:"
  7321. #~ msgctxt "@action:playpause"
  7322. #~ msgid "Play"
  7323. #~ msgstr "Reproducir"
  7324. #~ msgctxt "@action:playpause"
  7325. #~ msgid "Pause"
  7326. #~ msgstr "Pausar"
  7327. #~ msgctxt "@action:button"
  7328. #~ msgid "Previous Step"
  7329. #~ msgstr "Paso anterior"
  7330. #~ msgctxt "@action:button"
  7331. #~ msgid "Done"
  7332. #~ msgstr "Realizado"
  7333. #~ msgctxt "@action:button"
  7334. #~ msgid "Next Step"
  7335. #~ msgstr "Paso siguiente"
  7336. #~ msgctxt "@title:window"
  7337. #~ msgid "SolidWorks plugin: Configuration"
  7338. #~ msgstr "Complemento de SolidWorks: configuración"
  7339. #~ msgctxt "@title:tab"
  7340. #~ msgid "Conversion settings"
  7341. #~ msgstr "Ajustes de la conversión"
  7342. #~ msgctxt "@label"
  7343. #~ msgid "First choice:"
  7344. #~ msgstr "Primera opción:"
  7345. #~ msgctxt "@text:menu"
  7346. #~ msgid "Latest installed version (Recommended)"
  7347. #~ msgstr "Última versión instalada (recomendada)"
  7348. #~ msgctxt "@text:menu"
  7349. #~ msgid "Default version"
  7350. #~ msgstr "Versión predeterminada"
  7351. #~ msgctxt "@label"
  7352. #~ msgid "Show wizard before opening SolidWorks files"
  7353. #~ msgstr "Mostrar asistente antes de abrir los archivos de SolidWorks"
  7354. #~ msgctxt "@label"
  7355. #~ msgid "Automatically rotate opened file into normed orientation"
  7356. #~ msgstr "Girar automáticamente el archivo abierto a la orientación normal"
  7357. #~ msgctxt "@title:tab"
  7358. #~ msgid "Installation(s)"
  7359. #~ msgstr "Instalación(es)"
  7360. #~ msgctxt "@label"
  7361. #~ msgid "COM service found"
  7362. #~ msgstr "Servicio COM encontrado"
  7363. #~ msgctxt "@label"
  7364. #~ msgid "Executable found"
  7365. #~ msgstr "Ejecutable encontrado"
  7366. #~ msgctxt "@label"
  7367. #~ msgid "COM starting"
  7368. #~ msgstr "Iniciando COM"
  7369. #~ msgctxt "@label"
  7370. #~ msgid "Revision number"
  7371. #~ msgstr "Número de revisión"
  7372. #~ msgctxt "@label"
  7373. #~ msgid "Functions available"
  7374. #~ msgstr "Funciones disponibles"
  7375. #~ msgctxt "@label (%1 is object name)"
  7376. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  7377. #~ msgstr "El nuevo diámetro del material está ajustado en %1 mm y no es compatible con el equipo actual. ¿Desea continuar?"
  7378. #~ msgctxt "@action:menu"
  7379. #~ msgid "Browse plugins..."
  7380. #~ msgstr "Examinar complementos..."
  7381. #~ msgctxt "@title:menu menubar:toplevel"
  7382. #~ msgid "P&lugins"
  7383. #~ msgstr "&Complementos"
  7384. #~ msgctxt "@window:title"
  7385. #~ msgid "Install Plugin"
  7386. #~ msgstr "Instalar complemento"
  7387. #~ msgctxt "description"
  7388. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7389. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  7390. #~ msgctxt "description"
  7391. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7392. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  7393. #~ msgctxt "description"
  7394. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  7395. #~ msgstr "Permite abrir determinados archivos con el propio SolidWorks. La conversión se lleva a cabo mediante este complemento y optimizaciones adicionales."
  7396. #~ msgctxt "name"
  7397. #~ msgid "SolidWorks Integration"
  7398. #~ msgstr "Integración con SolidWorks"
  7399. #~ msgctxt "description"
  7400. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7401. #~ msgstr "Guarda automáticamente preferencias, máquinas y perfiles después de los cambios."
  7402. #~ msgctxt "name"
  7403. #~ msgid "Auto Save"
  7404. #~ msgstr "Guardado automático"
  7405. #~ msgctxt "description"
  7406. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  7407. #~ msgstr "Ayuda a instalar el botón para exportar a Cura en Siemens NX."
  7408. #~ msgctxt "name"
  7409. #~ msgid "Siemens NX Integration"
  7410. #~ msgstr "Siemens NX Integration"
  7411. #~ msgctxt "description"
  7412. #~ msgid "Find, manage and install new plugins."
  7413. #~ msgstr "Busca, administra e instala nuevos complementos."
  7414. #~ msgctxt "name"
  7415. #~ msgid "Plugin Browser"
  7416. #~ msgstr "Explorador de complementos"
  7417. #~ msgctxt "description"
  7418. #~ msgid "Ask the user once if he/she agrees with our license"
  7419. #~ msgstr "Preguntar al usuario una vez si acepta la licencia"
  7420. #~ msgctxt "description"
  7421. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7422. #~ 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.)."
  7423. #~ msgctxt "@item:inlistbox"
  7424. #~ msgid "GCode File"
  7425. #~ msgstr "Archivo GCode"
  7426. #~ msgctxt "@info:status"
  7427. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  7428. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora está ocupada o no está conectada."
  7429. #~ msgctxt "@info:title"
  7430. #~ msgid "Printer Unavailable"
  7431. #~ msgstr "Impresora no disponible"
  7432. #~ msgctxt "@info:status"
  7433. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  7434. #~ msgstr "Esta impresora no es compatible con la impresión USB porque utiliza el tipo UltiGCode."
  7435. #~ msgctxt "@info:title"
  7436. #~ msgid "USB Printing"
  7437. #~ msgstr "Impresión USB"
  7438. #~ msgctxt "@info:status"
  7439. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  7440. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora no es compatible con la impresión USB."
  7441. #~ msgctxt "@info"
  7442. #~ msgid "Unable to update firmware because there are no printers connected."
  7443. #~ msgstr "No se puede actualizar el firmware porque no hay impresoras conectadas."
  7444. #~ msgctxt "@info"
  7445. #~ msgid "Could not find firmware required for the printer at %s."
  7446. #~ msgstr "No se pudo encontrar el firmware necesario para la impresora en %s."
  7447. #~ msgctxt "@info:title"
  7448. #~ msgid "Printer Firmware"
  7449. #~ msgstr "Firmware de la impresora"
  7450. #~ msgctxt "@info:title"
  7451. #~ msgid "Connection status"
  7452. #~ msgstr "Estado de la conexión"
  7453. #~ msgctxt "@info:title"
  7454. #~ msgid "Connection Status"
  7455. #~ msgstr "Estado de la conexión"
  7456. #~ msgctxt "@info:status"
  7457. #~ msgid "Access request was denied on the printer."
  7458. #~ msgstr "Solicitud de acceso denegada en la impresora."
  7459. #~ msgctxt "@info:status"
  7460. #~ msgid "Access request failed due to a timeout."
  7461. #~ msgstr "Se ha producido un error al solicitar acceso porque se ha agotado el tiempo de espera."
  7462. #~ msgctxt "@info:status"
  7463. #~ msgid "The connection with the network was lost."
  7464. #~ msgstr "Se ha perdido la conexión de red."
  7465. #~ msgctxt "@info:status"
  7466. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  7467. #~ msgstr "Se ha perdido la conexión con la impresora. Compruebe que la impresora está conectada."
  7468. #~ msgctxt "@info:status"
  7469. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  7470. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión, la impresora está ocupada. El estado actual de la impresora es %s."
  7471. #~ msgctxt "@info:title"
  7472. #~ msgid "Printer Status"
  7473. #~ msgstr "Estado de la impresora"
  7474. #~ msgctxt "@info:status"
  7475. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  7476. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  7477. #~ msgctxt "@info:status"
  7478. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  7479. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado material en la ranura {0}."
  7480. #~ msgctxt "@label"
  7481. #~ msgid "Not enough material for spool {0}."
  7482. #~ msgstr "No hay suficiente material para la bobina {0}."
  7483. #~ msgctxt "@label"
  7484. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7485. #~ msgstr "PrintCore distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  7486. #~ msgctxt "@label"
  7487. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7488. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  7489. #~ msgctxt "@info:status"
  7490. #~ msgid "Unable to send data to printer. Is another job still active?"
  7491. #~ msgstr "No se puede enviar datos a la impresora. ¿Hay otro trabajo que todavía esté activo?"
  7492. #~ msgctxt "@label:MonitorStatus"
  7493. #~ msgid "Print aborted. Please check the printer"
  7494. #~ msgstr "Impresión cancelada. Compruebe la impresora."
  7495. #~ msgctxt "@label:MonitorStatus"
  7496. #~ msgid "Pausing print..."
  7497. #~ msgstr "Pausando impresión..."
  7498. #~ msgctxt "@label:MonitorStatus"
  7499. #~ msgid "Resuming print..."
  7500. #~ msgstr "Reanudando impresión..."
  7501. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  7502. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3."
  7503. #~ msgctxt "Count is number of printers."
  7504. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  7505. #~ msgstr "La impresora aloja un grupo de {count} impresoras conectadas de Ultimaker 3."
  7506. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  7507. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}». Recoja el impreso y confirme que ha borrado la placa de impresión."
  7508. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  7509. #~ 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."
  7510. #~ msgctxt "@info:status"
  7511. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  7512. #~ 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."
  7513. #~ msgctxt "@info:status"
  7514. #~ msgid "Unable to send print job to group {cluster_name}."
  7515. #~ msgstr "No se puede enviar el trabajo de impresión al grupo {cluster_name}."
  7516. #~ msgctxt "@info:status"
  7517. #~ msgid "Sent {file_name} to group {cluster_name}."
  7518. #~ msgstr "Enviar {file_name} al grupo {cluster_name}."
  7519. #~ msgctxt "@action:button"
  7520. #~ msgid "Show print jobs"
  7521. #~ msgstr "Mostrar trabajos de impresión"
  7522. #~ msgctxt "@info:tooltip"
  7523. #~ msgid "Opens the print jobs interface in your browser."
  7524. #~ msgstr "Abre la interfaz de trabajos de impresión en el navegador."
  7525. #~ msgctxt "@label Printer name"
  7526. #~ msgid "Unknown"
  7527. #~ msgstr "Desconocido"
  7528. #~ msgctxt "@info:progress"
  7529. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  7530. #~ msgstr "Enviando <filename>{file_name}</filename> al grupo {cluster_name}"
  7531. #~ msgctxt "@info:status"
  7532. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  7533. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  7534. #~ msgctxt "@info:status"
  7535. #~ msgid ""
  7536. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  7537. #~ "\n"
  7538. #~ " Thanks!."
  7539. #~ msgstr ""
  7540. #~ "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"
  7541. #~ "\n"
  7542. #~ " Gracias."
  7543. #~ msgctxt "@info:status"
  7544. #~ msgid ""
  7545. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  7546. #~ "\n"
  7547. #~ "Sorry!"
  7548. #~ msgstr ""
  7549. #~ "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"
  7550. #~ "\n"
  7551. #~ " Disculpe."
  7552. #~ msgctxt "@item:material"
  7553. #~ msgid "No material loaded"
  7554. #~ msgstr "No se ha cargado material."
  7555. #~ msgctxt "@item:material"
  7556. #~ msgid "Unknown material"
  7557. #~ msgstr "Material desconocido"
  7558. #~ msgctxt "@info:status Has a cancel button next to it."
  7559. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  7560. #~ msgstr "El diámetro del material seleccionado hace que el material sea incompatible con la impresora actual."
  7561. #~ msgctxt "@action:button"
  7562. #~ msgid "Undo"
  7563. #~ msgstr "Deshacer"
  7564. #~ msgctxt "@action"
  7565. #~ msgid "Undo changing the material diameter."
  7566. #~ msgstr "Deshacer cambio del diámetro del material."
  7567. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  7568. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  7569. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> no coincide con su equipo actual, no se ha podido importar."
  7570. #~ msgctxt "@label crash message"
  7571. #~ msgid ""
  7572. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7573. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7574. #~ " "
  7575. #~ msgstr ""
  7576. #~ "<p><b>Se ha producido un error grave. Envíenos este informe de incidencias para que podamos solucionar el problema.</p></b>\n"
  7577. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  7578. #~ " "
  7579. #~ msgctxt "@label"
  7580. #~ msgid "not yet initialised<br/>"
  7581. #~ msgstr "aún no se ha inicializado<br/>"
  7582. #~ msgctxt "@label"
  7583. #~ msgid "Gcode flavor"
  7584. #~ msgstr "Tipo de Gcode"
  7585. #~ msgctxt "@label"
  7586. #~ msgid "Start Gcode"
  7587. #~ msgstr "Iniciar GCode"
  7588. #~ msgctxt "@tooltip"
  7589. #~ msgid "Gcode commands to be executed at the very start."
  7590. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al inicio."
  7591. #~ msgctxt "@label"
  7592. #~ msgid "End Gcode"
  7593. #~ msgstr "Finalizar GCode"
  7594. #~ msgctxt "@tooltip"
  7595. #~ msgid "Gcode commands to be executed at the very end."
  7596. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al final."
  7597. #~ msgctxt "@label"
  7598. #~ msgid "Extruder Start Gcode"
  7599. #~ msgstr "GCode inicial del extrusor"
  7600. #~ msgctxt "@label"
  7601. #~ msgid "Extruder End Gcode"
  7602. #~ msgstr "GCode final del extrusor"
  7603. #~ msgctxt "@label"
  7604. #~ msgid "Starting firmware update, this may take a while."
  7605. #~ msgstr "Comenzando la actualización del firmware, esto puede tardar algún tiempo."
  7606. #~ msgctxt "@label"
  7607. #~ msgid "Unknown error code: %1"
  7608. #~ msgstr "Código de error desconocido: %1"
  7609. #~ msgctxt "@label Printer name"
  7610. #~ msgid "Ultimaker 3"
  7611. #~ msgstr "Ultimaker 3"
  7612. #~ msgctxt "@label Printer name"
  7613. #~ msgid "Ultimaker 3 Extended"
  7614. #~ msgstr "Ultimaker 3 Extended"
  7615. #~ msgctxt "@label Printer status"
  7616. #~ msgid "Unknown"
  7617. #~ msgstr "Desconocido"
  7618. #~ msgctxt "@title:window"
  7619. #~ msgid "Find & Update plugins"
  7620. #~ msgstr "Buscar y actualizar complementos"
  7621. #~ msgctxt "@label"
  7622. #~ msgid "Here you can find a list of Third Party plugins."
  7623. #~ msgstr "Puede ver aquí una lista de complementos de terceros."
  7624. #~ msgctxt "@action:button"
  7625. #~ msgid "Upgrade"
  7626. #~ msgstr "Actualización"
  7627. #~ msgctxt "@action:button"
  7628. #~ msgid "Download"
  7629. #~ msgstr "Descargar"
  7630. #~ msgctxt "@info:tooltip"
  7631. #~ msgid "Show caution message in gcode reader."
  7632. #~ msgstr "Mostrar mensaje de advertencia en el lector de GCode."
  7633. #~ msgctxt "@option:check"
  7634. #~ msgid "Caution message in gcode reader"
  7635. #~ msgstr "Mensaje de advertencia en el lector de GCode"
  7636. #~ msgctxt "@window:title"
  7637. #~ msgid "Import Profile"
  7638. #~ msgstr "Importar perfil"
  7639. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  7640. #~ msgid "Printer: %1, %2: %3"
  7641. #~ msgstr "Impresora: %1, %2: %3"
  7642. #~ msgctxt "@action:label %1 is printer name"
  7643. #~ msgid "Printer: %1"
  7644. #~ msgstr "Impresora: %1"
  7645. #~ msgctxt "@label"
  7646. #~ msgid "GCode generator"
  7647. #~ msgstr "Generador de GCode"
  7648. #~ msgctxt "@action:menu"
  7649. #~ msgid "Configure setting visiblity..."
  7650. #~ msgstr "Configurar la visibilidad de los ajustes..."
  7651. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  7652. #~ msgid "Automatic: %1"
  7653. #~ msgstr "Automático: %1"
  7654. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  7655. #~ msgid "Automatic: %1"
  7656. #~ msgstr "Automático: %1"
  7657. #~ msgctxt "@info:status"
  7658. #~ msgid "No printer connected"
  7659. #~ msgstr "No hay ninguna impresora conectada"
  7660. #~ msgctxt "@tooltip"
  7661. #~ msgid "The current temperature of this extruder."
  7662. #~ msgstr "Temperatura actual de este extrusor."
  7663. #~ msgctxt "@action:menu"
  7664. #~ msgid "Installed plugins..."
  7665. #~ msgstr "Complementos instalados..."
  7666. #~ msgctxt "@label"
  7667. #~ msgid "Support Extruder"
  7668. #~ msgstr "Extrusor del soporte"
  7669. #~ msgctxt "description"
  7670. #~ msgid "Writes GCode to a file."
  7671. #~ msgstr "Escribe Gcode en un archivo."
  7672. #~ msgctxt "name"
  7673. #~ msgid "GCode Writer"
  7674. #~ msgstr "Escritor de Gcode"
  7675. #~ msgctxt "name"
  7676. #~ msgid "GCode Profile Reader"
  7677. #~ msgstr "Lector de perfiles Gcode"
  7678. #~ msgctxt "@info:status"
  7679. #~ 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!"
  7680. #~ msgstr "Se han producido varios errores al abrir el archivo de SolidWorks. Compruebe que el archivo se puede abrir correctamente en SolidWorks."
  7681. #~ msgctxt "@info:status"
  7682. #~ msgid "Error while starting %s!"
  7683. #~ msgstr "Error al iniciar %s"
  7684. #~ msgctxt "@item:inlistbox"
  7685. #~ msgid "Simulation view"
  7686. #~ msgstr "Vista de simulación"
  7687. #~ msgctxt "@info"
  7688. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  7689. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  7690. #~ msgctxt "@action:button"
  7691. #~ msgid "Dismiss"
  7692. #~ msgstr "Descartar"
  7693. #~ msgctxt "@menuitem"
  7694. #~ msgid "Global"
  7695. #~ msgstr "Global"
  7696. #~ msgctxt "@label crash message"
  7697. #~ msgid ""
  7698. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  7699. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  7700. #~ " "
  7701. #~ msgstr ""
  7702. #~ "<p><b>Se ha producido una excepción fatal. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>\n"
  7703. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  7704. #~ " "
  7705. #~ msgctxt "@label Cura version"
  7706. #~ msgid "<b>Cura version:</b> {version}<br/>"
  7707. #~ msgstr "<b>Versión de Cura:</b> {version}<br/>"
  7708. #~ msgctxt "@label Platform"
  7709. #~ msgid "<b>Platform:</b> {platform}<br/>"
  7710. #~ msgstr "<b>Platforma:</b> {platform}<br/>"
  7711. #~ msgctxt "@label Qt version"
  7712. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  7713. #~ msgstr "<b>Versión de Qt:</b> {qt}<br/>"
  7714. #~ msgctxt "@label PyQt version"
  7715. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  7716. #~ msgstr "<b>Versión de PyQt:</b> {pyqt}<br/>"
  7717. #~ msgctxt "@label OpenGL"
  7718. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  7719. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  7720. #~ msgctxt "@title:groupbox"
  7721. #~ msgid "Exception traceback"
  7722. #~ msgstr "Rastreabilidad de excepciones"
  7723. #~ msgctxt "@label"
  7724. #~ msgid "Material diameter"
  7725. #~ msgstr "Diámetro del material"
  7726. #~ msgctxt "@title:window"
  7727. #~ msgid "Cura SolidWorks Plugin Configuration"
  7728. #~ msgstr "Configuración de complementos Cura SolidWorks"
  7729. #~ msgctxt "@action:label"
  7730. #~ msgid "Default quality of the exported STL:"
  7731. #~ msgstr "Calidad predeterminada del STL exportado:"
  7732. #~ msgctxt "@option:curaSolidworksStlQuality"
  7733. #~ msgid "Always ask"
  7734. #~ msgstr "Preguntar siempre"
  7735. #~ msgctxt "@option:curaSolidworksStlQuality"
  7736. #~ msgid "Always use Fine quality"
  7737. #~ msgstr "Usar siempre calidad fina"
  7738. #~ msgctxt "@option:curaSolidworksStlQuality"
  7739. #~ msgid "Always use Coarse quality"
  7740. #~ msgstr "Usar siempre calidad gruesa"
  7741. #~ msgctxt "@title:window"
  7742. #~ msgid "Import SolidWorks File as STL..."
  7743. #~ msgstr "Importar el archivo SolidWorks como STL..."
  7744. #~ msgctxt "@info:tooltip"
  7745. #~ msgid "Quality of the Exported STL"
  7746. #~ msgstr "Calidad del STL exportado"
  7747. #~ msgctxt "@action:label"
  7748. #~ msgid "Quality"
  7749. #~ msgstr "Calidad"
  7750. #~ msgctxt "@option:curaSolidworksStlQuality"
  7751. #~ msgid "Coarse"
  7752. #~ msgstr "Gruesa"
  7753. #~ msgctxt "@option:curaSolidworksStlQuality"
  7754. #~ msgid "Fine"
  7755. #~ msgstr "Fina"
  7756. #~ msgctxt "@"
  7757. #~ msgid "No Profile Available"
  7758. #~ msgstr "No hay perfiles disponibles."
  7759. #~ msgctxt "@label"
  7760. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  7761. #~ msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  7762. #~ msgctxt "@tooltip"
  7763. #~ msgid "<b>Time specification</b><br/><table>"
  7764. #~ msgstr "<b>Especificación de tiempo</b><br/><table>"
  7765. #~ msgctxt "@action:inmenu menubar:view"
  7766. #~ msgid "&Reset camera position"
  7767. #~ msgstr "&Restablecer posición de la cámara"
  7768. #~ msgctxt "@title:menu menubar:file"
  7769. #~ msgid "Save project"
  7770. #~ msgstr "Guardar proyecto"
  7771. #~ msgctxt "@title:tab"
  7772. #~ msgid "Prepare"
  7773. #~ msgstr "Preparar"
  7774. #~ msgctxt "@title:tab"
  7775. #~ msgid "Monitor"
  7776. #~ msgstr "Supervisar"
  7777. #~ msgctxt "@label"
  7778. #~ msgid "<a href='%1'>Check compatibility</a>"
  7779. #~ msgstr "<a href='%1'>Comprobar compatibilidad</a>"
  7780. #~ msgctxt "description"
  7781. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  7782. #~ msgstr "Permite abrir ciertos archivos con el propio SolidWorks que, a continuación, puede convertirse y cargarse en Cura."
  7783. #~ msgctxt "@label:status"
  7784. #~ msgid "Blocked"
  7785. #~ msgstr "Deshabilitada"
  7786. #~ msgctxt "@label:status"
  7787. #~ msgid "Can't start print"
  7788. #~ msgstr "No se puede imprimir"
  7789. #~ msgctxt "@action:button"
  7790. #~ msgid "Open Connect.."
  7791. #~ msgstr "Abrir Connect"
  7792. #~ msgctxt "@info:title"
  7793. #~ msgid "Print Details"
  7794. #~ msgstr "Datos de impresión"
  7795. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  7796. #~ 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."
  7797. #~ 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."
  7798. #~ msgctxt "@info:title"
  7799. #~ msgid "Layer View"
  7800. #~ msgstr "Vista de capas"
  7801. #~ msgctxt "@menuitem"
  7802. #~ msgid "Browse plugins"
  7803. #~ msgstr "Examinar complementos"
  7804. #~ msgctxt "@info:title"
  7805. #~ msgid "Export Details"
  7806. #~ msgstr "Datos de exportación"
  7807. #~ msgctxt "@label"
  7808. #~ msgid ""
  7809. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7810. #~ " <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"
  7811. #~ " "
  7812. #~ msgstr ""
  7813. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  7814. #~ " <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"
  7815. #~ " "
  7816. #~ msgctxt "@action:button"
  7817. #~ msgid "Open Web Page"
  7818. #~ msgstr "Abrir página web"
  7819. #~ msgctxt "@action:button"
  7820. #~ msgid "Ok"
  7821. #~ msgstr "Aceptar"
  7822. #~ msgctxt "@label"
  7823. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  7824. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  7825. #~ msgctxt "@label"
  7826. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  7827. #~ msgstr "La impresora aloja un grupo de %1 impresoras conectadas de Ultimaker 3"
  7828. #~ msgctxt "@label"
  7829. #~ msgid "Completed on: "
  7830. #~ msgstr "Completado el: "
  7831. #~ msgctxt "@info:tooltip"
  7832. #~ msgid "Opens the print jobs page with your default web browser."
  7833. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  7834. #~ msgctxt "@label"
  7835. #~ msgid "PRINTER GROUP"
  7836. #~ msgstr "GRUPO DE IMPRESORAS"
  7837. #~ msgctxt "@action:warning"
  7838. #~ msgid "Loading a project will clear all models on the buildplate"
  7839. #~ msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  7840. #~ msgctxt "@label"
  7841. #~ msgid ""
  7842. #~ " plugin contains a license.\n"
  7843. #~ "You need to accept this license to install this plugin.\n"
  7844. #~ "Do you agree with the terms below?"
  7845. #~ msgstr ""
  7846. #~ " El complemento incluye una licencia.\n"
  7847. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  7848. #~ "¿Acepta las siguientes condiciones?"
  7849. #~ msgctxt "@label"
  7850. #~ msgid "00h 00min"
  7851. #~ msgstr "00h 00min"
  7852. #~ msgctxt "@tooltip"
  7853. #~ msgid "<b>Time information</b>"
  7854. #~ msgstr "<b>Información sobre el tiempo</b>"
  7855. #~ msgctxt "@description"
  7856. #~ msgid "Print time"
  7857. #~ msgstr "Tiempo de impresión"
  7858. #~ msgctxt "@label"
  7859. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  7860. #~ msgstr "%1m / ~ %2g/ ~ %4 %3"
  7861. #~ msgctxt "@label"
  7862. #~ msgid "%1m / ~ %2g"
  7863. #~ msgstr "%1m / ~ %2g"
  7864. #~ msgctxt "@title:window"
  7865. #~ msgid "Cura"
  7866. #~ msgstr "Cura"
  7867. #~ msgctxt "@label"
  7868. #~ msgid "<a href='%1'>Check material compatibility</a>"
  7869. #~ msgstr "<a href='%1'>Comprobar la compatibilidad de los materiales</a>"
  7870. #~ msgctxt "name"
  7871. #~ msgid "UM3 Network Connection (Cluster)"
  7872. #~ msgstr "Conexión de red UM3 (grupo)"
  7873. #~ msgctxt "description"
  7874. #~ msgid "Provides the Layer view."
  7875. #~ msgstr "Proporciona la vista de capas."
  7876. #~ msgctxt "name"
  7877. #~ msgid "Layer View"
  7878. #~ msgstr "Vista de capas"
  7879. #~ msgctxt "@item:inlistbox"
  7880. #~ msgid "X-Ray"
  7881. #~ msgstr "Rayos X"
  7882. #~ msgctxt "@label"
  7883. #~ msgid "Doodle3D"
  7884. #~ msgstr "Doodle3D"
  7885. #~ msgctxt "@info:whatsthis"
  7886. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  7887. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  7888. #~ msgctxt "@item:inmenu"
  7889. #~ msgid "Doodle3D printing"
  7890. #~ msgstr "Impresión Doodle3D"
  7891. #~ msgctxt "@action:button"
  7892. #~ msgid "Print with Doodle3D"
  7893. #~ msgstr "Imprimir con Doodle3D"
  7894. #~ msgctxt "@info:tooltip"
  7895. #~ msgid "Print with "
  7896. #~ msgstr "Imprimir con"
  7897. #~ msgctxt "@title:menu"
  7898. #~ msgid "Doodle3D"
  7899. #~ msgstr "Doodle3D"
  7900. #~ msgctxt "@item:inlistbox"
  7901. #~ msgid "Enable Scan devices..."
  7902. #~ msgstr "Habilitar dispositivos de digitalización..."
  7903. #~ msgctxt "@info:progress"
  7904. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  7905. #~ msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  7906. #~ msgctxt "@info:status"
  7907. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  7908. #~ msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  7909. #~ msgctxt "@info:status"
  7910. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  7911. #~ msgstr "Tenga en cuenta que tiene que volver a abrir el archivo SolidWorks manualmente. Volver a cargar el modelo no funciona."
  7912. #~ msgctxt "@item:inlistbox"
  7913. #~ msgid "Layers"
  7914. #~ msgstr "Capas"
  7915. #~ msgid "Browse plugins"
  7916. #~ msgstr "Examinar complementos"
  7917. #~ msgctxt "@item:inmenu"
  7918. #~ msgid "Solid"
  7919. #~ msgstr "Sólido"
  7920. #~ msgctxt "@label"
  7921. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  7922. #~ msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  7923. #~ msgctxt "@info:status"
  7924. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  7925. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  7926. #~ msgctxt "@info:status"
  7927. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  7928. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  7929. #~ msgctxt "@info:status"
  7930. #~ msgid "Exported profile to <filename>{0}</filename>"
  7931. #~ msgstr "Perfil exportado a <filename>{0}</filename>"
  7932. #~ msgctxt "@info:status"
  7933. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  7934. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  7935. #~ msgctxt "@title:window"
  7936. #~ msgid "Doodle3D Settings"
  7937. #~ msgstr "Ajustes de Doodle3D"
  7938. #~ msgctxt "@title:window"
  7939. #~ msgid "Print to: %1"
  7940. #~ msgstr "Imprimir en: %1"
  7941. #~ msgctxt "@label"
  7942. #~ msgid "Extruder Temperature: %1/%2°C"
  7943. #~ msgstr "Temperatura del extrusor: %1/%2 °C"
  7944. #~ msgctxt "@label"
  7945. #~ msgid "Bed Temperature: %1/%2°C"
  7946. #~ msgstr "Temperatura de la plataforma: %1/%2 °C"
  7947. #~ msgctxt "@label"
  7948. #~ msgid "%1"
  7949. #~ msgstr "%1"
  7950. #~ msgctxt "@label"
  7951. #~ msgid "View Mode: Layers"
  7952. #~ msgstr "Ver modo: Capas"
  7953. #~ msgctxt "@info:status"
  7954. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7955. #~ msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>."
  7956. #~ msgctxt "@info:status"
  7957. #~ msgid "Successfully imported material <filename>%1</filename>"
  7958. #~ msgstr "El material se ha importado correctamente en <filename>%1</filename>."
  7959. #~ msgctxt "@info:status"
  7960. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7961. #~ msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>."
  7962. #~ msgctxt "@info:status"
  7963. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7964. #~ msgstr "El material se ha exportado correctamente a <filename>%1</filename>."
  7965. #~ msgctxt "@label"
  7966. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7967. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  7968. #~ msgctxt "@label"
  7969. #~ msgid "%1 m / ~ %2 g"
  7970. #~ msgstr "%1 m/~ %2 g"
  7971. #~ msgctxt "@label"
  7972. #~ msgid "Hotend"
  7973. #~ msgstr "Extremo caliente"
  7974. #~ msgctxt "@action:button"
  7975. #~ msgid "View Mode"
  7976. #~ msgstr "Ver modo"
  7977. #~ msgctxt "@title:tab"
  7978. #~ msgid "Print"
  7979. #~ msgstr "Imprimir"
  7980. #~ msgctxt "@label"
  7981. #~ msgid "0%"
  7982. #~ msgstr "0 %"
  7983. #~ msgctxt "@label"
  7984. #~ msgid "Empty infill will leave your model hollow with low strength."
  7985. #~ msgstr "Un relleno vacío dejará hueco el modelo con baja resistencia."
  7986. #~ msgctxt "@label"
  7987. #~ msgid "20%"
  7988. #~ msgstr "20 %"
  7989. #~ msgctxt "@label"
  7990. #~ msgid "Light (20%) infill will give your model an average strength."
  7991. #~ msgstr "Un relleno ligero (20 %) dará al modelo una resistencia media."
  7992. #~ msgctxt "@label"
  7993. #~ msgid "50%"
  7994. #~ msgstr "50 %"
  7995. #~ msgctxt "@label"
  7996. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7997. #~ msgstr "Un relleno denso (50 %) dará al modelo una resistencia por encima de la media."
  7998. #~ msgctxt "@label"
  7999. #~ msgid "100%"
  8000. #~ msgstr "100 %"
  8001. #~ msgctxt "@label"
  8002. #~ msgid "Solid (100%) infill will make your model completely solid."
  8003. #~ msgstr "Un relleno sólido (100 %) hará que el modelo sea completamente macizo."
  8004. #~ msgctxt "@label"
  8005. #~ msgid "Gradual"
  8006. #~ msgstr "Gradual"
  8007. #~ msgctxt "description"
  8008. #~ msgid "Provides support for writing X3G files"
  8009. #~ msgstr "Proporciona asistencia para escribir archivos X3G."
  8010. #~ msgctxt "name"
  8011. #~ msgid "X3G Writer"
  8012. #~ msgstr "Escritor de X3G"
  8013. #~ msgctxt "@label"
  8014. #~ msgid "Machine Settings action"
  8015. #~ msgstr "Acción Ajustes de la máquina"
  8016. #~ msgctxt "@info:whatsthis"
  8017. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  8018. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  8019. #~ msgctxt "@label"
  8020. #~ msgid "X-Ray View"
  8021. #~ msgstr "Vista de rayos X"
  8022. #~ msgctxt "@info:whatsthis"
  8023. #~ msgid "Provides the X-Ray view."
  8024. #~ msgstr "Proporciona la vista de rayos X."
  8025. #~ msgctxt "@label"
  8026. #~ msgid "X3D Reader"
  8027. #~ msgstr "Lector de X3D"
  8028. #~ msgctxt "@info:whatsthis"
  8029. #~ msgid "Provides support for reading X3D files."
  8030. #~ msgstr "Proporciona asistencia para leer archivos X3D."
  8031. #~ msgctxt "@label"
  8032. #~ msgid "GCode Writer"
  8033. #~ msgstr "Escritor de GCode"
  8034. #~ msgctxt "@info:whatsthis"
  8035. #~ msgid "Writes GCode to a file."
  8036. #~ msgstr "Escribe GCode en un archivo."
  8037. #~ msgctxt "@action:button Preceded by 'Ready to'."
  8038. #~ msgid "Print with Doodle3D"
  8039. #~ msgstr "Imprimir con Doodle3D"
  8040. #~ msgctxt "@info:whatsthis"
  8041. #~ msgid "Shows changes since latest checked version."
  8042. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  8043. #~ msgctxt "@label"
  8044. #~ msgid "Profile flatener"
  8045. #~ msgstr "Aplanador de perfil"
  8046. #~ msgctxt "@info:whatsthis"
  8047. #~ msgid "Create a flattend quality changes profile."
  8048. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  8049. #~ msgctxt "@label"
  8050. #~ msgid "USB printing"
  8051. #~ msgstr "Impresión USB"
  8052. #~ msgctxt "@info:whatsthis"
  8053. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  8054. #~ msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  8055. #~ msgctxt "X3G Writer Plugin Description"
  8056. #~ msgid "Writes X3G to a file"
  8057. #~ msgstr "Escribe X3G en un archivo."
  8058. #~ msgctxt "@label"
  8059. #~ msgid "Removable Drive Output Device Plugin"
  8060. #~ msgstr "Complemento de dispositivo de salida de unidad extraíble"
  8061. #~ msgctxt "@info:whatsthis"
  8062. #~ msgid "Provides removable drive hotplugging and writing support."
  8063. #~ msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  8064. #~ msgctxt "@info:whatsthis"
  8065. #~ msgid "Manages network connections to Ultimaker 3 printers"
  8066. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  8067. #~ msgctxt "@label"
  8068. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  8069. #~ msgstr "Print core distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  8070. #~ msgctxt "@label"
  8071. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  8072. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  8073. #~ msgctxt "@label"
  8074. #~ 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."
  8075. #~ 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."
  8076. #~ msgctxt "@label"
  8077. #~ msgid "Post Processing"
  8078. #~ msgstr "Posprocesamiento"
  8079. #~ msgctxt "Description of plugin"
  8080. #~ msgid "Extension that allows for user created scripts for post processing"
  8081. #~ msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios."
  8082. #~ msgctxt "@label"
  8083. #~ msgid "Auto Save"
  8084. #~ msgstr "Guardado automático"
  8085. #~ msgctxt "@info:whatsthis"
  8086. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  8087. #~ msgstr "Guarda automáticamente Preferencias, Máquinas y Perfiles después de los cambios."
  8088. #~ msgctxt "@label"
  8089. #~ msgid "Slice info"
  8090. #~ msgstr "Info de la segmentación"
  8091. #~ msgctxt "@info:whatsthis"
  8092. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  8093. #~ msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  8094. #~ msgctxt "@info"
  8095. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  8096. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  8097. #~ msgctxt "@label"
  8098. #~ msgid "Material Profiles"
  8099. #~ msgstr "Perfiles de material"
  8100. #~ msgctxt "@info:whatsthis"
  8101. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  8102. #~ msgstr "Permite leer y escribir perfiles de material basados en XML."
  8103. #~ msgctxt "@label"
  8104. #~ msgid "Legacy Cura Profile Reader"
  8105. #~ msgstr "Lector de perfiles antiguos de Cura"
  8106. #~ msgctxt "@info:whatsthis"
  8107. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  8108. #~ msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  8109. #~ msgctxt "@label"
  8110. #~ msgid "GCode Profile Reader"
  8111. #~ msgstr "Lector de perfiles GCode"
  8112. #~ msgctxt "@info:whatsthis"
  8113. #~ msgid "Provides support for importing profiles from g-code files."
  8114. #~ msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  8115. #~ msgctxt "@label"
  8116. #~ msgid "Layer View"
  8117. #~ msgstr "Vista de capas"
  8118. #~ msgctxt "@info:whatsthis"
  8119. #~ msgid "Provides the Layer view."
  8120. #~ msgstr "Proporciona la vista de capas."
  8121. #~ msgctxt "@label"
  8122. #~ msgid "Version Upgrade 2.5 to 2.6"
  8123. #~ msgstr "Actualización de la versión 2.5 a la 2.6"
  8124. #~ msgctxt "@info:whatsthis"
  8125. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  8126. #~ msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  8127. #~ msgctxt "@label"
  8128. #~ msgid "Version Upgrade 2.1 to 2.2"
  8129. #~ msgstr "Actualización de la versión 2.1 a la 2.2"
  8130. #~ msgctxt "@info:whatsthis"
  8131. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  8132. #~ msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  8133. #~ msgctxt "@label"
  8134. #~ msgid "Version Upgrade 2.2 to 2.4"
  8135. #~ msgstr "Actualización de la versión 2.2 a la 2.4"
  8136. #~ msgctxt "@info:whatsthis"
  8137. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  8138. #~ msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  8139. #~ msgctxt "@label"
  8140. #~ msgid "Image Reader"
  8141. #~ msgstr "Lector de imágenes"
  8142. #~ msgctxt "@info:whatsthis"
  8143. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  8144. #~ msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  8145. #~ msgctxt "@label"
  8146. #~ msgid "CuraEngine Backend"
  8147. #~ msgstr "Backend de CuraEngine"
  8148. #~ msgctxt "@info:whatsthis"
  8149. #~ msgid "Provides the link to the CuraEngine slicing backend."
  8150. #~ msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  8151. #~ msgctxt "@label"
  8152. #~ msgid "Per Model Settings Tool"
  8153. #~ msgstr "Herramienta de ajustes por modelo"
  8154. #~ msgctxt "@info:whatsthis"
  8155. #~ msgid "Provides the Per Model Settings."
  8156. #~ msgstr "Proporciona los ajustes por modelo."
  8157. #~ msgctxt "@label"
  8158. #~ msgid "3MF Reader"
  8159. #~ msgstr "Lector de 3MF"
  8160. #~ msgctxt "@info:whatsthis"
  8161. #~ msgid "Provides support for reading 3MF files."
  8162. #~ msgstr "Proporciona asistencia para leer archivos 3MF."
  8163. #~ msgctxt "@label"
  8164. #~ msgid "Solid View"
  8165. #~ msgstr "Vista de sólidos"
  8166. #~ msgctxt "@info:whatsthis"
  8167. #~ msgid "Provides a normal solid mesh view."
  8168. #~ msgstr "Proporciona una vista de malla sólida normal."
  8169. #~ msgctxt "@label"
  8170. #~ msgid "G-code Reader"
  8171. #~ msgstr "Lector de GCode"
  8172. #~ msgctxt "@info:whatsthis"
  8173. #~ msgid "Allows loading and displaying G-code files."
  8174. #~ msgstr "Permite cargar y visualizar archivos GCode."
  8175. #~ msgctxt "@label"
  8176. #~ msgid "Cura Profile Writer"
  8177. #~ msgstr "Escritor de perfiles de Cura"
  8178. #~ msgctxt "@info:whatsthis"
  8179. #~ msgid "Provides support for exporting Cura profiles."
  8180. #~ msgstr "Proporciona asistencia para exportar perfiles de Cura."
  8181. #~ msgctxt "@label"
  8182. #~ msgid "3MF Writer"
  8183. #~ msgstr "Escritor de 3MF"
  8184. #~ msgctxt "@info:whatsthis"
  8185. #~ msgid "Provides support for writing 3MF files."
  8186. #~ msgstr "Proporciona asistencia para escribir archivos 3MF."
  8187. #~ msgctxt "@label"
  8188. #~ msgid "Ultimaker machine actions"
  8189. #~ msgstr "Acciones de la máquina Ultimaker"
  8190. #~ msgctxt "@info:whatsthis"
  8191. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  8192. #~ 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.)."
  8193. #~ msgctxt "@label"
  8194. #~ msgid "Cura Profile Reader"
  8195. #~ msgstr "Lector de perfiles de Cura"
  8196. #~ msgctxt "@info:whatsthis"
  8197. #~ msgid "Provides support for importing Cura profiles."
  8198. #~ msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  8199. #~ msgctxt "@info"
  8200. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  8201. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  8202. #~ msgctxt "@label"
  8203. #~ msgid "Build Plate Shape"
  8204. #~ msgstr "Forma de la placa de impresión"
  8205. #~ msgctxt "@option:check"
  8206. #~ msgid "Machine Center is Zero"
  8207. #~ msgstr "El centro de la máquina es cero."
  8208. #~ msgctxt "@option:check"
  8209. #~ msgid "Heated Bed"
  8210. #~ msgstr "Plataforma caliente"
  8211. #~ msgctxt "@label"
  8212. #~ msgid "GCode Flavor"
  8213. #~ msgstr "Tipo de GCode"
  8214. #~ msgctxt "@label"
  8215. #~ msgid "Material Diameter"
  8216. #~ msgstr "Diámetro del material"
  8217. #~ msgctxt "@label"
  8218. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  8219. #~ 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>"
  8220. #~ msgctxt "@item:inlistbox"
  8221. #~ msgid "Ultimaker"
  8222. #~ msgstr "Ultimaker"
  8223. #~ msgctxt "@label"
  8224. #~ msgid "Support library for scientific computing "
  8225. #~ msgstr "Biblioteca de apoyo para cálculos científicos "
  8226. #~ msgctxt "@tooltip"
  8227. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  8228. #~ msgstr "<b>Configuración de impresión</b><br/><br/>Editar o revisar los ajustes del trabajo de impresión activo."
  8229. #~ msgctxt "@tooltip"
  8230. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  8231. #~ msgstr "<b>Monitor de impresión</b><br/><br/>Supervisar el estado de la impresora conectada y del trabajo de impresión en curso."
  8232. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  8233. #~ msgid "Automatic: %1"
  8234. #~ msgstr "Automático: %1"
  8235. #~ msgctxt "@label:PrintjobStatus"
  8236. #~ msgid "Please load a 3d model"
  8237. #~ msgstr "Cargue un modelo en 3D"
  8238. #~ msgctxt "@label"
  8239. #~ msgid "Print Selected Model with %1"
  8240. #~ msgid_plural "Print Selected Models With %1"
  8241. #~ msgstr[0] "Imprimir modelo seleccionado con %1"
  8242. #~ msgstr[1] "Imprimir modelos seleccionados con %1"
  8243. #~ msgctxt "@info:status"
  8244. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  8245. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  8246. #~ msgctxt "@label"
  8247. #~ msgid "Version Upgrade 2.4 to 2.5"
  8248. #~ msgstr "Actualización de la versión 2.4 a la 2.5"
  8249. #~ msgctxt "@info:whatsthis"
  8250. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  8251. #~ msgstr "Actualiza la configuración de Cura 2.4 a Cura 2.5."
  8252. #~ msgctxt "@info:status"
  8253. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  8254. #~ msgstr "No se puede encontrar el perfil de calidad de esta combinación. Se utilizarán los ajustes predeterminados."
  8255. #~ msgctxt "@title:window"
  8256. #~ msgid "Oops!"
  8257. #~ msgstr "¡Vaya!"
  8258. #~ msgctxt "@label"
  8259. #~ msgid ""
  8260. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  8261. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  8262. #~ " <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"
  8263. #~ " "
  8264. #~ msgstr ""
  8265. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  8266. #~ " <p>Esperamos que la imagen de este gatito le ayude a recuperarse del shock.</p>\n"
  8267. #~ " <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"
  8268. #~ " "
  8269. #~ msgctxt "@label"
  8270. #~ msgid "Please enter the correct settings for your printer below:"
  8271. #~ msgstr "Introduzca los ajustes correctos de la impresora a continuación:"
  8272. #~ msgctxt "@label"
  8273. #~ msgid "Extruder %1"
  8274. #~ msgstr "Extrusor %1"
  8275. #~ msgctxt "@label Followed by extruder selection drop-down."
  8276. #~ msgid "Print model with"
  8277. #~ msgstr "Imprimir modelo con"
  8278. #~ msgctxt "@label"
  8279. #~ msgid "You will need to restart the application for language changes to have effect."
  8280. #~ msgstr "Tendrá que reiniciar la aplicación para que tengan efecto los cambios del idioma."
  8281. #~ msgctxt "@info:tooltip"
  8282. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  8283. #~ msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo."
  8284. #~ msgctxt "@action:inmenu menubar:edit"
  8285. #~ msgid "Delete &Selection"
  8286. #~ msgstr "Eliminar &selección"
  8287. #~ msgctxt "@action:inmenu menubar:file"
  8288. #~ msgid "&Open File..."
  8289. #~ msgstr "&Abrir archivo..."
  8290. #~ msgctxt "@action:inmenu menubar:file"
  8291. #~ msgid "&Open Project..."
  8292. #~ msgstr "A&brir proyecto..."
  8293. #~ msgctxt "@title:window"
  8294. #~ msgid "Multiply Model"
  8295. #~ msgstr "Multiplicar modelo"
  8296. #~ msgctxt "@title:menu menubar:file"
  8297. #~ msgid "Save &All"
  8298. #~ msgstr "Guardar &todo"
  8299. #~ msgctxt "@title:window"
  8300. #~ msgid "Open file"
  8301. #~ msgstr "Abrir archivo"
  8302. #~ msgctxt "@title:window"
  8303. #~ msgid "Open workspace"
  8304. #~ msgstr "Abrir área de trabajo"
  8305. #~ msgctxt "@label"
  8306. #~ msgid "Hollow"
  8307. #~ msgstr "Hueco"
  8308. #~ msgctxt "@label"
  8309. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  8310. #~ msgstr "Ningún (0%) relleno, lo que dejará hueco el modelo a costa de baja resistencia"
  8311. #~ msgctxt "@label"
  8312. #~ msgid "Light"
  8313. #~ msgstr "Ligero"
  8314. #~ msgctxt "@label"
  8315. #~ msgid "Light (20%) infill will give your model an average strength"
  8316. #~ msgstr "Un relleno ligero (20%) dará al modelo de una resistencia media"
  8317. #~ msgctxt "@label"
  8318. #~ msgid "Dense"
  8319. #~ msgstr "Denso"
  8320. #~ msgctxt "@label"
  8321. #~ msgid "Dense (50%) infill will give your model an above average strength"
  8322. #~ msgstr "Un relleno denso (50%) dará al modelo de una resistencia por encima de la media"
  8323. #~ msgctxt "@label"
  8324. #~ msgid "Solid"
  8325. #~ msgstr "Sólido"
  8326. #~ msgctxt "@label"
  8327. #~ msgid "Solid (100%) infill will make your model completely solid"
  8328. #~ msgstr "Un relleno sólido (100%) hará que el modelo sea completamente macizo"
  8329. #~ msgctxt "@label"
  8330. #~ msgid "Enable Support"
  8331. #~ msgstr "Habilitar el soporte"
  8332. #~ msgctxt "@label"
  8333. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  8334. #~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos."
  8335. #~ msgctxt "@label"
  8336. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  8337. #~ msgstr "¿Necesita mejorar sus impresiones? Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>."
  8338. #~ msgctxt "@info:status"
  8339. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  8340. #~ msgstr "Conectado a través de la red a {0}. Apruebe la solicitud de acceso en la impresora."
  8341. #~ msgctxt "@info:status"
  8342. #~ msgid "Connected over the network to {0}."
  8343. #~ msgstr "Conectado a través de la red a {0}."
  8344. #~ msgctxt "@info:status"
  8345. #~ msgid "Connected over the network to {0}. No access to control the printer."
  8346. #~ msgstr "Conectado a través de la red a {0}. No hay acceso para controlar la impresora."
  8347. #~ msgctxt "@info:status"
  8348. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  8349. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión porque la impresora está ocupada. Compruebe la impresora."
  8350. #~ msgctxt "@label"
  8351. #~ msgid "You made changes to the following setting(s)/override(s):"
  8352. #~ msgstr "Ha realizado cambios en los siguientes ajustes o se ha sobrescrito:"
  8353. #~ msgctxt "@window:title"
  8354. #~ msgid "Switched profiles"
  8355. #~ msgstr "Perfiles activados"
  8356. #~ msgctxt "@label"
  8357. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  8358. #~ msgstr "¿Desea transferir los %d ajustes o sobrescrituras modificados a este perfil?"
  8359. #~ msgctxt "@label"
  8360. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  8361. #~ msgstr "Si transfiere los ajustes, se sobrescribirán los del perfil. Si no los transfiere, se perderán."
  8362. #~ msgctxt "@label"
  8363. #~ msgid "Cost per Meter (Approx.)"
  8364. #~ msgstr "Coste por metro (aprox.)"
  8365. #~ msgctxt "@label"
  8366. #~ msgid "%1/m"
  8367. #~ msgstr "%1/m"
  8368. #~ msgctxt "@info:tooltip"
  8369. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  8370. #~ 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."
  8371. #~ msgctxt "@action:button"
  8372. #~ msgid "Display five top layers in layer view"
  8373. #~ msgstr "Mostrar las cinco primeras capas en la vista de capas"
  8374. #~ msgctxt "@info:tooltip"
  8375. #~ msgid "Should only the top layers be displayed in layerview?"
  8376. #~ msgstr "¿Deben mostrarse solo las primeras capas en la vista de capas?"
  8377. #~ msgctxt "@option:check"
  8378. #~ msgid "Only display top layer(s) in layer view"
  8379. #~ msgstr "Mostrar solo las primeras capas en la vista de capas"
  8380. #~ msgctxt "@label"
  8381. #~ msgid "Opening files"
  8382. #~ msgstr "Abriendo archivos..."
  8383. #~ msgctxt "@label"
  8384. #~ msgid "Printer Monitor"
  8385. #~ msgstr "Monitor de la impresora"
  8386. #~ msgctxt "@label"
  8387. #~ msgid "Temperatures"
  8388. #~ msgstr "Temperaturas"
  8389. #~ msgctxt "@label:PrintjobStatus"
  8390. #~ msgid "Preparing to slice..."
  8391. #~ msgstr "Preparando para segmentar..."
  8392. #~ msgctxt "@window:title"
  8393. #~ msgid "Changes on the Printer"
  8394. #~ msgstr "Cambios en la impresora"
  8395. #~ msgctxt "@action:inmenu"
  8396. #~ msgid "&Duplicate Model"
  8397. #~ msgstr "&Duplicar modelo"
  8398. #~ msgctxt "@label"
  8399. #~ msgid "Helper Parts:"
  8400. #~ msgstr "Partes de los asistentes:"
  8401. #~ msgctxt "@label"
  8402. #~ 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."
  8403. #~ 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."
  8404. #~ msgctxt "@label"
  8405. #~ msgid "Don't print support"
  8406. #~ msgstr "No utilizar soporte de impresión."
  8407. #~ msgctxt "@label"
  8408. #~ msgid "Print support using %1"
  8409. #~ msgstr "Soporte de impresión con %1"
  8410. #~ msgctxt "@label:listbox"
  8411. #~ msgid "Printer:"
  8412. #~ msgstr "Impresora:"
  8413. #~ msgctxt "@info:status"
  8414. #~ msgid "Successfully imported profiles {0}"
  8415. #~ msgstr "Perfiles {0} importados correctamente"
  8416. #~ msgctxt "@label"
  8417. #~ msgid "Scripts"
  8418. #~ msgstr "Secuencias de comandos"
  8419. #~ msgctxt "@label"
  8420. #~ msgid "Active Scripts"
  8421. #~ msgstr "Secuencias de comandos activas"
  8422. #~ msgctxt "@label"
  8423. #~ msgid "Done"
  8424. #~ msgstr "Realizada"
  8425. #~ msgctxt "@item:inlistbox"
  8426. #~ msgid "English"
  8427. #~ msgstr "Inglés"
  8428. #~ msgctxt "@item:inlistbox"
  8429. #~ msgid "Finnish"
  8430. #~ msgstr "Finlandés"
  8431. #~ msgctxt "@item:inlistbox"
  8432. #~ msgid "French"
  8433. #~ msgstr "Francés"
  8434. #~ msgctxt "@item:inlistbox"
  8435. #~ msgid "German"
  8436. #~ msgstr "Alemán"
  8437. #~ msgctxt "@item:inlistbox"
  8438. #~ msgid "Italian"
  8439. #~ msgstr "Italiano"
  8440. #~ msgctxt "@item:inlistbox"
  8441. #~ msgid "Dutch"
  8442. #~ msgstr "Holandés"
  8443. #~ msgctxt "@item:inlistbox"
  8444. #~ msgid "Spanish"
  8445. #~ msgstr "Español"
  8446. #~ msgctxt "@label"
  8447. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  8448. #~ msgstr "¿Desea cambiar los PrintCores y materiales de Cura para que coincidan con la impresora?"
  8449. #~ msgctxt "@label:"
  8450. #~ msgid "Print Again"
  8451. #~ msgstr "Volver a imprimir"