cura.po 312 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628
  1. # Cura
  2. # Copyright (C) 2019 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2019.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 4.5\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2020-02-07 14:19+0100\n"
  11. "PO-Revision-Date: 2019-07-29 15:51+0200\n"
  12. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  13. "Language-Team: Spanish <info@lionbridge.com>, Spanish <info@bothof.nl>\n"
  14. "Language: es_ES\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Generator: Poedit 2.2.3\n"
  20. #: /home/ruben/Projects/Cura/plugins/CuraProfileReader/__init__.py:14
  21. #: /home/ruben/Projects/Cura/plugins/CuraProfileWriter/__init__.py:14
  22. msgctxt "@item:inlistbox"
  23. msgid "Cura Profile"
  24. msgstr "Perfil de cura"
  25. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:14
  26. msgctxt "@item:inlistbox"
  27. msgid "JPG Image"
  28. msgstr "Imagen JPG"
  29. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:18
  30. msgctxt "@item:inlistbox"
  31. msgid "JPEG Image"
  32. msgstr "Imagen JPEG"
  33. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:22
  34. msgctxt "@item:inlistbox"
  35. msgid "PNG Image"
  36. msgstr "Imagen PNG"
  37. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:26
  38. msgctxt "@item:inlistbox"
  39. msgid "BMP Image"
  40. msgstr "Imagen BMP"
  41. #: /home/ruben/Projects/Cura/plugins/ImageReader/__init__.py:30
  42. msgctxt "@item:inlistbox"
  43. msgid "GIF Image"
  44. msgstr "Imagen GIF"
  45. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:30
  46. msgctxt "@action"
  47. msgid "Machine Settings"
  48. msgstr "Ajustes de la máquina"
  49. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  50. msgctxt "@action:button Preceded by 'Ready to'."
  51. msgid "Save to Removable Drive"
  52. msgstr "Guardar en unidad extraíble"
  53. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  54. #, python-brace-format
  55. msgctxt "@item:inlistbox"
  56. msgid "Save to Removable Drive {0}"
  57. msgstr "Guardar en unidad extraíble {0}"
  58. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:64
  59. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:107
  60. msgctxt "@info:status"
  61. msgid "There are no file formats available to write with!"
  62. msgstr "¡No hay formatos de archivo disponibles con los que escribir!"
  63. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  64. #, python-brace-format
  65. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  66. msgid "Saving to Removable Drive <filename>{0}</filename>"
  67. msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  68. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:94
  69. msgctxt "@info:title"
  70. msgid "Saving"
  71. msgstr "Guardando"
  72. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:104
  73. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:107
  74. #, python-brace-format
  75. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  76. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  77. msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  78. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  79. #, python-brace-format
  80. msgctxt "@info:status Don't translate the tag {device}!"
  81. msgid "Could not find a file name when trying to write to {device}."
  82. msgstr "No se pudo encontrar un nombre de archivo al tratar de escribir en {device}."
  83. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:136
  84. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  85. #, python-brace-format
  86. msgctxt "@info:status"
  87. msgid "Could not save to removable drive {0}: {1}"
  88. msgstr "No se pudo guardar en unidad extraíble {0}: {1}"
  89. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:137
  90. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1697
  91. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:138
  92. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:145
  93. msgctxt "@info:title"
  94. msgid "Error"
  95. msgstr "Error"
  96. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  97. #, python-brace-format
  98. msgctxt "@info:status"
  99. msgid "Saved to Removable Drive {0} as {1}"
  100. msgstr "Guardado en unidad extraíble {0} como {1}"
  101. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:145
  102. msgctxt "@info:title"
  103. msgid "File Saved"
  104. msgstr "Archivo guardado"
  105. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  106. msgctxt "@action:button"
  107. msgid "Eject"
  108. msgstr "Expulsar"
  109. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:146
  110. #, python-brace-format
  111. msgctxt "@action"
  112. msgid "Eject removable device {0}"
  113. msgstr "Expulsar dispositivo extraíble {0}"
  114. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:151
  115. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  116. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1687
  117. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1787
  118. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:201
  119. msgctxt "@info:title"
  120. msgid "Warning"
  121. msgstr "Advertencia"
  122. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  123. #, python-brace-format
  124. msgctxt "@info:status"
  125. msgid "Ejected {0}. You can now safely remove the drive."
  126. msgstr "Expulsado {0}. Ahora puede retirar de forma segura la unidad."
  127. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:161
  128. msgctxt "@info:title"
  129. msgid "Safely Remove Hardware"
  130. msgstr "Retirar de forma segura el hardware"
  131. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  132. #, python-brace-format
  133. msgctxt "@info:status"
  134. msgid "Failed to eject {0}. Another program may be using the drive."
  135. msgstr "Error al expulsar {0}. Es posible que otro programa esté utilizando la unidad."
  136. #: /home/ruben/Projects/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:72
  137. msgctxt "@item:intext"
  138. msgid "Removable Drive"
  139. msgstr "Unidad extraíble"
  140. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:93
  141. msgctxt "@info:generic"
  142. msgid ""
  143. "\n"
  144. "Do you want to sync material and software packages with your account?"
  145. msgstr "\n¿Desea sincronizar el material y los paquetes de software con su cuenta?"
  146. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:94
  147. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:90
  148. msgctxt "@info:title"
  149. msgid "Changes detected from your Ultimaker account"
  150. msgstr "Se han detectado cambios desde su cuenta de Ultimaker"
  151. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:96
  152. msgctxt "@action:button"
  153. msgid "Sync"
  154. msgstr "Sincronizar"
  155. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  156. msgctxt "@button"
  157. msgid "Decline"
  158. msgstr "Rechazar"
  159. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  160. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  161. msgctxt "@button"
  162. msgid "Agree"
  163. msgstr "Estoy de acuerdo"
  164. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  165. msgctxt "@title:window"
  166. msgid "Plugin License Agreement"
  167. msgstr "Acuerdo de licencia de complemento"
  168. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:30
  169. msgctxt "@button"
  170. msgid "Decline and remove from account"
  171. msgstr "Rechazar y eliminar de la cuenta"
  172. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:71
  173. msgctxt "@info:generic"
  174. msgid "{} plugins failed to download"
  175. msgstr "Error al descargar los complementos {}"
  176. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:86
  177. msgctxt "@info:generic"
  178. msgid ""
  179. "\n"
  180. "Syncing..."
  181. msgstr "\nSincronizando..."
  182. #: /home/ruben/Projects/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:18
  183. msgctxt "@info:generic"
  184. msgid "You need to quit and restart {} before changes have effect."
  185. msgstr "Tiene que salir y reiniciar {} para que los cambios surtan efecto."
  186. #: /home/ruben/Projects/Cura/plugins/AMFReader/__init__.py:15
  187. msgctxt "@item:inlistbox"
  188. msgid "AMF File"
  189. msgstr "Archivo AMF"
  190. #: /home/ruben/Projects/Cura/plugins/SolidView/__init__.py:12
  191. msgctxt "@item:inmenu"
  192. msgid "Solid view"
  193. msgstr "Vista de sólidos"
  194. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:21
  195. msgctxt "@action"
  196. msgid "Level build plate"
  197. msgstr "Nivelar placa de impresión"
  198. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:18
  199. msgctxt "@action"
  200. msgid "Select upgrades"
  201. msgstr "Seleccionar actualizaciones"
  202. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  203. msgctxt "@item:inmenu"
  204. msgid "USB printing"
  205. msgstr "Impresión USB"
  206. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  207. msgctxt "@action:button Preceded by 'Ready to'."
  208. msgid "Print via USB"
  209. msgstr "Imprimir mediante USB"
  210. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  211. msgctxt "@info:tooltip"
  212. msgid "Print via USB"
  213. msgstr "Imprimir mediante USB"
  214. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  215. msgctxt "@info:status"
  216. msgid "Connected via USB"
  217. msgstr "Conectado mediante USB"
  218. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:106
  219. msgctxt "@label"
  220. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  221. msgstr "Se está realizando una impresión con USB, si cierra Cura detendrá la impresión. ¿Desea continuar?"
  222. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:128
  223. msgctxt "@message"
  224. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  225. 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."
  226. #: /home/ruben/Projects/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:128
  227. msgctxt "@message"
  228. msgid "Print in Progress"
  229. msgstr "Impresión en curso"
  230. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  231. msgctxt "@info:status"
  232. msgid "tomorrow"
  233. msgstr "mañana"
  234. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  235. msgctxt "@info:status"
  236. msgid "today"
  237. msgstr "hoy"
  238. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:57
  239. msgctxt "@action:button Preceded by 'Ready to'."
  240. msgid "Print over network"
  241. msgstr "Imprimir a través de la red"
  242. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  243. msgctxt "@properties:tooltip"
  244. msgid "Print over network"
  245. msgstr "Imprime a través de la red"
  246. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  247. msgctxt "@info:status"
  248. msgid "Connected over the network"
  249. msgstr "Conectado a través de la red"
  250. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  251. #, python-brace-format
  252. msgctxt "@info:status"
  253. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  254. msgstr "Cura ha detectado perfiles de material que aún no estaban instalados en la impresora host del grupo {0}."
  255. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  256. msgctxt "@info:title"
  257. msgid "Sending materials to printer"
  258. msgstr "Enviando materiales a la impresora"
  259. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:14
  260. msgctxt "@info:status"
  261. msgid "Sending Print Job"
  262. msgstr "Enviando trabajo de impresión"
  263. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  264. msgctxt "@info:status"
  265. msgid "Uploading print job to printer."
  266. msgstr "Cargando el trabajo de impresión a la impresora."
  267. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  268. msgctxt "@info:text"
  269. msgid "Could not upload the data to the printer."
  270. msgstr "No se han podido cargar los datos en la impresora."
  271. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  272. msgctxt "@info:title"
  273. msgid "Network error"
  274. msgstr "Error de red"
  275. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  276. msgctxt "@info:status"
  277. msgid "Print job was successfully sent to the printer."
  278. msgstr "El trabajo de impresión se ha enviado correctamente a la impresora."
  279. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  280. msgctxt "@info:title"
  281. msgid "Data Sent"
  282. msgstr "Fecha de envío"
  283. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  284. msgctxt "@info:status"
  285. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  286. msgstr "Envíe y supervise sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
  287. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  288. msgctxt "@info:status Ultimaker Cloud should not be translated."
  289. msgid "Connect to Ultimaker Cloud"
  290. msgstr "Conectar a Ultimaker Cloud"
  291. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  292. msgctxt "@action"
  293. msgid "Get started"
  294. msgstr "Empezar"
  295. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  296. msgctxt "@info:status"
  297. msgid "Please wait until the current job has been sent."
  298. msgstr "Espere hasta que se envíe el trabajo actual."
  299. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  300. msgctxt "@info:title"
  301. msgid "Print error"
  302. msgstr "Error de impresión"
  303. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  304. msgctxt "@info:status"
  305. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  306. msgstr "Está intentando conectarse a una impresora que no está ejecutando Ultimaker Connect. Actualice la impresora al firmware más reciente."
  307. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  308. msgctxt "@info:title"
  309. msgid "Update your printer"
  310. msgstr "Actualice su impresora"
  311. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  312. #, python-brace-format
  313. msgctxt "@info:status"
  314. 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."
  315. 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."
  316. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  317. msgctxt "@info:title"
  318. msgid "Not a group host"
  319. msgstr "No es un host de grupo"
  320. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  321. msgctxt "@action"
  322. msgid "Configure group"
  323. msgstr "Configurar grupo"
  324. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:26
  325. msgctxt "@action"
  326. msgid "Connect via Network"
  327. msgstr "Conectar a través de la red"
  328. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:138
  329. msgctxt "@action:button"
  330. msgid "Print via Cloud"
  331. msgstr "Imprimir mediante Cloud"
  332. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:139
  333. msgctxt "@properties:tooltip"
  334. msgid "Print via Cloud"
  335. msgstr "Imprimir mediante Cloud"
  336. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:140
  337. msgctxt "@info:status"
  338. msgid "Connected via Cloud"
  339. msgstr "Conectado mediante Cloud"
  340. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:27
  341. #: /home/ruben/Projects/Cura/plugins/3MFReader/__init__.py:33
  342. msgctxt "@item:inlistbox"
  343. msgid "3MF File"
  344. msgstr "Archivo 3MF"
  345. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:199
  346. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:646
  347. msgctxt "@label"
  348. msgid "Nozzle"
  349. msgstr "Tobera"
  350. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:497
  351. #, python-brace-format
  352. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  353. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  354. 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."
  355. #: /home/ruben/Projects/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:500
  356. msgctxt "@info:title"
  357. msgid "Open Project File"
  358. msgstr "Abrir archivo de proyecto"
  359. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:186
  360. msgctxt "@title:tab"
  361. msgid "Recommended"
  362. msgstr "Recomendado"
  363. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.py:188
  364. msgctxt "@title:tab"
  365. msgid "Custom"
  366. msgstr "Personalizado"
  367. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:12
  368. msgctxt "@label"
  369. msgid "Support Blocker"
  370. msgstr "Bloqueador de soporte"
  371. #: /home/ruben/Projects/Cura/plugins/SupportEraser/__init__.py:13
  372. msgctxt "@info:tooltip"
  373. msgid "Create a volume in which supports are not printed."
  374. msgstr "Cree un volumen que no imprima los soportes."
  375. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  376. msgctxt "@label"
  377. msgid "Per Model Settings"
  378. msgstr "Ajustes por modelo"
  379. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  380. msgctxt "@info:tooltip"
  381. msgid "Configure Per Model Settings"
  382. msgstr "Configurar ajustes por modelo"
  383. #: /home/ruben/Projects/Cura/plugins/PreviewStage/__init__.py:13
  384. msgctxt "@item:inmenu"
  385. msgid "Preview"
  386. msgstr "Vista previa"
  387. #: /home/ruben/Projects/Cura/plugins/XRayView/__init__.py:12
  388. msgctxt "@item:inlistbox"
  389. msgid "X-Ray view"
  390. msgstr "Vista de rayos X"
  391. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:14
  392. #: /home/ruben/Projects/Cura/plugins/GCodeProfileReader/__init__.py:14
  393. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/__init__.py:16
  394. msgctxt "@item:inlistbox"
  395. msgid "G-code File"
  396. msgstr "Archivo GCode"
  397. #: /home/ruben/Projects/Cura/plugins/GCodeReader/__init__.py:18
  398. msgctxt "@item:inlistbox"
  399. msgid "G File"
  400. msgstr "Archivo G"
  401. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:338
  402. msgctxt "@info:status"
  403. msgid "Parsing G-code"
  404. msgstr "Analizar GCode"
  405. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:340
  406. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:494
  407. msgctxt "@info:title"
  408. msgid "G-code Details"
  409. msgstr "Datos de GCode"
  410. #: /home/ruben/Projects/Cura/plugins/GCodeReader/FlavorParser.py:492
  411. msgctxt "@info:generic"
  412. 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."
  413. 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."
  414. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  415. msgctxt "@item:inmenu"
  416. msgid "Post Processing"
  417. msgstr "Posprocesamiento"
  418. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  419. msgctxt "@item:inmenu"
  420. msgid "Modify G-Code"
  421. msgstr "Modificar GCode"
  422. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:331
  423. msgctxt "@info:status"
  424. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  425. msgstr "No se puede segmentar con el material actual, ya que es incompatible con el dispositivo o la configuración seleccionados."
  426. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:331
  427. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:362
  428. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:386
  429. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:395
  430. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:404
  431. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
  432. msgctxt "@info:title"
  433. msgid "Unable to slice"
  434. msgstr "No se puede segmentar"
  435. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:361
  436. #, python-brace-format
  437. msgctxt "@info:status"
  438. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  439. msgstr "Los ajustes actuales no permiten la segmentación. Los siguientes ajustes contienen errores: {0}"
  440. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:385
  441. #, python-brace-format
  442. msgctxt "@info:status"
  443. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  444. msgstr "Los ajustes de algunos modelos no permiten la segmentación. Los siguientes ajustes contienen errores en uno o más modelos: {error_labels}."
  445. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:394
  446. msgctxt "@info:status"
  447. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  448. msgstr "No se puede segmentar porque la torre auxiliar o la posición o posiciones de preparación no son válidas."
  449. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:403
  450. #, python-format
  451. msgctxt "@info:status"
  452. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  453. msgstr "No se puede segmentar porque hay objetos asociados al extrusor %s que está deshabilitado."
  454. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  455. msgctxt "@info:status"
  456. 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."
  457. 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."
  458. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:50
  459. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:256
  460. msgctxt "@info:status"
  461. msgid "Processing Layers"
  462. msgstr "Procesando capas"
  463. #: /home/ruben/Projects/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:256
  464. msgctxt "@info:title"
  465. msgid "Information"
  466. msgstr "Información"
  467. #: /home/ruben/Projects/Cura/plugins/LegacyProfileReader/__init__.py:14
  468. msgctxt "@item:inlistbox"
  469. msgid "Cura 15.04 profiles"
  470. msgstr "Perfiles de Cura 15.04"
  471. #: /home/ruben/Projects/Cura/plugins/UFPReader/__init__.py:22
  472. #: /home/ruben/Projects/Cura/plugins/UFPWriter/__init__.py:28
  473. msgctxt "@item:inlistbox"
  474. msgid "Ultimaker Format Package"
  475. msgstr "Paquete de formato Ultimaker"
  476. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:25
  477. msgctxt "@action"
  478. msgid "Update Firmware"
  479. msgstr "Actualizar firmware"
  480. #: /home/ruben/Projects/Cura/plugins/PrepareStage/__init__.py:12
  481. msgctxt "@item:inmenu"
  482. msgid "Prepare"
  483. msgstr "Preparar"
  484. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:15
  485. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  486. msgid "Open Compressed Triangle Mesh"
  487. msgstr "Open Compressed Triangle Mesh"
  488. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:19
  489. msgctxt "@item:inlistbox"
  490. msgid "COLLADA Digital Asset Exchange"
  491. msgstr "COLLADA Digital Asset Exchange"
  492. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:23
  493. msgctxt "@item:inlistbox"
  494. msgid "glTF Binary"
  495. msgstr "glTF binario"
  496. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:27
  497. msgctxt "@item:inlistbox"
  498. msgid "glTF Embedded JSON"
  499. msgstr "glTF incrustado JSON"
  500. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:36
  501. msgctxt "@item:inlistbox"
  502. msgid "Stanford Triangle Format"
  503. msgstr "Stanford Triangle Format"
  504. #: /home/ruben/Projects/Cura/plugins/TrimeshReader/__init__.py:40
  505. msgctxt "@item:inlistbox"
  506. msgid "Compressed COLLADA Digital Asset Exchange"
  507. msgstr "COLLADA Digital Asset Exchange comprimido"
  508. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:26
  509. msgctxt "@item:inlistbox"
  510. msgid "3MF file"
  511. msgstr "Archivo 3MF"
  512. #: /home/ruben/Projects/Cura/plugins/3MFWriter/__init__.py:34
  513. msgctxt "@item:inlistbox"
  514. msgid "Cura Project 3MF file"
  515. msgstr "Archivo 3MF del proyecto de Cura"
  516. #: /home/ruben/Projects/Cura/plugins/3MFWriter/ThreeMFWriter.py:180
  517. msgctxt "@error:zip"
  518. msgid "Error writing 3mf file."
  519. msgstr "Error al escribir el archivo 3MF."
  520. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:66
  521. msgctxt "@error:not supported"
  522. msgid "GCodeWriter does not support non-text mode."
  523. msgstr "GCodeWriter no es compatible con el modo sin texto."
  524. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:72
  525. #: /home/ruben/Projects/Cura/plugins/GCodeWriter/GCodeWriter.py:88
  526. msgctxt "@warning:status"
  527. msgid "Please prepare G-code before exporting."
  528. msgstr "Prepare el Gcode antes de la exportación."
  529. #: /home/ruben/Projects/Cura/plugins/MonitorStage/__init__.py:14
  530. msgctxt "@item:inmenu"
  531. msgid "Monitor"
  532. msgstr "Supervisar"
  533. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  534. msgctxt "@item:inmenu"
  535. msgid "Manage backups"
  536. msgstr "Administrar copias de seguridad"
  537. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  538. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  539. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:55
  540. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:104
  541. msgctxt "@info:title"
  542. msgid "Backup"
  543. msgstr "Copia de seguridad"
  544. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:55
  545. msgctxt "@info:backup_status"
  546. msgid "There was an error listing your backups."
  547. msgstr "Se ha producido un error al obtener sus copias de seguridad."
  548. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/DriveApiService.py:132
  549. msgctxt "@info:backup_status"
  550. msgid "There was an error trying to restore your backup."
  551. msgstr "Se ha producido un error al intentar restaurar su copia de seguridad."
  552. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:15
  553. msgctxt "@info:title"
  554. msgid "Backups"
  555. msgstr "Copias de seguridad"
  556. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:27
  557. msgctxt "@info:backup_status"
  558. msgid "Uploading your backup..."
  559. msgstr "Cargando su copia de seguridad..."
  560. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:36
  561. msgctxt "@info:backup_status"
  562. msgid "There was an error while uploading your backup."
  563. msgstr "Se ha producido un error al cargar su copia de seguridad."
  564. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/UploadBackupJob.py:39
  565. msgctxt "@info:backup_status"
  566. msgid "Your backup has finished uploading."
  567. msgstr "Su copia de seguridad ha terminado de cargarse."
  568. #: /home/ruben/Projects/Cura/plugins/X3DReader/__init__.py:13
  569. msgctxt "@item:inlistbox"
  570. msgid "X3D File"
  571. msgstr "Archivo X3D"
  572. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:119
  573. msgctxt "@info:status"
  574. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  575. msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada."
  576. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:120
  577. msgctxt "@info:title"
  578. msgid "Simulation View"
  579. msgstr "Vista de simulación"
  580. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  581. msgctxt "@info:status"
  582. msgid "Nothing is shown because you need to slice first."
  583. msgstr "No se muestra nada porque primero hay que cortar."
  584. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationView.py:121
  585. msgctxt "@info:title"
  586. msgid "No layers to show"
  587. msgstr "No hay capas para mostrar"
  588. #: /home/ruben/Projects/Cura/plugins/SimulationView/__init__.py:15
  589. msgctxt "@item:inlistbox"
  590. msgid "Layer view"
  591. msgstr "Vista de capas"
  592. #: /home/ruben/Projects/Cura/plugins/GCodeGzReader/__init__.py:17
  593. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/__init__.py:17
  594. msgctxt "@item:inlistbox"
  595. msgid "Compressed G-code File"
  596. msgstr "Archivo GCode comprimido"
  597. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:31
  598. msgctxt "@info:title"
  599. msgid "3D Model Assistant"
  600. msgstr "Asistente del modelo 3D"
  601. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.py:92
  602. #, python-brace-format
  603. msgctxt "@info:status"
  604. msgid ""
  605. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  606. "<p>{model_names}</p>\n"
  607. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  608. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  609. msgstr ""
  610. "<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"
  611. "<p>{model_names}</p>\n"
  612. "<p>Obtenga más información sobre cómo garantizar la mejor calidad y fiabilidad de impresión posible.</p>\n"
  613. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ver guía de impresión de calidad</a></p>"
  614. #: /home/ruben/Projects/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:38
  615. msgctxt "@error:not supported"
  616. msgid "GCodeGzWriter does not support text mode."
  617. msgstr "GCodeGzWriter no es compatible con el modo texto."
  618. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:125
  619. msgctxt "@info"
  620. msgid "Could not access update information."
  621. msgstr "No se pudo acceder a la información actualizada."
  622. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  623. #, python-brace-format
  624. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  625. msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  626. msgstr "Hay nuevas funciones disponibles para {machine_name}. Se recomienda actualizar el firmware de la impresora."
  627. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:21
  628. #, python-format
  629. msgctxt "@info:title The %s gets replaced with the printer name."
  630. msgid "New %s firmware available"
  631. msgstr "Nuevo firmware de %s disponible"
  632. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:27
  633. msgctxt "@action:button"
  634. msgid "How to update"
  635. msgstr "Cómo actualizar"
  636. #: /home/ruben/Projects/Cura/cura/API/Account.py:82
  637. msgctxt "@info:title"
  638. msgid "Login failed"
  639. msgstr "Fallo de inicio de sesión"
  640. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:95
  641. msgctxt "@info:status"
  642. 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."
  643. 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."
  644. #: /home/ruben/Projects/Cura/cura/BuildVolume.py:97
  645. msgctxt "@info:title"
  646. msgid "Build Volume"
  647. msgstr "Volumen de impresión"
  648. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:510
  649. msgctxt "@info:progress"
  650. msgid "Loading machines..."
  651. msgstr "Cargando máquinas..."
  652. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:517
  653. msgctxt "@info:progress"
  654. msgid "Setting up preferences..."
  655. msgstr "Configurando preferencias...."
  656. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:645
  657. msgctxt "@info:progress"
  658. msgid "Initializing Active Machine..."
  659. msgstr "Iniciando la máquina activa..."
  660. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:767
  661. msgctxt "@info:progress"
  662. msgid "Initializing machine manager..."
  663. msgstr "Iniciando el administrador de la máquina..."
  664. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:781
  665. msgctxt "@info:progress"
  666. msgid "Initializing build volume..."
  667. msgstr "Iniciando el volumen de impresión..."
  668. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:843
  669. msgctxt "@info:progress"
  670. msgid "Setting up scene..."
  671. msgstr "Configurando escena..."
  672. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:878
  673. msgctxt "@info:progress"
  674. msgid "Loading interface..."
  675. msgstr "Cargando interfaz..."
  676. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:883
  677. msgctxt "@info:progress"
  678. msgid "Initializing engine..."
  679. msgstr "Iniciando el motor..."
  680. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1176
  681. #, python-format
  682. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  683. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  684. msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  685. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1686
  686. #, python-brace-format
  687. msgctxt "@info:status"
  688. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  689. msgstr "Solo se puede cargar un archivo GCode a la vez. Se omitió la importación de {0}"
  690. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1696
  691. #, python-brace-format
  692. msgctxt "@info:status"
  693. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  694. msgstr "No se puede abrir ningún archivo si se está cargando un archivo GCode. Se omitió la importación de {0}"
  695. #: /home/ruben/Projects/Cura/cura/CuraApplication.py:1786
  696. msgctxt "@info:status"
  697. msgid "The selected model was too small to load."
  698. msgstr "No se puede cargar el modelo seleccionado, es demasiado pequeño."
  699. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:99
  700. msgctxt "@info:backup_failed"
  701. msgid "Could not create archive from user data directory: {}"
  702. msgstr "No se ha podido crear el archivo desde el directorio de datos de usuario: {}"
  703. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:114
  704. msgctxt "@info:backup_failed"
  705. msgid "Tried to restore a Cura backup without having proper data or meta data."
  706. msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados."
  707. #: /home/ruben/Projects/Cura/cura/Backups/Backup.py:125
  708. msgctxt "@info:backup_failed"
  709. msgid "Tried to restore a Cura backup that is higher than the current version."
  710. msgstr "Se ha intentado restaurar una copia de seguridad de Cura superior a la versión actual."
  711. #: /home/ruben/Projects/Cura/cura/UI/ObjectsModel.py:62
  712. #, python-brace-format
  713. msgctxt "@label"
  714. msgid "Group #{group_nr}"
  715. msgstr "N.º de grupo {group_nr}"
  716. #: /home/ruben/Projects/Cura/cura/UI/AddPrinterPagesModel.py:17
  717. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:48
  718. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  719. msgctxt "@action:button"
  720. msgid "Add"
  721. msgstr "Agregar"
  722. #: /home/ruben/Projects/Cura/cura/UI/AddPrinterPagesModel.py:18
  723. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:87
  724. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:296
  725. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  726. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:234
  727. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  728. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  729. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  730. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  731. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  732. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:406
  733. msgctxt "@action:button"
  734. msgid "Cancel"
  735. msgstr "Cancelar"
  736. #: /home/ruben/Projects/Cura/cura/UI/WhatsNewPagesModel.py:17
  737. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:124
  738. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:169
  739. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:131
  740. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  741. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  742. msgctxt "@action:button"
  743. msgid "Close"
  744. msgstr "Cerrar"
  745. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:81
  746. msgctxt "@tooltip"
  747. msgid "Outer Wall"
  748. msgstr "Pared exterior"
  749. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:82
  750. msgctxt "@tooltip"
  751. msgid "Inner Walls"
  752. msgstr "Paredes interiores"
  753. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:83
  754. msgctxt "@tooltip"
  755. msgid "Skin"
  756. msgstr "Forro"
  757. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:84
  758. msgctxt "@tooltip"
  759. msgid "Infill"
  760. msgstr "Relleno"
  761. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:85
  762. msgctxt "@tooltip"
  763. msgid "Support Infill"
  764. msgstr "Relleno de soporte"
  765. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:86
  766. msgctxt "@tooltip"
  767. msgid "Support Interface"
  768. msgstr "Interfaz de soporte"
  769. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:87
  770. msgctxt "@tooltip"
  771. msgid "Support"
  772. msgstr "Soporte"
  773. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:88
  774. msgctxt "@tooltip"
  775. msgid "Skirt"
  776. msgstr "Falda"
  777. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:89
  778. msgctxt "@tooltip"
  779. msgid "Prime Tower"
  780. msgstr "Torre auxiliar"
  781. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:90
  782. msgctxt "@tooltip"
  783. msgid "Travel"
  784. msgstr "Desplazamiento"
  785. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:91
  786. msgctxt "@tooltip"
  787. msgid "Retractions"
  788. msgstr "Retracciones"
  789. #: /home/ruben/Projects/Cura/cura/UI/PrintInformation.py:92
  790. msgctxt "@tooltip"
  791. msgid "Other"
  792. msgstr "Otro"
  793. #: /home/ruben/Projects/Cura/cura/UI/WelcomePagesModel.py:56
  794. msgctxt "@action:button"
  795. msgid "Next"
  796. msgstr "Siguiente"
  797. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:29
  798. msgctxt "@info:status"
  799. msgid "Multiplying and placing objects"
  800. msgstr "Multiplicar y colocar objetos"
  801. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:30
  802. msgctxt "@info:title"
  803. msgid "Placing Objects"
  804. msgstr "Colocando objetos"
  805. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:108
  806. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:103
  807. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:149
  808. msgctxt "@info:status"
  809. msgid "Unable to find a location within the build volume for all objects"
  810. msgstr "No se puede encontrar una ubicación dentro del volumen de impresión para todos los objetos"
  811. #: /home/ruben/Projects/Cura/cura/MultiplyObjectsJob.py:108
  812. msgctxt "@info:title"
  813. msgid "Placing Object"
  814. msgstr "Colocando objeto"
  815. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:11
  816. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:41
  817. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:321
  818. msgctxt "@label"
  819. msgid "Default"
  820. msgstr "Default"
  821. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:14
  822. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:44
  823. msgctxt "@label"
  824. msgid "Visual"
  825. msgstr "Visual"
  826. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:15
  827. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  828. msgctxt "@text"
  829. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  830. 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."
  831. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:18
  832. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:48
  833. msgctxt "@label"
  834. msgid "Engineering"
  835. msgstr "Engineering"
  836. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:19
  837. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  838. msgctxt "@text"
  839. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  840. 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."
  841. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:22
  842. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:52
  843. msgctxt "@label"
  844. msgid "Draft"
  845. msgstr "Boceto"
  846. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentTranslations.py:23
  847. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  848. msgctxt "@text"
  849. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  850. 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."
  851. #: /home/ruben/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:85
  852. #: /home/ruben/Projects/Cura/cura/Machines/Models/IntentCategoryModel.py:104
  853. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:340
  854. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:1474
  855. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:184
  856. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:225
  857. msgctxt "@label"
  858. msgid "Unknown"
  859. msgstr "Desconocido"
  860. #: /home/ruben/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  861. msgctxt "@label"
  862. msgid "The printer(s) below cannot be connected because they are part of a group"
  863. msgstr "Las siguientes impresoras no pueden conectarse porque forman parte de un grupo"
  864. #: /home/ruben/Projects/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:117
  865. msgctxt "@label"
  866. msgid "Available networked printers"
  867. msgstr "Impresoras en red disponibles"
  868. #: /home/ruben/Projects/Cura/cura/Machines/Models/ExtrudersModel.py:208
  869. msgctxt "@menuitem"
  870. msgid "Not overridden"
  871. msgstr "No reemplazado"
  872. #: /home/ruben/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:213
  873. msgctxt "@label"
  874. msgid "Custom Material"
  875. msgstr "Material personalizado"
  876. #: /home/ruben/Projects/Cura/cura/Machines/Models/MaterialManagementModel.py:214
  877. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  878. msgctxt "@label"
  879. msgid "Custom"
  880. msgstr "Personalizado"
  881. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:359
  882. msgctxt "@label"
  883. msgid "Custom profiles"
  884. msgstr "Perfiles personalizados"
  885. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:393
  886. #, python-brace-format
  887. msgctxt "@item:inlistbox"
  888. msgid "All Supported Types ({0})"
  889. msgstr "Todos los tipos compatibles ({0})"
  890. #: /home/ruben/Projects/Cura/cura/Machines/Models/QualityManagementModel.py:394
  891. msgctxt "@item:inlistbox"
  892. msgid "All Files (*)"
  893. msgstr "Todos los archivos (*)"
  894. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:90
  895. msgctxt "@title:window"
  896. msgid "Cura can't start"
  897. msgstr "Cura no puede iniciarse"
  898. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:96
  899. msgctxt "@label crash message"
  900. msgid ""
  901. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  902. " <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"
  903. " <p>Backups can be found in the configuration folder.</p>\n"
  904. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  905. " "
  906. msgstr ""
  907. "<p><b>¡Vaya! Ultimaker Cura ha encontrado un error.</p></b>\n"
  908. " <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"
  909. " <p>Las copias de seguridad se encuentran en la carpeta de configuración.</p>\n"
  910. " <p>Envíenos el informe de errores para que podamos solucionar el problema.</p>\n"
  911. " "
  912. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:105
  913. msgctxt "@action:button"
  914. msgid "Send crash report to Ultimaker"
  915. msgstr "Enviar informe de errores a Ultimaker"
  916. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:108
  917. msgctxt "@action:button"
  918. msgid "Show detailed crash report"
  919. msgstr "Mostrar informe de errores detallado"
  920. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:112
  921. msgctxt "@action:button"
  922. msgid "Show configuration folder"
  923. msgstr "Mostrar carpeta de configuración"
  924. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:123
  925. msgctxt "@action:button"
  926. msgid "Backup and Reset Configuration"
  927. msgstr "Realizar copia de seguridad y restablecer configuración"
  928. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:152
  929. msgctxt "@title:window"
  930. msgid "Crash Report"
  931. msgstr "Informe del accidente"
  932. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:172
  933. msgctxt "@label crash message"
  934. msgid ""
  935. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  936. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  937. " "
  938. msgstr ""
  939. "<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"
  940. " <p>Utilice el botón \"Enviar informe\" para publicar automáticamente el informe de errores en nuestros servidores.</p>\n"
  941. " "
  942. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:180
  943. msgctxt "@title:groupbox"
  944. msgid "System information"
  945. msgstr "Información del sistema"
  946. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:189
  947. msgctxt "@label unknown version of Cura"
  948. msgid "Unknown"
  949. msgstr "Desconocido"
  950. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:200
  951. msgctxt "@label Cura version number"
  952. msgid "Cura version"
  953. msgstr "Versión de Cura"
  954. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:201
  955. msgctxt "@label"
  956. msgid "Cura language"
  957. msgstr "Idioma de Cura"
  958. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:202
  959. msgctxt "@label"
  960. msgid "OS language"
  961. msgstr "Idioma del sistema operativo"
  962. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:203
  963. msgctxt "@label Type of platform"
  964. msgid "Platform"
  965. msgstr "Plataforma"
  966. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:204
  967. msgctxt "@label"
  968. msgid "Qt version"
  969. msgstr "Versión Qt"
  970. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:205
  971. msgctxt "@label"
  972. msgid "PyQt version"
  973. msgstr "Versión PyQt"
  974. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:206
  975. msgctxt "@label OpenGL version"
  976. msgid "OpenGL"
  977. msgstr "OpenGL"
  978. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:231
  979. msgctxt "@label"
  980. msgid "Not yet initialized<br/>"
  981. msgstr "Aún no se ha inicializado<br/>"
  982. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:234
  983. #, python-brace-format
  984. msgctxt "@label OpenGL version"
  985. msgid "<li>OpenGL Version: {version}</li>"
  986. msgstr "<li>Versión de OpenGL: {version}</li>"
  987. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:235
  988. #, python-brace-format
  989. msgctxt "@label OpenGL vendor"
  990. msgid "<li>OpenGL Vendor: {vendor}</li>"
  991. msgstr "<li>Proveedor de OpenGL: {vendor}</li>"
  992. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:236
  993. #, python-brace-format
  994. msgctxt "@label OpenGL renderer"
  995. msgid "<li>OpenGL Renderer: {renderer}</li>"
  996. msgstr "<li>Representador de OpenGL: {renderer}</li>"
  997. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:270
  998. msgctxt "@title:groupbox"
  999. msgid "Error traceback"
  1000. msgstr "Rastreabilidad de errores"
  1001. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:356
  1002. msgctxt "@title:groupbox"
  1003. msgid "Logs"
  1004. msgstr "Registros"
  1005. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:379
  1006. msgctxt "@title:groupbox"
  1007. msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  1008. msgstr "Descripción del usuario (Nota: es posible que los desarrolladores no hablen su idioma; si es posible, utilice el inglés)"
  1009. #: /home/ruben/Projects/Cura/cura/CrashHandler.py:399
  1010. msgctxt "@action:button"
  1011. msgid "Send report"
  1012. msgstr "Enviar informe"
  1013. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:196
  1014. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:124
  1015. msgctxt "@title:window"
  1016. msgid "File Already Exists"
  1017. msgstr "El archivo ya existe"
  1018. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:197
  1019. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:125
  1020. #, python-brace-format
  1021. msgctxt "@label Don't translate the XML tag <filename>!"
  1022. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  1023. msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  1024. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:430
  1025. #: /home/ruben/Projects/Cura/cura/Settings/ContainerManager.py:433
  1026. msgctxt "@info:status"
  1027. msgid "Invalid file URL:"
  1028. msgstr "URL del archivo no válida:"
  1029. #: /home/ruben/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:36
  1030. msgctxt "@info:not supported profile"
  1031. msgid "Not supported"
  1032. msgstr "No compatible"
  1033. #: /home/ruben/Projects/Cura/cura/Settings/cura_empty_instance_containers.py:55
  1034. msgctxt "@info:No intent profile selected"
  1035. msgid "Default"
  1036. msgstr "Default"
  1037. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:136
  1038. #, python-brace-format
  1039. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1040. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1041. msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  1042. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:143
  1043. #, python-brace-format
  1044. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1045. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1046. msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  1047. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:148
  1048. #, python-brace-format
  1049. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1050. msgid "Exported profile to <filename>{0}</filename>"
  1051. msgstr "Perfil exportado a <filename>{0}</filename>"
  1052. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:149
  1053. msgctxt "@info:title"
  1054. msgid "Export succeeded"
  1055. msgstr "Exportación correcta"
  1056. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:176
  1057. #, python-brace-format
  1058. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1059. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1060. msgstr "Error al importar el perfil de <filename>{0}</filename>: {1}"
  1061. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:180
  1062. #, python-brace-format
  1063. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1064. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  1065. msgstr "No se puede importar el perfil de <filename>{0}</filename> antes de añadir una impresora."
  1066. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:197
  1067. #, python-brace-format
  1068. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1069. msgid "No custom profile to import in file <filename>{0}</filename>"
  1070. msgstr "No hay ningún perfil personalizado para importar en el archivo <filename>{0}</filename>"
  1071. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:201
  1072. #, python-brace-format
  1073. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1074. msgid "Failed to import profile from <filename>{0}</filename>:"
  1075. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  1076. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:225
  1077. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:235
  1078. #, python-brace-format
  1079. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1080. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  1081. msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  1082. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:324
  1083. #, python-brace-format
  1084. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1085. msgid "Failed to import profile from <filename>{0}</filename>:"
  1086. msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  1087. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:327
  1088. #, python-brace-format
  1089. msgctxt "@info:status"
  1090. msgid "Successfully imported profile {0}"
  1091. msgstr "Perfil {0} importado correctamente"
  1092. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:330
  1093. #, python-brace-format
  1094. msgctxt "@info:status"
  1095. msgid "File {0} does not contain any valid profile."
  1096. msgstr "El archivo {0} no contiene ningún perfil válido."
  1097. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:333
  1098. #, python-brace-format
  1099. msgctxt "@info:status"
  1100. msgid "Profile {0} has an unknown file type or is corrupted."
  1101. msgstr "El perfil {0} tiene un tipo de archivo desconocido o está corrupto."
  1102. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:368
  1103. msgctxt "@label"
  1104. msgid "Custom profile"
  1105. msgstr "Perfil personalizado"
  1106. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:384
  1107. msgctxt "@info:status"
  1108. msgid "Profile is missing a quality type."
  1109. msgstr "Al perfil le falta un tipo de calidad."
  1110. #: /home/ruben/Projects/Cura/cura/Settings/CuraContainerRegistry.py:398
  1111. #, python-brace-format
  1112. msgctxt "@info:status"
  1113. msgid "Could not find a quality type {0} for the current configuration."
  1114. msgstr "No se ha podido encontrar un tipo de calidad {0} para la configuración actual."
  1115. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:780
  1116. msgctxt "@info:message Followed by a list of settings."
  1117. msgid "Settings have been changed to match the current availability of extruders:"
  1118. msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento:"
  1119. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:782
  1120. msgctxt "@info:title"
  1121. msgid "Settings updated"
  1122. msgstr "Ajustes actualizados"
  1123. #: /home/ruben/Projects/Cura/cura/Settings/MachineManager.py:1351
  1124. msgctxt "@info:title"
  1125. msgid "Extruder(s) Disabled"
  1126. msgstr "Extrusores deshabilitados"
  1127. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:30
  1128. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:66
  1129. msgctxt "@info:status"
  1130. msgid "Finding new location for objects"
  1131. msgstr "Buscando nueva ubicación para los objetos"
  1132. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:34
  1133. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:70
  1134. msgctxt "@info:title"
  1135. msgid "Finding Location"
  1136. msgstr "Buscando ubicación"
  1137. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsJob.py:104
  1138. #: /home/ruben/Projects/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  1139. msgctxt "@info:title"
  1140. msgid "Can't Find Location"
  1141. msgstr "No se puede encontrar la ubicación"
  1142. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:68
  1143. msgctxt "@message"
  1144. msgid "The provided state is not correct."
  1145. msgstr "El estado indicado no es correcto."
  1146. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:79
  1147. msgctxt "@message"
  1148. msgid "Please give the required permissions when authorizing this application."
  1149. msgstr "Conceda los permisos necesarios al autorizar esta aplicación."
  1150. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationRequestHandler.py:86
  1151. msgctxt "@message"
  1152. msgid "Something unexpected happened when trying to log in, please try again."
  1153. msgstr "Se ha producido un problema al intentar iniciar sesión, vuelva a intentarlo."
  1154. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationService.py:201
  1155. msgctxt "@info"
  1156. msgid "Unable to reach the Ultimaker account server."
  1157. msgstr "No se puede acceder al servidor de cuentas de Ultimaker."
  1158. #: /home/ruben/Projects/Cura/cura/OAuth2/AuthorizationHelpers.py:79
  1159. msgctxt "@message"
  1160. msgid "Could not read response."
  1161. msgstr "No se ha podido leer la respuesta."
  1162. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:119
  1163. msgctxt "@label:MonitorStatus"
  1164. msgid "Not connected to a printer"
  1165. msgstr "No está conectado a ninguna impresora"
  1166. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:123
  1167. msgctxt "@label:MonitorStatus"
  1168. msgid "Printer does not accept commands"
  1169. msgstr "La impresora no acepta comandos"
  1170. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:133
  1171. msgctxt "@label:MonitorStatus"
  1172. msgid "In maintenance. Please check the printer"
  1173. msgstr "En mantenimiento. Compruebe la impresora"
  1174. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:144
  1175. msgctxt "@label:MonitorStatus"
  1176. msgid "Lost connection with the printer"
  1177. msgstr "Se ha perdido la conexión con la impresora"
  1178. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:146
  1179. msgctxt "@label:MonitorStatus"
  1180. msgid "Printing..."
  1181. msgstr "Imprimiendo..."
  1182. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:149
  1183. msgctxt "@label:MonitorStatus"
  1184. msgid "Paused"
  1185. msgstr "En pausa"
  1186. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:152
  1187. msgctxt "@label:MonitorStatus"
  1188. msgid "Preparing..."
  1189. msgstr "Preparando..."
  1190. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:154
  1191. msgctxt "@label:MonitorStatus"
  1192. msgid "Please remove the print"
  1193. msgstr "Retire la impresión"
  1194. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:284
  1195. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:293
  1196. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1197. msgctxt "@label"
  1198. msgid "Pause"
  1199. msgstr "Pausar"
  1200. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:289
  1201. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1202. msgctxt "@label"
  1203. msgid "Resume"
  1204. msgstr "Reanudar"
  1205. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:325
  1206. msgctxt "@label"
  1207. msgid "Abort Print"
  1208. msgstr "Cancelar impresión"
  1209. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:335
  1210. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  1211. msgctxt "@window:title"
  1212. msgid "Abort print"
  1213. msgstr "Cancela la impresión"
  1214. #: /home/ruben/Projects/Cura/resources/qml/MonitorButton.qml:337
  1215. msgctxt "@label"
  1216. msgid "Are you sure you want to abort the print?"
  1217. msgstr "¿Está seguro de que desea cancelar la impresión?"
  1218. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  1219. msgctxt "@label"
  1220. msgid "Extruder"
  1221. msgstr "Extrusor"
  1222. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  1223. msgctxt "@tooltip"
  1224. 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."
  1225. 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á."
  1226. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  1227. msgctxt "@tooltip"
  1228. msgid "The current temperature of this hotend."
  1229. msgstr "Temperatura actual de este extremo caliente."
  1230. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  1231. msgctxt "@tooltip of temperature input"
  1232. msgid "The temperature to pre-heat the hotend to."
  1233. msgstr "Temperatura a la que se va a precalentar el extremo caliente."
  1234. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  1235. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  1236. msgctxt "@button Cancel pre-heating"
  1237. msgid "Cancel"
  1238. msgstr "Cancelar"
  1239. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  1240. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  1241. msgctxt "@button"
  1242. msgid "Pre-heat"
  1243. msgstr "Precalentar"
  1244. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  1245. msgctxt "@tooltip of pre-heat"
  1246. 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."
  1247. 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."
  1248. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  1249. msgctxt "@tooltip"
  1250. msgid "The colour of the material in this extruder."
  1251. msgstr "Color del material en este extrusor."
  1252. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  1253. msgctxt "@tooltip"
  1254. msgid "The material in this extruder."
  1255. msgstr "Material en este extrusor."
  1256. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  1257. msgctxt "@tooltip"
  1258. msgid "The nozzle inserted in this extruder."
  1259. msgstr "Tobera insertada en este extrusor."
  1260. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  1261. msgctxt "@info:status"
  1262. msgid "The printer is not connected."
  1263. msgstr "La impresora no está conectada."
  1264. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  1265. msgctxt "@label"
  1266. msgid "Build plate"
  1267. msgstr "Placa de impresión"
  1268. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  1269. msgctxt "@tooltip"
  1270. 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."
  1271. 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á."
  1272. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  1273. msgctxt "@tooltip"
  1274. msgid "The current temperature of the heated bed."
  1275. msgstr "Temperatura actual de la plataforma caliente."
  1276. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  1277. msgctxt "@tooltip of temperature input"
  1278. msgid "The temperature to pre-heat the bed to."
  1279. msgstr "Temperatura a la que se va a precalentar la plataforma."
  1280. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  1281. msgctxt "@tooltip of pre-heat"
  1282. 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."
  1283. 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."
  1284. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  1285. msgctxt "@label"
  1286. msgid "Printer control"
  1287. msgstr "Control de impresoras"
  1288. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  1289. msgctxt "@label"
  1290. msgid "Jog Position"
  1291. msgstr "Posición de desplazamiento"
  1292. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  1293. msgctxt "@label"
  1294. msgid "X/Y"
  1295. msgstr "X/Y"
  1296. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  1297. msgctxt "@label"
  1298. msgid "Z"
  1299. msgstr "Z"
  1300. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  1301. msgctxt "@label"
  1302. msgid "Jog Distance"
  1303. msgstr "Distancia de desplazamiento"
  1304. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  1305. msgctxt "@label"
  1306. msgid "Send G-code"
  1307. msgstr "Enviar GCode"
  1308. #: /home/ruben/Projects/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  1309. msgctxt "@tooltip of G-code command input"
  1310. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  1311. msgstr "Envíe un comando de GCode personalizado a la impresora conectada. Pulse «Intro» para enviar el comando."
  1312. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:242
  1313. msgctxt "@label"
  1314. msgid "This package will be installed after restarting."
  1315. msgstr "Este paquete se instalará después de reiniciar."
  1316. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:435
  1317. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:15
  1318. msgctxt "@title:tab"
  1319. msgid "General"
  1320. msgstr "General"
  1321. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:438
  1322. msgctxt "@title:tab"
  1323. msgid "Settings"
  1324. msgstr "Ajustes"
  1325. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:440
  1326. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:16
  1327. msgctxt "@title:tab"
  1328. msgid "Printers"
  1329. msgstr "Impresoras"
  1330. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:442
  1331. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  1332. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  1333. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:79
  1334. msgctxt "@title:tab"
  1335. msgid "Materials"
  1336. msgstr "Materiales"
  1337. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:444
  1338. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  1339. msgctxt "@title:tab"
  1340. msgid "Profiles"
  1341. msgstr "Perfiles"
  1342. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:563
  1343. msgctxt "@title:window"
  1344. msgid "Closing Cura"
  1345. msgstr "Cerrando Cura"
  1346. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:564
  1347. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:576
  1348. msgctxt "@label"
  1349. msgid "Are you sure you want to exit Cura?"
  1350. msgstr "¿Seguro que desea salir de Cura?"
  1351. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:614
  1352. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  1353. msgctxt "@title:window"
  1354. msgid "Open file(s)"
  1355. msgstr "Abrir archivo(s)"
  1356. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:720
  1357. msgctxt "@window:title"
  1358. msgid "Install Package"
  1359. msgstr "Instalar paquete"
  1360. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:728
  1361. msgctxt "@title:window"
  1362. msgid "Open File(s)"
  1363. msgstr "Abrir archivo(s)"
  1364. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:731
  1365. msgctxt "@text:window"
  1366. 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."
  1367. 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."
  1368. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:834
  1369. msgctxt "@title:window"
  1370. msgid "Add Printer"
  1371. msgstr "Agregar impresora"
  1372. #: /home/ruben/Projects/Cura/resources/qml/Cura.qml:842
  1373. msgctxt "@title:window"
  1374. msgid "What's New"
  1375. msgstr "Novedades"
  1376. #: /home/ruben/Projects/Cura/resources/qml/JobSpecs.qml:99
  1377. msgctxt "@text Print job name"
  1378. msgid "Untitled"
  1379. msgstr "Sin título"
  1380. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:140
  1381. msgctxt "@label"
  1382. msgid "Active print"
  1383. msgstr "Activar impresión"
  1384. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:148
  1385. msgctxt "@label"
  1386. msgid "Job Name"
  1387. msgstr "Nombre del trabajo"
  1388. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:156
  1389. msgctxt "@label"
  1390. msgid "Printing Time"
  1391. msgstr "Tiempo de impresión"
  1392. #: /home/ruben/Projects/Cura/resources/qml/PrintMonitor.qml:164
  1393. msgctxt "@label"
  1394. msgid "Estimated time left"
  1395. msgstr "Tiempo restante estimado"
  1396. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  1397. msgctxt "@label:PrintjobStatus"
  1398. msgid "Slicing..."
  1399. msgstr "Segmentando..."
  1400. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  1401. msgctxt "@label:PrintjobStatus"
  1402. msgid "Unable to slice"
  1403. msgstr "No se puede segmentar"
  1404. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  1405. msgctxt "@button"
  1406. msgid "Processing"
  1407. msgstr "Procesando"
  1408. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  1409. msgctxt "@button"
  1410. msgid "Slice"
  1411. msgstr "Segmentación"
  1412. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  1413. msgctxt "@label"
  1414. msgid "Start the slicing process"
  1415. msgstr "Iniciar el proceso de segmentación"
  1416. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  1417. msgctxt "@button"
  1418. msgid "Cancel"
  1419. msgstr "Cancelar"
  1420. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  1421. msgctxt "@label"
  1422. msgid "Time estimation"
  1423. msgstr "Estimación de tiempos"
  1424. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  1425. msgctxt "@label"
  1426. msgid "Material estimation"
  1427. msgstr "Estimación de material"
  1428. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  1429. msgctxt "@label m for meter"
  1430. msgid "%1m"
  1431. msgstr "%1 m"
  1432. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  1433. msgctxt "@label g for grams"
  1434. msgid "%1g"
  1435. msgstr "%1 g"
  1436. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  1437. msgctxt "@label"
  1438. msgid "No time estimation available"
  1439. msgstr "Ningún cálculo de tiempo disponible"
  1440. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  1441. msgctxt "@label"
  1442. msgid "No cost estimation available"
  1443. msgstr "Ningún cálculo de costes disponible"
  1444. #: /home/ruben/Projects/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  1445. msgctxt "@button"
  1446. msgid "Preview"
  1447. msgstr "Vista previa"
  1448. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:27
  1449. msgctxt "@label"
  1450. msgid "Print Selected Model With:"
  1451. msgid_plural "Print Selected Models With:"
  1452. msgstr[0] "Imprimir modelo seleccionado con:"
  1453. msgstr[1] "Imprimir modelos seleccionados con:"
  1454. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:116
  1455. msgctxt "@title:window"
  1456. msgid "Multiply Selected Model"
  1457. msgid_plural "Multiply Selected Models"
  1458. msgstr[0] "Multiplicar modelo seleccionado"
  1459. msgstr[1] "Multiplicar modelos seleccionados"
  1460. #: /home/ruben/Projects/Cura/resources/qml/Menus/ContextMenu.qml:141
  1461. msgctxt "@label"
  1462. msgid "Number of Copies"
  1463. msgstr "Número de copias"
  1464. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:13
  1465. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  1466. msgctxt "@title:menu menubar:toplevel"
  1467. msgid "&File"
  1468. msgstr "&Archivo"
  1469. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:33
  1470. msgctxt "@title:menu menubar:file"
  1471. msgid "&Save..."
  1472. msgstr "&Guardar..."
  1473. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:54
  1474. msgctxt "@title:menu menubar:file"
  1475. msgid "&Export..."
  1476. msgstr "&Exportar..."
  1477. #: /home/ruben/Projects/Cura/resources/qml/Menus/FileMenu.qml:65
  1478. msgctxt "@action:inmenu menubar:file"
  1479. msgid "Export Selection..."
  1480. msgstr "Exportar selección..."
  1481. #: /home/ruben/Projects/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  1482. msgctxt "@title:menu menubar:file"
  1483. msgid "Open &Recent"
  1484. msgstr "Abrir &reciente"
  1485. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:25
  1486. msgctxt "@label:category menu label"
  1487. msgid "Network enabled printers"
  1488. msgstr "Impresoras de red habilitadas"
  1489. #: /home/ruben/Projects/Cura/resources/qml/Menus/PrinterMenu.qml:42
  1490. msgctxt "@label:category menu label"
  1491. msgid "Local printers"
  1492. msgstr "Impresoras locales"
  1493. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  1494. msgctxt "@header"
  1495. msgid "Configurations"
  1496. msgstr "Configuraciones"
  1497. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  1498. msgctxt "@header"
  1499. msgid "Custom"
  1500. msgstr "Personalizado"
  1501. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  1502. msgctxt "@label"
  1503. msgid "Printer"
  1504. msgstr "Impresora"
  1505. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  1506. msgctxt "@label"
  1507. msgid "Enabled"
  1508. msgstr "Habilitado"
  1509. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:251
  1510. msgctxt "@label"
  1511. msgid "Material"
  1512. msgstr "Material"
  1513. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:378
  1514. msgctxt "@label"
  1515. msgid "Use glue for better adhesion with this material combination."
  1516. msgstr "Utilice pegamento con esta combinación de materiales para lograr una mejor adhesión."
  1517. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  1518. msgctxt "@label"
  1519. msgid "Loading available configurations from the printer..."
  1520. msgstr "Cargando configuraciones disponibles desde la impresora..."
  1521. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  1522. msgctxt "@label"
  1523. msgid "The configurations are not available because the printer is disconnected."
  1524. msgstr "Las configuraciones no se encuentran disponibles porque la impresora no está conectada."
  1525. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  1526. msgctxt "@label"
  1527. msgid "Select configuration"
  1528. msgstr "Seleccionar configuración"
  1529. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  1530. msgctxt "@label"
  1531. msgid "Configurations"
  1532. msgstr "Configuraciones"
  1533. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:128
  1534. msgctxt "@label"
  1535. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  1536. msgstr "Esta configuración no se encuentra disponible porque %1 es un perfil desconocido. Visite %2 para descargar el perfil de materiales correcto."
  1537. #: /home/ruben/Projects/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:129
  1538. msgctxt "@label"
  1539. msgid "Marketplace"
  1540. msgstr "Marketplace"
  1541. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:13
  1542. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:50
  1543. msgctxt "@title:menu menubar:toplevel"
  1544. msgid "&Settings"
  1545. msgstr "A&justes"
  1546. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:15
  1547. msgctxt "@title:menu menubar:settings"
  1548. msgid "&Printer"
  1549. msgstr "&Impresora"
  1550. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:27
  1551. msgctxt "@title:menu"
  1552. msgid "&Material"
  1553. msgstr "&Material"
  1554. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:36
  1555. msgctxt "@action:inmenu"
  1556. msgid "Set as Active Extruder"
  1557. msgstr "Definir como extrusor activo"
  1558. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:42
  1559. msgctxt "@action:inmenu"
  1560. msgid "Enable Extruder"
  1561. msgstr "Habilitar extrusor"
  1562. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingsMenu.qml:49
  1563. msgctxt "@action:inmenu"
  1564. msgid "Disable Extruder"
  1565. msgstr "Deshabilitar extrusor"
  1566. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:13
  1567. msgctxt "@label:category menu label"
  1568. msgid "Material"
  1569. msgstr "Material"
  1570. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:54
  1571. msgctxt "@label:category menu label"
  1572. msgid "Favorites"
  1573. msgstr "Favoritos"
  1574. #: /home/ruben/Projects/Cura/resources/qml/Menus/MaterialMenu.qml:79
  1575. msgctxt "@label:category menu label"
  1576. msgid "Generic"
  1577. msgstr "Genérico"
  1578. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:12
  1579. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:48
  1580. msgctxt "@title:menu menubar:toplevel"
  1581. msgid "&View"
  1582. msgstr "&Ver"
  1583. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:19
  1584. msgctxt "@action:inmenu menubar:view"
  1585. msgid "&Camera position"
  1586. msgstr "&Posición de la cámara"
  1587. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:44
  1588. msgctxt "@action:inmenu menubar:view"
  1589. msgid "Camera view"
  1590. msgstr "Vista de cámara"
  1591. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:47
  1592. msgctxt "@action:inmenu menubar:view"
  1593. msgid "Perspective"
  1594. msgstr "Perspectiva"
  1595. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:59
  1596. msgctxt "@action:inmenu menubar:view"
  1597. msgid "Orthographic"
  1598. msgstr "Ortográfica"
  1599. #: /home/ruben/Projects/Cura/resources/qml/Menus/ViewMenu.qml:80
  1600. msgctxt "@action:inmenu menubar:view"
  1601. msgid "&Build plate"
  1602. msgstr "P&laca de impresión"
  1603. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  1604. msgctxt "@action:inmenu"
  1605. msgid "Visible Settings"
  1606. msgstr "Ajustes visibles"
  1607. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  1608. msgctxt "@action:inmenu"
  1609. msgid "Collapse All Categories"
  1610. msgstr "Contraer todas las categorías"
  1611. #: /home/ruben/Projects/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  1612. msgctxt "@action:inmenu"
  1613. msgid "Manage Setting Visibility..."
  1614. msgstr "Gestionar visibilidad de los ajustes..."
  1615. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:61
  1616. msgctxt "@info:status"
  1617. msgid "Calculated"
  1618. msgstr "Calculado"
  1619. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:75
  1620. msgctxt "@title:column"
  1621. msgid "Setting"
  1622. msgstr "Ajustes"
  1623. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:82
  1624. msgctxt "@title:column"
  1625. msgid "Profile"
  1626. msgstr "Perfil"
  1627. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:89
  1628. msgctxt "@title:column"
  1629. msgid "Current"
  1630. msgstr "Actual"
  1631. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfileTab.qml:97
  1632. msgctxt "@title:column"
  1633. msgid "Unit"
  1634. msgstr "Unidad"
  1635. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  1636. msgctxt "@title:tab"
  1637. msgid "Setting Visibility"
  1638. msgstr "Visibilidad de los ajustes"
  1639. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  1640. msgctxt "@label:textbox"
  1641. msgid "Check all"
  1642. msgstr "Comprobar todo"
  1643. #: /home/ruben/Projects/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1644. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1645. msgctxt "@label:textbox"
  1646. msgid "Filter..."
  1647. msgstr "Filtrar..."
  1648. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  1649. msgctxt "@title"
  1650. msgid "Information"
  1651. msgstr "Información"
  1652. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  1653. msgctxt "@title:window"
  1654. msgid "Confirm Diameter Change"
  1655. msgstr "Confirmar cambio de diámetro"
  1656. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  1657. msgctxt "@label (%1 is a number)"
  1658. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  1659. msgstr "El nuevo diámetro del filamento está ajustado en %1 mm y no es compatible con el extrusor actual. ¿Desea continuar?"
  1660. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  1661. msgctxt "@label"
  1662. msgid "Display Name"
  1663. msgstr "Mostrar nombre"
  1664. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  1665. msgctxt "@label"
  1666. msgid "Brand"
  1667. msgstr "Marca"
  1668. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  1669. msgctxt "@label"
  1670. msgid "Material Type"
  1671. msgstr "Tipo de material"
  1672. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  1673. msgctxt "@label"
  1674. msgid "Color"
  1675. msgstr "Color"
  1676. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  1677. msgctxt "@label"
  1678. msgid "Properties"
  1679. msgstr "Propiedades"
  1680. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  1681. msgctxt "@label"
  1682. msgid "Density"
  1683. msgstr "Densidad"
  1684. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  1685. msgctxt "@label"
  1686. msgid "Diameter"
  1687. msgstr "Diámetro"
  1688. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  1689. msgctxt "@label"
  1690. msgid "Filament Cost"
  1691. msgstr "Coste del filamento"
  1692. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  1693. msgctxt "@label"
  1694. msgid "Filament weight"
  1695. msgstr "Peso del filamento"
  1696. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  1697. msgctxt "@label"
  1698. msgid "Filament length"
  1699. msgstr "Longitud del filamento"
  1700. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  1701. msgctxt "@label"
  1702. msgid "Cost per Meter"
  1703. msgstr "Coste por metro"
  1704. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  1705. msgctxt "@label"
  1706. msgid "This material is linked to %1 and shares some of its properties."
  1707. msgstr "Este material está vinculado a %1 y comparte alguna de sus propiedades."
  1708. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  1709. msgctxt "@label"
  1710. msgid "Unlink Material"
  1711. msgstr "Desvincular material"
  1712. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  1713. msgctxt "@label"
  1714. msgid "Description"
  1715. msgstr "Descripción"
  1716. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  1717. msgctxt "@label"
  1718. msgid "Adhesion Information"
  1719. msgstr "Información sobre adherencia"
  1720. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  1721. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  1722. msgctxt "@label"
  1723. msgid "Print settings"
  1724. msgstr "Ajustes de impresión"
  1725. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  1726. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  1727. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:40
  1728. msgctxt "@action:button"
  1729. msgid "Activate"
  1730. msgstr "Activar"
  1731. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  1732. msgctxt "@action:button"
  1733. msgid "Create"
  1734. msgstr "Crear"
  1735. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  1736. msgctxt "@action:button"
  1737. msgid "Duplicate"
  1738. msgstr "Duplicado"
  1739. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  1740. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1741. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1742. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  1743. msgctxt "@action:button"
  1744. msgid "Remove"
  1745. msgstr "Eliminar"
  1746. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  1747. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  1748. msgctxt "@action:button"
  1749. msgid "Import"
  1750. msgstr "Importar"
  1751. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  1752. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  1753. msgctxt "@action:button"
  1754. msgid "Export"
  1755. msgstr "Exportar"
  1756. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  1757. msgctxt "@action:label"
  1758. msgid "Printer"
  1759. msgstr "Impresora"
  1760. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  1761. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:274
  1762. msgctxt "@title:window"
  1763. msgid "Confirm Remove"
  1764. msgstr "Confirmar eliminación"
  1765. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  1766. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:275
  1767. msgctxt "@label (%1 is object name)"
  1768. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  1769. msgstr "¿Seguro que desea eliminar %1? ¡Esta acción no se puede deshacer!"
  1770. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  1771. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  1772. msgctxt "@title:window"
  1773. msgid "Import Material"
  1774. msgstr "Importar material"
  1775. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  1776. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1777. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  1778. msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>"
  1779. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  1780. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1781. msgid "Successfully imported material <filename>%1</filename>"
  1782. msgstr "El material se ha importado correctamente en <filename>%1</filename>"
  1783. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  1784. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  1785. msgctxt "@title:window"
  1786. msgid "Export Material"
  1787. msgstr "Exportar material"
  1788. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  1789. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1790. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1791. msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>"
  1792. #: /home/ruben/Projects/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  1793. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1794. msgid "Successfully exported material to <filename>%1</filename>"
  1795. msgstr "El material se ha exportado correctamente a <filename>%1</filename>"
  1796. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  1797. msgctxt "@label"
  1798. msgid "Create"
  1799. msgstr "Crear"
  1800. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  1801. msgctxt "@label"
  1802. msgid "Duplicate"
  1803. msgstr "Duplicado"
  1804. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  1805. #: /home/ruben/Projects/Cura/resources/qml/Preferences/MachinesPage.qml:63
  1806. msgctxt "@action:button"
  1807. msgid "Rename"
  1808. msgstr "Cambiar nombre"
  1809. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  1810. msgctxt "@title:window"
  1811. msgid "Create Profile"
  1812. msgstr "Crear perfil"
  1813. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  1814. msgctxt "@info"
  1815. msgid "Please provide a name for this profile."
  1816. msgstr "Introduzca un nombre para este perfil."
  1817. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:260
  1818. msgctxt "@title:window"
  1819. msgid "Duplicate Profile"
  1820. msgstr "Duplicar perfil"
  1821. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:291
  1822. msgctxt "@title:window"
  1823. msgid "Rename Profile"
  1824. msgstr "Cambiar nombre de perfil"
  1825. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:304
  1826. msgctxt "@title:window"
  1827. msgid "Import Profile"
  1828. msgstr "Importar perfil"
  1829. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:333
  1830. msgctxt "@title:window"
  1831. msgid "Export Profile"
  1832. msgstr "Exportar perfil"
  1833. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:396
  1834. msgctxt "@label %1 is printer name"
  1835. msgid "Printer: %1"
  1836. msgstr "Impresora: %1"
  1837. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:554
  1838. msgctxt "@action:button"
  1839. msgid "Update profile with current settings/overrides"
  1840. msgstr "Actualizar perfil con ajustes o sobrescrituras actuales"
  1841. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:561
  1842. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:258
  1843. msgctxt "@action:button"
  1844. msgid "Discard current changes"
  1845. msgstr "Descartar cambios actuales"
  1846. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:580
  1847. msgctxt "@action:label"
  1848. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  1849. 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."
  1850. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:588
  1851. msgctxt "@action:label"
  1852. msgid "Your current settings match the selected profile."
  1853. msgstr "Los ajustes actuales coinciden con el perfil seleccionado."
  1854. #: /home/ruben/Projects/Cura/resources/qml/Preferences/ProfilesPage.qml:606
  1855. msgctxt "@title:tab"
  1856. msgid "Global Settings"
  1857. msgstr "Ajustes globales"
  1858. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:132
  1859. msgctxt "@label"
  1860. msgid "Interface"
  1861. msgstr "Interfaz"
  1862. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:143
  1863. msgctxt "@label"
  1864. msgid "Language:"
  1865. msgstr "Idioma:"
  1866. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:210
  1867. msgctxt "@label"
  1868. msgid "Currency:"
  1869. msgstr "Moneda:"
  1870. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:223
  1871. msgctxt "@label"
  1872. msgid "Theme:"
  1873. msgstr "Tema:"
  1874. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:279
  1875. msgctxt "@label"
  1876. msgid "You will need to restart the application for these changes to have effect."
  1877. msgstr "Tendrá que reiniciar la aplicación para que estos cambios tengan efecto."
  1878. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:296
  1879. msgctxt "@info:tooltip"
  1880. msgid "Slice automatically when changing settings."
  1881. msgstr "Segmentar automáticamente al cambiar los ajustes."
  1882. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:304
  1883. msgctxt "@option:check"
  1884. msgid "Slice automatically"
  1885. msgstr "Segmentar automáticamente"
  1886. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:318
  1887. msgctxt "@label"
  1888. msgid "Viewport behavior"
  1889. msgstr "Comportamiento de la ventanilla"
  1890. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:326
  1891. msgctxt "@info:tooltip"
  1892. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1893. msgstr "Resaltar en rojo las áreas del modelo sin soporte. Sin soporte, estas áreas no se imprimirán correctamente."
  1894. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:335
  1895. msgctxt "@option:check"
  1896. msgid "Display overhang"
  1897. msgstr "Mostrar voladizos"
  1898. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:343
  1899. msgctxt "@info:tooltip"
  1900. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1901. msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo"
  1902. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:348
  1903. msgctxt "@action:button"
  1904. msgid "Center camera when item is selected"
  1905. msgstr "Centrar cámara cuando se selecciona elemento"
  1906. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:358
  1907. msgctxt "@info:tooltip"
  1908. msgid "Should the default zoom behavior of cura be inverted?"
  1909. msgstr "¿Se debería invertir el comportamiento predeterminado del zoom de cura?"
  1910. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:363
  1911. msgctxt "@action:button"
  1912. msgid "Invert the direction of camera zoom."
  1913. msgstr "Invertir la dirección del zoom de la cámara."
  1914. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379
  1915. msgctxt "@info:tooltip"
  1916. msgid "Should zooming move in the direction of the mouse?"
  1917. msgstr "¿Debería moverse el zoom en la dirección del ratón?"
  1918. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:379
  1919. msgctxt "@info:tooltip"
  1920. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  1921. msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortográfica."
  1922. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:384
  1923. msgctxt "@action:button"
  1924. msgid "Zoom toward mouse direction"
  1925. msgstr "Hacer zoom en la dirección del ratón"
  1926. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:410
  1927. msgctxt "@info:tooltip"
  1928. msgid "Should models on the platform be moved so that they no longer intersect?"
  1929. msgstr "¿Deben moverse los modelos en la plataforma de modo que no se crucen?"
  1930. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:415
  1931. msgctxt "@option:check"
  1932. msgid "Ensure models are kept apart"
  1933. msgstr "Asegúrese de que los modelos están separados"
  1934. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:424
  1935. msgctxt "@info:tooltip"
  1936. msgid "Should models on the platform be moved down to touch the build plate?"
  1937. msgstr "¿Deben moverse los modelos del área de impresión de modo que no toquen la placa de impresión?"
  1938. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:429
  1939. msgctxt "@option:check"
  1940. msgid "Automatically drop models to the build plate"
  1941. msgstr "Arrastrar modelos a la placa de impresión de forma automática"
  1942. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:441
  1943. msgctxt "@info:tooltip"
  1944. msgid "Show caution message in g-code reader."
  1945. msgstr "Se muestra el mensaje de advertencia en el lector de GCode."
  1946. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:450
  1947. msgctxt "@option:check"
  1948. msgid "Caution message in g-code reader"
  1949. msgstr "Mensaje de advertencia en el lector de GCode"
  1950. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:458
  1951. msgctxt "@info:tooltip"
  1952. msgid "Should layer be forced into compatibility mode?"
  1953. msgstr "¿Debe forzarse el modo de compatibilidad de la capa?"
  1954. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:463
  1955. msgctxt "@option:check"
  1956. msgid "Force layer view compatibility mode (restart required)"
  1957. msgstr "Forzar modo de compatibilidad de la vista de capas (necesario reiniciar)"
  1958. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:473
  1959. msgctxt "@info:tooltip"
  1960. msgid "Should Cura open at the location it was closed?"
  1961. msgstr "¿Debería abrirse Cura en el lugar donde se cerró?"
  1962. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:478
  1963. msgctxt "@option:check"
  1964. msgid "Restore window position on start"
  1965. msgstr "Restaurar la posición de la ventana al inicio"
  1966. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:488
  1967. msgctxt "@info:tooltip"
  1968. msgid "What type of camera rendering should be used?"
  1969. msgstr "¿Qué tipo de renderizado de cámara debería usarse?"
  1970. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:495
  1971. msgctxt "@window:text"
  1972. msgid "Camera rendering:"
  1973. msgstr "Renderizado de cámara:"
  1974. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:506
  1975. msgid "Perspective"
  1976. msgstr "Perspectiva"
  1977. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:507
  1978. msgid "Orthographic"
  1979. msgstr "Ortográfica"
  1980. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:538
  1981. msgctxt "@label"
  1982. msgid "Opening and saving files"
  1983. msgstr "Abrir y guardar archivos"
  1984. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:545
  1985. msgctxt "@info:tooltip"
  1986. msgid "Should models be scaled to the build volume if they are too large?"
  1987. msgstr "¿Deben ajustarse los modelos al volumen de impresión si son demasiado grandes?"
  1988. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:550
  1989. msgctxt "@option:check"
  1990. msgid "Scale large models"
  1991. msgstr "Escalar modelos de gran tamaño"
  1992. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:560
  1993. msgctxt "@info:tooltip"
  1994. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  1995. msgstr "Un modelo puede mostrarse demasiado pequeño si su unidad son metros en lugar de milímetros, por ejemplo. ¿Deben escalarse estos modelos?"
  1996. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:565
  1997. msgctxt "@option:check"
  1998. msgid "Scale extremely small models"
  1999. msgstr "Escalar modelos demasiado pequeños"
  2000. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:575
  2001. msgctxt "@info:tooltip"
  2002. msgid "Should models be selected after they are loaded?"
  2003. msgstr "¿Se deberían seleccionar los modelos después de haberse cargado?"
  2004. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:580
  2005. msgctxt "@option:check"
  2006. msgid "Select models when loaded"
  2007. msgstr "Seleccionar modelos al abrirlos"
  2008. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:590
  2009. msgctxt "@info:tooltip"
  2010. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2011. msgstr "¿Debe añadirse automáticamente un prefijo basado en el nombre de la impresora al nombre del trabajo de impresión?"
  2012. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:595
  2013. msgctxt "@option:check"
  2014. msgid "Add machine prefix to job name"
  2015. msgstr "Agregar prefijo de la máquina al nombre del trabajo"
  2016. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:605
  2017. msgctxt "@info:tooltip"
  2018. msgid "Should a summary be shown when saving a project file?"
  2019. msgstr "¿Mostrar un resumen al guardar un archivo de proyecto?"
  2020. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:609
  2021. msgctxt "@option:check"
  2022. msgid "Show summary dialog when saving project"
  2023. msgstr "Mostrar un cuadro de diálogo de resumen al guardar el proyecto"
  2024. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:619
  2025. msgctxt "@info:tooltip"
  2026. msgid "Default behavior when opening a project file"
  2027. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto"
  2028. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:627
  2029. msgctxt "@window:text"
  2030. msgid "Default behavior when opening a project file: "
  2031. msgstr "Comportamiento predeterminado al abrir un archivo del proyecto: "
  2032. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:641
  2033. msgctxt "@option:openProject"
  2034. msgid "Always ask me this"
  2035. msgstr "Preguntar siempre"
  2036. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:642
  2037. msgctxt "@option:openProject"
  2038. msgid "Always open as a project"
  2039. msgstr "Abrir siempre como un proyecto"
  2040. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:643
  2041. msgctxt "@option:openProject"
  2042. msgid "Always import models"
  2043. msgstr "Importar modelos siempre"
  2044. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:679
  2045. msgctxt "@info:tooltip"
  2046. 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."
  2047. 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."
  2048. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:688
  2049. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  2050. msgctxt "@label"
  2051. msgid "Profiles"
  2052. msgstr "Perfiles"
  2053. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:693
  2054. msgctxt "@window:text"
  2055. msgid "Default behavior for changed setting values when switching to a different profile: "
  2056. msgstr "Comportamiento predeterminado para los valores modificados al cambiar a otro perfil: "
  2057. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:707
  2058. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:156
  2059. msgctxt "@option:discardOrKeep"
  2060. msgid "Always ask me this"
  2061. msgstr "Preguntar siempre"
  2062. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:708
  2063. msgctxt "@option:discardOrKeep"
  2064. msgid "Always discard changed settings"
  2065. msgstr "Descartar siempre los ajustes modificados"
  2066. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:709
  2067. msgctxt "@option:discardOrKeep"
  2068. msgid "Always transfer changed settings to new profile"
  2069. msgstr "Transferir siempre los ajustes modificados al nuevo perfil"
  2070. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:743
  2071. msgctxt "@label"
  2072. msgid "Privacy"
  2073. msgstr "Privacidad"
  2074. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:750
  2075. msgctxt "@info:tooltip"
  2076. msgid "Should Cura check for updates when the program is started?"
  2077. msgstr "¿Debe Cura buscar actualizaciones cuando se abre el programa?"
  2078. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:755
  2079. msgctxt "@option:check"
  2080. msgid "Check for updates on start"
  2081. msgstr "Buscar actualizaciones al iniciar"
  2082. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:765
  2083. msgctxt "@info:tooltip"
  2084. 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."
  2085. 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."
  2086. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:770
  2087. msgctxt "@option:check"
  2088. msgid "Send (anonymous) print information"
  2089. msgstr "Enviar información (anónima) de impresión"
  2090. #: /home/ruben/Projects/Cura/resources/qml/Preferences/GeneralPage.qml:779
  2091. msgctxt "@action:button"
  2092. msgid "More information"
  2093. msgstr "Más información"
  2094. #: /home/ruben/Projects/Cura/resources/qml/ViewsSelector.qml:50
  2095. msgctxt "@label"
  2096. msgid "View type"
  2097. msgstr "Ver tipo"
  2098. #: /home/ruben/Projects/Cura/resources/qml/ObjectSelector.qml:59
  2099. msgctxt "@label"
  2100. msgid "Object list"
  2101. msgstr "Lista de objetos"
  2102. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:42
  2103. msgctxt "@label"
  2104. msgid "There is no printer found over your network."
  2105. msgstr "No se ha encontrado ninguna impresora en su red."
  2106. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:180
  2107. msgctxt "@label"
  2108. msgid "Refresh"
  2109. msgstr "Actualizar"
  2110. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:191
  2111. msgctxt "@label"
  2112. msgid "Add printer by IP"
  2113. msgstr "Agregar impresora por IP"
  2114. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:224
  2115. msgctxt "@label"
  2116. msgid "Troubleshooting"
  2117. msgstr "Solución de problemas"
  2118. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:36
  2119. msgctxt "@label"
  2120. msgid "Ultimaker Cloud"
  2121. msgstr "Ultimaker Cloud"
  2122. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:77
  2123. msgctxt "@text"
  2124. msgid "The next generation 3D printing workflow"
  2125. msgstr "El flujo de trabajo de impresión 3D de próxima generación"
  2126. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:94
  2127. msgctxt "@text"
  2128. msgid "- Send print jobs to Ultimaker printers outside your local network"
  2129. msgstr "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local"
  2130. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:97
  2131. msgctxt "@text"
  2132. msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  2133. msgstr "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar"
  2134. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:100
  2135. msgctxt "@text"
  2136. msgid "- Get exclusive access to print profiles from leading brands"
  2137. msgstr "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes"
  2138. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:119
  2139. msgctxt "@button"
  2140. msgid "Finish"
  2141. msgstr "Finalizar"
  2142. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:128
  2143. msgctxt "@button"
  2144. msgid "Create an account"
  2145. msgstr "Crear una cuenta"
  2146. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/CloudContent.qml:138
  2147. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:68
  2148. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:48
  2149. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  2150. msgctxt "@button"
  2151. msgid "Sign in"
  2152. msgstr "Iniciar sesión"
  2153. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  2154. msgctxt "@label"
  2155. msgid "Add printer by IP address"
  2156. msgstr "Agregar impresora por dirección IP"
  2157. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  2158. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  2159. msgctxt "@label"
  2160. msgid "Enter the IP address of your printer on the network."
  2161. msgstr "Introduzca la dirección IP de la impresora en la red."
  2162. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  2163. msgctxt "@text"
  2164. msgid "Place enter your printer's IP address."
  2165. msgstr "Introduzca la dirección IP de su impresora."
  2166. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  2167. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2168. msgctxt "@text"
  2169. msgid "Please enter a valid IP address."
  2170. msgstr "Introduzca una dirección IP válida."
  2171. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  2172. msgctxt "@button"
  2173. msgid "Add"
  2174. msgstr "Agregar"
  2175. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:204
  2176. msgctxt "@label"
  2177. msgid "Could not connect to device."
  2178. msgstr "No se ha podido conectar al dispositivo."
  2179. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:208
  2180. msgctxt "@label"
  2181. msgid "The printer at this address has not responded yet."
  2182. msgstr "La impresora todavía no ha respondido en esta dirección."
  2183. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:240
  2184. msgctxt "@label"
  2185. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  2186. msgstr "No se puede agregar la impresora porque es desconocida o no aloja un grupo."
  2187. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:258
  2188. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  2189. msgctxt "@label"
  2190. msgid "Type"
  2191. msgstr "Tipo"
  2192. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:274
  2193. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  2194. msgctxt "@label"
  2195. msgid "Firmware version"
  2196. msgstr "Versión de firmware"
  2197. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:290
  2198. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  2199. msgctxt "@label"
  2200. msgid "Address"
  2201. msgstr "Dirección"
  2202. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:329
  2203. msgctxt "@button"
  2204. msgid "Back"
  2205. msgstr "Atrás"
  2206. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:342
  2207. msgctxt "@button"
  2208. msgid "Connect"
  2209. msgstr "Conectar"
  2210. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  2211. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  2212. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  2213. msgctxt "@button"
  2214. msgid "Next"
  2215. msgstr "Siguiente"
  2216. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  2217. msgctxt "@label"
  2218. msgid "Help us to improve Ultimaker Cura"
  2219. msgstr "Ayúdenos a mejorar Ultimaker Cura"
  2220. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  2221. msgctxt "@text"
  2222. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  2223. msgstr "Ultimaker Cura recopila datos anónimos para mejorar la calidad de impresión y la experiencia de usuario, entre otros:"
  2224. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  2225. msgctxt "@text"
  2226. msgid "Machine types"
  2227. msgstr "Tipos de máquina"
  2228. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  2229. msgctxt "@text"
  2230. msgid "Material usage"
  2231. msgstr "Uso de material"
  2232. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  2233. msgctxt "@text"
  2234. msgid "Number of slices"
  2235. msgstr "Número de segmentos"
  2236. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  2237. msgctxt "@text"
  2238. msgid "Print settings"
  2239. msgstr "Ajustes de impresión"
  2240. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  2241. msgctxt "@text"
  2242. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  2243. msgstr "Los datos recopilados por Ultimaker Cura no contendrán información personal."
  2244. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  2245. msgctxt "@text"
  2246. msgid "More information"
  2247. msgstr "Más información"
  2248. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  2249. msgctxt "@label"
  2250. msgid "Add a printer"
  2251. msgstr "Agregar una impresora"
  2252. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  2253. msgctxt "@label"
  2254. msgid "Add a networked printer"
  2255. msgstr "Agregar una impresora en red"
  2256. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:81
  2257. msgctxt "@label"
  2258. msgid "Add a non-networked printer"
  2259. msgstr "Agregar una impresora fuera de red"
  2260. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  2261. msgctxt "@label"
  2262. msgid "User Agreement"
  2263. msgstr "Acuerdo de usuario"
  2264. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  2265. msgctxt "@button"
  2266. msgid "Decline and close"
  2267. msgstr "Rechazar y cerrar"
  2268. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:212
  2269. msgctxt "@label"
  2270. msgid "Printer name"
  2271. msgstr "Nombre de la impresora"
  2272. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:225
  2273. msgctxt "@text"
  2274. msgid "Please give your printer a name"
  2275. msgstr "Indique un nombre para su impresora"
  2276. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  2277. msgctxt "@label"
  2278. msgid "Empty"
  2279. msgstr "Vacío"
  2280. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:24
  2281. msgctxt "@label"
  2282. msgid "What's new in Ultimaker Cura"
  2283. msgstr "Novedades en Ultimaker Cura"
  2284. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:29
  2285. msgctxt "@label"
  2286. msgid "Welcome to Ultimaker Cura"
  2287. msgstr "Le damos la bienvenida a Ultimaker Cura"
  2288. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:47
  2289. msgctxt "@text"
  2290. msgid ""
  2291. "Please follow these steps to set up\n"
  2292. "Ultimaker Cura. This will only take a few moments."
  2293. msgstr ""
  2294. "Siga estos pasos para configurar\n"
  2295. "Ultimaker Cura. Solo le llevará unos minutos."
  2296. #: /home/ruben/Projects/Cura/resources/qml/WelcomePages/WelcomeContent.qml:58
  2297. msgctxt "@button"
  2298. msgid "Get started"
  2299. msgstr "Empezar"
  2300. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:166
  2301. msgctxt "@button"
  2302. msgid "Add printer"
  2303. msgstr "Agregar impresora"
  2304. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelector.qml:182
  2305. msgctxt "@button"
  2306. msgid "Manage printers"
  2307. msgstr "Administrar impresoras"
  2308. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  2309. msgctxt "@label"
  2310. msgid "Connected printers"
  2311. msgstr "Impresoras conectadas"
  2312. #: /home/ruben/Projects/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  2313. msgctxt "@label"
  2314. msgid "Preset printers"
  2315. msgstr "Impresoras preconfiguradas"
  2316. #: /home/ruben/Projects/Cura/resources/qml/ExtruderButton.qml:16
  2317. msgctxt "@label %1 is filled in with the name of an extruder"
  2318. msgid "Print Selected Model with %1"
  2319. msgid_plural "Print Selected Models with %1"
  2320. msgstr[0] "Imprimir modelo seleccionado con %1"
  2321. msgstr[1] "Imprimir modelos seleccionados con %1"
  2322. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:27
  2323. msgctxt "@info:tooltip"
  2324. msgid "3D View"
  2325. msgstr "Vista en 3D"
  2326. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:40
  2327. msgctxt "@info:tooltip"
  2328. msgid "Front View"
  2329. msgstr "Vista frontal"
  2330. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:53
  2331. msgctxt "@info:tooltip"
  2332. msgid "Top View"
  2333. msgstr "Vista superior"
  2334. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:66
  2335. msgctxt "@info:tooltip"
  2336. msgid "Left View"
  2337. msgstr "Vista del lado izquierdo"
  2338. #: /home/ruben/Projects/Cura/resources/qml/ViewOrientationControls.qml:79
  2339. msgctxt "@info:tooltip"
  2340. msgid "Right View"
  2341. msgstr "Vista del lado derecho"
  2342. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:160
  2343. msgctxt "@label:header"
  2344. msgid "Custom profiles"
  2345. msgstr "Perfiles personalizados"
  2346. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2347. msgctxt "@label"
  2348. msgid "Profile"
  2349. msgstr "Perfil"
  2350. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:172
  2351. msgctxt "@tooltip"
  2352. msgid ""
  2353. "Some setting/override values are different from the values stored in the profile.\n"
  2354. "\n"
  2355. "Click to open the profile manager."
  2356. msgstr ""
  2357. "Algunos valores de los ajustes o sobrescrituras son distintos a los valores almacenados en el perfil.\n"
  2358. "\n"
  2359. "Haga clic para abrir el administrador de perfiles."
  2360. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2361. msgctxt "@label:Should be short"
  2362. msgid "On"
  2363. msgstr "Encendido"
  2364. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2365. msgctxt "@label:Should be short"
  2366. msgid "Off"
  2367. msgstr "Apagado"
  2368. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2369. msgctxt "@label"
  2370. msgid "Experimental"
  2371. msgstr "Experimental"
  2372. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2373. 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')"
  2374. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2375. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2376. msgstr[0] "No hay ningún perfil %1 para configuración en %2 extrusor. En su lugar se utilizará la opción predeterminada"
  2377. msgstr[1] "No hay ningún perfil %1 para configuraciones en %2 extrusores. En su lugar se utilizará la opción predeterminada"
  2378. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2379. msgctxt "@label"
  2380. msgid "Support"
  2381. msgstr "Soporte"
  2382. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2383. msgctxt "@label"
  2384. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2385. msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión."
  2386. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2387. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:248
  2388. msgctxt "@label"
  2389. msgid "Infill"
  2390. msgstr "Relleno"
  2391. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2392. msgctxt "@label"
  2393. msgid "Gradual infill"
  2394. msgstr "Relleno gradual"
  2395. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2396. msgctxt "@label"
  2397. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2398. msgstr "Un relleno gradual aumentará gradualmente la cantidad de relleno hacia arriba."
  2399. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2400. msgctxt "@tooltip"
  2401. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2402. msgstr "Ha modificado algunos ajustes del perfil. Si desea cambiarlos, hágalo en el modo personalizado."
  2403. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2404. msgctxt "@label"
  2405. msgid "Adhesion"
  2406. msgstr "Adherencia"
  2407. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2408. msgctxt "@label"
  2409. 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."
  2410. 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."
  2411. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2412. msgctxt "@button"
  2413. msgid "Recommended"
  2414. msgstr "Recomendado"
  2415. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2416. msgctxt "@button"
  2417. msgid "Custom"
  2418. msgstr "Personalizado"
  2419. #: /home/ruben/Projects/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2420. msgctxt "@label shown when we load a Gcode file"
  2421. msgid "Print setup disabled. G-code file can not be modified."
  2422. msgstr "Configuración de impresión deshabilitada. No se puede modificar el archivo GCode."
  2423. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingCategory.qml:234
  2424. msgctxt "@label"
  2425. msgid ""
  2426. "Some hidden settings use values different from their normal calculated value.\n"
  2427. "\n"
  2428. "Click to make these settings visible."
  2429. msgstr ""
  2430. "Algunos ajustes ocultos utilizan valores diferentes de los valores normales calculados.\n"
  2431. "\n"
  2432. "Haga clic para mostrar estos ajustes."
  2433. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:68
  2434. msgctxt "@label:textbox"
  2435. msgid "Search settings"
  2436. msgstr "Buscar ajustes"
  2437. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:463
  2438. msgctxt "@action:menu"
  2439. msgid "Copy value to all extruders"
  2440. msgstr "Copiar valor en todos los extrusores"
  2441. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:472
  2442. msgctxt "@action:menu"
  2443. msgid "Copy all changed values to all extruders"
  2444. msgstr "Copiar todos los valores cambiados en todos los extrusores"
  2445. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:509
  2446. msgctxt "@action:menu"
  2447. msgid "Hide this setting"
  2448. msgstr "Ocultar este ajuste"
  2449. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:522
  2450. msgctxt "@action:menu"
  2451. msgid "Don't show this setting"
  2452. msgstr "No mostrar este ajuste"
  2453. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:526
  2454. msgctxt "@action:menu"
  2455. msgid "Keep this setting visible"
  2456. msgstr "Mostrar este ajuste"
  2457. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingView.qml:545
  2458. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:441
  2459. msgctxt "@action:menu"
  2460. msgid "Configure setting visibility..."
  2461. msgstr "Configurar visibilidad de los ajustes..."
  2462. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:81
  2463. msgctxt "@label"
  2464. msgid "This setting is not used because all the settings that it influences are overridden."
  2465. msgstr "Este ajuste no se utiliza porque los ajustes a los que afecta están sobrescritos."
  2466. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:86
  2467. msgctxt "@label Header for list of settings."
  2468. msgid "Affects"
  2469. msgstr "Afecta a"
  2470. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:91
  2471. msgctxt "@label Header for list of settings."
  2472. msgid "Affected By"
  2473. msgstr "Afectado por"
  2474. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:187
  2475. msgctxt "@label"
  2476. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  2477. msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  2478. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:191
  2479. msgctxt "@label"
  2480. msgid "The value is resolved from per-extruder values "
  2481. msgstr "El valor se resuelve según los valores de los extrusores. "
  2482. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:230
  2483. msgctxt "@label"
  2484. msgid ""
  2485. "This setting has a value that is different from the profile.\n"
  2486. "\n"
  2487. "Click to restore the value of the profile."
  2488. msgstr ""
  2489. "Este ajuste tiene un valor distinto del perfil.\n"
  2490. "\n"
  2491. "Haga clic para restaurar el valor del perfil."
  2492. #: /home/ruben/Projects/Cura/resources/qml/Settings/SettingItem.qml:329
  2493. msgctxt "@label"
  2494. msgid ""
  2495. "This setting is normally calculated, but it currently has an absolute value set.\n"
  2496. "\n"
  2497. "Click to restore the calculated value."
  2498. msgstr ""
  2499. "Este ajuste se calcula normalmente pero actualmente tiene un valor absoluto establecido.\n"
  2500. "\n"
  2501. "Haga clic para restaurar el valor calculado."
  2502. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:40
  2503. msgctxt "@label"
  2504. msgid "The next generation 3D printing workflow"
  2505. msgstr "El flujo de trabajo de impresión 3D de próxima generación"
  2506. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:51
  2507. msgctxt "@text"
  2508. msgid ""
  2509. "- Send print jobs to Ultimaker printers outside your local network\n"
  2510. "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  2511. "- Get exclusive access to print profiles from leading brands"
  2512. msgstr ""
  2513. "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n"
  2514. "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n"
  2515. "- Disfrute de acceso exclusivo a perfiles de impresión de marcas líderes"
  2516. #: /home/ruben/Projects/Cura/resources/qml/Account/GeneralOperations.qml:78
  2517. msgctxt "@button"
  2518. msgid "Create account"
  2519. msgstr "Crear cuenta"
  2520. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:22
  2521. msgctxt "@label The argument is a username."
  2522. msgid "Hi %1"
  2523. msgstr "Hola, %1"
  2524. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:33
  2525. msgctxt "@button"
  2526. msgid "Ultimaker account"
  2527. msgstr "Cuenta de Ultimaker"
  2528. #: /home/ruben/Projects/Cura/resources/qml/Account/UserOperations.qml:42
  2529. msgctxt "@button"
  2530. msgid "Sign out"
  2531. msgstr "Cerrar sesión"
  2532. #: /home/ruben/Projects/Cura/resources/qml/Account/AccountWidget.qml:24
  2533. msgctxt "@action:button"
  2534. msgid "Sign in"
  2535. msgstr "Iniciar sesión"
  2536. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2537. msgctxt "@title:window"
  2538. msgid "About "
  2539. msgstr "Acerca de "
  2540. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2541. msgctxt "@label"
  2542. msgid "version: %1"
  2543. msgstr "versión: %1"
  2544. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2545. msgctxt "@label"
  2546. msgid "End-to-end solution for fused filament 3D printing."
  2547. msgstr "Solución completa para la impresión 3D de filamento fundido."
  2548. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2549. msgctxt "@info:credit"
  2550. msgid ""
  2551. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2552. "Cura proudly uses the following open source projects:"
  2553. msgstr ""
  2554. "Ultimaker B.V. ha desarrollado Cura en cooperación con la comunidad.\n"
  2555. "Cura se enorgullece de utilizar los siguientes proyectos de código abierto:"
  2556. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2557. msgctxt "@label"
  2558. msgid "Graphical user interface"
  2559. msgstr "Interfaz gráfica de usuario (GUI)"
  2560. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2561. msgctxt "@label"
  2562. msgid "Application framework"
  2563. msgstr "Entorno de la aplicación"
  2564. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2565. msgctxt "@label"
  2566. msgid "G-code generator"
  2567. msgstr "Generador de GCode"
  2568. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2569. msgctxt "@label"
  2570. msgid "Interprocess communication library"
  2571. msgstr "Biblioteca de comunicación entre procesos"
  2572. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2573. msgctxt "@label"
  2574. msgid "Programming language"
  2575. msgstr "Lenguaje de programación"
  2576. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2577. msgctxt "@label"
  2578. msgid "GUI framework"
  2579. msgstr "Entorno de la GUI"
  2580. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2581. msgctxt "@label"
  2582. msgid "GUI framework bindings"
  2583. msgstr "Enlaces del entorno de la GUI"
  2584. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2585. msgctxt "@label"
  2586. msgid "C/C++ Binding library"
  2587. msgstr "Biblioteca de enlaces C/C++"
  2588. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2589. msgctxt "@label"
  2590. msgid "Data interchange format"
  2591. msgstr "Formato de intercambio de datos"
  2592. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2593. msgctxt "@label"
  2594. msgid "Support library for scientific computing"
  2595. msgstr "Biblioteca de apoyo para cálculos científicos"
  2596. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  2597. msgctxt "@label"
  2598. msgid "Support library for faster math"
  2599. msgstr "Biblioteca de apoyo para cálculos más rápidos"
  2600. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  2601. msgctxt "@label"
  2602. msgid "Support library for handling STL files"
  2603. msgstr "Biblioteca de apoyo para gestionar archivos STL"
  2604. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  2605. msgctxt "@label"
  2606. msgid "Support library for handling planar objects"
  2607. msgstr "Biblioteca de compatibilidad para trabajar con objetos planos"
  2608. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  2609. msgctxt "@label"
  2610. msgid "Support library for handling triangular meshes"
  2611. msgstr "Biblioteca de compatibilidad para trabajar con mallas triangulares"
  2612. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  2613. msgctxt "@label"
  2614. msgid "Support library for analysis of complex networks"
  2615. msgstr "Biblioteca de compatibilidad para analizar redes complejas"
  2616. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  2617. msgctxt "@label"
  2618. msgid "Support library for handling 3MF files"
  2619. msgstr "Biblioteca de compatibilidad para trabajar con archivos 3MF"
  2620. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  2621. msgctxt "@label"
  2622. msgid "Support library for file metadata and streaming"
  2623. msgstr "Biblioteca de compatibilidad para metadatos y transmisión de archivos"
  2624. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  2625. msgctxt "@label"
  2626. msgid "Serial communication library"
  2627. msgstr "Biblioteca de comunicación en serie"
  2628. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  2629. msgctxt "@label"
  2630. msgid "ZeroConf discovery library"
  2631. msgstr "Biblioteca de detección para Zeroconf"
  2632. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  2633. msgctxt "@label"
  2634. msgid "Polygon clipping library"
  2635. msgstr "Biblioteca de recorte de polígonos"
  2636. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  2637. msgctxt "@Label"
  2638. msgid "Python HTTP library"
  2639. msgstr "Biblioteca HTTP de Python"
  2640. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  2641. msgctxt "@label"
  2642. msgid "Font"
  2643. msgstr "Fuente"
  2644. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  2645. msgctxt "@label"
  2646. msgid "SVG icons"
  2647. msgstr "Iconos SVG"
  2648. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  2649. msgctxt "@label"
  2650. msgid "Linux cross-distribution application deployment"
  2651. msgstr "Implementación de la aplicación de distribución múltiple de Linux"
  2652. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2653. msgctxt "@title:window"
  2654. msgid "Discard or Keep changes"
  2655. msgstr "Descartar o guardar cambios"
  2656. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2657. msgctxt "@text:window"
  2658. msgid ""
  2659. "You have customized some profile settings.\n"
  2660. "Would you like to keep or discard those settings?"
  2661. msgstr ""
  2662. "Ha personalizado parte de los ajustes del perfil.\n"
  2663. "¿Desea descartar los cambios o guardarlos?"
  2664. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:109
  2665. msgctxt "@title:column"
  2666. msgid "Profile settings"
  2667. msgstr "Ajustes del perfil"
  2668. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:116
  2669. msgctxt "@title:column"
  2670. msgid "Default"
  2671. msgstr "Valor predeterminado"
  2672. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  2673. msgctxt "@title:column"
  2674. msgid "Customized"
  2675. msgstr "Valor personalizado"
  2676. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  2677. msgctxt "@option:discardOrKeep"
  2678. msgid "Discard and never ask again"
  2679. msgstr "Descartar y no volver a preguntar"
  2680. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  2681. msgctxt "@option:discardOrKeep"
  2682. msgid "Keep and never ask again"
  2683. msgstr "Guardar y no volver a preguntar"
  2684. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:195
  2685. msgctxt "@action:button"
  2686. msgid "Discard"
  2687. msgstr "Descartar"
  2688. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:208
  2689. msgctxt "@action:button"
  2690. msgid "Keep"
  2691. msgstr "Guardar"
  2692. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:221
  2693. msgctxt "@action:button"
  2694. msgid "Create New Profile"
  2695. msgstr "Crear nuevo perfil"
  2696. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  2697. msgctxt "@text:window"
  2698. 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?"
  2699. 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?"
  2700. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:99
  2701. msgctxt "@action:button"
  2702. msgid "Import all as models"
  2703. msgstr "Importar todos como modelos"
  2704. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  2705. msgctxt "@title:window"
  2706. msgid "Open project file"
  2707. msgstr "Abrir archivo de proyecto"
  2708. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:93
  2709. msgctxt "@text:window"
  2710. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  2711. msgstr "Este es un archivo de proyecto Cura. ¿Le gustaría abrirlo como un proyecto o importar sus modelos?"
  2712. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:103
  2713. msgctxt "@text:window"
  2714. msgid "Remember my choice"
  2715. msgstr "Recordar mi selección"
  2716. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:122
  2717. msgctxt "@action:button"
  2718. msgid "Open as project"
  2719. msgstr "Abrir como proyecto"
  2720. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:131
  2721. msgctxt "@action:button"
  2722. msgid "Import models"
  2723. msgstr "Importar modelos"
  2724. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  2725. msgctxt "@title:window"
  2726. msgid "Save Project"
  2727. msgstr "Guardar proyecto"
  2728. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:73
  2729. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:70
  2730. msgctxt "@action:title"
  2731. msgid "Summary - Cura Project"
  2732. msgstr "Resumen: proyecto de Cura"
  2733. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  2734. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:92
  2735. msgctxt "@action:label"
  2736. msgid "Printer settings"
  2737. msgstr "Ajustes de la impresora"
  2738. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  2739. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:143
  2740. msgctxt "@action:label"
  2741. msgid "Type"
  2742. msgstr "Tipo"
  2743. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2744. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:159
  2745. msgctxt "@action:label"
  2746. msgid "Printer Group"
  2747. msgstr "Grupo de impresoras"
  2748. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  2749. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  2750. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:216
  2751. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:323
  2752. msgctxt "@action:label"
  2753. msgid "Name"
  2754. msgstr "Nombre"
  2755. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  2756. msgctxt "@action:label"
  2757. msgid "Extruder %1"
  2758. msgstr "Extrusor %1"
  2759. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  2760. msgctxt "@action:label"
  2761. msgid "%1 & material"
  2762. msgstr "%1 y material"
  2763. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  2764. msgctxt "@action:label"
  2765. msgid "Material"
  2766. msgstr "Material"
  2767. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  2768. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:180
  2769. msgctxt "@action:label"
  2770. msgid "Profile settings"
  2771. msgstr "Ajustes del perfil"
  2772. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  2773. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:246
  2774. msgctxt "@action:label"
  2775. msgid "Not in profile"
  2776. msgstr "No está en el perfil"
  2777. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  2778. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:251
  2779. msgctxt "@action:label"
  2780. msgid "%1 override"
  2781. msgid_plural "%1 overrides"
  2782. msgstr[0] "%1 sobrescrito"
  2783. msgstr[1] "%1 sobrescritos"
  2784. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  2785. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:231
  2786. msgctxt "@action:label"
  2787. msgid "Intent"
  2788. msgstr "Intent"
  2789. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:285
  2790. msgctxt "@action:label"
  2791. msgid "Don't show project summary on save again"
  2792. msgstr "No mostrar resumen de proyecto al guardar de nuevo"
  2793. #: /home/ruben/Projects/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:304
  2794. msgctxt "@action:button"
  2795. msgid "Save"
  2796. msgstr "Guardar"
  2797. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  2798. msgctxt "@action:button"
  2799. msgid "Marketplace"
  2800. msgstr "Marketplace"
  2801. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  2802. msgctxt "@title:menu menubar:toplevel"
  2803. msgid "&Edit"
  2804. msgstr "&Edición"
  2805. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:55
  2806. msgctxt "@title:menu menubar:toplevel"
  2807. msgid "E&xtensions"
  2808. msgstr "E&xtensiones"
  2809. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:89
  2810. msgctxt "@title:menu menubar:toplevel"
  2811. msgid "P&references"
  2812. msgstr "Pre&ferencias"
  2813. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:97
  2814. msgctxt "@title:menu menubar:toplevel"
  2815. msgid "&Help"
  2816. msgstr "A&yuda"
  2817. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:124
  2818. msgctxt "@title:window"
  2819. msgid "New project"
  2820. msgstr "Nuevo proyecto"
  2821. #: /home/ruben/Projects/Cura/resources/qml/MainWindow/ApplicationMenu.qml:125
  2822. msgctxt "@info:question"
  2823. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  2824. msgstr "¿Está seguro de que desea iniciar un nuevo proyecto? Esto borrará la placa de impresión y cualquier ajuste no guardado."
  2825. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:82
  2826. msgctxt "@action:inmenu"
  2827. msgid "Show Online Troubleshooting Guide"
  2828. msgstr "Mostrar Guía de resolución de problemas en línea"
  2829. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:89
  2830. msgctxt "@action:inmenu"
  2831. msgid "Toggle Full Screen"
  2832. msgstr "Alternar pantalla completa"
  2833. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:97
  2834. msgctxt "@action:inmenu"
  2835. msgid "Exit Full Screen"
  2836. msgstr "Salir de modo de pantalla completa"
  2837. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:104
  2838. msgctxt "@action:inmenu menubar:edit"
  2839. msgid "&Undo"
  2840. msgstr "Des&hacer"
  2841. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:114
  2842. msgctxt "@action:inmenu menubar:edit"
  2843. msgid "&Redo"
  2844. msgstr "&Rehacer"
  2845. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:124
  2846. msgctxt "@action:inmenu menubar:file"
  2847. msgid "&Quit"
  2848. msgstr "&Salir"
  2849. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:132
  2850. msgctxt "@action:inmenu menubar:view"
  2851. msgid "3D View"
  2852. msgstr "Vista en 3D"
  2853. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:139
  2854. msgctxt "@action:inmenu menubar:view"
  2855. msgid "Front View"
  2856. msgstr "Vista frontal"
  2857. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:146
  2858. msgctxt "@action:inmenu menubar:view"
  2859. msgid "Top View"
  2860. msgstr "Vista superior"
  2861. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:153
  2862. msgctxt "@action:inmenu menubar:view"
  2863. msgid "Left Side View"
  2864. msgstr "Vista del lado izquierdo"
  2865. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:160
  2866. msgctxt "@action:inmenu menubar:view"
  2867. msgid "Right Side View"
  2868. msgstr "Vista del lado derecho"
  2869. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:167
  2870. msgctxt "@action:inmenu"
  2871. msgid "Configure Cura..."
  2872. msgstr "Configurar Cura..."
  2873. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:174
  2874. msgctxt "@action:inmenu menubar:printer"
  2875. msgid "&Add Printer..."
  2876. msgstr "&Agregar impresora..."
  2877. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:180
  2878. msgctxt "@action:inmenu menubar:printer"
  2879. msgid "Manage Pr&inters..."
  2880. msgstr "Adm&inistrar impresoras ..."
  2881. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:187
  2882. msgctxt "@action:inmenu"
  2883. msgid "Manage Materials..."
  2884. msgstr "Administrar materiales..."
  2885. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:195
  2886. msgctxt "@action:inmenu"
  2887. msgid "Add more materials from Marketplace"
  2888. msgstr "Añadir más materiales de Marketplace"
  2889. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:202
  2890. msgctxt "@action:inmenu menubar:profile"
  2891. msgid "&Update profile with current settings/overrides"
  2892. msgstr "&Actualizar perfil con ajustes o sobrescrituras actuales"
  2893. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:210
  2894. msgctxt "@action:inmenu menubar:profile"
  2895. msgid "&Discard current changes"
  2896. msgstr "&Descartar cambios actuales"
  2897. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:222
  2898. msgctxt "@action:inmenu menubar:profile"
  2899. msgid "&Create profile from current settings/overrides..."
  2900. msgstr "&Crear perfil a partir de ajustes o sobrescrituras actuales..."
  2901. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:228
  2902. msgctxt "@action:inmenu menubar:profile"
  2903. msgid "Manage Profiles..."
  2904. msgstr "Administrar perfiles..."
  2905. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:236
  2906. msgctxt "@action:inmenu menubar:help"
  2907. msgid "Show Online &Documentation"
  2908. msgstr "Mostrar &documentación en línea"
  2909. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:244
  2910. msgctxt "@action:inmenu menubar:help"
  2911. msgid "Report a &Bug"
  2912. msgstr "Informar de un &error"
  2913. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:252
  2914. msgctxt "@action:inmenu menubar:help"
  2915. msgid "What's New"
  2916. msgstr "Novedades"
  2917. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:258
  2918. msgctxt "@action:inmenu menubar:help"
  2919. msgid "About..."
  2920. msgstr "Acerca de..."
  2921. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:265
  2922. msgctxt "@action:inmenu menubar:edit"
  2923. msgid "Delete Selected Model"
  2924. msgid_plural "Delete Selected Models"
  2925. msgstr[0] "Eliminar modelo seleccionado"
  2926. msgstr[1] "Eliminar modelos seleccionados"
  2927. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:275
  2928. msgctxt "@action:inmenu menubar:edit"
  2929. msgid "Center Selected Model"
  2930. msgid_plural "Center Selected Models"
  2931. msgstr[0] "Centrar modelo seleccionado"
  2932. msgstr[1] "Centrar modelos seleccionados"
  2933. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:284
  2934. msgctxt "@action:inmenu menubar:edit"
  2935. msgid "Multiply Selected Model"
  2936. msgid_plural "Multiply Selected Models"
  2937. msgstr[0] "Multiplicar modelo seleccionado"
  2938. msgstr[1] "Multiplicar modelos seleccionados"
  2939. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:293
  2940. msgctxt "@action:inmenu"
  2941. msgid "Delete Model"
  2942. msgstr "Eliminar modelo"
  2943. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:301
  2944. msgctxt "@action:inmenu"
  2945. msgid "Ce&nter Model on Platform"
  2946. msgstr "Ce&ntrar modelo en plataforma"
  2947. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:307
  2948. msgctxt "@action:inmenu menubar:edit"
  2949. msgid "&Group Models"
  2950. msgstr "A&grupar modelos"
  2951. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:327
  2952. msgctxt "@action:inmenu menubar:edit"
  2953. msgid "Ungroup Models"
  2954. msgstr "Desagrupar modelos"
  2955. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:337
  2956. msgctxt "@action:inmenu menubar:edit"
  2957. msgid "&Merge Models"
  2958. msgstr "Co&mbinar modelos"
  2959. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:347
  2960. msgctxt "@action:inmenu"
  2961. msgid "&Multiply Model..."
  2962. msgstr "&Multiplicar modelo..."
  2963. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:354
  2964. msgctxt "@action:inmenu menubar:edit"
  2965. msgid "Select All Models"
  2966. msgstr "Seleccionar todos los modelos"
  2967. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:364
  2968. msgctxt "@action:inmenu menubar:edit"
  2969. msgid "Clear Build Plate"
  2970. msgstr "Borrar placa de impresión"
  2971. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:374
  2972. msgctxt "@action:inmenu menubar:file"
  2973. msgid "Reload All Models"
  2974. msgstr "Recargar todos los modelos"
  2975. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:383
  2976. msgctxt "@action:inmenu menubar:edit"
  2977. msgid "Arrange All Models To All Build Plates"
  2978. msgstr "Organizar todos los modelos en todas las placas de impresión"
  2979. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:390
  2980. msgctxt "@action:inmenu menubar:edit"
  2981. msgid "Arrange All Models"
  2982. msgstr "Organizar todos los modelos"
  2983. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:398
  2984. msgctxt "@action:inmenu menubar:edit"
  2985. msgid "Arrange Selection"
  2986. msgstr "Organizar selección"
  2987. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:405
  2988. msgctxt "@action:inmenu menubar:edit"
  2989. msgid "Reset All Model Positions"
  2990. msgstr "Restablecer las posiciones de todos los modelos"
  2991. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:412
  2992. msgctxt "@action:inmenu menubar:edit"
  2993. msgid "Reset All Model Transformations"
  2994. msgstr "Restablecer las transformaciones de todos los modelos"
  2995. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:419
  2996. msgctxt "@action:inmenu menubar:file"
  2997. msgid "&Open File(s)..."
  2998. msgstr "&Abrir archivo(s)..."
  2999. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:427
  3000. msgctxt "@action:inmenu menubar:file"
  3001. msgid "&New Project..."
  3002. msgstr "&Nuevo proyecto..."
  3003. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:434
  3004. msgctxt "@action:inmenu menubar:help"
  3005. msgid "Show Configuration Folder"
  3006. msgstr "Mostrar carpeta de configuración"
  3007. #: /home/ruben/Projects/Cura/resources/qml/Actions.qml:448
  3008. msgctxt "@action:menu"
  3009. msgid "&Marketplace"
  3010. msgstr "&Marketplace"
  3011. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  3012. msgctxt "@title:window"
  3013. msgid "More information on anonymous data collection"
  3014. msgstr "Más información sobre la recopilación de datos anónimos"
  3015. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  3016. msgctxt "@text:window"
  3017. 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:"
  3018. 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:"
  3019. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  3020. msgctxt "@text:window"
  3021. msgid "I don't want to send anonymous data"
  3022. msgstr "No deseo enviar datos anónimos"
  3023. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  3024. msgctxt "@text:window"
  3025. msgid "Allow sending anonymous data"
  3026. msgstr "Permitir el envío de datos anónimos"
  3027. #: /home/ruben/Projects/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  3028. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:227
  3029. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  3030. msgctxt "@action:button"
  3031. msgid "OK"
  3032. msgstr "Aceptar"
  3033. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:19
  3034. msgctxt "@title:window"
  3035. msgid "Convert Image..."
  3036. msgstr "Convertir imagen..."
  3037. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:33
  3038. msgctxt "@info:tooltip"
  3039. msgid "The maximum distance of each pixel from \"Base.\""
  3040. msgstr "La distancia máxima de cada píxel desde la \"Base\"."
  3041. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:38
  3042. msgctxt "@action:label"
  3043. msgid "Height (mm)"
  3044. msgstr "Altura (mm)"
  3045. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:56
  3046. msgctxt "@info:tooltip"
  3047. msgid "The base height from the build plate in millimeters."
  3048. msgstr "La altura de la base desde la placa de impresión en milímetros."
  3049. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:61
  3050. msgctxt "@action:label"
  3051. msgid "Base (mm)"
  3052. msgstr "Base (mm)"
  3053. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:79
  3054. msgctxt "@info:tooltip"
  3055. msgid "The width in millimeters on the build plate."
  3056. msgstr "La anchura en milímetros en la placa de impresión."
  3057. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:84
  3058. msgctxt "@action:label"
  3059. msgid "Width (mm)"
  3060. msgstr "Anchura (mm)"
  3061. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:103
  3062. msgctxt "@info:tooltip"
  3063. msgid "The depth in millimeters on the build plate"
  3064. msgstr "La profundidad en milímetros en la placa de impresión"
  3065. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:108
  3066. msgctxt "@action:label"
  3067. msgid "Depth (mm)"
  3068. msgstr "Profundidad (mm)"
  3069. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:126
  3070. msgctxt "@info:tooltip"
  3071. 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."
  3072. 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."
  3073. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  3074. msgctxt "@item:inlistbox"
  3075. msgid "Darker is higher"
  3076. msgstr "Cuanto más oscuro más alto"
  3077. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:139
  3078. msgctxt "@item:inlistbox"
  3079. msgid "Lighter is higher"
  3080. msgstr "Cuanto más claro más alto"
  3081. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:149
  3082. msgctxt "@info:tooltip"
  3083. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  3084. 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"
  3085. " las alturas linealmente."
  3086. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  3087. msgctxt "@item:inlistbox"
  3088. msgid "Linear"
  3089. msgstr "Lineal"
  3090. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:161
  3091. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:172
  3092. msgctxt "@item:inlistbox"
  3093. msgid "Translucency"
  3094. msgstr "Translucidez"
  3095. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:171
  3096. msgctxt "@info:tooltip"
  3097. 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."
  3098. 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"
  3099. " el contraste en las regiones claras de la imagen."
  3100. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:177
  3101. msgctxt "@action:label"
  3102. msgid "1mm Transmittance (%)"
  3103. msgstr "Transmitancia de 1 mm (%)"
  3104. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:195
  3105. msgctxt "@info:tooltip"
  3106. msgid "The amount of smoothing to apply to the image."
  3107. msgstr "La cantidad de suavizado que se aplica a la imagen."
  3108. #: /home/ruben/Projects/Cura/plugins/ImageReader/ConfigUI.qml:200
  3109. msgctxt "@action:label"
  3110. msgid "Smoothing"
  3111. msgstr "Suavizado"
  3112. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  3113. msgctxt "@title:tab"
  3114. msgid "Printer"
  3115. msgstr "Impresora"
  3116. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  3117. msgctxt "@title:label"
  3118. msgid "Nozzle Settings"
  3119. msgstr "Ajustes de la tobera"
  3120. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  3121. msgctxt "@label"
  3122. msgid "Nozzle size"
  3123. msgstr "Tamaño de la tobera"
  3124. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  3125. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  3126. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  3127. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  3128. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  3129. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:88
  3130. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  3131. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:203
  3132. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:223
  3133. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:243
  3134. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  3135. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:285
  3136. msgctxt "@label"
  3137. msgid "mm"
  3138. msgstr "mm"
  3139. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  3140. msgctxt "@label"
  3141. msgid "Compatible material diameter"
  3142. msgstr "Diámetro del material compatible"
  3143. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  3144. msgctxt "@label"
  3145. msgid "Nozzle offset X"
  3146. msgstr "Desplazamiento de la tobera sobre el eje X"
  3147. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  3148. msgctxt "@label"
  3149. msgid "Nozzle offset Y"
  3150. msgstr "Desplazamiento de la tobera sobre el eje Y"
  3151. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  3152. msgctxt "@label"
  3153. msgid "Cooling Fan Number"
  3154. msgstr "Número de ventilador de enfriamiento"
  3155. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  3156. msgctxt "@title:label"
  3157. msgid "Extruder Start G-code"
  3158. msgstr "GCode inicial del extrusor"
  3159. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  3160. msgctxt "@title:label"
  3161. msgid "Extruder End G-code"
  3162. msgstr "GCode final del extrusor"
  3163. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  3164. msgctxt "@title:label"
  3165. msgid "Printer Settings"
  3166. msgstr "Ajustes de la impresora"
  3167. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  3168. msgctxt "@label"
  3169. msgid "X (Width)"
  3170. msgstr "X (anchura)"
  3171. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:84
  3172. msgctxt "@label"
  3173. msgid "Y (Depth)"
  3174. msgstr "Y (profundidad)"
  3175. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  3176. msgctxt "@label"
  3177. msgid "Z (Height)"
  3178. msgstr "Z (altura)"
  3179. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  3180. msgctxt "@label"
  3181. msgid "Build plate shape"
  3182. msgstr "Forma de la placa de impresión"
  3183. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  3184. msgctxt "@label"
  3185. msgid "Origin at center"
  3186. msgstr "Origen en el centro"
  3187. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  3188. msgctxt "@label"
  3189. msgid "Heated bed"
  3190. msgstr "Plataforma calentada"
  3191. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  3192. msgctxt "@label"
  3193. msgid "Heated build volume"
  3194. msgstr "Volumen de impresión calentado"
  3195. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  3196. msgctxt "@label"
  3197. msgid "G-code flavor"
  3198. msgstr "Tipo de GCode"
  3199. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  3200. msgctxt "@title:label"
  3201. msgid "Printhead Settings"
  3202. msgstr "Ajustes del cabezal de impresión"
  3203. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:199
  3204. msgctxt "@label"
  3205. msgid "X min"
  3206. msgstr "X mín."
  3207. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:219
  3208. msgctxt "@label"
  3209. msgid "Y min"
  3210. msgstr "Y mín."
  3211. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:239
  3212. msgctxt "@label"
  3213. msgid "X max"
  3214. msgstr "X máx."
  3215. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  3216. msgctxt "@label"
  3217. msgid "Y max"
  3218. msgstr "Y máx."
  3219. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:281
  3220. msgctxt "@label"
  3221. msgid "Gantry Height"
  3222. msgstr "Altura del puente"
  3223. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:295
  3224. msgctxt "@label"
  3225. msgid "Number of Extruders"
  3226. msgstr "Número de extrusores"
  3227. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:341
  3228. msgctxt "@label"
  3229. msgid "Shared Heater"
  3230. msgstr "Calentador compartido"
  3231. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:367
  3232. msgctxt "@title:label"
  3233. msgid "Start G-code"
  3234. msgstr "Iniciar GCode"
  3235. #: /home/ruben/Projects/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:378
  3236. msgctxt "@title:label"
  3237. msgid "End G-code"
  3238. msgstr "Finalizar GCode"
  3239. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  3240. msgctxt "@title"
  3241. msgid "Marketplace"
  3242. msgstr "Marketplace"
  3243. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  3244. msgctxt "@label"
  3245. msgid "Compatibility"
  3246. msgstr "Compatibilidad"
  3247. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  3248. msgctxt "@label:table_header"
  3249. msgid "Machine"
  3250. msgstr "Máquina"
  3251. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  3252. msgctxt "@label:table_header"
  3253. msgid "Build Plate"
  3254. msgstr "Placa de impresión"
  3255. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  3256. msgctxt "@label:table_header"
  3257. msgid "Support"
  3258. msgstr "Soporte"
  3259. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  3260. msgctxt "@label:table_header"
  3261. msgid "Quality"
  3262. msgstr "Calidad"
  3263. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  3264. msgctxt "@action:label"
  3265. msgid "Technical Data Sheet"
  3266. msgstr "Especificaciones técnicas"
  3267. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  3268. msgctxt "@action:label"
  3269. msgid "Safety Data Sheet"
  3270. msgstr "Especificaciones de seguridad"
  3271. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  3272. msgctxt "@action:label"
  3273. msgid "Printing Guidelines"
  3274. msgstr "Directrices de impresión"
  3275. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  3276. msgctxt "@action:label"
  3277. msgid "Website"
  3278. msgstr "Sitio web"
  3279. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/SmallRatingWidget.qml:27
  3280. msgctxt "@label"
  3281. msgid "ratings"
  3282. msgstr "calificaciones"
  3283. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  3284. msgctxt "@label"
  3285. msgid "Will install upon restarting"
  3286. msgstr "Se instalará después de reiniciar"
  3287. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  3288. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  3289. msgctxt "@action:button"
  3290. msgid "Update"
  3291. msgstr "Actualizar"
  3292. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  3293. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  3294. msgctxt "@action:button"
  3295. msgid "Updating"
  3296. msgstr "Actualizando"
  3297. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  3298. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  3299. msgctxt "@action:button"
  3300. msgid "Updated"
  3301. msgstr "Actualizado"
  3302. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  3303. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  3304. msgid "<a href='%1'>Log in</a> is required to update"
  3305. msgstr "<a href='%1'>Inicie sesión</a> para realizar la actualización"
  3306. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  3307. msgctxt "@action:button"
  3308. msgid "Downgrade"
  3309. msgstr "Degradar"
  3310. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  3311. msgctxt "@action:button"
  3312. msgid "Uninstall"
  3313. msgstr "Desinstalar"
  3314. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  3315. msgctxt "@info"
  3316. msgid "You will need to restart Cura before changes in packages have effect."
  3317. msgstr "Tendrá que reiniciar Cura para que los cambios de los paquetes surtan efecto."
  3318. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:45
  3319. msgctxt "@info:button"
  3320. msgid "Quit Cura"
  3321. msgstr "Salir de Cura"
  3322. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/RatingWidget.qml:54
  3323. msgctxt "@label"
  3324. msgid "You need to login first before you can rate"
  3325. msgstr "Debe iniciar sesión antes de enviar sus calificaciones"
  3326. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/RatingWidget.qml:54
  3327. msgctxt "@label"
  3328. msgid "You need to install the package before you can rate"
  3329. msgstr "Debe instalar el paquete antes de enviar sus calificaciones"
  3330. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  3331. msgctxt "@label"
  3332. msgid "Featured"
  3333. msgstr "Destacado"
  3334. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  3335. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  3336. msgctxt "@info:tooltip"
  3337. msgid "Go to Web Marketplace"
  3338. msgstr "Ir a Web Marketplace"
  3339. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  3340. msgctxt "@label"
  3341. msgid "Search materials"
  3342. msgstr "Buscar materiales"
  3343. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  3344. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  3345. msgctxt "@action:button"
  3346. msgid "Installed"
  3347. msgstr "Instalado"
  3348. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  3349. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  3350. msgid "<a href='%1'>Log in</a> is required to install or update"
  3351. msgstr "<a href='%1'>Inicie sesión</a> para realizar la instalación o la actualización"
  3352. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  3353. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  3354. msgid "<a href='%1'>Buy material spools</a>"
  3355. msgstr "<a href=”%1”>Comprar bobinas de material</a>"
  3356. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  3357. msgctxt "@action:button"
  3358. msgid "Back"
  3359. msgstr "Atrás"
  3360. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  3361. msgctxt "@action:button"
  3362. msgid "Install"
  3363. msgstr "Instalar"
  3364. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  3365. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:34
  3366. msgctxt "@title:tab"
  3367. msgid "Plugins"
  3368. msgstr "Complementos"
  3369. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  3370. msgctxt "@title:tab"
  3371. msgid "Installed"
  3372. msgstr "Instalado"
  3373. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  3374. msgctxt "@title"
  3375. msgid "Changes from your account"
  3376. msgstr "Cambios desde su cuenta"
  3377. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  3378. msgctxt "@button"
  3379. msgid "Dismiss"
  3380. msgstr "Descartar"
  3381. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  3382. msgctxt "@label"
  3383. msgid "The following packages will be added:"
  3384. msgstr "Se añadirán los siguientes paquetes:"
  3385. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:95
  3386. msgctxt "@label"
  3387. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3388. msgstr "Los siguientes paquetes no se pueden instalar debido a una versión no compatible de Cura:"
  3389. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  3390. msgctxt "@label"
  3391. msgid "You need to accept the license to install the package"
  3392. msgstr "Tiene que aceptar la licencia para instalar el paquete"
  3393. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  3394. msgctxt "@title:window"
  3395. msgid "Confirm uninstall"
  3396. msgstr "Confirmar desinstalación"
  3397. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  3398. msgctxt "@text:window"
  3399. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  3400. 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."
  3401. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  3402. msgctxt "@text:window"
  3403. msgid "Materials"
  3404. msgstr "Materiales"
  3405. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  3406. msgctxt "@text:window"
  3407. msgid "Profiles"
  3408. msgstr "Perfiles"
  3409. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  3410. msgctxt "@action:button"
  3411. msgid "Confirm"
  3412. msgstr "Confirmar"
  3413. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:93
  3414. msgctxt "@label"
  3415. msgid "Your rating"
  3416. msgstr "Su calificación"
  3417. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:101
  3418. msgctxt "@label"
  3419. msgid "Version"
  3420. msgstr "Versión"
  3421. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:108
  3422. msgctxt "@label"
  3423. msgid "Last updated"
  3424. msgstr "Última actualización"
  3425. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:115
  3426. msgctxt "@label"
  3427. msgid "Author"
  3428. msgstr "Autor"
  3429. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:122
  3430. msgctxt "@label"
  3431. msgid "Downloads"
  3432. msgstr "Descargas"
  3433. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:31
  3434. msgctxt "@description"
  3435. msgid "Get plugins and materials verified by Ultimaker"
  3436. msgstr "Obtener complementos y materiales verificados por Ultimaker"
  3437. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  3438. msgctxt "@label"
  3439. msgid "Community Contributions"
  3440. msgstr "Contribuciones de la comunidad"
  3441. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  3442. msgctxt "@label"
  3443. msgid "Community Plugins"
  3444. msgstr "Complementos de la comunidad"
  3445. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  3446. msgctxt "@label"
  3447. msgid "Generic Materials"
  3448. msgstr "Materiales genéricos"
  3449. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  3450. msgctxt "@info"
  3451. msgid "Could not connect to the Cura Package database. Please check your connection."
  3452. msgstr "No se ha podido conectar con la base de datos del Paquete Cura. Compruebe la conexión."
  3453. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:93
  3454. msgctxt "@label"
  3455. msgid "Website"
  3456. msgstr "Sitio web"
  3457. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:100
  3458. msgctxt "@label"
  3459. msgid "Email"
  3460. msgstr "Correo electrónico"
  3461. #: /home/ruben/Projects/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:16
  3462. msgctxt "@info"
  3463. msgid "Fetching packages..."
  3464. msgstr "Buscando paquetes..."
  3465. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3466. msgctxt "@title"
  3467. msgid "Build Plate Leveling"
  3468. msgstr "Nivelación de la placa de impresión"
  3469. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  3470. msgctxt "@label"
  3471. 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."
  3472. 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."
  3473. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  3474. msgctxt "@label"
  3475. 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."
  3476. 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."
  3477. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  3478. msgctxt "@action:button"
  3479. msgid "Start Build Plate Leveling"
  3480. msgstr "Iniciar nivelación de la placa de impresión"
  3481. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  3482. msgctxt "@action:button"
  3483. msgid "Move to Next Position"
  3484. msgstr "Mover a la siguiente posición"
  3485. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3486. msgctxt "@label"
  3487. msgid "Please select any upgrades made to this Ultimaker Original"
  3488. msgstr "Seleccione cualquier actualización de Ultimaker Original"
  3489. #: /home/ruben/Projects/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  3490. msgctxt "@label"
  3491. msgid "Heated Build Plate (official kit or self-built)"
  3492. msgstr "Placa de impresión caliente (kit oficial o construida por usted mismo)"
  3493. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  3494. msgctxt "@title:window"
  3495. msgid "Connect to Networked Printer"
  3496. msgstr "Conectar con la impresora en red"
  3497. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  3498. msgctxt "@label"
  3499. 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."
  3500. 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."
  3501. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  3502. msgctxt "@label"
  3503. msgid "Select your printer from the list below:"
  3504. msgstr "Seleccione la impresora en la lista siguiente:"
  3505. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  3506. msgctxt "@action:button"
  3507. msgid "Edit"
  3508. msgstr "Editar"
  3509. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  3510. msgctxt "@action:button"
  3511. msgid "Refresh"
  3512. msgstr "Actualizar"
  3513. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  3514. msgctxt "@label"
  3515. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  3516. 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>"
  3517. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  3518. msgctxt "@label"
  3519. msgid "This printer is not set up to host a group of printers."
  3520. msgstr "Esta impresora no está configurada para alojar un grupo de impresoras."
  3521. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  3522. msgctxt "@label"
  3523. msgid "This printer is the host for a group of %1 printers."
  3524. msgstr "Esta impresora aloja un grupo de %1 impresoras."
  3525. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  3526. msgctxt "@label"
  3527. msgid "The printer at this address has not yet responded."
  3528. msgstr "La impresora todavía no ha respondido en esta dirección."
  3529. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  3530. msgctxt "@action:button"
  3531. msgid "Connect"
  3532. msgstr "Conectar"
  3533. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  3534. msgctxt "@title:window"
  3535. msgid "Invalid IP address"
  3536. msgstr "Dirección IP no válida"
  3537. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  3538. msgctxt "@title:window"
  3539. msgid "Printer Address"
  3540. msgstr "Dirección de la impresora"
  3541. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:132
  3542. msgctxt "@label"
  3543. msgid "Unavailable printer"
  3544. msgstr "Impresora no disponible"
  3545. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:134
  3546. msgctxt "@label"
  3547. msgid "First available"
  3548. msgstr "Primera disponible"
  3549. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:183
  3550. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  3551. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:192
  3552. msgctxt "@label"
  3553. msgid "Glass"
  3554. msgstr "Vidrio"
  3555. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:248
  3556. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:256
  3557. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:514
  3558. msgctxt "@info"
  3559. msgid "Please update your printer's firmware to manage the queue remotely."
  3560. msgstr "Actualice el firmware de la impresora para gestionar la cola de forma remota."
  3561. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  3562. msgctxt "@title:window"
  3563. msgid "Configuration Changes"
  3564. msgstr "Cambios de configuración"
  3565. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  3566. msgctxt "@action:button"
  3567. msgid "Override"
  3568. msgstr "Anular"
  3569. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  3570. msgctxt "@label"
  3571. msgid "The assigned printer, %1, requires the following configuration change:"
  3572. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3573. msgstr[0] "Es necesario realizar el siguiente cambio de configuración en la impresora asignada %1:"
  3574. msgstr[1] "Es necesario realizar los siguientes cambios de configuración en la impresora asignada %1:"
  3575. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  3576. msgctxt "@label"
  3577. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3578. msgstr "Se ha asignado la impresora %1, pero el trabajo tiene una configuración de material desconocido."
  3579. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  3580. msgctxt "@label"
  3581. msgid "Change material %1 from %2 to %3."
  3582. msgstr "Cambiar material %1, de %2 a %3."
  3583. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  3584. msgctxt "@label"
  3585. msgid "Load %3 as material %1 (This cannot be overridden)."
  3586. msgstr "Cargar %3 como material %1 (no se puede anular)."
  3587. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  3588. msgctxt "@label"
  3589. msgid "Change print core %1 from %2 to %3."
  3590. msgstr "Cambiar print core %1, de %2 a %3."
  3591. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  3592. msgctxt "@label"
  3593. msgid "Change build plate to %1 (This cannot be overridden)."
  3594. msgstr "Cambiar la placa de impresión a %1 (no se puede anular)."
  3595. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  3596. msgctxt "@label"
  3597. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  3598. 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."
  3599. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  3600. msgctxt "@label"
  3601. msgid "Aluminum"
  3602. msgstr "Aluminio"
  3603. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  3604. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  3605. msgctxt "@label:status"
  3606. msgid "Aborted"
  3607. msgstr "Cancelado"
  3608. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  3609. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  3610. msgctxt "@label:status"
  3611. msgid "Finished"
  3612. msgstr "Terminado"
  3613. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  3614. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  3615. msgctxt "@label:status"
  3616. msgid "Preparing..."
  3617. msgstr "Preparando..."
  3618. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  3619. msgctxt "@label:status"
  3620. msgid "Aborting..."
  3621. msgstr "Cancelando..."
  3622. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  3623. msgctxt "@label:status"
  3624. msgid "Pausing..."
  3625. msgstr "Pausando..."
  3626. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  3627. msgctxt "@label:status"
  3628. msgid "Paused"
  3629. msgstr "En pausa"
  3630. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  3631. msgctxt "@label:status"
  3632. msgid "Resuming..."
  3633. msgstr "Reanudando..."
  3634. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  3635. msgctxt "@label:status"
  3636. msgid "Action required"
  3637. msgstr "Acción requerida"
  3638. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  3639. msgctxt "@label:status"
  3640. msgid "Finishes %1 at %2"
  3641. msgstr "Termina el %1 a las %2"
  3642. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:155
  3643. msgctxt "@label link to Connect and Cloud interfaces"
  3644. msgid "Manage printer"
  3645. msgstr "Administrar impresora"
  3646. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:289
  3647. msgctxt "@info"
  3648. msgid "The webcam is not available because you are monitoring a cloud printer."
  3649. msgstr "La cámara web no se encuentra disponible porque está supervisando una impresora en la nube."
  3650. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  3651. msgctxt "@label:status"
  3652. msgid "Loading..."
  3653. msgstr "Cargando..."
  3654. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  3655. msgctxt "@label:status"
  3656. msgid "Unavailable"
  3657. msgstr "No disponible"
  3658. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  3659. msgctxt "@label:status"
  3660. msgid "Unreachable"
  3661. msgstr "No se puede conectar"
  3662. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  3663. msgctxt "@label:status"
  3664. msgid "Idle"
  3665. msgstr "Sin actividad"
  3666. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:401
  3667. msgctxt "@label"
  3668. msgid "Untitled"
  3669. msgstr "Sin título"
  3670. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:422
  3671. msgctxt "@label"
  3672. msgid "Anonymous"
  3673. msgstr "Anónimo"
  3674. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:449
  3675. msgctxt "@label:status"
  3676. msgid "Requires configuration changes"
  3677. msgstr "Debe cambiar la configuración"
  3678. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:487
  3679. msgctxt "@action:button"
  3680. msgid "Details"
  3681. msgstr "Detalles"
  3682. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  3683. msgctxt "@label"
  3684. msgid "Move to top"
  3685. msgstr "Mover al principio"
  3686. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  3687. msgctxt "@label"
  3688. msgid "Delete"
  3689. msgstr "Borrar"
  3690. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  3691. msgctxt "@label"
  3692. msgid "Pausing..."
  3693. msgstr "Pausando..."
  3694. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  3695. msgctxt "@label"
  3696. msgid "Resuming..."
  3697. msgstr "Reanudando..."
  3698. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  3699. msgctxt "@label"
  3700. msgid "Aborting..."
  3701. msgstr "Cancelando..."
  3702. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  3703. msgctxt "@label"
  3704. msgid "Abort"
  3705. msgstr "Cancelar"
  3706. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  3707. msgctxt "@label %1 is the name of a print job."
  3708. msgid "Are you sure you want to move %1 to the top of the queue?"
  3709. msgstr "¿Seguro que desea mover %1 al principio de la cola?"
  3710. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  3711. msgctxt "@window:title"
  3712. msgid "Move print job to top"
  3713. msgstr "Mover trabajo de impresión al principio"
  3714. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  3715. msgctxt "@label %1 is the name of a print job."
  3716. msgid "Are you sure you want to delete %1?"
  3717. msgstr "¿Seguro que desea borrar %1?"
  3718. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  3719. msgctxt "@window:title"
  3720. msgid "Delete print job"
  3721. msgstr "Borrar trabajo de impresión"
  3722. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  3723. msgctxt "@label %1 is the name of a print job."
  3724. msgid "Are you sure you want to abort %1?"
  3725. msgstr "¿Seguro que desea cancelar %1?"
  3726. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  3727. msgctxt "@title:window"
  3728. msgid "Print over network"
  3729. msgstr "Imprimir a través de la red"
  3730. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  3731. msgctxt "@action:button"
  3732. msgid "Print"
  3733. msgstr "Imprimir"
  3734. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  3735. msgctxt "@label"
  3736. msgid "Printer selection"
  3737. msgstr "Selección de la impresora"
  3738. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  3739. msgctxt "@label"
  3740. msgid "Queued"
  3741. msgstr "En cola"
  3742. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:67
  3743. msgctxt "@label link to connect manager"
  3744. msgid "Manage in browser"
  3745. msgstr "Gestionar en el navegador"
  3746. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:100
  3747. msgctxt "@label"
  3748. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3749. msgstr "No hay trabajos de impresión en la cola. Segmentar y enviar un trabajo para añadir uno."
  3750. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:115
  3751. msgctxt "@label"
  3752. msgid "Print jobs"
  3753. msgstr "Trabajos de impresión"
  3754. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:131
  3755. msgctxt "@label"
  3756. msgid "Total print time"
  3757. msgstr "Tiempo de impresión total"
  3758. #: /home/ruben/Projects/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:147
  3759. msgctxt "@label"
  3760. msgid "Waiting for"
  3761. msgstr "Esperando"
  3762. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:14
  3763. msgctxt "@title:window"
  3764. msgid "Open Project"
  3765. msgstr "Abrir proyecto"
  3766. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:58
  3767. msgctxt "@action:ComboBox Update/override existing profile"
  3768. msgid "Update existing"
  3769. msgstr "Actualizar existente"
  3770. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:59
  3771. msgctxt "@action:ComboBox Save settings in a new profile"
  3772. msgid "Create new"
  3773. msgstr "Crear nuevo"
  3774. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:108
  3775. msgctxt "@info:tooltip"
  3776. msgid "How should the conflict in the machine be resolved?"
  3777. msgstr "¿Cómo debería solucionarse el conflicto en la máquina?"
  3778. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:115
  3779. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:124
  3780. msgctxt "@action:ComboBox option"
  3781. msgid "Update"
  3782. msgstr "Actualizar"
  3783. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:116
  3784. msgctxt "@action:ComboBox option"
  3785. msgid "Create new"
  3786. msgstr "Crear nuevo"
  3787. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:196
  3788. msgctxt "@info:tooltip"
  3789. msgid "How should the conflict in the profile be resolved?"
  3790. msgstr "¿Cómo debería solucionarse el conflicto en el perfil?"
  3791. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:262
  3792. msgctxt "@action:label"
  3793. msgid "Derivative from"
  3794. msgstr "Derivado de"
  3795. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:267
  3796. msgctxt "@action:label"
  3797. msgid "%1, %2 override"
  3798. msgid_plural "%1, %2 overrides"
  3799. msgstr[0] "%1, %2 sobrescrito"
  3800. msgstr[1] "%1, %2 sobrescritos"
  3801. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:283
  3802. msgctxt "@action:label"
  3803. msgid "Material settings"
  3804. msgstr "Ajustes del material"
  3805. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:299
  3806. msgctxt "@info:tooltip"
  3807. msgid "How should the conflict in the material be resolved?"
  3808. msgstr "¿Cómo debería solucionarse el conflicto en el material?"
  3809. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:342
  3810. msgctxt "@action:label"
  3811. msgid "Setting visibility"
  3812. msgstr "Visibilidad de los ajustes"
  3813. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:351
  3814. msgctxt "@action:label"
  3815. msgid "Mode"
  3816. msgstr "Modo"
  3817. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:367
  3818. msgctxt "@action:label"
  3819. msgid "Visible settings:"
  3820. msgstr "Ajustes visibles:"
  3821. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:372
  3822. msgctxt "@action:label"
  3823. msgid "%1 out of %2"
  3824. msgstr "%1 de un total de %2"
  3825. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  3826. msgctxt "@action:warning"
  3827. msgid "Loading a project will clear all models on the build plate."
  3828. msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  3829. #: /home/ruben/Projects/Cura/plugins/3MFReader/WorkspaceDialog.qml:416
  3830. msgctxt "@action:button"
  3831. msgid "Open"
  3832. msgstr "Abrir"
  3833. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:45
  3834. msgctxt "@label"
  3835. msgid "Mesh Type"
  3836. msgstr "Tipo de malla"
  3837. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:87
  3838. msgctxt "@label"
  3839. msgid "Normal model"
  3840. msgstr "Modelo normal"
  3841. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:99
  3842. msgctxt "@label"
  3843. msgid "Print as support"
  3844. msgstr "Imprimir como soporte"
  3845. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  3846. msgctxt "@label"
  3847. msgid "Modify settings for overlaps"
  3848. msgstr "Modificar los ajustes de las superposiciones"
  3849. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:123
  3850. msgctxt "@label"
  3851. msgid "Don't support overlaps"
  3852. msgstr "No es compatible con superposiciones"
  3853. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:147
  3854. msgctxt "@action:checkbox"
  3855. msgid "Infill only"
  3856. msgstr "Solo relleno"
  3857. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:368
  3858. msgctxt "@action:button"
  3859. msgid "Select settings"
  3860. msgstr "Seleccionar ajustes"
  3861. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  3862. msgctxt "@title:window"
  3863. msgid "Select Settings to Customize for this model"
  3864. msgstr "Seleccionar ajustes o personalizar este modelo"
  3865. #: /home/ruben/Projects/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:70
  3866. msgctxt "@label:checkbox"
  3867. msgid "Show all"
  3868. msgstr "Mostrar todo"
  3869. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  3870. msgctxt "@title:window"
  3871. msgid "Post Processing Plugin"
  3872. msgstr "Complemento de posprocesamiento"
  3873. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  3874. msgctxt "@label"
  3875. msgid "Post Processing Scripts"
  3876. msgstr "Secuencias de comandos de posprocesamiento"
  3877. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  3878. msgctxt "@action"
  3879. msgid "Add a script"
  3880. msgstr "Añadir secuencia de comando"
  3881. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  3882. msgctxt "@label"
  3883. msgid "Settings"
  3884. msgstr "Ajustes"
  3885. #: /home/ruben/Projects/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:493
  3886. msgctxt "@info:tooltip"
  3887. msgid "Change active post-processing scripts"
  3888. msgstr "Cambia las secuencias de comandos de posprocesamiento"
  3889. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  3890. msgctxt "@title"
  3891. msgid "Update Firmware"
  3892. msgstr "Actualizar firmware"
  3893. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  3894. msgctxt "@label"
  3895. 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."
  3896. 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."
  3897. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  3898. msgctxt "@label"
  3899. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3900. msgstr "El firmware que se envía con las nuevas impresoras funciona, pero las nuevas versiones suelen tener más funciones y mejoras."
  3901. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  3902. msgctxt "@action:button"
  3903. msgid "Automatically upgrade Firmware"
  3904. msgstr "Actualización de firmware automática"
  3905. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  3906. msgctxt "@action:button"
  3907. msgid "Upload custom Firmware"
  3908. msgstr "Cargar firmware personalizado"
  3909. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  3910. msgctxt "@label"
  3911. msgid "Firmware can not be updated because there is no connection with the printer."
  3912. msgstr "No se puede actualizar el firmware porque no hay conexión con la impresora."
  3913. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  3914. msgctxt "@label"
  3915. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  3916. msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware."
  3917. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  3918. msgctxt "@title:window"
  3919. msgid "Select custom firmware"
  3920. msgstr "Seleccionar firmware personalizado"
  3921. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  3922. msgctxt "@title:window"
  3923. msgid "Firmware Update"
  3924. msgstr "Actualización del firmware"
  3925. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  3926. msgctxt "@label"
  3927. msgid "Updating firmware."
  3928. msgstr "Actualización del firmware."
  3929. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  3930. msgctxt "@label"
  3931. msgid "Firmware update completed."
  3932. msgstr "Actualización del firmware completada."
  3933. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  3934. msgctxt "@label"
  3935. msgid "Firmware update failed due to an unknown error."
  3936. msgstr "Se ha producido un error al actualizar el firmware debido a un error desconocido."
  3937. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  3938. msgctxt "@label"
  3939. msgid "Firmware update failed due to an communication error."
  3940. msgstr "Se ha producido un error al actualizar el firmware debido a un error de comunicación."
  3941. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  3942. msgctxt "@label"
  3943. msgid "Firmware update failed due to an input/output error."
  3944. msgstr "Se ha producido un error al actualizar el firmware debido a un error de entrada/salida."
  3945. #: /home/ruben/Projects/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  3946. msgctxt "@label"
  3947. msgid "Firmware update failed due to missing firmware."
  3948. msgstr "Se ha producido un error al actualizar el firmware porque falta el firmware."
  3949. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:100
  3950. msgctxt "@info"
  3951. msgid ""
  3952. "Please make sure your printer has a connection:\n"
  3953. "- Check if the printer is turned on.\n"
  3954. "- Check if the printer is connected to the network.\n"
  3955. "- Check if you are signed in to discover cloud-connected printers."
  3956. msgstr ""
  3957. "Asegúrese de que la impresora está conectada:\n"
  3958. "- Compruebe que la impresora está encendida.\n"
  3959. "- Compruebe que la impresora está conectada a la red.\n"
  3960. "- Compruebe que ha iniciado sesión para ver impresoras conectadas a la nube."
  3961. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:117
  3962. msgctxt "@info"
  3963. msgid "Please connect your printer to the network."
  3964. msgstr "Conecte su impresora a la red."
  3965. #: /home/ruben/Projects/Cura/plugins/MonitorStage/MonitorMain.qml:156
  3966. msgctxt "@label link to technical assistance"
  3967. msgid "View user manuals online"
  3968. msgstr "Ver manuales de usuario en línea"
  3969. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  3970. msgctxt "@button"
  3971. msgid "Want more?"
  3972. msgstr "¿Desea obtener más información?"
  3973. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  3974. msgctxt "@button"
  3975. msgid "Backup Now"
  3976. msgstr "Realizar copia de seguridad ahora"
  3977. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  3978. msgctxt "@checkbox:description"
  3979. msgid "Auto Backup"
  3980. msgstr "Copia de seguridad automática"
  3981. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  3982. msgctxt "@checkbox:description"
  3983. msgid "Automatically create a backup each day that Cura is started."
  3984. msgstr "Crea una copia de seguridad de forma automática cada día que inicia Cura."
  3985. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  3986. msgctxt "@backuplist:label"
  3987. msgid "Cura Version"
  3988. msgstr "Versión de Cura"
  3989. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  3990. msgctxt "@backuplist:label"
  3991. msgid "Machines"
  3992. msgstr "Máquinas"
  3993. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  3994. msgctxt "@backuplist:label"
  3995. msgid "Materials"
  3996. msgstr "Materiales"
  3997. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  3998. msgctxt "@backuplist:label"
  3999. msgid "Profiles"
  4000. msgstr "Perfiles"
  4001. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  4002. msgctxt "@backuplist:label"
  4003. msgid "Plugins"
  4004. msgstr "Complementos"
  4005. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  4006. msgctxt "@button"
  4007. msgid "Restore"
  4008. msgstr "Restaurar"
  4009. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  4010. msgctxt "@dialog:title"
  4011. msgid "Delete Backup"
  4012. msgstr "Eliminar copia de seguridad"
  4013. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  4014. msgctxt "@dialog:info"
  4015. msgid "Are you sure you want to delete this backup? This cannot be undone."
  4016. msgstr "¿Seguro que desea eliminar esta copia de seguridad? Esta acción no se puede deshacer."
  4017. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  4018. msgctxt "@dialog:title"
  4019. msgid "Restore Backup"
  4020. msgstr "Restaurar copia de seguridad"
  4021. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  4022. msgctxt "@dialog:info"
  4023. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  4024. msgstr "Deberá reiniciar Cura para restaurar su copia de seguridad. ¿Desea cerrar Cura ahora?"
  4025. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/main.qml:25
  4026. msgctxt "@title:window"
  4027. msgid "Cura Backups"
  4028. msgstr "Copias de seguridad de Cura"
  4029. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  4030. msgctxt "@title"
  4031. msgid "My Backups"
  4032. msgstr "Mis copias de seguridad"
  4033. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  4034. msgctxt "@empty_state"
  4035. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  4036. msgstr "Actualmente no posee ninguna copia de seguridad. Utilice el botón de Realizar copia de seguridad ahora para crear una."
  4037. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  4038. msgctxt "@backup_limit_info"
  4039. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  4040. 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."
  4041. #: /home/ruben/Projects/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  4042. msgctxt "@description"
  4043. msgid "Backup and synchronize your Cura settings."
  4044. msgstr "Realice una copia de seguridad y sincronice sus ajustes de Cura."
  4045. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  4046. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  4047. msgctxt "@label"
  4048. msgid "Color scheme"
  4049. msgstr "Combinación de colores"
  4050. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:107
  4051. msgctxt "@label:listbox"
  4052. msgid "Material Color"
  4053. msgstr "Color del material"
  4054. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:111
  4055. msgctxt "@label:listbox"
  4056. msgid "Line Type"
  4057. msgstr "Tipo de línea"
  4058. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:115
  4059. msgctxt "@label:listbox"
  4060. msgid "Feedrate"
  4061. msgstr "Velocidad"
  4062. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:119
  4063. msgctxt "@label:listbox"
  4064. msgid "Layer thickness"
  4065. msgstr "Grosor de la capa"
  4066. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:156
  4067. msgctxt "@label"
  4068. msgid "Compatibility Mode"
  4069. msgstr "Modo de compatibilidad"
  4070. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:230
  4071. msgctxt "@label"
  4072. msgid "Travels"
  4073. msgstr "Desplazamientos"
  4074. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:236
  4075. msgctxt "@label"
  4076. msgid "Helpers"
  4077. msgstr "Asistentes"
  4078. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:242
  4079. msgctxt "@label"
  4080. msgid "Shell"
  4081. msgstr "Perímetro"
  4082. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:298
  4083. msgctxt "@label"
  4084. msgid "Only Show Top Layers"
  4085. msgstr "Mostrar solo capas superiores"
  4086. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:308
  4087. msgctxt "@label"
  4088. msgid "Show 5 Detailed Layers On Top"
  4089. msgstr "Mostrar cinco capas detalladas en la parte superior"
  4090. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:322
  4091. msgctxt "@label"
  4092. msgid "Top / Bottom"
  4093. msgstr "Superior o inferior"
  4094. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:326
  4095. msgctxt "@label"
  4096. msgid "Inner Wall"
  4097. msgstr "Pared interior"
  4098. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:384
  4099. msgctxt "@label"
  4100. msgid "min"
  4101. msgstr "mín."
  4102. #: /home/ruben/Projects/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:433
  4103. msgctxt "@label"
  4104. msgid "max"
  4105. msgstr "máx."
  4106. #: /home/ruben/Projects/Cura/plugins/ModelChecker/ModelChecker.qml:22
  4107. msgctxt "@info:tooltip"
  4108. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  4109. msgstr "Algunos elementos pueden causar problemas durante la impresión. Haga clic para ver consejos sobre cómo ajustarlos."
  4110. #: CuraProfileReader/plugin.json
  4111. msgctxt "description"
  4112. msgid "Provides support for importing Cura profiles."
  4113. msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  4114. #: CuraProfileReader/plugin.json
  4115. msgctxt "name"
  4116. msgid "Cura Profile Reader"
  4117. msgstr "Lector de perfiles de Cura"
  4118. #: SliceInfoPlugin/plugin.json
  4119. msgctxt "description"
  4120. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4121. msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  4122. #: SliceInfoPlugin/plugin.json
  4123. msgctxt "name"
  4124. msgid "Slice info"
  4125. msgstr "Info de la segmentación"
  4126. #: ImageReader/plugin.json
  4127. msgctxt "description"
  4128. msgid "Enables ability to generate printable geometry from 2D image files."
  4129. msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  4130. #: ImageReader/plugin.json
  4131. msgctxt "name"
  4132. msgid "Image Reader"
  4133. msgstr "Lector de imágenes"
  4134. #: MachineSettingsAction/plugin.json
  4135. msgctxt "description"
  4136. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4137. msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  4138. #: MachineSettingsAction/plugin.json
  4139. msgctxt "name"
  4140. msgid "Machine Settings action"
  4141. msgstr "Acción Ajustes de la máquina"
  4142. #: RemovableDriveOutputDevice/plugin.json
  4143. msgctxt "description"
  4144. msgid "Provides removable drive hotplugging and writing support."
  4145. msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  4146. #: RemovableDriveOutputDevice/plugin.json
  4147. msgctxt "name"
  4148. msgid "Removable Drive Output Device Plugin"
  4149. msgstr "Complemento de dispositivo de salida de unidad extraíble"
  4150. #: Toolbox/plugin.json
  4151. msgctxt "description"
  4152. msgid "Find, manage and install new Cura packages."
  4153. msgstr "Buscar, administrar e instalar nuevos paquetes de Cura."
  4154. #: Toolbox/plugin.json
  4155. msgctxt "name"
  4156. msgid "Toolbox"
  4157. msgstr "Cuadro de herramientas"
  4158. #: AMFReader/plugin.json
  4159. msgctxt "description"
  4160. msgid "Provides support for reading AMF files."
  4161. msgstr "Proporciona asistencia para leer archivos AMF."
  4162. #: AMFReader/plugin.json
  4163. msgctxt "name"
  4164. msgid "AMF Reader"
  4165. msgstr "Lector de AMF"
  4166. #: SolidView/plugin.json
  4167. msgctxt "description"
  4168. msgid "Provides a normal solid mesh view."
  4169. msgstr "Proporciona una vista de malla sólida normal."
  4170. #: SolidView/plugin.json
  4171. msgctxt "name"
  4172. msgid "Solid View"
  4173. msgstr "Vista de sólidos"
  4174. #: UltimakerMachineActions/plugin.json
  4175. msgctxt "description"
  4176. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4177. 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.)."
  4178. #: UltimakerMachineActions/plugin.json
  4179. msgctxt "name"
  4180. msgid "Ultimaker machine actions"
  4181. msgstr "Acciones de la máquina Ultimaker"
  4182. #: USBPrinting/plugin.json
  4183. msgctxt "description"
  4184. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4185. msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  4186. #: USBPrinting/plugin.json
  4187. msgctxt "name"
  4188. msgid "USB printing"
  4189. msgstr "Impresión USB"
  4190. #: UM3NetworkPrinting/plugin.json
  4191. msgctxt "description"
  4192. msgid "Manages network connections to Ultimaker networked printers."
  4193. msgstr "Gestiona las conexiones de red de las impresoras Ultimaker conectadas."
  4194. #: UM3NetworkPrinting/plugin.json
  4195. msgctxt "name"
  4196. msgid "Ultimaker Network Connection"
  4197. msgstr "Conexión en red de Ultimaker"
  4198. #: 3MFReader/plugin.json
  4199. msgctxt "description"
  4200. msgid "Provides support for reading 3MF files."
  4201. msgstr "Proporciona asistencia para leer archivos 3MF."
  4202. #: 3MFReader/plugin.json
  4203. msgctxt "name"
  4204. msgid "3MF Reader"
  4205. msgstr "Lector de 3MF"
  4206. #: SupportEraser/plugin.json
  4207. msgctxt "description"
  4208. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4209. msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares"
  4210. #: SupportEraser/plugin.json
  4211. msgctxt "name"
  4212. msgid "Support Eraser"
  4213. msgstr "Borrador de soporte"
  4214. #: PerObjectSettingsTool/plugin.json
  4215. msgctxt "description"
  4216. msgid "Provides the Per Model Settings."
  4217. msgstr "Proporciona los ajustes por modelo."
  4218. #: PerObjectSettingsTool/plugin.json
  4219. msgctxt "name"
  4220. msgid "Per Model Settings Tool"
  4221. msgstr "Herramienta de ajustes por modelo"
  4222. #: PreviewStage/plugin.json
  4223. msgctxt "description"
  4224. msgid "Provides a preview stage in Cura."
  4225. msgstr "Proporciona una fase de vista previa en Cura."
  4226. #: PreviewStage/plugin.json
  4227. msgctxt "name"
  4228. msgid "Preview Stage"
  4229. msgstr "Fase de vista previa"
  4230. #: XRayView/plugin.json
  4231. msgctxt "description"
  4232. msgid "Provides the X-Ray view."
  4233. msgstr "Proporciona la vista de rayos X."
  4234. #: XRayView/plugin.json
  4235. msgctxt "name"
  4236. msgid "X-Ray View"
  4237. msgstr "Vista de rayos X"
  4238. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4239. msgctxt "description"
  4240. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4241. msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0."
  4242. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4243. msgctxt "name"
  4244. msgid "Version Upgrade 3.5 to 4.0"
  4245. msgstr "Actualización de la versión 3.5 a la 4.0"
  4246. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4247. msgctxt "description"
  4248. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4249. msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7."
  4250. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4251. msgctxt "name"
  4252. msgid "Version Upgrade 2.6 to 2.7"
  4253. msgstr "Actualización de la versión 2.6 a la 2.7"
  4254. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4255. msgctxt "description"
  4256. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4257. msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  4258. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4259. msgctxt "name"
  4260. msgid "Version Upgrade 2.1 to 2.2"
  4261. msgstr "Actualización de la versión 2.1 a la 2.2"
  4262. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4263. msgctxt "description"
  4264. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4265. msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5."
  4266. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4267. msgctxt "name"
  4268. msgid "Version Upgrade 3.4 to 3.5"
  4269. msgstr "Actualización de la versión 3.4 a la 3.5"
  4270. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4271. msgctxt "description"
  4272. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4273. msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5."
  4274. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4275. msgctxt "name"
  4276. msgid "Version Upgrade 4.4 to 4.5"
  4277. msgstr "Actualización de la versión 4.4 a la 4.5"
  4278. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4279. msgctxt "description"
  4280. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4281. msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4."
  4282. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4283. msgctxt "name"
  4284. msgid "Version Upgrade 3.3 to 3.4"
  4285. msgstr "Actualización de la versión 3.3 a la 3.4"
  4286. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4287. msgctxt "description"
  4288. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4289. msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1."
  4290. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4291. msgctxt "name"
  4292. msgid "Version Upgrade 3.0 to 3.1"
  4293. msgstr "Actualización de la versión 3.0 a la 3.1"
  4294. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4295. msgctxt "description"
  4296. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4297. msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3."
  4298. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4299. msgctxt "name"
  4300. msgid "Version Upgrade 3.2 to 3.3"
  4301. msgstr "Actualización de la versión 3.2 a la 3.3"
  4302. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4303. msgctxt "description"
  4304. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4305. msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  4306. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4307. msgctxt "name"
  4308. msgid "Version Upgrade 2.2 to 2.4"
  4309. msgstr "Actualización de la versión 2.2 a la 2.4"
  4310. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4311. msgctxt "description"
  4312. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4313. msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  4314. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4315. msgctxt "name"
  4316. msgid "Version Upgrade 2.5 to 2.6"
  4317. msgstr "Actualización de la versión 2.5 a la 2.6"
  4318. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4319. msgctxt "description"
  4320. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4321. msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4."
  4322. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4323. msgctxt "name"
  4324. msgid "Version Upgrade 4.3 to 4.4"
  4325. msgstr "Actualización de la versión 4.3 a la 4.4"
  4326. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4327. msgctxt "description"
  4328. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4329. msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0."
  4330. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4331. msgctxt "name"
  4332. msgid "Version Upgrade 2.7 to 3.0"
  4333. msgstr "Actualización de la versión 2.7 a la 3.0"
  4334. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4335. msgctxt "description"
  4336. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4337. msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1."
  4338. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4339. msgctxt "name"
  4340. msgid "Version Upgrade 4.0 to 4.1"
  4341. msgstr "Actualización de la versión 4.0 a la 4.1"
  4342. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4343. msgctxt "description"
  4344. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4345. msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3."
  4346. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4347. msgctxt "name"
  4348. msgid "Version Upgrade 4.2 to 4.3"
  4349. msgstr "Actualización de la versión 4.2 a la 4.3"
  4350. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4351. msgctxt "description"
  4352. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4353. msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2."
  4354. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4355. msgctxt "name"
  4356. msgid "Version Upgrade 4.1 to 4.2"
  4357. msgstr "Actualización de la versión 4.1 a la 4.2"
  4358. #: GCodeReader/plugin.json
  4359. msgctxt "description"
  4360. msgid "Allows loading and displaying G-code files."
  4361. msgstr "Permite cargar y visualizar archivos GCode."
  4362. #: GCodeReader/plugin.json
  4363. msgctxt "name"
  4364. msgid "G-code Reader"
  4365. msgstr "Lector de GCode"
  4366. #: PostProcessingPlugin/plugin.json
  4367. msgctxt "description"
  4368. msgid "Extension that allows for user created scripts for post processing"
  4369. msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios"
  4370. #: PostProcessingPlugin/plugin.json
  4371. msgctxt "name"
  4372. msgid "Post Processing"
  4373. msgstr "Posprocesamiento"
  4374. #: CuraEngineBackend/plugin.json
  4375. msgctxt "description"
  4376. msgid "Provides the link to the CuraEngine slicing backend."
  4377. msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  4378. #: CuraEngineBackend/plugin.json
  4379. msgctxt "name"
  4380. msgid "CuraEngine Backend"
  4381. msgstr "Backend de CuraEngine"
  4382. #: LegacyProfileReader/plugin.json
  4383. msgctxt "description"
  4384. msgid "Provides support for importing profiles from legacy Cura versions."
  4385. msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  4386. #: LegacyProfileReader/plugin.json
  4387. msgctxt "name"
  4388. msgid "Legacy Cura Profile Reader"
  4389. msgstr "Lector de perfiles antiguos de Cura"
  4390. #: UFPReader/plugin.json
  4391. msgctxt "description"
  4392. msgid "Provides support for reading Ultimaker Format Packages."
  4393. msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker."
  4394. #: UFPReader/plugin.json
  4395. msgctxt "name"
  4396. msgid "UFP Reader"
  4397. msgstr "Lector de UFP"
  4398. #: GCodeProfileReader/plugin.json
  4399. msgctxt "description"
  4400. msgid "Provides support for importing profiles from g-code files."
  4401. msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  4402. #: GCodeProfileReader/plugin.json
  4403. msgctxt "name"
  4404. msgid "G-code Profile Reader"
  4405. msgstr "Lector de perfiles GCode"
  4406. #: CuraProfileWriter/plugin.json
  4407. msgctxt "description"
  4408. msgid "Provides support for exporting Cura profiles."
  4409. msgstr "Proporciona asistencia para exportar perfiles de Cura."
  4410. #: CuraProfileWriter/plugin.json
  4411. msgctxt "name"
  4412. msgid "Cura Profile Writer"
  4413. msgstr "Escritor de perfiles de Cura"
  4414. #: FirmwareUpdater/plugin.json
  4415. msgctxt "description"
  4416. msgid "Provides a machine actions for updating firmware."
  4417. msgstr "Proporciona opciones a la máquina para actualizar el firmware."
  4418. #: FirmwareUpdater/plugin.json
  4419. msgctxt "name"
  4420. msgid "Firmware Updater"
  4421. msgstr "Actualizador de firmware"
  4422. #: PrepareStage/plugin.json
  4423. msgctxt "description"
  4424. msgid "Provides a prepare stage in Cura."
  4425. msgstr "Proporciona una fase de preparación en Cura."
  4426. #: PrepareStage/plugin.json
  4427. msgctxt "name"
  4428. msgid "Prepare Stage"
  4429. msgstr "Fase de preparación"
  4430. #: TrimeshReader/plugin.json
  4431. msgctxt "description"
  4432. msgid "Provides support for reading model files."
  4433. msgstr "Proporciona asistencia para leer archivos 3D."
  4434. #: TrimeshReader/plugin.json
  4435. msgctxt "name"
  4436. msgid "Trimesh Reader"
  4437. msgstr "Lector Trimesh"
  4438. #: 3MFWriter/plugin.json
  4439. msgctxt "description"
  4440. msgid "Provides support for writing 3MF files."
  4441. msgstr "Proporciona asistencia para escribir archivos 3MF."
  4442. #: 3MFWriter/plugin.json
  4443. msgctxt "name"
  4444. msgid "3MF Writer"
  4445. msgstr "Escritor de 3MF"
  4446. #: GCodeWriter/plugin.json
  4447. msgctxt "description"
  4448. msgid "Writes g-code to a file."
  4449. msgstr "Escribe GCode en un archivo."
  4450. #: GCodeWriter/plugin.json
  4451. msgctxt "name"
  4452. msgid "G-code Writer"
  4453. msgstr "Escritor de GCode"
  4454. #: MonitorStage/plugin.json
  4455. msgctxt "description"
  4456. msgid "Provides a monitor stage in Cura."
  4457. msgstr "Proporciona una fase de supervisión en Cura."
  4458. #: MonitorStage/plugin.json
  4459. msgctxt "name"
  4460. msgid "Monitor Stage"
  4461. msgstr "Fase de supervisión"
  4462. #: XmlMaterialProfile/plugin.json
  4463. msgctxt "description"
  4464. msgid "Provides capabilities to read and write XML-based material profiles."
  4465. msgstr "Permite leer y escribir perfiles de material basados en XML."
  4466. #: XmlMaterialProfile/plugin.json
  4467. msgctxt "name"
  4468. msgid "Material Profiles"
  4469. msgstr "Perfiles de material"
  4470. #: CuraDrive/plugin.json
  4471. msgctxt "description"
  4472. msgid "Backup and restore your configuration."
  4473. msgstr "Realice una copia de seguridad de su configuración y restáurela."
  4474. #: CuraDrive/plugin.json
  4475. msgctxt "name"
  4476. msgid "Cura Backups"
  4477. msgstr "Copias de seguridad de Cura"
  4478. #: X3DReader/plugin.json
  4479. msgctxt "description"
  4480. msgid "Provides support for reading X3D files."
  4481. msgstr "Proporciona asistencia para leer archivos X3D."
  4482. #: X3DReader/plugin.json
  4483. msgctxt "name"
  4484. msgid "X3D Reader"
  4485. msgstr "Lector de X3D"
  4486. #: SimulationView/plugin.json
  4487. msgctxt "description"
  4488. msgid "Provides the Simulation view."
  4489. msgstr "Abre la vista de simulación."
  4490. #: SimulationView/plugin.json
  4491. msgctxt "name"
  4492. msgid "Simulation View"
  4493. msgstr "Vista de simulación"
  4494. #: GCodeGzReader/plugin.json
  4495. msgctxt "description"
  4496. msgid "Reads g-code from a compressed archive."
  4497. msgstr "Lee GCode de un archivo comprimido."
  4498. #: GCodeGzReader/plugin.json
  4499. msgctxt "name"
  4500. msgid "Compressed G-code Reader"
  4501. msgstr "Lector de GCode comprimido"
  4502. #: UFPWriter/plugin.json
  4503. msgctxt "description"
  4504. msgid "Provides support for writing Ultimaker Format Packages."
  4505. msgstr "Permite la escritura de paquetes de formato Ultimaker."
  4506. #: UFPWriter/plugin.json
  4507. msgctxt "name"
  4508. msgid "UFP Writer"
  4509. msgstr "Escritor de UFP"
  4510. #: ModelChecker/plugin.json
  4511. msgctxt "description"
  4512. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4513. msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos."
  4514. #: ModelChecker/plugin.json
  4515. msgctxt "name"
  4516. msgid "Model Checker"
  4517. msgstr "Comprobador de modelos"
  4518. #: SentryLogger/plugin.json
  4519. msgctxt "description"
  4520. msgid "Logs certain events so that they can be used by the crash reporter"
  4521. msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente"
  4522. #: SentryLogger/plugin.json
  4523. msgctxt "name"
  4524. msgid "Sentry Logger"
  4525. msgstr "Registro de Sentry"
  4526. #: GCodeGzWriter/plugin.json
  4527. msgctxt "description"
  4528. msgid "Writes g-code to a compressed archive."
  4529. msgstr "Escribe GCode en un archivo comprimido."
  4530. #: GCodeGzWriter/plugin.json
  4531. msgctxt "name"
  4532. msgid "Compressed G-code Writer"
  4533. msgstr "Escritor de GCode comprimido"
  4534. #: FirmwareUpdateChecker/plugin.json
  4535. msgctxt "description"
  4536. msgid "Checks for firmware updates."
  4537. msgstr "Busca actualizaciones de firmware."
  4538. #: FirmwareUpdateChecker/plugin.json
  4539. msgctxt "name"
  4540. msgid "Firmware Update Checker"
  4541. msgstr "Buscador de actualizaciones de firmware"
  4542. #~ msgctxt "@info:title"
  4543. #~ msgid "New cloud printers found"
  4544. #~ msgstr "Se han encontrado nuevas impresoras en la nube"
  4545. #~ msgctxt "@info:message"
  4546. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  4547. #~ msgstr "Se han encontrado nuevas impresoras conectadas a tu cuenta; puedes verlas en la lista de impresoras descubiertas."
  4548. msgctxt "@info:option_text"
  4549. msgid "Do not show this message again"
  4550. msgstr "No volver a mostrar este mensaje"
  4551. #~ msgctxt "@info:status"
  4552. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  4553. #~ msgstr "Cura no muestra correctamente las capas si la impresión de alambre está habilitada"
  4554. #~ msgctxt "@label"
  4555. #~ msgid "Pre-sliced file {0}"
  4556. #~ msgstr "Archivo {0} presegmentado"
  4557. #~ msgctxt "@label"
  4558. #~ msgid ""
  4559. #~ "This plugin contains a license.\n"
  4560. #~ "You need to accept this license to install this plugin.\n"
  4561. #~ "Do you agree with the terms below?"
  4562. #~ msgstr ""
  4563. #~ "Este complemento incluye una licencia.\n"
  4564. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  4565. #~ "¿Acepta las condiciones que aparecen a continuación?"
  4566. #~ msgctxt "@action:button"
  4567. #~ msgid "Accept"
  4568. #~ msgstr "Aceptar"
  4569. #~ msgctxt "@action:button"
  4570. #~ msgid "Decline"
  4571. #~ msgstr "Rechazar"
  4572. #~ msgctxt "@action:inmenu"
  4573. #~ msgid "Show All Settings"
  4574. #~ msgstr "Mostrar todos los ajustes"
  4575. #~ msgctxt "@title:window"
  4576. #~ msgid "Ultimaker Cura"
  4577. #~ msgstr "Ultimaker Cura"
  4578. #~ msgctxt "@title:window"
  4579. #~ msgid "About Cura"
  4580. #~ msgstr "Acerca de Cura"
  4581. #~ msgctxt "@item:inmenu"
  4582. #~ msgid "Flatten active settings"
  4583. #~ msgstr "Aplanar ajustes activos"
  4584. #~ msgctxt "@info:status"
  4585. #~ msgid "Profile has been flattened & activated."
  4586. #~ msgstr "El perfil se ha aplanado y activado."
  4587. #~ msgctxt "X3g Writer Plugin Description"
  4588. #~ msgid "Writes X3g to files"
  4589. #~ msgstr "Escribe X3g en archivos"
  4590. #~ msgctxt "X3g Writer File Description"
  4591. #~ msgid "X3g File"
  4592. #~ msgstr "Archivo X3g"
  4593. #~ msgctxt "X3G Writer File Description"
  4594. #~ msgid "X3G File"
  4595. #~ msgstr "Archivo X3G"
  4596. #~ msgctxt "@item:inmenu"
  4597. #~ msgid "Profile Assistant"
  4598. #~ msgstr "Asistente del perfil"
  4599. #~ msgctxt "@item:inlistbox"
  4600. #~ msgid "Profile Assistant"
  4601. #~ msgstr "Asistente del perfil"
  4602. #~ msgctxt "@action:button"
  4603. #~ msgid "Retry"
  4604. #~ msgstr "Volver a intentar"
  4605. #~ msgctxt "@label:table_header"
  4606. #~ msgid "Print Core"
  4607. #~ msgstr "Print core"
  4608. #~ msgctxt "@label"
  4609. #~ msgid "Don't support overlap with other models"
  4610. #~ msgstr "No crear soporte en otros modelos (por superposición)"
  4611. #~ msgctxt "@label"
  4612. #~ msgid "Modify settings for overlap with other models"
  4613. #~ msgstr "Modificar ajustes de otros modelos (por superposición)"
  4614. #~ msgctxt "@label"
  4615. #~ msgid "Modify settings for infill of other models"
  4616. #~ msgstr "Modificar ajustes del relleno de otros modelos"
  4617. #~ msgctxt "@action:ComboBox option"
  4618. #~ msgid "Update existing"
  4619. #~ msgstr "Actualizar existente"
  4620. #~ msgctxt "@label"
  4621. #~ msgid "Not supported"
  4622. #~ msgstr "No compatible"
  4623. #~ msgctxt "@action:button"
  4624. #~ msgid "Previous"
  4625. #~ msgstr "Anterior"
  4626. #~ msgctxt "@label"
  4627. #~ msgid "Tip"
  4628. #~ msgstr "Consejo"
  4629. #~ msgctxt "@label"
  4630. #~ msgid "Print experiment"
  4631. #~ msgstr "Ensayo de impresión"
  4632. #~ msgctxt "@label"
  4633. #~ msgid "Checklist"
  4634. #~ msgstr "Lista de verificación"
  4635. #~ msgctxt "@label"
  4636. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  4637. #~ msgstr "Seleccione cualquier actualización de este Ultimaker 2."
  4638. #~ msgctxt "@label"
  4639. #~ msgid "Olsson Block"
  4640. #~ msgstr "Bloque Olsson"
  4641. #~ msgctxt "@window:text"
  4642. #~ msgid "Camera rendering: "
  4643. #~ msgstr "Renderizado de cámara: "
  4644. #~ msgctxt "@info:tooltip"
  4645. #~ msgid "Use multi build plate functionality"
  4646. #~ msgstr "Utilizar funcionalidad de placa de impresión múltiple"
  4647. #~ msgctxt "@option:check"
  4648. #~ msgid "Use multi build plate functionality (restart required)"
  4649. #~ msgstr "Utilizar funcionalidad de placa de impresión múltiple (reinicio requerido)"
  4650. #~ msgctxt "@label"
  4651. #~ msgid "Default profiles"
  4652. #~ msgstr "Perfiles predeterminados"
  4653. #~ msgctxt "@label:textbox"
  4654. #~ msgid "search settings"
  4655. #~ msgstr "buscar ajustes"
  4656. #~ msgctxt "@label"
  4657. #~ msgid "Layer Height"
  4658. #~ msgstr "Altura de capa"
  4659. #~ msgctxt "@tooltip"
  4660. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  4661. #~ 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."
  4662. #~ msgctxt "@tooltip"
  4663. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  4664. #~ 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"
  4665. #~ msgctxt "@title:menu"
  4666. #~ msgid "&Build plate"
  4667. #~ msgstr "&Placa de impresión"
  4668. #~ msgctxt "@title:settings"
  4669. #~ msgid "&Profile"
  4670. #~ msgstr "&Perfil"
  4671. #~ msgctxt "@action:label"
  4672. #~ msgid "Build plate"
  4673. #~ msgstr "Placa de impresión"
  4674. #~ msgctxt "description"
  4675. #~ msgid "Dump the contents of all settings to a HTML file."
  4676. #~ msgstr "Vuelva el contenido de todas las configuraciones en un archivo HTML."
  4677. #~ msgctxt "name"
  4678. #~ msgid "God Mode"
  4679. #~ msgstr "God Mode"
  4680. #~ msgctxt "description"
  4681. #~ msgid "Create a flattened quality changes profile."
  4682. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  4683. #~ msgctxt "name"
  4684. #~ msgid "Profile Flattener"
  4685. #~ msgstr "Aplanador de perfil"
  4686. #~ msgctxt "description"
  4687. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  4688. #~ msgstr "Permite a los fabricantes de material crear nuevos perfiles de material y calidad mediante una IU integrada."
  4689. #~ msgctxt "name"
  4690. #~ msgid "Print Profile Assistant"
  4691. #~ msgstr "Imprimir asistente del perfil"
  4692. #~ msgctxt "@info:status"
  4693. #~ msgid "Connected over the network."
  4694. #~ msgstr "Conectado a través de la red."
  4695. #~ msgctxt "@info:status"
  4696. #~ msgid "Connected over the network. Please approve the access request on the printer."
  4697. #~ msgstr "Conectado a través de la red. Apruebe la solicitud de acceso en la impresora."
  4698. #~ msgctxt "@info:status"
  4699. #~ msgid "Connected over the network. No access to control the printer."
  4700. #~ msgstr "Conectado a través de la red. No hay acceso para controlar la impresora."
  4701. #~ msgctxt "@info:status"
  4702. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  4703. #~ msgstr "Acceso a la impresora solicitado. Apruebe la solicitud en la impresora"
  4704. #~ msgctxt "@info:title"
  4705. #~ msgid "Authentication status"
  4706. #~ msgstr "Estado de la autenticación"
  4707. #~ msgctxt "@info:title"
  4708. #~ msgid "Authentication Status"
  4709. #~ msgstr "Estado de la autenticación"
  4710. #~ msgctxt "@info:tooltip"
  4711. #~ msgid "Re-send the access request"
  4712. #~ msgstr "Reenvía la solicitud de acceso"
  4713. #~ msgctxt "@info:status"
  4714. #~ msgid "Access to the printer accepted"
  4715. #~ msgstr "Acceso a la impresora aceptado"
  4716. #~ msgctxt "@info:status"
  4717. #~ msgid "No access to print with this printer. Unable to send print job."
  4718. #~ msgstr "No hay acceso para imprimir con esta impresora. No se puede enviar el trabajo de impresión."
  4719. #~ msgctxt "@action:button"
  4720. #~ msgid "Request Access"
  4721. #~ msgstr "Solicitar acceso"
  4722. #~ msgctxt "@info:tooltip"
  4723. #~ msgid "Send access request to the printer"
  4724. #~ msgstr "Envía la solicitud de acceso a la impresora"
  4725. #~ msgctxt "@label"
  4726. #~ msgid "Unable to start a new print job."
  4727. #~ msgstr "No se puede iniciar un nuevo trabajo de impresión."
  4728. #~ msgctxt "@label"
  4729. #~ 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."
  4730. #~ msgstr "Un problema con la configuración de Ultimaker impide iniciar la impresión. Soluciónelo antes de continuar."
  4731. #~ msgctxt "@window:title"
  4732. #~ msgid "Mismatched configuration"
  4733. #~ msgstr "Configuración desajustada"
  4734. #~ msgctxt "@label"
  4735. #~ msgid "Are you sure you wish to print with the selected configuration?"
  4736. #~ msgstr "¿Seguro que desea imprimir con la configuración seleccionada?"
  4737. #~ msgctxt "@label"
  4738. #~ 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."
  4739. #~ 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."
  4740. #~ msgctxt "@info:status"
  4741. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  4742. #~ msgstr "Envío de nuevos trabajos (temporalmente) bloqueado; se sigue enviando el trabajo de impresión previo."
  4743. #~ msgctxt "@info:status"
  4744. #~ msgid "Sending data to printer"
  4745. #~ msgstr "Enviando datos a la impresora"
  4746. #~ msgctxt "@info:title"
  4747. #~ msgid "Sending Data"
  4748. #~ msgstr "Enviando datos"
  4749. #~ msgctxt "@info:status"
  4750. #~ msgid "No Printcore loaded in slot {slot_number}"
  4751. #~ msgstr "No se ha cargado ningún PrintCore en la ranura {slot_number}."
  4752. #~ msgctxt "@info:status"
  4753. #~ msgid "No material loaded in slot {slot_number}"
  4754. #~ msgstr "No se ha cargado ningún material en la ranura {slot_number}."
  4755. #~ msgctxt "@label"
  4756. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  4757. #~ msgstr "PrintCore distinto (Cura: {cura_printcore_name}, impresora: {remote_printcore_name}) seleccionado para extrusor {extruder_id}"
  4758. #~ msgctxt "@label"
  4759. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  4760. #~ msgstr "Material distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  4761. #~ msgctxt "@window:title"
  4762. #~ msgid "Sync with your printer"
  4763. #~ msgstr "Sincronizar con la impresora"
  4764. #~ msgctxt "@label"
  4765. #~ msgid "Would you like to use your current printer configuration in Cura?"
  4766. #~ msgstr "¿Desea utilizar la configuración actual de su impresora en Cura?"
  4767. #~ msgctxt "@label"
  4768. #~ 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."
  4769. #~ 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."
  4770. #~ msgctxt "@action:button"
  4771. #~ msgid "View in Monitor"
  4772. #~ msgstr "Ver en pantalla"
  4773. #~ msgctxt "@info:status"
  4774. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  4775. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}»."
  4776. #~ msgctxt "@info:status"
  4777. #~ msgid "The print job '{job_name}' was finished."
  4778. #~ msgstr "El trabajo de impresión '{job_name}' ha terminado."
  4779. #~ msgctxt "@info:status"
  4780. #~ msgid "Print finished"
  4781. #~ msgstr "Impresión terminada"
  4782. #~ msgctxt "@label:material"
  4783. #~ msgid "Empty"
  4784. #~ msgstr "Vacío"
  4785. #~ msgctxt "@label:material"
  4786. #~ msgid "Unknown"
  4787. #~ msgstr "Desconocido"
  4788. #~ msgctxt "@info:title"
  4789. #~ msgid "Cloud error"
  4790. #~ msgstr "Error de Cloud"
  4791. #~ msgctxt "@info:status"
  4792. #~ msgid "Could not export print job."
  4793. #~ msgstr "No se ha podido exportar el trabajo de impresión."
  4794. #~ msgctxt "@info:description"
  4795. #~ msgid "There was an error connecting to the cloud."
  4796. #~ msgstr "Se ha producido un error al conectarse a la nube."
  4797. #~ msgctxt "@info:status"
  4798. #~ msgid "Uploading via Ultimaker Cloud"
  4799. #~ msgstr "Cargando a través de Ultimaker Cloud"
  4800. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  4801. #~ msgid "Connect to Ultimaker Cloud"
  4802. #~ msgstr "Conectar a Ultimaker Cloud"
  4803. #~ msgctxt "@action"
  4804. #~ msgid "Don't ask me again for this printer."
  4805. #~ msgstr "No volver a preguntarme para esta impresora."
  4806. #~ msgctxt "@info:status"
  4807. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  4808. #~ msgstr "Ahora ya puede enviar y supervisar sus trabajos de impresión desde cualquier lugar a través de su cuenta de Ultimaker."
  4809. #~ msgctxt "@info:status"
  4810. #~ msgid "Connected!"
  4811. #~ msgstr "¡Conectado!"
  4812. #~ msgctxt "@action"
  4813. #~ msgid "Review your connection"
  4814. #~ msgstr "Revise su conexión"
  4815. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  4816. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  4817. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  4818. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4819. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  4820. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>:"
  4821. #~ msgctxt "@window:title"
  4822. #~ msgid "Existing Connection"
  4823. #~ msgstr "Conexión existente"
  4824. #~ msgctxt "@message:text"
  4825. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  4826. #~ msgstr "Esta impresora o grupo de impresoras ya se ha añadido a Cura. Seleccione otra impresora o grupo de impresoras."
  4827. #~ msgctxt "@label"
  4828. #~ msgid "Enter the IP address or hostname of your printer on the network."
  4829. #~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en la red."
  4830. #~ msgctxt "@info:tooltip"
  4831. #~ msgid "Connect to a printer"
  4832. #~ msgstr "Conecta a una impresora"
  4833. #~ msgctxt "@title"
  4834. #~ msgid "Cura Settings Guide"
  4835. #~ msgstr "Guía de ajustes de Cura"
  4836. #~ msgctxt "@info:tooltip"
  4837. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  4838. #~ msgstr "Hacer zoom en la dirección del ratón no es compatible con la perspectiva ortogonal."
  4839. #~ msgid "Orthogonal"
  4840. #~ msgstr "Ortográfica"
  4841. #~ msgctxt "description"
  4842. #~ msgid "Manages network connections to Ultimaker 3 printers."
  4843. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  4844. #~ msgctxt "name"
  4845. #~ msgid "UM3 Network Connection"
  4846. #~ msgstr "Conexión de red UM3"
  4847. #~ msgctxt "description"
  4848. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  4849. #~ msgstr "Proporciona información y explicaciones adicionales sobre los ajustes de Cura con imágenes y animaciones."
  4850. #~ msgctxt "name"
  4851. #~ msgid "Settings Guide"
  4852. #~ msgstr "Guía de ajustes"
  4853. #~ msgctxt "@item:inmenu"
  4854. #~ msgid "Cura Settings Guide"
  4855. #~ msgstr "Guía de ajustes de Cura"
  4856. #~ msgctxt "@info:generic"
  4857. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  4858. #~ msgstr "La configuración se ha cambiado para que coincida con los extrusores disponibles en este momento: [%s]."
  4859. #~ msgctxt "@title:groupbox"
  4860. #~ msgid "User description"
  4861. #~ msgstr "Descripción del usuario"
  4862. #~ msgctxt "@info"
  4863. #~ msgid "These options are not available because you are monitoring a cloud printer."
  4864. #~ msgstr "Estas opciones no se encuentran disponibles porque está supervisando una impresora en la nube."
  4865. #~ msgctxt "@label link to connect manager"
  4866. #~ msgid "Go to Cura Connect"
  4867. #~ msgstr "Ir a Cura Connect"
  4868. #~ msgctxt "@info"
  4869. #~ msgid "All jobs are printed."
  4870. #~ msgstr "Se han imprimido todos los trabajos."
  4871. #~ msgctxt "@label link to connect manager"
  4872. #~ msgid "View print history"
  4873. #~ msgstr "Ver historial de impresión"
  4874. #~ msgctxt "@label"
  4875. #~ msgid ""
  4876. #~ "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"
  4877. #~ "\n"
  4878. #~ "Select your printer from the list below:"
  4879. #~ msgstr ""
  4880. #~ "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"
  4881. #~ "\n"
  4882. #~ "Seleccione la impresora de la siguiente lista:"
  4883. #~ msgctxt "@info"
  4884. #~ msgid ""
  4885. #~ "Please make sure your printer has a connection:\n"
  4886. #~ "- Check if the printer is turned on.\n"
  4887. #~ "- Check if the printer is connected to the network."
  4888. #~ msgstr ""
  4889. #~ "Asegúrese de que su impresora está conectada:\n"
  4890. #~ "- Compruebe que la impresora está encendida.\n"
  4891. #~ "- Compruebe que la impresora está conectada a la red."
  4892. #~ msgctxt "@option:check"
  4893. #~ msgid "See only current build plate"
  4894. #~ msgstr "Ver solo placa de impresión actual"
  4895. #~ msgctxt "@action:button"
  4896. #~ msgid "Arrange to all build plates"
  4897. #~ msgstr "Organizar todas las placas de impresión"
  4898. #~ msgctxt "@action:button"
  4899. #~ msgid "Arrange current build plate"
  4900. #~ msgstr "Organizar placa de impresión actual"
  4901. #~ msgctxt "description"
  4902. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  4903. #~ 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)."
  4904. #~ msgctxt "name"
  4905. #~ msgid "X3GWriter"
  4906. #~ msgstr "X3GWriter"
  4907. #~ msgctxt "description"
  4908. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  4909. #~ msgstr "Lee archivos SVG como trayectorias de herramienta para solucionar errores en los movimientos de la impresora."
  4910. #~ msgctxt "name"
  4911. #~ msgid "SVG Toolpath Reader"
  4912. #~ msgstr "Lector de trayectoria de herramienta de SVG"
  4913. #~ msgctxt "@item:inmenu"
  4914. #~ msgid "Changelog"
  4915. #~ msgstr "Registro de cambios"
  4916. #~ msgctxt "@item:inmenu"
  4917. #~ msgid "Show Changelog"
  4918. #~ msgstr "Mostrar registro de cambios"
  4919. #~ msgctxt "@info:status"
  4920. #~ msgid "Sending data to remote cluster"
  4921. #~ msgstr "Enviando datos al clúster remoto"
  4922. #~ msgctxt "@info:status"
  4923. #~ msgid "Connect to Ultimaker Cloud"
  4924. #~ msgstr "Conectar a Ultimaker Cloud"
  4925. #~ msgctxt "@info"
  4926. #~ msgid "Cura collects anonymized usage statistics."
  4927. #~ msgstr "Cura recopila estadísticas de uso de forma anónima."
  4928. #~ msgctxt "@info:title"
  4929. #~ msgid "Collecting Data"
  4930. #~ msgstr "Recopilando datos"
  4931. #~ msgctxt "@action:button"
  4932. #~ msgid "More info"
  4933. #~ msgstr "Más información"
  4934. #~ msgctxt "@action:tooltip"
  4935. #~ msgid "See more information on what data Cura sends."
  4936. #~ msgstr "Obtenga más información sobre qué datos envía Cura."
  4937. #~ msgctxt "@action:button"
  4938. #~ msgid "Allow"
  4939. #~ msgstr "Permitir"
  4940. #~ msgctxt "@action:tooltip"
  4941. #~ 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."
  4942. #~ 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."
  4943. #~ msgctxt "@item:inmenu"
  4944. #~ msgid "Evaluation"
  4945. #~ msgstr "Evaluación"
  4946. #~ msgctxt "@info:title"
  4947. #~ msgid "Network enabled printers"
  4948. #~ msgstr "Impresoras de red habilitadas"
  4949. #~ msgctxt "@info:title"
  4950. #~ msgid "Local printers"
  4951. #~ msgstr "Impresoras locales"
  4952. #~ msgctxt "@info:backup_failed"
  4953. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  4954. #~ msgstr "Se ha intentado restaurar una copia de seguridad de Cura que no coincide con la versión actual."
  4955. #~ msgctxt "@title"
  4956. #~ msgid "Machine Settings"
  4957. #~ msgstr "Ajustes de la máquina"
  4958. #~ msgctxt "@label"
  4959. #~ msgid "Printer Settings"
  4960. #~ msgstr "Ajustes de la impresora"
  4961. #~ msgctxt "@option:check"
  4962. #~ msgid "Origin at center"
  4963. #~ msgstr "Origen en el centro"
  4964. #~ msgctxt "@option:check"
  4965. #~ msgid "Heated bed"
  4966. #~ msgstr "Plataforma caliente"
  4967. #~ msgctxt "@label"
  4968. #~ msgid "Printhead Settings"
  4969. #~ msgstr "Ajustes del cabezal de impresión"
  4970. #~ msgctxt "@tooltip"
  4971. #~ 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\"."
  4972. #~ 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»."
  4973. #~ msgctxt "@tooltip"
  4974. #~ 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\"."
  4975. #~ 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»."
  4976. #~ msgctxt "@tooltip"
  4977. #~ 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\"."
  4978. #~ 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»."
  4979. #~ msgctxt "@tooltip"
  4980. #~ 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\"."
  4981. #~ 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»."
  4982. #~ msgctxt "@label"
  4983. #~ msgid "Gantry height"
  4984. #~ msgstr "Altura del caballete"
  4985. #~ msgctxt "@tooltip"
  4986. #~ 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\"."
  4987. #~ 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»."
  4988. #~ msgctxt "@label"
  4989. #~ msgid "Start G-code"
  4990. #~ msgstr "Iniciar GCode"
  4991. #~ msgctxt "@tooltip"
  4992. #~ msgid "G-code commands to be executed at the very start."
  4993. #~ msgstr "Los comandos de GCode que se ejecutarán justo al inicio."
  4994. #~ msgctxt "@label"
  4995. #~ msgid "End G-code"
  4996. #~ msgstr "Finalizar GCode"
  4997. #~ msgctxt "@tooltip"
  4998. #~ msgid "G-code commands to be executed at the very end."
  4999. #~ msgstr "Los comandos de GCode que se ejecutarán justo al final."
  5000. #~ msgctxt "@label"
  5001. #~ msgid "Nozzle Settings"
  5002. #~ msgstr "Ajustes de la tobera"
  5003. #~ msgctxt "@tooltip"
  5004. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5005. #~ msgstr "El diámetro nominal del filamento compatible con la impresora. El diámetro exacto se sobrescribirá según el material o el perfil."
  5006. #~ msgctxt "@label"
  5007. #~ msgid "Extruder Start G-code"
  5008. #~ msgstr "GCode inicial del extrusor"
  5009. #~ msgctxt "@label"
  5010. #~ msgid "Extruder End G-code"
  5011. #~ msgstr "GCode final del extrusor"
  5012. #~ msgctxt "@label"
  5013. #~ msgid "Changelog"
  5014. #~ msgstr "Registro de cambios"
  5015. #~ msgctxt "@title:window"
  5016. #~ msgid "User Agreement"
  5017. #~ msgstr "Acuerdo de usuario"
  5018. #~ msgctxt "@alabel"
  5019. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5020. #~ msgstr "Introduzca la dirección IP o el nombre de host de la impresora en red."
  5021. #~ msgctxt "@info"
  5022. #~ msgid "Please select a network connected printer to monitor."
  5023. #~ msgstr "Seleccione la impresora conectada a la red que desee supervisar."
  5024. #~ msgctxt "@info"
  5025. #~ msgid "Please connect your Ultimaker printer to your local network."
  5026. #~ msgstr "Conecte su impresora Ultimaker a su red local."
  5027. #~ msgctxt "@text:window"
  5028. #~ 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."
  5029. #~ 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."
  5030. #~ msgctxt "@text:window"
  5031. #~ msgid "I don't want to send this data"
  5032. #~ msgstr "No deseo enviar estos datos"
  5033. #~ msgctxt "@text:window"
  5034. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5035. #~ msgstr "Permita que estos datos se envíen a Ultimaker y ayúdenos a mejorar Cura"
  5036. #~ msgctxt "@label"
  5037. #~ msgid "No print selected"
  5038. #~ msgstr "No ha seleccionado ninguna impresora"
  5039. #~ msgctxt "@info:tooltip"
  5040. #~ 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."
  5041. #~ 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."
  5042. #~ msgctxt "@title"
  5043. #~ msgid "Select Printer Upgrades"
  5044. #~ msgstr "Seleccionar actualizaciones de impresora"
  5045. #~ msgctxt "@label"
  5046. #~ 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."
  5047. #~ 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."
  5048. #~ msgctxt "@tooltip"
  5049. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5050. #~ 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."
  5051. #~ msgctxt "@label shown when we load a Gcode file"
  5052. #~ msgid "Print setup disabled. G code file can not be modified."
  5053. #~ msgstr "Configuración de impresión deshabilitada. No se puede modificar el GCode."
  5054. #~ msgctxt "@label"
  5055. #~ msgid "See the material compatibility chart"
  5056. #~ msgstr "Ver el gráfico de compatibilidad de materiales"
  5057. #~ msgctxt "@label"
  5058. #~ msgid "View types"
  5059. #~ msgstr "Ver tipos"
  5060. #~ msgctxt "@label"
  5061. #~ msgid "Hi "
  5062. #~ msgstr "Hola "
  5063. #~ msgctxt "@text"
  5064. #~ msgid ""
  5065. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5066. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5067. #~ "- Get exclusive access to material profiles from leading brands"
  5068. #~ msgstr ""
  5069. #~ "- Envíe trabajos de impresión a impresoras Ultimaker fuera de su red local\n"
  5070. #~ "- Guarde su configuración de Ultimaker Cura en la nube para poder usarla en cualquier lugar\n"
  5071. #~ "- Disfrute de acceso exclusivo a perfiles de materiales de marcas líderes"
  5072. #~ msgctxt "@label:PrintjobStatus"
  5073. #~ msgid "Unable to Slice"
  5074. #~ msgstr "No se puede segmentar"
  5075. #~ msgctxt "@label"
  5076. #~ msgid "Time specification"
  5077. #~ msgstr "Especificación de tiempos"
  5078. #~ msgctxt "@label"
  5079. #~ msgid "Material specification"
  5080. #~ msgstr "Especificación de materiales"
  5081. #~ msgctxt "@title:tab"
  5082. #~ msgid "Add a printer to Cura"
  5083. #~ msgstr "Añadir una impresora a Cura"
  5084. #~ msgctxt "@title:tab"
  5085. #~ msgid ""
  5086. #~ "Select the printer you want to use from the list below.\n"
  5087. #~ "\n"
  5088. #~ "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."
  5089. #~ msgstr ""
  5090. #~ "Seleccione la impresora que desee utilizar de la lista que se muestra a continuación.\n"
  5091. #~ "\n"
  5092. #~ "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."
  5093. #~ msgctxt "@label"
  5094. #~ msgid "Manufacturer"
  5095. #~ msgstr "Fabricante"
  5096. #~ msgctxt "@label"
  5097. #~ msgid "Printer Name"
  5098. #~ msgstr "Nombre de la impresora"
  5099. #~ msgctxt "@action:button"
  5100. #~ msgid "Add Printer"
  5101. #~ msgstr "Agregar impresora"
  5102. #~ msgid "Modify G-Code"
  5103. #~ msgstr "Modificar GCode"
  5104. #~ msgctxt "@info:status"
  5105. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5106. #~ 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."
  5107. #~ msgctxt "@info:status"
  5108. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5109. #~ msgstr "El material seleccionado no es compatible con la máquina o la configuración seleccionada."
  5110. #~ msgctxt "@info:title"
  5111. #~ msgid "Incompatible Material"
  5112. #~ msgstr "Material incompatible"
  5113. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5114. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5115. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  5116. #~ msgctxt "@title"
  5117. #~ msgid "Toolbox"
  5118. #~ msgstr "Cuadro de herramientas"
  5119. #~ msgctxt "@label"
  5120. #~ msgid "Not available"
  5121. #~ msgstr "No disponible"
  5122. #~ msgctxt "@label"
  5123. #~ msgid "Unreachable"
  5124. #~ msgstr "No se puede conectar"
  5125. #~ msgctxt "@label"
  5126. #~ msgid "Available"
  5127. #~ msgstr "Disponible"
  5128. #~ msgctxt "@label:status"
  5129. #~ msgid "Preparing"
  5130. #~ msgstr "Preparando"
  5131. #~ msgctxt "@label:status"
  5132. #~ msgid "Pausing"
  5133. #~ msgstr "Pausando"
  5134. #~ msgctxt "@label:status"
  5135. #~ msgid "Resuming"
  5136. #~ msgstr "Reanudando"
  5137. #~ msgctxt "@label"
  5138. #~ msgid "Waiting for: Unavailable printer"
  5139. #~ msgstr "Esperando: impresora no disponible"
  5140. #~ msgctxt "@label"
  5141. #~ msgid "Waiting for: First available"
  5142. #~ msgstr "Esperando: primera disponible"
  5143. #~ msgctxt "@label"
  5144. #~ msgid "Waiting for: "
  5145. #~ msgstr "Esperando: "
  5146. #~ msgctxt "@label"
  5147. #~ msgid "Configuration change"
  5148. #~ msgstr "Cambio de configuración"
  5149. #~ msgctxt "@label"
  5150. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5151. #~ msgstr "Es necesario modificar la siguiente configuración de la impresora asignada %1:"
  5152. #~ msgctxt "@label"
  5153. #~ msgid "Override"
  5154. #~ msgstr "Anular"
  5155. #~ msgctxt "@label"
  5156. #~ 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?"
  5157. #~ 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?"
  5158. #~ msgctxt "@window:title"
  5159. #~ msgid "Override configuration configuration and start print"
  5160. #~ msgstr "Sobrescribir la configuración e iniciar la impresión"
  5161. #~ msgctxt "@label link to connect manager"
  5162. #~ msgid "Manage queue"
  5163. #~ msgstr "Administrar cola"
  5164. #~ msgctxt "@label"
  5165. #~ msgid "Printing"
  5166. #~ msgstr "Imprimiendo"
  5167. #~ msgctxt "@label link to connect manager"
  5168. #~ msgid "Manage printers"
  5169. #~ msgstr "Administrar impresoras"
  5170. #~ msgctxt "@action:button"
  5171. #~ msgid "Activate Configuration"
  5172. #~ msgstr "Activar configuración"
  5173. #~ msgctxt "@info:tooltip"
  5174. #~ msgid "Load the configuration of the printer into Cura"
  5175. #~ msgstr "Carga la configuración de la impresora en Cura"
  5176. #~ msgctxt "@label"
  5177. #~ msgid "Show Travels"
  5178. #~ msgstr "Mostrar desplazamientos"
  5179. #~ msgctxt "@label"
  5180. #~ msgid "Show Helpers"
  5181. #~ msgstr "Mostrar asistentes"
  5182. #~ msgctxt "@label"
  5183. #~ msgid "Show Shell"
  5184. #~ msgstr "Mostrar perímetro"
  5185. #~ msgctxt "@label"
  5186. #~ msgid "Show Infill"
  5187. #~ msgstr "Mostrar relleno"
  5188. #~ msgctxt "@text:window"
  5189. #~ msgid "I don't want to send these data"
  5190. #~ msgstr "No quiero enviar estos datos"
  5191. #~ msgctxt "@text:window"
  5192. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5193. #~ msgstr "Permita enviar estos datos a Ultimaker y ayúdenos a mejorar Cura"
  5194. #~ msgctxt "@label"
  5195. #~ msgid "Printer type:"
  5196. #~ msgstr "Tipo de impresora:"
  5197. #~ msgctxt "@label"
  5198. #~ msgid "Connection:"
  5199. #~ msgstr "Conexión:"
  5200. #~ msgctxt "@label"
  5201. #~ msgid "State:"
  5202. #~ msgstr "Estado:"
  5203. #~ msgctxt "@label:MonitorStatus"
  5204. #~ msgid "Waiting for a printjob"
  5205. #~ msgstr "Esperando un trabajo de impresión"
  5206. #~ msgctxt "@label:MonitorStatus"
  5207. #~ msgid "Waiting for someone to clear the build plate"
  5208. #~ msgstr "Esperando a que alguien limpie la placa de impresión"
  5209. #~ msgctxt "@label:MonitorStatus"
  5210. #~ msgid "Aborting print..."
  5211. #~ msgstr "Cancelando impresión..."
  5212. #~ msgctxt "@label"
  5213. #~ msgid "Protected profiles"
  5214. #~ msgstr "Perfiles protegidos"
  5215. #~ msgctxt "@label"
  5216. #~ msgid "Printer Name:"
  5217. #~ msgstr "Nombre de la impresora:"
  5218. #~ msgctxt "@label"
  5219. #~ msgid "Profile:"
  5220. #~ msgstr "Perfil:"
  5221. #~ msgctxt "@label:textbox"
  5222. #~ msgid "Search..."
  5223. #~ msgstr "Buscar..."
  5224. #~ msgctxt "@action:inmenu"
  5225. #~ msgid "Collapse All"
  5226. #~ msgstr "Contraer todo"
  5227. #~ msgctxt "@action:inmenu"
  5228. #~ msgid "Expand All"
  5229. #~ msgstr "Ampliar todo"
  5230. #~ msgctxt "@label:header configurations"
  5231. #~ msgid "Available configurations"
  5232. #~ msgstr "Configuraciones disponibles"
  5233. #~ msgctxt "@label:extruder label"
  5234. #~ msgid "Extruder"
  5235. #~ msgstr "Extrusor"
  5236. #~ msgctxt "@label:extruder label"
  5237. #~ msgid "Yes"
  5238. #~ msgstr "Sí"
  5239. #~ msgctxt "@label:extruder label"
  5240. #~ msgid "No"
  5241. #~ msgstr "No"
  5242. #~ msgctxt "@label:listbox"
  5243. #~ msgid "Print Setup"
  5244. #~ msgstr "Configuración de impresión"
  5245. #~ msgctxt "@label:listbox"
  5246. #~ msgid ""
  5247. #~ "Print Setup disabled\n"
  5248. #~ "G-code files cannot be modified"
  5249. #~ msgstr ""
  5250. #~ "Ajustes de impresión deshabilitados\n"
  5251. #~ "No se pueden modificar los archivos GCode"
  5252. #~ msgctxt "@label Hours and minutes"
  5253. #~ msgid "00h 00min"
  5254. #~ msgstr "00 h 00 min"
  5255. #~ msgctxt "@tooltip"
  5256. #~ msgid "Time specification"
  5257. #~ msgstr "Especificación de tiempos"
  5258. #~ msgctxt "@label"
  5259. #~ msgid "Cost specification"
  5260. #~ msgstr "Especificación de costes"
  5261. #~ msgctxt "@label"
  5262. #~ msgid "Total:"
  5263. #~ msgstr "Total:"
  5264. #~ msgctxt "@tooltip"
  5265. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5266. #~ 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."
  5267. #~ msgctxt "@tooltip"
  5268. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5269. #~ msgstr "<b>Configuración de impresión personalizada</b><br/><br/>Imprimir con un control muy detallado del proceso de segmentación."
  5270. #~ msgctxt "@action:inmenu menubar:help"
  5271. #~ msgid "Show Engine &Log..."
  5272. #~ msgstr "&Mostrar registro del motor..."
  5273. #~ msgctxt "@action:menu"
  5274. #~ msgid "Browse packages..."
  5275. #~ msgstr "Examinar paquetes..."
  5276. #~ msgctxt "@action:inmenu menubar:view"
  5277. #~ msgid "Expand/Collapse Sidebar"
  5278. #~ msgstr "Expandir/contraer barra lateral"
  5279. #~ msgctxt "@label:PrintjobStatus"
  5280. #~ msgid "Please load a 3D model"
  5281. #~ msgstr "Cargue un modelo en 3D"
  5282. #~ msgctxt "@label:PrintjobStatus"
  5283. #~ msgid "Ready to slice"
  5284. #~ msgstr "Preparado para segmentar"
  5285. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5286. #~ msgid "Ready to %1"
  5287. #~ msgstr "Listo para %1"
  5288. #~ msgctxt "@label:PrintjobStatus"
  5289. #~ msgid "Slicing unavailable"
  5290. #~ msgstr "No se puede segmentar"
  5291. #~ msgctxt "@info:tooltip"
  5292. #~ msgid "Slice current printjob"
  5293. #~ msgstr "Fragmentar trabajo de impresión actual"
  5294. #~ msgctxt "@info:tooltip"
  5295. #~ msgid "Cancel slicing process"
  5296. #~ msgstr "Cancelar proceso de fragmentación"
  5297. #~ msgctxt "@label:Printjob"
  5298. #~ msgid "Prepare"
  5299. #~ msgstr "Preparar"
  5300. #~ msgctxt "@label:Printjob"
  5301. #~ msgid "Cancel"
  5302. #~ msgstr "Cancelar"
  5303. #~ msgctxt "@info:tooltip"
  5304. #~ msgid "Select the active output device"
  5305. #~ msgstr "Seleccione el dispositivo de salida activo"
  5306. #~ msgctxt "@title:menu"
  5307. #~ msgid "&View"
  5308. #~ msgstr "&Ver"
  5309. #~ msgctxt "@title:menu"
  5310. #~ msgid "&Settings"
  5311. #~ msgstr "A&justes"
  5312. #~ msgctxt "@title:menu menubar:toplevel"
  5313. #~ msgid "&Toolbox"
  5314. #~ msgstr "&Cuadro de herramientas"
  5315. #~ msgctxt "@action:button"
  5316. #~ msgid "Open File"
  5317. #~ msgstr "Abrir archivo"
  5318. #~ msgctxt "@tooltip"
  5319. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5320. #~ 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"
  5321. #~ msgctxt "@label"
  5322. #~ msgid "Print Speed"
  5323. #~ msgstr "Velocidad de impresión"
  5324. #~ msgctxt "@label"
  5325. #~ msgid "Slower"
  5326. #~ msgstr "Más lento"
  5327. #~ msgctxt "@label"
  5328. #~ msgid "Faster"
  5329. #~ msgstr "Más rápido"
  5330. #~ msgctxt "@label"
  5331. #~ msgid "Enable gradual"
  5332. #~ msgstr "Habilitar gradual"
  5333. #~ msgctxt "@label"
  5334. #~ msgid "Generate Support"
  5335. #~ msgstr "Generar soporte"
  5336. #~ msgctxt "@label"
  5337. #~ msgid "Build Plate Adhesion"
  5338. #~ msgstr "Adherencia de la placa de impresión"
  5339. #~ msgctxt "@label"
  5340. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  5341. #~ msgstr "¿Necesita ayuda para mejorar sus impresiones?<br>Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>"
  5342. #~ msgctxt "@title:window"
  5343. #~ msgid "Engine Log"
  5344. #~ msgstr "Registro del motor"
  5345. #~ msgctxt "@label"
  5346. #~ msgid "Printer type"
  5347. #~ msgstr "Tipo de impresora"
  5348. #~ msgctxt "@label"
  5349. #~ msgid "Use glue with this material combination"
  5350. #~ msgstr "Utilizar pegamento con esta combinación de materiales"
  5351. #~ msgctxt "@label"
  5352. #~ msgid "Check compatibility"
  5353. #~ msgstr "Comprobar compatibilidad"
  5354. #~ msgctxt "@tooltip"
  5355. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  5356. #~ msgstr "Haga clic para comprobar la compatibilidad de los materiales en Utimaker.com."
  5357. #~ msgctxt "description"
  5358. #~ msgid "Shows changes since latest checked version."
  5359. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  5360. #~ msgctxt "name"
  5361. #~ msgid "Changelog"
  5362. #~ msgstr "Registro de cambios"
  5363. #~ msgctxt "description"
  5364. #~ msgid "Create a flattend quality changes profile."
  5365. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  5366. #~ msgctxt "name"
  5367. #~ msgid "Profile flatener"
  5368. #~ msgstr "Aplanador de perfil"
  5369. #~ msgctxt "description"
  5370. #~ msgid "Ask the user once if he/she agrees with our license."
  5371. #~ msgstr "Preguntar al usuario una vez si acepta la licencia."
  5372. #~ msgctxt "name"
  5373. #~ msgid "UserAgreement"
  5374. #~ msgstr "UserAgreement"
  5375. #~ msgctxt "@warning:status"
  5376. #~ msgid "Please generate G-code before saving."
  5377. #~ msgstr "Genere un G-code antes de guardar."
  5378. #~ msgctxt "@action"
  5379. #~ msgid "Upgrade Firmware"
  5380. #~ msgstr "Actualizar firmware"
  5381. #~ msgctxt "@label unknown material"
  5382. #~ msgid "Unknown"
  5383. #~ msgstr "Desconocido"
  5384. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5385. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  5386. #~ msgstr "No hay ningún perfil personalizado que importar en el archivo <filename>{0}</filename>"
  5387. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5388. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  5389. #~ msgstr "Este perfil <filename>{0}</filename> contiene datos incorrectos, no se han podido importar."
  5390. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5391. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5392. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> ({1}) no coincide con el equipo actual ({2}), no se ha podido importar."
  5393. #~ msgctxt "@title:window"
  5394. #~ msgid "Confirm uninstall "
  5395. #~ msgstr "Confirmar desinstalación "
  5396. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  5397. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  5398. #~ msgstr "%1 m/~ %2 g/~ %4 %3"
  5399. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  5400. #~ msgid "%1m / ~ %2g"
  5401. #~ msgstr "%1 m/~ %2 g"
  5402. #~ msgctxt "@title"
  5403. #~ msgid "Upgrade Firmware"
  5404. #~ msgstr "Actualización de firmware"
  5405. #~ msgctxt "@action:button"
  5406. #~ msgid "Print with Doodle3D WiFi-Box"
  5407. #~ msgstr "Imprimir con un enrutador Doodle3D"
  5408. #~ msgctxt "@properties:tooltip"
  5409. #~ msgid "Print with Doodle3D WiFi-Box"
  5410. #~ msgstr "Imprimir con un enrutador Doodle3D"
  5411. #~ msgctxt "@info:status"
  5412. #~ msgid "Connecting to Doodle3D Connect"
  5413. #~ msgstr "Conectar con Doodle3D Connect"
  5414. #~ msgctxt "@info:status"
  5415. #~ msgid "Sending data to Doodle3D Connect"
  5416. #~ msgstr "Enviando datos a Doodle3D Connect"
  5417. #~ msgctxt "@info:status"
  5418. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  5419. #~ msgstr "No se pueden enviar datos a Doodle3D Connect. ¿Hay otro trabajo que todavía esté activo?"
  5420. #~ msgctxt "@info:status"
  5421. #~ msgid "Storing data on Doodle3D Connect"
  5422. #~ msgstr "Guardando datos en Doodle3D Connect"
  5423. #~ msgctxt "@info:status"
  5424. #~ msgid "File sent to Doodle3D Connect"
  5425. #~ msgstr "Archivo enviado a Doodle3D Connect"
  5426. #~ msgctxt "@action:button"
  5427. #~ msgid "Open Connect..."
  5428. #~ msgstr "Abrir Connect..."
  5429. #~ msgctxt "@info:tooltip"
  5430. #~ msgid "Open the Doodle3D Connect web interface"
  5431. #~ msgstr "Abrir la interfaz web de Doodle3D Connect"
  5432. #~ msgctxt "@item:inlistbox"
  5433. #~ msgid "Blender file"
  5434. #~ msgstr "Archivo Blender"
  5435. #~ msgctxt "@info:status"
  5436. #~ msgid ""
  5437. #~ "Could not export using \"{}\" quality!\n"
  5438. #~ "Felt back to \"{}\"."
  5439. #~ msgstr ""
  5440. #~ "No ha podido exportarse con la calidad \"{}\"\n"
  5441. #~ "Retroceder a \"{}\"."
  5442. #~ msgctxt "@label"
  5443. #~ msgid "Contact"
  5444. #~ msgstr "Contacto"
  5445. #~ msgctxt "@label"
  5446. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  5447. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras Ultimaker 3."
  5448. #~ msgctxt "@label"
  5449. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  5450. #~ msgstr "La impresora aloja un grupo de %1 impresoras Ultimaker 3."
  5451. #~ msgctxt "@label: arg 1 is group name"
  5452. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  5453. #~ msgstr "%1 no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  5454. #~ msgctxt "@label link to connect manager"
  5455. #~ msgid "Add/Remove printers"
  5456. #~ msgstr "Agregar/eliminar impresoras"
  5457. #~ msgctxt "@info:tooltip"
  5458. #~ msgid "Opens the print jobs page with your default web browser."
  5459. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  5460. #~ msgctxt "@action:button"
  5461. #~ msgid "View print jobs"
  5462. #~ msgstr "Ver trabajos de impresión"
  5463. #~ msgctxt "@label:status"
  5464. #~ msgid "Preparing to print"
  5465. #~ msgstr "Preparando para impresión"
  5466. #~ msgctxt "@label:status"
  5467. #~ msgid "Printing"
  5468. #~ msgstr "Imprimiendo"
  5469. #~ msgctxt "@label:status"
  5470. #~ msgid "Available"
  5471. #~ msgstr "Disponible"
  5472. #~ msgctxt "@label:status"
  5473. #~ msgid "Lost connection with the printer"
  5474. #~ msgstr "Se ha perdido la conexión con la impresora."
  5475. #~ msgctxt "@label:status"
  5476. #~ msgid "Unknown"
  5477. #~ msgstr "Desconocido"
  5478. #~ msgctxt "@label:status"
  5479. #~ msgid "Disabled"
  5480. #~ msgstr "Deshabilitado"
  5481. #~ msgctxt "@label:status"
  5482. #~ msgid "Reserved"
  5483. #~ msgstr "Reservado"
  5484. #~ msgctxt "@label"
  5485. #~ msgid "Preparing to print"
  5486. #~ msgstr "Preparando para impresión"
  5487. #~ msgctxt "@label:status"
  5488. #~ msgid "Print aborted"
  5489. #~ msgstr "Impresión cancelada"
  5490. #~ msgctxt "@label"
  5491. #~ msgid "Not accepting print jobs"
  5492. #~ msgstr "No se aceptan trabajos de impresión"
  5493. #~ msgctxt "@label"
  5494. #~ msgid "Finishes at: "
  5495. #~ msgstr "Termina a las: "
  5496. #~ msgctxt "@label"
  5497. #~ msgid "Clear build plate"
  5498. #~ msgstr "Borrar placa de impresión"
  5499. #~ msgctxt "@label"
  5500. #~ msgid "Waiting for configuration change"
  5501. #~ msgstr "Esperando a que se cambie la configuración"
  5502. #~ msgctxt "@title"
  5503. #~ msgid "Print jobs"
  5504. #~ msgstr "Trabajos de impresión"
  5505. #~ msgctxt "@label:title"
  5506. #~ msgid "Printers"
  5507. #~ msgstr "Impresoras"
  5508. #~ msgctxt "@action:button"
  5509. #~ msgid "View printers"
  5510. #~ msgstr "Ver impresoras"
  5511. #~ msgctxt "@label:"
  5512. #~ msgid "Pause"
  5513. #~ msgstr "Pausar"
  5514. #~ msgctxt "@label:"
  5515. #~ msgid "Resume"
  5516. #~ msgstr "Reanudar"
  5517. #~ msgctxt "@label:"
  5518. #~ msgid "Abort Print"
  5519. #~ msgstr "Cancelar impresión"
  5520. #~ msgctxt "@option:openProject"
  5521. #~ msgid "Always ask"
  5522. #~ msgstr "Preguntar siempre"
  5523. #~ msgctxt "@label"
  5524. #~ msgid "Override Profile"
  5525. #~ msgstr "Anular perfil"
  5526. #~ msgctxt "@info:tooltip"
  5527. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  5528. #~ 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)"
  5529. #~ msgctxt "@option:check"
  5530. #~ msgid "Do not arrange objects on load"
  5531. #~ msgstr "No organizar objetos al cargar"
  5532. #~ msgctxt "@action:inmenu menubar:file"
  5533. #~ msgid "&Save Selection to File"
  5534. #~ msgstr "&Guardar selección en archivo"
  5535. #~ msgctxt "@title:menu menubar:file"
  5536. #~ msgid "Save &As..."
  5537. #~ msgstr "Guardar &como..."
  5538. #~ msgctxt "@title:menu menubar:file"
  5539. #~ msgid "Save &Project..."
  5540. #~ msgstr "Guardar &proyecto..."
  5541. # Added after the string freeze.
  5542. #~ msgctxt "@label"
  5543. #~ msgid "Use adhesion sheet or glue with this material combination"
  5544. #~ msgstr "Use láminas de adherencia o pegamento con esta combinación de materiales"
  5545. #~ msgctxt "description"
  5546. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  5547. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  5548. #~ msgctxt "name"
  5549. #~ msgid "Doodle3D WiFi-Box"
  5550. #~ msgstr "Enrutador Doodle3D"
  5551. #~ msgctxt "description"
  5552. #~ msgid "Provides an edit window for direct script editing."
  5553. #~ msgstr "Proporciona una ventana de edición para la edición directa de secuencias de comandos."
  5554. #~ msgctxt "name"
  5555. #~ msgid "Live scripting tool"
  5556. #~ msgstr "Herramienta de secuencia de comandos en directo"
  5557. #~ msgctxt "description"
  5558. #~ msgid "Helps to open Blender files directly in Cura."
  5559. #~ msgstr "Ayuda a abrir archivos de Blender directamente en Cura."
  5560. #~ msgctxt "name"
  5561. #~ msgid "Blender Integration (experimental)"
  5562. #~ msgstr "Integración de Blender (experimental)"
  5563. #~ msgctxt "@info:title"
  5564. #~ msgid "Model Checker Warning"
  5565. #~ msgstr "Advertencia del comprobador de modelos"
  5566. #~ msgctxt "@info:status"
  5567. #~ msgid ""
  5568. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  5569. #~ "Tips that may be useful to improve the print quality:\n"
  5570. #~ "1) Use rounded corners.\n"
  5571. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  5572. #~ "3) Use a different material."
  5573. #~ msgstr ""
  5574. #~ "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"
  5575. #~ "Consejos para mejorar la calidad de la impresión:\n"
  5576. #~ "1) Utilizar esquinas redondeadas.\n"
  5577. #~ "2) Apagar el ventilador (solo si el modelo no tiene detalles pequeños).\n"
  5578. #~ "3) Utilizar otro material."
  5579. #~ msgctxt "@info:status"
  5580. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  5581. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  5582. #~ msgctxt "@info:status"
  5583. #~ msgid ""
  5584. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  5585. #~ "\n"
  5586. #~ "Thanks!"
  5587. #~ msgstr ""
  5588. #~ "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"
  5589. #~ "\n"
  5590. #~ "Gracias."
  5591. #~ msgctxt "@info:status"
  5592. #~ msgid ""
  5593. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5594. #~ "\n"
  5595. #~ "Sorry!"
  5596. #~ msgstr ""
  5597. #~ "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"
  5598. #~ "\n"
  5599. #~ "Perdone las molestias."
  5600. #~ msgctxt "@item:inlistbox"
  5601. #~ msgid "SolidWorks part file"
  5602. #~ msgstr "Archivo de elementos de SolidWorks"
  5603. #~ msgctxt "@item:inlistbox"
  5604. #~ msgid "SolidWorks assembly file"
  5605. #~ msgstr "Archivo de ensamblado de SolidWorks"
  5606. #~ msgctxt "@item:inlistbox"
  5607. #~ msgid "SolidWorks drawing file"
  5608. #~ msgstr "Archivo de dibujo de SolidWorks"
  5609. #~ msgctxt "@info:status"
  5610. #~ msgid ""
  5611. #~ "Dear customer,\n"
  5612. #~ "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"
  5613. #~ "\n"
  5614. #~ "With kind regards\n"
  5615. #~ " - Thomas Karl Pietrowski"
  5616. #~ msgstr ""
  5617. #~ "Estimado cliente:\n"
  5618. #~ "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"
  5619. #~ "\n"
  5620. #~ "Atentamente\n"
  5621. #~ " - Thomas Karl Pietrowski"
  5622. #~ msgctxt "@info:status"
  5623. #~ msgid ""
  5624. #~ "Dear customer,\n"
  5625. #~ "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"
  5626. #~ "\n"
  5627. #~ "With kind regards\n"
  5628. #~ " - Thomas Karl Pietrowski"
  5629. #~ msgstr ""
  5630. #~ "Estimado cliente:\n"
  5631. #~ "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"
  5632. #~ "\n"
  5633. #~ "Atentamente\n"
  5634. #~ " - Thomas Karl Pietrowski"
  5635. #~ msgid "Configure"
  5636. #~ msgstr "Configurar"
  5637. #~ msgid "Installation guide for SolidWorks macro"
  5638. #~ msgstr "Guía de instalación para la macro de SolidWorks"
  5639. #~ msgctxt "@action:button"
  5640. #~ msgid "Disable"
  5641. #~ msgstr "Deshabilitar"
  5642. #~ msgctxt "@action:tooltip"
  5643. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  5644. #~ msgstr "No permitir a Cura enviar estadísticas de uso de forma anónima. Puede habilitarlo de nuevo en las preferencias."
  5645. #~ msgid "Install"
  5646. #~ msgstr "Instalar"
  5647. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  5648. #~ 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."
  5649. #~ msgid "Successfully installed Siemens NX Cura plugin."
  5650. #~ msgstr "El complemento Siemens NX Cura se ha instalado correctamente."
  5651. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  5652. #~ msgstr "Se ha producido un error al copiar los archivos de complemento de Siemens NX. Compruebe la UGII_USER_DIR."
  5653. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  5654. #~ 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."
  5655. #~ msgctxt "@info:status"
  5656. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  5657. #~ msgstr "No se pudo obtener la ID del complemento de <filename>{0}</filename>"
  5658. #~ msgctxt "@info:tile"
  5659. #~ msgid "Warning"
  5660. #~ msgstr "Advertencia"
  5661. #~ msgctxt "@window:title"
  5662. #~ msgid "Plugin browser"
  5663. #~ msgstr "Explorador de complementos"
  5664. #~ msgctxt "@label"
  5665. #~ msgid "Ultimaker 3"
  5666. #~ msgstr "Ultimaker 3"
  5667. #~ msgctxt "@label"
  5668. #~ msgid "Ultimaker 3 Extended"
  5669. #~ msgstr "Ultimaker 3 Extended"
  5670. #~ msgctxt "@title:window"
  5671. #~ msgid "SolidWorks: Export wizard"
  5672. #~ msgstr "SolidWorks: exportar asistente"
  5673. #~ msgctxt "@action:label"
  5674. #~ msgid "Quality:"
  5675. #~ msgstr "Calidad:"
  5676. #~ msgctxt "@option:curaSolidworksStlQuality"
  5677. #~ msgid "Fine (3D-printing)"
  5678. #~ msgstr "Fina (impresión en 3D)"
  5679. #~ msgctxt "@option:curaSolidworksStlQuality"
  5680. #~ msgid "Coarse (3D-printing)"
  5681. #~ msgstr "Gruesa (impresión en 3D)"
  5682. #~ msgctxt "@option:curaSolidworksStlQuality"
  5683. #~ msgid "Fine (SolidWorks)"
  5684. #~ msgstr "Fina (SolidWorks)"
  5685. #~ msgctxt "@option:curaSolidworksStlQuality"
  5686. #~ msgid "Coarse (SolidWorks)"
  5687. #~ msgstr "Gruesa (SolidWorks)"
  5688. #~ msgctxt "@text:window"
  5689. #~ msgid "Show this dialog again"
  5690. #~ msgstr "Mostrar este cuadro de diálogo de nuevo"
  5691. #~ msgctxt "@action:button"
  5692. #~ msgid "Continue"
  5693. #~ msgstr "Continuar"
  5694. #~ msgctxt "@action:button"
  5695. #~ msgid "Abort"
  5696. #~ msgstr "Cancelar"
  5697. #~ msgctxt "@title:window"
  5698. #~ msgid "How to install Cura SolidWorks macro"
  5699. #~ msgstr "Cómo instalar la macro SolidWorks de Cura"
  5700. #~ msgctxt "@description:label"
  5701. #~ msgid "Steps:"
  5702. #~ msgstr "Pasos:"
  5703. #~ msgctxt "@action:button"
  5704. #~ msgid ""
  5705. #~ "Open the directory\n"
  5706. #~ "with macro and icon"
  5707. #~ msgstr ""
  5708. #~ "Abra el directorio\n"
  5709. #~ "con la macro y el icono"
  5710. #~ msgctxt "@description:label"
  5711. #~ msgid "Instructions:"
  5712. #~ msgstr "Instrucciones:"
  5713. #~ msgctxt "@action:playpause"
  5714. #~ msgid "Play"
  5715. #~ msgstr "Reproducir"
  5716. #~ msgctxt "@action:playpause"
  5717. #~ msgid "Pause"
  5718. #~ msgstr "Pausar"
  5719. #~ msgctxt "@action:button"
  5720. #~ msgid "Previous Step"
  5721. #~ msgstr "Paso anterior"
  5722. #~ msgctxt "@action:button"
  5723. #~ msgid "Done"
  5724. #~ msgstr "Realizado"
  5725. #~ msgctxt "@action:button"
  5726. #~ msgid "Next Step"
  5727. #~ msgstr "Paso siguiente"
  5728. #~ msgctxt "@title:window"
  5729. #~ msgid "SolidWorks plugin: Configuration"
  5730. #~ msgstr "Complemento de SolidWorks: configuración"
  5731. #~ msgctxt "@title:tab"
  5732. #~ msgid "Conversion settings"
  5733. #~ msgstr "Ajustes de la conversión"
  5734. #~ msgctxt "@label"
  5735. #~ msgid "First choice:"
  5736. #~ msgstr "Primera opción:"
  5737. #~ msgctxt "@text:menu"
  5738. #~ msgid "Latest installed version (Recommended)"
  5739. #~ msgstr "Última versión instalada (recomendada)"
  5740. #~ msgctxt "@text:menu"
  5741. #~ msgid "Default version"
  5742. #~ msgstr "Versión predeterminada"
  5743. #~ msgctxt "@label"
  5744. #~ msgid "Show wizard before opening SolidWorks files"
  5745. #~ msgstr "Mostrar asistente antes de abrir los archivos de SolidWorks"
  5746. #~ msgctxt "@label"
  5747. #~ msgid "Automatically rotate opened file into normed orientation"
  5748. #~ msgstr "Girar automáticamente el archivo abierto a la orientación normal"
  5749. #~ msgctxt "@title:tab"
  5750. #~ msgid "Installation(s)"
  5751. #~ msgstr "Instalación(es)"
  5752. #~ msgctxt "@label"
  5753. #~ msgid "COM service found"
  5754. #~ msgstr "Servicio COM encontrado"
  5755. #~ msgctxt "@label"
  5756. #~ msgid "Executable found"
  5757. #~ msgstr "Ejecutable encontrado"
  5758. #~ msgctxt "@label"
  5759. #~ msgid "COM starting"
  5760. #~ msgstr "Iniciando COM"
  5761. #~ msgctxt "@label"
  5762. #~ msgid "Revision number"
  5763. #~ msgstr "Número de revisión"
  5764. #~ msgctxt "@label"
  5765. #~ msgid "Functions available"
  5766. #~ msgstr "Funciones disponibles"
  5767. #~ msgctxt "@label (%1 is object name)"
  5768. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  5769. #~ msgstr "El nuevo diámetro del material está ajustado en %1 mm y no es compatible con el equipo actual. ¿Desea continuar?"
  5770. #~ msgctxt "@action:menu"
  5771. #~ msgid "Browse plugins..."
  5772. #~ msgstr "Examinar complementos..."
  5773. #~ msgctxt "@title:menu menubar:toplevel"
  5774. #~ msgid "P&lugins"
  5775. #~ msgstr "&Complementos"
  5776. #~ msgctxt "@window:title"
  5777. #~ msgid "Install Plugin"
  5778. #~ msgstr "Instalar complemento"
  5779. #~ msgctxt "description"
  5780. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  5781. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  5782. #~ msgctxt "description"
  5783. #~ msgid "Manages network connections to Ultimaker 3 printers"
  5784. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  5785. #~ msgctxt "description"
  5786. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  5787. #~ msgstr "Permite abrir determinados archivos con el propio SolidWorks. La conversión se lleva a cabo mediante este complemento y optimizaciones adicionales."
  5788. #~ msgctxt "name"
  5789. #~ msgid "SolidWorks Integration"
  5790. #~ msgstr "Integración con SolidWorks"
  5791. #~ msgctxt "description"
  5792. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  5793. #~ msgstr "Guarda automáticamente preferencias, máquinas y perfiles después de los cambios."
  5794. #~ msgctxt "name"
  5795. #~ msgid "Auto Save"
  5796. #~ msgstr "Guardado automático"
  5797. #~ msgctxt "description"
  5798. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  5799. #~ msgstr "Ayuda a instalar el botón para exportar a Cura en Siemens NX."
  5800. #~ msgctxt "name"
  5801. #~ msgid "Siemens NX Integration"
  5802. #~ msgstr "Siemens NX Integration"
  5803. #~ msgctxt "description"
  5804. #~ msgid "Find, manage and install new plugins."
  5805. #~ msgstr "Busca, administra e instala nuevos complementos."
  5806. #~ msgctxt "name"
  5807. #~ msgid "Plugin Browser"
  5808. #~ msgstr "Explorador de complementos"
  5809. #~ msgctxt "description"
  5810. #~ msgid "Ask the user once if he/she agrees with our license"
  5811. #~ msgstr "Preguntar al usuario una vez si acepta la licencia"
  5812. #~ msgctxt "description"
  5813. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  5814. #~ 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.)."
  5815. #~ msgctxt "@item:inlistbox"
  5816. #~ msgid "GCode File"
  5817. #~ msgstr "Archivo GCode"
  5818. #~ msgctxt "@info:status"
  5819. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  5820. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora está ocupada o no está conectada."
  5821. #~ msgctxt "@info:title"
  5822. #~ msgid "Printer Unavailable"
  5823. #~ msgstr "Impresora no disponible"
  5824. #~ msgctxt "@info:status"
  5825. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  5826. #~ msgstr "Esta impresora no es compatible con la impresión USB porque utiliza el tipo UltiGCode."
  5827. #~ msgctxt "@info:title"
  5828. #~ msgid "USB Printing"
  5829. #~ msgstr "Impresión USB"
  5830. #~ msgctxt "@info:status"
  5831. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  5832. #~ msgstr "No se puede iniciar un trabajo nuevo porque la impresora no es compatible con la impresión USB."
  5833. #~ msgctxt "@info"
  5834. #~ msgid "Unable to update firmware because there are no printers connected."
  5835. #~ msgstr "No se puede actualizar el firmware porque no hay impresoras conectadas."
  5836. #~ msgctxt "@info"
  5837. #~ msgid "Could not find firmware required for the printer at %s."
  5838. #~ msgstr "No se pudo encontrar el firmware necesario para la impresora en %s."
  5839. #~ msgctxt "@info:title"
  5840. #~ msgid "Printer Firmware"
  5841. #~ msgstr "Firmware de la impresora"
  5842. #~ msgctxt "@info:title"
  5843. #~ msgid "Connection status"
  5844. #~ msgstr "Estado de la conexión"
  5845. #~ msgctxt "@info:title"
  5846. #~ msgid "Connection Status"
  5847. #~ msgstr "Estado de la conexión"
  5848. #~ msgctxt "@info:status"
  5849. #~ msgid "Access request was denied on the printer."
  5850. #~ msgstr "Solicitud de acceso denegada en la impresora."
  5851. #~ msgctxt "@info:status"
  5852. #~ msgid "Access request failed due to a timeout."
  5853. #~ msgstr "Se ha producido un error al solicitar acceso porque se ha agotado el tiempo de espera."
  5854. #~ msgctxt "@info:status"
  5855. #~ msgid "The connection with the network was lost."
  5856. #~ msgstr "Se ha perdido la conexión de red."
  5857. #~ msgctxt "@info:status"
  5858. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  5859. #~ msgstr "Se ha perdido la conexión con la impresora. Compruebe que la impresora está conectada."
  5860. #~ msgctxt "@info:status"
  5861. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  5862. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión, la impresora está ocupada. El estado actual de la impresora es %s."
  5863. #~ msgctxt "@info:title"
  5864. #~ msgid "Printer Status"
  5865. #~ msgstr "Estado de la impresora"
  5866. #~ msgctxt "@info:status"
  5867. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  5868. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  5869. #~ msgctxt "@info:status"
  5870. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  5871. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado material en la ranura {0}."
  5872. #~ msgctxt "@label"
  5873. #~ msgid "Not enough material for spool {0}."
  5874. #~ msgstr "No hay suficiente material para la bobina {0}."
  5875. #~ msgctxt "@label"
  5876. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5877. #~ msgstr "PrintCore distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  5878. #~ msgctxt "@label"
  5879. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  5880. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  5881. #~ msgctxt "@info:status"
  5882. #~ msgid "Unable to send data to printer. Is another job still active?"
  5883. #~ msgstr "No se puede enviar datos a la impresora. ¿Hay otro trabajo que todavía esté activo?"
  5884. #~ msgctxt "@label:MonitorStatus"
  5885. #~ msgid "Print aborted. Please check the printer"
  5886. #~ msgstr "Impresión cancelada. Compruebe la impresora."
  5887. #~ msgctxt "@label:MonitorStatus"
  5888. #~ msgid "Pausing print..."
  5889. #~ msgstr "Pausando impresión..."
  5890. #~ msgctxt "@label:MonitorStatus"
  5891. #~ msgid "Resuming print..."
  5892. #~ msgstr "Reanudando impresión..."
  5893. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  5894. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3."
  5895. #~ msgctxt "Count is number of printers."
  5896. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  5897. #~ msgstr "La impresora aloja un grupo de {count} impresoras conectadas de Ultimaker 3."
  5898. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  5899. #~ msgstr "{printer_name} ha terminado de imprimir «{job_name}». Recoja el impreso y confirme que ha borrado la placa de impresión."
  5900. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  5901. #~ 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."
  5902. #~ msgctxt "@info:status"
  5903. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  5904. #~ 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."
  5905. #~ msgctxt "@info:status"
  5906. #~ msgid "Unable to send print job to group {cluster_name}."
  5907. #~ msgstr "No se puede enviar el trabajo de impresión al grupo {cluster_name}."
  5908. #~ msgctxt "@info:status"
  5909. #~ msgid "Sent {file_name} to group {cluster_name}."
  5910. #~ msgstr "Enviar {file_name} al grupo {cluster_name}."
  5911. #~ msgctxt "@action:button"
  5912. #~ msgid "Show print jobs"
  5913. #~ msgstr "Mostrar trabajos de impresión"
  5914. #~ msgctxt "@info:tooltip"
  5915. #~ msgid "Opens the print jobs interface in your browser."
  5916. #~ msgstr "Abre la interfaz de trabajos de impresión en el navegador."
  5917. #~ msgctxt "@label Printer name"
  5918. #~ msgid "Unknown"
  5919. #~ msgstr "Desconocido"
  5920. #~ msgctxt "@info:progress"
  5921. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  5922. #~ msgstr "Enviando <filename>{file_name}</filename> al grupo {cluster_name}"
  5923. #~ msgctxt "@info:status"
  5924. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  5925. #~ msgstr "SolidWorks ha informado de errores al abrir el archivo. Le recomendamos que solucione estos problemas dentro del propio SolidWorks."
  5926. #~ msgctxt "@info:status"
  5927. #~ msgid ""
  5928. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  5929. #~ "\n"
  5930. #~ " Thanks!."
  5931. #~ msgstr ""
  5932. #~ "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"
  5933. #~ "\n"
  5934. #~ " Gracias."
  5935. #~ msgctxt "@info:status"
  5936. #~ msgid ""
  5937. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  5938. #~ "\n"
  5939. #~ "Sorry!"
  5940. #~ msgstr ""
  5941. #~ "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"
  5942. #~ "\n"
  5943. #~ " Disculpe."
  5944. #~ msgctxt "@item:material"
  5945. #~ msgid "No material loaded"
  5946. #~ msgstr "No se ha cargado material."
  5947. #~ msgctxt "@item:material"
  5948. #~ msgid "Unknown material"
  5949. #~ msgstr "Material desconocido"
  5950. #~ msgctxt "@info:status Has a cancel button next to it."
  5951. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  5952. #~ msgstr "El diámetro del material seleccionado hace que el material sea incompatible con la impresora actual."
  5953. #~ msgctxt "@action:button"
  5954. #~ msgid "Undo"
  5955. #~ msgstr "Deshacer"
  5956. #~ msgctxt "@action"
  5957. #~ msgid "Undo changing the material diameter."
  5958. #~ msgstr "Deshacer cambio del diámetro del material."
  5959. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5960. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  5961. #~ msgstr "El equipo definido en el perfil <filename>{0}</filename> no coincide con su equipo actual, no se ha podido importar."
  5962. #~ msgctxt "@label crash message"
  5963. #~ msgid ""
  5964. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  5965. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  5966. #~ " "
  5967. #~ msgstr ""
  5968. #~ "<p><b>Se ha producido un error grave. Envíenos este informe de incidencias para que podamos solucionar el problema.</p></b>\n"
  5969. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  5970. #~ " "
  5971. #~ msgctxt "@label"
  5972. #~ msgid "not yet initialised<br/>"
  5973. #~ msgstr "aún no se ha inicializado<br/>"
  5974. #~ msgctxt "@label"
  5975. #~ msgid "Gcode flavor"
  5976. #~ msgstr "Tipo de Gcode"
  5977. #~ msgctxt "@label"
  5978. #~ msgid "Start Gcode"
  5979. #~ msgstr "Iniciar GCode"
  5980. #~ msgctxt "@tooltip"
  5981. #~ msgid "Gcode commands to be executed at the very start."
  5982. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al inicio."
  5983. #~ msgctxt "@label"
  5984. #~ msgid "End Gcode"
  5985. #~ msgstr "Finalizar GCode"
  5986. #~ msgctxt "@tooltip"
  5987. #~ msgid "Gcode commands to be executed at the very end."
  5988. #~ msgstr "Los comandos de Gcode que se ejecutarán justo al final."
  5989. #~ msgctxt "@label"
  5990. #~ msgid "Extruder Start Gcode"
  5991. #~ msgstr "GCode inicial del extrusor"
  5992. #~ msgctxt "@label"
  5993. #~ msgid "Extruder End Gcode"
  5994. #~ msgstr "GCode final del extrusor"
  5995. #~ msgctxt "@label"
  5996. #~ msgid "Starting firmware update, this may take a while."
  5997. #~ msgstr "Comenzando la actualización del firmware, esto puede tardar algún tiempo."
  5998. #~ msgctxt "@label"
  5999. #~ msgid "Unknown error code: %1"
  6000. #~ msgstr "Código de error desconocido: %1"
  6001. #~ msgctxt "@label Printer name"
  6002. #~ msgid "Ultimaker 3"
  6003. #~ msgstr "Ultimaker 3"
  6004. #~ msgctxt "@label Printer name"
  6005. #~ msgid "Ultimaker 3 Extended"
  6006. #~ msgstr "Ultimaker 3 Extended"
  6007. #~ msgctxt "@label Printer status"
  6008. #~ msgid "Unknown"
  6009. #~ msgstr "Desconocido"
  6010. #~ msgctxt "@title:window"
  6011. #~ msgid "Find & Update plugins"
  6012. #~ msgstr "Buscar y actualizar complementos"
  6013. #~ msgctxt "@label"
  6014. #~ msgid "Here you can find a list of Third Party plugins."
  6015. #~ msgstr "Puede ver aquí una lista de complementos de terceros."
  6016. #~ msgctxt "@action:button"
  6017. #~ msgid "Upgrade"
  6018. #~ msgstr "Actualización"
  6019. #~ msgctxt "@action:button"
  6020. #~ msgid "Download"
  6021. #~ msgstr "Descargar"
  6022. #~ msgctxt "@info:tooltip"
  6023. #~ msgid "Show caution message in gcode reader."
  6024. #~ msgstr "Mostrar mensaje de advertencia en el lector de GCode."
  6025. #~ msgctxt "@option:check"
  6026. #~ msgid "Caution message in gcode reader"
  6027. #~ msgstr "Mensaje de advertencia en el lector de GCode"
  6028. #~ msgctxt "@window:title"
  6029. #~ msgid "Import Profile"
  6030. #~ msgstr "Importar perfil"
  6031. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6032. #~ msgid "Printer: %1, %2: %3"
  6033. #~ msgstr "Impresora: %1, %2: %3"
  6034. #~ msgctxt "@action:label %1 is printer name"
  6035. #~ msgid "Printer: %1"
  6036. #~ msgstr "Impresora: %1"
  6037. #~ msgctxt "@label"
  6038. #~ msgid "GCode generator"
  6039. #~ msgstr "Generador de GCode"
  6040. #~ msgctxt "@action:menu"
  6041. #~ msgid "Configure setting visiblity..."
  6042. #~ msgstr "Configurar la visibilidad de los ajustes..."
  6043. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6044. #~ msgid "Automatic: %1"
  6045. #~ msgstr "Automático: %1"
  6046. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6047. #~ msgid "Automatic: %1"
  6048. #~ msgstr "Automático: %1"
  6049. #~ msgctxt "@info:status"
  6050. #~ msgid "No printer connected"
  6051. #~ msgstr "No hay ninguna impresora conectada"
  6052. #~ msgctxt "@tooltip"
  6053. #~ msgid "The current temperature of this extruder."
  6054. #~ msgstr "Temperatura actual de este extrusor."
  6055. #~ msgctxt "@action:menu"
  6056. #~ msgid "Installed plugins..."
  6057. #~ msgstr "Complementos instalados..."
  6058. #~ msgctxt "@label"
  6059. #~ msgid "Support Extruder"
  6060. #~ msgstr "Extrusor del soporte"
  6061. #~ msgctxt "description"
  6062. #~ msgid "Writes GCode to a file."
  6063. #~ msgstr "Escribe Gcode en un archivo."
  6064. #~ msgctxt "name"
  6065. #~ msgid "GCode Writer"
  6066. #~ msgstr "Escritor de Gcode"
  6067. #~ msgctxt "name"
  6068. #~ msgid "GCode Profile Reader"
  6069. #~ msgstr "Lector de perfiles Gcode"
  6070. #~ msgctxt "@info:status"
  6071. #~ 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!"
  6072. #~ msgstr "Se han producido varios errores al abrir el archivo de SolidWorks. Compruebe que el archivo se puede abrir correctamente en SolidWorks."
  6073. #~ msgctxt "@info:status"
  6074. #~ msgid "Error while starting %s!"
  6075. #~ msgstr "Error al iniciar %s"
  6076. #~ msgctxt "@item:inlistbox"
  6077. #~ msgid "Simulation view"
  6078. #~ msgstr "Vista de simulación"
  6079. #~ msgctxt "@info"
  6080. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6081. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  6082. #~ msgctxt "@action:button"
  6083. #~ msgid "Dismiss"
  6084. #~ msgstr "Descartar"
  6085. #~ msgctxt "@menuitem"
  6086. #~ msgid "Global"
  6087. #~ msgstr "Global"
  6088. #~ msgctxt "@label crash message"
  6089. #~ msgid ""
  6090. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6091. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6092. #~ " "
  6093. #~ msgstr ""
  6094. #~ "<p><b>Se ha producido una excepción fatal. Envíenos este informe de errores para que podamos solucionar el problema.</p></b>\n"
  6095. #~ " <p>Utilice el botón «Enviar informe» para publicar automáticamente un informe de errores en nuestros servidores.</p>\n"
  6096. #~ " "
  6097. #~ msgctxt "@label Cura version"
  6098. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6099. #~ msgstr "<b>Versión de Cura:</b> {version}<br/>"
  6100. #~ msgctxt "@label Platform"
  6101. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6102. #~ msgstr "<b>Platforma:</b> {platform}<br/>"
  6103. #~ msgctxt "@label Qt version"
  6104. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6105. #~ msgstr "<b>Versión de Qt:</b> {qt}<br/>"
  6106. #~ msgctxt "@label PyQt version"
  6107. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6108. #~ msgstr "<b>Versión de PyQt:</b> {pyqt}<br/>"
  6109. #~ msgctxt "@label OpenGL"
  6110. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6111. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6112. #~ msgctxt "@title:groupbox"
  6113. #~ msgid "Exception traceback"
  6114. #~ msgstr "Rastreabilidad de excepciones"
  6115. #~ msgctxt "@label"
  6116. #~ msgid "Material diameter"
  6117. #~ msgstr "Diámetro del material"
  6118. #~ msgctxt "@title:window"
  6119. #~ msgid "Cura SolidWorks Plugin Configuration"
  6120. #~ msgstr "Configuración de complementos Cura SolidWorks"
  6121. #~ msgctxt "@action:label"
  6122. #~ msgid "Default quality of the exported STL:"
  6123. #~ msgstr "Calidad predeterminada del STL exportado:"
  6124. #~ msgctxt "@option:curaSolidworksStlQuality"
  6125. #~ msgid "Always ask"
  6126. #~ msgstr "Preguntar siempre"
  6127. #~ msgctxt "@option:curaSolidworksStlQuality"
  6128. #~ msgid "Always use Fine quality"
  6129. #~ msgstr "Usar siempre calidad fina"
  6130. #~ msgctxt "@option:curaSolidworksStlQuality"
  6131. #~ msgid "Always use Coarse quality"
  6132. #~ msgstr "Usar siempre calidad gruesa"
  6133. #~ msgctxt "@title:window"
  6134. #~ msgid "Import SolidWorks File as STL..."
  6135. #~ msgstr "Importar el archivo SolidWorks como STL..."
  6136. #~ msgctxt "@info:tooltip"
  6137. #~ msgid "Quality of the Exported STL"
  6138. #~ msgstr "Calidad del STL exportado"
  6139. #~ msgctxt "@action:label"
  6140. #~ msgid "Quality"
  6141. #~ msgstr "Calidad"
  6142. #~ msgctxt "@option:curaSolidworksStlQuality"
  6143. #~ msgid "Coarse"
  6144. #~ msgstr "Gruesa"
  6145. #~ msgctxt "@option:curaSolidworksStlQuality"
  6146. #~ msgid "Fine"
  6147. #~ msgstr "Fina"
  6148. #~ msgctxt "@"
  6149. #~ msgid "No Profile Available"
  6150. #~ msgstr "No hay perfiles disponibles."
  6151. #~ msgctxt "@label"
  6152. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6153. #~ msgstr "Este ajuste siempre se comparte entre extrusores. Si lo modifica, modificará el valor de todos los extrusores."
  6154. #~ msgctxt "@tooltip"
  6155. #~ msgid "<b>Time specification</b><br/><table>"
  6156. #~ msgstr "<b>Especificación de tiempo</b><br/><table>"
  6157. #~ msgctxt "@action:inmenu menubar:view"
  6158. #~ msgid "&Reset camera position"
  6159. #~ msgstr "&Restablecer posición de la cámara"
  6160. #~ msgctxt "@title:menu menubar:file"
  6161. #~ msgid "Save project"
  6162. #~ msgstr "Guardar proyecto"
  6163. #~ msgctxt "@title:tab"
  6164. #~ msgid "Prepare"
  6165. #~ msgstr "Preparar"
  6166. #~ msgctxt "@title:tab"
  6167. #~ msgid "Monitor"
  6168. #~ msgstr "Supervisar"
  6169. #~ msgctxt "@label"
  6170. #~ msgid "<a href='%1'>Check compatibility</a>"
  6171. #~ msgstr "<a href='%1'>Comprobar compatibilidad</a>"
  6172. #~ msgctxt "description"
  6173. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6174. #~ msgstr "Permite abrir ciertos archivos con el propio SolidWorks que, a continuación, puede convertirse y cargarse en Cura."
  6175. #~ msgctxt "@label:status"
  6176. #~ msgid "Blocked"
  6177. #~ msgstr "Deshabilitada"
  6178. #~ msgctxt "@label:status"
  6179. #~ msgid "Can't start print"
  6180. #~ msgstr "No se puede imprimir"
  6181. #~ msgctxt "@action:button"
  6182. #~ msgid "Open Connect.."
  6183. #~ msgstr "Abrir Connect"
  6184. #~ msgctxt "@info:title"
  6185. #~ msgid "Print Details"
  6186. #~ msgstr "Datos de impresión"
  6187. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6188. #~ 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."
  6189. #~ 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."
  6190. #~ msgctxt "@info:title"
  6191. #~ msgid "Layer View"
  6192. #~ msgstr "Vista de capas"
  6193. #~ msgctxt "@menuitem"
  6194. #~ msgid "Browse plugins"
  6195. #~ msgstr "Examinar complementos"
  6196. #~ msgctxt "@info:title"
  6197. #~ msgid "Export Details"
  6198. #~ msgstr "Datos de exportación"
  6199. #~ msgctxt "@label"
  6200. #~ msgid ""
  6201. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6202. #~ " <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"
  6203. #~ " "
  6204. #~ msgstr ""
  6205. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  6206. #~ " <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"
  6207. #~ " "
  6208. #~ msgctxt "@action:button"
  6209. #~ msgid "Open Web Page"
  6210. #~ msgstr "Abrir página web"
  6211. #~ msgctxt "@action:button"
  6212. #~ msgid "Ok"
  6213. #~ msgstr "Aceptar"
  6214. #~ msgctxt "@label"
  6215. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6216. #~ msgstr "La impresora no está configurada para alojar un grupo de impresoras conectadas de Ultimaker 3"
  6217. #~ msgctxt "@label"
  6218. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6219. #~ msgstr "La impresora aloja un grupo de %1 impresoras conectadas de Ultimaker 3"
  6220. #~ msgctxt "@label"
  6221. #~ msgid "Completed on: "
  6222. #~ msgstr "Completado el: "
  6223. #~ msgctxt "@info:tooltip"
  6224. #~ msgid "Opens the print jobs page with your default web browser."
  6225. #~ msgstr "Abre la página de trabajos de impresión en su navegador web por defecto."
  6226. #~ msgctxt "@label"
  6227. #~ msgid "PRINTER GROUP"
  6228. #~ msgstr "GRUPO DE IMPRESORAS"
  6229. #~ msgctxt "@action:warning"
  6230. #~ msgid "Loading a project will clear all models on the buildplate"
  6231. #~ msgstr "Si carga un proyecto, se borrarán todos los modelos de la placa de impresión."
  6232. #~ msgctxt "@label"
  6233. #~ msgid ""
  6234. #~ " plugin contains a license.\n"
  6235. #~ "You need to accept this license to install this plugin.\n"
  6236. #~ "Do you agree with the terms below?"
  6237. #~ msgstr ""
  6238. #~ " El complemento incluye una licencia.\n"
  6239. #~ "Debe aceptar dicha licencia para instalar el complemento.\n"
  6240. #~ "¿Acepta las siguientes condiciones?"
  6241. #~ msgctxt "@label"
  6242. #~ msgid "00h 00min"
  6243. #~ msgstr "00h 00min"
  6244. #~ msgctxt "@tooltip"
  6245. #~ msgid "<b>Time information</b>"
  6246. #~ msgstr "<b>Información sobre el tiempo</b>"
  6247. #~ msgctxt "@description"
  6248. #~ msgid "Print time"
  6249. #~ msgstr "Tiempo de impresión"
  6250. #~ msgctxt "@label"
  6251. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6252. #~ msgstr "%1m / ~ %2g/ ~ %4 %3"
  6253. #~ msgctxt "@label"
  6254. #~ msgid "%1m / ~ %2g"
  6255. #~ msgstr "%1m / ~ %2g"
  6256. #~ msgctxt "@title:window"
  6257. #~ msgid "Cura"
  6258. #~ msgstr "Cura"
  6259. #~ msgctxt "@label"
  6260. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6261. #~ msgstr "<a href='%1'>Comprobar la compatibilidad de los materiales</a>"
  6262. #~ msgctxt "name"
  6263. #~ msgid "UM3 Network Connection (Cluster)"
  6264. #~ msgstr "Conexión de red UM3 (grupo)"
  6265. #~ msgctxt "description"
  6266. #~ msgid "Provides the Layer view."
  6267. #~ msgstr "Proporciona la vista de capas."
  6268. #~ msgctxt "name"
  6269. #~ msgid "Layer View"
  6270. #~ msgstr "Vista de capas"
  6271. #~ msgctxt "@item:inlistbox"
  6272. #~ msgid "X-Ray"
  6273. #~ msgstr "Rayos X"
  6274. #~ msgctxt "@label"
  6275. #~ msgid "Doodle3D"
  6276. #~ msgstr "Doodle3D"
  6277. #~ msgctxt "@info:whatsthis"
  6278. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6279. #~ msgstr "Acepta códigos GCode y los envía a un enrutador Doodle3D por medio de wifi."
  6280. #~ msgctxt "@item:inmenu"
  6281. #~ msgid "Doodle3D printing"
  6282. #~ msgstr "Impresión Doodle3D"
  6283. #~ msgctxt "@action:button"
  6284. #~ msgid "Print with Doodle3D"
  6285. #~ msgstr "Imprimir con Doodle3D"
  6286. #~ msgctxt "@info:tooltip"
  6287. #~ msgid "Print with "
  6288. #~ msgstr "Imprimir con"
  6289. #~ msgctxt "@title:menu"
  6290. #~ msgid "Doodle3D"
  6291. #~ msgstr "Doodle3D"
  6292. #~ msgctxt "@item:inlistbox"
  6293. #~ msgid "Enable Scan devices..."
  6294. #~ msgstr "Habilitar dispositivos de digitalización..."
  6295. #~ msgctxt "@info:progress"
  6296. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6297. #~ msgstr "Guardando en unidad extraíble <filename>{0}</filename>"
  6298. #~ msgctxt "@info:status"
  6299. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6300. #~ msgstr "No se pudo guardar en <filename>{0}</filename>: <message>{1}</message>"
  6301. #~ msgctxt "@info:status"
  6302. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6303. #~ msgstr "Tenga en cuenta que tiene que volver a abrir el archivo SolidWorks manualmente. Volver a cargar el modelo no funciona."
  6304. #~ msgctxt "@item:inlistbox"
  6305. #~ msgid "Layers"
  6306. #~ msgstr "Capas"
  6307. #~ msgid "Browse plugins"
  6308. #~ msgstr "Examinar complementos"
  6309. #~ msgctxt "@item:inmenu"
  6310. #~ msgid "Solid"
  6311. #~ msgstr "Sólido"
  6312. #~ msgctxt "@label"
  6313. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6314. #~ msgstr "El archivo <filename>{0}</filename> ya existe. ¿Está seguro de que desea sobrescribirlo?"
  6315. #~ msgctxt "@info:status"
  6316. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6317. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: <message>{1}</message>"
  6318. #~ msgctxt "@info:status"
  6319. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6320. #~ msgstr "Error al exportar el perfil a <filename>{0}</filename>: Error en el complemento de escritura."
  6321. #~ msgctxt "@info:status"
  6322. #~ msgid "Exported profile to <filename>{0}</filename>"
  6323. #~ msgstr "Perfil exportado a <filename>{0}</filename>"
  6324. #~ msgctxt "@info:status"
  6325. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6326. #~ msgstr "Error al importar el perfil de <filename>{0}</filename>: <message>{1}</message>"
  6327. #~ msgctxt "@title:window"
  6328. #~ msgid "Doodle3D Settings"
  6329. #~ msgstr "Ajustes de Doodle3D"
  6330. #~ msgctxt "@title:window"
  6331. #~ msgid "Print to: %1"
  6332. #~ msgstr "Imprimir en: %1"
  6333. #~ msgctxt "@label"
  6334. #~ msgid "Extruder Temperature: %1/%2°C"
  6335. #~ msgstr "Temperatura del extrusor: %1/%2 °C"
  6336. #~ msgctxt "@label"
  6337. #~ msgid "Bed Temperature: %1/%2°C"
  6338. #~ msgstr "Temperatura de la plataforma: %1/%2 °C"
  6339. #~ msgctxt "@label"
  6340. #~ msgid "%1"
  6341. #~ msgstr "%1"
  6342. #~ msgctxt "@label"
  6343. #~ msgid "View Mode: Layers"
  6344. #~ msgstr "Ver modo: Capas"
  6345. #~ msgctxt "@info:status"
  6346. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  6347. #~ msgstr "No se pudo importar el material en <filename>%1</filename>: <message>%2</message>."
  6348. #~ msgctxt "@info:status"
  6349. #~ msgid "Successfully imported material <filename>%1</filename>"
  6350. #~ msgstr "El material se ha importado correctamente en <filename>%1</filename>."
  6351. #~ msgctxt "@info:status"
  6352. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  6353. #~ msgstr "Se ha producido un error al exportar el material a <filename>%1</filename>: <message>%2</message>."
  6354. #~ msgctxt "@info:status"
  6355. #~ msgid "Successfully exported material to <filename>%1</filename>"
  6356. #~ msgstr "El material se ha exportado correctamente a <filename>%1</filename>."
  6357. #~ msgctxt "@label"
  6358. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  6359. #~ msgstr "%1 m / ~ %2 g / ~ %4 %3"
  6360. #~ msgctxt "@label"
  6361. #~ msgid "%1 m / ~ %2 g"
  6362. #~ msgstr "%1 m/~ %2 g"
  6363. #~ msgctxt "@label"
  6364. #~ msgid "Hotend"
  6365. #~ msgstr "Extremo caliente"
  6366. #~ msgctxt "@action:button"
  6367. #~ msgid "View Mode"
  6368. #~ msgstr "Ver modo"
  6369. #~ msgctxt "@title:tab"
  6370. #~ msgid "Print"
  6371. #~ msgstr "Imprimir"
  6372. #~ msgctxt "@label"
  6373. #~ msgid "0%"
  6374. #~ msgstr "0 %"
  6375. #~ msgctxt "@label"
  6376. #~ msgid "Empty infill will leave your model hollow with low strength."
  6377. #~ msgstr "Un relleno vacío dejará hueco el modelo con baja resistencia."
  6378. #~ msgctxt "@label"
  6379. #~ msgid "20%"
  6380. #~ msgstr "20 %"
  6381. #~ msgctxt "@label"
  6382. #~ msgid "Light (20%) infill will give your model an average strength."
  6383. #~ msgstr "Un relleno ligero (20 %) dará al modelo una resistencia media."
  6384. #~ msgctxt "@label"
  6385. #~ msgid "50%"
  6386. #~ msgstr "50 %"
  6387. #~ msgctxt "@label"
  6388. #~ msgid "Dense (50%) infill will give your model an above average strength."
  6389. #~ msgstr "Un relleno denso (50 %) dará al modelo una resistencia por encima de la media."
  6390. #~ msgctxt "@label"
  6391. #~ msgid "100%"
  6392. #~ msgstr "100 %"
  6393. #~ msgctxt "@label"
  6394. #~ msgid "Solid (100%) infill will make your model completely solid."
  6395. #~ msgstr "Un relleno sólido (100 %) hará que el modelo sea completamente macizo."
  6396. #~ msgctxt "@label"
  6397. #~ msgid "Gradual"
  6398. #~ msgstr "Gradual"
  6399. #~ msgctxt "description"
  6400. #~ msgid "Provides support for writing X3G files"
  6401. #~ msgstr "Proporciona asistencia para escribir archivos X3G."
  6402. #~ msgctxt "name"
  6403. #~ msgid "X3G Writer"
  6404. #~ msgstr "Escritor de X3G"
  6405. #~ msgctxt "@label"
  6406. #~ msgid "Machine Settings action"
  6407. #~ msgstr "Acción Ajustes de la máquina"
  6408. #~ msgctxt "@info:whatsthis"
  6409. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6410. #~ msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)."
  6411. #~ msgctxt "@label"
  6412. #~ msgid "X-Ray View"
  6413. #~ msgstr "Vista de rayos X"
  6414. #~ msgctxt "@info:whatsthis"
  6415. #~ msgid "Provides the X-Ray view."
  6416. #~ msgstr "Proporciona la vista de rayos X."
  6417. #~ msgctxt "@label"
  6418. #~ msgid "X3D Reader"
  6419. #~ msgstr "Lector de X3D"
  6420. #~ msgctxt "@info:whatsthis"
  6421. #~ msgid "Provides support for reading X3D files."
  6422. #~ msgstr "Proporciona asistencia para leer archivos X3D."
  6423. #~ msgctxt "@label"
  6424. #~ msgid "GCode Writer"
  6425. #~ msgstr "Escritor de GCode"
  6426. #~ msgctxt "@info:whatsthis"
  6427. #~ msgid "Writes GCode to a file."
  6428. #~ msgstr "Escribe GCode en un archivo."
  6429. #~ msgctxt "@action:button Preceded by 'Ready to'."
  6430. #~ msgid "Print with Doodle3D"
  6431. #~ msgstr "Imprimir con Doodle3D"
  6432. #~ msgctxt "@info:whatsthis"
  6433. #~ msgid "Shows changes since latest checked version."
  6434. #~ msgstr "Muestra los cambios desde la última versión comprobada."
  6435. #~ msgctxt "@label"
  6436. #~ msgid "Profile flatener"
  6437. #~ msgstr "Aplanador de perfil"
  6438. #~ msgctxt "@info:whatsthis"
  6439. #~ msgid "Create a flattend quality changes profile."
  6440. #~ msgstr "Crear un perfil de cambios de calidad aplanado."
  6441. #~ msgctxt "@label"
  6442. #~ msgid "USB printing"
  6443. #~ msgstr "Impresión USB"
  6444. #~ msgctxt "@info:whatsthis"
  6445. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  6446. #~ msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware."
  6447. #~ msgctxt "X3G Writer Plugin Description"
  6448. #~ msgid "Writes X3G to a file"
  6449. #~ msgstr "Escribe X3G en un archivo."
  6450. #~ msgctxt "@label"
  6451. #~ msgid "Removable Drive Output Device Plugin"
  6452. #~ msgstr "Complemento de dispositivo de salida de unidad extraíble"
  6453. #~ msgctxt "@info:whatsthis"
  6454. #~ msgid "Provides removable drive hotplugging and writing support."
  6455. #~ msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble."
  6456. #~ msgctxt "@info:whatsthis"
  6457. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6458. #~ msgstr "Gestiona las conexiones de red a las impresoras Ultimaker 3."
  6459. #~ msgctxt "@label"
  6460. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6461. #~ msgstr "Print core distinto (Cura: {0}, impresora: {1}) seleccionado para extrusor {2}"
  6462. #~ msgctxt "@label"
  6463. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6464. #~ msgstr "El PrintCore {0} no está calibrado correctamente. Debe llevarse a cabo una calibración XY de la impresora."
  6465. #~ msgctxt "@label"
  6466. #~ 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."
  6467. #~ 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."
  6468. #~ msgctxt "@label"
  6469. #~ msgid "Post Processing"
  6470. #~ msgstr "Posprocesamiento"
  6471. #~ msgctxt "Description of plugin"
  6472. #~ msgid "Extension that allows for user created scripts for post processing"
  6473. #~ msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios."
  6474. #~ msgctxt "@label"
  6475. #~ msgid "Auto Save"
  6476. #~ msgstr "Guardado automático"
  6477. #~ msgctxt "@info:whatsthis"
  6478. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6479. #~ msgstr "Guarda automáticamente Preferencias, Máquinas y Perfiles después de los cambios."
  6480. #~ msgctxt "@label"
  6481. #~ msgid "Slice info"
  6482. #~ msgstr "Info de la segmentación"
  6483. #~ msgctxt "@info:whatsthis"
  6484. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  6485. #~ msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias."
  6486. #~ msgctxt "@info"
  6487. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  6488. #~ msgstr "Cura recopila de forma anónima información de la segmentación. Puede desactivar esta opción en las preferencias."
  6489. #~ msgctxt "@label"
  6490. #~ msgid "Material Profiles"
  6491. #~ msgstr "Perfiles de material"
  6492. #~ msgctxt "@info:whatsthis"
  6493. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  6494. #~ msgstr "Permite leer y escribir perfiles de material basados en XML."
  6495. #~ msgctxt "@label"
  6496. #~ msgid "Legacy Cura Profile Reader"
  6497. #~ msgstr "Lector de perfiles antiguos de Cura"
  6498. #~ msgctxt "@info:whatsthis"
  6499. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  6500. #~ msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura."
  6501. #~ msgctxt "@label"
  6502. #~ msgid "GCode Profile Reader"
  6503. #~ msgstr "Lector de perfiles GCode"
  6504. #~ msgctxt "@info:whatsthis"
  6505. #~ msgid "Provides support for importing profiles from g-code files."
  6506. #~ msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode."
  6507. #~ msgctxt "@label"
  6508. #~ msgid "Layer View"
  6509. #~ msgstr "Vista de capas"
  6510. #~ msgctxt "@info:whatsthis"
  6511. #~ msgid "Provides the Layer view."
  6512. #~ msgstr "Proporciona la vista de capas."
  6513. #~ msgctxt "@label"
  6514. #~ msgid "Version Upgrade 2.5 to 2.6"
  6515. #~ msgstr "Actualización de la versión 2.5 a la 2.6"
  6516. #~ msgctxt "@info:whatsthis"
  6517. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  6518. #~ msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6."
  6519. #~ msgctxt "@label"
  6520. #~ msgid "Version Upgrade 2.1 to 2.2"
  6521. #~ msgstr "Actualización de la versión 2.1 a la 2.2"
  6522. #~ msgctxt "@info:whatsthis"
  6523. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  6524. #~ msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2."
  6525. #~ msgctxt "@label"
  6526. #~ msgid "Version Upgrade 2.2 to 2.4"
  6527. #~ msgstr "Actualización de la versión 2.2 a la 2.4"
  6528. #~ msgctxt "@info:whatsthis"
  6529. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  6530. #~ msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4."
  6531. #~ msgctxt "@label"
  6532. #~ msgid "Image Reader"
  6533. #~ msgstr "Lector de imágenes"
  6534. #~ msgctxt "@info:whatsthis"
  6535. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  6536. #~ msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D."
  6537. #~ msgctxt "@label"
  6538. #~ msgid "CuraEngine Backend"
  6539. #~ msgstr "Backend de CuraEngine"
  6540. #~ msgctxt "@info:whatsthis"
  6541. #~ msgid "Provides the link to the CuraEngine slicing backend."
  6542. #~ msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine."
  6543. #~ msgctxt "@label"
  6544. #~ msgid "Per Model Settings Tool"
  6545. #~ msgstr "Herramienta de ajustes por modelo"
  6546. #~ msgctxt "@info:whatsthis"
  6547. #~ msgid "Provides the Per Model Settings."
  6548. #~ msgstr "Proporciona los ajustes por modelo."
  6549. #~ msgctxt "@label"
  6550. #~ msgid "3MF Reader"
  6551. #~ msgstr "Lector de 3MF"
  6552. #~ msgctxt "@info:whatsthis"
  6553. #~ msgid "Provides support for reading 3MF files."
  6554. #~ msgstr "Proporciona asistencia para leer archivos 3MF."
  6555. #~ msgctxt "@label"
  6556. #~ msgid "Solid View"
  6557. #~ msgstr "Vista de sólidos"
  6558. #~ msgctxt "@info:whatsthis"
  6559. #~ msgid "Provides a normal solid mesh view."
  6560. #~ msgstr "Proporciona una vista de malla sólida normal."
  6561. #~ msgctxt "@label"
  6562. #~ msgid "G-code Reader"
  6563. #~ msgstr "Lector de GCode"
  6564. #~ msgctxt "@info:whatsthis"
  6565. #~ msgid "Allows loading and displaying G-code files."
  6566. #~ msgstr "Permite cargar y visualizar archivos GCode."
  6567. #~ msgctxt "@label"
  6568. #~ msgid "Cura Profile Writer"
  6569. #~ msgstr "Escritor de perfiles de Cura"
  6570. #~ msgctxt "@info:whatsthis"
  6571. #~ msgid "Provides support for exporting Cura profiles."
  6572. #~ msgstr "Proporciona asistencia para exportar perfiles de Cura."
  6573. #~ msgctxt "@label"
  6574. #~ msgid "3MF Writer"
  6575. #~ msgstr "Escritor de 3MF"
  6576. #~ msgctxt "@info:whatsthis"
  6577. #~ msgid "Provides support for writing 3MF files."
  6578. #~ msgstr "Proporciona asistencia para escribir archivos 3MF."
  6579. #~ msgctxt "@label"
  6580. #~ msgid "Ultimaker machine actions"
  6581. #~ msgstr "Acciones de la máquina Ultimaker"
  6582. #~ msgctxt "@info:whatsthis"
  6583. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6584. #~ 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.)."
  6585. #~ msgctxt "@label"
  6586. #~ msgid "Cura Profile Reader"
  6587. #~ msgstr "Lector de perfiles de Cura"
  6588. #~ msgctxt "@info:whatsthis"
  6589. #~ msgid "Provides support for importing Cura profiles."
  6590. #~ msgstr "Proporciona asistencia para la importación de perfiles de Cura."
  6591. #~ msgctxt "@info"
  6592. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  6593. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f mm"
  6594. #~ msgctxt "@label"
  6595. #~ msgid "Build Plate Shape"
  6596. #~ msgstr "Forma de la placa de impresión"
  6597. #~ msgctxt "@option:check"
  6598. #~ msgid "Machine Center is Zero"
  6599. #~ msgstr "El centro de la máquina es cero."
  6600. #~ msgctxt "@option:check"
  6601. #~ msgid "Heated Bed"
  6602. #~ msgstr "Plataforma caliente"
  6603. #~ msgctxt "@label"
  6604. #~ msgid "GCode Flavor"
  6605. #~ msgstr "Tipo de GCode"
  6606. #~ msgctxt "@label"
  6607. #~ msgid "Material Diameter"
  6608. #~ msgstr "Diámetro del material"
  6609. #~ msgctxt "@label"
  6610. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  6611. #~ 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>"
  6612. #~ msgctxt "@item:inlistbox"
  6613. #~ msgid "Ultimaker"
  6614. #~ msgstr "Ultimaker"
  6615. #~ msgctxt "@label"
  6616. #~ msgid "Support library for scientific computing "
  6617. #~ msgstr "Biblioteca de apoyo para cálculos científicos "
  6618. #~ msgctxt "@tooltip"
  6619. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  6620. #~ msgstr "<b>Configuración de impresión</b><br/><br/>Editar o revisar los ajustes del trabajo de impresión activo."
  6621. #~ msgctxt "@tooltip"
  6622. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  6623. #~ msgstr "<b>Monitor de impresión</b><br/><br/>Supervisar el estado de la impresora conectada y del trabajo de impresión en curso."
  6624. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  6625. #~ msgid "Automatic: %1"
  6626. #~ msgstr "Automático: %1"
  6627. #~ msgctxt "@label:PrintjobStatus"
  6628. #~ msgid "Please load a 3d model"
  6629. #~ msgstr "Cargue un modelo en 3D"
  6630. #~ msgctxt "@label"
  6631. #~ msgid "Print Selected Model with %1"
  6632. #~ msgid_plural "Print Selected Models With %1"
  6633. #~ msgstr[0] "Imprimir modelo seleccionado con %1"
  6634. #~ msgstr[1] "Imprimir modelos seleccionados con %1"
  6635. #~ msgctxt "@info:status"
  6636. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  6637. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión. No se ha cargado ningún PrintCore en la ranura {0}."
  6638. #~ msgctxt "@label"
  6639. #~ msgid "Version Upgrade 2.4 to 2.5"
  6640. #~ msgstr "Actualización de la versión 2.4 a la 2.5"
  6641. #~ msgctxt "@info:whatsthis"
  6642. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  6643. #~ msgstr "Actualiza la configuración de Cura 2.4 a Cura 2.5."
  6644. #~ msgctxt "@info:status"
  6645. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  6646. #~ msgstr "No se puede encontrar el perfil de calidad de esta combinación. Se utilizarán los ajustes predeterminados."
  6647. #~ msgctxt "@title:window"
  6648. #~ msgid "Oops!"
  6649. #~ msgstr "¡Vaya!"
  6650. #~ msgctxt "@label"
  6651. #~ msgid ""
  6652. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6653. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  6654. #~ " <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"
  6655. #~ " "
  6656. #~ msgstr ""
  6657. #~ "<p>Se ha producido una excepción fatal de la que no podemos recuperarnos.</p>\n"
  6658. #~ " <p>Esperamos que la imagen de este gatito le ayude a recuperarse del shock.</p>\n"
  6659. #~ " <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"
  6660. #~ " "
  6661. #~ msgctxt "@label"
  6662. #~ msgid "Please enter the correct settings for your printer below:"
  6663. #~ msgstr "Introduzca los ajustes correctos de la impresora a continuación:"
  6664. #~ msgctxt "@label"
  6665. #~ msgid "Extruder %1"
  6666. #~ msgstr "Extrusor %1"
  6667. #~ msgctxt "@label Followed by extruder selection drop-down."
  6668. #~ msgid "Print model with"
  6669. #~ msgstr "Imprimir modelo con"
  6670. #~ msgctxt "@label"
  6671. #~ msgid "You will need to restart the application for language changes to have effect."
  6672. #~ msgstr "Tendrá que reiniciar la aplicación para que tengan efecto los cambios del idioma."
  6673. #~ msgctxt "@info:tooltip"
  6674. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  6675. #~ msgstr "Mueve la cámara de manera que el modelo se encuentre en el centro de la vista cuando se selecciona un modelo."
  6676. #~ msgctxt "@action:inmenu menubar:edit"
  6677. #~ msgid "Delete &Selection"
  6678. #~ msgstr "Eliminar &selección"
  6679. #~ msgctxt "@action:inmenu menubar:file"
  6680. #~ msgid "&Open File..."
  6681. #~ msgstr "&Abrir archivo..."
  6682. #~ msgctxt "@action:inmenu menubar:file"
  6683. #~ msgid "&Open Project..."
  6684. #~ msgstr "A&brir proyecto..."
  6685. #~ msgctxt "@title:window"
  6686. #~ msgid "Multiply Model"
  6687. #~ msgstr "Multiplicar modelo"
  6688. #~ msgctxt "@title:menu menubar:file"
  6689. #~ msgid "Save &All"
  6690. #~ msgstr "Guardar &todo"
  6691. #~ msgctxt "@title:window"
  6692. #~ msgid "Open file"
  6693. #~ msgstr "Abrir archivo"
  6694. #~ msgctxt "@title:window"
  6695. #~ msgid "Open workspace"
  6696. #~ msgstr "Abrir área de trabajo"
  6697. #~ msgctxt "@label"
  6698. #~ msgid "Hollow"
  6699. #~ msgstr "Hueco"
  6700. #~ msgctxt "@label"
  6701. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  6702. #~ msgstr "Ningún (0%) relleno, lo que dejará hueco el modelo a costa de baja resistencia"
  6703. #~ msgctxt "@label"
  6704. #~ msgid "Light"
  6705. #~ msgstr "Ligero"
  6706. #~ msgctxt "@label"
  6707. #~ msgid "Light (20%) infill will give your model an average strength"
  6708. #~ msgstr "Un relleno ligero (20%) dará al modelo de una resistencia media"
  6709. #~ msgctxt "@label"
  6710. #~ msgid "Dense"
  6711. #~ msgstr "Denso"
  6712. #~ msgctxt "@label"
  6713. #~ msgid "Dense (50%) infill will give your model an above average strength"
  6714. #~ msgstr "Un relleno denso (50%) dará al modelo de una resistencia por encima de la media"
  6715. #~ msgctxt "@label"
  6716. #~ msgid "Solid"
  6717. #~ msgstr "Sólido"
  6718. #~ msgctxt "@label"
  6719. #~ msgid "Solid (100%) infill will make your model completely solid"
  6720. #~ msgstr "Un relleno sólido (100%) hará que el modelo sea completamente macizo"
  6721. #~ msgctxt "@label"
  6722. #~ msgid "Enable Support"
  6723. #~ msgstr "Habilitar el soporte"
  6724. #~ msgctxt "@label"
  6725. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  6726. #~ msgstr "Habilita las estructuras del soporte. Estas estructuras soportan partes del modelo con voladizos severos."
  6727. #~ msgctxt "@label"
  6728. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6729. #~ msgstr "¿Necesita mejorar sus impresiones? Lea las <a href='%1'>Guías de solución de problemas de Ultimaker</a>."
  6730. #~ msgctxt "@info:status"
  6731. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  6732. #~ msgstr "Conectado a través de la red a {0}. Apruebe la solicitud de acceso en la impresora."
  6733. #~ msgctxt "@info:status"
  6734. #~ msgid "Connected over the network to {0}."
  6735. #~ msgstr "Conectado a través de la red a {0}."
  6736. #~ msgctxt "@info:status"
  6737. #~ msgid "Connected over the network to {0}. No access to control the printer."
  6738. #~ msgstr "Conectado a través de la red a {0}. No hay acceso para controlar la impresora."
  6739. #~ msgctxt "@info:status"
  6740. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  6741. #~ msgstr "No se puede iniciar un trabajo nuevo de impresión porque la impresora está ocupada. Compruebe la impresora."
  6742. #~ msgctxt "@label"
  6743. #~ msgid "You made changes to the following setting(s)/override(s):"
  6744. #~ msgstr "Ha realizado cambios en los siguientes ajustes o se ha sobrescrito:"
  6745. #~ msgctxt "@window:title"
  6746. #~ msgid "Switched profiles"
  6747. #~ msgstr "Perfiles activados"
  6748. #~ msgctxt "@label"
  6749. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  6750. #~ msgstr "¿Desea transferir los %d ajustes o sobrescrituras modificados a este perfil?"
  6751. #~ msgctxt "@label"
  6752. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  6753. #~ msgstr "Si transfiere los ajustes, se sobrescribirán los del perfil. Si no los transfiere, se perderán."
  6754. #~ msgctxt "@label"
  6755. #~ msgid "Cost per Meter (Approx.)"
  6756. #~ msgstr "Coste por metro (aprox.)"
  6757. #~ msgctxt "@label"
  6758. #~ msgid "%1/m"
  6759. #~ msgstr "%1/m"
  6760. #~ msgctxt "@info:tooltip"
  6761. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  6762. #~ 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."
  6763. #~ msgctxt "@action:button"
  6764. #~ msgid "Display five top layers in layer view"
  6765. #~ msgstr "Mostrar las cinco primeras capas en la vista de capas"
  6766. #~ msgctxt "@info:tooltip"
  6767. #~ msgid "Should only the top layers be displayed in layerview?"
  6768. #~ msgstr "¿Deben mostrarse solo las primeras capas en la vista de capas?"
  6769. #~ msgctxt "@option:check"
  6770. #~ msgid "Only display top layer(s) in layer view"
  6771. #~ msgstr "Mostrar solo las primeras capas en la vista de capas"
  6772. #~ msgctxt "@label"
  6773. #~ msgid "Opening files"
  6774. #~ msgstr "Abriendo archivos..."
  6775. #~ msgctxt "@label"
  6776. #~ msgid "Printer Monitor"
  6777. #~ msgstr "Monitor de la impresora"
  6778. #~ msgctxt "@label"
  6779. #~ msgid "Temperatures"
  6780. #~ msgstr "Temperaturas"
  6781. #~ msgctxt "@label:PrintjobStatus"
  6782. #~ msgid "Preparing to slice..."
  6783. #~ msgstr "Preparando para segmentar..."
  6784. #~ msgctxt "@window:title"
  6785. #~ msgid "Changes on the Printer"
  6786. #~ msgstr "Cambios en la impresora"
  6787. #~ msgctxt "@action:inmenu"
  6788. #~ msgid "&Duplicate Model"
  6789. #~ msgstr "&Duplicar modelo"
  6790. #~ msgctxt "@label"
  6791. #~ msgid "Helper Parts:"
  6792. #~ msgstr "Partes de los asistentes:"
  6793. #~ msgctxt "@label"
  6794. #~ 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."
  6795. #~ 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."
  6796. #~ msgctxt "@label"
  6797. #~ msgid "Don't print support"
  6798. #~ msgstr "No utilizar soporte de impresión."
  6799. #~ msgctxt "@label"
  6800. #~ msgid "Print support using %1"
  6801. #~ msgstr "Soporte de impresión con %1"
  6802. #~ msgctxt "@label:listbox"
  6803. #~ msgid "Printer:"
  6804. #~ msgstr "Impresora:"
  6805. #~ msgctxt "@info:status"
  6806. #~ msgid "Successfully imported profiles {0}"
  6807. #~ msgstr "Perfiles {0} importados correctamente"
  6808. #~ msgctxt "@label"
  6809. #~ msgid "Scripts"
  6810. #~ msgstr "Secuencias de comandos"
  6811. #~ msgctxt "@label"
  6812. #~ msgid "Active Scripts"
  6813. #~ msgstr "Secuencias de comandos activas"
  6814. #~ msgctxt "@label"
  6815. #~ msgid "Done"
  6816. #~ msgstr "Realizada"
  6817. #~ msgctxt "@item:inlistbox"
  6818. #~ msgid "English"
  6819. #~ msgstr "Inglés"
  6820. #~ msgctxt "@item:inlistbox"
  6821. #~ msgid "Finnish"
  6822. #~ msgstr "Finlandés"
  6823. #~ msgctxt "@item:inlistbox"
  6824. #~ msgid "French"
  6825. #~ msgstr "Francés"
  6826. #~ msgctxt "@item:inlistbox"
  6827. #~ msgid "German"
  6828. #~ msgstr "Alemán"
  6829. #~ msgctxt "@item:inlistbox"
  6830. #~ msgid "Italian"
  6831. #~ msgstr "Italiano"
  6832. #~ msgctxt "@item:inlistbox"
  6833. #~ msgid "Dutch"
  6834. #~ msgstr "Holandés"
  6835. #~ msgctxt "@item:inlistbox"
  6836. #~ msgid "Spanish"
  6837. #~ msgstr "Español"
  6838. #~ msgctxt "@label"
  6839. #~ msgid "Do you want to change the PrintCores and materials in Cura to match your printer?"
  6840. #~ msgstr "¿Desea cambiar los PrintCores y materiales de Cura para que coincidan con la impresora?"
  6841. #~ msgctxt "@label:"
  6842. #~ msgid "Print Again"
  6843. #~ msgstr "Volver a imprimir"