cura.po 348 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306
  1. # Cura
  2. # Copyright (C) 2020 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.8\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2020-10-19 13:15+0200\n"
  10. "PO-Revision-Date: 2020-08-21 13:40+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language: es_ES\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  17. "X-Generator: Poedit 2.2.3\n"
  18. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  19. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  20. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:361
  21. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1581
  22. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  23. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  24. msgctxt "@label"
  25. msgid "Unknown"
  26. msgstr "Desconocido"
  27. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  28. msgctxt "@label"
  29. msgid "The printer(s) below cannot be connected because they are part of a group"
  30. msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo"
  31. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  32. msgctxt "@label"
  33. msgid "Available networked printers"
  34. msgstr "Impresoras en red disponibles"
  35. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:211
  36. msgctxt "@menuitem"
  37. msgid "Not overridden"
  38. msgstr "No reemplazado"
  39. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  40. #, python-brace-format
  41. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  42. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  43. msgstr "¿Seguro que desea eliminar {0}? Esta acción no se puede deshacer."
  44. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  45. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
  46. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:338
  47. msgctxt "@label"
  48. msgid "Default"
  49. msgstr "Default"
  50. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  51. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  52. msgctxt "@label"
  53. msgid "Visual"
  54. msgstr "Visual"
  55. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  56. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  57. msgctxt "@text"
  58. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  59. 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."
  60. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  61. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  62. msgctxt "@label"
  63. msgid "Engineering"
  64. msgstr "Engineering"
  65. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  66. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  67. msgctxt "@text"
  68. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  69. msgstr "El perfil de ingeniería ha sido diseñado para imprimir prototipos funcionales y piezas de uso final con la intención de obtener una mayor precisión y tolerancias más precisas."
  70. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  71. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  72. msgctxt "@label"
  73. msgid "Draft"
  74. msgstr "Boceto"
  75. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  76. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  77. msgctxt "@text"
  78. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  79. msgstr "El perfil del boceto ha sido diseñado para imprimir los prototipos iniciales y la validación del concepto con la intención de reducir el tiempo de impresión de manera considerable."
  80. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  81. msgctxt "@label"
  82. msgid "Custom Material"
  83. msgstr "Material personalizado"
  84. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:227
  85. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  86. msgctxt "@label"
  87. msgid "Custom"
  88. msgstr "Personalizado"
  89. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:383
  90. msgctxt "@label"
  91. msgid "Custom profiles"
  92. msgstr "Perfiles personalizados"
  93. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:418
  94. #, python-brace-format
  95. msgctxt "@item:inlistbox"
  96. msgid "All Supported Types ({0})"
  97. msgstr "Todos los tipos compatibles ({0})"
  98. #: /home/trin/Gedeeld/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:419
  99. msgctxt "@item:inlistbox"
  100. msgid "All Files (*)"
  101. msgstr "Todos los archivos (*)"
  102. #: /home/trin/Gedeeld/Projects/Cura/cura/API/Account.py:178
  103. msgctxt "@info:title"
  104. msgid "Login failed"
  105. msgstr "Fallo de inicio de sesión"
  106. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  107. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  108. msgctxt "@info:status"
  109. msgid "Finding new location for objects"
  110. msgstr "Buscando nueva ubicación para los objetos"
  111. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  112. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  113. msgctxt "@info:title"
  114. msgid "Finding Location"
  115. msgstr "Buscando ubicación"
  116. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  117. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  118. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:76
  119. msgctxt "@info:status"
  120. msgid "Unable to find a location within the build volume for all objects"
  121. msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos"
  122. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  123. #: /home/trin/Gedeeld/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  124. msgctxt "@info:title"
  125. msgid "Can't Find Location"
  126. msgstr "No se puede encontrar la ubicación"
  127. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:104
  128. msgctxt "@info:backup_failed"
  129. msgid "Could not create archive from user data directory: {}"
  130. msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}"
  131. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:110
  132. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  133. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  134. msgctxt "@info:title"
  135. msgid "Backup"
  136. msgstr "Copia de seguridad"
  137. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:123
  138. msgctxt "@info:backup_failed"
  139. msgid "Tried to restore a Cura backup without having proper data or meta data."
  140. msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
  141. #: /home/trin/Gedeeld/Projects/Cura/cura/Backups/Backup.py:134
  142. msgctxt "@info:backup_failed"
  143. msgid "Tried to restore a Cura backup that is higher than the current version."
  144. msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual."
  145. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:98
  146. msgctxt "@info:status"
  147. msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models."
  148. msgstr "La altura del volumen de impresión se ha reducido debido al valor del ajuste «Secuencia de impresión» para evitar que el caballete colisione con los modelos impresos."
  149. #: /home/trin/Gedeeld/Projects/Cura/cura/BuildVolume.py:100
  150. msgctxt "@info:title"
  151. msgid "Build Volume"
  152. msgstr "Volumen de impresión"
  153. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:107
  154. msgctxt "@title:window"
  155. msgid "Cura can't start"
  156. msgstr "Cura no puede iniciarse"
  157. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:113
  158. msgctxt "@label crash message"
  159. msgid ""
  160. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  161. " <p>We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.</p>\n"
  162. " <p>Backups can be found in the configuration folder.</p>\n"
  163. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  164. " "
  165. msgstr ""
  166. "<p><b>¡Vaya! Ultimaker Cura ha encontrado un error.</p></b>\n"
  167. " <p>Hemos detectado un error irreversible durante el inicio, posiblemente como consecuencia de varios archivos de configuración erróneos. Le recomendamos que realice una copia de seguridad y que restablezca los ajustes.</p>\n"
  168. " <p>Las copias de seguridad se encuentran en la carpeta de configuración.</p>\n"
  169. " <p>Envíenos el informe de errores para que podamos solucionar el problema.</p>\n"
  170. " "
  171. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:122
  172. msgctxt "@action:button"
  173. msgid "Send crash report to Ultimaker"
  174. msgstr "Enviar informe de errores a Ultimaker"
  175. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:125
  176. msgctxt "@action:button"
  177. msgid "Show detailed crash report"
  178. msgstr "Mostrar informe de errores detallado"
  179. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:129
  180. msgctxt "@action:button"
  181. msgid "Show configuration folder"
  182. msgstr "Mostrar carpeta de configuración"
  183. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:140
  184. msgctxt "@action:button"
  185. msgid "Backup and Reset Configuration"
  186. msgstr "Realizar copia de seguridad y restablecer configuración"
  187. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:171
  188. msgctxt "@title:window"
  189. msgid "Crash Report"
  190. msgstr "Informe del accidente"
  191. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:190
  192. msgctxt "@label crash message"
  193. msgid ""
  194. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  195. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  196. " "
  197. msgstr ""
  198. "<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"
  199. " <p>Utilice el botón \"Enviar informe\" para publicar automáticamente el informe de errores en nuestros servidores.</p>\n"
  200. " "
  201. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:198
  202. msgctxt "@title:groupbox"
  203. msgid "System information"
  204. msgstr "Información del sistema"
  205. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:207
  206. msgctxt "@label unknown version of Cura"
  207. msgid "Unknown"
  208. msgstr "Desconocido"
  209. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:228
  210. msgctxt "@label Cura version number"
  211. msgid "Cura version"
  212. msgstr "Versión de Cura"
  213. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:229
  214. msgctxt "@label"
  215. msgid "Cura language"
  216. msgstr "Idioma de Cura"
  217. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:230
  218. msgctxt "@label"
  219. msgid "OS language"
  220. msgstr "Idioma del sistema operativo"
  221. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:231
  222. msgctxt "@label Type of platform"
  223. msgid "Platform"
  224. msgstr "Plataforma"
  225. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:232
  226. msgctxt "@label"
  227. msgid "Qt version"
  228. msgstr "Versión Qt"
  229. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:233
  230. msgctxt "@label"
  231. msgid "PyQt version"
  232. msgstr "Versión PyQt"
  233. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:234
  234. msgctxt "@label OpenGL version"
  235. msgid "OpenGL"
  236. msgstr "OpenGL"
  237. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:264
  238. msgctxt "@label"
  239. msgid "Not yet initialized<br/>"
  240. msgstr "Aún no se ha inicializado<br/>"
  241. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:267
  242. #, python-brace-format
  243. msgctxt "@label OpenGL version"
  244. msgid "<li>OpenGL Version: {version}</li>"
  245. msgstr "<li>Versión de OpenGL: {version}</li>"
  246. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:268
  247. #, python-brace-format
  248. msgctxt "@label OpenGL vendor"
  249. msgid "<li>OpenGL Vendor: {vendor}</li>"
  250. msgstr "<li>Proveedor de OpenGL: {vendor}</li>"
  251. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:269
  252. #, python-brace-format
  253. msgctxt "@label OpenGL renderer"
  254. msgid "<li>OpenGL Renderer: {renderer}</li>"
  255. msgstr "<li>Representador de OpenGL: {renderer}</li>"
  256. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:303
  257. msgctxt "@title:groupbox"
  258. msgid "Error traceback"
  259. msgstr "Rastreabilidad de errores"
  260. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:389
  261. msgctxt "@title:groupbox"
  262. msgid "Logs"
  263. msgstr "Registros"
  264. #: /home/trin/Gedeeld/Projects/Cura/cura/CrashHandler.py:417
  265. msgctxt "@action:button"
  266. msgid "Send report"
  267. msgstr "Enviar informe"
  268. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:521
  269. msgctxt "@info:progress"
  270. msgid "Loading machines..."
  271. msgstr "Cargando máquinas..."
  272. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:528
  273. msgctxt "@info:progress"
  274. msgid "Setting up preferences..."
  275. msgstr "Configurando preferencias...."
  276. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:657
  277. msgctxt "@info:progress"
  278. msgid "Initializing Active Machine..."
  279. msgstr "Iniciando la máquina activa..."
  280. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:788
  281. msgctxt "@info:progress"
  282. msgid "Initializing machine manager..."
  283. msgstr "Iniciando el administrador de la máquina..."
  284. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:802
  285. msgctxt "@info:progress"
  286. msgid "Initializing build volume..."
  287. msgstr "Iniciando el volumen de impresión..."
  288. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:870
  289. msgctxt "@info:progress"
  290. msgid "Setting up scene..."
  291. msgstr "Configurando escena..."
  292. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:906
  293. msgctxt "@info:progress"
  294. msgid "Loading interface..."
  295. msgstr "Cargando interfaz..."
  296. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:911
  297. msgctxt "@info:progress"
  298. msgid "Initializing engine..."
  299. msgstr "Iniciando el motor..."
  300. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1221
  301. #, python-format
  302. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  303. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  304. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  305. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1777
  306. #, python-brace-format
  307. msgctxt "@info:status"
  308. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  309. msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
  310. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1778
  311. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:188
  312. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:242
  313. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  314. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  315. msgctxt "@info:title"
  316. msgid "Warning"
  317. msgstr "Advertencia"
  318. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1787
  319. #, python-brace-format
  320. msgctxt "@info:status"
  321. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  322. msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
  323. #: /home/trin/Gedeeld/Projects/Cura/cura/CuraApplication.py:1788
  324. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:146
  325. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:153
  326. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  327. msgctxt "@info:title"
  328. msgid "Error"
  329. msgstr "Error"
  330. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:26
  331. msgctxt "@info:status"
  332. msgid "Multiplying and placing objects"
  333. msgstr "Multiplicar y colocar objetos"
  334. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:28
  335. msgctxt "@info:title"
  336. msgid "Placing Objects"
  337. msgstr "Colocando objetos"
  338. #: /home/trin/Gedeeld/Projects/Cura/cura/MultiplyObjectsJob.py:77
  339. msgctxt "@info:title"
  340. msgid "Placing Object"
  341. msgstr "Colocando objeto"
  342. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:90
  343. msgctxt "@message"
  344. msgid "Could not read response."
  345. msgstr "No se ha podido leer la respuesta."
  346. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  347. msgctxt "@message"
  348. msgid "The provided state is not correct."
  349. msgstr "El estado indicado no es correcto."
  350. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  351. msgctxt "@message"
  352. msgid "Please give the required permissions when authorizing this application."
  353. msgstr "Conceda los permisos necesarios al autorizar esta aplicación."
  354. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  355. msgctxt "@message"
  356. msgid "Something unexpected happened when trying to log in, please try again."
  357. msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo."
  358. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:187
  359. msgctxt "@info"
  360. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  361. 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."
  362. #: /home/trin/Gedeeld/Projects/Cura/cura/OAuth2/AuthorizationService.py:242
  363. msgctxt "@info"
  364. msgid "Unable to reach the Ultimaker account server."
  365. msgstr "No se puede acceder al servidor de cuentas de Ultimaker."
  366. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:205
  367. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:132
  368. msgctxt "@title:window"
  369. msgid "File Already Exists"
  370. msgstr "El archivo ya existe"
  371. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:206
  372. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:133
  373. #, python-brace-format
  374. msgctxt "@label Don't translate the XML tag <filename>!"
  375. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  376. msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  377. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:452
  378. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/ContainerManager.py:455
  379. msgctxt "@info:status"
  380. msgid "Invalid file URL:"
  381. msgstr "URL del archivo no válida:"
  382. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:144
  383. #, python-brace-format
  384. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  385. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  386. msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  387. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:151
  388. #, python-brace-format
  389. msgctxt "@info:status Don't translate the XML tag <filename>!"
  390. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  391. msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  392. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:156
  393. #, python-brace-format
  394. msgctxt "@info:status Don't translate the XML tag <filename>!"
  395. msgid "Exported profile to <filename>{0}</filename>"
  396. msgstr "Perfil exportado a <filename>{0}</filename>"
  397. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:157
  398. msgctxt "@info:title"
  399. msgid "Export succeeded"
  400. msgstr "Exportación correcta"
  401. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:188
  402. #, python-brace-format
  403. msgctxt "@info:status Don't translate the XML tags <filename>!"
  404. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  405. msgstr "Error al importar el perfil de <filename>{0}</filename>: {1}"
  406. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:192
  407. #, python-brace-format
  408. msgctxt "@info:status Don't translate the XML tags <filename>!"
  409. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  410. msgstr "No se puede importar el perfil de <filename>{0}</filename> antes de añadir una impresora."
  411. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:207
  412. #, python-brace-format
  413. msgctxt "@info:status Don't translate the XML tags <filename>!"
  414. msgid "No custom profile to import in file <filename>{0}</filename>"
  415. msgstr "No hay ningún perfil personalizado para importar en el archivo <filename>{0}</filename>"
  416. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:211
  417. #, python-brace-format
  418. msgctxt "@info:status Don't translate the XML tags <filename>!"
  419. msgid "Failed to import profile from <filename>{0}</filename>:"
  420. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  421. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
  422. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:245
  423. #, python-brace-format
  424. msgctxt "@info:status Don't translate the XML tags <filename>!"
  425. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  426. msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  427. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:338
  428. #, python-brace-format
  429. msgctxt "@info:status Don't translate the XML tag <filename>!"
  430. msgid "Failed to import profile from <filename>{0}</filename>:"
  431. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  432. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:342
  433. #, python-brace-format
  434. msgctxt "@info:status"
  435. msgid "Successfully imported profile {0}."
  436. msgstr "Perfil {0} importado correctamente."
  437. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:349
  438. #, python-brace-format
  439. msgctxt "@info:status"
  440. msgid "File {0} does not contain any valid profile."
  441. msgstr "El archivo {0} no contiene ningún perfil válido."
  442. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:352
  443. #, python-brace-format
  444. msgctxt "@info:status"
  445. msgid "Profile {0} has an unknown file type or is corrupted."
  446. msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto."
  447. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:423
  448. msgctxt "@label"
  449. msgid "Custom profile"
  450. msgstr "Perfil personalizado"
  451. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:439
  452. msgctxt "@info:status"
  453. msgid "Profile is missing a quality type."
  454. msgstr "Al perfil le falta un tipo de calidad."
  455. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:443
  456. msgctxt "@info:status"
  457. msgid "Global stack is missing."
  458. msgstr "Falta la pila global."
  459. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:449
  460. msgctxt "@info:status"
  461. msgid "Unable to add the profile."
  462. msgstr "No se puede añadir el perfil."
  463. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:463
  464. #, python-brace-format
  465. msgctxt "@info:status"
  466. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  467. msgstr "El tipo de calidad '{0}' no es compatible con la definición actual de máquina activa '{1}'."
  468. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/CuraContainerRegistry.py:468
  469. #, python-brace-format
  470. msgctxt "@info:status"
  471. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  472. 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"
  473. " que pueda utilizar este tipo de calidad."
  474. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  475. msgctxt "@info:not supported profile"
  476. msgid "Not supported"
  477. msgstr "No compatible"
  478. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  479. msgctxt "@info:No intent profile selected"
  480. msgid "Default"
  481. msgstr "Default"
  482. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:712
  483. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  484. msgctxt "@label"
  485. msgid "Nozzle"
  486. msgstr "Tobera"
  487. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:860
  488. msgctxt "@info:message Followed by a list of settings."
  489. msgid "Settings have been changed to match the current availability of extruders:"
  490. msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:"
  491. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:862
  492. msgctxt "@info:title"
  493. msgid "Settings updated"
  494. msgstr "Ajustes actualizados"
  495. #: /home/trin/Gedeeld/Projects/Cura/cura/Settings/MachineManager.py:1447
  496. msgctxt "@info:title"
  497. msgid "Extruder(s) Disabled"
  498. msgstr "Extrusores deshabilitados"
  499. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  500. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  501. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  502. msgctxt "@action:button"
  503. msgid "Add"
  504. msgstr "Agregar"
  505. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:26
  506. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:263
  507. msgctxt "@action:button"
  508. msgid "Finish"
  509. msgstr "Finalizar"
  510. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/AddPrinterPagesModel.py:33
  511. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:441
  512. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
  513. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  514. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  515. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  516. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  517. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  518. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  519. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  520. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  521. msgctxt "@action:button"
  522. msgid "Cancel"
  523. msgstr "Cancelar"
  524. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/ObjectsModel.py:69
  525. #, python-brace-format
  526. msgctxt "@label"
  527. msgid "Group #{group_nr}"
  528. msgstr "N.º de grupo {group_nr}"
  529. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:83
  530. msgctxt "@tooltip"
  531. msgid "Outer Wall"
  532. msgstr "Pared exterior"
  533. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:84
  534. msgctxt "@tooltip"
  535. msgid "Inner Walls"
  536. msgstr "Paredes interiores"
  537. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:85
  538. msgctxt "@tooltip"
  539. msgid "Skin"
  540. msgstr "Forro"
  541. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:86
  542. msgctxt "@tooltip"
  543. msgid "Infill"
  544. msgstr "Relleno"
  545. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:87
  546. msgctxt "@tooltip"
  547. msgid "Support Infill"
  548. msgstr "Relleno de soporte"
  549. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:88
  550. msgctxt "@tooltip"
  551. msgid "Support Interface"
  552. msgstr "Interfaz de soporte"
  553. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:89
  554. msgctxt "@tooltip"
  555. msgid "Support"
  556. msgstr "Soporte"
  557. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:90
  558. msgctxt "@tooltip"
  559. msgid "Skirt"
  560. msgstr "Falda"
  561. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:91
  562. msgctxt "@tooltip"
  563. msgid "Prime Tower"
  564. msgstr "Torre auxiliar"
  565. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:92
  566. msgctxt "@tooltip"
  567. msgid "Travel"
  568. msgstr "Desplazamiento"
  569. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:93
  570. msgctxt "@tooltip"
  571. msgid "Retractions"
  572. msgstr "Retracciones"
  573. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/PrintInformation.py:94
  574. msgctxt "@tooltip"
  575. msgid "Other"
  576. msgstr "Otro"
  577. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  578. msgctxt "@action:button"
  579. msgid "Next"
  580. msgstr "Siguiente"
  581. #: /home/trin/Gedeeld/Projects/Cura/cura/UI/WhatsNewPagesModel.py:17
  582. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  583. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  584. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  585. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:173
  586. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:127
  587. msgctxt "@action:button"
  588. msgid "Close"
  589. msgstr "Cerrar"
  590. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  591. msgctxt "@info:title"
  592. msgid "3D Model Assistant"
  593. msgstr "Asistente del modelo 3D"
  594. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.py:96
  595. #, python-brace-format
  596. msgctxt "@info:status"
  597. msgid ""
  598. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  599. "<p>{model_names}</p>\n"
  600. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  601. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  602. msgstr ""
  603. "<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"
  604. "<p>{model_names}</p>\n"
  605. "<p>Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.</p>\n"
  606. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guía de impresión de calidad</a></p>"
  607. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  608. #, python-brace-format
  609. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  610. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  611. msgstr "El archivo del proyecto <filename>{0}</filename> contiene un tipo de máquina desconocida <message>{1}</message>. No se puede importar la máquina, en su lugar, se importarán los modelos."
  612. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  613. msgctxt "@info:title"
  614. msgid "Open Project File"
  615. msgstr "Abrir archivo de proyecto"
  616. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  617. #, python-brace-format
  618. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  619. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  620. msgstr "El archivo de proyecto <filename>{0}</filename> está repentinamente inaccesible: <message>{1}</message>."
  621. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
  622. msgctxt "@info:title"
  623. msgid "Can't Open Project File"
  624. msgstr "No se puede abrir el archivo de proyecto"
  625. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:686
  626. #, python-brace-format
  627. msgctxt "@info:error Don't translate the XML tag <filename>!"
  628. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  629. msgstr "El archivo de proyecto <filename>{0}</filename> se ha creado con perfiles desconocidos para esta versión de Ultimaker Cura."
  630. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  631. msgctxt "@title:tab"
  632. msgid "Recommended"
  633. msgstr "Recomendado"
  634. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  635. msgctxt "@title:tab"
  636. msgid "Custom"
  637. msgstr "Personalizado"
  638. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:27
  639. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/__init__.py:33
  640. msgctxt "@item:inlistbox"
  641. msgid "3MF File"
  642. msgstr "Archivo 3MF"
  643. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  644. msgctxt "@error:zip"
  645. msgid "3MF Writer plug-in is corrupt."
  646. msgstr "El complemento del Escritor de 3MF está dañado."
  647. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  648. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  649. msgctxt "@error:zip"
  650. msgid "No permission to write the workspace here."
  651. msgstr "No tiene permiso para escribir el espacio de trabajo aquí."
  652. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  653. msgctxt "@error:zip"
  654. msgid "The operating system does not allow saving a project file to this location or with this file name."
  655. msgstr "El sistema operativo no permite guardar un archivo de proyecto en esta ubicación ni con este nombre de archivo."
  656. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:185
  657. msgctxt "@error:zip"
  658. msgid "Error writing 3mf file."
  659. msgstr "Error al escribir el archivo 3MF."
  660. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:26
  661. msgctxt "@item:inlistbox"
  662. msgid "3MF file"
  663. msgstr "Archivo 3MF"
  664. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFWriter/__init__.py:34
  665. msgctxt "@item:inlistbox"
  666. msgid "Cura Project 3MF file"
  667. msgstr "Archivo 3MF del proyecto de Cura"
  668. #: /home/trin/Gedeeld/Projects/Cura/plugins/AMFReader/__init__.py:15
  669. msgctxt "@item:inlistbox"
  670. msgid "AMF File"
  671. msgstr "Archivo AMF"
  672. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  673. msgctxt "@info:title"
  674. msgid "Backups"
  675. msgstr "Copias de seguridad"
  676. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  677. msgctxt "@info:backup_status"
  678. msgid "There was an error while uploading your backup."
  679. msgstr "Se ha producido un error al cargar su copia de seguridad."
  680. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  681. msgctxt "@info:backup_status"
  682. msgid "Creating your backup..."
  683. msgstr "Creando copia de seguridad..."
  684. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  685. msgctxt "@info:backup_status"
  686. msgid "There was an error while creating your backup."
  687. msgstr "Se ha producido un error al crear la copia de seguridad."
  688. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  689. msgctxt "@info:backup_status"
  690. msgid "Uploading your backup..."
  691. msgstr "Cargando su copia de seguridad..."
  692. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  693. msgctxt "@info:backup_status"
  694. msgid "Your backup has finished uploading."
  695. msgstr "Su copia de seguridad ha terminado de cargarse."
  696. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  697. msgctxt "@error:file_size"
  698. msgid "The backup exceeds the maximum file size."
  699. msgstr "La copia de seguridad excede el tamaño máximo de archivo."
  700. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:82
  701. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  702. msgctxt "@info:backup_status"
  703. msgid "There was an error trying to restore your backup."
  704. msgstr "Se ha producido un error al intentar restaurar su copia de seguridad."
  705. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  706. msgctxt "@item:inmenu"
  707. msgid "Manage backups"
  708. msgstr "Administrar copias de seguridad"
  709. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:356
  710. msgctxt "@info:status"
  711. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  712. msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
  713. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:356
  714. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:387
  715. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:411
  716. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:420
  717. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:429
  718. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:441
  719. msgctxt "@info:title"
  720. msgid "Unable to slice"
  721. msgstr "No se puede segmentar"
  722. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386
  723. #, python-brace-format
  724. msgctxt "@info:status"
  725. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  726. msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
  727. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:410
  728. #, python-brace-format
  729. msgctxt "@info:status"
  730. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  731. msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
  732. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:419
  733. msgctxt "@info:status"
  734. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  735. msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
  736. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:428
  737. #, python-format
  738. msgctxt "@info:status"
  739. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  740. msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado."
  741. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  742. msgctxt "@info:status"
  743. msgid ""
  744. "Please review settings and check if your models:\n"
  745. "- Fit within the build volume\n"
  746. "- Are assigned to an enabled extruder\n"
  747. "- Are not all set as modifier meshes"
  748. msgstr ""
  749. "Revise la configuración y compruebe si sus modelos:\n"
  750. " - Se integran en el volumen de impresión\n"
  751. "- Están asignados a un extrusor activado\n"
  752. " - No están todos definidos como mallas modificadoras"
  753. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  754. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  755. msgctxt "@info:status"
  756. msgid "Processing Layers"
  757. msgstr "Procesando capas"
  758. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  759. msgctxt "@info:title"
  760. msgid "Information"
  761. msgstr "Información"
  762. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  763. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  764. msgctxt "@item:inlistbox"
  765. msgid "Cura Profile"
  766. msgstr "Perfil de cura"
  767. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  768. msgctxt "@info"
  769. msgid "Could not access update information."
  770. msgstr "No se pudo acceder a la información actualizada."
  771. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  772. #, python-brace-format
  773. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  774. 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}."
  775. 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}."
  776. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  777. #, python-format
  778. msgctxt "@info:title The %s gets replaced with the printer name."
  779. msgid "New %s firmware available"
  780. msgstr "Nuevo firmware de %s disponible"
  781. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  782. msgctxt "@action:button"
  783. msgid "How to update"
  784. msgstr "Cómo actualizar"
  785. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  786. msgctxt "@action"
  787. msgid "Update Firmware"
  788. msgstr "Actualizar firmware"
  789. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  790. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  791. msgctxt "@item:inlistbox"
  792. msgid "Compressed G-code File"
  793. msgstr "Archivo GCode comprimido"
  794. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  795. msgctxt "@error:not supported"
  796. msgid "GCodeGzWriter does not support text mode."
  797. msgstr "GCodeGzWriter no es compatible con el modo texto."
  798. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  799. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:14
  800. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  801. msgctxt "@item:inlistbox"
  802. msgid "G-code File"
  803. msgstr "Archivo GCode"
  804. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:347
  805. msgctxt "@info:status"
  806. msgid "Parsing G-code"
  807. msgstr "Analizar GCode"
  808. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:349
  809. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:503
  810. msgctxt "@info:title"
  811. msgid "G-code Details"
  812. msgstr "Datos de GCode"
  813. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/FlavorParser.py:501
  814. msgctxt "@info:generic"
  815. msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate."
  816. msgstr "Asegúrese de que el GCode es adecuado para la impresora y para su configuración antes de enviar el archivo a la misma. Es posible que la representación del GCode no sea precisa."
  817. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeReader/__init__.py:18
  818. msgctxt "@item:inlistbox"
  819. msgid "G File"
  820. msgstr "Archivo G"
  821. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  822. msgctxt "@error:not supported"
  823. msgid "GCodeWriter does not support non-text mode."
  824. msgstr "GCodeWriter no es compatible con el modo sin texto."
  825. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  826. #: /home/trin/Gedeeld/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  827. msgctxt "@warning:status"
  828. msgid "Please prepare G-code before exporting."
  829. msgstr "Prepare el Gcode antes de la exportación."
  830. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:14
  831. msgctxt "@item:inlistbox"
  832. msgid "JPG Image"
  833. msgstr "Imagen JPG"
  834. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:18
  835. msgctxt "@item:inlistbox"
  836. msgid "JPEG Image"
  837. msgstr "Imagen JPEG"
  838. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:22
  839. msgctxt "@item:inlistbox"
  840. msgid "PNG Image"
  841. msgstr "Imagen PNG"
  842. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:26
  843. msgctxt "@item:inlistbox"
  844. msgid "BMP Image"
  845. msgstr "Imagen BMP"
  846. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/__init__.py:30
  847. msgctxt "@item:inlistbox"
  848. msgid "GIF Image"
  849. msgstr "Imagen GIF"
  850. #: /home/trin/Gedeeld/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  851. msgctxt "@item:inlistbox"
  852. msgid "Cura 15.04 profiles"
  853. msgstr "Perfiles de Cura 15.04"
  854. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  855. msgctxt "@action"
  856. msgid "Machine Settings"
  857. msgstr "Ajustes de la máquina"
  858. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/__init__.py:14
  859. msgctxt "@item:inmenu"
  860. msgid "Monitor"
  861. msgstr "Supervisar"
  862. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  863. msgctxt "@label"
  864. msgid "Per Model Settings"
  865. msgstr "Ajustes por modelo"
  866. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  867. msgctxt "@info:tooltip"
  868. msgid "Configure Per Model Settings"
  869. msgstr "Configurar ajustes por modelo"
  870. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  871. msgctxt "@item:inmenu"
  872. msgid "Post Processing"
  873. msgstr "Posprocesamiento"
  874. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  875. msgctxt "@item:inmenu"
  876. msgid "Modify G-Code"
  877. msgstr "Modificar GCode"
  878. #: /home/trin/Gedeeld/Projects/Cura/plugins/PrepareStage/__init__.py:12
  879. msgctxt "@item:inmenu"
  880. msgid "Prepare"
  881. msgstr "Preparar"
  882. #: /home/trin/Gedeeld/Projects/Cura/plugins/PreviewStage/__init__.py:13
  883. msgctxt "@item:inmenu"
  884. msgid "Preview"
  885. msgstr "Vista previa"
  886. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  887. msgctxt "@action:button Preceded by 'Ready to'."
  888. msgid "Save to Removable Drive"
  889. msgstr "Guardar en unidad extraíble"
  890. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  891. #, python-brace-format
  892. msgctxt "@item:inlistbox"
  893. msgid "Save to Removable Drive {0}"
  894. msgstr "Guardar en unidad extraíble {0}"
  895. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  896. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  897. msgctxt "@info:status"
  898. msgid "There are no file formats available to write with!"
  899. msgstr "¡No hay formatos de archivo disponibles con los que escribir!"
  900. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  901. #, python-brace-format
  902. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  903. msgid "Saving to Removable Drive <filename>{0}</filename>"
  904. msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  905. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  906. msgctxt "@info:title"
  907. msgid "Saving"
  908. msgstr "Guardando"
  909. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
  910. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  911. #, python-brace-format
  912. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  913. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  914. msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  915. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  916. #, python-brace-format
  917. msgctxt "@info:status Don't translate the tag {device}!"
  918. msgid "Could not find a file name when trying to write to {device}."
  919. msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
  920. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
  921. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  922. #, python-brace-format
  923. msgctxt "@info:status"
  924. msgid "Could not save to removable drive {0}: {1}"
  925. msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
  926. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  927. #, python-brace-format
  928. msgctxt "@info:status"
  929. msgid "Saved to Removable Drive {0} as {1}"
  930. msgstr "Guardado en unidad extraíble {0} como {1}"
  931. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  932. msgctxt "@info:title"
  933. msgid "File Saved"
  934. msgstr "Archivo guardado"
  935. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  936. msgctxt "@action:button"
  937. msgid "Eject"
  938. msgstr "Expulsar"
  939. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  940. #, python-brace-format
  941. msgctxt "@action"
  942. msgid "Eject removable device {0}"
  943. msgstr "Expulsar dispositivo extraíble {0}"
  944. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  945. #, python-brace-format
  946. msgctxt "@info:status"
  947. msgid "Ejected {0}. You can now safely remove the drive."
  948. msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
  949. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  950. msgctxt "@info:title"
  951. msgid "Safely Remove Hardware"
  952. msgstr "Retirar de forma segura el hardware"
  953. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  954. #, python-brace-format
  955. msgctxt "@info:status"
  956. msgid "Failed to eject {0}. Another program may be using the drive."
  957. msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad."
  958. #: /home/trin/Gedeeld/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  959. msgctxt "@item:intext"
  960. msgid "Removable Drive"
  961. msgstr "Unidad extraíble"
  962. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  963. msgctxt "@info:status"
  964. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  965. msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada."
  966. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:122
  967. msgctxt "@info:title"
  968. msgid "Simulation View"
  969. msgstr "Vista de simulación"
  970. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:123
  971. msgctxt "@info:status"
  972. msgid "Nothing is shown because you need to slice first."
  973. msgstr "No se muestra nada porque primero hay que cortar."
  974. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:123
  975. msgctxt "@info:title"
  976. msgid "No layers to show"
  977. msgstr "No hay capas para mostrar"
  978. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationView.py:124
  979. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:73
  980. msgctxt "@info:option_text"
  981. msgid "Do not show this message again"
  982. msgstr "No volver a mostrar este mensaje"
  983. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/__init__.py:15
  984. msgctxt "@item:inlistbox"
  985. msgid "Layer view"
  986. msgstr "Vista de capas"
  987. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:70
  988. msgctxt "@info:status"
  989. msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  990. msgstr "Su modelo no es funcional. Las áreas resaltadas indican que faltan superficies o son extrañas."
  991. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/SolidView.py:72
  992. msgctxt "@info:title"
  993. msgid "Model errors"
  994. msgstr "Errores de modelo"
  995. #: /home/trin/Gedeeld/Projects/Cura/plugins/SolidView/__init__.py:12
  996. msgctxt "@item:inmenu"
  997. msgid "Solid view"
  998. msgstr "Vista de sólidos"
  999. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:12
  1000. msgctxt "@label"
  1001. msgid "Support Blocker"
  1002. msgstr "Bloqueador de soporte"
  1003. #: /home/trin/Gedeeld/Projects/Cura/plugins/SupportEraser/__init__.py:13
  1004. msgctxt "@info:tooltip"
  1005. msgid "Create a volume in which supports are not printed."
  1006. msgstr "Cree un volumen que no imprima los soportes."
  1007. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  1008. msgctxt "@info:generic"
  1009. msgid "Do you want to sync material and software packages with your account?"
  1010. msgstr "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
  1011. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  1012. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  1013. msgctxt "@info:title"
  1014. msgid "Changes detected from your Ultimaker account"
  1015. msgstr "Se han detectado cambios desde su cuenta de Ultimaker"
  1016. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:146
  1017. msgctxt "@action:button"
  1018. msgid "Sync"
  1019. msgstr "Sincronizar"
  1020. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  1021. msgctxt "@info:generic"
  1022. msgid "Syncing..."
  1023. msgstr "Sincronizando..."
  1024. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  1025. msgctxt "@button"
  1026. msgid "Decline"
  1027. msgstr "Rechazar"
  1028. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  1029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  1030. msgctxt "@button"
  1031. msgid "Agree"
  1032. msgstr "Estoy de acuerdo"
  1033. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  1034. msgctxt "@title:window"
  1035. msgid "Plugin License Agreement"
  1036. msgstr "Acuerdo de licencia de complemento"
  1037. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  1038. msgctxt "@button"
  1039. msgid "Decline and remove from account"
  1040. msgstr "Rechazar y eliminar de la cuenta"
  1041. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  1042. msgctxt "@info:generic"
  1043. msgid "You need to quit and restart {} before changes have effect."
  1044. msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto."
  1045. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:76
  1046. msgctxt "@info:generic"
  1047. msgid "{} plugins failed to download"
  1048. msgstr "Error al descargar los complementos {}"
  1049. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  1050. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1051. msgid "Open Compressed Triangle Mesh"
  1052. msgstr "Open Compressed Triangle Mesh"
  1053. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  1054. msgctxt "@item:inlistbox"
  1055. msgid "COLLADA Digital Asset Exchange"
  1056. msgstr "COLLADA Digital Asset Exchange"
  1057. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  1058. msgctxt "@item:inlistbox"
  1059. msgid "glTF Binary"
  1060. msgstr "glTF binario"
  1061. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  1062. msgctxt "@item:inlistbox"
  1063. msgid "glTF Embedded JSON"
  1064. msgstr "glTF incrustado JSON"
  1065. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  1066. msgctxt "@item:inlistbox"
  1067. msgid "Stanford Triangle Format"
  1068. msgstr "Stanford Triangle Format"
  1069. #: /home/trin/Gedeeld/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  1070. msgctxt "@item:inlistbox"
  1071. msgid "Compressed COLLADA Digital Asset Exchange"
  1072. msgstr "COLLADA Digital Asset Exchange comprimido"
  1073. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPReader/__init__.py:22
  1074. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/__init__.py:28
  1075. msgctxt "@item:inlistbox"
  1076. msgid "Ultimaker Format Package"
  1077. msgstr "Paquete de formato Ultimaker"
  1078. #: /home/trin/Gedeeld/Projects/Cura/plugins/UFPWriter/UFPWriter.py:146
  1079. msgctxt "@info:error"
  1080. msgid "Can't write to UFP file:"
  1081. msgstr "No se puede escribir en el archivo UFP:"
  1082. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1083. msgctxt "@action"
  1084. msgid "Level build plate"
  1085. msgstr "Nivelar placa de impresión"
  1086. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1087. msgctxt "@action"
  1088. msgid "Select upgrades"
  1089. msgstr "Seleccionar actualizaciones"
  1090. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  1091. msgctxt "@action:button"
  1092. msgid "Print via cloud"
  1093. msgstr "Imprimir mediante cloud"
  1094. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  1095. msgctxt "@properties:tooltip"
  1096. msgid "Print via cloud"
  1097. msgstr "Imprimir mediante cloud"
  1098. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  1099. msgctxt "@info:status"
  1100. msgid "Connected via cloud"
  1101. msgstr "Conectado mediante cloud"
  1102. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  1103. #, python-brace-format
  1104. msgctxt "@error:send"
  1105. msgid "Unknown error code when uploading print job: {0}"
  1106. msgstr "Código de error desconocido al cargar el trabajo de impresión: {0}"
  1107. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  1108. msgctxt "info:status"
  1109. msgid "New printer detected from your Ultimaker account"
  1110. msgid_plural "New printers detected from your Ultimaker account"
  1111. msgstr[0] "Se ha detectado una nueva impresora en su cuenta de Ultimaker"
  1112. msgstr[1] "Se han detectado nuevas impresoras en su cuenta de Ultimaker"
  1113. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  1114. #, python-brace-format
  1115. msgctxt "info:status Filled in with printer name and printer model."
  1116. msgid "Adding printer {name} ({model}) from your account"
  1117. msgstr "Añadiendo la impresora {name} ({model}) de su cuenta"
  1118. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  1119. #, python-brace-format
  1120. msgctxt "info:{0} gets replaced by a number of printers"
  1121. msgid "... and {0} other"
  1122. msgid_plural "... and {0} others"
  1123. msgstr[0] "... y {0} más"
  1124. msgstr[1] "... y {0} más"
  1125. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  1126. msgctxt "info:status"
  1127. msgid "Printers added from Digital Factory:"
  1128. msgstr "Impresoras añadidas desde Digital Factory:"
  1129. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  1130. msgctxt "info:status"
  1131. msgid "A cloud connection is not available for a printer"
  1132. msgid_plural "A cloud connection is not available for some printers"
  1133. msgstr[0] "La conexión a la nube no está disponible para una impresora"
  1134. msgstr[1] "La conexión a la nube no está disponible para algunas impresoras"
  1135. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  1136. msgctxt "info:status"
  1137. msgid "This printer is not linked to the Digital Factory:"
  1138. msgid_plural "These printers are not linked to the Digital Factory:"
  1139. msgstr[0] "Esta impresora no está vinculada a Digital Factory:"
  1140. msgstr[1] "Estas impresoras no están vinculadas a Digital Factory:"
  1141. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  1142. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  1143. msgctxt "info:name"
  1144. msgid "Ultimaker Digital Factory"
  1145. msgstr "Ultimaker Digital Factory"
  1146. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  1147. #, python-brace-format
  1148. msgctxt "info:status"
  1149. msgid "To establish a connection, please visit the {website_link}"
  1150. msgstr "Para establecer una conexión, visite {website_link}"
  1151. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  1152. msgctxt "@action:button"
  1153. msgid "Keep printer configurations"
  1154. msgstr "Mantener las configuraciones de la impresora"
  1155. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  1156. msgctxt "@action:button"
  1157. msgid "Remove printers"
  1158. msgstr "Eliminar impresoras"
  1159. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  1160. #, python-brace-format
  1161. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1162. msgid "{printer_name} will be removed until the next account sync."
  1163. msgstr "{printer_name} se eliminará hasta la próxima sincronización de la cuenta."
  1164. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  1165. #, python-brace-format
  1166. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1167. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  1168. msgstr "Para eliminar {printer_name} permanentemente, visite {digital_factory_link}"
  1169. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  1170. #, python-brace-format
  1171. msgctxt "@message {printer_name} is replaced with the name of the printer"
  1172. msgid "Are you sure you want to remove {printer_name} temporarily?"
  1173. msgstr "¿Seguro que desea eliminar {printer_name} temporalmente?"
  1174. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  1175. msgctxt "@title:window"
  1176. msgid "Remove printers?"
  1177. msgstr "¿Eliminar impresoras?"
  1178. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  1179. #, python-brace-format
  1180. msgctxt "@label"
  1181. msgid ""
  1182. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  1183. "Are you sure you want to continue?"
  1184. msgid_plural ""
  1185. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  1186. "Are you sure you want to continue?"
  1187. msgstr[0] "Está a punto de eliminar {0} impresora de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?"
  1188. msgstr[1] "Está a punto de eliminar {0} impresoras de Cura. Esta acción no se puede deshacer.\n¿Seguro que desea continuar?"
  1189. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  1190. msgctxt "@label"
  1191. msgid ""
  1192. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  1193. "Are you sure you want to continue?"
  1194. msgstr "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.¿Seguro que desea continuar?"
  1195. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  1196. msgctxt "@info:status"
  1197. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  1198. msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
  1199. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  1200. msgctxt "@info:status Ultimaker Cloud should not be translated."
  1201. msgid "Connect to Ultimaker Digital Factory"
  1202. msgstr "Conectar con Ultimaker Digital Factory"
  1203. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  1204. msgctxt "@action"
  1205. msgid "Get started"
  1206. msgstr "Empezar"
  1207. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1208. msgctxt "@info:status"
  1209. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1210. msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente."
  1211. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1212. msgctxt "@info:title"
  1213. msgid "Update your printer"
  1214. msgstr "Actualice su impresora"
  1215. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1216. #, python-brace-format
  1217. msgctxt "@info:status"
  1218. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1219. msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}."
  1220. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1221. msgctxt "@info:title"
  1222. msgid "Sending materials to printer"
  1223. msgstr "Enviando materiales a la impresora"
  1224. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  1225. #, python-brace-format
  1226. msgctxt "@info:status"
  1227. msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host."
  1228. 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."
  1229. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  1230. msgctxt "@info:title"
  1231. msgid "Not a group host"
  1232. msgstr "No es un host de grupo"
  1233. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  1234. msgctxt "@action"
  1235. msgid "Configure group"
  1236. msgstr "Configurar grupo"
  1237. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  1238. msgctxt "@info:status"
  1239. msgid "Please wait until the current job has been sent."
  1240. msgstr "Espere hasta que se envíe el trabajo actual."
  1241. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1242. msgctxt "@info:title"
  1243. msgid "Print error"
  1244. msgstr "Error de impresión"
  1245. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1246. msgctxt "@info:text"
  1247. msgid "Could not upload the data to the printer."
  1248. msgstr "No se han podido cargar los datos en la impresora."
  1249. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1250. msgctxt "@info:title"
  1251. msgid "Network error"
  1252. msgstr "Error de red"
  1253. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  1254. msgctxt "@info:status"
  1255. msgid "Sending Print Job"
  1256. msgstr "Enviando trabajo de impresión"
  1257. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  1258. msgctxt "@info:status"
  1259. msgid "Uploading print job to printer."
  1260. msgstr "Cargando el trabajo de impresión a la impresora."
  1261. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1262. msgctxt "@info:status"
  1263. msgid "Print job queue is full. The printer can't accept a new job."
  1264. msgstr "La cola de trabajos de impresión está llena. La impresora no puede aceptar trabajos nuevos."
  1265. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1266. msgctxt "@info:title"
  1267. msgid "Queue Full"
  1268. msgstr "Cola llena"
  1269. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1270. msgctxt "@info:status"
  1271. msgid "Print job was successfully sent to the printer."
  1272. msgstr "El trabajo de impresión se ha enviado correctamente a la impresora."
  1273. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1274. msgctxt "@info:title"
  1275. msgid "Data Sent"
  1276. msgstr "Fecha de envío"
  1277. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1278. msgctxt "@action:button Preceded by 'Ready to'."
  1279. msgid "Print over network"
  1280. msgstr "Imprimir a través de la red"
  1281. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1282. msgctxt "@properties:tooltip"
  1283. msgid "Print over network"
  1284. msgstr "Imprime a través de la red"
  1285. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1286. msgctxt "@info:status"
  1287. msgid "Connected over the network"
  1288. msgstr "Conectado a través de la red"
  1289. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  1290. msgctxt "@action"
  1291. msgid "Connect via Network"
  1292. msgstr "Conectar a través de la red"
  1293. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  1294. msgctxt "@info:status"
  1295. msgid "tomorrow"
  1296. msgstr "mañana"
  1297. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  1298. msgctxt "@info:status"
  1299. msgid "today"
  1300. msgstr "hoy"
  1301. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  1302. msgctxt "@item:inmenu"
  1303. msgid "USB printing"
  1304. msgstr "Impresión USB"
  1305. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  1306. msgctxt "@action:button Preceded by 'Ready to'."
  1307. msgid "Print via USB"
  1308. msgstr "Imprimir mediante USB"
  1309. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  1310. msgctxt "@info:tooltip"
  1311. msgid "Print via USB"
  1312. msgstr "Imprimir mediante USB"
  1313. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  1314. msgctxt "@info:status"
  1315. msgid "Connected via USB"
  1316. msgstr "Conectado mediante USB"
  1317. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  1318. msgctxt "@label"
  1319. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  1320. msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?"
  1321. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  1322. msgctxt "@message"
  1323. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  1324. 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."
  1325. #: /home/trin/Gedeeld/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  1326. msgctxt "@message"
  1327. msgid "Print in Progress"
  1328. msgstr "Impresión en curso"
  1329. #: /home/trin/Gedeeld/Projects/Cura/plugins/X3DReader/__init__.py:13
  1330. msgctxt "@item:inlistbox"
  1331. msgid "X3D File"
  1332. msgstr "Archivo X3D"
  1333. #: /home/trin/Gedeeld/Projects/Cura/plugins/XRayView/__init__.py:12
  1334. msgctxt "@item:inlistbox"
  1335. msgid "X-Ray view"
  1336. msgstr "Vista de rayos X"
  1337. #: /home/trin/Gedeeld/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  1338. msgctxt "@info:tooltip"
  1339. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  1340. msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos."
  1341. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  1342. msgctxt "@title:window"
  1343. msgid "Open Project"
  1344. msgstr "Abrir proyecto"
  1345. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:61
  1346. msgctxt "@action:ComboBox Update/override existing profile"
  1347. msgid "Update existing"
  1348. msgstr "Actualizar existente"
  1349. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  1350. msgctxt "@action:ComboBox Save settings in a new profile"
  1351. msgid "Create new"
  1352. msgstr "Crear nuevo"
  1353. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:74
  1354. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  1355. msgctxt "@action:title"
  1356. msgid "Summary - Cura Project"
  1357. msgstr "Resumen: proyecto de Cura"
  1358. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:96
  1359. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  1360. msgctxt "@action:label"
  1361. msgid "Printer settings"
  1362. msgstr "Ajustes de la impresora"
  1363. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:112
  1364. msgctxt "@info:tooltip"
  1365. msgid "How should the conflict in the machine be resolved?"
  1366. msgstr "¿Cómo debería solucionarse el conflicto en la máquina?"
  1367. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:165
  1368. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  1369. msgctxt "@action:label"
  1370. msgid "Type"
  1371. msgstr "Tipo"
  1372. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:181
  1373. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  1374. msgctxt "@action:label"
  1375. msgid "Printer Group"
  1376. msgstr "Grupo de impresoras"
  1377. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:203
  1378. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  1379. msgctxt "@action:label"
  1380. msgid "Profile settings"
  1381. msgstr "Ajustes del perfil"
  1382. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:219
  1383. msgctxt "@info:tooltip"
  1384. msgid "How should the conflict in the profile be resolved?"
  1385. msgstr "¿Cómo debería solucionarse el conflicto en el perfil?"
  1386. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:239
  1387. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:349
  1388. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  1389. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  1390. msgctxt "@action:label"
  1391. msgid "Name"
  1392. msgstr "Nombre"
  1393. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:255
  1394. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  1395. msgctxt "@action:label"
  1396. msgid "Intent"
  1397. msgstr "Intent"
  1398. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:271
  1399. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  1400. msgctxt "@action:label"
  1401. msgid "Not in profile"
  1402. msgstr "No está en el perfil"
  1403. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:276
  1404. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  1405. msgctxt "@action:label"
  1406. msgid "%1 override"
  1407. msgid_plural "%1 overrides"
  1408. msgstr[0] "%1 sobrescrito"
  1409. msgstr[1] "%1 sobrescritos"
  1410. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:287
  1411. msgctxt "@action:label"
  1412. msgid "Derivative from"
  1413. msgstr "Derivado de"
  1414. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:292
  1415. msgctxt "@action:label"
  1416. msgid "%1, %2 override"
  1417. msgid_plural "%1, %2 overrides"
  1418. msgstr[0] "%1, %2 sobrescrito"
  1419. msgstr[1] "%1, %2 sobrescritos"
  1420. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:309
  1421. msgctxt "@action:label"
  1422. msgid "Material settings"
  1423. msgstr "Ajustes del material"
  1424. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:325
  1425. msgctxt "@info:tooltip"
  1426. msgid "How should the conflict in the material be resolved?"
  1427. msgstr "¿Cómo debería solucionarse el conflicto en el material?"
  1428. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:369
  1429. msgctxt "@action:label"
  1430. msgid "Setting visibility"
  1431. msgstr "Visibilidad de los ajustes"
  1432. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:378
  1433. msgctxt "@action:label"
  1434. msgid "Mode"
  1435. msgstr "Modo"
  1436. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:394
  1437. msgctxt "@action:label"
  1438. msgid "Visible settings:"
  1439. msgstr "Ajustes visibles:"
  1440. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:399
  1441. msgctxt "@action:label"
  1442. msgid "%1 out of %2"
  1443. msgstr "%1 de un total de %2"
  1444. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:425
  1445. msgctxt "@action:warning"
  1446. msgid "Loading a project will clear all models on the build plate."
  1447. msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  1448. #: /home/trin/Gedeeld/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:453
  1449. msgctxt "@action:button"
  1450. msgid "Open"
  1451. msgstr "Abrir"
  1452. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  1453. msgctxt "@button"
  1454. msgid "Want more?"
  1455. msgstr "¿Desea obtener más información?"
  1456. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  1457. msgctxt "@button"
  1458. msgid "Backup Now"
  1459. msgstr "Realizar copia de seguridad ahora"
  1460. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  1461. msgctxt "@checkbox:description"
  1462. msgid "Auto Backup"
  1463. msgstr "Copia de seguridad automática"
  1464. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  1465. msgctxt "@checkbox:description"
  1466. msgid "Automatically create a backup each day that Cura is started."
  1467. msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura."
  1468. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  1469. msgctxt "@button"
  1470. msgid "Restore"
  1471. msgstr "Restaurar"
  1472. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  1473. msgctxt "@dialog:title"
  1474. msgid "Delete Backup"
  1475. msgstr "Eliminar copia de seguridad"
  1476. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  1477. msgctxt "@dialog:info"
  1478. msgid "Are you sure you want to delete this backup? This cannot be undone."
  1479. msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer."
  1480. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  1481. msgctxt "@dialog:title"
  1482. msgid "Restore Backup"
  1483. msgstr "Restaurar copia de seguridad"
  1484. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  1485. msgctxt "@dialog:info"
  1486. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  1487. msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?"
  1488. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  1489. msgctxt "@backuplist:label"
  1490. msgid "Cura Version"
  1491. msgstr "Versión de Cura"
  1492. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  1493. msgctxt "@backuplist:label"
  1494. msgid "Machines"
  1495. msgstr "Máquinas"
  1496. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  1497. msgctxt "@backuplist:label"
  1498. msgid "Materials"
  1499. msgstr "Materiales"
  1500. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  1501. msgctxt "@backuplist:label"
  1502. msgid "Profiles"
  1503. msgstr "Perfiles"
  1504. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1505. msgctxt "@backuplist:label"
  1506. msgid "Plugins"
  1507. msgstr "Complementos"
  1508. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  1509. msgctxt "@title:window"
  1510. msgid "Cura Backups"
  1511. msgstr "Copias de seguridad de Cura"
  1512. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1513. msgctxt "@title"
  1514. msgid "My Backups"
  1515. msgstr "Mis copias de seguridad"
  1516. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  1517. msgctxt "@empty_state"
  1518. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1519. msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una."
  1520. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  1521. msgctxt "@backup_limit_info"
  1522. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1523. 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."
  1524. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1525. msgctxt "@description"
  1526. msgid "Backup and synchronize your Cura settings."
  1527. msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura."
  1528. #: /home/trin/Gedeeld/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1529. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1530. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  1531. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:125
  1532. msgctxt "@button"
  1533. msgid "Sign in"
  1534. msgstr "Iniciar sesión"
  1535. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1536. msgctxt "@title"
  1537. msgid "Update Firmware"
  1538. msgstr "Actualizar firmware"
  1539. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1540. msgctxt "@label"
  1541. msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work."
  1542. msgstr "El firmware es la parte del software que se ejecuta directamente en la impresora 3D. Este firmware controla los motores de pasos, regula la temperatura y, finalmente, hace que funcione la impresora."
  1543. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1544. msgctxt "@label"
  1545. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1546. msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
  1547. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1548. msgctxt "@action:button"
  1549. msgid "Automatically upgrade Firmware"
  1550. msgstr "Actualización de firmware automática"
  1551. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1552. msgctxt "@action:button"
  1553. msgid "Upload custom Firmware"
  1554. msgstr "Cargar firmware personalizado"
  1555. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1556. msgctxt "@label"
  1557. msgid "Firmware can not be updated because there is no connection with the printer."
  1558. msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora."
  1559. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1560. msgctxt "@label"
  1561. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1562. msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware."
  1563. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1564. msgctxt "@title:window"
  1565. msgid "Select custom firmware"
  1566. msgstr "Seleccionar firmware personalizado"
  1567. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1568. msgctxt "@title:window"
  1569. msgid "Firmware Update"
  1570. msgstr "Actualización del firmware"
  1571. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1572. msgctxt "@label"
  1573. msgid "Updating firmware."
  1574. msgstr "Actualización del firmware."
  1575. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1576. msgctxt "@label"
  1577. msgid "Firmware update completed."
  1578. msgstr "Actualización del firmware completada."
  1579. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1580. msgctxt "@label"
  1581. msgid "Firmware update failed due to an unknown error."
  1582. msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
  1583. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1584. msgctxt "@label"
  1585. msgid "Firmware update failed due to an communication error."
  1586. msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
  1587. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1588. msgctxt "@label"
  1589. msgid "Firmware update failed due to an input/output error."
  1590. msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
  1591. #: /home/trin/Gedeeld/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1592. msgctxt "@label"
  1593. msgid "Firmware update failed due to missing firmware."
  1594. msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
  1595. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  1596. msgctxt "@title:window"
  1597. msgid "Convert Image..."
  1598. msgstr "Convertir imagen..."
  1599. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  1600. msgctxt "@info:tooltip"
  1601. msgid "The maximum distance of each pixel from \"Base.\""
  1602. msgstr "La distancia máxima de cada píxel desde la \"Base\"."
  1603. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  1604. msgctxt "@action:label"
  1605. msgid "Height (mm)"
  1606. msgstr "Altura (mm)"
  1607. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  1608. msgctxt "@info:tooltip"
  1609. msgid "The base height from the build plate in millimeters."
  1610. msgstr "La altura de la base desde la placa de impresión en milímetros."
  1611. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  1612. msgctxt "@action:label"
  1613. msgid "Base (mm)"
  1614. msgstr "Base (mm)"
  1615. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  1616. msgctxt "@info:tooltip"
  1617. msgid "The width in millimeters on the build plate."
  1618. msgstr "La anchura en milímetros en la placa de impresión."
  1619. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  1620. msgctxt "@action:label"
  1621. msgid "Width (mm)"
  1622. msgstr "Anchura (mm)"
  1623. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  1624. msgctxt "@info:tooltip"
  1625. msgid "The depth in millimeters on the build plate"
  1626. msgstr "La profundidad en milímetros en la placa de impresión"
  1627. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  1628. msgctxt "@action:label"
  1629. msgid "Depth (mm)"
  1630. msgstr "Profundidad (mm)"
  1631. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  1632. msgctxt "@info:tooltip"
  1633. msgid "For lithophanes dark pixels should correspond to thicker locations in order to block more light coming through. For height maps lighter pixels signify higher terrain, so lighter pixels should correspond to thicker locations in the generated 3D model."
  1634. msgstr "Para las litofanías, los píxeles oscuros deben coincidir con ubicaciones más gruesas para bloquear la entrada de más luz. En los mapas de altura, los píxeles más claros se corresponden con un terreno más alto, por lo que dichos píxeles deben coincidir con ubicaciones más gruesas en el modelo 3D generado."
  1635. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1636. msgctxt "@item:inlistbox"
  1637. msgid "Darker is higher"
  1638. msgstr "Cuanto más oscuro más alto"
  1639. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  1640. msgctxt "@item:inlistbox"
  1641. msgid "Lighter is higher"
  1642. msgstr "Cuanto más claro más alto"
  1643. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  1644. msgctxt "@info:tooltip"
  1645. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1646. msgstr "Para las litofanías hay disponible un modelo logarítmico simple para la translucidez. En los mapas de altura, los valores de los píxeles corresponden a las alturas linealmente."
  1647. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1648. msgctxt "@item:inlistbox"
  1649. msgid "Linear"
  1650. msgstr "Lineal"
  1651. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  1652. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  1653. msgctxt "@item:inlistbox"
  1654. msgid "Translucency"
  1655. msgstr "Translucidez"
  1656. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  1657. msgctxt "@info:tooltip"
  1658. msgid "The percentage of light penetrating a print with a thickness of 1 millimeter. Lowering this value increases the contrast in dark regions and decreases the contrast in light regions of the image."
  1659. msgstr "El porcentaje de luz que penetra en una impresión con un grosor de 1 milímetro. Bajar este valor aumenta el contraste en las regiones oscuras y disminuye el contraste en las regiones claras de la imagen."
  1660. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  1661. msgctxt "@action:label"
  1662. msgid "1mm Transmittance (%)"
  1663. msgstr "Transmitancia de 1 mm (%)"
  1664. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  1665. msgctxt "@info:tooltip"
  1666. msgid "The amount of smoothing to apply to the image."
  1667. msgstr "La cantidad de suavizado que se aplica a la imagen."
  1668. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  1669. msgctxt "@action:label"
  1670. msgid "Smoothing"
  1671. msgstr "Suavizado"
  1672. #: /home/trin/Gedeeld/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
  1673. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1674. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1675. msgctxt "@action:button"
  1676. msgid "OK"
  1677. msgstr "Aceptar"
  1678. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1679. msgctxt "@title:tab"
  1680. msgid "Printer"
  1681. msgstr "Impresora"
  1682. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1683. msgctxt "@title:label"
  1684. msgid "Nozzle Settings"
  1685. msgstr "Ajustes de la tobera"
  1686. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  1687. msgctxt "@label"
  1688. msgid "Nozzle size"
  1689. msgstr "Tamaño de la tobera"
  1690. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  1691. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  1692. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  1693. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  1694. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  1695. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  1696. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  1697. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  1698. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  1699. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  1700. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  1701. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  1702. msgctxt "@label"
  1703. msgid "mm"
  1704. msgstr "mm"
  1705. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  1706. msgctxt "@label"
  1707. msgid "Compatible material diameter"
  1708. msgstr "Diámetro del material compatible"
  1709. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  1710. msgctxt "@label"
  1711. msgid "Nozzle offset X"
  1712. msgstr "Desplazamiento de la tobera sobre el eje X"
  1713. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  1714. msgctxt "@label"
  1715. msgid "Nozzle offset Y"
  1716. msgstr "Desplazamiento de la tobera sobre el eje Y"
  1717. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  1718. msgctxt "@label"
  1719. msgid "Cooling Fan Number"
  1720. msgstr "Número de ventilador de enfriamiento"
  1721. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1722. msgctxt "@title:label"
  1723. msgid "Extruder Start G-code"
  1724. msgstr "GCode inicial del extrusor"
  1725. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1726. msgctxt "@title:label"
  1727. msgid "Extruder End G-code"
  1728. msgstr "GCode final del extrusor"
  1729. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1730. msgctxt "@title:label"
  1731. msgid "Printer Settings"
  1732. msgstr "Ajustes de la impresora"
  1733. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  1734. msgctxt "@label"
  1735. msgid "X (Width)"
  1736. msgstr "X (anchura)"
  1737. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  1738. msgctxt "@label"
  1739. msgid "Y (Depth)"
  1740. msgstr "Y (profundidad)"
  1741. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  1742. msgctxt "@label"
  1743. msgid "Z (Height)"
  1744. msgstr "Z (altura)"
  1745. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  1746. msgctxt "@label"
  1747. msgid "Build plate shape"
  1748. msgstr "Forma de la placa de impresión"
  1749. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  1750. msgctxt "@label"
  1751. msgid "Origin at center"
  1752. msgstr "Origen en el centro"
  1753. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  1754. msgctxt "@label"
  1755. msgid "Heated bed"
  1756. msgstr "Plataforma calentada"
  1757. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  1758. msgctxt "@label"
  1759. msgid "Heated build volume"
  1760. msgstr "Volumen de impresión calentado"
  1761. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  1762. msgctxt "@label"
  1763. msgid "G-code flavor"
  1764. msgstr "Tipo de GCode"
  1765. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  1766. msgctxt "@title:label"
  1767. msgid "Printhead Settings"
  1768. msgstr "Ajustes del cabezal de impresión"
  1769. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1770. msgctxt "@label"
  1771. msgid "X min"
  1772. msgstr "X mín."
  1773. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1774. msgctxt "@label"
  1775. msgid "Y min"
  1776. msgstr "Y mín."
  1777. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1778. msgctxt "@label"
  1779. msgid "X max"
  1780. msgstr "X máx."
  1781. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1782. msgctxt "@label"
  1783. msgid "Y max"
  1784. msgstr "Y máx."
  1785. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1786. msgctxt "@label"
  1787. msgid "Gantry Height"
  1788. msgstr "Altura del puente"
  1789. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  1790. msgctxt "@label"
  1791. msgid "Number of Extruders"
  1792. msgstr "Número de extrusores"
  1793. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:374
  1794. msgctxt "@title:label"
  1795. msgid "Start G-code"
  1796. msgstr "Iniciar GCode"
  1797. #: /home/trin/Gedeeld/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:385
  1798. msgctxt "@title:label"
  1799. msgid "End G-code"
  1800. msgstr "Finalizar GCode"
  1801. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  1802. msgctxt "@info"
  1803. msgid ""
  1804. "Please make sure your printer has a connection:\n"
  1805. "- Check if the printer is turned on.\n"
  1806. "- Check if the printer is connected to the network.\n"
  1807. "- Check if you are signed in to discover cloud-connected printers."
  1808. msgstr ""
  1809. "Asegúrese de que la impresora está conectada:\n"
  1810. "- Compruebe que la impresora está encendida.\n"
  1811. "- Compruebe que la impresora está conectada a la red.\n"
  1812. "- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube."
  1813. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  1814. msgctxt "@info"
  1815. msgid "Please connect your printer to the network."
  1816. msgstr "Conecte su impresora a la red."
  1817. #: /home/trin/Gedeeld/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:155
  1818. msgctxt "@label link to technical assistance"
  1819. msgid "View user manuals online"
  1820. msgstr "Ver manuales de usuario en línea"
  1821. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1822. msgctxt "@label"
  1823. msgid "Mesh Type"
  1824. msgstr "Tipo de malla"
  1825. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1826. msgctxt "@label"
  1827. msgid "Normal model"
  1828. msgstr "Modelo normal"
  1829. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1830. msgctxt "@label"
  1831. msgid "Print as support"
  1832. msgstr "Imprimir como soporte"
  1833. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1834. msgctxt "@label"
  1835. msgid "Modify settings for overlaps"
  1836. msgstr "Modificar los ajustes de las superposiciones"
  1837. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1838. msgctxt "@label"
  1839. msgid "Don't support overlaps"
  1840. msgstr "No es compatible con superposiciones"
  1841. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1842. msgctxt "@item:inlistbox"
  1843. msgid "Infill mesh only"
  1844. msgstr "Solo malla de relleno"
  1845. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1846. msgctxt "@item:inlistbox"
  1847. msgid "Cutting mesh"
  1848. msgstr "Cortar malla"
  1849. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1850. msgctxt "@action:button"
  1851. msgid "Select settings"
  1852. msgstr "Seleccionar ajustes"
  1853. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1854. msgctxt "@title:window"
  1855. msgid "Select Settings to Customize for this model"
  1856. msgstr "Seleccionar ajustes o personalizar este modelo"
  1857. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1858. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1859. msgctxt "@label:textbox"
  1860. msgid "Filter..."
  1861. msgstr "Filtrar..."
  1862. #: /home/trin/Gedeeld/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1863. msgctxt "@label:checkbox"
  1864. msgid "Show all"
  1865. msgstr "Mostrar todo"
  1866. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1867. msgctxt "@title:window"
  1868. msgid "Post Processing Plugin"
  1869. msgstr "Complemento de posprocesamiento"
  1870. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1871. msgctxt "@label"
  1872. msgid "Post Processing Scripts"
  1873. msgstr "Secuencias de comandos de posprocesamiento"
  1874. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1875. msgctxt "@action"
  1876. msgid "Add a script"
  1877. msgstr "Añadir secuencia de comando"
  1878. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1879. msgctxt "@label"
  1880. msgid "Settings"
  1881. msgstr "Ajustes"
  1882. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1883. msgctxt "@info:tooltip"
  1884. msgid "Change active post-processing scripts."
  1885. msgstr "Cambiar las secuencias de comandos de posprocesamiento."
  1886. #: /home/trin/Gedeeld/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1887. msgctxt "@info:tooltip"
  1888. msgid "The following script is active:"
  1889. msgid_plural "The following scripts are active:"
  1890. msgstr[0] "La siguiente secuencia de comandos está activa:"
  1891. msgstr[1] "Las siguientes secuencias de comandos están activas:"
  1892. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  1893. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  1894. msgctxt "@label"
  1895. msgid "Color scheme"
  1896. msgstr "Combinación de colores"
  1897. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:107
  1898. msgctxt "@label:listbox"
  1899. msgid "Material Color"
  1900. msgstr "Color del material"
  1901. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:111
  1902. msgctxt "@label:listbox"
  1903. msgid "Line Type"
  1904. msgstr "Tipo de línea"
  1905. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:115
  1906. msgctxt "@label:listbox"
  1907. msgid "Speed"
  1908. msgstr "Velocidad"
  1909. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:119
  1910. msgctxt "@label:listbox"
  1911. msgid "Layer thickness"
  1912. msgstr "Grosor de la capa"
  1913. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:156
  1914. msgctxt "@label"
  1915. msgid "Compatibility Mode"
  1916. msgstr "Modo de compatibilidad"
  1917. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:230
  1918. msgctxt "@label"
  1919. msgid "Travels"
  1920. msgstr "Desplazamientos"
  1921. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:236
  1922. msgctxt "@label"
  1923. msgid "Helpers"
  1924. msgstr "Asistentes"
  1925. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:242
  1926. msgctxt "@label"
  1927. msgid "Shell"
  1928. msgstr "Perímetro"
  1929. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:248
  1930. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  1931. msgctxt "@label"
  1932. msgid "Infill"
  1933. msgstr "Relleno"
  1934. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:298
  1935. msgctxt "@label"
  1936. msgid "Only Show Top Layers"
  1937. msgstr "Mostrar solo capas superiores"
  1938. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:308
  1939. msgctxt "@label"
  1940. msgid "Show 5 Detailed Layers On Top"
  1941. msgstr "Mostrar cinco capas detalladas en la parte superior"
  1942. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  1943. msgctxt "@label"
  1944. msgid "Top / Bottom"
  1945. msgstr "Superior o inferior"
  1946. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  1947. msgctxt "@label"
  1948. msgid "Inner Wall"
  1949. msgstr "Pared interior"
  1950. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:384
  1951. msgctxt "@label"
  1952. msgid "min"
  1953. msgstr "mín."
  1954. #: /home/trin/Gedeeld/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:433
  1955. msgctxt "@label"
  1956. msgid "max"
  1957. msgstr "máx."
  1958. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  1959. msgctxt "@title:window"
  1960. msgid "More information on anonymous data collection"
  1961. msgstr "Más información sobre la recopilación de datos anónimos"
  1962. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  1963. msgctxt "@text:window"
  1964. msgid "Ultimaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:"
  1965. msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario. A continuación, hay un ejemplo de todos los datos que se comparten:"
  1966. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  1967. msgctxt "@text:window"
  1968. msgid "I don't want to send anonymous data"
  1969. msgstr "No deseo enviar datos anónimos"
  1970. #: /home/trin/Gedeeld/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  1971. msgctxt "@text:window"
  1972. msgid "Allow sending anonymous data"
  1973. msgstr "Permitir el envío de datos anónimos"
  1974. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1975. msgctxt "@action:button"
  1976. msgid "Back"
  1977. msgstr "Atrás"
  1978. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1979. msgctxt "@label"
  1980. msgid "Compatibility"
  1981. msgstr "Compatibilidad"
  1982. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1983. msgctxt "@label:table_header"
  1984. msgid "Machine"
  1985. msgstr "Máquina"
  1986. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1987. msgctxt "@label:table_header"
  1988. msgid "Build Plate"
  1989. msgstr "Placa de impresión"
  1990. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1991. msgctxt "@label:table_header"
  1992. msgid "Support"
  1993. msgstr "Soporte"
  1994. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1995. msgctxt "@label:table_header"
  1996. msgid "Quality"
  1997. msgstr "Calidad"
  1998. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1999. msgctxt "@action:label"
  2000. msgid "Technical Data Sheet"
  2001. msgstr "Especificaciones técnicas"
  2002. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  2003. msgctxt "@action:label"
  2004. msgid "Safety Data Sheet"
  2005. msgstr "Especificaciones de seguridad"
  2006. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  2007. msgctxt "@action:label"
  2008. msgid "Printing Guidelines"
  2009. msgstr "Directrices de impresión"
  2010. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  2011. msgctxt "@action:label"
  2012. msgid "Website"
  2013. msgstr "Sitio web"
  2014. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  2015. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  2016. msgctxt "@action:button"
  2017. msgid "Installed"
  2018. msgstr "Instalado"
  2019. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  2020. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2021. msgid "<a href='%1'>Log in</a> is required to install or update"
  2022. msgstr "<a href='%1'>Inicie sesión</a> para realizar la instalación o la actualización"
  2023. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  2024. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2025. msgid "<a href='%1'>Buy material spools</a>"
  2026. msgstr "<a href=”%1”>Comprar bobinas de material</a>"
  2027. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  2028. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  2029. msgctxt "@action:button"
  2030. msgid "Update"
  2031. msgstr "Actualizar"
  2032. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  2033. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  2034. msgctxt "@action:button"
  2035. msgid "Updating"
  2036. msgstr "Actualizando"
  2037. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  2038. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  2039. msgctxt "@action:button"
  2040. msgid "Updated"
  2041. msgstr "Actualizado"
  2042. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  2043. msgctxt "@label"
  2044. msgid "Premium"
  2045. msgstr "Prémium"
  2046. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  2047. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  2048. msgctxt "@info:tooltip"
  2049. msgid "Go to Web Marketplace"
  2050. msgstr "Ir a Web Marketplace"
  2051. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  2052. msgctxt "@label"
  2053. msgid "Search materials"
  2054. msgstr "Buscar materiales"
  2055. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  2056. msgctxt "@info"
  2057. msgid "You will need to restart Cura before changes in packages have effect."
  2058. msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto."
  2059. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  2060. msgctxt "@info:button, %1 is the application name"
  2061. msgid "Quit %1"
  2062. msgstr "Salir de %1"
  2063. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  2064. msgctxt "@title:tab"
  2065. msgid "Plugins"
  2066. msgstr "Complementos"
  2067. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  2068. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:466
  2069. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  2070. msgctxt "@title:tab"
  2071. msgid "Materials"
  2072. msgstr "Materiales"
  2073. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  2074. msgctxt "@title:tab"
  2075. msgid "Installed"
  2076. msgstr "Instalado"
  2077. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  2078. msgctxt "@label"
  2079. msgid "Will install upon restarting"
  2080. msgstr "Se instalará después de reiniciar"
  2081. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  2082. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  2083. msgid "<a href='%1'>Log in</a> is required to update"
  2084. msgstr "<a href='%1'>Inicie sesión</a> para realizar la actualización"
  2085. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2086. msgctxt "@action:button"
  2087. msgid "Downgrade"
  2088. msgstr "Degradar"
  2089. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  2090. msgctxt "@action:button"
  2091. msgid "Uninstall"
  2092. msgstr "Desinstalar"
  2093. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  2094. msgctxt "@action:button"
  2095. msgid "Install"
  2096. msgstr "Instalar"
  2097. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  2098. msgctxt "@title"
  2099. msgid "Changes from your account"
  2100. msgstr "Cambios desde su cuenta"
  2101. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2102. msgctxt "@button"
  2103. msgid "Dismiss"
  2104. msgstr "Descartar"
  2105. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2106. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2107. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2108. msgctxt "@button"
  2109. msgid "Next"
  2110. msgstr "Siguiente"
  2111. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  2112. msgctxt "@label"
  2113. msgid "The following packages will be added:"
  2114. msgstr "Se añadirán los siguientes paquetes:"
  2115. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  2116. msgctxt "@label"
  2117. msgid "The following packages can not be installed because of an incompatible Cura version:"
  2118. msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:"
  2119. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  2120. msgctxt "@title:window"
  2121. msgid "Confirm uninstall"
  2122. msgstr "Confirmar desinstalación"
  2123. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  2124. msgctxt "@text:window"
  2125. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  2126. 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."
  2127. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  2128. msgctxt "@text:window"
  2129. msgid "Materials"
  2130. msgstr "Materiales"
  2131. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  2132. msgctxt "@text:window"
  2133. msgid "Profiles"
  2134. msgstr "Perfiles"
  2135. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  2136. msgctxt "@action:button"
  2137. msgid "Confirm"
  2138. msgstr "Confirmar"
  2139. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  2140. msgctxt "@label"
  2141. msgid "You need to accept the license to install the package"
  2142. msgstr "Tiene que aceptar la licencia para instalar el paquete"
  2143. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  2144. msgctxt "@label"
  2145. msgid "Website"
  2146. msgstr "Sitio web"
  2147. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  2148. msgctxt "@label"
  2149. msgid "Email"
  2150. msgstr "Correo electrónico"
  2151. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  2152. msgctxt "@label"
  2153. msgid "Version"
  2154. msgstr "Versión"
  2155. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  2156. msgctxt "@label"
  2157. msgid "Last updated"
  2158. msgstr "Última actualización"
  2159. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  2160. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  2161. msgctxt "@label"
  2162. msgid "Brand"
  2163. msgstr "Marca"
  2164. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  2165. msgctxt "@label"
  2166. msgid "Downloads"
  2167. msgstr "Descargas"
  2168. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2169. msgctxt "@label"
  2170. msgid "Community Contributions"
  2171. msgstr "Contribuciones de la comunidad"
  2172. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  2173. msgctxt "@label"
  2174. msgid "Community Plugins"
  2175. msgstr "Complementos de la comunidad"
  2176. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  2177. msgctxt "@label"
  2178. msgid "Generic Materials"
  2179. msgstr "Materiales genéricos"
  2180. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  2181. msgctxt "@info"
  2182. msgid "Could not connect to the Cura Package database. Please check your connection."
  2183. msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión."
  2184. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  2185. msgctxt "@title:tab"
  2186. msgid "Installed plugins"
  2187. msgstr "Complementos instalados"
  2188. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  2189. msgctxt "@info"
  2190. msgid "No plugin has been installed."
  2191. msgstr "No se ha instalado ningún complemento."
  2192. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  2193. msgctxt "@title:tab"
  2194. msgid "Installed materials"
  2195. msgstr "Materiales instalados"
  2196. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  2197. msgctxt "@info"
  2198. msgid "No material has been installed."
  2199. msgstr "No se ha instalado ningún material."
  2200. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  2201. msgctxt "@title:tab"
  2202. msgid "Bundled plugins"
  2203. msgstr "Complementos agrupados"
  2204. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  2205. msgctxt "@title:tab"
  2206. msgid "Bundled materials"
  2207. msgstr "Materiales agrupados"
  2208. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  2209. msgctxt "@info"
  2210. msgid "Fetching packages..."
  2211. msgstr "Buscando paquetes..."
  2212. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  2213. msgctxt "@description"
  2214. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  2215. msgstr "Inicie sesión para obtener complementos y materiales verificados para Ultimaker Cura Enterprise"
  2216. #: /home/trin/Gedeeld/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  2217. msgctxt "@title"
  2218. msgid "Marketplace"
  2219. msgstr "Marketplace"
  2220. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2221. msgctxt "@title"
  2222. msgid "Build Plate Leveling"
  2223. msgstr "Nivelación de la placa de impresión"
  2224. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2225. msgctxt "@label"
  2226. msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted."
  2227. msgstr "Ahora puede ajustar la placa de impresión para asegurarse de que sus impresiones salgan muy bien. Al hacer clic en 'Mover a la siguiente posición', la tobera se trasladará a las diferentes posiciones que se pueden ajustar."
  2228. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2229. msgctxt "@label"
  2230. msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle."
  2231. msgstr "Para cada posición: inserte una hoja de papel debajo de la tobera y ajuste la altura de la placa de impresión. La altura de la placa de impresión es correcta cuando el papel queda ligeramente sujeto por la punta de la tobera."
  2232. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2233. msgctxt "@action:button"
  2234. msgid "Start Build Plate Leveling"
  2235. msgstr "Iniciar nivelación de la placa de impresión"
  2236. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2237. msgctxt "@action:button"
  2238. msgid "Move to Next Position"
  2239. msgstr "Mover a la siguiente posición"
  2240. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2241. msgctxt "@label"
  2242. msgid "Please select any upgrades made to this Ultimaker Original"
  2243. msgstr "Seleccione cualquier actualización de Ultimaker Original"
  2244. #: /home/trin/Gedeeld/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2245. msgctxt "@label"
  2246. msgid "Heated Build Plate (official kit or self-built)"
  2247. msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
  2248. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  2249. msgctxt "@title:window"
  2250. msgid "Connect to Networked Printer"
  2251. msgstr "Conectar con la impresora en red"
  2252. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2253. msgctxt "@label"
  2254. msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer."
  2255. msgstr "Para imprimir directamente a través de la red, asegúrese de que la impresora está conectada a la red mediante un cable de red o conéctela a la red wifi. Si no conecta Cura con la impresora, también puede utilizar una unidad USB para transferir archivos GCode a la impresora."
  2256. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  2257. msgctxt "@label"
  2258. msgid "Select your printer from the list below:"
  2259. msgstr "Seleccione la impresora en la lista siguiente:"
  2260. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  2261. msgctxt "@action:button"
  2262. msgid "Edit"
  2263. msgstr "Editar"
  2264. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  2265. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  2266. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  2267. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  2268. msgctxt "@action:button"
  2269. msgid "Remove"
  2270. msgstr "Eliminar"
  2271. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  2272. msgctxt "@action:button"
  2273. msgid "Refresh"
  2274. msgstr "Actualizar"
  2275. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  2276. msgctxt "@label"
  2277. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2278. 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>"
  2279. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2280. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  2281. msgctxt "@label"
  2282. msgid "Type"
  2283. msgstr "Tipo"
  2284. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2285. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  2286. msgctxt "@label"
  2287. msgid "Firmware version"
  2288. msgstr "Versión de firmware"
  2289. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2290. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  2291. msgctxt "@label"
  2292. msgid "Address"
  2293. msgstr "Dirección"
  2294. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  2295. msgctxt "@label"
  2296. msgid "This printer is not set up to host a group of printers."
  2297. msgstr "Esta impresora no está configurada para alojar un grupo de impresoras."
  2298. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  2299. msgctxt "@label"
  2300. msgid "This printer is the host for a group of %1 printers."
  2301. msgstr "Esta impresora aloja un grupo de %1 impresoras."
  2302. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  2303. msgctxt "@label"
  2304. msgid "The printer at this address has not yet responded."
  2305. msgstr "La impresora todavía no ha respondido en esta dirección."
  2306. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  2307. msgctxt "@action:button"
  2308. msgid "Connect"
  2309. msgstr "Conectar"
  2310. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  2311. msgctxt "@title:window"
  2312. msgid "Invalid IP address"
  2313. msgstr "Dirección IP no válida"
  2314. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2315. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2316. msgctxt "@text"
  2317. msgid "Please enter a valid IP address."
  2318. msgstr "Introduzca una dirección IP válida."
  2319. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  2320. msgctxt "@title:window"
  2321. msgid "Printer Address"
  2322. msgstr "Dirección de la impresora"
  2323. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2324. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2325. msgctxt "@label"
  2326. msgid "Enter the IP address of your printer on the network."
  2327. msgstr "Introduzca la dirección IP de la impresora en la red."
  2328. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2329. msgctxt "@title:window"
  2330. msgid "Configuration Changes"
  2331. msgstr "Cambios de configuración"
  2332. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  2333. msgctxt "@action:button"
  2334. msgid "Override"
  2335. msgstr "Anular"
  2336. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  2337. msgctxt "@label"
  2338. msgid "The assigned printer, %1, requires the following configuration change:"
  2339. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2340. msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:"
  2341. msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:"
  2342. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  2343. msgctxt "@label"
  2344. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2345. msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido."
  2346. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  2347. msgctxt "@label"
  2348. msgid "Change material %1 from %2 to %3."
  2349. msgstr "Cambiar material %1, de %2 a %3."
  2350. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  2351. msgctxt "@label"
  2352. msgid "Load %3 as material %1 (This cannot be overridden)."
  2353. msgstr "Cargar %3 como material %1 (no se puede anular)."
  2354. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  2355. msgctxt "@label"
  2356. msgid "Change print core %1 from %2 to %3."
  2357. msgstr "Cambiar print core %1, de %2 a %3."
  2358. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  2359. msgctxt "@label"
  2360. msgid "Change build plate to %1 (This cannot be overridden)."
  2361. msgstr "Cambiar la placa de impresión a %1 (no se puede anular)."
  2362. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  2363. msgctxt "@label"
  2364. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2365. 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."
  2366. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  2367. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  2368. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  2369. msgctxt "@label"
  2370. msgid "Glass"
  2371. msgstr "Vidrio"
  2372. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  2373. msgctxt "@label"
  2374. msgid "Aluminum"
  2375. msgstr "Aluminio"
  2376. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  2377. msgctxt "@label"
  2378. msgid "Move to top"
  2379. msgstr "Mover al principio"
  2380. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  2381. msgctxt "@label"
  2382. msgid "Delete"
  2383. msgstr "Borrar"
  2384. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  2385. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:289
  2386. msgctxt "@label"
  2387. msgid "Resume"
  2388. msgstr "Reanudar"
  2389. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  2390. msgctxt "@label"
  2391. msgid "Pausing..."
  2392. msgstr "Pausando..."
  2393. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  2394. msgctxt "@label"
  2395. msgid "Resuming..."
  2396. msgstr "Reanudando..."
  2397. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  2398. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:284
  2399. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:293
  2400. msgctxt "@label"
  2401. msgid "Pause"
  2402. msgstr "Pausar"
  2403. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2404. msgctxt "@label"
  2405. msgid "Aborting..."
  2406. msgstr "Cancelando..."
  2407. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  2408. msgctxt "@label"
  2409. msgid "Abort"
  2410. msgstr "Cancelar"
  2411. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  2412. msgctxt "@label %1 is the name of a print job."
  2413. msgid "Are you sure you want to move %1 to the top of the queue?"
  2414. msgstr "¿Seguro que desea mover %1 al principio de la cola?"
  2415. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2416. msgctxt "@window:title"
  2417. msgid "Move print job to top"
  2418. msgstr "Mover trabajo de impresión al principio"
  2419. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  2420. msgctxt "@label %1 is the name of a print job."
  2421. msgid "Are you sure you want to delete %1?"
  2422. msgstr "¿Seguro que desea borrar %1?"
  2423. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  2424. msgctxt "@window:title"
  2425. msgid "Delete print job"
  2426. msgstr "Borrar trabajo de impresión"
  2427. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  2428. msgctxt "@label %1 is the name of a print job."
  2429. msgid "Are you sure you want to abort %1?"
  2430. msgstr "¿Seguro que desea cancelar %1?"
  2431. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  2432. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:335
  2433. msgctxt "@window:title"
  2434. msgid "Abort print"
  2435. msgstr "Cancela la impresión"
  2436. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2437. msgctxt "@label link to Connect and Cloud interfaces"
  2438. msgid "Manage printer"
  2439. msgstr "Administrar impresora"
  2440. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  2441. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:519
  2442. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  2443. msgctxt "@info"
  2444. msgid "Please update your printer's firmware to manage the queue remotely."
  2445. msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota."
  2446. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2447. msgctxt "@label:status"
  2448. msgid "Loading..."
  2449. msgstr "Cargando..."
  2450. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2451. msgctxt "@label:status"
  2452. msgid "Unavailable"
  2453. msgstr "No disponible"
  2454. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2455. msgctxt "@label:status"
  2456. msgid "Unreachable"
  2457. msgstr "No se puede conectar"
  2458. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2459. msgctxt "@label:status"
  2460. msgid "Idle"
  2461. msgstr "Sin actividad"
  2462. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:365
  2463. msgctxt "@label:status"
  2464. msgid "Printing"
  2465. msgstr "Imprimiendo"
  2466. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:406
  2467. msgctxt "@label"
  2468. msgid "Untitled"
  2469. msgstr "Sin título"
  2470. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:427
  2471. msgctxt "@label"
  2472. msgid "Anonymous"
  2473. msgstr "Anónimo"
  2474. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:454
  2475. msgctxt "@label:status"
  2476. msgid "Requires configuration changes"
  2477. msgstr "Debe cambiar la configuración"
  2478. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:492
  2479. msgctxt "@action:button"
  2480. msgid "Details"
  2481. msgstr "Detalles"
  2482. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  2483. msgctxt "@label"
  2484. msgid "Unavailable printer"
  2485. msgstr "Impresora no disponible"
  2486. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  2487. msgctxt "@label"
  2488. msgid "First available"
  2489. msgstr "Primera disponible"
  2490. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2491. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2492. msgctxt "@label:status"
  2493. msgid "Aborted"
  2494. msgstr "Cancelado"
  2495. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2496. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2497. msgctxt "@label:status"
  2498. msgid "Finished"
  2499. msgstr "Terminado"
  2500. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2501. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2502. msgctxt "@label:status"
  2503. msgid "Preparing..."
  2504. msgstr "Preparando..."
  2505. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2506. msgctxt "@label:status"
  2507. msgid "Aborting..."
  2508. msgstr "Cancelando..."
  2509. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2510. msgctxt "@label:status"
  2511. msgid "Pausing..."
  2512. msgstr "Pausando..."
  2513. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2514. msgctxt "@label:status"
  2515. msgid "Paused"
  2516. msgstr "En pausa"
  2517. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2518. msgctxt "@label:status"
  2519. msgid "Resuming..."
  2520. msgstr "Reanudando..."
  2521. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2522. msgctxt "@label:status"
  2523. msgid "Action required"
  2524. msgstr "Acción requerida"
  2525. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2526. msgctxt "@label:status"
  2527. msgid "Finishes %1 at %2"
  2528. msgstr "Termina el %1 a las %2"
  2529. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  2530. msgctxt "@label"
  2531. msgid "Queued"
  2532. msgstr "En cola"
  2533. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  2534. msgctxt "@label link to connect manager"
  2535. msgid "Manage in browser"
  2536. msgstr "Gestionar en el navegador"
  2537. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2538. msgctxt "@label"
  2539. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2540. msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno."
  2541. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  2542. msgctxt "@label"
  2543. msgid "Print jobs"
  2544. msgstr "Trabajos de impresión"
  2545. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  2546. msgctxt "@label"
  2547. msgid "Total print time"
  2548. msgstr "Tiempo de impresión total"
  2549. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  2550. msgctxt "@label"
  2551. msgid "Waiting for"
  2552. msgstr "Esperando"
  2553. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  2554. msgctxt "@title:window"
  2555. msgid "Print over network"
  2556. msgstr "Imprimir a través de la red"
  2557. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  2558. msgctxt "@action:button"
  2559. msgid "Print"
  2560. msgstr "Imprimir"
  2561. #: /home/trin/Gedeeld/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  2562. msgctxt "@label"
  2563. msgid "Printer selection"
  2564. msgstr "Selección de la impresora"
  2565. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2566. msgctxt "@action:button"
  2567. msgid "Sign in"
  2568. msgstr "Iniciar sesión"
  2569. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  2570. msgctxt "@label"
  2571. msgid "Your key to connected 3D printing"
  2572. msgstr "Su clave para una impresión 3D conectada"
  2573. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  2574. msgctxt "@text"
  2575. msgid ""
  2576. "- Customize your experience with more print profiles and plugins\n"
  2577. "- Stay flexible by syncing your setup and loading it anywhere\n"
  2578. "- Increase efficiency with a remote workflow on Ultimaker printers"
  2579. msgstr ""
  2580. "- Personalice su experiencia con más perfiles de impresión y complementos\n"
  2581. "- Consiga más flexibilidad sincronizando su configuración y cargándola en cualquier lugar\n"
  2582. "- Aumente la eficiencia con un flujo de trabajo remoto en las impresoras Ultimaker"
  2583. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  2584. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:142
  2585. msgctxt "@button"
  2586. msgid "Create account"
  2587. msgstr "Crear cuenta"
  2588. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:28
  2589. msgctxt "@label"
  2590. msgid "Checking..."
  2591. msgstr "Comprobando..."
  2592. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:35
  2593. msgctxt "@label"
  2594. msgid "Account synced"
  2595. msgstr "Cuenta sincronizada"
  2596. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:42
  2597. msgctxt "@label"
  2598. msgid "Something went wrong..."
  2599. msgstr "Se ha producido un error..."
  2600. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:96
  2601. msgctxt "@button"
  2602. msgid "Install pending updates"
  2603. msgstr "Instalar actualizaciones pendientes"
  2604. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/SyncState.qml:118
  2605. msgctxt "@button"
  2606. msgid "Check for account updates"
  2607. msgstr "Buscar actualizaciones de la cuenta"
  2608. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:81
  2609. msgctxt "@label The argument is a timestamp"
  2610. msgid "Last update: %1"
  2611. msgstr "Última actualización: %1"
  2612. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:109
  2613. msgctxt "@button"
  2614. msgid "Ultimaker Account"
  2615. msgstr "Cuenta de Ultimaker"
  2616. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Account/UserOperations.qml:125
  2617. msgctxt "@button"
  2618. msgid "Sign Out"
  2619. msgstr "Cerrar sesión"
  2620. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  2621. msgctxt "@label"
  2622. msgid "No time estimation available"
  2623. msgstr "Ningún cálculo de tiempo disponible"
  2624. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  2625. msgctxt "@label"
  2626. msgid "No cost estimation available"
  2627. msgstr "Ningún cálculo de costes disponible"
  2628. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  2629. msgctxt "@button"
  2630. msgid "Preview"
  2631. msgstr "Vista previa"
  2632. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  2633. msgctxt "@label"
  2634. msgid "Time estimation"
  2635. msgstr "Estimación de tiempos"
  2636. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  2637. msgctxt "@label"
  2638. msgid "Material estimation"
  2639. msgstr "Estimación de material"
  2640. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  2641. msgctxt "@label m for meter"
  2642. msgid "%1m"
  2643. msgstr "%1 m"
  2644. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  2645. msgctxt "@label g for grams"
  2646. msgid "%1g"
  2647. msgstr "%1 g"
  2648. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  2649. msgctxt "@label:PrintjobStatus"
  2650. msgid "Slicing..."
  2651. msgstr "Segmentando..."
  2652. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  2653. msgctxt "@label:PrintjobStatus"
  2654. msgid "Unable to slice"
  2655. msgstr "No se puede segmentar"
  2656. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2657. msgctxt "@button"
  2658. msgid "Processing"
  2659. msgstr "Procesando"
  2660. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  2661. msgctxt "@button"
  2662. msgid "Slice"
  2663. msgstr "Segmentación"
  2664. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  2665. msgctxt "@label"
  2666. msgid "Start the slicing process"
  2667. msgstr "Iniciar el proceso de segmentación"
  2668. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  2669. msgctxt "@button"
  2670. msgid "Cancel"
  2671. msgstr "Cancelar"
  2672. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:82
  2673. msgctxt "@action:inmenu"
  2674. msgid "Show Online Troubleshooting Guide"
  2675. msgstr "Mostrar Guía de resolución de problemas en línea"
  2676. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:89
  2677. msgctxt "@action:inmenu"
  2678. msgid "Toggle Full Screen"
  2679. msgstr "Alternar pantalla completa"
  2680. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:97
  2681. msgctxt "@action:inmenu"
  2682. msgid "Exit Full Screen"
  2683. msgstr "Salir de modo de pantalla completa"
  2684. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:104
  2685. msgctxt "@action:inmenu menubar:edit"
  2686. msgid "&Undo"
  2687. msgstr "Des&hacer"
  2688. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:114
  2689. msgctxt "@action:inmenu menubar:edit"
  2690. msgid "&Redo"
  2691. msgstr "&Rehacer"
  2692. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:124
  2693. msgctxt "@action:inmenu menubar:file"
  2694. msgid "&Quit"
  2695. msgstr "&Salir"
  2696. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:132
  2697. msgctxt "@action:inmenu menubar:view"
  2698. msgid "3D View"
  2699. msgstr "Vista en 3D"
  2700. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:139
  2701. msgctxt "@action:inmenu menubar:view"
  2702. msgid "Front View"
  2703. msgstr "Vista frontal"
  2704. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:146
  2705. msgctxt "@action:inmenu menubar:view"
  2706. msgid "Top View"
  2707. msgstr "Vista superior"
  2708. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:153
  2709. msgctxt "@action:inmenu menubar:view"
  2710. msgid "Left Side View"
  2711. msgstr "Vista del lado izquierdo"
  2712. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:160
  2713. msgctxt "@action:inmenu menubar:view"
  2714. msgid "Right Side View"
  2715. msgstr "Vista del lado derecho"
  2716. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:167
  2717. msgctxt "@action:inmenu"
  2718. msgid "Configure Cura..."
  2719. msgstr "Configurar Cura..."
  2720. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:174
  2721. msgctxt "@action:inmenu menubar:printer"
  2722. msgid "&Add Printer..."
  2723. msgstr "&Agregar impresora..."
  2724. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:180
  2725. msgctxt "@action:inmenu menubar:printer"
  2726. msgid "Manage Pr&inters..."
  2727. msgstr "Adm&inistrar impresoras ..."
  2728. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:187
  2729. msgctxt "@action:inmenu"
  2730. msgid "Manage Materials..."
  2731. msgstr "Administrar materiales..."
  2732. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:195
  2733. msgctxt "@action:inmenu"
  2734. msgid "Add more materials from Marketplace"
  2735. msgstr "Añadir más materiales de Marketplace"
  2736. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:202
  2737. msgctxt "@action:inmenu menubar:profile"
  2738. msgid "&Update profile with current settings/overrides"
  2739. msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales"
  2740. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:210
  2741. msgctxt "@action:inmenu menubar:profile"
  2742. msgid "&Discard current changes"
  2743. msgstr "&Descartar cambios actuales"
  2744. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:222
  2745. msgctxt "@action:inmenu menubar:profile"
  2746. msgid "&Create profile from current settings/overrides..."
  2747. msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..."
  2748. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:228
  2749. msgctxt "@action:inmenu menubar:profile"
  2750. msgid "Manage Profiles..."
  2751. msgstr "Administrar perfiles..."
  2752. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:236
  2753. msgctxt "@action:inmenu menubar:help"
  2754. msgid "Show Online &Documentation"
  2755. msgstr "Mostrar &documentación en línea"
  2756. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:244
  2757. msgctxt "@action:inmenu menubar:help"
  2758. msgid "Report a &Bug"
  2759. msgstr "Informar de un &error"
  2760. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:252
  2761. msgctxt "@action:inmenu menubar:help"
  2762. msgid "What's New"
  2763. msgstr "Novedades"
  2764. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:258
  2765. msgctxt "@action:inmenu menubar:help"
  2766. msgid "About..."
  2767. msgstr "Acerca de..."
  2768. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:265
  2769. msgctxt "@action:inmenu menubar:edit"
  2770. msgid "Delete Selected Model"
  2771. msgid_plural "Delete Selected Models"
  2772. msgstr[0] "Eliminar modelo seleccionado"
  2773. msgstr[1] "Eliminar modelos seleccionados"
  2774. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:275
  2775. msgctxt "@action:inmenu menubar:edit"
  2776. msgid "Center Selected Model"
  2777. msgid_plural "Center Selected Models"
  2778. msgstr[0] "Centrar modelo seleccionado"
  2779. msgstr[1] "Centrar modelos seleccionados"
  2780. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:284
  2781. msgctxt "@action:inmenu menubar:edit"
  2782. msgid "Multiply Selected Model"
  2783. msgid_plural "Multiply Selected Models"
  2784. msgstr[0] "Multiplicar modelo seleccionado"
  2785. msgstr[1] "Multiplicar modelos seleccionados"
  2786. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:293
  2787. msgctxt "@action:inmenu"
  2788. msgid "Delete Model"
  2789. msgstr "Eliminar modelo"
  2790. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:301
  2791. msgctxt "@action:inmenu"
  2792. msgid "Ce&nter Model on Platform"
  2793. msgstr "Ce&ntrar modelo en plataforma"
  2794. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:307
  2795. msgctxt "@action:inmenu menubar:edit"
  2796. msgid "&Group Models"
  2797. msgstr "A&grupar modelos"
  2798. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:327
  2799. msgctxt "@action:inmenu menubar:edit"
  2800. msgid "Ungroup Models"
  2801. msgstr "Desagrupar modelos"
  2802. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:337
  2803. msgctxt "@action:inmenu menubar:edit"
  2804. msgid "&Merge Models"
  2805. msgstr "Co&mbinar modelos"
  2806. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:347
  2807. msgctxt "@action:inmenu"
  2808. msgid "&Multiply Model..."
  2809. msgstr "&Multiplicar modelo..."
  2810. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:354
  2811. msgctxt "@action:inmenu menubar:edit"
  2812. msgid "Select All Models"
  2813. msgstr "Seleccionar todos los modelos"
  2814. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:364
  2815. msgctxt "@action:inmenu menubar:edit"
  2816. msgid "Clear Build Plate"
  2817. msgstr "Borrar placa de impresión"
  2818. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:374
  2819. msgctxt "@action:inmenu menubar:file"
  2820. msgid "Reload All Models"
  2821. msgstr "Recargar todos los modelos"
  2822. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:383
  2823. msgctxt "@action:inmenu menubar:edit"
  2824. msgid "Arrange All Models To All Build Plates"
  2825. msgstr "Organizar todos los modelos en todas las placas de impresión"
  2826. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:390
  2827. msgctxt "@action:inmenu menubar:edit"
  2828. msgid "Arrange All Models"
  2829. msgstr "Organizar todos los modelos"
  2830. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:398
  2831. msgctxt "@action:inmenu menubar:edit"
  2832. msgid "Arrange Selection"
  2833. msgstr "Organizar selección"
  2834. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:405
  2835. msgctxt "@action:inmenu menubar:edit"
  2836. msgid "Reset All Model Positions"
  2837. msgstr "Restablecer las posiciones de todos los modelos"
  2838. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:412
  2839. msgctxt "@action:inmenu menubar:edit"
  2840. msgid "Reset All Model Transformations"
  2841. msgstr "Restablecer las transformaciones de todos los modelos"
  2842. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:419
  2843. msgctxt "@action:inmenu menubar:file"
  2844. msgid "&Open File(s)..."
  2845. msgstr "&Abrir archivo(s)..."
  2846. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:427
  2847. msgctxt "@action:inmenu menubar:file"
  2848. msgid "&New Project..."
  2849. msgstr "&Nuevo proyecto..."
  2850. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:434
  2851. msgctxt "@action:inmenu menubar:help"
  2852. msgid "Show Configuration Folder"
  2853. msgstr "Mostrar carpeta de configuración"
  2854. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:441
  2855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:538
  2856. msgctxt "@action:menu"
  2857. msgid "Configure setting visibility..."
  2858. msgstr "Configurar visibilidad de los ajustes..."
  2859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Actions.qml:448
  2860. msgctxt "@action:menu"
  2861. msgid "&Marketplace"
  2862. msgstr "&Marketplace"
  2863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:266
  2864. msgctxt "@label"
  2865. msgid "This package will be installed after restarting."
  2866. msgstr "Este paquete se instalará después de reiniciar."
  2867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:459
  2868. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  2869. msgctxt "@title:tab"
  2870. msgid "General"
  2871. msgstr "General"
  2872. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:462
  2873. msgctxt "@title:tab"
  2874. msgid "Settings"
  2875. msgstr "Ajustes"
  2876. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:464
  2877. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  2878. msgctxt "@title:tab"
  2879. msgid "Printers"
  2880. msgstr "Impresoras"
  2881. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:468
  2882. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  2883. msgctxt "@title:tab"
  2884. msgid "Profiles"
  2885. msgstr "Perfiles"
  2886. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:587
  2887. msgctxt "@title:window %1 is the application name"
  2888. msgid "Closing %1"
  2889. msgstr "Cerrando %1"
  2890. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:588
  2891. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:600
  2892. msgctxt "@label %1 is the application name"
  2893. msgid "Are you sure you want to exit %1?"
  2894. msgstr "¿Seguro que desea salir de %1?"
  2895. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:638
  2896. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  2897. msgctxt "@title:window"
  2898. msgid "Open file(s)"
  2899. msgstr "Abrir archivo(s)"
  2900. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:744
  2901. msgctxt "@window:title"
  2902. msgid "Install Package"
  2903. msgstr "Instalar paquete"
  2904. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:752
  2905. msgctxt "@title:window"
  2906. msgid "Open File(s)"
  2907. msgstr "Abrir archivo(s)"
  2908. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:755
  2909. msgctxt "@text:window"
  2910. msgid "We have found one or more G-Code files within the files you have selected. You can only open one G-Code file at a time. If you want to open a G-Code file, please just select only one."
  2911. msgstr "Hemos encontrado uno o más archivos de GCode entre los archivos que ha seleccionado. Solo puede abrir los archivos GCode de uno en uno. Si desea abrir un archivo GCode, seleccione solo uno."
  2912. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:858
  2913. msgctxt "@title:window"
  2914. msgid "Add Printer"
  2915. msgstr "Agregar impresora"
  2916. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Cura.qml:866
  2917. msgctxt "@title:window"
  2918. msgid "What's New"
  2919. msgstr "Novedades"
  2920. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2921. msgctxt "@title:window The argument is the application name."
  2922. msgid "About %1"
  2923. msgstr "Acerca de %1"
  2924. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2925. msgctxt "@label"
  2926. msgid "version: %1"
  2927. msgstr "versión: %1"
  2928. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2929. msgctxt "@label"
  2930. msgid "End-to-end solution for fused filament 3D printing."
  2931. msgstr "Solución completa para la impresión 3D de filamento fundido."
  2932. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2933. msgctxt "@info:credit"
  2934. msgid ""
  2935. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2936. "Cura proudly uses the following open source projects:"
  2937. msgstr ""
  2938. "Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n"
  2939. "Cura se enorgullece de utilizar los siguientes proyectos de código abierto:"
  2940. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2941. msgctxt "@label"
  2942. msgid "Graphical user interface"
  2943. msgstr "Interfaz gráfica de usuario (GUI)"
  2944. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2945. msgctxt "@label"
  2946. msgid "Application framework"
  2947. msgstr "Entorno de la aplicación"
  2948. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2949. msgctxt "@label"
  2950. msgid "G-code generator"
  2951. msgstr "Generador de GCode"
  2952. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2953. msgctxt "@label"
  2954. msgid "Interprocess communication library"
  2955. msgstr "Biblioteca de comunicación entre procesos"
  2956. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2957. msgctxt "@label"
  2958. msgid "Programming language"
  2959. msgstr "Lenguaje de programación"
  2960. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2961. msgctxt "@label"
  2962. msgid "GUI framework"
  2963. msgstr "Entorno de la GUI"
  2964. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2965. msgctxt "@label"
  2966. msgid "GUI framework bindings"
  2967. msgstr "Enlaces del entorno de la GUI"
  2968. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2969. msgctxt "@label"
  2970. msgid "C/C++ Binding library"
  2971. msgstr "Biblioteca de enlaces C/C++"
  2972. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2973. msgctxt "@label"
  2974. msgid "Data interchange format"
  2975. msgstr "Formato de intercambio de datos"
  2976. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2977. msgctxt "@label"
  2978. msgid "Support library for scientific computing"
  2979. msgstr "Biblioteca de apoyo para cálculos científicos"
  2980. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2981. msgctxt "@label"
  2982. msgid "Support library for faster math"
  2983. msgstr "Biblioteca de apoyo para cálculos más rápidos"
  2984. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2985. msgctxt "@label"
  2986. msgid "Support library for handling STL files"
  2987. msgstr "Biblioteca de apoyo para gestionar archivos STL"
  2988. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2989. msgctxt "@label"
  2990. msgid "Support library for handling planar objects"
  2991. msgstr "Biblioteca de compatibilidad para trabajar con objetos planos"
  2992. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2993. msgctxt "@label"
  2994. msgid "Support library for handling triangular meshes"
  2995. msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares"
  2996. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2997. msgctxt "@label"
  2998. msgid "Support library for handling 3MF files"
  2999. msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
  3000. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3001. msgctxt "@label"
  3002. msgid "Support library for file metadata and streaming"
  3003. msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos"
  3004. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3005. msgctxt "@label"
  3006. msgid "Serial communication library"
  3007. msgstr "Biblioteca de comunicación en serie"
  3008. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3009. msgctxt "@label"
  3010. msgid "ZeroConf discovery library"
  3011. msgstr "Biblioteca de detección para Zeroconf"
  3012. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3013. msgctxt "@label"
  3014. msgid "Polygon clipping library"
  3015. msgstr "Biblioteca de recorte de polígonos"
  3016. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3017. msgctxt "@Label"
  3018. msgid "Static type checker for Python"
  3019. msgstr "Comprobador de tipo estático para Python"
  3020. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3021. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3022. msgctxt "@Label"
  3023. msgid "Root Certificates for validating SSL trustworthiness"
  3024. msgstr "Certificados de raíz para validar la fiabilidad del SSL"
  3025. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3026. msgctxt "@Label"
  3027. msgid "Python Error tracking library"
  3028. msgstr "Biblioteca de seguimiento de errores de Python"
  3029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3030. msgctxt "@label"
  3031. msgid "Polygon packing library, developed by Prusa Research"
  3032. msgstr "Biblioteca de empaquetado de polígonos, desarrollada por Prusa Research"
  3033. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3034. msgctxt "@label"
  3035. msgid "Python bindings for libnest2d"
  3036. msgstr "Enlaces de Python para libnest2d"
  3037. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3038. msgctxt "@label"
  3039. msgid "Font"
  3040. msgstr "Fuente"
  3041. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3042. msgctxt "@label"
  3043. msgid "SVG icons"
  3044. msgstr "Iconos SVG"
  3045. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3046. msgctxt "@label"
  3047. msgid "Linux cross-distribution application deployment"
  3048. msgstr "Implementación de la aplicación de distribución múltiple de Linux"
  3049. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3050. msgctxt "@title:window"
  3051. msgid "Open project file"
  3052. msgstr "Abrir archivo de proyecto"
  3053. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  3054. msgctxt "@text:window"
  3055. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3056. msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
  3057. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  3058. msgctxt "@text:window"
  3059. msgid "Remember my choice"
  3060. msgstr "Recordar mi selección"
  3061. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  3062. msgctxt "@action:button"
  3063. msgid "Open as project"
  3064. msgstr "Abrir como proyecto"
  3065. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  3066. msgctxt "@action:button"
  3067. msgid "Import models"
  3068. msgstr "Importar modelos"
  3069. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  3070. msgctxt "@title:window"
  3071. msgid "Discard or Keep changes"
  3072. msgstr "Descartar o guardar cambios"
  3073. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  3074. msgctxt "@text:window, %1 is a profile name"
  3075. msgid ""
  3076. "You have customized some profile settings.\n"
  3077. "Would you like to Keep these changed settings after switching profiles?\n"
  3078. "Alternatively, you can discard the changes to load the defaults from '%1'."
  3079. 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"
  3080. " cambios para cargar los valores predeterminados de'%1'."
  3081. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  3082. msgctxt "@title:column"
  3083. msgid "Profile settings"
  3084. msgstr "Ajustes del perfil"
  3085. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3086. msgctxt "@title:column"
  3087. msgid "Current changes"
  3088. msgstr "Cambios actuales"
  3089. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  3090. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:747
  3091. msgctxt "@option:discardOrKeep"
  3092. msgid "Always ask me this"
  3093. msgstr "Preguntar siempre"
  3094. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  3095. msgctxt "@option:discardOrKeep"
  3096. msgid "Discard and never ask again"
  3097. msgstr "Descartar y no volver a preguntar"
  3098. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  3099. msgctxt "@option:discardOrKeep"
  3100. msgid "Keep and never ask again"
  3101. msgstr "Guardar y no volver a preguntar"
  3102. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  3103. msgctxt "@action:button"
  3104. msgid "Discard changes"
  3105. msgstr "Descartar los cambios"
  3106. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  3107. msgctxt "@action:button"
  3108. msgid "Keep changes"
  3109. msgstr "Mantener los cambios"
  3110. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  3111. msgctxt "@text:window"
  3112. msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?"
  3113. msgstr "Hemos encontrado uno o más archivos del proyecto entre los archivos que ha seleccionado. Solo puede abrir los archivos de proyecto de uno en uno. Le recomendamos que solo importe modelos de esos archivos. ¿Desea continuar?"
  3114. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  3115. msgctxt "@action:button"
  3116. msgid "Import all as models"
  3117. msgstr "Importar todos como modelos"
  3118. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3119. msgctxt "@title:window"
  3120. msgid "Save Project"
  3121. msgstr "Guardar proyecto"
  3122. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  3123. msgctxt "@action:label"
  3124. msgid "Extruder %1"
  3125. msgstr "Extrusor %1"
  3126. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  3127. msgctxt "@action:label"
  3128. msgid "%1 & material"
  3129. msgstr "%1 y material"
  3130. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  3131. msgctxt "@action:label"
  3132. msgid "Material"
  3133. msgstr "Material"
  3134. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  3135. msgctxt "@action:label"
  3136. msgid "Don't show project summary on save again"
  3137. msgstr "No mostrar resumen de proyecto al guardar de nuevo"
  3138. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  3139. msgctxt "@action:button"
  3140. msgid "Save"
  3141. msgstr "Guardar"
  3142. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ExtruderButton.qml:16
  3143. msgctxt "@label %1 is filled in with the name of an extruder"
  3144. msgid "Print Selected Model with %1"
  3145. msgid_plural "Print Selected Models with %1"
  3146. msgstr[0] "Imprimir modelo seleccionado con %1"
  3147. msgstr[1] "Imprimir modelos seleccionados con %1"
  3148. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/JobSpecs.qml:99
  3149. msgctxt "@text Print job name"
  3150. msgid "Untitled"
  3151. msgstr "Sin título"
  3152. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  3153. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  3154. msgctxt "@title:menu menubar:toplevel"
  3155. msgid "&File"
  3156. msgstr "&Archivo"
  3157. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  3158. msgctxt "@title:menu menubar:toplevel"
  3159. msgid "&Edit"
  3160. msgstr "&Edición"
  3161. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  3162. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  3163. msgctxt "@title:menu menubar:toplevel"
  3164. msgid "&View"
  3165. msgstr "&Ver"
  3166. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  3167. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  3168. msgctxt "@title:menu menubar:toplevel"
  3169. msgid "&Settings"
  3170. msgstr "A&justes"
  3171. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  3172. msgctxt "@title:menu menubar:toplevel"
  3173. msgid "E&xtensions"
  3174. msgstr "E&xtensiones"
  3175. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  3176. msgctxt "@title:menu menubar:toplevel"
  3177. msgid "P&references"
  3178. msgstr "Pre&ferencias"
  3179. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  3180. msgctxt "@title:menu menubar:toplevel"
  3181. msgid "&Help"
  3182. msgstr "A&yuda"
  3183. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  3184. msgctxt "@title:window"
  3185. msgid "New project"
  3186. msgstr "Nuevo proyecto"
  3187. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  3188. msgctxt "@info:question"
  3189. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  3190. msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
  3191. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  3192. msgctxt "@action:button"
  3193. msgid "Marketplace"
  3194. msgstr "Marketplace"
  3195. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  3196. msgctxt "@header"
  3197. msgid "Configurations"
  3198. msgstr "Configuraciones"
  3199. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  3200. msgctxt "@label"
  3201. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3202. msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto."
  3203. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  3204. msgctxt "@label"
  3205. msgid "Marketplace"
  3206. msgstr "Marketplace"
  3207. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  3208. msgctxt "@label"
  3209. msgid "Loading available configurations from the printer..."
  3210. msgstr "Cargando configuraciones disponibles desde la impresora..."
  3211. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  3212. msgctxt "@label"
  3213. msgid "The configurations are not available because the printer is disconnected."
  3214. msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada."
  3215. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  3216. msgctxt "@label"
  3217. msgid "Select configuration"
  3218. msgstr "Seleccionar configuración"
  3219. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  3220. msgctxt "@label"
  3221. msgid "Configurations"
  3222. msgstr "Configuraciones"
  3223. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  3224. msgctxt "@header"
  3225. msgid "Custom"
  3226. msgstr "Personalizado"
  3227. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  3228. msgctxt "@label"
  3229. msgid "Printer"
  3230. msgstr "Impresora"
  3231. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  3232. msgctxt "@label"
  3233. msgid "Enabled"
  3234. msgstr "Habilitado"
  3235. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  3236. msgctxt "@label"
  3237. msgid "Material"
  3238. msgstr "Material"
  3239. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  3240. msgctxt "@label"
  3241. msgid "Use glue for better adhesion with this material combination."
  3242. msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión."
  3243. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  3244. msgctxt "@label"
  3245. msgid "Print Selected Model With:"
  3246. msgid_plural "Print Selected Models With:"
  3247. msgstr[0] "Imprimir modelo seleccionado con:"
  3248. msgstr[1] "Imprimir modelos seleccionados con:"
  3249. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  3250. msgctxt "@title:window"
  3251. msgid "Multiply Selected Model"
  3252. msgid_plural "Multiply Selected Models"
  3253. msgstr[0] "Multiplicar modelo seleccionado"
  3254. msgstr[1] "Multiplicar modelos seleccionados"
  3255. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  3256. msgctxt "@label"
  3257. msgid "Number of Copies"
  3258. msgstr "Número de copias"
  3259. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:33
  3260. msgctxt "@title:menu menubar:file"
  3261. msgid "&Save Project..."
  3262. msgstr "&Guardar proyecto..."
  3263. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:54
  3264. msgctxt "@title:menu menubar:file"
  3265. msgid "&Export..."
  3266. msgstr "&Exportar..."
  3267. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/FileMenu.qml:65
  3268. msgctxt "@action:inmenu menubar:file"
  3269. msgid "Export Selection..."
  3270. msgstr "Exportar selección..."
  3271. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  3272. msgctxt "@label:category menu label"
  3273. msgid "Material"
  3274. msgstr "Material"
  3275. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  3276. msgctxt "@label:category menu label"
  3277. msgid "Favorites"
  3278. msgstr "Favoritos"
  3279. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  3280. msgctxt "@label:category menu label"
  3281. msgid "Generic"
  3282. msgstr "Genérico"
  3283. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  3284. msgctxt "@label:category menu label"
  3285. msgid "Network enabled printers"
  3286. msgstr "Impresoras de red habilitadas"
  3287. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  3288. msgctxt "@label:category menu label"
  3289. msgid "Local printers"
  3290. msgstr "Impresoras locales"
  3291. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  3292. msgctxt "@title:menu menubar:file"
  3293. msgid "Open &Recent"
  3294. msgstr "Abrir &reciente"
  3295. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  3296. msgctxt "@title:menu menubar:settings"
  3297. msgid "&Printer"
  3298. msgstr "&Impresora"
  3299. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:29
  3300. msgctxt "@title:menu"
  3301. msgid "&Material"
  3302. msgstr "&Material"
  3303. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:44
  3304. msgctxt "@action:inmenu"
  3305. msgid "Set as Active Extruder"
  3306. msgstr "Definir como extrusor activo"
  3307. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:50
  3308. msgctxt "@action:inmenu"
  3309. msgid "Enable Extruder"
  3310. msgstr "Habilitar extrusor"
  3311. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:57
  3312. msgctxt "@action:inmenu"
  3313. msgid "Disable Extruder"
  3314. msgstr "Deshabilitar extrusor"
  3315. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  3316. msgctxt "@action:inmenu"
  3317. msgid "Visible Settings"
  3318. msgstr "Ajustes visibles"
  3319. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  3320. msgctxt "@action:inmenu"
  3321. msgid "Collapse All Categories"
  3322. msgstr "Contraer todas las categorías"
  3323. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  3324. msgctxt "@action:inmenu"
  3325. msgid "Manage Setting Visibility..."
  3326. msgstr "Gestionar visibilidad de los ajustes..."
  3327. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  3328. msgctxt "@action:inmenu menubar:view"
  3329. msgid "&Camera position"
  3330. msgstr "&Posición de la cámara"
  3331. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
  3332. msgctxt "@action:inmenu menubar:view"
  3333. msgid "Camera view"
  3334. msgstr "Vista de cámara"
  3335. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
  3336. msgctxt "@action:inmenu menubar:view"
  3337. msgid "Perspective"
  3338. msgstr "Perspectiva"
  3339. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
  3340. msgctxt "@action:inmenu menubar:view"
  3341. msgid "Orthographic"
  3342. msgstr "Ortográfica"
  3343. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
  3344. msgctxt "@action:inmenu menubar:view"
  3345. msgid "&Build plate"
  3346. msgstr "P&laca de impresión"
  3347. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:119
  3348. msgctxt "@label:MonitorStatus"
  3349. msgid "Not connected to a printer"
  3350. msgstr "No está conectado a ninguna impresora"
  3351. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:123
  3352. msgctxt "@label:MonitorStatus"
  3353. msgid "Printer does not accept commands"
  3354. msgstr "La impresora no acepta comandos"
  3355. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:133
  3356. msgctxt "@label:MonitorStatus"
  3357. msgid "In maintenance. Please check the printer"
  3358. msgstr "En mantenimiento. Compruebe la impresora"
  3359. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:144
  3360. msgctxt "@label:MonitorStatus"
  3361. msgid "Lost connection with the printer"
  3362. msgstr "Se ha perdido la conexión con la impresora"
  3363. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:146
  3364. msgctxt "@label:MonitorStatus"
  3365. msgid "Printing..."
  3366. msgstr "Imprimiendo..."
  3367. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:149
  3368. msgctxt "@label:MonitorStatus"
  3369. msgid "Paused"
  3370. msgstr "En pausa"
  3371. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:152
  3372. msgctxt "@label:MonitorStatus"
  3373. msgid "Preparing..."
  3374. msgstr "Preparando..."
  3375. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:154
  3376. msgctxt "@label:MonitorStatus"
  3377. msgid "Please remove the print"
  3378. msgstr "Retire la impresión"
  3379. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:325
  3380. msgctxt "@label"
  3381. msgid "Abort Print"
  3382. msgstr "Cancelar impresión"
  3383. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/MonitorButton.qml:337
  3384. msgctxt "@label"
  3385. msgid "Are you sure you want to abort the print?"
  3386. msgstr "¿Está seguro de que desea cancelar la impresión?"
  3387. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:114
  3388. msgctxt "@label"
  3389. msgid "Is printed as support."
  3390. msgstr "Se imprime como soporte."
  3391. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:117
  3392. msgctxt "@label"
  3393. msgid "Other models overlapping with this model are modified."
  3394. msgstr "Se han modificado otros modelos que se superponen con este modelo."
  3395. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:120
  3396. msgctxt "@label"
  3397. msgid "Infill overlapping with this model is modified."
  3398. msgstr "Se ha modificado la superposición del relleno con este modelo."
  3399. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:123
  3400. msgctxt "@label"
  3401. msgid "Overlaps with this model are not supported."
  3402. msgstr "No se admiten superposiciones con este modelo."
  3403. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectItemButton.qml:130
  3404. msgctxt "@label %1 is the number of settings it overrides."
  3405. msgid "Overrides %1 setting."
  3406. msgid_plural "Overrides %1 settings."
  3407. msgstr[0] "%1 sobrescrito"
  3408. msgstr[1] "%1 sobrescritos"
  3409. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ObjectSelector.qml:59
  3410. msgctxt "@label"
  3411. msgid "Object list"
  3412. msgstr "Lista de objetos"
  3413. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3414. msgctxt "@label"
  3415. msgid "Interface"
  3416. msgstr "Interfaz"
  3417. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3418. msgctxt "@label"
  3419. msgid "Currency:"
  3420. msgstr "Moneda:"
  3421. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3422. msgctxt "@label"
  3423. msgid "Theme:"
  3424. msgstr "Tema:"
  3425. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3426. msgctxt "@label"
  3427. msgid "You will need to restart the application for these changes to have effect."
  3428. msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
  3429. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3430. msgctxt "@info:tooltip"
  3431. msgid "Slice automatically when changing settings."
  3432. msgstr "Segmentar automáticamente al cambiar los ajustes."
  3433. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3434. msgctxt "@option:check"
  3435. msgid "Slice automatically"
  3436. msgstr "Segmentar automáticamente"
  3437. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3438. msgctxt "@label"
  3439. msgid "Viewport behavior"
  3440. msgstr "Comportamiento de la ventanilla"
  3441. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3442. msgctxt "@info:tooltip"
  3443. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3444. msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
  3445. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3446. msgctxt "@option:check"
  3447. msgid "Display overhang"
  3448. msgstr "Mostrar voladizos"
  3449. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3450. msgctxt "@info:tooltip"
  3451. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3452. msgstr "Resalta las superficies que faltan o son extrañas del modelo usando señales de advertencia. A las trayectorias de herramientas les faltarán a menudo partes de la geometría prevista."
  3453. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3454. msgctxt "@option:check"
  3455. msgid "Display model errors"
  3456. msgstr "Mostrar errores de modelo"
  3457. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3458. msgctxt "@info:tooltip"
  3459. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3460. msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo"
  3461. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3462. msgctxt "@action:button"
  3463. msgid "Center camera when item is selected"
  3464. msgstr "Centrar cámara cuando se selecciona elemento"
  3465. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3466. msgctxt "@info:tooltip"
  3467. msgid "Should the default zoom behavior of cura be inverted?"
  3468. msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
  3469. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3470. msgctxt "@action:button"
  3471. msgid "Invert the direction of camera zoom."
  3472. msgstr "Invertir la dirección del zoom de la cámara."
  3473. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3474. msgctxt "@info:tooltip"
  3475. msgid "Should zooming move in the direction of the mouse?"
  3476. msgstr "¿Debería moverse el zoom en la dirección del ratón?"
  3477. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3478. msgctxt "@info:tooltip"
  3479. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3480. msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica."
  3481. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3482. msgctxt "@action:button"
  3483. msgid "Zoom toward mouse direction"
  3484. msgstr "Hacer zoom en la dirección del ratón"
  3485. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3486. msgctxt "@info:tooltip"
  3487. msgid "Should models on the platform be moved so that they no longer intersect?"
  3488. msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
  3489. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3490. msgctxt "@option:check"
  3491. msgid "Ensure models are kept apart"
  3492. msgstr "Asegúrese de que los modelos están separados"
  3493. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3494. msgctxt "@info:tooltip"
  3495. msgid "Should models on the platform be moved down to touch the build plate?"
  3496. msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
  3497. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3498. msgctxt "@option:check"
  3499. msgid "Automatically drop models to the build plate"
  3500. msgstr "Arrastrar modelos a la placa de impresión de forma automática"
  3501. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3502. msgctxt "@info:tooltip"
  3503. msgid "Show caution message in g-code reader."
  3504. msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
  3505. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3506. msgctxt "@option:check"
  3507. msgid "Caution message in g-code reader"
  3508. msgstr "Mensaje de advertencia en el lector de GCode"
  3509. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3510. msgctxt "@info:tooltip"
  3511. msgid "Should layer be forced into compatibility mode?"
  3512. msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
  3513. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3514. msgctxt "@option:check"
  3515. msgid "Force layer view compatibility mode (restart required)"
  3516. msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
  3517. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3518. msgctxt "@info:tooltip"
  3519. msgid "Should Cura open at the location it was closed?"
  3520. msgstr "¿Debería abrirse Cura en el lugar donde se cerró?"
  3521. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3522. msgctxt "@option:check"
  3523. msgid "Restore window position on start"
  3524. msgstr "Restaurar la posición de la ventana al inicio"
  3525. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3526. msgctxt "@info:tooltip"
  3527. msgid "What type of camera rendering should be used?"
  3528. msgstr "¿Qué tipo de renderizado de cámara debería usarse?"
  3529. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3530. msgctxt "@window:text"
  3531. msgid "Camera rendering:"
  3532. msgstr "Renderizado de cámara:"
  3533. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3534. msgid "Perspective"
  3535. msgstr "Perspectiva"
  3536. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3537. msgid "Orthographic"
  3538. msgstr "Ortográfica"
  3539. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3540. msgctxt "@label"
  3541. msgid "Opening and saving files"
  3542. msgstr "Abrir y guardar archivos"
  3543. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3544. msgctxt "@info:tooltip"
  3545. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3546. msgstr "¿Debería abrir los archivos del escritorio o las aplicaciones externas en la misma instancia de Cura?"
  3547. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3548. msgctxt "@option:check"
  3549. msgid "Use a single instance of Cura"
  3550. msgstr "Utilizar una sola instancia de Cura"
  3551. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3552. msgctxt "@info:tooltip"
  3553. msgid "Should models be scaled to the build volume if they are too large?"
  3554. msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
  3555. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3556. msgctxt "@option:check"
  3557. msgid "Scale large models"
  3558. msgstr "Escalar modelos de gran tamaño"
  3559. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3560. msgctxt "@info:tooltip"
  3561. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3562. msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
  3563. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3564. msgctxt "@option:check"
  3565. msgid "Scale extremely small models"
  3566. msgstr "Escalar modelos demasiado pequeños"
  3567. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3568. msgctxt "@info:tooltip"
  3569. msgid "Should models be selected after they are loaded?"
  3570. msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
  3571. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3572. msgctxt "@option:check"
  3573. msgid "Select models when loaded"
  3574. msgstr "Seleccionar modelos al abrirlos"
  3575. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3576. msgctxt "@info:tooltip"
  3577. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3578. msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
  3579. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3580. msgctxt "@option:check"
  3581. msgid "Add machine prefix to job name"
  3582. msgstr "Agregar prefijo de la máquina al nombre del trabajo"
  3583. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3584. msgctxt "@info:tooltip"
  3585. msgid "Should a summary be shown when saving a project file?"
  3586. msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
  3587. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3588. msgctxt "@option:check"
  3589. msgid "Show summary dialog when saving project"
  3590. msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
  3591. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3592. msgctxt "@info:tooltip"
  3593. msgid "Default behavior when opening a project file"
  3594. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
  3595. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3596. msgctxt "@window:text"
  3597. msgid "Default behavior when opening a project file: "
  3598. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
  3599. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3600. msgctxt "@option:openProject"
  3601. msgid "Always ask me this"
  3602. msgstr "Preguntar siempre"
  3603. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3604. msgctxt "@option:openProject"
  3605. msgid "Always open as a project"
  3606. msgstr "Abrir siempre como un proyecto"
  3607. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3608. msgctxt "@option:openProject"
  3609. msgid "Always import models"
  3610. msgstr "Importar modelos siempre"
  3611. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:719
  3612. msgctxt "@info:tooltip"
  3613. msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again."
  3614. msgstr "Si ha realizado cambios en un perfil y, a continuación, ha cambiado a otro, aparecerá un cuadro de diálogo que le preguntará si desea guardar o descartar los cambios. También puede elegir el comportamiento predeterminado, así ese cuadro de diálogo no volverá a aparecer."
  3615. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:728
  3616. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  3617. msgctxt "@label"
  3618. msgid "Profiles"
  3619. msgstr "Perfiles"
  3620. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:733
  3621. msgctxt "@window:text"
  3622. msgid "Default behavior for changed setting values when switching to a different profile: "
  3623. msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: "
  3624. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:748
  3625. msgctxt "@option:discardOrKeep"
  3626. msgid "Always discard changed settings"
  3627. msgstr "Descartar siempre los ajustes modificados"
  3628. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:749
  3629. msgctxt "@option:discardOrKeep"
  3630. msgid "Always transfer changed settings to new profile"
  3631. msgstr "Transferir siempre los ajustes modificados al nuevo perfil"
  3632. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:783
  3633. msgctxt "@label"
  3634. msgid "Privacy"
  3635. msgstr "Privacidad"
  3636. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:790
  3637. msgctxt "@info:tooltip"
  3638. msgid "Should Cura check for updates when the program is started?"
  3639. msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
  3640. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:795
  3641. msgctxt "@option:check"
  3642. msgid "Check for updates on start"
  3643. msgstr "Buscar actualizaciones al iniciar"
  3644. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:805
  3645. msgctxt "@info:tooltip"
  3646. msgid "Should anonymous data about your print be sent to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored."
  3647. msgstr "¿Deben enviarse datos anónimos sobre la impresión a Ultimaker? Tenga en cuenta que no se envían ni almacenan modelos, direcciones IP ni otra información de identificación personal."
  3648. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:810
  3649. msgctxt "@option:check"
  3650. msgid "Send (anonymous) print information"
  3651. msgstr "Enviar información (anónima) de impresión"
  3652. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:819
  3653. msgctxt "@action:button"
  3654. msgid "More information"
  3655. msgstr "Más información"
  3656. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3657. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3658. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3659. msgctxt "@action:button"
  3660. msgid "Activate"
  3661. msgstr "Activar"
  3662. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3663. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3664. msgctxt "@action:button"
  3665. msgid "Rename"
  3666. msgstr "Cambiar nombre"
  3667. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3668. msgctxt "@action:button"
  3669. msgid "Create"
  3670. msgstr "Crear"
  3671. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3672. msgctxt "@action:button"
  3673. msgid "Duplicate"
  3674. msgstr "Duplicado"
  3675. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3676. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3677. msgctxt "@action:button"
  3678. msgid "Import"
  3679. msgstr "Importar"
  3680. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3681. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3682. msgctxt "@action:button"
  3683. msgid "Export"
  3684. msgstr "Exportar"
  3685. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3686. msgctxt "@action:label"
  3687. msgid "Printer"
  3688. msgstr "Impresora"
  3689. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3690. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:274
  3691. msgctxt "@title:window"
  3692. msgid "Confirm Remove"
  3693. msgstr "Confirmar eliminación"
  3694. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3695. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:275
  3696. msgctxt "@label (%1 is object name)"
  3697. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3698. msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
  3699. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3700. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3701. msgctxt "@title:window"
  3702. msgid "Import Material"
  3703. msgstr "Importar material"
  3704. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3705. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3706. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3707. msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>"
  3708. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3709. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3710. msgid "Successfully imported material <filename>%1</filename>"
  3711. msgstr "El material se ha importado correctamente en <filename>%1</filename>"
  3712. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3713. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3714. msgctxt "@title:window"
  3715. msgid "Export Material"
  3716. msgstr "Exportar material"
  3717. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3718. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3719. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3720. msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>"
  3721. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3722. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3723. msgid "Successfully exported material to <filename>%1</filename>"
  3724. msgstr "El material se ha exportado correctamente a <filename>%1</filename>"
  3725. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3726. msgctxt "@title"
  3727. msgid "Information"
  3728. msgstr "Información"
  3729. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3730. msgctxt "@title:window"
  3731. msgid "Confirm Diameter Change"
  3732. msgstr "Confirmar cambio de diámetro"
  3733. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3734. msgctxt "@label (%1 is a number)"
  3735. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3736. msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
  3737. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3738. msgctxt "@label"
  3739. msgid "Display Name"
  3740. msgstr "Mostrar nombre"
  3741. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3742. msgctxt "@label"
  3743. msgid "Material Type"
  3744. msgstr "Tipo de material"
  3745. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3746. msgctxt "@label"
  3747. msgid "Color"
  3748. msgstr "Color"
  3749. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3750. msgctxt "@label"
  3751. msgid "Properties"
  3752. msgstr "Propiedades"
  3753. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3754. msgctxt "@label"
  3755. msgid "Density"
  3756. msgstr "Densidad"
  3757. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3758. msgctxt "@label"
  3759. msgid "Diameter"
  3760. msgstr "Diámetro"
  3761. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3762. msgctxt "@label"
  3763. msgid "Filament Cost"
  3764. msgstr "Coste del filamento"
  3765. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3766. msgctxt "@label"
  3767. msgid "Filament weight"
  3768. msgstr "Peso del filamento"
  3769. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3770. msgctxt "@label"
  3771. msgid "Filament length"
  3772. msgstr "Longitud del filamento"
  3773. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3774. msgctxt "@label"
  3775. msgid "Cost per Meter"
  3776. msgstr "Coste por metro"
  3777. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3778. msgctxt "@label"
  3779. msgid "This material is linked to %1 and shares some of its properties."
  3780. msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
  3781. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3782. msgctxt "@label"
  3783. msgid "Unlink Material"
  3784. msgstr "Desvincular material"
  3785. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3786. msgctxt "@label"
  3787. msgid "Description"
  3788. msgstr "Descripción"
  3789. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3790. msgctxt "@label"
  3791. msgid "Adhesion Information"
  3792. msgstr "Información sobre adherencia"
  3793. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  3794. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  3795. msgctxt "@label"
  3796. msgid "Print settings"
  3797. msgstr "Ajustes de impresión"
  3798. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3799. msgctxt "@label"
  3800. msgid "Create"
  3801. msgstr "Crear"
  3802. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3803. msgctxt "@label"
  3804. msgid "Duplicate"
  3805. msgstr "Duplicado"
  3806. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3807. msgctxt "@title:window"
  3808. msgid "Create Profile"
  3809. msgstr "Crear perfil"
  3810. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3811. msgctxt "@info"
  3812. msgid "Please provide a name for this profile."
  3813. msgstr "Introduzca un nombre para este perfil."
  3814. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:260
  3815. msgctxt "@title:window"
  3816. msgid "Duplicate Profile"
  3817. msgstr "Duplicar perfil"
  3818. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:291
  3819. msgctxt "@title:window"
  3820. msgid "Rename Profile"
  3821. msgstr "Cambiar nombre de perfil"
  3822. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:304
  3823. msgctxt "@title:window"
  3824. msgid "Import Profile"
  3825. msgstr "Importar perfil"
  3826. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:333
  3827. msgctxt "@title:window"
  3828. msgid "Export Profile"
  3829. msgstr "Exportar perfil"
  3830. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:396
  3831. msgctxt "@label %1 is printer name"
  3832. msgid "Printer: %1"
  3833. msgstr "Impresora: %1"
  3834. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:554
  3835. msgctxt "@action:button"
  3836. msgid "Update profile with current settings/overrides"
  3837. msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
  3838. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:561
  3839. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  3840. msgctxt "@action:button"
  3841. msgid "Discard current changes"
  3842. msgstr "Descartar cambios actuales"
  3843. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:580
  3844. msgctxt "@action:label"
  3845. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3846. msgstr "Este perfil utiliza los ajustes predeterminados especificados por la impresora, por eso no aparece ningún ajuste o sobrescritura en la lista que se ve a continuación."
  3847. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:588
  3848. msgctxt "@action:label"
  3849. msgid "Your current settings match the selected profile."
  3850. msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
  3851. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:606
  3852. msgctxt "@title:tab"
  3853. msgid "Global Settings"
  3854. msgstr "Ajustes globales"
  3855. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3856. msgctxt "@info:status"
  3857. msgid "Calculated"
  3858. msgstr "Calculado"
  3859. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3860. msgctxt "@title:column"
  3861. msgid "Setting"
  3862. msgstr "Ajustes"
  3863. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3864. msgctxt "@title:column"
  3865. msgid "Profile"
  3866. msgstr "Perfil"
  3867. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3868. msgctxt "@title:column"
  3869. msgid "Current"
  3870. msgstr "Actual"
  3871. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3872. msgctxt "@title:column"
  3873. msgid "Unit"
  3874. msgstr "Unidad"
  3875. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3876. msgctxt "@title:tab"
  3877. msgid "Setting Visibility"
  3878. msgstr "Visibilidad de los ajustes"
  3879. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3880. msgctxt "@label:textbox"
  3881. msgid "Check all"
  3882. msgstr "Comprobar todo"
  3883. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  3884. msgctxt "@label"
  3885. msgid "Extruder"
  3886. msgstr "Extrusor"
  3887. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  3888. msgctxt "@tooltip"
  3889. msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off."
  3890. msgstr "Temperatura objetivo del extremo caliente. El extremo caliente se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento del extremo caliente se desactivará."
  3891. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  3892. msgctxt "@tooltip"
  3893. msgid "The current temperature of this hotend."
  3894. msgstr "Temperatura actual de este extremo caliente."
  3895. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  3896. msgctxt "@tooltip of temperature input"
  3897. msgid "The temperature to pre-heat the hotend to."
  3898. msgstr "Temperatura a la que se va a precalentar el extremo caliente."
  3899. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  3900. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  3901. msgctxt "@button Cancel pre-heating"
  3902. msgid "Cancel"
  3903. msgstr "Cancelar"
  3904. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  3905. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  3906. msgctxt "@button"
  3907. msgid "Pre-heat"
  3908. msgstr "Precalentar"
  3909. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  3910. msgctxt "@tooltip of pre-heat"
  3911. msgid "Heat the hotend in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the hotend to heat up when you're ready to print."
  3912. msgstr "Caliente el extremo caliente antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que el extremo caliente se caliente para poder imprimir."
  3913. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  3914. msgctxt "@tooltip"
  3915. msgid "The colour of the material in this extruder."
  3916. msgstr "Color del material en este extrusor."
  3917. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  3918. msgctxt "@tooltip"
  3919. msgid "The material in this extruder."
  3920. msgstr "Material en este extrusor."
  3921. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  3922. msgctxt "@tooltip"
  3923. msgid "The nozzle inserted in this extruder."
  3924. msgstr "Tobera insertada en este extrusor."
  3925. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  3926. msgctxt "@label"
  3927. msgid "Build plate"
  3928. msgstr "Placa de impresión"
  3929. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  3930. msgctxt "@tooltip"
  3931. msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off."
  3932. msgstr "Temperatura objetivo de la plataforma calentada. La plataforma se calentará o enfriará en función de esta temperatura. Si el valor es 0, el calentamiento de la plataforma se desactivará."
  3933. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  3934. msgctxt "@tooltip"
  3935. msgid "The current temperature of the heated bed."
  3936. msgstr "Temperatura actual de la plataforma caliente."
  3937. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  3938. msgctxt "@tooltip of temperature input"
  3939. msgid "The temperature to pre-heat the bed to."
  3940. msgstr "Temperatura a la que se va a precalentar la plataforma."
  3941. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  3942. msgctxt "@tooltip of pre-heat"
  3943. msgid "Heat the bed in advance before printing. You can continue adjusting your print while it is heating, and you won't have to wait for the bed to heat up when you're ready to print."
  3944. msgstr "Caliente la plataforma antes de imprimir. Puede continuar ajustando la impresión durante el calentamiento, así no tendrá que esperar a que la plataforma se caliente para poder imprimir."
  3945. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  3946. msgctxt "@label"
  3947. msgid "Printer control"
  3948. msgstr "Control de impresoras"
  3949. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  3950. msgctxt "@label"
  3951. msgid "Jog Position"
  3952. msgstr "Posición de desplazamiento"
  3953. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  3954. msgctxt "@label"
  3955. msgid "X/Y"
  3956. msgstr "X/Y"
  3957. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  3958. msgctxt "@label"
  3959. msgid "Z"
  3960. msgstr "Z"
  3961. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  3962. msgctxt "@label"
  3963. msgid "Jog Distance"
  3964. msgstr "Distancia de desplazamiento"
  3965. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  3966. msgctxt "@label"
  3967. msgid "Send G-code"
  3968. msgstr "Enviar GCode"
  3969. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  3970. msgctxt "@tooltip of G-code command input"
  3971. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  3972. msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
  3973. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  3974. msgctxt "@info:status"
  3975. msgid "The printer is not connected."
  3976. msgstr "La impresora no está conectada."
  3977. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  3978. msgctxt "@status"
  3979. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3980. msgstr "La impresora de la nube está sin conexión. Compruebe si la impresora está encendida y conectada a Internet."
  3981. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  3982. msgctxt "@status"
  3983. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3984. msgstr "Esta impresora no está vinculada a su cuenta. Vaya a Ultimaker Digital Factory para establecer una conexión."
  3985. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  3986. msgctxt "@status"
  3987. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3988. msgstr "La conexión de la nube no está disponible actualmente. Inicie sesión para conectarse a la impresora de la nube."
  3989. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  3990. msgctxt "@status"
  3991. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3992. msgstr "La conexión de la nube no está disponible actualmente. Compruebe la conexión a Internet."
  3993. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  3994. msgctxt "@button"
  3995. msgid "Add printer"
  3996. msgstr "Agregar impresora"
  3997. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  3998. msgctxt "@button"
  3999. msgid "Manage printers"
  4000. msgstr "Administrar impresoras"
  4001. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4002. msgctxt "@label"
  4003. msgid "Connected printers"
  4004. msgstr "Impresoras conectadas"
  4005. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4006. msgctxt "@label"
  4007. msgid "Preset printers"
  4008. msgstr "Impresoras preconfiguradas"
  4009. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:140
  4010. msgctxt "@label"
  4011. msgid "Active print"
  4012. msgstr "Activar impresión"
  4013. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:148
  4014. msgctxt "@label"
  4015. msgid "Job Name"
  4016. msgstr "Nombre del trabajo"
  4017. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:156
  4018. msgctxt "@label"
  4019. msgid "Printing Time"
  4020. msgstr "Tiempo de impresión"
  4021. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintMonitor.qml:164
  4022. msgctxt "@label"
  4023. msgid "Estimated time left"
  4024. msgstr "Tiempo restante estimado"
  4025. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  4026. msgctxt "@label"
  4027. msgid "Profile"
  4028. msgstr "Perfil"
  4029. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  4030. msgctxt "@tooltip"
  4031. msgid ""
  4032. "Some setting/override values are different from the values stored in the profile.\n"
  4033. "\n"
  4034. "Click to open the profile manager."
  4035. msgstr ""
  4036. "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n"
  4037. "\n"
  4038. "Haga clic para abrir el administrador de perfiles."
  4039. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  4040. msgctxt "@label:header"
  4041. msgid "Custom profiles"
  4042. msgstr "Perfiles personalizados"
  4043. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  4044. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  4045. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  4046. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  4047. msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada"
  4048. msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada"
  4049. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  4050. msgctxt "@label shown when we load a Gcode file"
  4051. msgid "Print setup disabled. G-code file can not be modified."
  4052. msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode."
  4053. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  4054. msgctxt "@button"
  4055. msgid "Recommended"
  4056. msgstr "Recomendado"
  4057. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  4058. msgctxt "@button"
  4059. msgid "Custom"
  4060. msgstr "Personalizado"
  4061. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  4062. msgctxt "@label:Should be short"
  4063. msgid "On"
  4064. msgstr "Encendido"
  4065. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  4066. msgctxt "@label:Should be short"
  4067. msgid "Off"
  4068. msgstr "Apagado"
  4069. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  4070. msgctxt "@label"
  4071. msgid "Experimental"
  4072. msgstr "Experimental"
  4073. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  4074. msgctxt "@label"
  4075. msgid "Adhesion"
  4076. msgstr "Adherencia"
  4077. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  4078. msgctxt "@label"
  4079. msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards."
  4080. 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."
  4081. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  4082. msgctxt "@label"
  4083. msgid "Gradual infill"
  4084. msgstr "Relleno gradual"
  4085. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  4086. msgctxt "@label"
  4087. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  4088. msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba."
  4089. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  4090. msgctxt "@tooltip"
  4091. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  4092. msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado."
  4093. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  4094. msgctxt "@label"
  4095. msgid "Support"
  4096. msgstr "Soporte"
  4097. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  4098. msgctxt "@label"
  4099. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  4100. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  4101. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingCategory.qml:200
  4102. msgctxt "@label"
  4103. msgid ""
  4104. "Some hidden settings use values different from their normal calculated value.\n"
  4105. "\n"
  4106. "Click to make these settings visible."
  4107. msgstr ""
  4108. "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n"
  4109. "\n"
  4110. "Haga clic para mostrar estos ajustes."
  4111. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  4112. msgctxt "@label"
  4113. msgid "This setting is not used because all the settings that it influences are overridden."
  4114. msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos."
  4115. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  4116. msgctxt "@label Header for list of settings."
  4117. msgid "Affects"
  4118. msgstr "Afecta a"
  4119. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  4120. msgctxt "@label Header for list of settings."
  4121. msgid "Affected By"
  4122. msgstr "Afectado por"
  4123. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
  4124. msgctxt "@label"
  4125. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4126. msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  4127. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
  4128. msgctxt "@label"
  4129. msgid "This setting is resolved from conflicting extruder-specific values:"
  4130. msgstr "Este valor se resuelve a partir de valores en conflicto específicos del extrusor:"
  4131. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
  4132. msgctxt "@label"
  4133. msgid ""
  4134. "This setting has a value that is different from the profile.\n"
  4135. "\n"
  4136. "Click to restore the value of the profile."
  4137. msgstr ""
  4138. "Este ajuste tiene un valor distinto del perfil.\n"
  4139. "\n"
  4140. "Haga clic para restaurar el valor del perfil."
  4141. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
  4142. msgctxt "@label"
  4143. msgid ""
  4144. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4145. "\n"
  4146. "Click to restore the calculated value."
  4147. msgstr ""
  4148. "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n"
  4149. "\n"
  4150. "Haga clic para restaurar el valor calculado."
  4151. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  4152. msgctxt "@label:textbox"
  4153. msgid "Search settings"
  4154. msgstr "Buscar ajustes"
  4155. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:456
  4156. msgctxt "@action:menu"
  4157. msgid "Copy value to all extruders"
  4158. msgstr "Copiar valor en todos los extrusores"
  4159. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:465
  4160. msgctxt "@action:menu"
  4161. msgid "Copy all changed values to all extruders"
  4162. msgstr "Copiar todos los valores cambiados en todos los extrusores"
  4163. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:502
  4164. msgctxt "@action:menu"
  4165. msgid "Hide this setting"
  4166. msgstr "Ocultar este ajuste"
  4167. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:515
  4168. msgctxt "@action:menu"
  4169. msgid "Don't show this setting"
  4170. msgstr "No mostrar este ajuste"
  4171. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/Settings/SettingView.qml:519
  4172. msgctxt "@action:menu"
  4173. msgid "Keep this setting visible"
  4174. msgstr "Mostrar este ajuste"
  4175. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  4176. msgctxt "@info:tooltip"
  4177. msgid "3D View"
  4178. msgstr "Vista en 3D"
  4179. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  4180. msgctxt "@info:tooltip"
  4181. msgid "Front View"
  4182. msgstr "Vista frontal"
  4183. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  4184. msgctxt "@info:tooltip"
  4185. msgid "Top View"
  4186. msgstr "Vista superior"
  4187. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  4188. msgctxt "@info:tooltip"
  4189. msgid "Left View"
  4190. msgstr "Vista del lado izquierdo"
  4191. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  4192. msgctxt "@info:tooltip"
  4193. msgid "Right View"
  4194. msgstr "Vista del lado derecho"
  4195. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/ViewsSelector.qml:50
  4196. msgctxt "@label"
  4197. msgid "View type"
  4198. msgstr "Ver tipo"
  4199. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  4200. msgctxt "@label"
  4201. msgid "Add a Cloud printer"
  4202. msgstr "Añadir una impresora a la nube"
  4203. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  4204. msgctxt "@label"
  4205. msgid "Waiting for Cloud response"
  4206. msgstr "Esperando la respuesta de la nube"
  4207. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  4208. msgctxt "@label"
  4209. msgid "No printers found in your account?"
  4210. msgstr "¿No se han encontrado impresoras en su cuenta?"
  4211. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  4212. msgctxt "@label"
  4213. msgid "The following printers in your account have been added in Cura:"
  4214. msgstr "Las siguientes impresoras de su cuenta se han añadido en Cura:"
  4215. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  4216. msgctxt "@button"
  4217. msgid "Add printer manually"
  4218. msgstr "Añadir impresora manualmente"
  4219. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:218
  4220. msgctxt "@button"
  4221. msgid "Finish"
  4222. msgstr "Finalizar"
  4223. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  4224. msgctxt "@label"
  4225. msgid "Manufacturer"
  4226. msgstr "Fabricante"
  4227. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  4228. msgctxt "@label"
  4229. msgid "Profile author"
  4230. msgstr "Autor del perfil"
  4231. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  4232. msgctxt "@label"
  4233. msgid "Printer name"
  4234. msgstr "Nombre de la impresora"
  4235. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  4236. msgctxt "@text"
  4237. msgid "Please name your printer"
  4238. msgstr "Asigne un nombre a su impresora"
  4239. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  4240. msgctxt "@label"
  4241. msgid "Add a printer"
  4242. msgstr "Agregar una impresora"
  4243. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  4244. msgctxt "@label"
  4245. msgid "Add a networked printer"
  4246. msgstr "Agregar una impresora en red"
  4247. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  4248. msgctxt "@label"
  4249. msgid "Add a non-networked printer"
  4250. msgstr "Agregar una impresora fuera de red"
  4251. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  4252. msgctxt "@label"
  4253. msgid "There is no printer found over your network."
  4254. msgstr "No se ha encontrado ninguna impresora en su red."
  4255. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  4256. msgctxt "@label"
  4257. msgid "Refresh"
  4258. msgstr "Actualizar"
  4259. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  4260. msgctxt "@label"
  4261. msgid "Add printer by IP"
  4262. msgstr "Agregar impresora por IP"
  4263. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  4264. msgctxt "@label"
  4265. msgid "Add cloud printer"
  4266. msgstr "Añadir impresora a la nube"
  4267. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  4268. msgctxt "@label"
  4269. msgid "Troubleshooting"
  4270. msgstr "Solución de problemas"
  4271. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  4272. msgctxt "@label"
  4273. msgid "Add printer by IP address"
  4274. msgstr "Agregar impresora por dirección IP"
  4275. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  4276. msgctxt "@text"
  4277. msgid "Enter your printer's IP address."
  4278. msgstr "Introduzca la dirección IP de su impresora."
  4279. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  4280. msgctxt "@button"
  4281. msgid "Add"
  4282. msgstr "Agregar"
  4283. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  4284. msgctxt "@label"
  4285. msgid "Could not connect to device."
  4286. msgstr "No se ha podido conectar al dispositivo."
  4287. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  4288. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  4289. msgctxt "@label"
  4290. msgid "Can't connect to your Ultimaker printer?"
  4291. msgstr "¿No puede conectarse a la impresora Ultimaker?"
  4292. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  4293. msgctxt "@label"
  4294. msgid "The printer at this address has not responded yet."
  4295. msgstr "La impresora todavía no ha respondido en esta dirección."
  4296. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  4297. msgctxt "@label"
  4298. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  4299. msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo."
  4300. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  4301. msgctxt "@button"
  4302. msgid "Back"
  4303. msgstr "Atrás"
  4304. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  4305. msgctxt "@button"
  4306. msgid "Connect"
  4307. msgstr "Conectar"
  4308. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:43
  4309. msgctxt "@label"
  4310. msgid "Ultimaker Account"
  4311. msgstr "Cuenta de Ultimaker"
  4312. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:84
  4313. msgctxt "@text"
  4314. msgid "Your key to connected 3D printing"
  4315. msgstr "Su clave para una impresión 3D conectada"
  4316. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:101
  4317. msgctxt "@text"
  4318. msgid "- Customize your experience with more print profiles and plugins"
  4319. msgstr "- Personalice su experiencia con más perfiles de impresión y complementos"
  4320. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:104
  4321. msgctxt "@text"
  4322. msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4323. msgstr "- Consiga más flexibilidad sincronizando su configuración y cargándola en cualquier lugar"
  4324. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:107
  4325. msgctxt "@text"
  4326. msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4327. msgstr "- Aumente la eficiencia con un flujo de trabajo remoto en las impresoras Ultimaker"
  4328. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:157
  4329. msgctxt "@button"
  4330. msgid "Skip"
  4331. msgstr "Omitir"
  4332. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  4333. msgctxt "@label"
  4334. msgid "Help us to improve Ultimaker Cura"
  4335. msgstr "Ayúdenos a mejorar Ultimaker Cura"
  4336. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  4337. msgctxt "@text"
  4338. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  4339. msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:"
  4340. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  4341. msgctxt "@text"
  4342. msgid "Machine types"
  4343. msgstr "Tipos de máquina"
  4344. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  4345. msgctxt "@text"
  4346. msgid "Material usage"
  4347. msgstr "Uso de material"
  4348. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  4349. msgctxt "@text"
  4350. msgid "Number of slices"
  4351. msgstr "Número de segmentos"
  4352. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  4353. msgctxt "@text"
  4354. msgid "Print settings"
  4355. msgstr "Ajustes de impresión"
  4356. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  4357. msgctxt "@text"
  4358. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  4359. msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal."
  4360. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  4361. msgctxt "@text"
  4362. msgid "More information"
  4363. msgstr "Más información"
  4364. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  4365. msgctxt "@label"
  4366. msgid "Empty"
  4367. msgstr "Vacío"
  4368. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  4369. msgctxt "@label"
  4370. msgid "User Agreement"
  4371. msgstr "Acuerdo de usuario"
  4372. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  4373. msgctxt "@button"
  4374. msgid "Decline and close"
  4375. msgstr "Rechazar y cerrar"
  4376. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:29
  4377. msgctxt "@label"
  4378. msgid "Welcome to Ultimaker Cura"
  4379. msgstr "Le damos la bienvenida a Ultimaker Cura"
  4380. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:47
  4381. msgctxt "@text"
  4382. msgid ""
  4383. "Please follow these steps to set up\n"
  4384. "Ultimaker Cura. This will only take a few moments."
  4385. msgstr ""
  4386. "Siga estos pasos para configurar\n"
  4387. "Ultimaker Cura. Solo le llevará unos minutos."
  4388. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:58
  4389. msgctxt "@button"
  4390. msgid "Get started"
  4391. msgstr "Empezar"
  4392. #: /home/trin/Gedeeld/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:24
  4393. msgctxt "@label"
  4394. msgid "What's new in Ultimaker Cura"
  4395. msgstr "Novedades en Ultimaker Cura"
  4396. #: ModelChecker/plugin.json
  4397. msgctxt "description"
  4398. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4399. msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos."
  4400. #: ModelChecker/plugin.json
  4401. msgctxt "name"
  4402. msgid "Model Checker"
  4403. msgstr "Comprobador de modelos"
  4404. #: 3MFReader/plugin.json
  4405. msgctxt "description"
  4406. msgid "Provides support for reading 3MF files."
  4407. msgstr "Proporciona asistencia para leer archivos 3MF."
  4408. #: 3MFReader/plugin.json
  4409. msgctxt "name"
  4410. msgid "3MF Reader"
  4411. msgstr "Lector de 3MF"
  4412. #: 3MFWriter/plugin.json
  4413. msgctxt "description"
  4414. msgid "Provides support for writing 3MF files."
  4415. msgstr "Proporciona asistencia para escribir archivos 3MF."
  4416. #: 3MFWriter/plugin.json
  4417. msgctxt "name"
  4418. msgid "3MF Writer"
  4419. msgstr "Escritor de 3MF"
  4420. #: AMFReader/plugin.json
  4421. msgctxt "description"
  4422. msgid "Provides support for reading AMF files."
  4423. msgstr "Proporciona asistencia para leer archivos AMF."
  4424. #: AMFReader/plugin.json
  4425. msgctxt "name"
  4426. msgid "AMF Reader"
  4427. msgstr "Lector de AMF"
  4428. #: CuraDrive/plugin.json
  4429. msgctxt "description"
  4430. msgid "Backup and restore your configuration."
  4431. msgstr "Realice una copia de seguridad de su configuración y restáurela."
  4432. #: CuraDrive/plugin.json
  4433. msgctxt "name"
  4434. msgid "Cura Backups"
  4435. msgstr "Copias de seguridad de Cura"
  4436. #: CuraEngineBackend/plugin.json
  4437. msgctxt "description"
  4438. msgid "Provides the link to the CuraEngine slicing backend."
  4439. msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  4440. #: CuraEngineBackend/plugin.json
  4441. msgctxt "name"
  4442. msgid "CuraEngine Backend"
  4443. msgstr "Backend de CuraEngine"
  4444. #: CuraProfileReader/plugin.json
  4445. msgctxt "description"
  4446. msgid "Provides support for importing Cura profiles."
  4447. msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  4448. #: CuraProfileReader/plugin.json
  4449. msgctxt "name"
  4450. msgid "Cura Profile Reader"
  4451. msgstr "Lector de perfiles de Cura"
  4452. #: CuraProfileWriter/plugin.json
  4453. msgctxt "description"
  4454. msgid "Provides support for exporting Cura profiles."
  4455. msgstr "Proporciona asistencia para exportar perfiles de Cura."
  4456. #: CuraProfileWriter/plugin.json
  4457. msgctxt "name"
  4458. msgid "Cura Profile Writer"
  4459. msgstr "Escritor de perfiles de Cura"
  4460. #: FirmwareUpdateChecker/plugin.json
  4461. msgctxt "description"
  4462. msgid "Checks for firmware updates."
  4463. msgstr "Busca actualizaciones de firmware."
  4464. #: FirmwareUpdateChecker/plugin.json
  4465. msgctxt "name"
  4466. msgid "Firmware Update Checker"
  4467. msgstr "Buscador de actualizaciones de firmware"
  4468. #: FirmwareUpdater/plugin.json
  4469. msgctxt "description"
  4470. msgid "Provides a machine actions for updating firmware."
  4471. msgstr "Proporciona opciones a la máquina para actualizar el firmware."
  4472. #: FirmwareUpdater/plugin.json
  4473. msgctxt "name"
  4474. msgid "Firmware Updater"
  4475. msgstr "Actualizador de firmware"
  4476. #: GCodeGzReader/plugin.json
  4477. msgctxt "description"
  4478. msgid "Reads g-code from a compressed archive."
  4479. msgstr "Lee GCode de un archivo comprimido."
  4480. #: GCodeGzReader/plugin.json
  4481. msgctxt "name"
  4482. msgid "Compressed G-code Reader"
  4483. msgstr "Lector de GCode comprimido"
  4484. #: GCodeGzWriter/plugin.json
  4485. msgctxt "description"
  4486. msgid "Writes g-code to a compressed archive."
  4487. msgstr "Escribe GCode en un archivo comprimido."
  4488. #: GCodeGzWriter/plugin.json
  4489. msgctxt "name"
  4490. msgid "Compressed G-code Writer"
  4491. msgstr "Escritor de GCode comprimido"
  4492. #: GCodeProfileReader/plugin.json
  4493. msgctxt "description"
  4494. msgid "Provides support for importing profiles from g-code files."
  4495. msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  4496. #: GCodeProfileReader/plugin.json
  4497. msgctxt "name"
  4498. msgid "G-code Profile Reader"
  4499. msgstr "Lector de perfiles GCode"
  4500. #: GCodeReader/plugin.json
  4501. msgctxt "description"
  4502. msgid "Allows loading and displaying G-code files."
  4503. msgstr "Permite cargar y visualizar archivos GCode."
  4504. #: GCodeReader/plugin.json
  4505. msgctxt "name"
  4506. msgid "G-code Reader"
  4507. msgstr "Lector de GCode"
  4508. #: GCodeWriter/plugin.json
  4509. msgctxt "description"
  4510. msgid "Writes g-code to a file."
  4511. msgstr "Escribe GCode en un archivo."
  4512. #: GCodeWriter/plugin.json
  4513. msgctxt "name"
  4514. msgid "G-code Writer"
  4515. msgstr "Escritor de GCode"
  4516. #: ImageReader/plugin.json
  4517. msgctxt "description"
  4518. msgid "Enables ability to generate printable geometry from 2D image files."
  4519. msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  4520. #: ImageReader/plugin.json
  4521. msgctxt "name"
  4522. msgid "Image Reader"
  4523. msgstr "Lector de imágenes"
  4524. #: LegacyProfileReader/plugin.json
  4525. msgctxt "description"
  4526. msgid "Provides support for importing profiles from legacy Cura versions."
  4527. msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  4528. #: LegacyProfileReader/plugin.json
  4529. msgctxt "name"
  4530. msgid "Legacy Cura Profile Reader"
  4531. msgstr "Lector de perfiles antiguos de Cura"
  4532. #: MachineSettingsAction/plugin.json
  4533. msgctxt "description"
  4534. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4535. msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  4536. #: MachineSettingsAction/plugin.json
  4537. msgctxt "name"
  4538. msgid "Machine Settings Action"
  4539. msgstr "Acción Ajustes de la máquina"
  4540. #: MonitorStage/plugin.json
  4541. msgctxt "description"
  4542. msgid "Provides a monitor stage in Cura."
  4543. msgstr "Proporciona una fase de supervisión en Cura."
  4544. #: MonitorStage/plugin.json
  4545. msgctxt "name"
  4546. msgid "Monitor Stage"
  4547. msgstr "Fase de supervisión"
  4548. #: PerObjectSettingsTool/plugin.json
  4549. msgctxt "description"
  4550. msgid "Provides the Per Model Settings."
  4551. msgstr "Proporciona los ajustes por modelo."
  4552. #: PerObjectSettingsTool/plugin.json
  4553. msgctxt "name"
  4554. msgid "Per Model Settings Tool"
  4555. msgstr "Herramienta de ajustes por modelo"
  4556. #: PostProcessingPlugin/plugin.json
  4557. msgctxt "description"
  4558. msgid "Extension that allows for user created scripts for post processing"
  4559. msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios"
  4560. #: PostProcessingPlugin/plugin.json
  4561. msgctxt "name"
  4562. msgid "Post Processing"
  4563. msgstr "Posprocesamiento"
  4564. #: PrepareStage/plugin.json
  4565. msgctxt "description"
  4566. msgid "Provides a prepare stage in Cura."
  4567. msgstr "Proporciona una fase de preparación en Cura."
  4568. #: PrepareStage/plugin.json
  4569. msgctxt "name"
  4570. msgid "Prepare Stage"
  4571. msgstr "Fase de preparación"
  4572. #: PreviewStage/plugin.json
  4573. msgctxt "description"
  4574. msgid "Provides a preview stage in Cura."
  4575. msgstr "Proporciona una fase de vista previa en Cura."
  4576. #: PreviewStage/plugin.json
  4577. msgctxt "name"
  4578. msgid "Preview Stage"
  4579. msgstr "Fase de vista previa"
  4580. #: RemovableDriveOutputDevice/plugin.json
  4581. msgctxt "description"
  4582. msgid "Provides removable drive hotplugging and writing support."
  4583. msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  4584. #: RemovableDriveOutputDevice/plugin.json
  4585. msgctxt "name"
  4586. msgid "Removable Drive Output Device Plugin"
  4587. msgstr "Complemento de dispositivo de salida de unidad extraíble"
  4588. #: SentryLogger/plugin.json
  4589. msgctxt "description"
  4590. msgid "Logs certain events so that they can be used by the crash reporter"
  4591. msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente"
  4592. #: SentryLogger/plugin.json
  4593. msgctxt "name"
  4594. msgid "Sentry Logger"
  4595. msgstr "Registro de Sentry"
  4596. #: SimulationView/plugin.json
  4597. msgctxt "description"
  4598. msgid "Provides the Simulation view."
  4599. msgstr "Abre la vista de simulación."
  4600. #: SimulationView/plugin.json
  4601. msgctxt "name"
  4602. msgid "Simulation View"
  4603. msgstr "Vista de simulación"
  4604. #: SliceInfoPlugin/plugin.json
  4605. msgctxt "description"
  4606. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4607. msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  4608. #: SliceInfoPlugin/plugin.json
  4609. msgctxt "name"
  4610. msgid "Slice info"
  4611. msgstr "Info de la segmentación"
  4612. #: SolidView/plugin.json
  4613. msgctxt "description"
  4614. msgid "Provides a normal solid mesh view."
  4615. msgstr "Proporciona una vista de malla sólida normal."
  4616. #: SolidView/plugin.json
  4617. msgctxt "name"
  4618. msgid "Solid View"
  4619. msgstr "Vista de sólidos"
  4620. #: SupportEraser/plugin.json
  4621. msgctxt "description"
  4622. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4623. msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares"
  4624. #: SupportEraser/plugin.json
  4625. msgctxt "name"
  4626. msgid "Support Eraser"
  4627. msgstr "Borrador de soporte"
  4628. #: Toolbox/plugin.json
  4629. msgctxt "description"
  4630. msgid "Find, manage and install new Cura packages."
  4631. msgstr "Buscar, administrar e instalar nuevos paquetes de Cura."
  4632. #: Toolbox/plugin.json
  4633. msgctxt "name"
  4634. msgid "Toolbox"
  4635. msgstr "Cuadro de herramientas"
  4636. #: TrimeshReader/plugin.json
  4637. msgctxt "description"
  4638. msgid "Provides support for reading model files."
  4639. msgstr "Proporciona asistencia para leer archivos 3D."
  4640. #: TrimeshReader/plugin.json
  4641. msgctxt "name"
  4642. msgid "Trimesh Reader"
  4643. msgstr "Lector Trimesh"
  4644. #: UFPReader/plugin.json
  4645. msgctxt "description"
  4646. msgid "Provides support for reading Ultimaker Format Packages."
  4647. msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker."
  4648. #: UFPReader/plugin.json
  4649. msgctxt "name"
  4650. msgid "UFP Reader"
  4651. msgstr "Lector de UFP"
  4652. #: UFPWriter/plugin.json
  4653. msgctxt "description"
  4654. msgid "Provides support for writing Ultimaker Format Packages."
  4655. msgstr "Permite la escritura de paquetes de formato Ultimaker."
  4656. #: UFPWriter/plugin.json
  4657. msgctxt "name"
  4658. msgid "UFP Writer"
  4659. msgstr "Escritor de UFP"
  4660. #: UltimakerMachineActions/plugin.json
  4661. msgctxt "description"
  4662. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4663. 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.)."
  4664. #: UltimakerMachineActions/plugin.json
  4665. msgctxt "name"
  4666. msgid "Ultimaker machine actions"
  4667. msgstr "Acciones de la máquina Ultimaker"
  4668. #: UM3NetworkPrinting/plugin.json
  4669. msgctxt "description"
  4670. msgid "Manages network connections to Ultimaker networked printers."
  4671. msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas."
  4672. #: UM3NetworkPrinting/plugin.json
  4673. msgctxt "name"
  4674. msgid "Ultimaker Network Connection"
  4675. msgstr "Conexión en red de Ultimaker"
  4676. #: USBPrinting/plugin.json
  4677. msgctxt "description"
  4678. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4679. msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  4680. #: USBPrinting/plugin.json
  4681. msgctxt "name"
  4682. msgid "USB printing"
  4683. msgstr "Impresión USB"
  4684. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4685. msgctxt "description"
  4686. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4687. msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  4688. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4689. msgctxt "name"
  4690. msgid "Version Upgrade 2.1 to 2.2"
  4691. msgstr "Actualización de la versión 2.1 a la 2.2"
  4692. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4693. msgctxt "description"
  4694. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4695. msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  4696. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4697. msgctxt "name"
  4698. msgid "Version Upgrade 2.2 to 2.4"
  4699. msgstr "Actualización de la versión 2.2 a la 2.4"
  4700. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4701. msgctxt "description"
  4702. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4703. msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  4704. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4705. msgctxt "name"
  4706. msgid "Version Upgrade 2.5 to 2.6"
  4707. msgstr "Actualización de la versión 2.5 a la 2.6"
  4708. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4709. msgctxt "description"
  4710. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4711. msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
  4712. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4713. msgctxt "name"
  4714. msgid "Version Upgrade 2.6 to 2.7"
  4715. msgstr "Actualización de la versión 2.6 a la 2.7"
  4716. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4717. msgctxt "description"
  4718. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4719. msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
  4720. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4721. msgctxt "name"
  4722. msgid "Version Upgrade 2.7 to 3.0"
  4723. msgstr "Actualización de la versión 2.7 a la 3.0"
  4724. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4725. msgctxt "description"
  4726. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4727. msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
  4728. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4729. msgctxt "name"
  4730. msgid "Version Upgrade 3.0 to 3.1"
  4731. msgstr "Actualización de la versión 3.0 a la 3.1"
  4732. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4733. msgctxt "description"
  4734. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4735. msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
  4736. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4737. msgctxt "name"
  4738. msgid "Version Upgrade 3.2 to 3.3"
  4739. msgstr "Actualización de la versión 3.2 a la 3.3"
  4740. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4741. msgctxt "description"
  4742. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4743. msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
  4744. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4745. msgctxt "name"
  4746. msgid "Version Upgrade 3.3 to 3.4"
  4747. msgstr "Actualización de la versión 3.3 a la 3.4"
  4748. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4749. msgctxt "description"
  4750. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4751. msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5."
  4752. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4753. msgctxt "name"
  4754. msgid "Version Upgrade 3.4 to 3.5"
  4755. msgstr "Actualización de la versión 3.4 a la 3.5"
  4756. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4757. msgctxt "description"
  4758. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4759. msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0."
  4760. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4761. msgctxt "name"
  4762. msgid "Version Upgrade 3.5 to 4.0"
  4763. msgstr "Actualización de la versión 3.5 a la 4.0"
  4764. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4765. msgctxt "description"
  4766. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4767. msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1."
  4768. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4769. msgctxt "name"
  4770. msgid "Version Upgrade 4.0 to 4.1"
  4771. msgstr "Actualización de la versión 4.0 a la 4.1"
  4772. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4773. msgctxt "description"
  4774. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4775. msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2."
  4776. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4777. msgctxt "name"
  4778. msgid "Version Upgrade 4.1 to 4.2"
  4779. msgstr "Actualización de la versión 4.1 a la 4.2"
  4780. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4781. msgctxt "description"
  4782. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4783. msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3."
  4784. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4785. msgctxt "name"
  4786. msgid "Version Upgrade 4.2 to 4.3"
  4787. msgstr "Actualización de la versión 4.2 a la 4.3"
  4788. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4789. msgctxt "description"
  4790. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4791. msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4."
  4792. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4793. msgctxt "name"
  4794. msgid "Version Upgrade 4.3 to 4.4"
  4795. msgstr "Actualización de la versión 4.3 a la 4.4"
  4796. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4797. msgctxt "description"
  4798. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4799. msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5."
  4800. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4801. msgctxt "name"
  4802. msgid "Version Upgrade 4.4 to 4.5"
  4803. msgstr "Actualización de la versión 4.4 a la 4.5"
  4804. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4805. msgctxt "description"
  4806. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4807. msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6."
  4808. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4809. msgctxt "name"
  4810. msgid "Version Upgrade 4.5 to 4.6"
  4811. msgstr "Actualización de la versión 4.5 a la 4.6"
  4812. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4813. msgctxt "description"
  4814. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4815. msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2."
  4816. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4817. msgctxt "name"
  4818. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4819. msgstr "Actualización de la versión 4.6.0 a la 4.6.2"
  4820. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4821. msgctxt "description"
  4822. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4823. msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7."
  4824. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4825. msgctxt "name"
  4826. msgid "Version Upgrade 4.6.2 to 4.7"
  4827. msgstr "Actualización de la versión 4.6.2 a la 4.7"
  4828. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4829. msgctxt "description"
  4830. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4831. msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8."
  4832. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4833. msgctxt "name"
  4834. msgid "Version Upgrade 4.7 to 4.8"
  4835. msgstr "Actualización de la versión 4.7 a la 4.8"
  4836. #: X3DReader/plugin.json
  4837. msgctxt "description"
  4838. msgid "Provides support for reading X3D files."
  4839. msgstr "Proporciona asistencia para leer archivos X3D."
  4840. #: X3DReader/plugin.json
  4841. msgctxt "name"
  4842. msgid "X3D Reader"
  4843. msgstr "Lector de X3D"
  4844. #: XmlMaterialProfile/plugin.json
  4845. msgctxt "description"
  4846. msgid "Provides capabilities to read and write XML-based material profiles."
  4847. msgstr "Permite leer y escribir perfiles de material basados en XML."
  4848. #: XmlMaterialProfile/plugin.json
  4849. msgctxt "name"
  4850. msgid "Material Profiles"
  4851. msgstr "Perfiles de material"
  4852. #: XRayView/plugin.json
  4853. msgctxt "description"
  4854. msgid "Provides the X-Ray view."
  4855. msgstr "Proporciona la vista de rayos X."
  4856. #: XRayView/plugin.json
  4857. msgctxt "name"
  4858. msgid "X-Ray View"
  4859. msgstr "Vista de rayos X"
  4860. #~ msgctxt "@label ({} is object name)"
  4861. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4862. #~ msgstr "¿Seguro que desea eliminar {}? ¡Esta acción no se puede deshacer!"
  4863. #~ msgctxt "@info:status"
  4864. #~ msgid "The selected model was too small to load."
  4865. #~ msgstr "No se puede cargar el modelo seleccionado, es demasiado pequeño."
  4866. #~ msgctxt "@info:status"
  4867. #~ msgid "Successfully imported profile {0}"
  4868. #~ msgstr "Perfil {0} importado correctamente"
  4869. #~ msgctxt "@info:status"
  4870. #~ msgid "Could not find a quality type {0} for the current configuration."
  4871. #~ msgstr "No se ha podido encontrar un tipo de calidad {0} para la configuración actual."
  4872. #~ msgctxt "info:status"
  4873. #~ msgid "Adding printer {} ({}) from your account"
  4874. #~ msgstr "Añadiendo la impresora {} ({}) de su cuenta"
  4875. #~ msgctxt "info:hidden list items"
  4876. #~ msgid "<li>... and {} others</li>"
  4877. #~ msgstr "<li>... y {} más</li>"
  4878. #~ msgctxt "info:status"
  4879. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  4880. #~ msgstr "Impresoras añadidas desde Digital Factory:<ul>{}</ul>"
  4881. #~ msgctxt "info:status"
  4882. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4883. #~ msgstr "<ul>{}</ul>Para establecer una conexión, visite <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  4884. #~ msgctxt "@label ({} is printer name)"
  4885. #~ 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?"
  4886. #~ 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?"
  4887. #~ msgctxt "@label"
  4888. #~ msgid ""
  4889. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  4890. #~ "Are you sure you want to continue?"
  4891. #~ msgstr ""
  4892. #~ "Está a punto de eliminar {} impresora(s) de Cura. Esta acción no se puede deshacer.\n"
  4893. #~ "¿Seguro que desea continuar?"
  4894. #~ msgctxt "@label"
  4895. #~ msgid ""
  4896. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  4897. #~ "Are you sure you want to continue?"
  4898. #~ msgstr ""
  4899. #~ "Está a punto de eliminar todas las impresoras de Cura. Esta acción no se puede deshacer.\n"
  4900. #~ "¿Seguro que desea continuar?"
  4901. #~ msgctxt "@action:ComboBox option"
  4902. #~ msgid "Update"
  4903. #~ msgstr "Actualizar"
  4904. #~ msgctxt "@action:ComboBox option"
  4905. #~ msgid "Create new"
  4906. #~ msgstr "Crear nuevo"
  4907. #~ msgctxt "@label"
  4908. #~ msgid "Shared Heater"
  4909. #~ msgstr "Calentador compartido"
  4910. #~ msgctxt "@info"
  4911. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  4912. #~ msgstr "La cámara web no se encuentra disponible porque está supervisando una impresora en la nube."
  4913. #~ msgctxt "@button"
  4914. #~ msgid "Ultimaker Digital Factory"
  4915. #~ msgstr "Ultimaker Digital Factory"
  4916. #~ msgctxt "@text:window, %1 is a profile name"
  4917. #~ msgid ""
  4918. #~ "You have customized some profile settings.\n"
  4919. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  4920. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  4921. #~ msgstr ""
  4922. #~ "Ha personalizado algunos ajustes del perfil.\n"
  4923. #~ "¿Le gustaría mantener estos ajustes cambiados después de cambiar de perfil?\n"
  4924. #~ "También puede descartar los cambios para cargar los valores predeterminados de '%1'."
  4925. #~ msgctxt "@label"
  4926. #~ msgid "Overrides %1 setting."
  4927. #~ msgid_plural "Overrides %1 settings."
  4928. #~ msgstr[0] "Anula el ajuste de %1."
  4929. #~ msgstr[1] "Anula los ajustes de %1."
  4930. #~ msgctxt "@text"
  4931. #~ msgid "Please give your printer a name"
  4932. #~ msgstr "Indique un nombre para su impresora"
  4933. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  4934. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  4935. #~ msgstr "Hay nuevas funciones disponibles para {machine_name}. Se recomienda actualizar el firmware de la impresora."
  4936. #~ msgctxt "@action:button"
  4937. #~ msgid "Print via Cloud"
  4938. #~ msgstr "Imprimir mediante Cloud"
  4939. #~ msgctxt "@properties:tooltip"
  4940. #~ msgid "Print via Cloud"
  4941. #~ msgstr "Imprimir mediante Cloud"
  4942. #~ msgctxt "@info:status"
  4943. #~ msgid "Connected via Cloud"
  4944. #~ msgstr "Conectado mediante Cloud"
  4945. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  4946. #~ msgid "Connect to Ultimaker Cloud"
  4947. #~ msgstr "Conectar a Ultimaker Cloud"
  4948. #~ msgctxt "@label"
  4949. #~ msgid "You need to login first before you can rate"
  4950. #~ msgstr "Debe iniciar sesión antes de enviar sus calificaciones"
  4951. #~ msgctxt "@label"
  4952. #~ msgid "You need to install the package before you can rate"
  4953. #~ msgstr "Debe instalar el paquete antes de enviar sus calificaciones"
  4954. #~ msgctxt "@label"
  4955. #~ msgid "ratings"
  4956. #~ msgstr "calificaciones"
  4957. #~ msgctxt "@label"
  4958. #~ msgid "Featured"
  4959. #~ msgstr "Destacado"
  4960. #~ msgctxt "@label"
  4961. #~ msgid "Your rating"
  4962. #~ msgstr "Su calificación"
  4963. #~ msgctxt "@label"
  4964. #~ msgid "Author"
  4965. #~ msgstr "Autor"
  4966. #~ msgctxt "@description"
  4967. #~ msgid "Get plugins and materials verified by Ultimaker"
  4968. #~ msgstr "Obtener complementos y materiales verificados por Ultimaker"
  4969. #~ msgctxt "@label The argument is a username."
  4970. #~ msgid "Hi %1"
  4971. #~ msgstr "Hola, %1"
  4972. #~ msgctxt "@button"
  4973. #~ msgid "Ultimaker account"
  4974. #~ msgstr "Cuenta de Ultimaker"
  4975. #~ msgctxt "@button"
  4976. #~ msgid "Sign out"
  4977. #~ msgstr "Cerrar sesión"
  4978. #~ msgctxt "@label"
  4979. #~ msgid "Support library for analysis of complex networks"
  4980. #~ msgstr "Biblioteca de compatibilidad para analizar redes complejas"
  4981. #~ msgctxt "@Label"
  4982. #~ msgid "Python HTTP library"
  4983. #~ msgstr "Biblioteca HTTP de Python"
  4984. #~ msgctxt "@text:window"
  4985. #~ msgid ""
  4986. #~ "You have customized some profile settings.\n"
  4987. #~ "Would you like to keep or discard those settings?"
  4988. #~ msgstr ""
  4989. #~ "Ha personalizado parte de los ajustes del perfil.\n"
  4990. #~ "¿Desea descartar los cambios o guardarlos?"
  4991. #~ msgctxt "@title:column"
  4992. #~ msgid "Default"
  4993. #~ msgstr "Valor predeterminado"
  4994. #~ msgctxt "@title:column"
  4995. #~ msgid "Customized"
  4996. #~ msgstr "Valor personalizado"
  4997. #~ msgctxt "@action:button"
  4998. #~ msgid "Discard"
  4999. #~ msgstr "Descartar"
  5000. #~ msgctxt "@action:button"
  5001. #~ msgid "Keep"
  5002. #~ msgstr "Guardar"
  5003. #~ msgctxt "@action:button"
  5004. #~ msgid "Create New Profile"
  5005. #~ msgstr "Crear nuevo perfil"
  5006. #~ msgctxt "@title:menu menubar:file"
  5007. #~ msgid "&Save..."
  5008. #~ msgstr "&Guardar..."
  5009. #~ msgctxt "@text"
  5010. #~ msgid "Place enter your printer's IP address."
  5011. #~ msgstr "Introduzca la dirección IP de su impresora."
  5012. #~ msgctxt "@button"
  5013. #~ msgid "Create an account"
  5014. #~ msgstr "Crear una cuenta"
  5015. #~ msgctxt "@info:generic"
  5016. #~ msgid ""
  5017. #~ "\n"
  5018. #~ "Do you want to sync material and software packages with your account?"
  5019. #~ msgstr ""
  5020. #~ "\n"
  5021. #~ "¿Desea sincronizar el material y los paquetes de software con su cuenta?"
  5022. #~ msgctxt "@info:generic"
  5023. #~ msgid ""
  5024. #~ "\n"
  5025. #~ "Syncing..."
  5026. #~ msgstr ""
  5027. #~ "\n"
  5028. #~ "Sincronizando..."
  5029. #~ msgctxt "@info:status"
  5030. #~ 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."
  5031. #~ 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."
  5032. #~ msgctxt "@info:backup_status"
  5033. #~ msgid "There was an error listing your backups."
  5034. #~ msgstr "Se ha producido un error al obtener sus copias de seguridad."
  5035. #~ msgctxt "@title:groupbox"
  5036. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5037. #~ msgstr "Descripción del usuario (Nota: es posible que los desarrolladores no hablen su idioma; si es posible, utilice el inglés)"
  5038. #~ msgctxt "@title:window"
  5039. #~ msgid "Closing Cura"
  5040. #~ msgstr "Cerrando Cura"
  5041. #~ msgctxt "@label"
  5042. #~ msgid "Are you sure you want to exit Cura?"
  5043. #~ msgstr "¿Seguro que desea salir de Cura?"
  5044. #~ msgctxt "@label"
  5045. #~ msgid "Language:"
  5046. #~ msgstr "Idioma:"
  5047. #~ msgctxt "@label"
  5048. #~ msgid "Ultimaker Cloud"
  5049. #~ msgstr "Ultimaker Cloud"
  5050. #~ msgctxt "@text"
  5051. #~ msgid "The next generation 3D printing workflow"
  5052. #~ msgstr "El flujo de trabajo de impresión 3D de próxima generación"
  5053. #~ msgctxt "@text"
  5054. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5055. #~ msgstr "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local"
  5056. #~ msgctxt "@text"
  5057. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5058. #~ msgstr "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar"
  5059. #~ msgctxt "@text"
  5060. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5061. #~ msgstr "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes"
  5062. #~ msgctxt "@label"
  5063. #~ msgid "The value is resolved from per-extruder values "
  5064. #~ msgstr "El valor se resuelve según los valores de los extrusores. "
  5065. #~ msgctxt "@label"
  5066. #~ msgid "The next generation 3D printing workflow"
  5067. #~ msgstr "El flujo de trabajo de impresión 3D de próxima generación"
  5068. #~ msgctxt "@text"
  5069. #~ msgid ""
  5070. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5071. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5072. #~ "- Get exclusive access to print profiles from leading brands"
  5073. #~ msgstr ""
  5074. #~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n"
  5075. #~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n"
  5076. #~ "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes"
  5077. #~ msgctxt "@title:window"
  5078. #~ msgid "About "
  5079. #~ msgstr "Acerca de "
  5080. #~ msgctxt "@info:button"
  5081. #~ msgid "Quit Cura"
  5082. #~ msgstr "Salir de Cura"
  5083. #~ msgctxt "@action:checkbox"
  5084. #~ msgid "Infill only"
  5085. #~ msgstr "Solo relleno"
  5086. #~ msgctxt "@info:tooltip"
  5087. #~ msgid "Change active post-processing scripts"
  5088. #~ msgstr "Cambia las secuencias de comandos de posprocesamiento"
  5089. #~ msgctxt "@label:listbox"
  5090. #~ msgid "Feedrate"
  5091. #~ msgstr "Velocidad"
  5092. #~ msgctxt "name"
  5093. #~ msgid "Machine Settings action"
  5094. #~ msgstr "Acción Ajustes de la máquina"
  5095. #~ msgctxt "@info:title"
  5096. #~ msgid "New cloud printers found"
  5097. #~ msgstr "Se han encontrado nuevas impresoras en la nube"
  5098. #~ msgctxt "@info:message"
  5099. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5100. #~ msgstr "Se han encontrado nuevas impresoras conectadas a tu cuenta; puedes verlas en la lista de impresoras descubiertas."
  5101. #~ msgctxt "@info:status"
  5102. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5103. #~ msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada"
  5104. #~ msgctxt "@label"
  5105. #~ msgid "Pre-sliced file {0}"
  5106. #~ msgstr "Archivo {0} presegmentado"
  5107. #~ msgctxt "@label"
  5108. #~ msgid ""
  5109. #~ "This plugin contains a license.\n"
  5110. #~ "You need to accept this license to install this plugin.\n"
  5111. #~ "Do you agree with the terms below?"
  5112. #~ msgstr ""
  5113. #~ "Este complemento incluye una licencia.\n"
  5114. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  5115. #~ "¿Acepta las condiciones que aparecen a continuación?"
  5116. #~ msgctxt "@action:button"
  5117. #~ msgid "Accept"
  5118. #~ msgstr "Aceptar"
  5119. #~ msgctxt "@action:button"
  5120. #~ msgid "Decline"
  5121. #~ msgstr "Rechazar"
  5122. #~ msgctxt "@action:inmenu"
  5123. #~ msgid "Show All Settings"
  5124. #~ msgstr "Mostrar todos los ajustes"
  5125. #~ msgctxt "@title:window"
  5126. #~ msgid "Ultimaker Cura"
  5127. #~ msgstr "Ultimaker Cura"
  5128. #~ msgctxt "@title:window"
  5129. #~ msgid "About Cura"
  5130. #~ msgstr "Acerca de Cura"
  5131. #~ msgctxt "@item:inmenu"
  5132. #~ msgid "Flatten active settings"
  5133. #~ msgstr "Aplanar ajustes activos"
  5134. #~ msgctxt "@info:status"
  5135. #~ msgid "Profile has been flattened & activated."
  5136. #~ msgstr "El perfil se ha aplanado y activado."
  5137. #~ msgctxt "X3g Writer Plugin Description"
  5138. #~ msgid "Writes X3g to files"
  5139. #~ msgstr "Escribe X3g en archivos"
  5140. #~ msgctxt "X3g Writer File Description"
  5141. #~ msgid "X3g File"
  5142. #~ msgstr "Archivo X3g"
  5143. #~ msgctxt "X3G Writer File Description"
  5144. #~ msgid "X3G File"
  5145. #~ msgstr "Archivo X3G"
  5146. #~ msgctxt "@item:inmenu"
  5147. #~ msgid "Profile Assistant"
  5148. #~ msgstr "Asistente del perfil"
  5149. #~ msgctxt "@item:inlistbox"
  5150. #~ msgid "Profile Assistant"
  5151. #~ msgstr "Asistente del perfil"
  5152. #~ msgctxt "@action:button"
  5153. #~ msgid "Retry"
  5154. #~ msgstr "Volver a intentar"
  5155. #~ msgctxt "@label:table_header"
  5156. #~ msgid "Print Core"
  5157. #~ msgstr "Print core"
  5158. #~ msgctxt "@label"
  5159. #~ msgid "Don't support overlap with other models"
  5160. #~ msgstr "No crear soporte en otros modelos (por superposición)"
  5161. #~ msgctxt "@label"
  5162. #~ msgid "Modify settings for overlap with other models"
  5163. #~ msgstr "Modificar ajustes de otros modelos (por superposición)"
  5164. #~ msgctxt "@label"
  5165. #~ msgid "Modify settings for infill of other models"
  5166. #~ msgstr "Modificar ajustes del relleno de otros modelos"
  5167. #~ msgctxt "@action:ComboBox option"
  5168. #~ msgid "Update existing"
  5169. #~ msgstr "Actualizar existente"
  5170. #~ msgctxt "@label"
  5171. #~ msgid "Not supported"
  5172. #~ msgstr "No compatible"
  5173. #~ msgctxt "@action:button"
  5174. #~ msgid "Previous"
  5175. #~ msgstr "Anterior"
  5176. #~ msgctxt "@label"
  5177. #~ msgid "Tip"
  5178. #~ msgstr "Consejo"
  5179. #~ msgctxt "@label"
  5180. #~ msgid "Print experiment"
  5181. #~ msgstr "Ensayo de impresión"
  5182. #~ msgctxt "@label"
  5183. #~ msgid "Checklist"
  5184. #~ msgstr "Lista de verificación"
  5185. #~ msgctxt "@label"
  5186. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5187. #~ msgstr "Seleccione cualquier actualización de este Ultimaker 2."
  5188. #~ msgctxt "@label"
  5189. #~ msgid "Olsson Block"
  5190. #~ msgstr "Bloque Olsson"
  5191. #~ msgctxt "@window:text"
  5192. #~ msgid "Camera rendering: "
  5193. #~ msgstr "Renderizado de cámara: "
  5194. #~ msgctxt "@info:tooltip"
  5195. #~ msgid "Use multi build plate functionality"
  5196. #~ msgstr "Utilizar funcionalidad de placa de impresión múltiple"
  5197. #~ msgctxt "@option:check"
  5198. #~ msgid "Use multi build plate functionality (restart required)"
  5199. #~ msgstr "Utilizar funcionalidad de placa de impresión múltiple (reinicio requerido)"
  5200. #~ msgctxt "@label"
  5201. #~ msgid "Default profiles"
  5202. #~ msgstr "Perfiles predeterminados"
  5203. #~ msgctxt "@label:textbox"
  5204. #~ msgid "search settings"
  5205. #~ msgstr "buscar ajustes"
  5206. #~ msgctxt "@label"
  5207. #~ msgid "Layer Height"
  5208. #~ msgstr "Altura de capa"
  5209. #~ msgctxt "@tooltip"
  5210. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5211. #~ 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."
  5212. #~ msgctxt "@tooltip"
  5213. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5214. #~ 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"
  5215. #~ msgctxt "@title:menu"
  5216. #~ msgid "&Build plate"
  5217. #~ msgstr "&Placa de impresión"
  5218. #~ msgctxt "@title:settings"
  5219. #~ msgid "&Profile"
  5220. #~ msgstr "&Perfil"
  5221. #~ msgctxt "@action:label"
  5222. #~ msgid "Build plate"
  5223. #~ msgstr "Placa de impresión"
  5224. #~ msgctxt "description"
  5225. #~ msgid "Dump the contents of all settings to a HTML file."
  5226. #~ msgstr "Vuelva el contenido de todas las configuraciones en un archivo HTML."
  5227. #~ msgctxt "name"
  5228. #~ msgid "God Mode"
  5229. #~ msgstr "God Mode"
  5230. #~ msgctxt "description"
  5231. #~ msgid "Create a flattened quality changes profile."
  5232. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  5233. #~ msgctxt "name"
  5234. #~ msgid "Profile Flattener"
  5235. #~ msgstr "Aplanador de perfil"
  5236. #~ msgctxt "description"
  5237. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5238. #~ msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada."
  5239. #~ msgctxt "name"
  5240. #~ msgid "Print Profile Assistant"
  5241. #~ msgstr "Imprimir asistente del perfil"
  5242. #~ msgctxt "@info:status"
  5243. #~ msgid "Connected over the network."
  5244. #~ msgstr "Conectado a través de la red."
  5245. #~ msgctxt "@info:status"
  5246. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5247. #~ msgstr "Conectado a través de la red. Apruebe la solicitud de acceso en la impresora."
  5248. #~ msgctxt "@info:status"
  5249. #~ msgid "Connected over the network. No access to control the printer."
  5250. #~ msgstr "Conectado a través de la red. No hay acceso para controlar la impresora."
  5251. #~ msgctxt "@info:status"
  5252. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5253. #~ msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora"
  5254. #~ msgctxt "@info:title"
  5255. #~ msgid "Authentication status"
  5256. #~ msgstr "Estado de la autenticación"
  5257. #~ msgctxt "@info:title"
  5258. #~ msgid "Authentication Status"
  5259. #~ msgstr "Estado de la autenticación"
  5260. #~ msgctxt "@info:tooltip"
  5261. #~ msgid "Re-send the access request"
  5262. #~ msgstr "Reenvía la solicitud de acceso"
  5263. #~ msgctxt "@info:status"
  5264. #~ msgid "Access to the printer accepted"
  5265. #~ msgstr "Acceso a la impresora aceptado"
  5266. #~ msgctxt "@info:status"
  5267. #~ msgid "No access to print with this printer. Unable to send print job."
  5268. #~ msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión."
  5269. #~ msgctxt "@action:button"
  5270. #~ msgid "Request Access"
  5271. #~ msgstr "Solicitar acceso"
  5272. #~ msgctxt "@info:tooltip"
  5273. #~ msgid "Send access request to the printer"
  5274. #~ msgstr "Envía la solicitud de acceso a la impresora"
  5275. #~ msgctxt "@label"
  5276. #~ msgid "Unable to start a new print job."
  5277. #~ msgstr "No se puede iniciar un nuevo trabajo de impresión."
  5278. #~ msgctxt "@label"
  5279. #~ 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."
  5280. #~ msgstr "Un problema con la configuración de Ultimaker impide iniciar la impresión. Soluciónelo antes de continuar."
  5281. #~ msgctxt "@window:title"
  5282. #~ msgid "Mismatched configuration"
  5283. #~ msgstr "Configuración desajustada"
  5284. #~ msgctxt "@label"
  5285. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5286. #~ msgstr "¿Seguro que desea imprimir con la configuración seleccionada?"
  5287. #~ msgctxt "@label"
  5288. #~ 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."
  5289. #~ 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."
  5290. #~ msgctxt "@info:status"
  5291. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5292. #~ msgstr "Envío de nuevos trabajos (temporalmente) bloqueado; se sigue enviando el trabajo de impresión previo."
  5293. #~ msgctxt "@info:status"
  5294. #~ msgid "Sending data to printer"
  5295. #~ msgstr "Enviando datos a la impresora"
  5296. #~ msgctxt "@info:title"
  5297. #~ msgid "Sending Data"
  5298. #~ msgstr "Enviando datos"
  5299. #~ msgctxt "@info:status"
  5300. #~ msgid "No Printcore loaded in slot {slot_number}"
  5301. #~ msgstr "No se ha cargado ningún PrintCore en la ranura {slot_number}."
  5302. #~ msgctxt "@info:status"
  5303. #~ msgid "No material loaded in slot {slot_number}"
  5304. #~ msgstr "No se ha cargado ningún material en la ranura {slot_number}."
  5305. #~ msgctxt "@label"
  5306. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5307. #~ msgstr "PrintCore distinto (Cura: {cura_printcore_name}, impresora: {remote_printcore_name}) seleccionado para extrusor {extruder_id}"
  5308. #~ msgctxt "@label"
  5309. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5310. #~ msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  5311. #~ msgctxt "@window:title"
  5312. #~ msgid "Sync with your printer"
  5313. #~ msgstr "Sincronizar con la impresora"
  5314. #~ msgctxt "@label"
  5315. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5316. #~ msgstr "¿Desea utilizar la configuración actual de su impresora en Cura?"
  5317. #~ msgctxt "@label"
  5318. #~ 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."
  5319. #~ 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."
  5320. #~ msgctxt "@action:button"
  5321. #~ msgid "View in Monitor"
  5322. #~ msgstr "Ver en pantalla"
  5323. #~ msgctxt "@info:status"
  5324. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5325. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}»."
  5326. #~ msgctxt "@info:status"
  5327. #~ msgid "The print job '{job_name}' was finished."
  5328. #~ msgstr "El trabajo de impresión '{job_name}' ha terminado."
  5329. #~ msgctxt "@info:status"
  5330. #~ msgid "Print finished"
  5331. #~ msgstr "Impresión terminada"
  5332. #~ msgctxt "@label:material"
  5333. #~ msgid "Empty"
  5334. #~ msgstr "Vacío"
  5335. #~ msgctxt "@label:material"
  5336. #~ msgid "Unknown"
  5337. #~ msgstr "Desconocido"
  5338. #~ msgctxt "@info:title"
  5339. #~ msgid "Cloud error"
  5340. #~ msgstr "Error de Cloud"
  5341. #~ msgctxt "@info:status"
  5342. #~ msgid "Could not export print job."
  5343. #~ msgstr "No se ha podido exportar el trabajo de impresión."
  5344. #~ msgctxt "@info:description"
  5345. #~ msgid "There was an error connecting to the cloud."
  5346. #~ msgstr "Se ha producido un error al conectarse a la nube."
  5347. #~ msgctxt "@info:status"
  5348. #~ msgid "Uploading via Ultimaker Cloud"
  5349. #~ msgstr "Cargando a través de Ultimaker Cloud"
  5350. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5351. #~ msgid "Connect to Ultimaker Cloud"
  5352. #~ msgstr "Conectar a Ultimaker Cloud"
  5353. #~ msgctxt "@action"
  5354. #~ msgid "Don't ask me again for this printer."
  5355. #~ msgstr "No volver a preguntarme para esta impresora."
  5356. #~ msgctxt "@info:status"
  5357. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5358. #~ msgstr "Ahora ya puede enviar y supervisar sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
  5359. #~ msgctxt "@info:status"
  5360. #~ msgid "Connected!"
  5361. #~ msgstr "¡Conectado!"
  5362. #~ msgctxt "@action"
  5363. #~ msgid "Review your connection"
  5364. #~ msgstr "Revise su conexión"
  5365. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5366. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5367. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  5368. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5369. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5370. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  5371. #~ msgctxt "@window:title"
  5372. #~ msgid "Existing Connection"
  5373. #~ msgstr "Conexión existente"
  5374. #~ msgctxt "@message:text"
  5375. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5376. #~ msgstr "Esta impresora o grupo de impresoras ya se ha añadido a Cura. Seleccione otra impresora o grupo de impresoras."
  5377. #~ msgctxt "@label"
  5378. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5379. #~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en la red."
  5380. #~ msgctxt "@info:tooltip"
  5381. #~ msgid "Connect to a printer"
  5382. #~ msgstr "Conecta a una impresora"
  5383. #~ msgctxt "@title"
  5384. #~ msgid "Cura Settings Guide"
  5385. #~ msgstr "Guía de ajustes de Cura"
  5386. #~ msgctxt "@info:tooltip"
  5387. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5388. #~ msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortogonal."
  5389. #~ msgid "Orthogonal"
  5390. #~ msgstr "Ortográfica"
  5391. #~ msgctxt "description"
  5392. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5393. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  5394. #~ msgctxt "name"
  5395. #~ msgid "UM3 Network Connection"
  5396. #~ msgstr "Conexión de red UM3"
  5397. #~ msgctxt "description"
  5398. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5399. #~ msgstr "Proporciona información y explicaciones adicionales sobre los ajustes de Cura con imágenes y animaciones."
  5400. #~ msgctxt "name"
  5401. #~ msgid "Settings Guide"
  5402. #~ msgstr "Guía de ajustes"
  5403. #~ msgctxt "@item:inmenu"
  5404. #~ msgid "Cura Settings Guide"
  5405. #~ msgstr "Guía de ajustes de Cura"
  5406. #~ msgctxt "@info:generic"
  5407. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5408. #~ msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento: [%s]."
  5409. #~ msgctxt "@title:groupbox"
  5410. #~ msgid "User description"
  5411. #~ msgstr "Descripción del usuario"
  5412. #~ msgctxt "@info"
  5413. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5414. #~ msgstr "Estas opciones no se encuentran disponibles porque está supervisando una impresora en la nube."
  5415. #~ msgctxt "@label link to connect manager"
  5416. #~ msgid "Go to Cura Connect"
  5417. #~ msgstr "Ir a Cura Connect"
  5418. #~ msgctxt "@info"
  5419. #~ msgid "All jobs are printed."
  5420. #~ msgstr "Se han imprimido todos los trabajos."
  5421. #~ msgctxt "@label link to connect manager"
  5422. #~ msgid "View print history"
  5423. #~ msgstr "Ver historial de impresión"
  5424. #~ msgctxt "@label"
  5425. #~ msgid ""
  5426. #~ "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"
  5427. #~ "\n"
  5428. #~ "Select your printer from the list below:"
  5429. #~ msgstr ""
  5430. #~ "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"
  5431. #~ "\n"
  5432. #~ "Seleccione la impresora de la siguiente lista:"
  5433. #~ msgctxt "@info"
  5434. #~ msgid ""
  5435. #~ "Please make sure your printer has a connection:\n"
  5436. #~ "- Check if the printer is turned on.\n"
  5437. #~ "- Check if the printer is connected to the network."
  5438. #~ msgstr ""
  5439. #~ "Asegúrese de que su impresora está conectada:\n"
  5440. #~ "- Compruebe que la impresora está encendida.\n"
  5441. #~ "- Compruebe que la impresora está conectada a la red."
  5442. #~ msgctxt "@option:check"
  5443. #~ msgid "See only current build plate"
  5444. #~ msgstr "Ver solo placa de impresión actual"
  5445. #~ msgctxt "@action:button"
  5446. #~ msgid "Arrange to all build plates"
  5447. #~ msgstr "Organizar todas las placas de impresión"
  5448. #~ msgctxt "@action:button"
  5449. #~ msgid "Arrange current build plate"
  5450. #~ msgstr "Organizar placa de impresión actual"
  5451. #~ msgctxt "description"
  5452. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5453. #~ 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)."
  5454. #~ msgctxt "name"
  5455. #~ msgid "X3GWriter"
  5456. #~ msgstr "X3GWriter"
  5457. #~ msgctxt "description"
  5458. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5459. #~ msgstr "Lee archivos SVG como trayectorias de herramienta para solucionar errores en los movimientos de la impresora."
  5460. #~ msgctxt "name"
  5461. #~ msgid "SVG Toolpath Reader"
  5462. #~ msgstr "Lector de trayectoria de herramienta de SVG"
  5463. #~ msgctxt "@item:inmenu"
  5464. #~ msgid "Changelog"
  5465. #~ msgstr "Registro de cambios"
  5466. #~ msgctxt "@item:inmenu"
  5467. #~ msgid "Show Changelog"
  5468. #~ msgstr "Mostrar registro de cambios"
  5469. #~ msgctxt "@info:status"
  5470. #~ msgid "Sending data to remote cluster"
  5471. #~ msgstr "Enviando datos al clúster remoto"
  5472. #~ msgctxt "@info:status"
  5473. #~ msgid "Connect to Ultimaker Cloud"
  5474. #~ msgstr "Conectar a Ultimaker Cloud"
  5475. #~ msgctxt "@info"
  5476. #~ msgid "Cura collects anonymized usage statistics."
  5477. #~ msgstr "Cura recopila estadísticas de uso de forma anónima."
  5478. #~ msgctxt "@info:title"
  5479. #~ msgid "Collecting Data"
  5480. #~ msgstr "Recopilando datos"
  5481. #~ msgctxt "@action:button"
  5482. #~ msgid "More info"
  5483. #~ msgstr "Más información"
  5484. #~ msgctxt "@action:tooltip"
  5485. #~ msgid "See more information on what data Cura sends."
  5486. #~ msgstr "Obtenga más información sobre qué datos envía Cura."
  5487. #~ msgctxt "@action:button"
  5488. #~ msgid "Allow"
  5489. #~ msgstr "Permitir"
  5490. #~ msgctxt "@action:tooltip"
  5491. #~ 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."
  5492. #~ 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."
  5493. #~ msgctxt "@item:inmenu"
  5494. #~ msgid "Evaluation"
  5495. #~ msgstr "Evaluación"
  5496. #~ msgctxt "@info:title"
  5497. #~ msgid "Network enabled printers"
  5498. #~ msgstr "Impresoras de red habilitadas"
  5499. #~ msgctxt "@info:title"
  5500. #~ msgid "Local printers"
  5501. #~ msgstr "Impresoras locales"
  5502. #~ msgctxt "@info:backup_failed"
  5503. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5504. #~ msgstr "Se ha intentado restaurar una copia de seguridad de Cura que no coincide con la versión actual."
  5505. #~ msgctxt "@title"
  5506. #~ msgid "Machine Settings"
  5507. #~ msgstr "Ajustes de la máquina"
  5508. #~ msgctxt "@label"
  5509. #~ msgid "Printer Settings"
  5510. #~ msgstr "Ajustes de la impresora"
  5511. #~ msgctxt "@option:check"
  5512. #~ msgid "Origin at center"
  5513. #~ msgstr "Origen en el centro"
  5514. #~ msgctxt "@option:check"
  5515. #~ msgid "Heated bed"
  5516. #~ msgstr "Plataforma caliente"
  5517. #~ msgctxt "@label"
  5518. #~ msgid "Printhead Settings"
  5519. #~ msgstr "Ajustes del cabezal de impresión"
  5520. #~ msgctxt "@tooltip"
  5521. #~ 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\"."
  5522. #~ 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»."
  5523. #~ msgctxt "@tooltip"
  5524. #~ 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\"."
  5525. #~ 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»."
  5526. #~ msgctxt "@tooltip"
  5527. #~ 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\"."
  5528. #~ 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»."
  5529. #~ msgctxt "@tooltip"
  5530. #~ 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\"."
  5531. #~ 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»."
  5532. #~ msgctxt "@label"
  5533. #~ msgid "Gantry height"
  5534. #~ msgstr "Altura del caballete"
  5535. #~ msgctxt "@tooltip"
  5536. #~ 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\"."
  5537. #~ 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»."
  5538. #~ msgctxt "@label"
  5539. #~ msgid "Start G-code"
  5540. #~ msgstr "Iniciar GCode"
  5541. #~ msgctxt "@tooltip"
  5542. #~ msgid "G-code commands to be executed at the very start."
  5543. #~ msgstr "Los comandos de GCode que se ejecutarán justo al inicio."
  5544. #~ msgctxt "@label"
  5545. #~ msgid "End G-code"
  5546. #~ msgstr "Finalizar GCode"
  5547. #~ msgctxt "@tooltip"
  5548. #~ msgid "G-code commands to be executed at the very end."
  5549. #~ msgstr "Los comandos de GCode que se ejecutarán justo al final."
  5550. #~ msgctxt "@label"
  5551. #~ msgid "Nozzle Settings"
  5552. #~ msgstr "Ajustes de la tobera"
  5553. #~ msgctxt "@tooltip"
  5554. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5555. #~ msgstr "El diámetro nominal del filamento compatible con la impresora. El diámetro exacto se sobrescribirá según el material o el perfil."
  5556. #~ msgctxt "@label"
  5557. #~ msgid "Extruder Start G-code"
  5558. #~ msgstr "GCode inicial del extrusor"
  5559. #~ msgctxt "@label"
  5560. #~ msgid "Extruder End G-code"
  5561. #~ msgstr "GCode final del extrusor"
  5562. #~ msgctxt "@label"
  5563. #~ msgid "Changelog"
  5564. #~ msgstr "Registro de cambios"
  5565. #~ msgctxt "@title:window"
  5566. #~ msgid "User Agreement"
  5567. #~ msgstr "Acuerdo de usuario"
  5568. #~ msgctxt "@alabel"
  5569. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5570. #~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red."
  5571. #~ msgctxt "@info"
  5572. #~ msgid "Please select a network connected printer to monitor."
  5573. #~ msgstr "Seleccione la impresora conectada a la red que desee supervisar."
  5574. #~ msgctxt "@info"
  5575. #~ msgid "Please connect your Ultimaker printer to your local network."
  5576. #~ msgstr "Conecte su impresora Ultimaker a su red local."
  5577. #~ msgctxt "@text:window"
  5578. #~ 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."
  5579. #~ 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."
  5580. #~ msgctxt "@text:window"
  5581. #~ msgid "I don't want to send this data"
  5582. #~ msgstr "No deseo enviar estos datos"
  5583. #~ msgctxt "@text:window"
  5584. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5585. #~ msgstr "Permita que estos datos se envíen a Ultimaker y ayúdenos a mejorar Cura"
  5586. #~ msgctxt "@label"
  5587. #~ msgid "No print selected"
  5588. #~ msgstr "No ha seleccionado ninguna impresora"
  5589. #~ msgctxt "@info:tooltip"
  5590. #~ 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."
  5591. #~ 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."
  5592. #~ msgctxt "@title"
  5593. #~ msgid "Select Printer Upgrades"
  5594. #~ msgstr "Seleccionar actualizaciones de impresora"
  5595. #~ msgctxt "@label"
  5596. #~ 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."
  5597. #~ 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."
  5598. #~ msgctxt "@tooltip"
  5599. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5600. #~ 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."
  5601. #~ msgctxt "@label shown when we load a Gcode file"
  5602. #~ msgid "Print setup disabled. G code file can not be modified."
  5603. #~ msgstr "Configuración de impresión deshabilitada. No se puede modificar el GCode."
  5604. #~ msgctxt "@label"
  5605. #~ msgid "See the material compatibility chart"
  5606. #~ msgstr "Ver el gráfico de compatibilidad de materiales"
  5607. #~ msgctxt "@label"
  5608. #~ msgid "View types"
  5609. #~ msgstr "Ver tipos"
  5610. #~ msgctxt "@label"
  5611. #~ msgid "Hi "
  5612. #~ msgstr "Hola "
  5613. #~ msgctxt "@text"
  5614. #~ msgid ""
  5615. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5616. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5617. #~ "- Get exclusive access to material profiles from leading brands"
  5618. #~ msgstr ""
  5619. #~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n"
  5620. #~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n"
  5621. #~ "- Disfrute de acceso exclusivo a perfiles de materiales de marcas líderes"
  5622. #~ msgctxt "@label:PrintjobStatus"
  5623. #~ msgid "Unable to Slice"
  5624. #~ msgstr "No se puede segmentar"
  5625. #~ msgctxt "@label"
  5626. #~ msgid "Time specification"
  5627. #~ msgstr "Especificación de tiempos"
  5628. #~ msgctxt "@label"
  5629. #~ msgid "Material specification"
  5630. #~ msgstr "Especificación de materiales"
  5631. #~ msgctxt "@title:tab"
  5632. #~ msgid "Add a printer to Cura"
  5633. #~ msgstr "Añadir una impresora a Cura"
  5634. #~ msgctxt "@title:tab"
  5635. #~ msgid ""
  5636. #~ "Select the printer you want to use from the list below.\n"
  5637. #~ "\n"
  5638. #~ "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."
  5639. #~ msgstr ""
  5640. #~ "Seleccione la impresora que desee utilizar de la lista que se muestra a continuación.\n"
  5641. #~ "\n"
  5642. #~ "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."
  5643. #~ msgctxt "@label"
  5644. #~ msgid "Printer Name"
  5645. #~ msgstr "Nombre de la impresora"
  5646. #~ msgctxt "@action:button"
  5647. #~ msgid "Add Printer"
  5648. #~ msgstr "Agregar impresora"
  5649. #~ msgid "Modify G-Code"
  5650. #~ msgstr "Modificar GCode"
  5651. #~ msgctxt "@info:status"
  5652. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5653. #~ 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."
  5654. #~ msgctxt "@info:status"
  5655. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5656. #~ msgstr "El material seleccionado no es compatible con la máquina o la configuración seleccionada."
  5657. #~ msgctxt "@info:title"
  5658. #~ msgid "Incompatible Material"
  5659. #~ msgstr "Material incompatible"
  5660. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5661. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5662. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  5663. #~ msgctxt "@title"
  5664. #~ msgid "Toolbox"
  5665. #~ msgstr "Cuadro de herramientas"
  5666. #~ msgctxt "@label"
  5667. #~ msgid "Not available"
  5668. #~ msgstr "No disponible"
  5669. #~ msgctxt "@label"
  5670. #~ msgid "Unreachable"
  5671. #~ msgstr "No se puede conectar"
  5672. #~ msgctxt "@label"
  5673. #~ msgid "Available"
  5674. #~ msgstr "Disponible"
  5675. #~ msgctxt "@label:status"
  5676. #~ msgid "Preparing"
  5677. #~ msgstr "Preparando"
  5678. #~ msgctxt "@label:status"
  5679. #~ msgid "Pausing"
  5680. #~ msgstr "Pausando"
  5681. #~ msgctxt "@label:status"
  5682. #~ msgid "Resuming"
  5683. #~ msgstr "Reanudando"
  5684. #~ msgctxt "@label"
  5685. #~ msgid "Waiting for: Unavailable printer"
  5686. #~ msgstr "Esperando: impresora no disponible"
  5687. #~ msgctxt "@label"
  5688. #~ msgid "Waiting for: First available"
  5689. #~ msgstr "Esperando: primera disponible"
  5690. #~ msgctxt "@label"
  5691. #~ msgid "Waiting for: "
  5692. #~ msgstr "Esperando: "
  5693. #~ msgctxt "@label"
  5694. #~ msgid "Configuration change"
  5695. #~ msgstr "Cambio de configuración"
  5696. #~ msgctxt "@label"
  5697. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5698. #~ msgstr "Es necesario modificar la siguiente configuración de la impresora asignada %1:"
  5699. #~ msgctxt "@label"
  5700. #~ msgid "Override"
  5701. #~ msgstr "Anular"
  5702. #~ msgctxt "@label"
  5703. #~ 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?"
  5704. #~ 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?"
  5705. #~ msgctxt "@window:title"
  5706. #~ msgid "Override configuration configuration and start print"
  5707. #~ msgstr "Sobrescribir la configuración e iniciar la impresión"
  5708. #~ msgctxt "@label link to connect manager"
  5709. #~ msgid "Manage queue"
  5710. #~ msgstr "Administrar cola"
  5711. #~ msgctxt "@label"
  5712. #~ msgid "Printing"
  5713. #~ msgstr "Imprimiendo"
  5714. #~ msgctxt "@label link to connect manager"
  5715. #~ msgid "Manage printers"
  5716. #~ msgstr "Administrar impresoras"
  5717. #~ msgctxt "@action:button"
  5718. #~ msgid "Activate Configuration"
  5719. #~ msgstr "Activar configuración"
  5720. #~ msgctxt "@info:tooltip"
  5721. #~ msgid "Load the configuration of the printer into Cura"
  5722. #~ msgstr "Carga la configuración de la impresora en Cura"
  5723. #~ msgctxt "@label"
  5724. #~ msgid "Show Travels"
  5725. #~ msgstr "Mostrar desplazamientos"
  5726. #~ msgctxt "@label"
  5727. #~ msgid "Show Helpers"
  5728. #~ msgstr "Mostrar asistentes"
  5729. #~ msgctxt "@label"
  5730. #~ msgid "Show Shell"
  5731. #~ msgstr "Mostrar perímetro"
  5732. #~ msgctxt "@label"
  5733. #~ msgid "Show Infill"
  5734. #~ msgstr "Mostrar relleno"
  5735. #~ msgctxt "@text:window"
  5736. #~ msgid "I don't want to send these data"
  5737. #~ msgstr "No quiero enviar estos datos"
  5738. #~ msgctxt "@text:window"
  5739. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5740. #~ msgstr "Permita enviar estos datos a Ultimaker y ayúdenos a mejorar Cura"
  5741. #~ msgctxt "@label"
  5742. #~ msgid "Printer type:"
  5743. #~ msgstr "Tipo de impresora:"
  5744. #~ msgctxt "@label"
  5745. #~ msgid "Connection:"
  5746. #~ msgstr "Conexión:"
  5747. #~ msgctxt "@label"
  5748. #~ msgid "State:"
  5749. #~ msgstr "Estado:"
  5750. #~ msgctxt "@label:MonitorStatus"
  5751. #~ msgid "Waiting for a printjob"
  5752. #~ msgstr "Esperando un trabajo de impresión"
  5753. #~ msgctxt "@label:MonitorStatus"
  5754. #~ msgid "Waiting for someone to clear the build plate"
  5755. #~ msgstr "Esperando a que alguien limpie la placa de impresión"
  5756. #~ msgctxt "@label:MonitorStatus"
  5757. #~ msgid "Aborting print..."
  5758. #~ msgstr "Cancelando impresión..."
  5759. #~ msgctxt "@label"
  5760. #~ msgid "Protected profiles"
  5761. #~ msgstr "Perfiles protegidos"
  5762. #~ msgctxt "@label"
  5763. #~ msgid "Printer Name:"
  5764. #~ msgstr "Nombre de la impresora:"
  5765. #~ msgctxt "@label"
  5766. #~ msgid "Profile:"
  5767. #~ msgstr "Perfil:"
  5768. #~ msgctxt "@label:textbox"
  5769. #~ msgid "Search..."
  5770. #~ msgstr "Buscar..."
  5771. #~ msgctxt "@action:inmenu"
  5772. #~ msgid "Collapse All"
  5773. #~ msgstr "Contraer todo"
  5774. #~ msgctxt "@action:inmenu"
  5775. #~ msgid "Expand All"
  5776. #~ msgstr "Ampliar todo"
  5777. #~ msgctxt "@label:header configurations"
  5778. #~ msgid "Available configurations"
  5779. #~ msgstr "Configuraciones disponibles"
  5780. #~ msgctxt "@label:extruder label"
  5781. #~ msgid "Extruder"
  5782. #~ msgstr "Extrusor"
  5783. #~ msgctxt "@label:extruder label"
  5784. #~ msgid "Yes"
  5785. #~ msgstr "Sí"
  5786. #~ msgctxt "@label:extruder label"
  5787. #~ msgid "No"
  5788. #~ msgstr "No"
  5789. #~ msgctxt "@label:listbox"
  5790. #~ msgid "Print Setup"
  5791. #~ msgstr "Configuración de impresión"
  5792. #~ msgctxt "@label:listbox"
  5793. #~ msgid ""
  5794. #~ "Print Setup disabled\n"
  5795. #~ "G-code files cannot be modified"
  5796. #~ msgstr ""
  5797. #~ "Ajustes de impresión deshabilitados\n"
  5798. #~ "No se pueden modificar los archivos GCode"
  5799. #~ msgctxt "@label Hours and minutes"
  5800. #~ msgid "00h 00min"
  5801. #~ msgstr "00 h 00 min"
  5802. #~ msgctxt "@tooltip"
  5803. #~ msgid "Time specification"
  5804. #~ msgstr "Especificación de tiempos"
  5805. #~ msgctxt "@label"
  5806. #~ msgid "Cost specification"
  5807. #~ msgstr "Especificación de costes"
  5808. #~ msgctxt "@label"
  5809. #~ msgid "Total:"
  5810. #~ msgstr "Total:"
  5811. #~ msgctxt "@tooltip"
  5812. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5813. #~ 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."
  5814. #~ msgctxt "@tooltip"
  5815. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5816. #~ msgstr "<b>Configuración de impresión personalizada</b><br/><br/>Imprimir con un control muy detallado del proceso de segmentación."
  5817. #~ msgctxt "@action:inmenu menubar:help"
  5818. #~ msgid "Show Engine &Log..."
  5819. #~ msgstr "&Mostrar registro del motor..."
  5820. #~ msgctxt "@action:menu"
  5821. #~ msgid "Browse packages..."
  5822. #~ msgstr "Examinar paquetes..."
  5823. #~ msgctxt "@action:inmenu menubar:view"
  5824. #~ msgid "Expand/Collapse Sidebar"
  5825. #~ msgstr "Expandir/contraer barra lateral"
  5826. #~ msgctxt "@label:PrintjobStatus"
  5827. #~ msgid "Please load a 3D model"
  5828. #~ msgstr "Cargue un modelo en 3D"
  5829. #~ msgctxt "@label:PrintjobStatus"
  5830. #~ msgid "Ready to slice"
  5831. #~ msgstr "Preparado para segmentar"
  5832. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5833. #~ msgid "Ready to %1"
  5834. #~ msgstr "Listo para %1"
  5835. #~ msgctxt "@label:PrintjobStatus"
  5836. #~ msgid "Slicing unavailable"
  5837. #~ msgstr "No se puede segmentar"
  5838. #~ msgctxt "@info:tooltip"
  5839. #~ msgid "Slice current printjob"
  5840. #~ msgstr "Fragmentar trabajo de impresión actual"
  5841. #~ msgctxt "@info:tooltip"
  5842. #~ msgid "Cancel slicing process"
  5843. #~ msgstr "Cancelar proceso de fragmentación"
  5844. #~ msgctxt "@label:Printjob"
  5845. #~ msgid "Prepare"
  5846. #~ msgstr "Preparar"
  5847. #~ msgctxt "@label:Printjob"
  5848. #~ msgid "Cancel"
  5849. #~ msgstr "Cancelar"
  5850. #~ msgctxt "@info:tooltip"
  5851. #~ msgid "Select the active output device"
  5852. #~ msgstr "Seleccione el dispositivo de salida activo"
  5853. #~ msgctxt "@title:menu"
  5854. #~ msgid "&View"
  5855. #~ msgstr "&Ver"
  5856. #~ msgctxt "@title:menu"
  5857. #~ msgid "&Settings"
  5858. #~ msgstr "A&justes"
  5859. #~ msgctxt "@title:menu menubar:toplevel"
  5860. #~ msgid "&Toolbox"
  5861. #~ msgstr "&Cuadro de herramientas"
  5862. #~ msgctxt "@action:button"
  5863. #~ msgid "Open File"
  5864. #~ msgstr "Abrir archivo"
  5865. #~ msgctxt "@tooltip"
  5866. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5867. #~ 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"
  5868. #~ msgctxt "@label"
  5869. #~ msgid "Print Speed"
  5870. #~ msgstr "Velocidad de impresión"
  5871. #~ msgctxt "@label"
  5872. #~ msgid "Slower"
  5873. #~ msgstr "Más lento"
  5874. #~ msgctxt "@label"
  5875. #~ msgid "Faster"
  5876. #~ msgstr "Más rápido"
  5877. #~ msgctxt "@label"
  5878. #~ msgid "Enable gradual"
  5879. #~ msgstr "Habilitar gradual"
  5880. #~ msgctxt "@label"
  5881. #~ msgid "Generate Support"
  5882. #~ msgstr "Generar soporte"
  5883. #~ msgctxt "@label"
  5884. #~ msgid "Build Plate Adhesion"
  5885. #~ msgstr "Adherencia de la placa de impresión"
  5886. #~ msgctxt "@label"
  5887. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5888. #~ msgstr "¿Necesita ayuda para mejorar sus impresiones?<br>Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>"
  5889. #~ msgctxt "@title:window"
  5890. #~ msgid "Engine Log"
  5891. #~ msgstr "Registro del motor"
  5892. #~ msgctxt "@label"
  5893. #~ msgid "Printer type"
  5894. #~ msgstr "Tipo de impresora"
  5895. #~ msgctxt "@label"
  5896. #~ msgid "Use glue with this material combination"
  5897. #~ msgstr "Utilizar pegamento con esta combinación de materiales"
  5898. #~ msgctxt "@label"
  5899. #~ msgid "Check compatibility"
  5900. #~ msgstr "Comprobar compatibilidad"
  5901. #~ msgctxt "@tooltip"
  5902. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5903. #~ msgstr "Haga clic para comprobar la compatibilidad de los materiales en Utimaker.com."
  5904. #~ msgctxt "description"
  5905. #~ msgid "Shows changes since latest checked version."
  5906. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  5907. #~ msgctxt "name"
  5908. #~ msgid "Changelog"
  5909. #~ msgstr "Registro de cambios"
  5910. #~ msgctxt "description"
  5911. #~ msgid "Create a flattend quality changes profile."
  5912. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  5913. #~ msgctxt "name"
  5914. #~ msgid "Profile flatener"
  5915. #~ msgstr "Aplanador de perfil"
  5916. #~ msgctxt "description"
  5917. #~ msgid "Ask the user once if he/she agrees with our license."
  5918. #~ msgstr "Preguntar al usuario una vez si acepta la licencia."
  5919. #~ msgctxt "name"
  5920. #~ msgid "UserAgreement"
  5921. #~ msgstr "UserAgreement"
  5922. #~ msgctxt "@warning:status"
  5923. #~ msgid "Please generate G-code before saving."
  5924. #~ msgstr "Genere un G-code antes de guardar."
  5925. #~ msgctxt "@action"
  5926. #~ msgid "Upgrade Firmware"
  5927. #~ msgstr "Actualizar firmware"
  5928. #~ msgctxt "@label unknown material"
  5929. #~ msgid "Unknown"
  5930. #~ msgstr "Desconocido"
  5931. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5932. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5933. #~ msgstr "No hay ningún perfil personalizado que importar en el archivo <filename>{0}</filename>"
  5934. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5935. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5936. #~ msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  5937. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5938. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5939. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  5940. #~ msgctxt "@title:window"
  5941. #~ msgid "Confirm uninstall "
  5942. #~ msgstr "Confirmar desinstalación "
  5943. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5944. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5945. #~ msgstr "%1 m/~ %2 g/~ %4 %3"
  5946. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5947. #~ msgid "%1m / ~ %2g"
  5948. #~ msgstr "%1 m/~ %2 g"
  5949. #~ msgctxt "@title"
  5950. #~ msgid "Upgrade Firmware"
  5951. #~ msgstr "Actualización de firmware"
  5952. #~ msgctxt "@action:button"
  5953. #~ msgid "Print with Doodle3D WiFi-Box"
  5954. #~ msgstr "Imprimir con un enrutador Doodle3D"
  5955. #~ msgctxt "@properties:tooltip"
  5956. #~ msgid "Print with Doodle3D WiFi-Box"
  5957. #~ msgstr "Imprimir con un enrutador Doodle3D"
  5958. #~ msgctxt "@info:status"
  5959. #~ msgid "Connecting to Doodle3D Connect"
  5960. #~ msgstr "Conectar con Doodle3D Connect"
  5961. #~ msgctxt "@info:status"
  5962. #~ msgid "Sending data to Doodle3D Connect"
  5963. #~ msgstr "Enviando datos a Doodle3D Connect"
  5964. #~ msgctxt "@info:status"
  5965. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5966. #~ msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?"
  5967. #~ msgctxt "@info:status"
  5968. #~ msgid "Storing data on Doodle3D Connect"
  5969. #~ msgstr "Guardando datos en Doodle3D Connect"
  5970. #~ msgctxt "@info:status"
  5971. #~ msgid "File sent to Doodle3D Connect"
  5972. #~ msgstr "Archivo enviado a Doodle3D Connect"
  5973. #~ msgctxt "@action:button"
  5974. #~ msgid "Open Connect..."
  5975. #~ msgstr "Abrir Connect..."
  5976. #~ msgctxt "@info:tooltip"
  5977. #~ msgid "Open the Doodle3D Connect web interface"
  5978. #~ msgstr "Abrir la interfaz web de Doodle3D Connect"
  5979. #~ msgctxt "@item:inlistbox"
  5980. #~ msgid "Blender file"
  5981. #~ msgstr "Archivo Blender"
  5982. #~ msgctxt "@info:status"
  5983. #~ msgid ""
  5984. #~ "Could not export using \"{}\" quality!\n"
  5985. #~ "Felt back to \"{}\"."
  5986. #~ msgstr ""
  5987. #~ "No ha podido exportarse con la calidad \"{}\"\n"
  5988. #~ "Retroceder a \"{}\"."
  5989. #~ msgctxt "@label"
  5990. #~ msgid "Contact"
  5991. #~ msgstr "Contacto"
  5992. #~ msgctxt "@label"
  5993. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5994. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3."
  5995. #~ msgctxt "@label"
  5996. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5997. #~ msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3."
  5998. #~ msgctxt "@label: arg 1 is group name"
  5999. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6000. #~ msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  6001. #~ msgctxt "@label link to connect manager"
  6002. #~ msgid "Add/Remove printers"
  6003. #~ msgstr "Agregar/eliminar impresoras"
  6004. #~ msgctxt "@info:tooltip"
  6005. #~ msgid "Opens the print jobs page with your default web browser."
  6006. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  6007. #~ msgctxt "@action:button"
  6008. #~ msgid "View print jobs"
  6009. #~ msgstr "Ver trabajos de impresión"
  6010. #~ msgctxt "@label:status"
  6011. #~ msgid "Preparing to print"
  6012. #~ msgstr "Preparando para impresión"
  6013. #~ msgctxt "@label:status"
  6014. #~ msgid "Available"
  6015. #~ msgstr "Disponible"
  6016. #~ msgctxt "@label:status"
  6017. #~ msgid "Lost connection with the printer"
  6018. #~ msgstr "Se ha perdido la conexión con la impresora."
  6019. #~ msgctxt "@label:status"
  6020. #~ msgid "Unknown"
  6021. #~ msgstr "Desconocido"
  6022. #~ msgctxt "@label:status"
  6023. #~ msgid "Disabled"
  6024. #~ msgstr "Deshabilitado"
  6025. #~ msgctxt "@label:status"
  6026. #~ msgid "Reserved"
  6027. #~ msgstr "Reservado"
  6028. #~ msgctxt "@label"
  6029. #~ msgid "Preparing to print"
  6030. #~ msgstr "Preparando para impresión"
  6031. #~ msgctxt "@label:status"
  6032. #~ msgid "Print aborted"
  6033. #~ msgstr "Impresión cancelada"
  6034. #~ msgctxt "@label"
  6035. #~ msgid "Not accepting print jobs"
  6036. #~ msgstr "No se aceptan trabajos de impresión"
  6037. #~ msgctxt "@label"
  6038. #~ msgid "Finishes at: "
  6039. #~ msgstr "Termina a las: "
  6040. #~ msgctxt "@label"
  6041. #~ msgid "Clear build plate"
  6042. #~ msgstr "Borrar placa de impresión"
  6043. #~ msgctxt "@label"
  6044. #~ msgid "Waiting for configuration change"
  6045. #~ msgstr "Esperando a que se cambie la configuración"
  6046. #~ msgctxt "@title"
  6047. #~ msgid "Print jobs"
  6048. #~ msgstr "Trabajos de impresión"
  6049. #~ msgctxt "@label:title"
  6050. #~ msgid "Printers"
  6051. #~ msgstr "Impresoras"
  6052. #~ msgctxt "@action:button"
  6053. #~ msgid "View printers"
  6054. #~ msgstr "Ver impresoras"
  6055. #~ msgctxt "@label:"
  6056. #~ msgid "Pause"
  6057. #~ msgstr "Pausar"
  6058. #~ msgctxt "@label:"
  6059. #~ msgid "Resume"
  6060. #~ msgstr "Reanudar"
  6061. #~ msgctxt "@label:"
  6062. #~ msgid "Abort Print"
  6063. #~ msgstr "Cancelar impresión"
  6064. #~ msgctxt "@option:openProject"
  6065. #~ msgid "Always ask"
  6066. #~ msgstr "Preguntar siempre"
  6067. #~ msgctxt "@label"
  6068. #~ msgid "Override Profile"
  6069. #~ msgstr "Anular perfil"
  6070. #~ msgctxt "@info:tooltip"
  6071. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6072. #~ 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)"
  6073. #~ msgctxt "@option:check"
  6074. #~ msgid "Do not arrange objects on load"
  6075. #~ msgstr "No organizar objetos al cargar"
  6076. #~ msgctxt "@action:inmenu menubar:file"
  6077. #~ msgid "&Save Selection to File"
  6078. #~ msgstr "&Guardar selección en archivo"
  6079. #~ msgctxt "@title:menu menubar:file"
  6080. #~ msgid "Save &As..."
  6081. #~ msgstr "Guardar &como..."
  6082. #~ msgctxt "@title:menu menubar:file"
  6083. #~ msgid "Save &Project..."
  6084. #~ msgstr "Guardar &proyecto..."
  6085. # Added after the string freeze.
  6086. #~ msgctxt "@label"
  6087. #~ msgid "Use adhesion sheet or glue with this material combination"
  6088. #~ msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales"
  6089. #~ msgctxt "description"
  6090. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6091. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  6092. #~ msgctxt "name"
  6093. #~ msgid "Doodle3D WiFi-Box"
  6094. #~ msgstr "Enrutador Doodle3D"
  6095. #~ msgctxt "description"
  6096. #~ msgid "Provides an edit window for direct script editing."
  6097. #~ msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos."
  6098. #~ msgctxt "name"
  6099. #~ msgid "Live scripting tool"
  6100. #~ msgstr "Herramienta de secuencia de comandos en directo"
  6101. #~ msgctxt "description"
  6102. #~ msgid "Helps to open Blender files directly in Cura."
  6103. #~ msgstr "Ayuda a abrir archivos de Blender directamente en Cura."
  6104. #~ msgctxt "name"
  6105. #~ msgid "Blender Integration (experimental)"
  6106. #~ msgstr "Integración de Blender (experimental)"
  6107. #~ msgctxt "@info:title"
  6108. #~ msgid "Model Checker Warning"
  6109. #~ msgstr "Advertencia del comprobador de modelos"
  6110. #~ msgctxt "@info:status"
  6111. #~ msgid ""
  6112. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6113. #~ "Tips that may be useful to improve the print quality:\n"
  6114. #~ "1) Use rounded corners.\n"
  6115. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6116. #~ "3) Use a different material."
  6117. #~ msgstr ""
  6118. #~ "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"
  6119. #~ "Consejos para mejorar la calidad de la impresión:\n"
  6120. #~ "1) Utilizar esquinas redondeadas.\n"
  6121. #~ "2) Apagar el ventilador (solo si el modelo no tiene detalles pequeños).\n"
  6122. #~ "3) Utilizar otro material."
  6123. #~ msgctxt "@info:status"
  6124. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6125. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  6126. #~ msgctxt "@info:status"
  6127. #~ msgid ""
  6128. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6129. #~ "\n"
  6130. #~ "Thanks!"
  6131. #~ msgstr ""
  6132. #~ "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"
  6133. #~ "\n"
  6134. #~ "Gracias."
  6135. #~ msgctxt "@info:status"
  6136. #~ msgid ""
  6137. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6138. #~ "\n"
  6139. #~ "Sorry!"
  6140. #~ msgstr ""
  6141. #~ "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"
  6142. #~ "\n"
  6143. #~ "Perdone las molestias."
  6144. #~ msgctxt "@item:inlistbox"
  6145. #~ msgid "SolidWorks part file"
  6146. #~ msgstr "Archivo de elementos de SolidWorks"
  6147. #~ msgctxt "@item:inlistbox"
  6148. #~ msgid "SolidWorks assembly file"
  6149. #~ msgstr "Archivo de ensamblado de SolidWorks"
  6150. #~ msgctxt "@item:inlistbox"
  6151. #~ msgid "SolidWorks drawing file"
  6152. #~ msgstr "Archivo de dibujo de SolidWorks"
  6153. #~ msgctxt "@info:status"
  6154. #~ msgid ""
  6155. #~ "Dear customer,\n"
  6156. #~ "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"
  6157. #~ "\n"
  6158. #~ "With kind regards\n"
  6159. #~ " - Thomas Karl Pietrowski"
  6160. #~ msgstr ""
  6161. #~ "Estimado cliente:\n"
  6162. #~ "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"
  6163. #~ "\n"
  6164. #~ "Atentamente\n"
  6165. #~ " - Thomas Karl Pietrowski"
  6166. #~ msgctxt "@info:status"
  6167. #~ msgid ""
  6168. #~ "Dear customer,\n"
  6169. #~ "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"
  6170. #~ "\n"
  6171. #~ "With kind regards\n"
  6172. #~ " - Thomas Karl Pietrowski"
  6173. #~ msgstr ""
  6174. #~ "Estimado cliente:\n"
  6175. #~ "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"
  6176. #~ "\n"
  6177. #~ "Atentamente\n"
  6178. #~ " - Thomas Karl Pietrowski"
  6179. #~ msgid "Configure"
  6180. #~ msgstr "Configurar"
  6181. #~ msgid "Installation guide for SolidWorks macro"
  6182. #~ msgstr "Guía de instalación para la macro de SolidWorks"
  6183. #~ msgctxt "@action:button"
  6184. #~ msgid "Disable"
  6185. #~ msgstr "Deshabilitar"
  6186. #~ msgctxt "@action:tooltip"
  6187. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6188. #~ msgstr "No permitir a Cura enviar estadísticas de uso de forma anónima. Puede habilitarlo de nuevo en las preferencias."
  6189. #~ msgid "Install"
  6190. #~ msgstr "Instalar"
  6191. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6192. #~ 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."
  6193. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6194. #~ msgstr "El complemento Siemens NX Cura se ha instalado correctamente."
  6195. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6196. #~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR."
  6197. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6198. #~ 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."
  6199. #~ msgctxt "@info:status"
  6200. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6201. #~ msgstr "No se pudo obtener la ID del complemento de <filename>{0}</filename>"
  6202. #~ msgctxt "@info:tile"
  6203. #~ msgid "Warning"
  6204. #~ msgstr "Advertencia"
  6205. #~ msgctxt "@window:title"
  6206. #~ msgid "Plugin browser"
  6207. #~ msgstr "Explorador de complementos"
  6208. #~ msgctxt "@label"
  6209. #~ msgid "Ultimaker 3"
  6210. #~ msgstr "Ultimaker 3"
  6211. #~ msgctxt "@label"
  6212. #~ msgid "Ultimaker 3 Extended"
  6213. #~ msgstr "Ultimaker 3 Extended"
  6214. #~ msgctxt "@title:window"
  6215. #~ msgid "SolidWorks: Export wizard"
  6216. #~ msgstr "SolidWorks: exportar asistente"
  6217. #~ msgctxt "@action:label"
  6218. #~ msgid "Quality:"
  6219. #~ msgstr "Calidad:"
  6220. #~ msgctxt "@option:curaSolidworksStlQuality"
  6221. #~ msgid "Fine (3D-printing)"
  6222. #~ msgstr "Fina (impresión en 3D)"
  6223. #~ msgctxt "@option:curaSolidworksStlQuality"
  6224. #~ msgid "Coarse (3D-printing)"
  6225. #~ msgstr "Gruesa (impresión en 3D)"
  6226. #~ msgctxt "@option:curaSolidworksStlQuality"
  6227. #~ msgid "Fine (SolidWorks)"
  6228. #~ msgstr "Fina (SolidWorks)"
  6229. #~ msgctxt "@option:curaSolidworksStlQuality"
  6230. #~ msgid "Coarse (SolidWorks)"
  6231. #~ msgstr "Gruesa (SolidWorks)"
  6232. #~ msgctxt "@text:window"
  6233. #~ msgid "Show this dialog again"
  6234. #~ msgstr "Mostrar este cuadro de diálogo de nuevo"
  6235. #~ msgctxt "@action:button"
  6236. #~ msgid "Continue"
  6237. #~ msgstr "Continuar"
  6238. #~ msgctxt "@action:button"
  6239. #~ msgid "Abort"
  6240. #~ msgstr "Cancelar"
  6241. #~ msgctxt "@title:window"
  6242. #~ msgid "How to install Cura SolidWorks macro"
  6243. #~ msgstr "Cómo instalar la macro SolidWorks de Cura"
  6244. #~ msgctxt "@description:label"
  6245. #~ msgid "Steps:"
  6246. #~ msgstr "Pasos:"
  6247. #~ msgctxt "@action:button"
  6248. #~ msgid ""
  6249. #~ "Open the directory\n"
  6250. #~ "with macro and icon"
  6251. #~ msgstr ""
  6252. #~ "Abra el directorio\n"
  6253. #~ "con la macro y el icono"
  6254. #~ msgctxt "@description:label"
  6255. #~ msgid "Instructions:"
  6256. #~ msgstr "Instrucciones:"
  6257. #~ msgctxt "@action:playpause"
  6258. #~ msgid "Play"
  6259. #~ msgstr "Reproducir"
  6260. #~ msgctxt "@action:playpause"
  6261. #~ msgid "Pause"
  6262. #~ msgstr "Pausar"
  6263. #~ msgctxt "@action:button"
  6264. #~ msgid "Previous Step"
  6265. #~ msgstr "Paso anterior"
  6266. #~ msgctxt "@action:button"
  6267. #~ msgid "Done"
  6268. #~ msgstr "Realizado"
  6269. #~ msgctxt "@action:button"
  6270. #~ msgid "Next Step"
  6271. #~ msgstr "Paso siguiente"
  6272. #~ msgctxt "@title:window"
  6273. #~ msgid "SolidWorks plugin: Configuration"
  6274. #~ msgstr "Complemento de SolidWorks: configuración"
  6275. #~ msgctxt "@title:tab"
  6276. #~ msgid "Conversion settings"
  6277. #~ msgstr "Ajustes de la conversión"
  6278. #~ msgctxt "@label"
  6279. #~ msgid "First choice:"
  6280. #~ msgstr "Primera opción:"
  6281. #~ msgctxt "@text:menu"
  6282. #~ msgid "Latest installed version (Recommended)"
  6283. #~ msgstr "Última versión instalada (recomendada)"
  6284. #~ msgctxt "@text:menu"
  6285. #~ msgid "Default version"
  6286. #~ msgstr "Versión predeterminada"
  6287. #~ msgctxt "@label"
  6288. #~ msgid "Show wizard before opening SolidWorks files"
  6289. #~ msgstr "Mostrar asistente antes de abrir los archivos de SolidWorks"
  6290. #~ msgctxt "@label"
  6291. #~ msgid "Automatically rotate opened file into normed orientation"
  6292. #~ msgstr "Girar automáticamente el archivo abierto a la orientación normal"
  6293. #~ msgctxt "@title:tab"
  6294. #~ msgid "Installation(s)"
  6295. #~ msgstr "Instalación(es)"
  6296. #~ msgctxt "@label"
  6297. #~ msgid "COM service found"
  6298. #~ msgstr "Servicio COM encontrado"
  6299. #~ msgctxt "@label"
  6300. #~ msgid "Executable found"
  6301. #~ msgstr "Ejecutable encontrado"
  6302. #~ msgctxt "@label"
  6303. #~ msgid "COM starting"
  6304. #~ msgstr "Iniciando COM"
  6305. #~ msgctxt "@label"
  6306. #~ msgid "Revision number"
  6307. #~ msgstr "Número de revisión"
  6308. #~ msgctxt "@label"
  6309. #~ msgid "Functions available"
  6310. #~ msgstr "Funciones disponibles"
  6311. #~ msgctxt "@label (%1 is object name)"
  6312. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6313. #~ msgstr "El nuevo diámetro del material está ajustado en %1 mm y no es compatible con el equipo actual. ¿Desea continuar?"
  6314. #~ msgctxt "@action:menu"
  6315. #~ msgid "Browse plugins..."
  6316. #~ msgstr "Examinar complementos..."
  6317. #~ msgctxt "@title:menu menubar:toplevel"
  6318. #~ msgid "P&lugins"
  6319. #~ msgstr "&Complementos"
  6320. #~ msgctxt "@window:title"
  6321. #~ msgid "Install Plugin"
  6322. #~ msgstr "Instalar complemento"
  6323. #~ msgctxt "description"
  6324. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6325. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  6326. #~ msgctxt "description"
  6327. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6328. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  6329. #~ msgctxt "description"
  6330. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6331. #~ msgstr "Permite abrir determinados archivos con el propio SolidWorks. La conversión se lleva a cabo mediante este complemento y optimizaciones adicionales."
  6332. #~ msgctxt "name"
  6333. #~ msgid "SolidWorks Integration"
  6334. #~ msgstr "Integración con SolidWorks"
  6335. #~ msgctxt "description"
  6336. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6337. #~ msgstr "Guarda automáticamente preferencias, máquinas y perfiles después de los cambios."
  6338. #~ msgctxt "name"
  6339. #~ msgid "Auto Save"
  6340. #~ msgstr "Guardado automático"
  6341. #~ msgctxt "description"
  6342. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6343. #~ msgstr "Ayuda a instalar el botón para exportar a Cura en Siemens NX."
  6344. #~ msgctxt "name"
  6345. #~ msgid "Siemens NX Integration"
  6346. #~ msgstr "Siemens NX Integration"
  6347. #~ msgctxt "description"
  6348. #~ msgid "Find, manage and install new plugins."
  6349. #~ msgstr "Busca, administra e instala nuevos complementos."
  6350. #~ msgctxt "name"
  6351. #~ msgid "Plugin Browser"
  6352. #~ msgstr "Explorador de complementos"
  6353. #~ msgctxt "description"
  6354. #~ msgid "Ask the user once if he/she agrees with our license"
  6355. #~ msgstr "Preguntar al usuario una vez si acepta la licencia"
  6356. #~ msgctxt "description"
  6357. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6358. #~ 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.)."
  6359. #~ msgctxt "@item:inlistbox"
  6360. #~ msgid "GCode File"
  6361. #~ msgstr "Archivo GCode"
  6362. #~ msgctxt "@info:status"
  6363. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6364. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora está ocupada o no está conectada."
  6365. #~ msgctxt "@info:title"
  6366. #~ msgid "Printer Unavailable"
  6367. #~ msgstr "Impresora no disponible"
  6368. #~ msgctxt "@info:status"
  6369. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6370. #~ msgstr "Esta impresora no es compatible con la impresión USB porque utiliza el tipo UltiGCode."
  6371. #~ msgctxt "@info:title"
  6372. #~ msgid "USB Printing"
  6373. #~ msgstr "Impresión USB"
  6374. #~ msgctxt "@info:status"
  6375. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6376. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora no es compatible con la impresión USB."
  6377. #~ msgctxt "@info"
  6378. #~ msgid "Unable to update firmware because there are no printers connected."
  6379. #~ msgstr "No se puede actualizar el firmware porque no hay impresoras conectadas."
  6380. #~ msgctxt "@info"
  6381. #~ msgid "Could not find firmware required for the printer at %s."
  6382. #~ msgstr "No se pudo encontrar el firmware necesario para la impresora en %s."
  6383. #~ msgctxt "@info:title"
  6384. #~ msgid "Printer Firmware"
  6385. #~ msgstr "Firmware de la impresora"
  6386. #~ msgctxt "@info:title"
  6387. #~ msgid "Connection status"
  6388. #~ msgstr "Estado de la conexión"
  6389. #~ msgctxt "@info:title"
  6390. #~ msgid "Connection Status"
  6391. #~ msgstr "Estado de la conexión"
  6392. #~ msgctxt "@info:status"
  6393. #~ msgid "Access request was denied on the printer."
  6394. #~ msgstr "Solicitud de acceso denegada en la impresora."
  6395. #~ msgctxt "@info:status"
  6396. #~ msgid "Access request failed due to a timeout."
  6397. #~ msgstr "Se ha producido un error al solicitar acceso porque se ha agotado el tiempo de espera."
  6398. #~ msgctxt "@info:status"
  6399. #~ msgid "The connection with the network was lost."
  6400. #~ msgstr "Se ha perdido la conexión de red."
  6401. #~ msgctxt "@info:status"
  6402. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6403. #~ msgstr "Se ha perdido la conexión con la impresora. Compruebe que la impresora está conectada."
  6404. #~ msgctxt "@info:status"
  6405. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6406. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión, la impresora está ocupada. El estado actual de la impresora es %s."
  6407. #~ msgctxt "@info:title"
  6408. #~ msgid "Printer Status"
  6409. #~ msgstr "Estado de la impresora"
  6410. #~ msgctxt "@info:status"
  6411. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6412. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  6413. #~ msgctxt "@info:status"
  6414. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6415. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado material en la ranura {0}."
  6416. #~ msgctxt "@label"
  6417. #~ msgid "Not enough material for spool {0}."
  6418. #~ msgstr "No hay suficiente material para la bobina {0}."
  6419. #~ msgctxt "@label"
  6420. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6421. #~ msgstr "PrintCore distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  6422. #~ msgctxt "@label"
  6423. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6424. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  6425. #~ msgctxt "@info:status"
  6426. #~ msgid "Unable to send data to printer. Is another job still active?"
  6427. #~ msgstr "No se puede enviar datos a la impresora. ¿Hay otro trabajo que todavía esté activo?"
  6428. #~ msgctxt "@label:MonitorStatus"
  6429. #~ msgid "Print aborted. Please check the printer"
  6430. #~ msgstr "Impresión cancelada. Compruebe la impresora."
  6431. #~ msgctxt "@label:MonitorStatus"
  6432. #~ msgid "Pausing print..."
  6433. #~ msgstr "Pausando impresión..."
  6434. #~ msgctxt "@label:MonitorStatus"
  6435. #~ msgid "Resuming print..."
  6436. #~ msgstr "Reanudando impresión..."
  6437. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6438. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3."
  6439. #~ msgctxt "Count is number of printers."
  6440. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6441. #~ msgstr "La impresora aloja un grupo de {count} impresoras conectadas de Ultimaker 3."
  6442. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6443. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}». Recoja el impreso y confirme que ha borrado la placa de impresión."
  6444. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6445. #~ 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."
  6446. #~ msgctxt "@info:status"
  6447. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6448. #~ 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."
  6449. #~ msgctxt "@info:status"
  6450. #~ msgid "Unable to send print job to group {cluster_name}."
  6451. #~ msgstr "No se puede enviar el trabajo de impresión al grupo {cluster_name}."
  6452. #~ msgctxt "@info:status"
  6453. #~ msgid "Sent {file_name} to group {cluster_name}."
  6454. #~ msgstr "Enviar {file_name} al grupo {cluster_name}."
  6455. #~ msgctxt "@action:button"
  6456. #~ msgid "Show print jobs"
  6457. #~ msgstr "Mostrar trabajos de impresión"
  6458. #~ msgctxt "@info:tooltip"
  6459. #~ msgid "Opens the print jobs interface in your browser."
  6460. #~ msgstr "Abre la interfaz de trabajos de impresión en el navegador."
  6461. #~ msgctxt "@label Printer name"
  6462. #~ msgid "Unknown"
  6463. #~ msgstr "Desconocido"
  6464. #~ msgctxt "@info:progress"
  6465. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6466. #~ msgstr "Enviando <filename>{file_name}</filename> al grupo {cluster_name}"
  6467. #~ msgctxt "@info:status"
  6468. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6469. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  6470. #~ msgctxt "@info:status"
  6471. #~ msgid ""
  6472. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6473. #~ "\n"
  6474. #~ " Thanks!."
  6475. #~ msgstr ""
  6476. #~ "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"
  6477. #~ "\n"
  6478. #~ " Gracias."
  6479. #~ msgctxt "@info:status"
  6480. #~ msgid ""
  6481. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6482. #~ "\n"
  6483. #~ "Sorry!"
  6484. #~ msgstr ""
  6485. #~ "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"
  6486. #~ "\n"
  6487. #~ " Disculpe."
  6488. #~ msgctxt "@item:material"
  6489. #~ msgid "No material loaded"
  6490. #~ msgstr "No se ha cargado material."
  6491. #~ msgctxt "@item:material"
  6492. #~ msgid "Unknown material"
  6493. #~ msgstr "Material desconocido"
  6494. #~ msgctxt "@info:status Has a cancel button next to it."
  6495. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6496. #~ msgstr "El diámetro del material seleccionado hace que el material sea incompatible con la impresora actual."
  6497. #~ msgctxt "@action:button"
  6498. #~ msgid "Undo"
  6499. #~ msgstr "Deshacer"
  6500. #~ msgctxt "@action"
  6501. #~ msgid "Undo changing the material diameter."
  6502. #~ msgstr "Deshacer cambio del diámetro del material."
  6503. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6504. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6505. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> no coincide con su equipo actual, no se ha podido importar."
  6506. #~ msgctxt "@label crash message"
  6507. #~ msgid ""
  6508. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6509. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6510. #~ " "
  6511. #~ msgstr ""
  6512. #~ "<p><b>Se ha producido un error grave. Envíenos este informe de incidencias para que podamos solucionar el problema.</p></b>\n"
  6513. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  6514. #~ " "
  6515. #~ msgctxt "@label"
  6516. #~ msgid "not yet initialised<br/>"
  6517. #~ msgstr "aún no se ha inicializado<br/>"
  6518. #~ msgctxt "@label"
  6519. #~ msgid "Gcode flavor"
  6520. #~ msgstr "Tipo de Gcode"
  6521. #~ msgctxt "@label"
  6522. #~ msgid "Start Gcode"
  6523. #~ msgstr "Iniciar GCode"
  6524. #~ msgctxt "@tooltip"
  6525. #~ msgid "Gcode commands to be executed at the very start."
  6526. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al inicio."
  6527. #~ msgctxt "@label"
  6528. #~ msgid "End Gcode"
  6529. #~ msgstr "Finalizar GCode"
  6530. #~ msgctxt "@tooltip"
  6531. #~ msgid "Gcode commands to be executed at the very end."
  6532. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al final."
  6533. #~ msgctxt "@label"
  6534. #~ msgid "Extruder Start Gcode"
  6535. #~ msgstr "GCode inicial del extrusor"
  6536. #~ msgctxt "@label"
  6537. #~ msgid "Extruder End Gcode"
  6538. #~ msgstr "GCode final del extrusor"
  6539. #~ msgctxt "@label"
  6540. #~ msgid "Starting firmware update, this may take a while."
  6541. #~ msgstr "Comenzando la actualización del firmware, esto puede tardar algún tiempo."
  6542. #~ msgctxt "@label"
  6543. #~ msgid "Unknown error code: %1"
  6544. #~ msgstr "Código de error desconocido: %1"
  6545. #~ msgctxt "@label Printer name"
  6546. #~ msgid "Ultimaker 3"
  6547. #~ msgstr "Ultimaker 3"
  6548. #~ msgctxt "@label Printer name"
  6549. #~ msgid "Ultimaker 3 Extended"
  6550. #~ msgstr "Ultimaker 3 Extended"
  6551. #~ msgctxt "@label Printer status"
  6552. #~ msgid "Unknown"
  6553. #~ msgstr "Desconocido"
  6554. #~ msgctxt "@title:window"
  6555. #~ msgid "Find & Update plugins"
  6556. #~ msgstr "Buscar y actualizar complementos"
  6557. #~ msgctxt "@label"
  6558. #~ msgid "Here you can find a list of Third Party plugins."
  6559. #~ msgstr "Puede ver aquí una lista de complementos de terceros."
  6560. #~ msgctxt "@action:button"
  6561. #~ msgid "Upgrade"
  6562. #~ msgstr "Actualización"
  6563. #~ msgctxt "@action:button"
  6564. #~ msgid "Download"
  6565. #~ msgstr "Descargar"
  6566. #~ msgctxt "@info:tooltip"
  6567. #~ msgid "Show caution message in gcode reader."
  6568. #~ msgstr "Mostrar mensaje de advertencia en el lector de GCode."
  6569. #~ msgctxt "@option:check"
  6570. #~ msgid "Caution message in gcode reader"
  6571. #~ msgstr "Mensaje de advertencia en el lector de GCode"
  6572. #~ msgctxt "@window:title"
  6573. #~ msgid "Import Profile"
  6574. #~ msgstr "Importar perfil"
  6575. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6576. #~ msgid "Printer: %1, %2: %3"
  6577. #~ msgstr "Impresora: %1, %2: %3"
  6578. #~ msgctxt "@action:label %1 is printer name"
  6579. #~ msgid "Printer: %1"
  6580. #~ msgstr "Impresora: %1"
  6581. #~ msgctxt "@label"
  6582. #~ msgid "GCode generator"
  6583. #~ msgstr "Generador de GCode"
  6584. #~ msgctxt "@action:menu"
  6585. #~ msgid "Configure setting visiblity..."
  6586. #~ msgstr "Configurar la visibilidad de los ajustes..."
  6587. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6588. #~ msgid "Automatic: %1"
  6589. #~ msgstr "Automático: %1"
  6590. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6591. #~ msgid "Automatic: %1"
  6592. #~ msgstr "Automático: %1"
  6593. #~ msgctxt "@info:status"
  6594. #~ msgid "No printer connected"
  6595. #~ msgstr "No hay ninguna impresora conectada"
  6596. #~ msgctxt "@tooltip"
  6597. #~ msgid "The current temperature of this extruder."
  6598. #~ msgstr "Temperatura actual de este extrusor."
  6599. #~ msgctxt "@action:menu"
  6600. #~ msgid "Installed plugins..."
  6601. #~ msgstr "Complementos instalados..."
  6602. #~ msgctxt "@label"
  6603. #~ msgid "Support Extruder"
  6604. #~ msgstr "Extrusor del soporte"
  6605. #~ msgctxt "description"
  6606. #~ msgid "Writes GCode to a file."
  6607. #~ msgstr "Escribe Gcode en un archivo."
  6608. #~ msgctxt "name"
  6609. #~ msgid "GCode Writer"
  6610. #~ msgstr "Escritor de Gcode"
  6611. #~ msgctxt "name"
  6612. #~ msgid "GCode Profile Reader"
  6613. #~ msgstr "Lector de perfiles Gcode"
  6614. #~ msgctxt "@info:status"
  6615. #~ 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!"
  6616. #~ msgstr "Se han producido varios errores al abrir el archivo de SolidWorks. Compruebe que el archivo se puede abrir correctamente en SolidWorks."
  6617. #~ msgctxt "@info:status"
  6618. #~ msgid "Error while starting %s!"
  6619. #~ msgstr "Error al iniciar %s"
  6620. #~ msgctxt "@item:inlistbox"
  6621. #~ msgid "Simulation view"
  6622. #~ msgstr "Vista de simulación"
  6623. #~ msgctxt "@info"
  6624. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6625. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  6626. #~ msgctxt "@action:button"
  6627. #~ msgid "Dismiss"
  6628. #~ msgstr "Descartar"
  6629. #~ msgctxt "@menuitem"
  6630. #~ msgid "Global"
  6631. #~ msgstr "Global"
  6632. #~ msgctxt "@label crash message"
  6633. #~ msgid ""
  6634. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6635. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6636. #~ " "
  6637. #~ msgstr ""
  6638. #~ "<p><b>Se ha producido una excepción fatal. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>\n"
  6639. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  6640. #~ " "
  6641. #~ msgctxt "@label Cura version"
  6642. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6643. #~ msgstr "<b>Versión de Cura:</b> {version}<br/>"
  6644. #~ msgctxt "@label Platform"
  6645. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6646. #~ msgstr "<b>Platforma:</b> {platform}<br/>"
  6647. #~ msgctxt "@label Qt version"
  6648. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6649. #~ msgstr "<b>Versión de Qt:</b> {qt}<br/>"
  6650. #~ msgctxt "@label PyQt version"
  6651. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6652. #~ msgstr "<b>Versión de PyQt:</b> {pyqt}<br/>"
  6653. #~ msgctxt "@label OpenGL"
  6654. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6655. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6656. #~ msgctxt "@title:groupbox"
  6657. #~ msgid "Exception traceback"
  6658. #~ msgstr "Rastreabilidad de excepciones"
  6659. #~ msgctxt "@label"
  6660. #~ msgid "Material diameter"
  6661. #~ msgstr "Diámetro del material"
  6662. #~ msgctxt "@title:window"
  6663. #~ msgid "Cura SolidWorks Plugin Configuration"
  6664. #~ msgstr "Configuración de complementos Cura SolidWorks"
  6665. #~ msgctxt "@action:label"
  6666. #~ msgid "Default quality of the exported STL:"
  6667. #~ msgstr "Calidad predeterminada del STL exportado:"
  6668. #~ msgctxt "@option:curaSolidworksStlQuality"
  6669. #~ msgid "Always ask"
  6670. #~ msgstr "Preguntar siempre"
  6671. #~ msgctxt "@option:curaSolidworksStlQuality"
  6672. #~ msgid "Always use Fine quality"
  6673. #~ msgstr "Usar siempre calidad fina"
  6674. #~ msgctxt "@option:curaSolidworksStlQuality"
  6675. #~ msgid "Always use Coarse quality"
  6676. #~ msgstr "Usar siempre calidad gruesa"
  6677. #~ msgctxt "@title:window"
  6678. #~ msgid "Import SolidWorks File as STL..."
  6679. #~ msgstr "Importar el archivo SolidWorks como STL..."
  6680. #~ msgctxt "@info:tooltip"
  6681. #~ msgid "Quality of the Exported STL"
  6682. #~ msgstr "Calidad del STL exportado"
  6683. #~ msgctxt "@action:label"
  6684. #~ msgid "Quality"
  6685. #~ msgstr "Calidad"
  6686. #~ msgctxt "@option:curaSolidworksStlQuality"
  6687. #~ msgid "Coarse"
  6688. #~ msgstr "Gruesa"
  6689. #~ msgctxt "@option:curaSolidworksStlQuality"
  6690. #~ msgid "Fine"
  6691. #~ msgstr "Fina"
  6692. #~ msgctxt "@"
  6693. #~ msgid "No Profile Available"
  6694. #~ msgstr "No hay perfiles disponibles."
  6695. #~ msgctxt "@label"
  6696. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6697. #~ msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  6698. #~ msgctxt "@tooltip"
  6699. #~ msgid "<b>Time specification</b><br/><table>"
  6700. #~ msgstr "<b>Especificación de tiempo</b><br/><table>"
  6701. #~ msgctxt "@action:inmenu menubar:view"
  6702. #~ msgid "&Reset camera position"
  6703. #~ msgstr "&Restablecer posición de la cámara"
  6704. #~ msgctxt "@title:menu menubar:file"
  6705. #~ msgid "Save project"
  6706. #~ msgstr "Guardar proyecto"
  6707. #~ msgctxt "@title:tab"
  6708. #~ msgid "Prepare"
  6709. #~ msgstr "Preparar"
  6710. #~ msgctxt "@title:tab"
  6711. #~ msgid "Monitor"
  6712. #~ msgstr "Supervisar"
  6713. #~ msgctxt "@label"
  6714. #~ msgid "<a href='%1'>Check compatibility</a>"
  6715. #~ msgstr "<a href='%1'>Comprobar compatibilidad</a>"
  6716. #~ msgctxt "description"
  6717. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6718. #~ msgstr "Permite abrir ciertos archivos con el propio SolidWorks que, a continuación, puede convertirse y cargarse en Cura."
  6719. #~ msgctxt "@label:status"
  6720. #~ msgid "Blocked"
  6721. #~ msgstr "Deshabilitada"
  6722. #~ msgctxt "@label:status"
  6723. #~ msgid "Can't start print"
  6724. #~ msgstr "No se puede imprimir"
  6725. #~ msgctxt "@action:button"
  6726. #~ msgid "Open Connect.."
  6727. #~ msgstr "Abrir Connect"
  6728. #~ msgctxt "@info:title"
  6729. #~ msgid "Print Details"
  6730. #~ msgstr "Datos de impresión"
  6731. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6732. #~ 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."
  6733. #~ 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."
  6734. #~ msgctxt "@info:title"
  6735. #~ msgid "Layer View"
  6736. #~ msgstr "Vista de capas"
  6737. #~ msgctxt "@menuitem"
  6738. #~ msgid "Browse plugins"
  6739. #~ msgstr "Examinar complementos"
  6740. #~ msgctxt "@info:title"
  6741. #~ msgid "Export Details"
  6742. #~ msgstr "Datos de exportación"
  6743. #~ msgctxt "@label"
  6744. #~ msgid ""
  6745. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6746. #~ " <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"
  6747. #~ " "
  6748. #~ msgstr ""
  6749. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  6750. #~ " <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"
  6751. #~ " "
  6752. #~ msgctxt "@action:button"
  6753. #~ msgid "Open Web Page"
  6754. #~ msgstr "Abrir página web"
  6755. #~ msgctxt "@action:button"
  6756. #~ msgid "Ok"
  6757. #~ msgstr "Aceptar"
  6758. #~ msgctxt "@label"
  6759. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6760. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  6761. #~ msgctxt "@label"
  6762. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6763. #~ msgstr "La impresora aloja un grupo de %1 impresoras conectadas de Ultimaker 3"
  6764. #~ msgctxt "@label"
  6765. #~ msgid "Completed on: "
  6766. #~ msgstr "Completado el: "
  6767. #~ msgctxt "@info:tooltip"
  6768. #~ msgid "Opens the print jobs page with your default web browser."
  6769. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  6770. #~ msgctxt "@label"
  6771. #~ msgid "PRINTER GROUP"
  6772. #~ msgstr "GRUPO DE IMPRESORAS"
  6773. #~ msgctxt "@action:warning"
  6774. #~ msgid "Loading a project will clear all models on the buildplate"
  6775. #~ msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  6776. #~ msgctxt "@label"
  6777. #~ msgid ""
  6778. #~ " plugin contains a license.\n"
  6779. #~ "You need to accept this license to install this plugin.\n"
  6780. #~ "Do you agree with the terms below?"
  6781. #~ msgstr ""
  6782. #~ " El complemento incluye una licencia.\n"
  6783. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  6784. #~ "¿Acepta las siguientes condiciones?"
  6785. #~ msgctxt "@label"
  6786. #~ msgid "00h 00min"
  6787. #~ msgstr "00h 00min"
  6788. #~ msgctxt "@tooltip"
  6789. #~ msgid "<b>Time information</b>"
  6790. #~ msgstr "<b>Información sobre el tiempo</b>"
  6791. #~ msgctxt "@description"
  6792. #~ msgid "Print time"
  6793. #~ msgstr "Tiempo de impresión"
  6794. #~ msgctxt "@label"
  6795. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6796. #~ msgstr "%1m / ~ %2g/ ~ %4 %3"
  6797. #~ msgctxt "@label"
  6798. #~ msgid "%1m / ~ %2g"
  6799. #~ msgstr "%1m / ~ %2g"
  6800. #~ msgctxt "@title:window"
  6801. #~ msgid "Cura"
  6802. #~ msgstr "Cura"
  6803. #~ msgctxt "@label"
  6804. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6805. #~ msgstr "<a href='%1'>Comprobar la compatibilidad de los materiales</a>"
  6806. #~ msgctxt "name"
  6807. #~ msgid "UM3 Network Connection (Cluster)"
  6808. #~ msgstr "Conexión de red UM3 (grupo)"
  6809. #~ msgctxt "description"
  6810. #~ msgid "Provides the Layer view."
  6811. #~ msgstr "Proporciona la vista de capas."
  6812. #~ msgctxt "name"
  6813. #~ msgid "Layer View"
  6814. #~ msgstr "Vista de capas"
  6815. #~ msgctxt "@item:inlistbox"
  6816. #~ msgid "X-Ray"
  6817. #~ msgstr "Rayos X"
  6818. #~ msgctxt "@label"
  6819. #~ msgid "Doodle3D"
  6820. #~ msgstr "Doodle3D"
  6821. #~ msgctxt "@info:whatsthis"
  6822. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6823. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  6824. #~ msgctxt "@item:inmenu"
  6825. #~ msgid "Doodle3D printing"
  6826. #~ msgstr "Impresión Doodle3D"
  6827. #~ msgctxt "@action:button"
  6828. #~ msgid "Print with Doodle3D"
  6829. #~ msgstr "Imprimir con Doodle3D"
  6830. #~ msgctxt "@info:tooltip"
  6831. #~ msgid "Print with "
  6832. #~ msgstr "Imprimir con"
  6833. #~ msgctxt "@title:menu"
  6834. #~ msgid "Doodle3D"
  6835. #~ msgstr "Doodle3D"
  6836. #~ msgctxt "@item:inlistbox"
  6837. #~ msgid "Enable Scan devices..."
  6838. #~ msgstr "Habilitar dispositivos de digitalización..."
  6839. #~ msgctxt "@info:progress"
  6840. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6841. #~ msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  6842. #~ msgctxt "@info:status"
  6843. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6844. #~ msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  6845. #~ msgctxt "@info:status"
  6846. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6847. #~ msgstr "Tenga en cuenta que tiene que volver a abrir el archivo SolidWorks manualmente. Volver a cargar el modelo no funciona."
  6848. #~ msgctxt "@item:inlistbox"
  6849. #~ msgid "Layers"
  6850. #~ msgstr "Capas"
  6851. #~ msgid "Browse plugins"
  6852. #~ msgstr "Examinar complementos"
  6853. #~ msgctxt "@item:inmenu"
  6854. #~ msgid "Solid"
  6855. #~ msgstr "Sólido"
  6856. #~ msgctxt "@label"
  6857. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6858. #~ msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  6859. #~ msgctxt "@info:status"
  6860. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6861. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  6862. #~ msgctxt "@info:status"
  6863. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6864. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  6865. #~ msgctxt "@info:status"
  6866. #~ msgid "Exported profile to <filename>{0}</filename>"
  6867. #~ msgstr "Perfil exportado a <filename>{0}</filename>"
  6868. #~ msgctxt "@info:status"
  6869. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6870. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  6871. #~ msgctxt "@title:window"
  6872. #~ msgid "Doodle3D Settings"
  6873. #~ msgstr "Ajustes de Doodle3D"
  6874. #~ msgctxt "@title:window"
  6875. #~ msgid "Print to: %1"
  6876. #~ msgstr "Imprimir en: %1"
  6877. #~ msgctxt "@label"
  6878. #~ msgid "Extruder Temperature: %1/%2°C"
  6879. #~ msgstr "Temperatura del extrusor: %1/%2 °C"
  6880. #~ msgctxt "@label"
  6881. #~ msgid "Bed Temperature: %1/%2°C"
  6882. #~ msgstr "Temperatura de la plataforma: %1/%2 °C"
  6883. #~ msgctxt "@label"
  6884. #~ msgid "%1"
  6885. #~ msgstr "%1"
  6886. #~ msgctxt "@label"
  6887. #~ msgid "View Mode: Layers"
  6888. #~ msgstr "Ver modo: Capas"
  6889. #~ msgctxt "@info:status"
  6890. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6891. #~ msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>."
  6892. #~ msgctxt "@info:status"
  6893. #~ msgid "Successfully imported material <filename>%1</filename>"
  6894. #~ msgstr "El material se ha importado correctamente en <filename>%1</filename>."
  6895. #~ msgctxt "@info:status"
  6896. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6897. #~ msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>."
  6898. #~ msgctxt "@info:status"
  6899. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6900. #~ msgstr "El material se ha exportado correctamente a <filename>%1</filename>."
  6901. #~ msgctxt "@label"
  6902. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6903. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6904. #~ msgctxt "@label"
  6905. #~ msgid "%1 m / ~ %2 g"
  6906. #~ msgstr "%1 m/~ %2 g"
  6907. #~ msgctxt "@label"
  6908. #~ msgid "Hotend"
  6909. #~ msgstr "Extremo caliente"
  6910. #~ msgctxt "@action:button"
  6911. #~ msgid "View Mode"
  6912. #~ msgstr "Ver modo"
  6913. #~ msgctxt "@title:tab"
  6914. #~ msgid "Print"
  6915. #~ msgstr "Imprimir"
  6916. #~ msgctxt "@label"
  6917. #~ msgid "0%"
  6918. #~ msgstr "0 %"
  6919. #~ msgctxt "@label"
  6920. #~ msgid "Empty infill will leave your model hollow with low strength."
  6921. #~ msgstr "Un relleno vacío dejará hueco el modelo con baja resistencia."
  6922. #~ msgctxt "@label"
  6923. #~ msgid "20%"
  6924. #~ msgstr "20 %"
  6925. #~ msgctxt "@label"
  6926. #~ msgid "Light (20%) infill will give your model an average strength."
  6927. #~ msgstr "Un relleno ligero (20 %) dará al modelo una resistencia media."
  6928. #~ msgctxt "@label"
  6929. #~ msgid "50%"
  6930. #~ msgstr "50 %"
  6931. #~ msgctxt "@label"
  6932. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6933. #~ msgstr "Un relleno denso (50 %) dará al modelo una resistencia por encima de la media."
  6934. #~ msgctxt "@label"
  6935. #~ msgid "100%"
  6936. #~ msgstr "100 %"
  6937. #~ msgctxt "@label"
  6938. #~ msgid "Solid (100%) infill will make your model completely solid."
  6939. #~ msgstr "Un relleno sólido (100 %) hará que el modelo sea completamente macizo."
  6940. #~ msgctxt "@label"
  6941. #~ msgid "Gradual"
  6942. #~ msgstr "Gradual"
  6943. #~ msgctxt "description"
  6944. #~ msgid "Provides support for writing X3G files"
  6945. #~ msgstr "Proporciona asistencia para escribir archivos X3G."
  6946. #~ msgctxt "name"
  6947. #~ msgid "X3G Writer"
  6948. #~ msgstr "Escritor de X3G"
  6949. #~ msgctxt "@label"
  6950. #~ msgid "Machine Settings action"
  6951. #~ msgstr "Acción Ajustes de la máquina"
  6952. #~ msgctxt "@info:whatsthis"
  6953. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6954. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  6955. #~ msgctxt "@label"
  6956. #~ msgid "X-Ray View"
  6957. #~ msgstr "Vista de rayos X"
  6958. #~ msgctxt "@info:whatsthis"
  6959. #~ msgid "Provides the X-Ray view."
  6960. #~ msgstr "Proporciona la vista de rayos X."
  6961. #~ msgctxt "@label"
  6962. #~ msgid "X3D Reader"
  6963. #~ msgstr "Lector de X3D"
  6964. #~ msgctxt "@info:whatsthis"
  6965. #~ msgid "Provides support for reading X3D files."
  6966. #~ msgstr "Proporciona asistencia para leer archivos X3D."
  6967. #~ msgctxt "@label"
  6968. #~ msgid "GCode Writer"
  6969. #~ msgstr "Escritor de GCode"
  6970. #~ msgctxt "@info:whatsthis"
  6971. #~ msgid "Writes GCode to a file."
  6972. #~ msgstr "Escribe GCode en un archivo."
  6973. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6974. #~ msgid "Print with Doodle3D"
  6975. #~ msgstr "Imprimir con Doodle3D"
  6976. #~ msgctxt "@info:whatsthis"
  6977. #~ msgid "Shows changes since latest checked version."
  6978. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  6979. #~ msgctxt "@label"
  6980. #~ msgid "Profile flatener"
  6981. #~ msgstr "Aplanador de perfil"
  6982. #~ msgctxt "@info:whatsthis"
  6983. #~ msgid "Create a flattend quality changes profile."
  6984. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  6985. #~ msgctxt "@label"
  6986. #~ msgid "USB printing"
  6987. #~ msgstr "Impresión USB"
  6988. #~ msgctxt "@info:whatsthis"
  6989. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6990. #~ msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  6991. #~ msgctxt "X3G Writer Plugin Description"
  6992. #~ msgid "Writes X3G to a file"
  6993. #~ msgstr "Escribe X3G en un archivo."
  6994. #~ msgctxt "@label"
  6995. #~ msgid "Removable Drive Output Device Plugin"
  6996. #~ msgstr "Complemento de dispositivo de salida de unidad extraíble"
  6997. #~ msgctxt "@info:whatsthis"
  6998. #~ msgid "Provides removable drive hotplugging and writing support."
  6999. #~ msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  7000. #~ msgctxt "@info:whatsthis"
  7001. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7002. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  7003. #~ msgctxt "@label"
  7004. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7005. #~ msgstr "Print core distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  7006. #~ msgctxt "@label"
  7007. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7008. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  7009. #~ msgctxt "@label"
  7010. #~ 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."
  7011. #~ 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."
  7012. #~ msgctxt "@label"
  7013. #~ msgid "Post Processing"
  7014. #~ msgstr "Posprocesamiento"
  7015. #~ msgctxt "Description of plugin"
  7016. #~ msgid "Extension that allows for user created scripts for post processing"
  7017. #~ msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios."
  7018. #~ msgctxt "@label"
  7019. #~ msgid "Auto Save"
  7020. #~ msgstr "Guardado automático"
  7021. #~ msgctxt "@info:whatsthis"
  7022. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7023. #~ msgstr "Guarda automáticamente Preferencias, Máquinas y Perfiles después de los cambios."
  7024. #~ msgctxt "@label"
  7025. #~ msgid "Slice info"
  7026. #~ msgstr "Info de la segmentación"
  7027. #~ msgctxt "@info:whatsthis"
  7028. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7029. #~ msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  7030. #~ msgctxt "@info"
  7031. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7032. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  7033. #~ msgctxt "@label"
  7034. #~ msgid "Material Profiles"
  7035. #~ msgstr "Perfiles de material"
  7036. #~ msgctxt "@info:whatsthis"
  7037. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7038. #~ msgstr "Permite leer y escribir perfiles de material basados en XML."
  7039. #~ msgctxt "@label"
  7040. #~ msgid "Legacy Cura Profile Reader"
  7041. #~ msgstr "Lector de perfiles antiguos de Cura"
  7042. #~ msgctxt "@info:whatsthis"
  7043. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7044. #~ msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  7045. #~ msgctxt "@label"
  7046. #~ msgid "GCode Profile Reader"
  7047. #~ msgstr "Lector de perfiles GCode"
  7048. #~ msgctxt "@info:whatsthis"
  7049. #~ msgid "Provides support for importing profiles from g-code files."
  7050. #~ msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  7051. #~ msgctxt "@label"
  7052. #~ msgid "Layer View"
  7053. #~ msgstr "Vista de capas"
  7054. #~ msgctxt "@info:whatsthis"
  7055. #~ msgid "Provides the Layer view."
  7056. #~ msgstr "Proporciona la vista de capas."
  7057. #~ msgctxt "@label"
  7058. #~ msgid "Version Upgrade 2.5 to 2.6"
  7059. #~ msgstr "Actualización de la versión 2.5 a la 2.6"
  7060. #~ msgctxt "@info:whatsthis"
  7061. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7062. #~ msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  7063. #~ msgctxt "@label"
  7064. #~ msgid "Version Upgrade 2.1 to 2.2"
  7065. #~ msgstr "Actualización de la versión 2.1 a la 2.2"
  7066. #~ msgctxt "@info:whatsthis"
  7067. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7068. #~ msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  7069. #~ msgctxt "@label"
  7070. #~ msgid "Version Upgrade 2.2 to 2.4"
  7071. #~ msgstr "Actualización de la versión 2.2 a la 2.4"
  7072. #~ msgctxt "@info:whatsthis"
  7073. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7074. #~ msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  7075. #~ msgctxt "@label"
  7076. #~ msgid "Image Reader"
  7077. #~ msgstr "Lector de imágenes"
  7078. #~ msgctxt "@info:whatsthis"
  7079. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7080. #~ msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  7081. #~ msgctxt "@label"
  7082. #~ msgid "CuraEngine Backend"
  7083. #~ msgstr "Backend de CuraEngine"
  7084. #~ msgctxt "@info:whatsthis"
  7085. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7086. #~ msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  7087. #~ msgctxt "@label"
  7088. #~ msgid "Per Model Settings Tool"
  7089. #~ msgstr "Herramienta de ajustes por modelo"
  7090. #~ msgctxt "@info:whatsthis"
  7091. #~ msgid "Provides the Per Model Settings."
  7092. #~ msgstr "Proporciona los ajustes por modelo."
  7093. #~ msgctxt "@label"
  7094. #~ msgid "3MF Reader"
  7095. #~ msgstr "Lector de 3MF"
  7096. #~ msgctxt "@info:whatsthis"
  7097. #~ msgid "Provides support for reading 3MF files."
  7098. #~ msgstr "Proporciona asistencia para leer archivos 3MF."
  7099. #~ msgctxt "@label"
  7100. #~ msgid "Solid View"
  7101. #~ msgstr "Vista de sólidos"
  7102. #~ msgctxt "@info:whatsthis"
  7103. #~ msgid "Provides a normal solid mesh view."
  7104. #~ msgstr "Proporciona una vista de malla sólida normal."
  7105. #~ msgctxt "@label"
  7106. #~ msgid "G-code Reader"
  7107. #~ msgstr "Lector de GCode"
  7108. #~ msgctxt "@info:whatsthis"
  7109. #~ msgid "Allows loading and displaying G-code files."
  7110. #~ msgstr "Permite cargar y visualizar archivos GCode."
  7111. #~ msgctxt "@label"
  7112. #~ msgid "Cura Profile Writer"
  7113. #~ msgstr "Escritor de perfiles de Cura"
  7114. #~ msgctxt "@info:whatsthis"
  7115. #~ msgid "Provides support for exporting Cura profiles."
  7116. #~ msgstr "Proporciona asistencia para exportar perfiles de Cura."
  7117. #~ msgctxt "@label"
  7118. #~ msgid "3MF Writer"
  7119. #~ msgstr "Escritor de 3MF"
  7120. #~ msgctxt "@info:whatsthis"
  7121. #~ msgid "Provides support for writing 3MF files."
  7122. #~ msgstr "Proporciona asistencia para escribir archivos 3MF."
  7123. #~ msgctxt "@label"
  7124. #~ msgid "Ultimaker machine actions"
  7125. #~ msgstr "Acciones de la máquina Ultimaker"
  7126. #~ msgctxt "@info:whatsthis"
  7127. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7128. #~ 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.)."
  7129. #~ msgctxt "@label"
  7130. #~ msgid "Cura Profile Reader"
  7131. #~ msgstr "Lector de perfiles de Cura"
  7132. #~ msgctxt "@info:whatsthis"
  7133. #~ msgid "Provides support for importing Cura profiles."
  7134. #~ msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  7135. #~ msgctxt "@info"
  7136. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7137. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  7138. #~ msgctxt "@label"
  7139. #~ msgid "Build Plate Shape"
  7140. #~ msgstr "Forma de la placa de impresión"
  7141. #~ msgctxt "@option:check"
  7142. #~ msgid "Machine Center is Zero"
  7143. #~ msgstr "El centro de la máquina es cero."
  7144. #~ msgctxt "@option:check"
  7145. #~ msgid "Heated Bed"
  7146. #~ msgstr "Plataforma caliente"
  7147. #~ msgctxt "@label"
  7148. #~ msgid "GCode Flavor"
  7149. #~ msgstr "Tipo de GCode"
  7150. #~ msgctxt "@label"
  7151. #~ msgid "Material Diameter"
  7152. #~ msgstr "Diámetro del material"
  7153. #~ msgctxt "@label"
  7154. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7155. #~ 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>"
  7156. #~ msgctxt "@item:inlistbox"
  7157. #~ msgid "Ultimaker"
  7158. #~ msgstr "Ultimaker"
  7159. #~ msgctxt "@label"
  7160. #~ msgid "Support library for scientific computing "
  7161. #~ msgstr "Biblioteca de apoyo para cálculos científicos "
  7162. #~ msgctxt "@tooltip"
  7163. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7164. #~ msgstr "<b>Configuración de impresión</b><br/><br/>Editar o revisar los ajustes del trabajo de impresión activo."
  7165. #~ msgctxt "@tooltip"
  7166. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7167. #~ msgstr "<b>Monitor de impresión</b><br/><br/>Supervisar el estado de la impresora conectada y del trabajo de impresión en curso."
  7168. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7169. #~ msgid "Automatic: %1"
  7170. #~ msgstr "Automático: %1"
  7171. #~ msgctxt "@label:PrintjobStatus"
  7172. #~ msgid "Please load a 3d model"
  7173. #~ msgstr "Cargue un modelo en 3D"
  7174. #~ msgctxt "@label"
  7175. #~ msgid "Print Selected Model with %1"
  7176. #~ msgid_plural "Print Selected Models With %1"
  7177. #~ msgstr[0] "Imprimir modelo seleccionado con %1"
  7178. #~ msgstr[1] "Imprimir modelos seleccionados con %1"
  7179. #~ msgctxt "@info:status"
  7180. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7181. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  7182. #~ msgctxt "@label"
  7183. #~ msgid "Version Upgrade 2.4 to 2.5"
  7184. #~ msgstr "Actualización de la versión 2.4 a la 2.5"
  7185. #~ msgctxt "@info:whatsthis"
  7186. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7187. #~ msgstr "Actualiza la configuración de Cura 2.4 a Cura 2.5."
  7188. #~ msgctxt "@info:status"
  7189. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7190. #~ msgstr "No se puede encontrar el perfil de calidad de esta combinación. Se utilizarán los ajustes predeterminados."
  7191. #~ msgctxt "@title:window"
  7192. #~ msgid "Oops!"
  7193. #~ msgstr "¡Vaya!"
  7194. #~ msgctxt "@label"
  7195. #~ msgid ""
  7196. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7197. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7198. #~ " <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"
  7199. #~ " "
  7200. #~ msgstr ""
  7201. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  7202. #~ " <p>Esperamos que la imagen de este gatito le ayude a recuperarse del shock.</p>\n"
  7203. #~ " <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"
  7204. #~ " "
  7205. #~ msgctxt "@label"
  7206. #~ msgid "Please enter the correct settings for your printer below:"
  7207. #~ msgstr "Introduzca los ajustes correctos de la impresora a continuación:"
  7208. #~ msgctxt "@label"
  7209. #~ msgid "Extruder %1"
  7210. #~ msgstr "Extrusor %1"
  7211. #~ msgctxt "@label Followed by extruder selection drop-down."
  7212. #~ msgid "Print model with"
  7213. #~ msgstr "Imprimir modelo con"
  7214. #~ msgctxt "@label"
  7215. #~ msgid "You will need to restart the application for language changes to have effect."
  7216. #~ msgstr "Tendrá que reiniciar la aplicación para que tengan efecto los cambios del idioma."
  7217. #~ msgctxt "@info:tooltip"
  7218. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7219. #~ msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo."
  7220. #~ msgctxt "@action:inmenu menubar:edit"
  7221. #~ msgid "Delete &Selection"
  7222. #~ msgstr "Eliminar &selección"
  7223. #~ msgctxt "@action:inmenu menubar:file"
  7224. #~ msgid "&Open File..."
  7225. #~ msgstr "&Abrir archivo..."
  7226. #~ msgctxt "@action:inmenu menubar:file"
  7227. #~ msgid "&Open Project..."
  7228. #~ msgstr "A&brir proyecto..."
  7229. #~ msgctxt "@title:window"
  7230. #~ msgid "Multiply Model"
  7231. #~ msgstr "Multiplicar modelo"
  7232. #~ msgctxt "@title:menu menubar:file"
  7233. #~ msgid "Save &All"
  7234. #~ msgstr "Guardar &todo"
  7235. #~ msgctxt "@title:window"
  7236. #~ msgid "Open file"
  7237. #~ msgstr "Abrir archivo"
  7238. #~ msgctxt "@title:window"
  7239. #~ msgid "Open workspace"
  7240. #~ msgstr "Abrir área de trabajo"
  7241. #~ msgctxt "@label"
  7242. #~ msgid "Hollow"
  7243. #~ msgstr "Hueco"
  7244. #~ msgctxt "@label"
  7245. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7246. #~ msgstr "Ningún (0%) relleno, lo que dejará hueco el modelo a costa de baja resistencia"
  7247. #~ msgctxt "@label"
  7248. #~ msgid "Light"
  7249. #~ msgstr "Ligero"
  7250. #~ msgctxt "@label"
  7251. #~ msgid "Light (20%) infill will give your model an average strength"
  7252. #~ msgstr "Un relleno ligero (20%) dará al modelo de una resistencia media"
  7253. #~ msgctxt "@label"
  7254. #~ msgid "Dense"
  7255. #~ msgstr "Denso"
  7256. #~ msgctxt "@label"
  7257. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7258. #~ msgstr "Un relleno denso (50%) dará al modelo de una resistencia por encima de la media"
  7259. #~ msgctxt "@label"
  7260. #~ msgid "Solid"
  7261. #~ msgstr "Sólido"
  7262. #~ msgctxt "@label"
  7263. #~ msgid "Solid (100%) infill will make your model completely solid"
  7264. #~ msgstr "Un relleno sólido (100%) hará que el modelo sea completamente macizo"
  7265. #~ msgctxt "@label"
  7266. #~ msgid "Enable Support"
  7267. #~ msgstr "Habilitar el soporte"
  7268. #~ msgctxt "@label"
  7269. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7270. #~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos."
  7271. #~ msgctxt "@label"
  7272. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7273. #~ msgstr "¿Necesita mejorar sus impresiones? Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>."
  7274. #~ msgctxt "@info:status"
  7275. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7276. #~ msgstr "Conectado a través de la red a {0}. Apruebe la solicitud de acceso en la impresora."
  7277. #~ msgctxt "@info:status"
  7278. #~ msgid "Connected over the network to {0}."
  7279. #~ msgstr "Conectado a través de la red a {0}."
  7280. #~ msgctxt "@info:status"
  7281. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7282. #~ msgstr "Conectado a través de la red a {0}. No hay acceso para controlar la impresora."
  7283. #~ msgctxt "@info:status"
  7284. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7285. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión porque la impresora está ocupada. Compruebe la impresora."
  7286. #~ msgctxt "@label"
  7287. #~ msgid "You made changes to the following setting(s)/override(s):"
  7288. #~ msgstr "Ha realizado cambios en los siguientes ajustes o se ha sobrescrito:"
  7289. #~ msgctxt "@window:title"
  7290. #~ msgid "Switched profiles"
  7291. #~ msgstr "Perfiles activados"
  7292. #~ msgctxt "@label"
  7293. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7294. #~ msgstr "¿Desea transferir los %d ajustes o sobrescrituras modificados a este perfil?"
  7295. #~ msgctxt "@label"
  7296. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7297. #~ msgstr "Si transfiere los ajustes, se sobrescribirán los del perfil. Si no los transfiere, se perderán."
  7298. #~ msgctxt "@label"
  7299. #~ msgid "Cost per Meter (Approx.)"
  7300. #~ msgstr "Coste por metro (aprox.)"
  7301. #~ msgctxt "@label"
  7302. #~ msgid "%1/m"
  7303. #~ msgstr "%1/m"
  7304. #~ msgctxt "@info:tooltip"
  7305. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7306. #~ 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."
  7307. #~ msgctxt "@action:button"
  7308. #~ msgid "Display five top layers in layer view"
  7309. #~ msgstr "Mostrar las cinco primeras capas en la vista de capas"
  7310. #~ msgctxt "@info:tooltip"
  7311. #~ msgid "Should only the top layers be displayed in layerview?"
  7312. #~ msgstr "¿Deben mostrarse solo las primeras capas en la vista de capas?"
  7313. #~ msgctxt "@option:check"
  7314. #~ msgid "Only display top layer(s) in layer view"
  7315. #~ msgstr "Mostrar solo las primeras capas en la vista de capas"
  7316. #~ msgctxt "@label"
  7317. #~ msgid "Opening files"
  7318. #~ msgstr "Abriendo archivos..."
  7319. #~ msgctxt "@label"
  7320. #~ msgid "Printer Monitor"
  7321. #~ msgstr "Monitor de la impresora"
  7322. #~ msgctxt "@label"
  7323. #~ msgid "Temperatures"
  7324. #~ msgstr "Temperaturas"
  7325. #~ msgctxt "@label:PrintjobStatus"
  7326. #~ msgid "Preparing to slice..."
  7327. #~ msgstr "Preparando para segmentar..."
  7328. #~ msgctxt "@window:title"
  7329. #~ msgid "Changes on the Printer"
  7330. #~ msgstr "Cambios en la impresora"
  7331. #~ msgctxt "@action:inmenu"
  7332. #~ msgid "&Duplicate Model"
  7333. #~ msgstr "&Duplicar modelo"
  7334. #~ msgctxt "@label"
  7335. #~ msgid "Helper Parts:"
  7336. #~ msgstr "Partes de los asistentes:"
  7337. #~ msgctxt "@label"
  7338. #~ 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."
  7339. #~ 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."
  7340. #~ msgctxt "@label"
  7341. #~ msgid "Don't print support"
  7342. #~ msgstr "No utilizar soporte de impresión."
  7343. #~ msgctxt "@label"
  7344. #~ msgid "Print support using %1"
  7345. #~ msgstr "Soporte de impresión con %1"
  7346. #~ msgctxt "@label:listbox"
  7347. #~ msgid "Printer:"
  7348. #~ msgstr "Impresora:"
  7349. #~ msgctxt "@info:status"
  7350. #~ msgid "Successfully imported profiles {0}"
  7351. #~ msgstr "Perfiles {0} importados correctamente"
  7352. #~ msgctxt "@label"
  7353. #~ msgid "Scripts"
  7354. #~ msgstr "Secuencias de comandos"
  7355. #~ msgctxt "@label"
  7356. #~ msgid "Active Scripts"
  7357. #~ msgstr "Secuencias de comandos activas"
  7358. #~ msgctxt "@label"
  7359. #~ msgid "Done"
  7360. #~ msgstr "Realizada"
  7361. #~ msgctxt "@item:inlistbox"
  7362. #~ msgid "English"
  7363. #~ msgstr "Inglés"
  7364. #~ msgctxt "@item:inlistbox"
  7365. #~ msgid "Finnish"
  7366. #~ msgstr "Finlandés"
  7367. #~ msgctxt "@item:inlistbox"
  7368. #~ msgid "French"
  7369. #~ msgstr "Francés"
  7370. #~ msgctxt "@item:inlistbox"
  7371. #~ msgid "German"
  7372. #~ msgstr "Alemán"
  7373. #~ msgctxt "@item:inlistbox"
  7374. #~ msgid "Italian"
  7375. #~ msgstr "Italiano"
  7376. #~ msgctxt "@item:inlistbox"
  7377. #~ msgid "Dutch"
  7378. #~ msgstr "Holandés"
  7379. #~ msgctxt "@item:inlistbox"
  7380. #~ msgid "Spanish"
  7381. #~ msgstr "Español"
  7382. #~ msgctxt "@label"
  7383. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  7384. #~ msgstr "¿Desea cambiar los PrintCores y materiales de Cura para que coincidan con la impresora?"
  7385. #~ msgctxt "@label:"
  7386. #~ msgid "Print Again"
  7387. #~ msgstr "Volver a imprimir"