cura.po 271 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-03-28 11:57+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: ru_RU\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
  20. #: cura/API/Account.py:199
  21. msgctxt "@info:title"
  22. msgid "Login failed"
  23. msgstr "Вход не выполнен"
  24. #: cura/Arranging/ArrangeObjectsJob.py:25
  25. msgctxt "@info:status"
  26. msgid "Finding new location for objects"
  27. msgstr "Поиск места для новых объектов"
  28. #: cura/Arranging/ArrangeObjectsJob.py:29
  29. msgctxt "@info:title"
  30. msgid "Finding Location"
  31. msgstr "Поиск места"
  32. #: cura/Arranging/ArrangeObjectsJob.py:42 cura/MultiplyObjectsJob.py:99
  33. msgctxt "@info:status"
  34. msgid "Unable to find a location within the build volume for all objects"
  35. msgstr "Невозможно разместить все объекты внутри печатаемого объёма"
  36. #: cura/Arranging/ArrangeObjectsJob.py:43
  37. msgctxt "@info:title"
  38. msgid "Can't Find Location"
  39. msgstr "Не могу найти место"
  40. #: cura/Backups/Backup.py:115
  41. msgctxt "@info:backup_failed"
  42. msgid "Could not create archive from user data directory: {}"
  43. msgstr "Не удалось создать архив из каталога с данными пользователя: {}"
  44. #: cura/Backups/Backup.py:122 cura/Backups/Backup.py:159
  45. #: plugins/CuraDrive/src/DrivePluginExtension.py:118
  46. #: plugins/CuraDrive/src/DrivePluginExtension.py:126
  47. msgctxt "@info:title"
  48. msgid "Backup"
  49. msgstr "Резервное копирование"
  50. #: cura/Backups/Backup.py:134
  51. msgctxt "@info:backup_failed"
  52. msgid "Tried to restore a Cura backup without having proper data or meta data."
  53. msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных."
  54. #: cura/Backups/Backup.py:145
  55. msgctxt "@info:backup_failed"
  56. msgid "Tried to restore a Cura backup that is higher than the current version."
  57. msgstr "Выполнена попытка восстановить резервную копию Cura с более поздней версией, чем текущая."
  58. #: cura/Backups/Backup.py:158
  59. msgctxt "@info:backup_failed"
  60. msgid "The following error occurred while trying to restore a Cura backup:"
  61. msgstr "При попытке восстановить резервную копию Cura произошла следующая ошибка:"
  62. #: cura/BuildVolume.py:100
  63. msgctxt "@info:status"
  64. 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."
  65. msgstr "Высота печатаемого объёма была уменьшена до значения параметра \"Последовательность печати\", чтобы предотвратить касание портала за напечатанные детали."
  66. #: cura/BuildVolume.py:103
  67. msgctxt "@info:title"
  68. msgid "Build Volume"
  69. msgstr "Объём печати"
  70. #: cura/CrashHandler.py:107
  71. msgctxt "@title:window"
  72. msgid "Cura can't start"
  73. msgstr "Не удалось запустить Cura"
  74. #: cura/CrashHandler.py:113
  75. msgctxt "@label crash message"
  76. msgid ""
  77. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  78. " <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"
  79. " <p>Backups can be found in the configuration folder.</p>\n"
  80. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  81. " "
  82. msgstr " "
  83. #: cura/CrashHandler.py:122
  84. msgctxt "@action:button"
  85. msgid "Send crash report to UltiMaker"
  86. msgstr "Отправить отчет о сбое в UltiMaker"
  87. #: cura/CrashHandler.py:125
  88. msgctxt "@action:button"
  89. msgid "Show detailed crash report"
  90. msgstr "Показать подробный отчет о сбое"
  91. #: cura/CrashHandler.py:129
  92. msgctxt "@action:button"
  93. msgid "Show configuration folder"
  94. msgstr "Показать конфигурационный каталог"
  95. #: cura/CrashHandler.py:140
  96. msgctxt "@action:button"
  97. msgid "Backup and Reset Configuration"
  98. msgstr "Резервное копирование и сброс конфигурации"
  99. #: cura/CrashHandler.py:171
  100. msgctxt "@title:window"
  101. msgid "Crash Report"
  102. msgstr "Отчёт о сбое"
  103. #: cura/CrashHandler.py:190
  104. msgctxt "@label crash message"
  105. msgid ""
  106. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  107. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  108. " "
  109. msgstr ""
  110. "<p><b>В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы</p></b>\n"
  111. " <p>Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах</p>\n"
  112. " "
  113. #: cura/CrashHandler.py:198
  114. msgctxt "@title:groupbox"
  115. msgid "System information"
  116. msgstr "Информация о системе"
  117. #: cura/CrashHandler.py:207
  118. msgctxt "@label unknown version of Cura"
  119. msgid "Unknown"
  120. msgstr "Неизвестно"
  121. #: cura/CrashHandler.py:228
  122. msgctxt "@label Cura version number"
  123. msgid "Cura version"
  124. msgstr "Версия Cura"
  125. #: cura/CrashHandler.py:229
  126. msgctxt "@label"
  127. msgid "Cura language"
  128. msgstr "Язык Cura"
  129. #: cura/CrashHandler.py:230
  130. msgctxt "@label"
  131. msgid "OS language"
  132. msgstr "Язык ОС"
  133. #: cura/CrashHandler.py:231
  134. msgctxt "@label Type of platform"
  135. msgid "Platform"
  136. msgstr "Платформа"
  137. #: cura/CrashHandler.py:232
  138. msgctxt "@label"
  139. msgid "Qt version"
  140. msgstr "Версия Qt"
  141. #: cura/CrashHandler.py:233
  142. msgctxt "@label"
  143. msgid "PyQt version"
  144. msgstr "Версия PyQt"
  145. #: cura/CrashHandler.py:234
  146. msgctxt "@label OpenGL version"
  147. msgid "OpenGL"
  148. msgstr "OpenGL"
  149. #: cura/CrashHandler.py:264
  150. msgctxt "@label"
  151. msgid "Not yet initialized"
  152. msgstr "Еще не инициализировано"
  153. #: cura/CrashHandler.py:267
  154. #, python-brace-format
  155. msgctxt "@label OpenGL version"
  156. msgid "<li>OpenGL Version: {version}</li>"
  157. msgstr "<li>Версия OpenGL: {version}</li>"
  158. #: cura/CrashHandler.py:268
  159. #, python-brace-format
  160. msgctxt "@label OpenGL vendor"
  161. msgid "<li>OpenGL Vendor: {vendor}</li>"
  162. msgstr "<li>Поставщик OpenGL: {vendor}</li>"
  163. #: cura/CrashHandler.py:269
  164. #, python-brace-format
  165. msgctxt "@label OpenGL renderer"
  166. msgid "<li>OpenGL Renderer: {renderer}</li>"
  167. msgstr "<li>Средство визуализации OpenGL: {renderer}</li>"
  168. #: cura/CrashHandler.py:304
  169. msgctxt "@title:groupbox"
  170. msgid "Error traceback"
  171. msgstr "Обратное отслеживание ошибки"
  172. #: cura/CrashHandler.py:390
  173. msgctxt "@title:groupbox"
  174. msgid "Logs"
  175. msgstr "Журналы"
  176. #: cura/CrashHandler.py:418
  177. msgctxt "@action:button"
  178. msgid "Send report"
  179. msgstr "Отправить отчёт"
  180. #: cura/CuraApplication.py:540
  181. msgctxt "@info:progress"
  182. msgid "Loading machines..."
  183. msgstr "Загрузка принтеров..."
  184. #: cura/CuraApplication.py:547
  185. msgctxt "@info:progress"
  186. msgid "Setting up preferences..."
  187. msgstr "Настройка параметров..."
  188. #: cura/CuraApplication.py:692
  189. msgctxt "@info:progress"
  190. msgid "Initializing Active Machine..."
  191. msgstr "Инициализация активной машины..."
  192. #: cura/CuraApplication.py:839
  193. msgctxt "@info:progress"
  194. msgid "Initializing machine manager..."
  195. msgstr "Инициализация диспетчера машин..."
  196. #: cura/CuraApplication.py:853
  197. msgctxt "@info:progress"
  198. msgid "Initializing build volume..."
  199. msgstr "Инициализация объема печати..."
  200. #: cura/CuraApplication.py:921
  201. msgctxt "@info:progress"
  202. msgid "Setting up scene..."
  203. msgstr "Настройка сцены..."
  204. #: cura/CuraApplication.py:957
  205. msgctxt "@info:progress"
  206. msgid "Loading interface..."
  207. msgstr "Загрузка интерфейса..."
  208. #: cura/CuraApplication.py:962
  209. msgctxt "@info:progress"
  210. msgid "Initializing engine..."
  211. msgstr "Инициализация ядра..."
  212. #: cura/CuraApplication.py:1290
  213. #, python-format
  214. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  215. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  216. msgstr "%(width).1f x %(depth).1f x %(height).1f мм"
  217. #: cura/CuraApplication.py:1816
  218. #, python-brace-format
  219. msgctxt "@info:status"
  220. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  221. msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}"
  222. #: cura/CuraApplication.py:1818 cura/OAuth2/AuthorizationService.py:217
  223. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:189
  224. msgctxt "@info:title"
  225. msgid "Warning"
  226. msgstr "Внимание"
  227. #: cura/CuraApplication.py:1828
  228. #, python-brace-format
  229. msgctxt "@info:status"
  230. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  231. msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}"
  232. #: cura/CuraApplication.py:1830 cura/Settings/CuraContainerRegistry.py:156
  233. #: cura/Settings/CuraContainerRegistry.py:166
  234. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  235. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:173
  236. msgctxt "@info:title"
  237. msgid "Error"
  238. msgstr "Ошибка"
  239. #: cura/Machines/Models/DiscoveredPrintersModel.py:83
  240. msgctxt "@label"
  241. msgid "Unknown"
  242. msgstr "Неизвестно"
  243. #: cura/Machines/Models/DiscoveredPrintersModel.py:113
  244. msgctxt "@label"
  245. msgid "The printer(s) below cannot be connected because they are part of a group"
  246. msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы"
  247. #: cura/Machines/Models/DiscoveredPrintersModel.py:115
  248. msgctxt "@label"
  249. msgid "Available networked printers"
  250. msgstr "Доступные сетевые принтеры"
  251. #: cura/Machines/Models/ExtrudersModel.py:219
  252. msgctxt "@menuitem"
  253. msgid "Not overridden"
  254. msgstr "Не переопределен"
  255. #: cura/Machines/Models/GlobalStacksModel.py:160
  256. #: resources/qml/PrinterSelector/MachineSelectorList.qml:28
  257. msgctxt "@label"
  258. msgid "Connected printers"
  259. msgstr "Подключенные принтеры"
  260. #: cura/Machines/Models/GlobalStacksModel.py:160
  261. msgctxt "@label"
  262. msgid "Preset printers"
  263. msgstr "Предварительно настроенные принтеры"
  264. #: cura/Machines/Models/GlobalStacksModel.py:165
  265. #, python-brace-format
  266. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  267. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  268. msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!"
  269. #: cura/Machines/Models/IntentCategoryModel.py:42
  270. #: cura/Machines/Models/IntentSelectionModel.py:61
  271. #: cura/Machines/Models/IntentTranslations.py:11
  272. #: cura/Machines/Models/QualityManagementModel.py:347
  273. msgctxt "@label"
  274. msgid "Default"
  275. msgstr ""
  276. #: cura/Machines/Models/IntentCategoryModel.py:45
  277. #: cura/Machines/Models/IntentSelectionModel.py:65
  278. #: cura/Machines/Models/IntentTranslations.py:14
  279. msgctxt "@label"
  280. msgid "Visual"
  281. msgstr "Визуальный"
  282. #: cura/Machines/Models/IntentCategoryModel.py:46
  283. #: cura/Machines/Models/IntentSelectionModel.py:66
  284. #: cura/Machines/Models/IntentTranslations.py:15
  285. msgctxt "@text"
  286. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  287. msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида."
  288. #: cura/Machines/Models/IntentCategoryModel.py:49
  289. #: cura/Machines/Models/IntentSelectionModel.py:70
  290. #: cura/Machines/Models/IntentTranslations.py:18
  291. msgctxt "@label"
  292. msgid "Engineering"
  293. msgstr ""
  294. #: cura/Machines/Models/IntentCategoryModel.py:50
  295. #: cura/Machines/Models/IntentSelectionModel.py:71
  296. #: cura/Machines/Models/IntentTranslations.py:19
  297. msgctxt "@text"
  298. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  299. msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски."
  300. #: cura/Machines/Models/IntentCategoryModel.py:53
  301. #: cura/Machines/Models/IntentSelectionModel.py:75
  302. #: cura/Machines/Models/IntentTranslations.py:22
  303. msgctxt "@label"
  304. msgid "Draft"
  305. msgstr "Черновой"
  306. #: cura/Machines/Models/IntentCategoryModel.py:54
  307. #: cura/Machines/Models/IntentSelectionModel.py:76
  308. #: cura/Machines/Models/IntentTranslations.py:23
  309. msgctxt "@text"
  310. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  311. msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати."
  312. #: cura/Machines/Models/MaterialManagementModel.py:232
  313. msgctxt "@label"
  314. msgid "Custom Material"
  315. msgstr "Собственный материал"
  316. #: cura/Machines/Models/MaterialManagementModel.py:233
  317. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:340
  318. msgctxt "@label"
  319. msgid "Custom"
  320. msgstr "Своё"
  321. #: cura/Machines/Models/QualityManagementModel.py:400
  322. msgctxt "@label"
  323. msgid "Custom profiles"
  324. msgstr "Собственные профили"
  325. #: cura/Machines/Models/QualityManagementModel.py:435
  326. #, python-brace-format
  327. msgctxt "@item:inlistbox"
  328. msgid "All Supported Types ({0})"
  329. msgstr "Все поддерживаемые типы ({0})"
  330. #: cura/Machines/Models/QualityManagementModel.py:436
  331. msgctxt "@item:inlistbox"
  332. msgid "All Files (*)"
  333. msgstr "Все файлы (*)"
  334. #: cura/Machines/Models/QualitySettingsModel.py:182
  335. msgctxt "@info:status"
  336. msgid "Calculated"
  337. msgstr "Вычислено"
  338. #: cura/MultiplyObjectsJob.py:30
  339. msgctxt "@info:status"
  340. msgid "Multiplying and placing objects"
  341. msgstr "Размножение и размещение объектов"
  342. #: cura/MultiplyObjectsJob.py:32
  343. msgctxt "@info:title"
  344. msgid "Placing Objects"
  345. msgstr "Размещение объектов"
  346. #: cura/MultiplyObjectsJob.py:100
  347. msgctxt "@info:title"
  348. msgid "Placing Object"
  349. msgstr "Размещение объекта"
  350. #: cura/OAuth2/AuthorizationHelpers.py:89
  351. msgctxt "@message"
  352. msgid "Could not read response."
  353. msgstr "Не удалось прочитать ответ."
  354. #: cura/OAuth2/AuthorizationRequestHandler.py:75
  355. msgctxt "@message"
  356. msgid "The provided state is not correct."
  357. msgstr "Указано неверное состояние."
  358. #: cura/OAuth2/AuthorizationRequestHandler.py:80
  359. msgctxt "@message"
  360. msgid "Timeout when authenticating with the account server."
  361. msgstr "Истекло время аутентификации на сервере учетной записи."
  362. #: cura/OAuth2/AuthorizationRequestHandler.py:97
  363. msgctxt "@message"
  364. msgid "Please give the required permissions when authorizing this application."
  365. msgstr "Дайте необходимые разрешения при авторизации в этом приложении."
  366. #: cura/OAuth2/AuthorizationRequestHandler.py:104
  367. msgctxt "@message"
  368. msgid "Something unexpected happened when trying to log in, please try again."
  369. msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку."
  370. #: cura/OAuth2/AuthorizationService.py:216
  371. msgctxt "@info"
  372. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  373. msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен."
  374. #: cura/OAuth2/AuthorizationService.py:277
  375. msgctxt "@info"
  376. msgid "Unable to reach the UltiMaker account server."
  377. msgstr "Нет связи с сервером учетных записей UltiMaker."
  378. #: cura/OAuth2/AuthorizationService.py:278
  379. msgctxt "@info:title"
  380. msgid "Log-in failed"
  381. msgstr "Вход в систему не выполнен"
  382. #: cura/PrinterOutput/UploadMaterialsJob.py:104
  383. msgctxt "@text:error"
  384. msgid "Failed to create archive of materials to sync with printers."
  385. msgstr "Архив материалов для синхронизации с принтерами не создан."
  386. #: cura/PrinterOutput/UploadMaterialsJob.py:111
  387. #: cura/PrinterOutput/UploadMaterialsJob.py:165
  388. msgctxt "@text:error"
  389. msgid "Failed to load the archive of materials to sync it with printers."
  390. msgstr "Архив материалов для синхронизации с принтерами не загружен."
  391. #: cura/PrinterOutput/UploadMaterialsJob.py:143
  392. msgctxt "@text:error"
  393. msgid "The response from Digital Factory appears to be corrupted."
  394. msgstr "Ответ от Digital Factory поврежден."
  395. #: cura/PrinterOutput/UploadMaterialsJob.py:147
  396. #: cura/PrinterOutput/UploadMaterialsJob.py:151
  397. #: cura/PrinterOutput/UploadMaterialsJob.py:155
  398. msgctxt "@text:error"
  399. msgid "The response from Digital Factory is missing important information."
  400. msgstr "В ответе от Digital Factory отсутствует важная информация."
  401. #: cura/PrinterOutput/UploadMaterialsJob.py:218
  402. msgctxt "@text:error"
  403. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  404. msgstr "Подключение к Digital Factory для синхронизации материалов с некоторыми принтерами не установлено."
  405. #: cura/PrinterOutput/UploadMaterialsJob.py:232
  406. msgctxt "@text:error"
  407. msgid "Failed to connect to Digital Factory."
  408. msgstr "Подключение к Digital Factory не установлено."
  409. #: cura/Settings/ActiveQuality.py:43
  410. msgctxt "@label"
  411. msgid "Experimental"
  412. msgstr "Экспериментальное"
  413. #: cura/Settings/ContainerManager.py:207
  414. #: cura/Settings/CuraContainerRegistry.py:140
  415. msgctxt "@title:window"
  416. msgid "File Already Exists"
  417. msgstr "Файл уже существует"
  418. #: cura/Settings/ContainerManager.py:208
  419. #: cura/Settings/CuraContainerRegistry.py:141
  420. #, python-brace-format
  421. msgctxt "@label Don't translate the XML tag <filename>!"
  422. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  423. msgstr "Файл <filename>{0}</filename> уже существует. Вы уверены, что желаете перезаписать его?"
  424. #: cura/Settings/ContainerManager.py:459 cura/Settings/ContainerManager.py:462
  425. msgctxt "@info:status"
  426. msgid "Invalid file URL:"
  427. msgstr "Неправильный URL-адрес файла:"
  428. #: cura/Settings/CuraContainerRegistry.py:153
  429. #, python-brace-format
  430. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  431. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  432. msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: <message>{1}</message>"
  433. #: cura/Settings/CuraContainerRegistry.py:163
  434. #, python-brace-format
  435. msgctxt "@info:status Don't translate the XML tag <filename>!"
  436. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  437. msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: Плагин записи уведомил об ошибке."
  438. #: cura/Settings/CuraContainerRegistry.py:171
  439. #, python-brace-format
  440. msgctxt "@info:status Don't translate the XML tag <filename>!"
  441. msgid "Exported profile to <filename>{0}</filename>"
  442. msgstr "Экспортирование профиля в <filename>{0}</filename>"
  443. #: cura/Settings/CuraContainerRegistry.py:173
  444. msgctxt "@info:title"
  445. msgid "Export succeeded"
  446. msgstr "Экспорт успешно завершен"
  447. #: cura/Settings/CuraContainerRegistry.py:205
  448. #, python-brace-format
  449. msgctxt "@info:status Don't translate the XML tags <filename>!"
  450. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  451. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>: {1}"
  452. #: cura/Settings/CuraContainerRegistry.py:209
  453. #, python-brace-format
  454. msgctxt "@info:status Don't translate the XML tags <filename>!"
  455. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  456. msgstr "Невозможно импортировать профиль из <filename>{0}</filename>, пока не добавлен принтер."
  457. #: cura/Settings/CuraContainerRegistry.py:224
  458. #, python-brace-format
  459. msgctxt "@info:status Don't translate the XML tags <filename>!"
  460. msgid "No custom profile to import in file <filename>{0}</filename>"
  461. msgstr "Отсутствует собственный профиль для импорта в файл <filename>{0}</filename>"
  462. #: cura/Settings/CuraContainerRegistry.py:228
  463. #, python-brace-format
  464. msgctxt "@info:status Don't translate the XML tags <filename>!"
  465. msgid "Failed to import profile from <filename>{0}</filename>:"
  466. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  467. #: cura/Settings/CuraContainerRegistry.py:252
  468. #: cura/Settings/CuraContainerRegistry.py:262
  469. #, python-brace-format
  470. msgctxt "@info:status Don't translate the XML tags <filename>!"
  471. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  472. msgstr "Данный профиль <filename>{0}</filename> содержит неверные данные, поэтому его невозможно импортировать."
  473. #: cura/Settings/CuraContainerRegistry.py:355
  474. #, python-brace-format
  475. msgctxt "@info:status Don't translate the XML tag <filename>!"
  476. msgid "Failed to import profile from <filename>{0}</filename>:"
  477. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  478. #: cura/Settings/CuraContainerRegistry.py:359
  479. #, python-brace-format
  480. msgctxt "@info:status"
  481. msgid "Successfully imported profile {0}."
  482. msgstr "Профиль {0} успешно импортирован."
  483. #: cura/Settings/CuraContainerRegistry.py:366
  484. #, python-brace-format
  485. msgctxt "@info:status"
  486. msgid "File {0} does not contain any valid profile."
  487. msgstr "В файле {0} нет подходящих профилей."
  488. #: cura/Settings/CuraContainerRegistry.py:369
  489. #, python-brace-format
  490. msgctxt "@info:status"
  491. msgid "Profile {0} has an unknown file type or is corrupted."
  492. msgstr "Профиль {0} имеет неизвестный тип файла или повреждён."
  493. #: cura/Settings/CuraContainerRegistry.py:443
  494. msgctxt "@label"
  495. msgid "Custom profile"
  496. msgstr "Собственный профиль"
  497. #: cura/Settings/CuraContainerRegistry.py:459
  498. msgctxt "@info:status"
  499. msgid "Profile is missing a quality type."
  500. msgstr "У профайла отсутствует тип качества."
  501. #: cura/Settings/CuraContainerRegistry.py:463
  502. msgctxt "@info:status"
  503. msgid "There is no active printer yet."
  504. msgstr "Еще нет активных принтеров."
  505. #: cura/Settings/CuraContainerRegistry.py:469
  506. msgctxt "@info:status"
  507. msgid "Unable to add the profile."
  508. msgstr "Невозможно добавить профиль."
  509. #: cura/Settings/CuraContainerRegistry.py:483
  510. #, python-brace-format
  511. msgctxt "@info:status"
  512. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  513. msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"."
  514. #: cura/Settings/CuraContainerRegistry.py:488
  515. #, python-brace-format
  516. msgctxt "@info:status"
  517. msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type."
  518. msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества."
  519. #: cura/Settings/MachineManager.py:746
  520. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:221
  521. msgctxt "@label"
  522. msgid "Nozzle"
  523. msgstr "Сопло"
  524. #: cura/Settings/MachineManager.py:890
  525. msgctxt "@info:message Followed by a list of settings."
  526. msgid "Settings have been changed to match the current availability of extruders:"
  527. msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:"
  528. #: cura/Settings/MachineManager.py:891
  529. msgctxt "@info:title"
  530. msgid "Settings updated"
  531. msgstr "Настройки обновлены"
  532. #: cura/Settings/MachineManager.py:1514
  533. msgctxt "@info:title"
  534. msgid "Extruder(s) Disabled"
  535. msgstr "Экструдер (-ы) отключен (-ы)"
  536. #: cura/Settings/cura_empty_instance_containers.py:36
  537. msgctxt "@info:not supported profile"
  538. msgid "Not supported"
  539. msgstr "Не поддерживается"
  540. #: cura/Settings/cura_empty_instance_containers.py:55
  541. msgctxt "@info:No intent profile selected"
  542. msgid "Default"
  543. msgstr ""
  544. #: cura/UI/AddPrinterPagesModel.py:17
  545. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:61
  546. msgctxt "@action:button"
  547. msgid "Add"
  548. msgstr "Добавить"
  549. #: cura/UI/AddPrinterPagesModel.py:26 cura/UI/WelcomePagesModel.py:290
  550. msgctxt "@action:button"
  551. msgid "Finish"
  552. msgstr "Завершить"
  553. #: cura/UI/AddPrinterPagesModel.py:33 plugins/3MFReader/WorkspaceDialog.qml:386
  554. #: plugins/ImageReader/ConfigUI.qml:323
  555. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:147
  556. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  557. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:43
  558. #: resources/qml/ColorDialog.qml:143
  559. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  560. #: resources/qml/Dialogs/RenameDialog.qml:103
  561. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:293
  562. msgctxt "@action:button"
  563. msgid "Cancel"
  564. msgstr "Отмена"
  565. #: cura/UI/ObjectsModel.py:69
  566. #, python-brace-format
  567. msgctxt "@label"
  568. msgid "Group #{group_nr}"
  569. msgstr "Группа #{group_nr}"
  570. #: cura/UI/PrintInformation.py:87
  571. msgctxt "@tooltip"
  572. msgid "Outer Wall"
  573. msgstr "Внешняя стенка"
  574. #: cura/UI/PrintInformation.py:88
  575. msgctxt "@tooltip"
  576. msgid "Inner Walls"
  577. msgstr "Внутренние стенки"
  578. #: cura/UI/PrintInformation.py:89
  579. msgctxt "@tooltip"
  580. msgid "Skin"
  581. msgstr "Покрытие"
  582. #: cura/UI/PrintInformation.py:90
  583. msgctxt "@tooltip"
  584. msgid "Infill"
  585. msgstr "Заполнение"
  586. #: cura/UI/PrintInformation.py:91
  587. msgctxt "@tooltip"
  588. msgid "Support Infill"
  589. msgstr "Заполнение поддержек"
  590. #: cura/UI/PrintInformation.py:92
  591. msgctxt "@tooltip"
  592. msgid "Support Interface"
  593. msgstr "Связующий слой поддержек"
  594. #: cura/UI/PrintInformation.py:93
  595. msgctxt "@tooltip"
  596. msgid "Support"
  597. msgstr "Поддержки"
  598. #: cura/UI/PrintInformation.py:94
  599. msgctxt "@tooltip"
  600. msgid "Skirt"
  601. msgstr "Юбка"
  602. #: cura/UI/PrintInformation.py:95
  603. msgctxt "@tooltip"
  604. msgid "Prime Tower"
  605. msgstr "Черновая башня"
  606. #: cura/UI/PrintInformation.py:96
  607. msgctxt "@tooltip"
  608. msgid "Travel"
  609. msgstr "Перемещение"
  610. #: cura/UI/PrintInformation.py:97
  611. msgctxt "@tooltip"
  612. msgid "Retractions"
  613. msgstr "Откаты"
  614. #: cura/UI/PrintInformation.py:98
  615. msgctxt "@tooltip"
  616. msgid "Other"
  617. msgstr "Другое"
  618. #: cura/UI/TextManager.py:37 cura/UI/TextManager.py:63
  619. msgctxt "@text:window"
  620. msgid "The release notes could not be opened."
  621. msgstr "Невозможно открыть примечания к версии."
  622. #: cura/UI/WelcomePagesModel.py:57 cura/UI/WelcomePagesModel.py:277
  623. msgctxt "@action:button"
  624. msgid "Next"
  625. msgstr "Следующий"
  626. #: cura/UI/WelcomePagesModel.py:286 cura/UI/WhatsNewPagesModel.py:68
  627. msgctxt "@action:button"
  628. msgid "Skip"
  629. msgstr "Пропустить"
  630. #: cura/UI/WhatsNewPagesModel.py:76
  631. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:175
  632. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:135
  633. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:444
  634. #: resources/qml/Dialogs/AboutDialog.qml:188
  635. msgctxt "@action:button"
  636. msgid "Close"
  637. msgstr "Закрыть"
  638. #: cura/UltimakerCloud/CloudMaterialSync.py:66
  639. msgctxt "@action:button"
  640. msgid "Please sync the material profiles with your printers before starting to print."
  641. msgstr "Перед началом печати синхронизируйте профили материалов с принтерами."
  642. #: cura/UltimakerCloud/CloudMaterialSync.py:67
  643. msgctxt "@action:button"
  644. msgid "New materials installed"
  645. msgstr "Установлены новые материалы"
  646. #: cura/UltimakerCloud/CloudMaterialSync.py:74
  647. msgctxt "@action:button"
  648. msgid "Sync materials"
  649. msgstr "Синхронизировать материалы"
  650. #: cura/UltimakerCloud/CloudMaterialSync.py:82
  651. #: plugins/3MFReader/WorkspaceDialog.py:418 plugins/SolidView/SolidView.py:80
  652. msgctxt "@action:button"
  653. msgid "Learn more"
  654. msgstr "Узнать больше"
  655. #: cura/UltimakerCloud/CloudMaterialSync.py:135
  656. msgctxt "@message:text"
  657. msgid "Could not save material archive to {}:"
  658. msgstr "Невозможно сохранить архив материалов в {}:"
  659. #: cura/UltimakerCloud/CloudMaterialSync.py:136
  660. msgctxt "@message:title"
  661. msgid "Failed to save material archive"
  662. msgstr "Архив материалов не сохранен"
  663. #: cura/UltimakerCloud/CloudMaterialSync.py:188
  664. msgctxt "@text"
  665. msgid "Unknown error."
  666. msgstr "Неизвестная ошибка."
  667. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:558
  668. #, python-brace-format
  669. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  670. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  671. msgstr "Файл проекта <filename>{0}</filename> содержит неизвестный тип принтера <message>{1}</message>. Не удалось импортировать принтер. Вместо этого будут импортированы модели."
  672. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:561
  673. msgctxt "@info:title"
  674. msgid "Open Project File"
  675. msgstr "Открыть файл проекта"
  676. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  677. #: plugins/3MFReader/WorkspaceDialog.qml:99
  678. #: plugins/3MFReader/WorkspaceDialog.qml:127
  679. #: plugins/3MFReader/WorkspaceDialog.qml:134
  680. msgctxt "@button"
  681. msgid "Create new"
  682. msgstr "Создать новый"
  683. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:692
  684. #, python-brace-format
  685. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  686. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  687. msgstr "Файл проекта <filename>{0}</filename> внезапно стал недоступен: <message>{1}.</message>."
  688. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  689. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:701
  690. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:720
  691. msgctxt "@info:title"
  692. msgid "Can't Open Project File"
  693. msgstr "Невозможно открыть файл проекта"
  694. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:700
  695. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:718
  696. #, python-brace-format
  697. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  698. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  699. msgstr "Файл проекта <filename>{0}</filename> поврежден: <message>{1}</message>."
  700. #: plugins/3MFReader/ThreeMFWorkspaceReader.py:765
  701. #, python-brace-format
  702. msgctxt "@info:error Don't translate the XML tag <filename>!"
  703. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  704. msgstr "Файл проекта <filename>{0}</filename> создан с использованием профилей, несовместимых с данной версией UltiMaker Cura."
  705. #: plugins/3MFReader/WorkspaceDialog.py:233
  706. msgctxt "@title:tab"
  707. msgid "Recommended"
  708. msgstr "Рекомендованная"
  709. #: plugins/3MFReader/WorkspaceDialog.py:235
  710. msgctxt "@title:tab"
  711. msgid "Custom"
  712. msgstr "Своя"
  713. #: plugins/3MFReader/WorkspaceDialog.py:411
  714. msgctxt "@info:status"
  715. msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  716. msgstr "Используемый в этом проекте материал основывается на определениях материалов, недоступных в Cura, что может привести к нежелательным результатам при печати. Мы настоятельно рекомендуем установить полный пакет материалов из магазина."
  717. #: plugins/3MFReader/WorkspaceDialog.py:413
  718. msgctxt "@info:title"
  719. msgid "Material profiles not installed"
  720. msgstr "Профили материалов не установлены"
  721. #: plugins/3MFReader/WorkspaceDialog.py:426
  722. msgctxt "@action:button"
  723. msgid "Install Materials"
  724. msgstr "Установка материалов"
  725. #: plugins/3MFReader/WorkspaceDialog.qml:15
  726. msgctxt "@title:window"
  727. msgid "Open Project"
  728. msgstr "Открытие проекта"
  729. #: plugins/3MFReader/WorkspaceDialog.qml:31
  730. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:61
  731. msgctxt "@action:title"
  732. msgid "Summary - Cura Project"
  733. msgstr "Сводка - Проект Cura"
  734. #: plugins/3MFReader/WorkspaceDialog.qml:65
  735. msgctxt "@action:ComboBox Update/override existing profile"
  736. msgid "Update existing"
  737. msgstr "Обновить существующий"
  738. #: plugins/3MFReader/WorkspaceDialog.qml:66
  739. msgctxt "@action:ComboBox Save settings in a new profile"
  740. msgid "Create new"
  741. msgstr "Создать новый"
  742. #: plugins/3MFReader/WorkspaceDialog.qml:83
  743. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:97
  744. msgctxt "@action:label"
  745. msgid "Printer settings"
  746. msgstr "Параметры принтера"
  747. #: plugins/3MFReader/WorkspaceDialog.qml:92
  748. #: plugins/3MFReader/WorkspaceRow.qml:23
  749. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:106
  750. msgctxt "@action:label"
  751. msgid "Type"
  752. msgstr "Тип"
  753. #: plugins/3MFReader/WorkspaceDialog.qml:98
  754. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  755. msgctxt "@action:label"
  756. msgid "Printer Group"
  757. msgstr "Группа принтеров"
  758. #: plugins/3MFReader/WorkspaceDialog.qml:103
  759. msgctxt "@action:label"
  760. msgid "Open With"
  761. msgstr ""
  762. #: plugins/3MFReader/WorkspaceDialog.qml:104
  763. msgctxt "@info:tooltip"
  764. msgid "Printer settings will be updated to match the settings saved with the project."
  765. msgstr "Параметры принтера будут обновлены в соответствии с параметрами, сохраненными в проекте."
  766. #: plugins/3MFReader/WorkspaceDialog.qml:156
  767. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:222
  768. msgctxt "@action:label"
  769. msgid "Profile settings"
  770. msgstr "Параметры профиля"
  771. #: plugins/3MFReader/WorkspaceDialog.qml:166
  772. #: plugins/3MFReader/WorkspaceDialog.qml:238
  773. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:121
  774. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:246
  775. msgctxt "@action:label"
  776. msgid "Name"
  777. msgstr "Название"
  778. #: plugins/3MFReader/WorkspaceDialog.qml:172
  779. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:263
  780. msgctxt "@action:label"
  781. msgid "Intent"
  782. msgstr ""
  783. #: plugins/3MFReader/WorkspaceDialog.qml:178
  784. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:230
  785. msgctxt "@action:label"
  786. msgid "Not in profile"
  787. msgstr "Вне профиля"
  788. #: plugins/3MFReader/WorkspaceDialog.qml:179
  789. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:235
  790. msgctxt "@action:label"
  791. msgid "%1 override"
  792. msgid_plural "%1 overrides"
  793. msgstr[0] "%1 перекрыт"
  794. msgstr[1] "%1 перекрыто"
  795. msgstr[2] "%1 перекрыто"
  796. #: plugins/3MFReader/WorkspaceDialog.qml:185
  797. msgctxt "@action:label"
  798. msgid "Derivative from"
  799. msgstr "Производное от"
  800. #: plugins/3MFReader/WorkspaceDialog.qml:186
  801. msgctxt "@action:label"
  802. msgid "%1, %2 override"
  803. msgid_plural "%1, %2 overrides"
  804. msgstr[0] "%1, %2 перекрыто"
  805. msgstr[1] "%1, %2 перекрыто"
  806. msgstr[2] "%1, %2 перекрыто"
  807. #: plugins/3MFReader/WorkspaceDialog.qml:226
  808. msgctxt "@action:label"
  809. msgid "Material settings"
  810. msgstr "Параметры материала"
  811. #: plugins/3MFReader/WorkspaceDialog.qml:280
  812. msgctxt "@action:label"
  813. msgid "Setting visibility"
  814. msgstr "Видимость параметров"
  815. #: plugins/3MFReader/WorkspaceDialog.qml:290
  816. msgctxt "@action:label"
  817. msgid "Mode"
  818. msgstr "Режим"
  819. #: plugins/3MFReader/WorkspaceDialog.qml:296
  820. msgctxt "@action:label"
  821. msgid "%1 out of %2"
  822. msgstr "%1 из %2"
  823. #: plugins/3MFReader/WorkspaceDialog.qml:321
  824. msgctxt "@action:warning"
  825. msgid "Loading a project will clear all models on the build plate."
  826. msgstr "Загрузка проекта приведет к удалению всех моделей на рабочем столе."
  827. #: plugins/3MFReader/WorkspaceDialog.qml:367
  828. msgctxt "@label"
  829. msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  830. msgstr "Материал, используемый в этом проекте, в настоящее время не установлен в Cura.<br/>Установите профиль материала и откройте проект снова."
  831. #: plugins/3MFReader/WorkspaceDialog.qml:392
  832. msgctxt "@action:button"
  833. msgid "Open"
  834. msgstr "Открыть"
  835. #: plugins/3MFReader/WorkspaceDialog.qml:398
  836. msgctxt "@action:button"
  837. msgid "Open project anyway"
  838. msgstr "Все равно открыть проект"
  839. #: plugins/3MFReader/WorkspaceDialog.qml:407
  840. msgctxt "@action:button"
  841. msgid "Install missing material"
  842. msgstr "Установить недостающий материал"
  843. #: plugins/3MFReader/__init__.py:27 plugins/3MFReader/__init__.py:33
  844. msgctxt "@item:inlistbox"
  845. msgid "3MF File"
  846. msgstr "Файл 3MF"
  847. #: plugins/3MFReader/plugin.json
  848. msgctxt "name"
  849. msgid "3MF Reader"
  850. msgstr "Чтение 3MF"
  851. #: plugins/3MFReader/plugin.json
  852. msgctxt "description"
  853. msgid "Provides support for reading 3MF files."
  854. msgstr "Предоставляет поддержку для чтения 3MF файлов."
  855. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  856. msgctxt "@error:zip"
  857. msgid "3MF Writer plug-in is corrupt."
  858. msgstr "Подключаемый модуль для записи 3MF поврежден."
  859. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:37
  860. msgctxt "@error"
  861. msgid "There is no workspace yet to write. Please add a printer first."
  862. msgstr "Нет рабочей среды для записи. Сначала добавьте принтер."
  863. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:64
  864. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:97
  865. msgctxt "@error:zip"
  866. msgid "No permission to write the workspace here."
  867. msgstr "Права на запись рабочей среды отсутствуют."
  868. #: plugins/3MFWriter/ThreeMFWorkspaceWriter.py:101
  869. msgctxt "@error:zip"
  870. msgid "The operating system does not allow saving a project file to this location or with this file name."
  871. msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла."
  872. #: plugins/3MFWriter/ThreeMFWriter.py:240
  873. msgctxt "@error:zip"
  874. msgid "Error writing 3mf file."
  875. msgstr "Ошибка в ходе записи файла 3MF."
  876. #: plugins/3MFWriter/__init__.py:28
  877. msgctxt "@item:inlistbox"
  878. msgid "3MF file"
  879. msgstr "3MF файл"
  880. #: plugins/3MFWriter/__init__.py:36
  881. msgctxt "@item:inlistbox"
  882. msgid "Cura Project 3MF file"
  883. msgstr "3MF файл проекта Cura"
  884. #: plugins/3MFWriter/plugin.json
  885. msgctxt "name"
  886. msgid "3MF Writer"
  887. msgstr "Запись 3MF"
  888. #: plugins/3MFWriter/plugin.json
  889. msgctxt "description"
  890. msgid "Provides support for writing 3MF files."
  891. msgstr "Предоставляет возможность записи 3MF файлов."
  892. #: plugins/AMFReader/__init__.py:15
  893. msgctxt "@item:inlistbox"
  894. msgid "AMF File"
  895. msgstr "Файл AMF"
  896. #: plugins/AMFReader/plugin.json
  897. msgctxt "name"
  898. msgid "AMF Reader"
  899. msgstr "Средство чтения AMF"
  900. #: plugins/AMFReader/plugin.json
  901. msgctxt "description"
  902. msgid "Provides support for reading AMF files."
  903. msgstr "Обеспечивает поддержку чтения файлов AMF."
  904. #: plugins/CuraDrive/plugin.json
  905. msgctxt "description"
  906. msgid "Backup and restore your configuration."
  907. msgstr "Резервное копирование и восстановление конфигурации."
  908. #: plugins/CuraDrive/plugin.json
  909. msgctxt "name"
  910. msgid "Cura Backups"
  911. msgstr "Резервные копии Cura"
  912. #: plugins/CuraDrive/src/CreateBackupJob.py:25
  913. msgctxt "@info:title"
  914. msgid "Backups"
  915. msgstr "Резервные копии"
  916. #: plugins/CuraDrive/src/CreateBackupJob.py:26
  917. msgctxt "@info:backup_status"
  918. msgid "There was an error while uploading your backup."
  919. msgstr "При заливке вашей резервной копии возникла ошибка."
  920. #: plugins/CuraDrive/src/CreateBackupJob.py:46
  921. msgctxt "@info:backup_status"
  922. msgid "Creating your backup..."
  923. msgstr "Создание резервной копии..."
  924. #: plugins/CuraDrive/src/CreateBackupJob.py:55
  925. msgctxt "@info:backup_status"
  926. msgid "There was an error while creating your backup."
  927. msgstr "При создании резервной копии возникла ошибка."
  928. #: plugins/CuraDrive/src/CreateBackupJob.py:59
  929. msgctxt "@info:backup_status"
  930. msgid "Uploading your backup..."
  931. msgstr "Выполняется заливка вашей резервной копии..."
  932. #: plugins/CuraDrive/src/CreateBackupJob.py:69
  933. msgctxt "@info:backup_status"
  934. msgid "Your backup has finished uploading."
  935. msgstr "Заливка вашей резервной копии завершена."
  936. #: plugins/CuraDrive/src/CreateBackupJob.py:103
  937. msgctxt "@error:file_size"
  938. msgid "The backup exceeds the maximum file size."
  939. msgstr "Размер файла резервной копии превышает максимально допустимый."
  940. #: plugins/CuraDrive/src/DriveApiService.py:86
  941. #: plugins/CuraDrive/src/RestoreBackupJob.py:26
  942. msgctxt "@info:backup_status"
  943. msgid "There was an error trying to restore your backup."
  944. msgstr "При попытке восстановления данных из резервной копии возникла ошибка."
  945. #: plugins/CuraDrive/src/DrivePluginExtension.py:69
  946. msgctxt "@item:inmenu"
  947. msgid "Manage backups"
  948. msgstr "Управление резервными копиями"
  949. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  950. msgctxt "@button"
  951. msgid "Want more?"
  952. msgstr "Желаете большего?"
  953. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  954. msgctxt "@button"
  955. msgid "Backup Now"
  956. msgstr "Создать резервную копию"
  957. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  958. msgctxt "@checkbox:description"
  959. msgid "Auto Backup"
  960. msgstr "Автоматическое резервное копирование"
  961. #: plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  962. msgctxt "@checkbox:description"
  963. msgid "Automatically create a backup each day that Cura is started."
  964. msgstr "Автоматически создавать резервную копию в день запуска Cura."
  965. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:64
  966. msgctxt "@button"
  967. msgid "Restore"
  968. msgstr "Восстановить"
  969. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:93
  970. msgctxt "@dialog:title"
  971. msgid "Delete Backup"
  972. msgstr "Удалить резервную копию"
  973. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:94
  974. msgctxt "@dialog:info"
  975. msgid "Are you sure you want to delete this backup? This cannot be undone."
  976. msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить."
  977. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:102
  978. msgctxt "@dialog:title"
  979. msgid "Restore Backup"
  980. msgstr "Восстановить резервную копию"
  981. #: plugins/CuraDrive/src/qml/components/BackupListItem.qml:103
  982. msgctxt "@dialog:info"
  983. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  984. msgstr "Вам потребуется перезапустить Cura, прежде чем данные будут восстановлены из резервной копии. Вы действительно хотите закрыть Cura прямо сейчас?"
  985. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  986. msgctxt "@backuplist:label"
  987. msgid "Cura Version"
  988. msgstr "Версия Cura"
  989. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  990. msgctxt "@backuplist:label"
  991. msgid "Machines"
  992. msgstr "Принтеры"
  993. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  994. msgctxt "@backuplist:label"
  995. msgid "Materials"
  996. msgstr "Материалы"
  997. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  998. msgctxt "@backuplist:label"
  999. msgid "Profiles"
  1000. msgstr "Профили"
  1001. #: plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  1002. msgctxt "@backuplist:label"
  1003. msgid "Plugins"
  1004. msgstr "Плагины"
  1005. #: plugins/CuraDrive/src/qml/main.qml:25
  1006. msgctxt "@title:window"
  1007. msgid "Cura Backups"
  1008. msgstr "Резервные копии Cura"
  1009. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  1010. msgctxt "@title"
  1011. msgid "My Backups"
  1012. msgstr "Мои резервные копии"
  1013. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:36
  1014. msgctxt "@empty_state"
  1015. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  1016. msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»."
  1017. #: plugins/CuraDrive/src/qml/pages/BackupsPage.qml:55
  1018. msgctxt "@backup_limit_info"
  1019. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1020. msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию."
  1021. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  1022. msgctxt "@description"
  1023. msgid "Backup and synchronize your Cura settings."
  1024. msgstr "Резервное копирование и синхронизация ваших параметров Cura."
  1025. #: plugins/CuraDrive/src/qml/pages/WelcomePage.qml:47
  1026. #: plugins/Marketplace/resources/qml/Marketplace.qml:312
  1027. #: resources/qml/Account/GeneralOperations.qml:49
  1028. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:180
  1029. #: resources/qml/WelcomePages/CloudContent.qml:212
  1030. msgctxt "@button"
  1031. msgid "Sign in"
  1032. msgstr "Войти"
  1033. #: plugins/CuraEngineBackend/CuraEngineBackend.py:162
  1034. msgctxt "@message"
  1035. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  1036. msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем."
  1037. #: plugins/CuraEngineBackend/CuraEngineBackend.py:163
  1038. msgctxt "@message:title"
  1039. msgid "Slicing failed"
  1040. msgstr "Нарезка на слои не выполнена"
  1041. #: plugins/CuraEngineBackend/CuraEngineBackend.py:168
  1042. msgctxt "@message:button"
  1043. msgid "Report a bug"
  1044. msgstr "Сообщить об ошибке"
  1045. #: plugins/CuraEngineBackend/CuraEngineBackend.py:169
  1046. msgctxt "@message:description"
  1047. msgid "Report a bug on UltiMaker Cura's issue tracker."
  1048. msgstr "Сообщите об ошибке в системе отслеживания проблем UltiMaker Cura."
  1049. #: plugins/CuraEngineBackend/CuraEngineBackend.py:416
  1050. msgctxt "@info:status"
  1051. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  1052. msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией."
  1053. #: plugins/CuraEngineBackend/CuraEngineBackend.py:417
  1054. #: plugins/CuraEngineBackend/CuraEngineBackend.py:450
  1055. #: plugins/CuraEngineBackend/CuraEngineBackend.py:477
  1056. #: plugins/CuraEngineBackend/CuraEngineBackend.py:489
  1057. #: plugins/CuraEngineBackend/CuraEngineBackend.py:501
  1058. #: plugins/CuraEngineBackend/CuraEngineBackend.py:514
  1059. msgctxt "@info:title"
  1060. msgid "Unable to slice"
  1061. msgstr "Невозможно нарезать"
  1062. #: plugins/CuraEngineBackend/CuraEngineBackend.py:449
  1063. #, python-brace-format
  1064. msgctxt "@info:status"
  1065. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  1066. msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}"
  1067. #: plugins/CuraEngineBackend/CuraEngineBackend.py:476
  1068. #, python-brace-format
  1069. msgctxt "@info:status"
  1070. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  1071. msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}"
  1072. #: plugins/CuraEngineBackend/CuraEngineBackend.py:488
  1073. msgctxt "@info:status"
  1074. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  1075. msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные."
  1076. #: plugins/CuraEngineBackend/CuraEngineBackend.py:500
  1077. #, python-format
  1078. msgctxt "@info:status"
  1079. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  1080. msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s."
  1081. #: plugins/CuraEngineBackend/CuraEngineBackend.py:510
  1082. msgctxt "@info:status"
  1083. msgid ""
  1084. "Please review settings and check if your models:\n"
  1085. "- Fit within the build volume\n"
  1086. "- Are assigned to an enabled extruder\n"
  1087. "- Are not all set as modifier meshes"
  1088. msgstr ""
  1089. "Проверьте настройки и убедитесь в том, что ваши модели:\n"
  1090. "- соответствуют допустимой области печати\n"
  1091. "- назначены активированному экструдеру\n"
  1092. "- не заданы как объекты-модификаторы"
  1093. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  1094. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  1095. msgctxt "@info:status"
  1096. msgid "Processing Layers"
  1097. msgstr "Обработка слоёв"
  1098. #: plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:261
  1099. msgctxt "@info:title"
  1100. msgid "Information"
  1101. msgstr "Информация"
  1102. #: plugins/CuraEngineBackend/plugin.json
  1103. msgctxt "name"
  1104. msgid "CuraEngine Backend"
  1105. msgstr "Движок CuraEngine"
  1106. #: plugins/CuraEngineBackend/plugin.json
  1107. msgctxt "description"
  1108. msgid "Provides the link to the CuraEngine slicing backend."
  1109. msgstr "Предоставляет интерфейс к движку CuraEngine."
  1110. #: plugins/CuraProfileReader/__init__.py:14
  1111. #: plugins/CuraProfileWriter/__init__.py:14
  1112. msgctxt "@item:inlistbox"
  1113. msgid "Cura Profile"
  1114. msgstr "Профиль Cura"
  1115. #: plugins/CuraProfileReader/plugin.json
  1116. msgctxt "name"
  1117. msgid "Cura Profile Reader"
  1118. msgstr "Чтение профиля Cura"
  1119. #: plugins/CuraProfileReader/plugin.json
  1120. msgctxt "description"
  1121. msgid "Provides support for importing Cura profiles."
  1122. msgstr "Предоставляет поддержку для импорта профилей Cura."
  1123. #: plugins/CuraProfileWriter/plugin.json
  1124. msgctxt "name"
  1125. msgid "Cura Profile Writer"
  1126. msgstr "Запись профиля Cura"
  1127. #: plugins/CuraProfileWriter/plugin.json
  1128. msgctxt "description"
  1129. msgid "Provides support for exporting Cura profiles."
  1130. msgstr "Предоставляет поддержку для экспорта профилей Cura."
  1131. #: plugins/DigitalLibrary/plugin.json
  1132. msgctxt "description"
  1133. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  1134. msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее."
  1135. #: plugins/DigitalLibrary/plugin.json
  1136. msgctxt "name"
  1137. msgid "Ultimaker Digital Library"
  1138. msgstr "Ultimaker Digital Library"
  1139. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:216
  1140. msgctxt "@option"
  1141. msgid "Save Cura project and print file"
  1142. msgstr "Сохранить проекта Cura и распечатать файл"
  1143. #: plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml:217
  1144. msgctxt "@option"
  1145. msgid "Save Cura project"
  1146. msgstr "Сохранить проект Cura"
  1147. #: plugins/DigitalLibrary/src/DigitalFactoryProjectResponse.py:19
  1148. msgctxt "@text Placeholder for the username if it has been deleted"
  1149. msgid "deleted user"
  1150. msgstr "удаленный пользователь"
  1151. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1152. msgctxt "@info"
  1153. msgid "Could not access update information."
  1154. msgstr "Не могу получить информацию об обновлениях."
  1155. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1156. #, python-brace-format
  1157. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1158. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1159. msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}."
  1160. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1161. #, python-format
  1162. msgctxt "@info:title The %s gets replaced with the printer name."
  1163. msgid "New %s stable firmware available"
  1164. msgstr "Доступна новая стабильная прошивка %s"
  1165. #: plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1166. msgctxt "@action:button"
  1167. msgid "How to update"
  1168. msgstr "Порядок обновления"
  1169. #: plugins/FirmwareUpdateChecker/plugin.json
  1170. msgctxt "description"
  1171. msgid "Checks for firmware updates."
  1172. msgstr "Проверяет наличие обновлений ПО."
  1173. #: plugins/FirmwareUpdateChecker/plugin.json
  1174. msgctxt "name"
  1175. msgid "Firmware Update Checker"
  1176. msgstr "Проверка обновлений"
  1177. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  1178. msgctxt "@action"
  1179. msgid "Update Firmware"
  1180. msgstr "Обновить прошивку"
  1181. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1182. msgctxt "@title"
  1183. msgid "Update Firmware"
  1184. msgstr "Обновить прошивку"
  1185. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:37
  1186. msgctxt "@label"
  1187. 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."
  1188. msgstr "Прошивка является программным обеспечением, которое работает на плате вашего 3D принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера."
  1189. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:43
  1190. msgctxt "@label"
  1191. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1192. msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований."
  1193. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:55
  1194. msgctxt "@action:button"
  1195. msgid "Automatically upgrade Firmware"
  1196. msgstr "Автоматическое обновление прошивки"
  1197. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:66
  1198. msgctxt "@action:button"
  1199. msgid "Upload custom Firmware"
  1200. msgstr "Залить собственную прошивку"
  1201. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:79
  1202. msgctxt "@label"
  1203. msgid "Firmware can not be updated because there is no connection with the printer."
  1204. msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру."
  1205. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:86
  1206. msgctxt "@label"
  1207. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1208. msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки."
  1209. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:93
  1210. msgctxt "@title:window"
  1211. msgid "Select custom firmware"
  1212. msgstr "Выбрать собственную прошивку"
  1213. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:113
  1214. msgctxt "@title:window"
  1215. msgid "Firmware Update"
  1216. msgstr "Обновление прошивки"
  1217. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:137
  1218. msgctxt "@label"
  1219. msgid "Updating firmware."
  1220. msgstr "Обновление прошивки."
  1221. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:139
  1222. msgctxt "@label"
  1223. msgid "Firmware update completed."
  1224. msgstr "Обновление прошивки завершено."
  1225. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:141
  1226. msgctxt "@label"
  1227. msgid "Firmware update failed due to an unknown error."
  1228. msgstr "Обновление прошивки не удалось из-за неизвестной ошибки."
  1229. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1230. msgctxt "@label"
  1231. msgid "Firmware update failed due to an communication error."
  1232. msgstr "Обновление прошивки не удалось из-за ошибки связи."
  1233. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1234. msgctxt "@label"
  1235. msgid "Firmware update failed due to an input/output error."
  1236. msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода."
  1237. #: plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1238. msgctxt "@label"
  1239. msgid "Firmware update failed due to missing firmware."
  1240. msgstr "Обновление прошивки не удалось из-за её отсутствия."
  1241. #: plugins/FirmwareUpdater/plugin.json
  1242. msgctxt "name"
  1243. msgid "Firmware Updater"
  1244. msgstr "Средство обновления прошивки"
  1245. #: plugins/FirmwareUpdater/plugin.json
  1246. msgctxt "description"
  1247. msgid "Provides a machine actions for updating firmware."
  1248. msgstr "Обеспечение действий принтера для обновления прошивки."
  1249. #: plugins/GCodeGzReader/__init__.py:17 plugins/GCodeGzWriter/__init__.py:17
  1250. msgctxt "@item:inlistbox"
  1251. msgid "Compressed G-code File"
  1252. msgstr "Сжатый файл с G-кодом"
  1253. #: plugins/GCodeGzReader/plugin.json
  1254. msgctxt "name"
  1255. msgid "Compressed G-code Reader"
  1256. msgstr "Средство считывания сжатого G-кода"
  1257. #: plugins/GCodeGzReader/plugin.json
  1258. msgctxt "description"
  1259. msgid "Reads g-code from a compressed archive."
  1260. msgstr "Считывает G-код из сжатого архива."
  1261. #: plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1262. msgctxt "@error:not supported"
  1263. msgid "GCodeGzWriter does not support text mode."
  1264. msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим."
  1265. #: plugins/GCodeGzWriter/plugin.json
  1266. msgctxt "name"
  1267. msgid "Compressed G-code Writer"
  1268. msgstr "Средство записи сжатого G-кода"
  1269. #: plugins/GCodeGzWriter/plugin.json
  1270. msgctxt "description"
  1271. msgid "Writes g-code to a compressed archive."
  1272. msgstr "Записывает G-код в сжатый архив."
  1273. #: plugins/GCodeProfileReader/__init__.py:14 plugins/GCodeReader/__init__.py:14
  1274. #: plugins/GCodeWriter/__init__.py:16
  1275. msgctxt "@item:inlistbox"
  1276. msgid "G-code File"
  1277. msgstr "Файл G-code"
  1278. #: plugins/GCodeProfileReader/plugin.json
  1279. msgctxt "name"
  1280. msgid "G-code Profile Reader"
  1281. msgstr "Средство считывания профиля из G-кода"
  1282. #: plugins/GCodeProfileReader/plugin.json
  1283. msgctxt "description"
  1284. msgid "Provides support for importing profiles from g-code files."
  1285. msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов."
  1286. #: plugins/GCodeReader/FlavorParser.py:359
  1287. msgctxt "@info:status"
  1288. msgid "Parsing G-code"
  1289. msgstr "Обработка G-code"
  1290. #: plugins/GCodeReader/FlavorParser.py:361
  1291. #: plugins/GCodeReader/FlavorParser.py:515
  1292. msgctxt "@info:title"
  1293. msgid "G-code Details"
  1294. msgstr "Параметры G-code"
  1295. #: plugins/GCodeReader/FlavorParser.py:513
  1296. msgctxt "@info:generic"
  1297. 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."
  1298. msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code."
  1299. #: plugins/GCodeReader/__init__.py:18
  1300. msgctxt "@item:inlistbox"
  1301. msgid "G File"
  1302. msgstr "Файл G"
  1303. #: plugins/GCodeReader/plugin.json
  1304. msgctxt "description"
  1305. msgid "Allows loading and displaying G-code files."
  1306. msgstr "Позволяет загружать и отображать файлы G-code."
  1307. #: plugins/GCodeReader/plugin.json
  1308. msgctxt "name"
  1309. msgid "G-code Reader"
  1310. msgstr "Чтение G-code"
  1311. #: plugins/GCodeWriter/GCodeWriter.py:75
  1312. msgctxt "@error:not supported"
  1313. msgid "GCodeWriter does not support non-text mode."
  1314. msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим."
  1315. #: plugins/GCodeWriter/GCodeWriter.py:81 plugins/GCodeWriter/GCodeWriter.py:97
  1316. msgctxt "@warning:status"
  1317. msgid "Please prepare G-code before exporting."
  1318. msgstr "Подготовьте G-код перед экспортом."
  1319. #: plugins/GCodeWriter/plugin.json
  1320. msgctxt "name"
  1321. msgid "G-code Writer"
  1322. msgstr "Средство записи G-кода"
  1323. #: plugins/GCodeWriter/plugin.json
  1324. msgctxt "description"
  1325. msgid "Writes g-code to a file."
  1326. msgstr "Записывает G-код в файл."
  1327. #: plugins/ImageReader/ConfigUI.qml:14
  1328. msgctxt "@title:window"
  1329. msgid "Convert Image"
  1330. msgstr "Преобразование изображения"
  1331. #: plugins/ImageReader/ConfigUI.qml:33
  1332. msgctxt "@action:label"
  1333. msgid "Height (mm)"
  1334. msgstr "Высота (мм)"
  1335. #: plugins/ImageReader/ConfigUI.qml:56
  1336. msgctxt "@info:tooltip"
  1337. msgid "The maximum distance of each pixel from \"Base.\""
  1338. msgstr "Максимальная дистанция каждого пикселя от \"Основания.\""
  1339. #: plugins/ImageReader/ConfigUI.qml:66
  1340. msgctxt "@action:label"
  1341. msgid "Base (mm)"
  1342. msgstr "Основание (мм)"
  1343. #: plugins/ImageReader/ConfigUI.qml:90
  1344. msgctxt "@info:tooltip"
  1345. msgid "The base height from the build plate in millimeters."
  1346. msgstr "Высота основания от стола в миллиметрах."
  1347. #: plugins/ImageReader/ConfigUI.qml:100
  1348. msgctxt "@action:label"
  1349. msgid "Width (mm)"
  1350. msgstr "Ширина (мм)"
  1351. #: plugins/ImageReader/ConfigUI.qml:124
  1352. msgctxt "@info:tooltip"
  1353. msgid "The width in millimeters on the build plate"
  1354. msgstr "Ширина в миллиметрах на печатной пластине"
  1355. #: plugins/ImageReader/ConfigUI.qml:134
  1356. msgctxt "@action:label"
  1357. msgid "Depth (mm)"
  1358. msgstr "Глубина (мм)"
  1359. #: plugins/ImageReader/ConfigUI.qml:158
  1360. msgctxt "@info:tooltip"
  1361. msgid "The depth in millimeters on the build plate"
  1362. msgstr "Глубина в миллиметрах на столе"
  1363. #: plugins/ImageReader/ConfigUI.qml:187
  1364. msgctxt "@item:inlistbox"
  1365. msgid "Darker is higher"
  1366. msgstr "Тёмные выше"
  1367. #: plugins/ImageReader/ConfigUI.qml:188
  1368. msgctxt "@item:inlistbox"
  1369. msgid "Lighter is higher"
  1370. msgstr "Светлые выше"
  1371. #: plugins/ImageReader/ConfigUI.qml:195
  1372. msgctxt "@info:tooltip"
  1373. 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."
  1374. msgstr "Для литофании темные пиксели должны соответствовать более толстым частям, чтобы сильнее задерживать проходящий свет. Для схем высот более светлые пиксели обозначают более высокий участок. Поэтому более светлые пиксели должны соответствовать более толстым местам в созданной 3D-модели."
  1375. #: plugins/ImageReader/ConfigUI.qml:205
  1376. msgctxt "@action:label"
  1377. msgid "Color Model"
  1378. msgstr "Цветовая модель"
  1379. #: plugins/ImageReader/ConfigUI.qml:224
  1380. msgctxt "@item:inlistbox"
  1381. msgid "Linear"
  1382. msgstr "Линейный"
  1383. #: plugins/ImageReader/ConfigUI.qml:225
  1384. msgctxt "@item:inlistbox"
  1385. msgid "Translucency"
  1386. msgstr "Светопроходимость"
  1387. #: plugins/ImageReader/ConfigUI.qml:232
  1388. msgctxt "@info:tooltip"
  1389. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1390. msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам."
  1391. #: plugins/ImageReader/ConfigUI.qml:242
  1392. msgctxt "@action:label"
  1393. msgid "1mm Transmittance (%)"
  1394. msgstr "Проходимость через 1 мм (%)"
  1395. #: plugins/ImageReader/ConfigUI.qml:263
  1396. msgctxt "@info:tooltip"
  1397. 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."
  1398. msgstr "Процент света, проникающего в отпечаток толщиной 1 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится."
  1399. #: plugins/ImageReader/ConfigUI.qml:274
  1400. msgctxt "@action:label"
  1401. msgid "Smoothing"
  1402. msgstr "Сглаживание"
  1403. #: plugins/ImageReader/ConfigUI.qml:298
  1404. msgctxt "@info:tooltip"
  1405. msgid "The amount of smoothing to apply to the image."
  1406. msgstr "Величина сглаживания для применения к изображению."
  1407. #: plugins/ImageReader/ConfigUI.qml:329
  1408. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:136
  1409. #: resources/qml/ColorDialog.qml:148 resources/qml/Dialogs/RenameDialog.qml:25
  1410. msgctxt "@action:button"
  1411. msgid "OK"
  1412. msgstr "OK"
  1413. #: plugins/ImageReader/__init__.py:14
  1414. msgctxt "@item:inlistbox"
  1415. msgid "JPG Image"
  1416. msgstr "JPG изображение"
  1417. #: plugins/ImageReader/__init__.py:18
  1418. msgctxt "@item:inlistbox"
  1419. msgid "JPEG Image"
  1420. msgstr "JPEG изображение"
  1421. #: plugins/ImageReader/__init__.py:22
  1422. msgctxt "@item:inlistbox"
  1423. msgid "PNG Image"
  1424. msgstr "PNG изображение"
  1425. #: plugins/ImageReader/__init__.py:26
  1426. msgctxt "@item:inlistbox"
  1427. msgid "BMP Image"
  1428. msgstr "BMP изображение"
  1429. #: plugins/ImageReader/__init__.py:30
  1430. msgctxt "@item:inlistbox"
  1431. msgid "GIF Image"
  1432. msgstr "GIF изображение"
  1433. #: plugins/ImageReader/plugin.json
  1434. msgctxt "description"
  1435. msgid "Enables ability to generate printable geometry from 2D image files."
  1436. msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений."
  1437. #: plugins/ImageReader/plugin.json
  1438. msgctxt "name"
  1439. msgid "Image Reader"
  1440. msgstr "Чтение изображений"
  1441. #: plugins/LegacyProfileReader/__init__.py:14
  1442. msgctxt "@item:inlistbox"
  1443. msgid "Cura 15.04 profiles"
  1444. msgstr "Профили Cura 15.04"
  1445. #: plugins/LegacyProfileReader/plugin.json
  1446. msgctxt "name"
  1447. msgid "Legacy Cura Profile Reader"
  1448. msgstr "Чтение устаревших профилей Cura"
  1449. #: plugins/LegacyProfileReader/plugin.json
  1450. msgctxt "description"
  1451. msgid "Provides support for importing profiles from legacy Cura versions."
  1452. msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura."
  1453. #: plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1454. msgctxt "@action"
  1455. msgid "Machine Settings"
  1456. msgstr "Параметры принтера"
  1457. #: plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  1458. msgctxt "@title:tab"
  1459. msgid "Printer"
  1460. msgstr "Принтер"
  1461. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  1462. msgctxt "@title:label"
  1463. msgid "Nozzle Settings"
  1464. msgstr "Параметры сопла"
  1465. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:74
  1466. msgctxt "@label"
  1467. msgid "Nozzle size"
  1468. msgstr "Диаметр сопла"
  1469. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:78
  1470. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:92
  1471. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:108
  1472. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:123
  1473. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:72
  1474. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:87
  1475. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:102
  1476. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  1477. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  1478. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  1479. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  1480. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  1481. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:85
  1482. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:99
  1483. msgctxt "@label"
  1484. msgid "mm"
  1485. msgstr "мм"
  1486. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:88
  1487. msgctxt "@label"
  1488. msgid "Compatible material diameter"
  1489. msgstr "Диаметр совместимого материала"
  1490. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:104
  1491. msgctxt "@label"
  1492. msgid "Nozzle offset X"
  1493. msgstr "Смещение сопла по оси X"
  1494. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:119
  1495. msgctxt "@label"
  1496. msgid "Nozzle offset Y"
  1497. msgstr "Смещение сопла по оси Y"
  1498. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:134
  1499. msgctxt "@label"
  1500. msgid "Cooling Fan Number"
  1501. msgstr "Номер охлаждающего вентилятора"
  1502. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:162
  1503. msgctxt "@title:label"
  1504. msgid "Extruder Start G-code"
  1505. msgstr "Стартовый G-код экструдера"
  1506. #: plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:176
  1507. msgctxt "@title:label"
  1508. msgid "Extruder End G-code"
  1509. msgstr "Завершающий G-код экструдера"
  1510. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  1511. msgctxt "@title:label"
  1512. msgid "Printer Settings"
  1513. msgstr "Параметры принтера"
  1514. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:68
  1515. msgctxt "@label"
  1516. msgid "X (Width)"
  1517. msgstr "X (Ширина)"
  1518. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:83
  1519. msgctxt "@label"
  1520. msgid "Y (Depth)"
  1521. msgstr "Y (Глубина)"
  1522. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:98
  1523. msgctxt "@label"
  1524. msgid "Z (Height)"
  1525. msgstr "Z (Высота)"
  1526. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:112
  1527. msgctxt "@label"
  1528. msgid "Build plate shape"
  1529. msgstr "Форма стола"
  1530. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:125
  1531. msgctxt "@label"
  1532. msgid "Origin at center"
  1533. msgstr "Начало координат в центре"
  1534. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:137
  1535. msgctxt "@label"
  1536. msgid "Heated bed"
  1537. msgstr "Нагреваемый стол"
  1538. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:149
  1539. msgctxt "@label"
  1540. msgid "Heated build volume"
  1541. msgstr "Подогреваемый объем печати"
  1542. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:161
  1543. msgctxt "@label"
  1544. msgid "G-code flavor"
  1545. msgstr "Вариант G-кода"
  1546. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:185
  1547. msgctxt "@title:label"
  1548. msgid "Printhead Settings"
  1549. msgstr "Параметры головы"
  1550. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:197
  1551. msgctxt "@label"
  1552. msgid "X min"
  1553. msgstr "X минимум"
  1554. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:217
  1555. msgctxt "@label"
  1556. msgid "Y min"
  1557. msgstr "Y минимум"
  1558. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:237
  1559. msgctxt "@label"
  1560. msgid "X max"
  1561. msgstr "X максимум"
  1562. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:257
  1563. msgctxt "@label"
  1564. msgid "Y max"
  1565. msgstr "Y максимум"
  1566. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:275
  1567. msgctxt "@label"
  1568. msgid "Gantry Height"
  1569. msgstr "Высота портала"
  1570. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:289
  1571. msgctxt "@label"
  1572. msgid "Number of Extruders"
  1573. msgstr "Количество экструдеров"
  1574. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:342
  1575. msgctxt "@label"
  1576. msgid "Apply Extruder offsets to GCode"
  1577. msgstr "Применить смещения экструдера к GCode"
  1578. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:390
  1579. msgctxt "@title:label"
  1580. msgid "Start G-code"
  1581. msgstr "Стартовый G-код"
  1582. #: plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:401
  1583. msgctxt "@title:label"
  1584. msgid "End G-code"
  1585. msgstr "Завершающий G-код"
  1586. #: plugins/MachineSettingsAction/plugin.json
  1587. msgctxt "name"
  1588. msgid "Machine Settings Action"
  1589. msgstr "Параметры принтера действие"
  1590. #: plugins/MachineSettingsAction/plugin.json
  1591. msgctxt "description"
  1592. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  1593. msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)"
  1594. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:144
  1595. msgctxt "@info:generic"
  1596. msgid "Do you want to sync material and software packages with your account?"
  1597. msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?"
  1598. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:145
  1599. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:95
  1600. msgctxt "@info:title"
  1601. msgid "Changes detected from your UltiMaker account"
  1602. msgstr "В вашей учетной записи UltiMaker обнаружены изменения"
  1603. #: plugins/Marketplace/CloudSync/CloudPackageChecker.py:147
  1604. msgctxt "@action:button"
  1605. msgid "Sync"
  1606. msgstr "Синхронизация"
  1607. #: plugins/Marketplace/CloudSync/DownloadPresenter.py:91
  1608. msgctxt "@info:generic"
  1609. msgid "Syncing..."
  1610. msgstr "Синхронизация..."
  1611. #: plugins/Marketplace/CloudSync/LicenseModel.py:12
  1612. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:79
  1613. msgctxt "@button"
  1614. msgid "Decline"
  1615. msgstr "Отклонить"
  1616. #: plugins/Marketplace/CloudSync/LicenseModel.py:13
  1617. #: resources/qml/WelcomePages/UserAgreementContent.qml:53
  1618. msgctxt "@button"
  1619. msgid "Agree"
  1620. msgstr "Принимаю"
  1621. #: plugins/Marketplace/CloudSync/LicenseModel.py:77
  1622. msgctxt "@title:window"
  1623. msgid "Plugin License Agreement"
  1624. msgstr "Лицензионное соглашение плагина"
  1625. #: plugins/Marketplace/CloudSync/LicensePresenter.py:42
  1626. msgctxt "@button"
  1627. msgid "Decline and remove from account"
  1628. msgstr "Отклонить и удалить из учетной записи"
  1629. #: plugins/Marketplace/CloudSync/RestartApplicationPresenter.py:22
  1630. msgctxt "@info:generic"
  1631. msgid "You need to quit and restart {} before changes have effect."
  1632. msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его."
  1633. #: plugins/Marketplace/CloudSync/SyncOrchestrator.py:79
  1634. msgctxt "@info:generic"
  1635. msgid "{} plugins failed to download"
  1636. msgstr "Встраиваемые модули ({} шт.) не загружены"
  1637. #: plugins/Marketplace/LocalPackageList.py:28
  1638. msgctxt "@label"
  1639. msgid "Installed Plugins"
  1640. msgstr "Установленные встраиваемые модули"
  1641. #: plugins/Marketplace/LocalPackageList.py:29
  1642. msgctxt "@label"
  1643. msgid "Installed Materials"
  1644. msgstr "Установленные материалы"
  1645. #: plugins/Marketplace/LocalPackageList.py:33
  1646. msgctxt "@label"
  1647. msgid "Bundled Plugins"
  1648. msgstr "Связанные встраиваемые модули"
  1649. #: plugins/Marketplace/LocalPackageList.py:34
  1650. msgctxt "@label"
  1651. msgid "Bundled Materials"
  1652. msgstr "Связанные материалы"
  1653. #: plugins/Marketplace/PackageModel.py:43
  1654. msgctxt "@label:property"
  1655. msgid "Unknown Package"
  1656. msgstr "Неизвестный пакет"
  1657. #: plugins/Marketplace/PackageModel.py:66
  1658. msgctxt "@label:property"
  1659. msgid "Unknown Author"
  1660. msgstr "Неизвестный автор"
  1661. #: plugins/Marketplace/PackageModel.py:95
  1662. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  1663. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  1664. msgstr "Пакет материалов, связанный с проектом Cura, не найден на Ultimaker Marketplace. Используйте частичное определение профиля материала, хранящееся в файле проекта Cura, на свой страх и риск."
  1665. #: plugins/Marketplace/RemotePackageList.py:117
  1666. msgctxt "@info:error"
  1667. msgid "Could not interpret the server's response."
  1668. msgstr "Не удалось интерпретировать ответ сервера."
  1669. #: plugins/Marketplace/RemotePackageList.py:148
  1670. msgctxt "@info:error"
  1671. msgid "Could not reach Marketplace."
  1672. msgstr "Не удалось связаться с магазином."
  1673. #: plugins/Marketplace/plugin.json
  1674. msgctxt "description"
  1675. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1676. msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker."
  1677. #: plugins/Marketplace/plugin.json
  1678. msgctxt "name"
  1679. msgid "Marketplace"
  1680. msgstr "Marketplace"
  1681. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:15
  1682. msgctxt "@title"
  1683. msgid "Changes from your account"
  1684. msgstr "Изменения в вашей учетной записи"
  1685. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  1686. msgctxt "@button"
  1687. msgid "Dismiss"
  1688. msgstr "Отклонить"
  1689. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:24
  1690. #: resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:76
  1691. #: resources/qml/WelcomePages/WhatsNewContent.qml:175
  1692. msgctxt "@button"
  1693. msgid "Next"
  1694. msgstr "Следующий"
  1695. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:52
  1696. msgctxt "@label"
  1697. msgid "The following packages will be added:"
  1698. msgstr "Будут добавлены следующие пакеты:"
  1699. #: plugins/Marketplace/resources/qml/CompatibilityDialog.qml:94
  1700. msgctxt "@label"
  1701. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1702. msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:"
  1703. #: plugins/Marketplace/resources/qml/InstallMissingPackagesDialog.qml:15
  1704. msgctxt "@title"
  1705. msgid "Install missing Materials"
  1706. msgstr "Установить недостающие материалы"
  1707. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:15
  1708. msgctxt "@button"
  1709. msgid "Plugin license agreement"
  1710. msgstr "Лицензионное соглашение плагина"
  1711. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:47
  1712. msgctxt "@text"
  1713. msgid "Please read and agree with the plugin licence."
  1714. msgstr "Прочитайте лицензию встраиваемого модуля и примите ее условия."
  1715. #: plugins/Marketplace/resources/qml/LicenseDialog.qml:70
  1716. msgctxt "@button"
  1717. msgid "Accept"
  1718. msgstr "Принять"
  1719. #: plugins/Marketplace/resources/qml/ManagePackagesButton.qml:32
  1720. msgctxt "@info:tooltip"
  1721. msgid "Manage packages"
  1722. msgstr "Управление пакетами"
  1723. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:12
  1724. msgctxt "@header"
  1725. msgid "Manage packages"
  1726. msgstr "Управление пакетами"
  1727. #: plugins/Marketplace/resources/qml/ManagedPackages.qml:16
  1728. msgctxt "@text"
  1729. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1730. msgstr "Здесь можно управлять встраиваемыми модулями Ultimaker Cura и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек."
  1731. #: plugins/Marketplace/resources/qml/Marketplace.qml:87
  1732. msgctxt "@title"
  1733. msgid "Loading..."
  1734. msgstr "Загрузка..."
  1735. #: plugins/Marketplace/resources/qml/Marketplace.qml:148
  1736. msgctxt "@button"
  1737. msgid "Plugins"
  1738. msgstr "Плагины"
  1739. #: plugins/Marketplace/resources/qml/Marketplace.qml:156
  1740. msgctxt "@button"
  1741. msgid "Materials"
  1742. msgstr "Материалы"
  1743. #: plugins/Marketplace/resources/qml/Marketplace.qml:193
  1744. msgctxt "@info"
  1745. msgid "Search in the browser"
  1746. msgstr "Поиск в браузере"
  1747. #: plugins/Marketplace/resources/qml/Marketplace.qml:271
  1748. msgctxt "@button"
  1749. msgid "In order to use the package you will need to restart Cura"
  1750. msgstr "Для работы с пакетом необходимо перезапустить Cura"
  1751. #: plugins/Marketplace/resources/qml/Marketplace.qml:279
  1752. msgctxt "@info:button, %1 is the application name"
  1753. msgid "Quit %1"
  1754. msgstr "Выйти из %1"
  1755. #: plugins/Marketplace/resources/qml/Marketplace.qml:300
  1756. msgctxt "@description"
  1757. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  1758. msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для UltiMaker Cura Enterprise"
  1759. #: plugins/Marketplace/resources/qml/Materials.qml:8
  1760. #: plugins/Marketplace/resources/qml/MissingPackages.qml:8
  1761. msgctxt "@header"
  1762. msgid "Install Materials"
  1763. msgstr "Установка материалов"
  1764. #: plugins/Marketplace/resources/qml/Materials.qml:12
  1765. msgctxt "@text"
  1766. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  1767. msgstr "Выберите и установите профили материалов, оптимизированные для 3D-принтеров Ultimaker."
  1768. #: plugins/Marketplace/resources/qml/MultipleLicenseDialog.qml:35
  1769. msgctxt "@label"
  1770. msgid "You need to accept the license to install the package"
  1771. msgstr "Для установки пакета необходимо принять лицензию"
  1772. #: plugins/Marketplace/resources/qml/OnboardBanner.qml:101
  1773. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:205
  1774. msgctxt "@button:label"
  1775. msgid "Learn More"
  1776. msgstr "Узнать Больше"
  1777. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:170
  1778. msgctxt "@label Is followed by the name of an author"
  1779. msgid "By"
  1780. msgstr "Автор"
  1781. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  1782. msgctxt "@button"
  1783. msgid "Disable"
  1784. msgstr "Выключить"
  1785. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:224
  1786. msgctxt "@button"
  1787. msgid "Enable"
  1788. msgstr "Включить"
  1789. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:242
  1790. msgctxt "@button"
  1791. msgid "Downgrading..."
  1792. msgstr "Переход на более раннюю версию..."
  1793. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:243
  1794. msgctxt "@button"
  1795. msgid "Downgrade"
  1796. msgstr "Переход на более раннюю версию"
  1797. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:247
  1798. msgctxt "@button"
  1799. msgid "Installing..."
  1800. msgstr "Установка..."
  1801. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:248
  1802. msgctxt "@button"
  1803. msgid "Install"
  1804. msgstr "Установить"
  1805. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:252
  1806. msgctxt "@button"
  1807. msgid "Uninstall"
  1808. msgstr "Удалить"
  1809. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  1810. msgctxt "@button"
  1811. msgid "Update"
  1812. msgstr "Обновить"
  1813. #: plugins/Marketplace/resources/qml/PackageCardHeader.qml:267
  1814. msgctxt "@button"
  1815. msgid "Updating..."
  1816. msgstr "Обновление..."
  1817. #: plugins/Marketplace/resources/qml/PackageDetails.qml:15
  1818. msgctxt "@header"
  1819. msgid "Package details"
  1820. msgstr "Сведения о пакете"
  1821. #: plugins/Marketplace/resources/qml/PackageDetails.qml:40
  1822. msgctxt "@button:tooltip"
  1823. msgid "Back"
  1824. msgstr "Назад"
  1825. #: plugins/Marketplace/resources/qml/PackagePage.qml:81
  1826. msgctxt "@header"
  1827. msgid "Description"
  1828. msgstr "Описание"
  1829. #: plugins/Marketplace/resources/qml/PackagePage.qml:110
  1830. msgctxt "@header"
  1831. msgid "Compatible printers"
  1832. msgstr "Совместимые принтеры"
  1833. #: plugins/Marketplace/resources/qml/PackagePage.qml:134
  1834. msgctxt "@info"
  1835. msgid "No compatibility information"
  1836. msgstr "Нет информации о совместимости"
  1837. #: plugins/Marketplace/resources/qml/PackagePage.qml:152
  1838. msgctxt "@header"
  1839. msgid "Compatible support materials"
  1840. msgstr "Совместимые вспомогательные материалы"
  1841. #: plugins/Marketplace/resources/qml/PackagePage.qml:176
  1842. msgctxt "@info No materials"
  1843. msgid "None"
  1844. msgstr "Нет"
  1845. #: plugins/Marketplace/resources/qml/PackagePage.qml:193
  1846. msgctxt "@header"
  1847. msgid "Compatible with Material Station"
  1848. msgstr "Совместимо с Material Station"
  1849. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  1850. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  1851. msgctxt "@info"
  1852. msgid "No"
  1853. msgstr "Нет"
  1854. #: plugins/Marketplace/resources/qml/PackagePage.qml:202
  1855. #: plugins/Marketplace/resources/qml/PackagePage.qml:228
  1856. msgctxt "@info"
  1857. msgid "Yes"
  1858. msgstr "Да"
  1859. #: plugins/Marketplace/resources/qml/PackagePage.qml:219
  1860. msgctxt "@header"
  1861. msgid "Optimized for Air Manager"
  1862. msgstr "Оптимизировано для Air Manager"
  1863. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  1864. msgctxt "@button"
  1865. msgid "Visit plug-in website"
  1866. msgstr "Посетите веб-сайт встраиваемых модулей"
  1867. #: plugins/Marketplace/resources/qml/PackagePage.qml:243
  1868. msgctxt "@button"
  1869. msgid "Website"
  1870. msgstr "Веб-сайт"
  1871. #: plugins/Marketplace/resources/qml/PackagePage.qml:252
  1872. msgctxt "@button"
  1873. msgid "Buy spool"
  1874. msgstr "Купить катушку"
  1875. #: plugins/Marketplace/resources/qml/PackagePage.qml:261
  1876. msgctxt "@button"
  1877. msgid "Safety datasheet"
  1878. msgstr "Паспорт безопасности"
  1879. #: plugins/Marketplace/resources/qml/PackagePage.qml:270
  1880. msgctxt "@button"
  1881. msgid "Technical datasheet"
  1882. msgstr "Таблица технических характеристик"
  1883. #: plugins/Marketplace/resources/qml/Packages.qml:151
  1884. msgctxt "@button"
  1885. msgid "Failed to load packages:"
  1886. msgstr "Пакеты не загружены:"
  1887. #: plugins/Marketplace/resources/qml/Packages.qml:151
  1888. msgctxt "@button"
  1889. msgid "Retry?"
  1890. msgstr "Повторить попытку?"
  1891. #: plugins/Marketplace/resources/qml/Packages.qml:167
  1892. msgctxt "@button"
  1893. msgid "Loading"
  1894. msgstr "Загрузка"
  1895. #: plugins/Marketplace/resources/qml/Packages.qml:183
  1896. msgctxt "@message"
  1897. msgid "No more results to load"
  1898. msgstr "Больше нет результатов для загрузки"
  1899. #: plugins/Marketplace/resources/qml/Packages.qml:183
  1900. msgctxt "@message"
  1901. msgid "No results found with current filter"
  1902. msgstr "Поиск с текущим фильтром не дал результатов"
  1903. #: plugins/Marketplace/resources/qml/Packages.qml:226
  1904. msgctxt "@button"
  1905. msgid "Load more"
  1906. msgstr "Загрузить еще"
  1907. #: plugins/Marketplace/resources/qml/Plugins.qml:8
  1908. msgctxt "@header"
  1909. msgid "Install Plugins"
  1910. msgstr "Установка встраиваемых модулей"
  1911. #: plugins/Marketplace/resources/qml/Plugins.qml:12
  1912. msgctxt "@text"
  1913. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  1914. msgstr "Оптимизируйте свои рабочие процессы и настройте Ultimaker Cura с помощью встраиваемых модулей, разработанных экспертами нашего замечательного сообщества."
  1915. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:21
  1916. msgctxt "@info"
  1917. msgid "UltiMaker Verified Plug-in"
  1918. msgstr "Проверенный плагин UltiMaker"
  1919. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:22
  1920. msgctxt "@info"
  1921. msgid "UltiMaker Certified Material"
  1922. msgstr "Сертифицированный материал UltiMaker"
  1923. #: plugins/Marketplace/resources/qml/VerifiedIcon.qml:23
  1924. msgctxt "@info"
  1925. msgid "UltiMaker Verified Package"
  1926. msgstr "Проверенный пакет UltiMaker"
  1927. #: plugins/ModelChecker/ModelChecker.py:31
  1928. msgctxt "@info:title"
  1929. msgid "3D Model Assistant"
  1930. msgstr "Помощник по 3D-моделям"
  1931. #: plugins/ModelChecker/ModelChecker.py:97
  1932. #, python-brace-format
  1933. msgctxt "@info:status"
  1934. msgid ""
  1935. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1936. "<p>{model_names}</p>\n"
  1937. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1938. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1939. msgstr ""
  1940. "<p>Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:</p>\n"
  1941. "<p>{model_names}</p>\n"
  1942. "<p>Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.</p>\n"
  1943. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ознакомиться с руководством по качеству печати</a></p>"
  1944. #: plugins/ModelChecker/plugin.json
  1945. msgctxt "description"
  1946. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  1947. msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации."
  1948. #: plugins/ModelChecker/plugin.json
  1949. msgctxt "name"
  1950. msgid "Model Checker"
  1951. msgstr "Средство проверки моделей"
  1952. #: plugins/MonitorStage/MonitorMain.qml:100
  1953. msgctxt "@info"
  1954. msgid ""
  1955. "Please make sure your printer has a connection:\n"
  1956. "- Check if the printer is turned on.\n"
  1957. "- Check if the printer is connected to the network.\n"
  1958. "- Check if you are signed in to discover cloud-connected printers."
  1959. msgstr ""
  1960. "Проверьте наличие подключения к принтеру:\n"
  1961. "- Убедитесь, что принтер включен.\n"
  1962. "- Убедитесь, что принтер подключен к сети.\n"
  1963. "- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)."
  1964. #: plugins/MonitorStage/MonitorMain.qml:113
  1965. msgctxt "@info"
  1966. msgid "Please connect your printer to the network."
  1967. msgstr "Подключите принтер к сети."
  1968. #: plugins/MonitorStage/MonitorMain.qml:148
  1969. msgctxt "@label link to technical assistance"
  1970. msgid "View user manuals online"
  1971. msgstr "Просмотр руководств пользователей онлайн"
  1972. #: plugins/MonitorStage/MonitorMain.qml:164
  1973. msgctxt "@info"
  1974. msgid "In order to monitor your print from Cura, please connect the printer."
  1975. msgstr "Чтобы отслеживать задания печати при помощи Cura, подключите принтер."
  1976. #: plugins/MonitorStage/__init__.py:14
  1977. msgctxt "@item:inmenu"
  1978. msgid "Monitor"
  1979. msgstr "Монитор"
  1980. #: plugins/MonitorStage/plugin.json
  1981. msgctxt "name"
  1982. msgid "Monitor Stage"
  1983. msgstr "Этап мониторинга"
  1984. #: plugins/MonitorStage/plugin.json
  1985. msgctxt "description"
  1986. msgid "Provides a monitor stage in Cura."
  1987. msgstr "Обеспечивает этап мониторинга в Cura."
  1988. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:41
  1989. msgctxt "@label"
  1990. msgid "Mesh Type"
  1991. msgstr "Тип объекта"
  1992. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:81
  1993. msgctxt "@label"
  1994. msgid "Normal model"
  1995. msgstr "Нормальная модель"
  1996. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:96
  1997. msgctxt "@label"
  1998. msgid "Print as support"
  1999. msgstr "Печать в качестве поддержки"
  2000. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:111
  2001. msgctxt "@label"
  2002. msgid "Modify settings for overlaps"
  2003. msgstr "Изменить настройки для перекрытий"
  2004. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:126
  2005. msgctxt "@label"
  2006. msgid "Don't support overlaps"
  2007. msgstr "Не поддерживать перекрытия"
  2008. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:160
  2009. msgctxt "@item:inlistbox"
  2010. msgid "Infill mesh only"
  2011. msgstr "Заполнение объекта"
  2012. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:161
  2013. msgctxt "@item:inlistbox"
  2014. msgid "Cutting mesh"
  2015. msgstr "Ограничивающий объект"
  2016. #: plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:386
  2017. msgctxt "@action:button"
  2018. msgid "Select settings"
  2019. msgstr "Выберите параметры"
  2020. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:17
  2021. msgctxt "@title:window"
  2022. msgid "Select Settings to Customize for this model"
  2023. msgstr "Выберите параметр для изменения этой модели"
  2024. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:61
  2025. #: resources/qml/Preferences/SettingVisibilityPage.qml:102
  2026. msgctxt "@label:textbox"
  2027. msgid "Filter..."
  2028. msgstr "Фильтр..."
  2029. #: plugins/PerObjectSettingsTool/SettingPickDialog.qml:75
  2030. msgctxt "@label:checkbox"
  2031. msgid "Show all"
  2032. msgstr "Показать всё"
  2033. #: plugins/PerObjectSettingsTool/__init__.py:14
  2034. msgctxt "@label"
  2035. msgid "Per Model Settings"
  2036. msgstr "Параметры модели"
  2037. #: plugins/PerObjectSettingsTool/__init__.py:15
  2038. msgctxt "@info:tooltip"
  2039. msgid "Configure Per Model Settings"
  2040. msgstr "Правка параметров модели"
  2041. #: plugins/PerObjectSettingsTool/plugin.json
  2042. msgctxt "name"
  2043. msgid "Per Model Settings Tool"
  2044. msgstr "Инструмент для настройки каждой модели"
  2045. #: plugins/PerObjectSettingsTool/plugin.json
  2046. msgctxt "description"
  2047. msgid "Provides the Per Model Settings."
  2048. msgstr "Предоставляет параметры для каждой модели."
  2049. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  2050. msgctxt "@item:inmenu"
  2051. msgid "Post Processing"
  2052. msgstr "Пост-обработка"
  2053. #: plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  2054. msgctxt "@item:inmenu"
  2055. msgid "Modify G-Code"
  2056. msgstr "Изменить G-код"
  2057. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:17
  2058. msgctxt "@title:window"
  2059. msgid "Post Processing Plugin"
  2060. msgstr "Плагин пост-обработки"
  2061. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  2062. msgctxt "@label"
  2063. msgid "Post Processing Scripts"
  2064. msgstr "Скрипты пост-обработки"
  2065. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:215
  2066. msgctxt "@action"
  2067. msgid "Add a script"
  2068. msgstr "Добавить скрипт"
  2069. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:251
  2070. msgctxt "@label"
  2071. msgid "Settings"
  2072. msgstr "Параметры"
  2073. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:460
  2074. msgctxt "@info:tooltip"
  2075. msgid "Change active post-processing scripts."
  2076. msgstr "Измените активные скрипты пост-обработки."
  2077. #: plugins/PostProcessingPlugin/PostProcessingPlugin.qml:464
  2078. msgctxt "@info:tooltip"
  2079. msgid "The following script is active:"
  2080. msgid_plural "The following scripts are active:"
  2081. msgstr[0] "Активны следующие скрипты:"
  2082. msgstr[1] "Активны следующие скрипты:"
  2083. msgstr[2] "Активны следующие скрипты:"
  2084. #: plugins/PostProcessingPlugin/plugin.json
  2085. msgctxt "description"
  2086. msgid "Extension that allows for user created scripts for post processing"
  2087. msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки"
  2088. #: plugins/PostProcessingPlugin/plugin.json
  2089. msgctxt "name"
  2090. msgid "Post Processing"
  2091. msgstr "Пост обработка"
  2092. #: plugins/PrepareStage/PrepareMenu.qml:74
  2093. msgctxt "@button"
  2094. msgid "Add printer"
  2095. msgstr "Добавить принтер"
  2096. #: plugins/PrepareStage/PrepareMenu.qml:90
  2097. msgctxt "@button"
  2098. msgid "Manage printers"
  2099. msgstr "Управление принтерами"
  2100. #: plugins/PrepareStage/__init__.py:12
  2101. msgctxt "@item:inmenu"
  2102. msgid "Prepare"
  2103. msgstr "Подготовка"
  2104. #: plugins/PrepareStage/plugin.json
  2105. msgctxt "name"
  2106. msgid "Prepare Stage"
  2107. msgstr "Подготовительный этап"
  2108. #: plugins/PrepareStage/plugin.json
  2109. msgctxt "description"
  2110. msgid "Provides a prepare stage in Cura."
  2111. msgstr "Обеспечивает подготовительный этап в Cura."
  2112. #: plugins/PreviewStage/__init__.py:13
  2113. msgctxt "@item:inmenu"
  2114. msgid "Preview"
  2115. msgstr "Предварительный просмотр"
  2116. #: plugins/PreviewStage/plugin.json
  2117. msgctxt "name"
  2118. msgid "Preview Stage"
  2119. msgstr "Этап предварительного просмотра"
  2120. #: plugins/PreviewStage/plugin.json
  2121. msgctxt "description"
  2122. msgid "Provides a preview stage in Cura."
  2123. msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura."
  2124. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  2125. msgctxt "@action:button Preceded by 'Ready to'."
  2126. msgid "Save to Removable Drive"
  2127. msgstr "Сохранить на внешний носитель"
  2128. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  2129. #, python-brace-format
  2130. msgctxt "@item:inlistbox"
  2131. msgid "Save to Removable Drive {0}"
  2132. msgstr "Сохранить на внешний носитель {0}"
  2133. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  2134. #: plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  2135. msgctxt "@info:status"
  2136. msgid "There are no file formats available to write with!"
  2137. msgstr "Ни один из форматов файлов не доступен для записи!"
  2138. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  2139. #, python-brace-format
  2140. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2141. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2142. msgstr "Сохранение на внешний носитель <filename>{0}</filename>"
  2143. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:110
  2144. msgctxt "@info:title"
  2145. msgid "Saving"
  2146. msgstr "Сохранение"
  2147. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:120
  2148. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:123
  2149. #, python-brace-format
  2150. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2151. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  2152. msgstr "Не могу записать <filename>{0}</filename>: <message>{1}</message>"
  2153. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  2154. #, python-brace-format
  2155. msgctxt "@info:status Don't translate the tag {device}!"
  2156. msgid "Could not find a file name when trying to write to {device}."
  2157. msgstr "Не могу найти имя файла при записи в {device}."
  2158. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:152
  2159. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:171
  2160. #, python-brace-format
  2161. msgctxt "@info:status"
  2162. msgid "Could not save to removable drive {0}: {1}"
  2163. msgstr "Невозможно сохранить на внешний носитель {0}: {1}"
  2164. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:162
  2165. #, python-brace-format
  2166. msgctxt "@info:status"
  2167. msgid "Saved to Removable Drive {0} as {1}"
  2168. msgstr "Сохранено на внешний носитель {0} как {1}"
  2169. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  2170. msgctxt "@info:title"
  2171. msgid "File Saved"
  2172. msgstr "Файл сохранён"
  2173. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2174. msgctxt "@action:button"
  2175. msgid "Eject"
  2176. msgstr "Извлечь"
  2177. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  2178. #, python-brace-format
  2179. msgctxt "@action"
  2180. msgid "Eject removable device {0}"
  2181. msgstr "Извлекает внешний носитель {0}"
  2182. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:184
  2183. #, python-brace-format
  2184. msgctxt "@info:status"
  2185. msgid "Ejected {0}. You can now safely remove the drive."
  2186. msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель."
  2187. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:185
  2188. msgctxt "@info:title"
  2189. msgid "Safely Remove Hardware"
  2190. msgstr "Безопасное извлечение устройства"
  2191. #: plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:188
  2192. #, python-brace-format
  2193. msgctxt "@info:status"
  2194. msgid "Failed to eject {0}. Another program may be using the drive."
  2195. msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство."
  2196. #: plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  2197. msgctxt "@item:intext"
  2198. msgid "Removable Drive"
  2199. msgstr "Внешний носитель"
  2200. #: plugins/RemovableDriveOutputDevice/plugin.json
  2201. msgctxt "description"
  2202. msgid "Provides removable drive hotplugging and writing support."
  2203. msgstr "Предоставляет поддержку для подключения и записи на внешний носитель."
  2204. #: plugins/RemovableDriveOutputDevice/plugin.json
  2205. msgctxt "name"
  2206. msgid "Removable Drive Output Device Plugin"
  2207. msgstr "Плагин для работы с внешним носителем"
  2208. #: plugins/SentryLogger/plugin.json
  2209. msgctxt "description"
  2210. msgid "Logs certain events so that they can be used by the crash reporter"
  2211. msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы"
  2212. #: plugins/SentryLogger/plugin.json
  2213. msgctxt "name"
  2214. msgid "Sentry Logger"
  2215. msgstr "Контрольный журнал"
  2216. #: plugins/SimulationView/SimulationView.py:129
  2217. msgctxt "@info:status"
  2218. msgid "Nothing is shown because you need to slice first."
  2219. msgstr "Ничего не отображается, поскольку сначала нужно выполнить нарезку на слои."
  2220. #: plugins/SimulationView/SimulationView.py:130
  2221. msgctxt "@info:title"
  2222. msgid "No layers to show"
  2223. msgstr "Нет слоев для отображения"
  2224. #: plugins/SimulationView/SimulationView.py:132
  2225. #: plugins/SolidView/SolidView.py:74
  2226. msgctxt "@info:option_text"
  2227. msgid "Do not show this message again"
  2228. msgstr "Больше не показывать это сообщение"
  2229. #: plugins/SimulationView/SimulationViewMenuComponent.qml:18
  2230. #: plugins/SimulationView/SimulationViewMenuComponent.qml:47
  2231. msgctxt "@label"
  2232. msgid "Color scheme"
  2233. msgstr "Цветовая схема"
  2234. #: plugins/SimulationView/SimulationViewMenuComponent.qml:104
  2235. msgctxt "@label:listbox"
  2236. msgid "Material Color"
  2237. msgstr "Цвет материала"
  2238. #: plugins/SimulationView/SimulationViewMenuComponent.qml:108
  2239. msgctxt "@label:listbox"
  2240. msgid "Line Type"
  2241. msgstr "Тип линии"
  2242. #: plugins/SimulationView/SimulationViewMenuComponent.qml:112
  2243. msgctxt "@label:listbox"
  2244. msgid "Speed"
  2245. msgstr "Скорость"
  2246. #: plugins/SimulationView/SimulationViewMenuComponent.qml:116
  2247. msgctxt "@label:listbox"
  2248. msgid "Layer Thickness"
  2249. msgstr "Толщина слоя"
  2250. #: plugins/SimulationView/SimulationViewMenuComponent.qml:120
  2251. msgctxt "@label:listbox"
  2252. msgid "Line Width"
  2253. msgstr "Ширина линии"
  2254. #: plugins/SimulationView/SimulationViewMenuComponent.qml:124
  2255. msgctxt "@label:listbox"
  2256. msgid "Flow"
  2257. msgstr "Поток"
  2258. #: plugins/SimulationView/SimulationViewMenuComponent.qml:164
  2259. msgctxt "@label"
  2260. msgid "Compatibility Mode"
  2261. msgstr "Режим совместимости"
  2262. #: plugins/SimulationView/SimulationViewMenuComponent.qml:231
  2263. msgctxt "@label"
  2264. msgid "Travels"
  2265. msgstr "Перемещения"
  2266. #: plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2267. msgctxt "@label"
  2268. msgid "Helpers"
  2269. msgstr "Помощники"
  2270. #: plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2271. msgctxt "@label"
  2272. msgid "Shell"
  2273. msgstr "Ограждение"
  2274. #: plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2275. msgctxt "@label"
  2276. msgid "Infill"
  2277. msgstr "Заполнение"
  2278. #: plugins/SimulationView/SimulationViewMenuComponent.qml:257
  2279. msgctxt "@label"
  2280. msgid "Starts"
  2281. msgstr "Запуск"
  2282. #: plugins/SimulationView/SimulationViewMenuComponent.qml:304
  2283. msgctxt "@label"
  2284. msgid "Only Show Top Layers"
  2285. msgstr "Показать только верхние слои"
  2286. #: plugins/SimulationView/SimulationViewMenuComponent.qml:313
  2287. msgctxt "@label"
  2288. msgid "Show 5 Detailed Layers On Top"
  2289. msgstr "Показать 5 детализированных слоёв сверху"
  2290. #: plugins/SimulationView/SimulationViewMenuComponent.qml:326
  2291. msgctxt "@label"
  2292. msgid "Top / Bottom"
  2293. msgstr "Дно / крышка"
  2294. #: plugins/SimulationView/SimulationViewMenuComponent.qml:330
  2295. msgctxt "@label"
  2296. msgid "Inner Wall"
  2297. msgstr "Внутренняя стенка"
  2298. #: plugins/SimulationView/SimulationViewMenuComponent.qml:397
  2299. msgctxt "@label"
  2300. msgid "min"
  2301. msgstr "мин"
  2302. #: plugins/SimulationView/SimulationViewMenuComponent.qml:462
  2303. msgctxt "@label"
  2304. msgid "max"
  2305. msgstr "макс"
  2306. #: plugins/SimulationView/__init__.py:15
  2307. msgctxt "@item:inlistbox"
  2308. msgid "Layer view"
  2309. msgstr "Просмотр слоёв"
  2310. #: plugins/SimulationView/plugin.json
  2311. msgctxt "description"
  2312. msgid "Provides the preview of sliced layerdata."
  2313. msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя."
  2314. #: plugins/SimulationView/plugin.json
  2315. msgctxt "name"
  2316. msgid "Simulation View"
  2317. msgstr "Вид моделирования"
  2318. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:16
  2319. msgctxt "@title:window"
  2320. msgid "More information on anonymous data collection"
  2321. msgstr "Дополнительная информация о сборе анонимных данных"
  2322. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:73
  2323. msgctxt "@text:window"
  2324. 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:"
  2325. msgstr "UltiMaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:"
  2326. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:107
  2327. msgctxt "@text:window"
  2328. msgid "I don't want to send anonymous data"
  2329. msgstr "Не хочу отправлять анонимные данные"
  2330. #: plugins/SliceInfoPlugin/MoreInfoWindow.qml:116
  2331. msgctxt "@text:window"
  2332. msgid "Allow sending anonymous data"
  2333. msgstr "Разрешить отправку анонимных данных"
  2334. #: plugins/SliceInfoPlugin/SliceInfo.py:95
  2335. msgctxt "@text"
  2336. msgid "Unable to read example data file."
  2337. msgstr "Невозможно прочитать пример файла данных."
  2338. #: plugins/SliceInfoPlugin/plugin.json
  2339. msgctxt "name"
  2340. msgid "Slice info"
  2341. msgstr "Информация о нарезке модели"
  2342. #: plugins/SliceInfoPlugin/plugin.json
  2343. msgctxt "description"
  2344. msgid "Submits anonymous slice info. Can be disabled through preferences."
  2345. msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки."
  2346. #: plugins/SolidView/SolidView.py:71
  2347. msgctxt "@info:status"
  2348. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  2349. msgstr "Выделены области с отсутствующими или лишними поверхностями. Исправьте модель и снова откройте ее в Cura."
  2350. #: plugins/SolidView/SolidView.py:73
  2351. msgctxt "@info:title"
  2352. msgid "Model Errors"
  2353. msgstr "Ошибки модели"
  2354. #: plugins/SolidView/__init__.py:12
  2355. msgctxt "@item:inmenu"
  2356. msgid "Solid view"
  2357. msgstr "Просмотр модели"
  2358. #: plugins/SolidView/plugin.json
  2359. msgctxt "description"
  2360. msgid "Provides a normal solid mesh view."
  2361. msgstr "Предоставляет просмотр твёрдого тела."
  2362. #: plugins/SolidView/plugin.json
  2363. msgctxt "name"
  2364. msgid "Solid View"
  2365. msgstr "Обзор"
  2366. #: plugins/SupportEraser/__init__.py:12
  2367. msgctxt "@label"
  2368. msgid "Support Blocker"
  2369. msgstr "Блокировщик поддержки"
  2370. #: plugins/SupportEraser/__init__.py:13
  2371. msgctxt "@info:tooltip"
  2372. msgid "Create a volume in which supports are not printed."
  2373. msgstr "Создание объема без печати элементов поддержки."
  2374. #: plugins/SupportEraser/plugin.json
  2375. msgctxt "description"
  2376. msgid "Creates an eraser mesh to block the printing of support in certain places"
  2377. msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах"
  2378. #: plugins/SupportEraser/plugin.json
  2379. msgctxt "name"
  2380. msgid "Support Eraser"
  2381. msgstr "Средство стирания элемента поддержки"
  2382. #: plugins/TrimeshReader/__init__.py:15
  2383. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2384. msgid "Open Compressed Triangle Mesh"
  2385. msgstr "Open Compressed Triangle Mesh"
  2386. #: plugins/TrimeshReader/__init__.py:19
  2387. msgctxt "@item:inlistbox"
  2388. msgid "COLLADA Digital Asset Exchange"
  2389. msgstr "COLLADA Digital Asset Exchange"
  2390. #: plugins/TrimeshReader/__init__.py:23
  2391. msgctxt "@item:inlistbox"
  2392. msgid "glTF Binary"
  2393. msgstr "glTF Binary"
  2394. #: plugins/TrimeshReader/__init__.py:27
  2395. msgctxt "@item:inlistbox"
  2396. msgid "glTF Embedded JSON"
  2397. msgstr "glTF Embedded JSON"
  2398. #: plugins/TrimeshReader/__init__.py:36
  2399. msgctxt "@item:inlistbox"
  2400. msgid "Stanford Triangle Format"
  2401. msgstr "Stanford Triangle Format"
  2402. #: plugins/TrimeshReader/__init__.py:40
  2403. msgctxt "@item:inlistbox"
  2404. msgid "Compressed COLLADA Digital Asset Exchange"
  2405. msgstr "Compressed COLLADA Digital Asset Exchange"
  2406. #: plugins/TrimeshReader/plugin.json
  2407. msgctxt "description"
  2408. msgid "Provides support for reading model files."
  2409. msgstr "Предоставляет поддержку для чтения файлов моделей."
  2410. #: plugins/TrimeshReader/plugin.json
  2411. msgctxt "name"
  2412. msgid "Trimesh Reader"
  2413. msgstr "Средство чтения Trimesh"
  2414. #: plugins/UFPReader/__init__.py:22 plugins/UFPWriter/__init__.py:28
  2415. msgctxt "@item:inlistbox"
  2416. msgid "UltiMaker Format Package"
  2417. msgstr "Пакет формата UltiMaker"
  2418. #: plugins/UFPReader/plugin.json
  2419. msgctxt "description"
  2420. msgid "Provides support for reading Ultimaker Format Packages."
  2421. msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker."
  2422. #: plugins/UFPReader/plugin.json
  2423. msgctxt "name"
  2424. msgid "UFP Reader"
  2425. msgstr "Средство считывания UFP"
  2426. #: plugins/UFPWriter/UFPWriter.py:64 plugins/UFPWriter/UFPWriter.py:80
  2427. #: plugins/UFPWriter/UFPWriter.py:93 plugins/UFPWriter/UFPWriter.py:115
  2428. #: plugins/UFPWriter/UFPWriter.py:170 plugins/UFPWriter/UFPWriter.py:180
  2429. msgctxt "@info:error"
  2430. msgid "Can't write to UFP file:"
  2431. msgstr "Невозможно записать в файл UFP:"
  2432. #: plugins/UFPWriter/plugin.json
  2433. msgctxt "description"
  2434. msgid "Provides support for writing Ultimaker Format Packages."
  2435. msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker."
  2436. #: plugins/UFPWriter/plugin.json
  2437. msgctxt "name"
  2438. msgid "UFP Writer"
  2439. msgstr "Средство записи UFP"
  2440. #: plugins/UM3NetworkPrinting/plugin.json
  2441. msgctxt "description"
  2442. msgid "Manages network connections to UltiMaker networked printers."
  2443. msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker."
  2444. #: plugins/UM3NetworkPrinting/plugin.json
  2445. msgctxt "name"
  2446. msgid "UltiMaker Network Connection"
  2447. msgstr "Соединение с сетью UltiMaker"
  2448. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:44
  2449. msgctxt "@title:window"
  2450. msgid "Connect to Networked Printer"
  2451. msgstr "Подключение к сетевому принтеру"
  2452. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2453. msgctxt "@label"
  2454. msgid "Select your printer from the list below:"
  2455. msgstr "Выберите свой принтер из приведенного ниже списка:"
  2456. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:51
  2457. msgctxt "@label"
  2458. 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."
  2459. msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер."
  2460. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:71
  2461. msgctxt "@action:button"
  2462. msgid "Edit"
  2463. msgstr "Правка"
  2464. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:82
  2465. #: resources/qml/Preferences/MachinesPage.qml:153
  2466. #: resources/qml/Preferences/Materials/MaterialsPage.qml:186
  2467. #: resources/qml/Preferences/ProfilesPage.qml:321
  2468. msgctxt "@action:button"
  2469. msgid "Remove"
  2470. msgstr "Удалить"
  2471. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:90
  2472. msgctxt "@action:button"
  2473. msgid "Refresh"
  2474. msgstr "Обновить"
  2475. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:161
  2476. msgctxt "@label"
  2477. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  2478. msgstr "Если ваш принтер отсутствует в списке, обратитесь к <a href='%1'>руководству по решению проблем с сетевой печатью</a>"
  2479. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:186
  2480. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:247
  2481. msgctxt "@label"
  2482. msgid "Type"
  2483. msgstr "Тип"
  2484. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:202
  2485. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:256
  2486. msgctxt "@label"
  2487. msgid "Firmware version"
  2488. msgstr "Версия прошивки"
  2489. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:212
  2490. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:266
  2491. msgctxt "@label"
  2492. msgid "Address"
  2493. msgstr "Адрес"
  2494. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:232
  2495. msgctxt "@label"
  2496. msgid "This printer is not set up to host a group of printers."
  2497. msgstr "Данный принтер не настроен для управления группой принтеров."
  2498. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:236
  2499. msgctxt "@label"
  2500. msgid "This printer is the host for a group of %1 printers."
  2501. msgstr "Данный принтер управляет группой из %1 принтера (-ов)."
  2502. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:245
  2503. msgctxt "@label"
  2504. msgid "The printer at this address has not yet responded."
  2505. msgstr "Принтер по этому адресу ещё не отвечал."
  2506. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:250
  2507. msgctxt "@action:button"
  2508. msgid "Connect"
  2509. msgstr "Подключить"
  2510. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:261
  2511. msgctxt "@title:window"
  2512. msgid "Invalid IP address"
  2513. msgstr "Недействительный IP-адрес"
  2514. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:262
  2515. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:141
  2516. msgctxt "@text"
  2517. msgid "Please enter a valid IP address."
  2518. msgstr "Введите действительный IP-адрес."
  2519. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:272
  2520. msgctxt "@title:window"
  2521. msgid "Printer Address"
  2522. msgstr "Адрес принтера"
  2523. #: plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  2524. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:97
  2525. msgctxt "@label"
  2526. msgid "Enter the IP address of your printer on the network."
  2527. msgstr "Введите IP-адрес принтера в сети."
  2528. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  2529. msgctxt "@title:window"
  2530. msgid "Configuration Changes"
  2531. msgstr "Изменения конфигурации"
  2532. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:36
  2533. msgctxt "@action:button"
  2534. msgid "Override"
  2535. msgstr "Переопределить"
  2536. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:83
  2537. msgctxt "@label"
  2538. msgid "The assigned printer, %1, requires the following configuration change:"
  2539. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  2540. msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:"
  2541. msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  2542. msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  2543. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:87
  2544. msgctxt "@label"
  2545. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  2546. msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала."
  2547. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:97
  2548. msgctxt "@label"
  2549. msgid "Change material %1 from %2 to %3."
  2550. msgstr "Изменить материал %1 с %2 на %3."
  2551. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:100
  2552. msgctxt "@label"
  2553. msgid "Load %3 as material %1 (This cannot be overridden)."
  2554. msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)."
  2555. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:103
  2556. msgctxt "@label"
  2557. msgid "Change print core %1 from %2 to %3."
  2558. msgstr "Изменить экструдер %1 с %2 на %3."
  2559. #: plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:110
  2560. msgctxt "@label"
  2561. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2562. msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати."
  2563. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  2564. msgctxt "@label"
  2565. msgid "Move to top"
  2566. msgstr "Переместить в начало"
  2567. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:155
  2568. msgctxt "@label"
  2569. msgid "Delete"
  2570. msgstr "Удалить"
  2571. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:186
  2572. #: resources/qml/MonitorButton.qml:284
  2573. msgctxt "@label"
  2574. msgid "Resume"
  2575. msgstr "Продолжить"
  2576. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:188
  2577. msgctxt "@label"
  2578. msgid "Pausing..."
  2579. msgstr "Приостановка..."
  2580. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:190
  2581. msgctxt "@label"
  2582. msgid "Resuming..."
  2583. msgstr "Возобновляется..."
  2584. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:192
  2585. #: resources/qml/MonitorButton.qml:279 resources/qml/MonitorButton.qml:288
  2586. msgctxt "@label"
  2587. msgid "Pause"
  2588. msgstr "Пауза"
  2589. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2590. msgctxt "@label"
  2591. msgid "Abort"
  2592. msgstr "Прервать"
  2593. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:206
  2594. msgctxt "@label"
  2595. msgid "Aborting..."
  2596. msgstr "Прерывается..."
  2597. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:218
  2598. msgctxt "@label %1 is the name of a print job."
  2599. msgid "Are you sure you want to move %1 to the top of the queue?"
  2600. msgstr "Вы уверены, что хотите переместить %1 в начало очереди?"
  2601. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:219
  2602. msgctxt "@window:title"
  2603. msgid "Move print job to top"
  2604. msgstr "Переместить задание печати в начало очереди"
  2605. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:227
  2606. msgctxt "@label %1 is the name of a print job."
  2607. msgid "Are you sure you want to delete %1?"
  2608. msgstr "Вы уверены, что хотите удалить %1?"
  2609. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:228
  2610. msgctxt "@window:title"
  2611. msgid "Delete print job"
  2612. msgstr "Удалить задание печати"
  2613. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:236
  2614. msgctxt "@label %1 is the name of a print job."
  2615. msgid "Are you sure you want to abort %1?"
  2616. msgstr "Вы уверены, что хотите прервать %1?"
  2617. #: plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:237
  2618. #: resources/qml/MonitorButton.qml:326
  2619. msgctxt "@window:title"
  2620. msgid "Abort print"
  2621. msgstr "Прервать печать"
  2622. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:126
  2623. msgctxt "@label"
  2624. msgid "Unavailable printer"
  2625. msgstr "Недоступный принтер"
  2626. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:128
  2627. msgctxt "@label"
  2628. msgid "First available"
  2629. msgstr "Первое доступное"
  2630. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:242
  2631. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:246
  2632. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:472
  2633. msgctxt "@info"
  2634. msgid "Please update your printer's firmware to manage the queue remotely."
  2635. msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера."
  2636. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:70
  2637. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2638. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2639. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2640. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2641. msgctxt "@label:status"
  2642. msgid "Aborted"
  2643. msgstr "Прервано"
  2644. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:72
  2645. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:74
  2646. msgctxt "@label:status"
  2647. msgid "Finished"
  2648. msgstr "Завершено"
  2649. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:76
  2650. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  2651. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2652. msgctxt "@label:status"
  2653. msgid "Preparing..."
  2654. msgstr "Подготовка..."
  2655. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2656. msgctxt "@label:status"
  2657. msgid "Aborting..."
  2658. msgstr "Прерывается..."
  2659. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  2660. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2661. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2662. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2663. msgctxt "@label:status"
  2664. msgid "Failed"
  2665. msgstr "Сбой"
  2666. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2667. msgctxt "@label:status"
  2668. msgid "Pausing..."
  2669. msgstr "Приостановка..."
  2670. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2671. msgctxt "@label:status"
  2672. msgid "Paused"
  2673. msgstr "Приостановлено"
  2674. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:102
  2675. msgctxt "@label:status"
  2676. msgid "Resuming..."
  2677. msgstr "Возобновляется..."
  2678. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:104
  2679. msgctxt "@label:status"
  2680. msgid "Action required"
  2681. msgstr "Необходимое действие"
  2682. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:106
  2683. msgctxt "@label:status"
  2684. msgid "Finishes %1 at %2"
  2685. msgstr "Завершение %1 в %2"
  2686. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:148
  2687. msgctxt "@label link to Connect and Cloud interfaces"
  2688. msgid "Manage printer"
  2689. msgstr "Управление принтером"
  2690. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:280
  2691. msgctxt "@info"
  2692. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  2693. msgstr "Каналы веб-камеры для облачных принтеров невозможно просмотреть из UltiMaker Cura. Щелкните «Управление принтером», чтобы просмотреть эту веб-камеру на сайте Ultimaker Digital Factory."
  2694. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:340
  2695. msgctxt "@label:status"
  2696. msgid "Loading..."
  2697. msgstr "Загрузка..."
  2698. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:344
  2699. msgctxt "@label:status"
  2700. msgid "Unavailable"
  2701. msgstr "Недоступен"
  2702. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2703. msgctxt "@label:status"
  2704. msgid "Unreachable"
  2705. msgstr "Недостижимо"
  2706. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2707. msgctxt "@label:status"
  2708. msgid "Idle"
  2709. msgstr "Простой"
  2710. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:361
  2711. msgctxt "@label:status"
  2712. msgid "Printing"
  2713. msgstr "Печать"
  2714. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:402
  2715. msgctxt "@label"
  2716. msgid "Untitled"
  2717. msgstr "Без имени"
  2718. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:417
  2719. msgctxt "@label"
  2720. msgid "Anonymous"
  2721. msgstr "Анонимн"
  2722. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:438
  2723. msgctxt "@label:status"
  2724. msgid "Requires configuration changes"
  2725. msgstr "Необходимо внести изменения конфигурации"
  2726. #: plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:452
  2727. msgctxt "@action:button"
  2728. msgid "Details"
  2729. msgstr "Подробности"
  2730. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:29
  2731. msgctxt "@label"
  2732. msgid "Queued"
  2733. msgstr "Запланировано"
  2734. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:64
  2735. msgctxt "@label link to connect manager"
  2736. msgid "Manage in browser"
  2737. msgstr "Управление через браузер"
  2738. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:91
  2739. msgctxt "@label"
  2740. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  2741. msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание."
  2742. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  2743. msgctxt "@label"
  2744. msgid "Print jobs"
  2745. msgstr "Задания печати"
  2746. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:108
  2747. msgctxt "@label"
  2748. msgid "Total print time"
  2749. msgstr "Общее время печати"
  2750. #: plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:117
  2751. msgctxt "@label"
  2752. msgid "Waiting for"
  2753. msgstr "Ожидание"
  2754. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:117
  2755. msgctxt "@info"
  2756. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  2757. msgstr "Следите за своими принтерами откуда угодно с помощью Ultimaker Digital Factory"
  2758. #: plugins/UM3NetworkPrinting/resources/qml/MonitorStage.qml:129
  2759. msgctxt "@button"
  2760. msgid "View printers in Digital Factory"
  2761. msgstr "Просмотреть принтеры в Digital Factory"
  2762. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:12
  2763. msgctxt "@title:window"
  2764. msgid "Print over network"
  2765. msgstr "Печать через сеть"
  2766. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:53
  2767. msgctxt "@action:button"
  2768. msgid "Print"
  2769. msgstr "Печать"
  2770. #: plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:81
  2771. msgctxt "@label"
  2772. msgid "Printer selection"
  2773. msgstr "Выбор принтера"
  2774. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:80
  2775. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:162
  2776. msgctxt "@action:button"
  2777. msgid "Print via cloud"
  2778. msgstr "Печать через облако"
  2779. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:81
  2780. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:163
  2781. msgctxt "@properties:tooltip"
  2782. msgid "Print via cloud"
  2783. msgstr "Печать через облако"
  2784. #: plugins/UM3NetworkPrinting/src/Cloud/AbstractCloudOutputDevice.py:82
  2785. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:164
  2786. msgctxt "@info:status"
  2787. msgid "Connected via cloud"
  2788. msgstr "Подключено через облако"
  2789. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:276
  2790. msgctxt "@action:button"
  2791. msgid "Monitor print"
  2792. msgstr "Мониторинг печати"
  2793. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:278
  2794. msgctxt "@action:tooltip"
  2795. msgid "Track the print in Ultimaker Digital Factory"
  2796. msgstr "Отслеживайте печать в Ultimaker Digital Factory"
  2797. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:298
  2798. #, python-brace-format
  2799. msgctxt "@error:send"
  2800. msgid "Unknown error code when uploading print job: {0}"
  2801. msgstr "Неизвестный код ошибки при загрузке задания печати: {0}"
  2802. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  2803. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:23
  2804. msgctxt "info:name"
  2805. msgid "Ultimaker Digital Factory"
  2806. msgstr "Ultimaker Digital Factory"
  2807. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:425
  2808. #, python-brace-format
  2809. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2810. msgid "{printer_name} will be removed until the next account sync."
  2811. msgstr "{printer_name} будет удален до следующей синхронизации учетной записи."
  2812. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:426
  2813. #, python-brace-format
  2814. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2815. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  2816. msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}"
  2817. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:427
  2818. #, python-brace-format
  2819. msgctxt "@message {printer_name} is replaced with the name of the printer"
  2820. msgid "Are you sure you want to remove {printer_name} temporarily?"
  2821. msgstr "Действительно удалить {printer_name} временно?"
  2822. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:474
  2823. msgctxt "@title:window"
  2824. msgid "Remove printers?"
  2825. msgstr "Удалить принтеры?"
  2826. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:477
  2827. #, python-brace-format
  2828. msgctxt "@label"
  2829. msgid ""
  2830. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  2831. "Are you sure you want to continue?"
  2832. msgid_plural ""
  2833. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  2834. "Are you sure you want to continue?"
  2835. msgstr[0] ""
  2836. "Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\n"
  2837. "Продолжить?"
  2838. msgstr[1] ""
  2839. "Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\n"
  2840. "Продолжить?"
  2841. msgstr[2] ""
  2842. "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n"
  2843. "Продолжить?"
  2844. #: plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:484
  2845. msgctxt "@label"
  2846. msgid ""
  2847. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  2848. "Are you sure you want to continue?"
  2849. msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?"
  2850. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:25
  2851. #, python-brace-format
  2852. msgctxt "@info:status"
  2853. msgid ""
  2854. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  2855. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  2856. msgstr ""
  2857. "Ваш принтер <b>{printer_name}</b> может быть подключен через облако.\n"
  2858. " Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory"
  2859. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:26
  2860. msgctxt "@info:title"
  2861. msgid "Are you ready for cloud printing?"
  2862. msgstr "Вы готовы к облачной печати?"
  2863. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:30
  2864. msgctxt "@action"
  2865. msgid "Get started"
  2866. msgstr "Приступить"
  2867. #: plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:31
  2868. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:24
  2869. msgctxt "@action"
  2870. msgid "Learn more"
  2871. msgstr "Узнать больше"
  2872. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  2873. msgctxt "@info:status"
  2874. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  2875. msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает UltiMaker Connect. Обновите прошивку принтера до последней версии."
  2876. #: plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  2877. msgctxt "@info:title"
  2878. msgid "Update your printer"
  2879. msgstr "Обновите свой принтер"
  2880. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  2881. #, python-brace-format
  2882. msgctxt "@info:status"
  2883. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  2884. msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}."
  2885. #: plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  2886. msgctxt "@info:title"
  2887. msgid "Sending materials to printer"
  2888. msgstr "Отправка материалов на принтер"
  2889. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:13
  2890. msgctxt "info:status"
  2891. msgid "New printer detected from your Ultimaker account"
  2892. msgid_plural "New printers detected from your Ultimaker account"
  2893. msgstr[0] "Новый принтер обнаружен из учетной записи Ultimaker"
  2894. msgstr[1] "Новых принтера обнаружено из учетной записи Ultimaker"
  2895. msgstr[2] "Новых принтеров обнаружено из учетной записи Ultimaker"
  2896. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:29
  2897. #, python-brace-format
  2898. msgctxt "info:status Filled in with printer name and printer model."
  2899. msgid "Adding printer {name} ({model}) from your account"
  2900. msgstr "Добавление принтера {name} ({model}) из вашей учетной записи"
  2901. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:48
  2902. #, python-brace-format
  2903. msgctxt "info:{0} gets replaced by a number of printers"
  2904. msgid "... and {0} other"
  2905. msgid_plural "... and {0} others"
  2906. msgstr[0] "... и еще {0} другой"
  2907. msgstr[1] "... и еще {0} других"
  2908. msgstr[2] "... и еще {0} других"
  2909. #: plugins/UM3NetworkPrinting/src/Messages/NewPrinterDetectedMessage.py:57
  2910. msgctxt "info:status"
  2911. msgid "Printers added from Digital Factory:"
  2912. msgstr "Принтеры, добавленные из Digital Factory:"
  2913. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  2914. #, python-brace-format
  2915. msgctxt "@info:status"
  2916. 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."
  2917. msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы."
  2918. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  2919. msgctxt "@info:title"
  2920. msgid "Not a group host"
  2921. msgstr "Не главный принтер группы"
  2922. #: plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:36
  2923. msgctxt "@action"
  2924. msgid "Configure group"
  2925. msgstr "Настроить группу"
  2926. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:18
  2927. msgctxt "@info:status"
  2928. msgid "You will receive a confirmation via email when the print job is approved"
  2929. msgstr "Вы получите подтверждение по электронной почте после утверждения задания печати"
  2930. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:19
  2931. msgctxt "@info:title"
  2932. msgid "The print job was successfully submitted"
  2933. msgstr "Задание печати успешно отправлено"
  2934. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobAwaitingApprovalMessage.py:22
  2935. msgctxt "@action"
  2936. msgid "Manage print jobs"
  2937. msgstr "Управление заданиями печати"
  2938. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  2939. msgctxt "@info:status"
  2940. msgid "Please wait until the current job has been sent."
  2941. msgstr "Дождитесь окончания отправки текущего задания."
  2942. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  2943. msgctxt "@info:title"
  2944. msgid "Print error"
  2945. msgstr "Ошибка печати"
  2946. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  2947. msgctxt "@info:text"
  2948. msgid "Could not upload the data to the printer."
  2949. msgstr "Облако не залило данные на принтер."
  2950. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  2951. msgctxt "@info:title"
  2952. msgid "Network error"
  2953. msgstr "Ошибка сети"
  2954. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  2955. msgctxt "@info:status"
  2956. msgid "Sending Print Job"
  2957. msgstr "Отправка задания печати"
  2958. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  2959. msgctxt "@info:status"
  2960. msgid "Uploading print job to printer."
  2961. msgstr "Загрузка задания печати в принтер."
  2962. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  2963. msgctxt "@info:status"
  2964. msgid "Print job queue is full. The printer can't accept a new job."
  2965. msgstr "Очередь заданий печати заполнена. Принтер не может принять новое задание."
  2966. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  2967. msgctxt "@info:title"
  2968. msgid "Queue Full"
  2969. msgstr "Очередь заполнена"
  2970. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  2971. msgctxt "@info:status"
  2972. msgid "Print job was successfully sent to the printer."
  2973. msgstr "Задание печати успешно отправлено на принтер."
  2974. #: plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  2975. msgctxt "@info:title"
  2976. msgid "Data Sent"
  2977. msgstr "Данные отправлены"
  2978. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:17
  2979. msgctxt "info:status"
  2980. msgid "This printer is not linked to the Digital Factory:"
  2981. msgid_plural "These printers are not linked to the Digital Factory:"
  2982. msgstr[0] "Это принтер не подключен Digital Factory:"
  2983. msgstr[1] "Эти принтеры не подключены Digital Factory:"
  2984. msgstr[2] "Эти принтеры не подключены Digital Factory:"
  2985. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:29
  2986. #, python-brace-format
  2987. msgctxt "info:status"
  2988. msgid "To establish a connection, please visit the {website_link}"
  2989. msgstr "Чтобы установить подключение, перейдите на сайт {website_link}"
  2990. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:33
  2991. msgctxt "info:status"
  2992. msgid "A cloud connection is not available for a printer"
  2993. msgid_plural "A cloud connection is not available for some printers"
  2994. msgstr[0] "Подключение к облаку недоступно для принтера"
  2995. msgstr[1] "Подключение к облаку недоступно для некоторых принтеров"
  2996. msgstr[2] "Подключение к облаку недоступно для некоторых принтеров"
  2997. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:41
  2998. msgctxt "@action:button"
  2999. msgid "Keep printer configurations"
  3000. msgstr "Сохранить конфигурации принтера"
  3001. #: plugins/UM3NetworkPrinting/src/Messages/RemovedPrintersMessage.py:46
  3002. msgctxt "@action:button"
  3003. msgid "Remove printers"
  3004. msgstr "Удалить принтеры"
  3005. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:62
  3006. msgctxt "@action:button Preceded by 'Ready to'."
  3007. msgid "Print over network"
  3008. msgstr "Печать через сеть"
  3009. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:63
  3010. msgctxt "@properties:tooltip"
  3011. msgid "Print over network"
  3012. msgstr "Печать через сеть"
  3013. #: plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:64
  3014. msgctxt "@info:status"
  3015. msgid "Connected over the network"
  3016. msgstr "Подключен по сети"
  3017. #: plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  3018. msgctxt "@action"
  3019. msgid "Connect via Network"
  3020. msgstr "Подключиться через сеть"
  3021. #: plugins/UM3NetworkPrinting/src/Utils.py:27
  3022. msgctxt "@info:status"
  3023. msgid "tomorrow"
  3024. msgstr "завтра"
  3025. #: plugins/UM3NetworkPrinting/src/Utils.py:30
  3026. msgctxt "@info:status"
  3027. msgid "today"
  3028. msgstr "сегодня"
  3029. #: plugins/USBPrinting/USBPrinterOutputDevice.py:42
  3030. msgctxt "@item:inmenu"
  3031. msgid "USB printing"
  3032. msgstr "Печать через USB"
  3033. #: plugins/USBPrinting/USBPrinterOutputDevice.py:43
  3034. msgctxt "@action:button Preceded by 'Ready to'."
  3035. msgid "Print via USB"
  3036. msgstr "Печатать через USB"
  3037. #: plugins/USBPrinting/USBPrinterOutputDevice.py:44
  3038. msgctxt "@info:tooltip"
  3039. msgid "Print via USB"
  3040. msgstr "Печатать через USB"
  3041. #: plugins/USBPrinting/USBPrinterOutputDevice.py:80
  3042. msgctxt "@info:status"
  3043. msgid "Connected via USB"
  3044. msgstr "Подключено через USB"
  3045. #: plugins/USBPrinting/USBPrinterOutputDevice.py:110
  3046. msgctxt "@label"
  3047. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  3048. msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?"
  3049. #: plugins/USBPrinting/USBPrinterOutputDevice.py:135
  3050. msgctxt "@message"
  3051. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  3052. msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена."
  3053. #: plugins/USBPrinting/USBPrinterOutputDevice.py:136
  3054. msgctxt "@message"
  3055. msgid "Print in Progress"
  3056. msgstr "Идет печать"
  3057. #: plugins/USBPrinting/plugin.json
  3058. msgctxt "description"
  3059. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  3060. msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку."
  3061. #: plugins/USBPrinting/plugin.json
  3062. msgctxt "name"
  3063. msgid "USB printing"
  3064. msgstr "Печать через USB"
  3065. #: plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  3066. msgctxt "@action"
  3067. msgid "Level build plate"
  3068. msgstr "Выравнивание стола"
  3069. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  3070. msgctxt "@title"
  3071. msgid "Build Plate Leveling"
  3072. msgstr "Выравнивание стола"
  3073. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:42
  3074. msgctxt "@label"
  3075. 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."
  3076. msgstr "Сейчас вы можете отрегулировать ваш стол, чтобы быть уверенным в качестве последующей печати. При нажатии на кнопку «Перейти к следующей позиции» сопло перейдёт на другую позиции, которую можно будет отрегулировать."
  3077. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:52
  3078. msgctxt "@label"
  3079. 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."
  3080. msgstr "Для каждой позиции, вставьте кусок бумаги под сопло и отрегулируйте высоту стола. Когда кончик сопла немного прижимает бумагу к столу, значит вы выставили правильную высоту стола."
  3081. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:67
  3082. msgctxt "@action:button"
  3083. msgid "Start Build Plate Leveling"
  3084. msgstr "Начало выравнивания стола"
  3085. #: plugins/UltimakerMachineActions/BedLevelMachineAction.qml:79
  3086. msgctxt "@action:button"
  3087. msgid "Move to Next Position"
  3088. msgstr "Перейти к следующей позиции"
  3089. #: plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  3090. msgctxt "@action"
  3091. msgid "Select upgrades"
  3092. msgstr "Выбор обновлений"
  3093. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  3094. msgctxt "@label"
  3095. msgid "Please select any upgrades made to this UltiMaker Original"
  3096. msgstr "Пожалуйста, укажите любые изменения, внесённые в UltiMaker Original"
  3097. #: plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:39
  3098. msgctxt "@label"
  3099. msgid "Heated Build Plate (official kit or self-built)"
  3100. msgstr "Нагреваемый стол (официальный набор или самодельный)"
  3101. #: plugins/UltimakerMachineActions/plugin.json
  3102. msgctxt "description"
  3103. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  3104. msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)"
  3105. #: plugins/UltimakerMachineActions/plugin.json
  3106. msgctxt "name"
  3107. msgid "UltiMaker machine actions"
  3108. msgstr "Действия с принтерами UltiMaker"
  3109. #: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
  3110. msgctxt "description"
  3111. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3112. msgstr "Обновляет настройки Cura 2.1 до Cura 2.2."
  3113. #: plugins/VersionUpgrade/VersionUpgrade21to22/plugin.json
  3114. msgctxt "name"
  3115. msgid "Version Upgrade 2.1 to 2.2"
  3116. msgstr "Обновление версии 2.1 до 2.2"
  3117. #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
  3118. msgctxt "description"
  3119. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3120. msgstr "Обновляет настройки Cura 2.2 до Cura 2.4."
  3121. #: plugins/VersionUpgrade/VersionUpgrade22to24/plugin.json
  3122. msgctxt "name"
  3123. msgid "Version Upgrade 2.2 to 2.4"
  3124. msgstr "Обновление версии 2.2 до 2.4"
  3125. #: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
  3126. msgctxt "description"
  3127. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3128. msgstr "Обновляет настройки Cura 2.5 до Cura 2.6."
  3129. #: plugins/VersionUpgrade/VersionUpgrade25to26/plugin.json
  3130. msgctxt "name"
  3131. msgid "Version Upgrade 2.5 to 2.6"
  3132. msgstr "Обновление версии 2.5 до 2.6"
  3133. #: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
  3134. msgctxt "description"
  3135. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3136. msgstr "Обновляет настройки Cura 2.6 до Cura 2.7."
  3137. #: plugins/VersionUpgrade/VersionUpgrade26to27/plugin.json
  3138. msgctxt "name"
  3139. msgid "Version Upgrade 2.6 to 2.7"
  3140. msgstr "Обновление версии 2.6 до 2.7"
  3141. #: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
  3142. msgctxt "description"
  3143. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3144. msgstr "Обновляет настройки Cura 2.7 до Cura 3.0."
  3145. #: plugins/VersionUpgrade/VersionUpgrade27to30/plugin.json
  3146. msgctxt "name"
  3147. msgid "Version Upgrade 2.7 to 3.0"
  3148. msgstr "Обновление версии 2.7 до 3.0"
  3149. #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
  3150. msgctxt "description"
  3151. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3152. msgstr "Обновление настроек Cura 3.0 до Cura 3.1."
  3153. #: plugins/VersionUpgrade/VersionUpgrade30to31/plugin.json
  3154. msgctxt "name"
  3155. msgid "Version Upgrade 3.0 to 3.1"
  3156. msgstr "Обновление версии 3.0 до 3.1"
  3157. #: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
  3158. msgctxt "description"
  3159. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3160. msgstr "Обновляет настройки Cura 3.2 до Cura 3.3."
  3161. #: plugins/VersionUpgrade/VersionUpgrade32to33/plugin.json
  3162. msgctxt "name"
  3163. msgid "Version Upgrade 3.2 to 3.3"
  3164. msgstr "Обновление версии 3.2 до 3.3"
  3165. #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
  3166. msgctxt "description"
  3167. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3168. msgstr "Обновляет настройки Cura 3.3 до Cura 3.4."
  3169. #: plugins/VersionUpgrade/VersionUpgrade33to34/plugin.json
  3170. msgctxt "name"
  3171. msgid "Version Upgrade 3.3 to 3.4"
  3172. msgstr "Обновление версии 3.3 до 3.4"
  3173. #: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
  3174. msgctxt "description"
  3175. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3176. msgstr "Обновляет настройки Cura 3.4 до Cura 3.5."
  3177. #: plugins/VersionUpgrade/VersionUpgrade34to35/plugin.json
  3178. msgctxt "name"
  3179. msgid "Version Upgrade 3.4 to 3.5"
  3180. msgstr "Обновление версии 3.4 до 3.5"
  3181. #: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
  3182. msgctxt "description"
  3183. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3184. msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0."
  3185. #: plugins/VersionUpgrade/VersionUpgrade35to40/plugin.json
  3186. msgctxt "name"
  3187. msgid "Version Upgrade 3.5 to 4.0"
  3188. msgstr "Обновление версии 3.5 до 4.0"
  3189. #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
  3190. msgctxt "description"
  3191. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3192. msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1."
  3193. #: plugins/VersionUpgrade/VersionUpgrade40to41/plugin.json
  3194. msgctxt "name"
  3195. msgid "Version Upgrade 4.0 to 4.1"
  3196. msgstr "Обновление версии 4.0 до 4.1"
  3197. #: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json
  3198. msgctxt "description"
  3199. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3200. msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12."
  3201. #: plugins/VersionUpgrade/VersionUpgrade411to412/plugin.json
  3202. msgctxt "name"
  3203. msgid "Version Upgrade 4.11 to 4.12"
  3204. msgstr "Обновление версии 4.11 до 4.12"
  3205. #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json
  3206. msgctxt "description"
  3207. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3208. msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0."
  3209. #: plugins/VersionUpgrade/VersionUpgrade413to50/plugin.json
  3210. msgctxt "name"
  3211. msgid "Version Upgrade 4.13 to 5.0"
  3212. msgstr "Обновление версии 4.13 до 5.0"
  3213. #: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
  3214. msgctxt "description"
  3215. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3216. msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2."
  3217. #: plugins/VersionUpgrade/VersionUpgrade41to42/plugin.json
  3218. msgctxt "name"
  3219. msgid "Version Upgrade 4.1 to 4.2"
  3220. msgstr "Обновление версии 4.1 до 4.2"
  3221. #: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
  3222. msgctxt "description"
  3223. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3224. msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3."
  3225. #: plugins/VersionUpgrade/VersionUpgrade42to43/plugin.json
  3226. msgctxt "name"
  3227. msgid "Version Upgrade 4.2 to 4.3"
  3228. msgstr "Обновление версии 4.2 до 4.3"
  3229. #: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
  3230. msgctxt "description"
  3231. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3232. msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4."
  3233. #: plugins/VersionUpgrade/VersionUpgrade43to44/plugin.json
  3234. msgctxt "name"
  3235. msgid "Version Upgrade 4.3 to 4.4"
  3236. msgstr "Обновление версии 4.3 до 4.4"
  3237. #: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
  3238. msgctxt "description"
  3239. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3240. msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5."
  3241. #: plugins/VersionUpgrade/VersionUpgrade44to45/plugin.json
  3242. msgctxt "name"
  3243. msgid "Version Upgrade 4.4 to 4.5"
  3244. msgstr "Обновление версии 4.4 до 4.5"
  3245. #: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
  3246. msgctxt "description"
  3247. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3248. msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6."
  3249. #: plugins/VersionUpgrade/VersionUpgrade45to46/plugin.json
  3250. msgctxt "name"
  3251. msgid "Version Upgrade 4.5 to 4.6"
  3252. msgstr "Обновление версии 4.5 до 4.6"
  3253. #: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
  3254. msgctxt "description"
  3255. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3256. msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2."
  3257. #: plugins/VersionUpgrade/VersionUpgrade460to462/plugin.json
  3258. msgctxt "name"
  3259. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3260. msgstr "Обновление версии с 4.6.0 до 4.6.2"
  3261. #: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
  3262. msgctxt "description"
  3263. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3264. msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7."
  3265. #: plugins/VersionUpgrade/VersionUpgrade462to47/plugin.json
  3266. msgctxt "name"
  3267. msgid "Version Upgrade 4.6.2 to 4.7"
  3268. msgstr "Обновление версии с 4.6.2 до 4.7"
  3269. #: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
  3270. msgctxt "description"
  3271. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3272. msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8."
  3273. #: plugins/VersionUpgrade/VersionUpgrade47to48/plugin.json
  3274. msgctxt "name"
  3275. msgid "Version Upgrade 4.7 to 4.8"
  3276. msgstr "Обновление версии 4.7 до 4.8"
  3277. #: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
  3278. msgctxt "description"
  3279. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3280. msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9."
  3281. #: plugins/VersionUpgrade/VersionUpgrade48to49/plugin.json
  3282. msgctxt "name"
  3283. msgid "Version Upgrade 4.8 to 4.9"
  3284. msgstr "Обновление версии 4.8 до 4.9"
  3285. #: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
  3286. msgctxt "description"
  3287. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3288. msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10."
  3289. #: plugins/VersionUpgrade/VersionUpgrade49to410/plugin.json
  3290. msgctxt "name"
  3291. msgid "Version Upgrade 4.9 to 4.10"
  3292. msgstr "Обновление версии 4.9 до 4.10"
  3293. #: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json
  3294. msgctxt "description"
  3295. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3296. msgstr "Обновляет настройки Cura 5.2 до Cura 5.3."
  3297. #: plugins/VersionUpgrade/VersionUpgrade52to53/plugin.json
  3298. msgctxt "name"
  3299. msgid "Version Upgrade 5.2 to 5.3"
  3300. msgstr "Обновление версии 5.2 до 5.3"
  3301. #: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json
  3302. msgctxt "description"
  3303. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3304. msgstr ""
  3305. #: plugins/VersionUpgrade/VersionUpgrade53to54/plugin.json
  3306. msgctxt "name"
  3307. msgid "Version Upgrade 5.3 to 5.4"
  3308. msgstr ""
  3309. #: plugins/X3DReader/__init__.py:13
  3310. msgctxt "@item:inlistbox"
  3311. msgid "X3D File"
  3312. msgstr "Файл X3D"
  3313. #: plugins/X3DReader/plugin.json
  3314. msgctxt "description"
  3315. msgid "Provides support for reading X3D files."
  3316. msgstr "Предоставляет поддержку для чтения X3D файлов."
  3317. #: plugins/X3DReader/plugin.json
  3318. msgctxt "name"
  3319. msgid "X3D Reader"
  3320. msgstr "Чтение X3D"
  3321. #: plugins/XRayView/__init__.py:12
  3322. msgctxt "@item:inlistbox"
  3323. msgid "X-Ray view"
  3324. msgstr "Просмотр в рентгене"
  3325. #: plugins/XRayView/plugin.json
  3326. msgctxt "description"
  3327. msgid "Provides the X-Ray view."
  3328. msgstr "Предоставляет рентгеновский вид."
  3329. #: plugins/XRayView/plugin.json
  3330. msgctxt "name"
  3331. msgid "X-Ray View"
  3332. msgstr "Просмотр в рентгене"
  3333. #: plugins/XmlMaterialProfile/plugin.json
  3334. msgctxt "name"
  3335. msgid "Material Profiles"
  3336. msgstr "Профили материалов"
  3337. #: plugins/XmlMaterialProfile/plugin.json
  3338. msgctxt "description"
  3339. msgid "Provides capabilities to read and write XML-based material profiles."
  3340. msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML."
  3341. #: resources/qml/Account/AccountWidget.qml:24
  3342. msgctxt "@action:button"
  3343. msgid "Sign in"
  3344. msgstr "Войти"
  3345. #: resources/qml/Account/GeneralOperations.qml:19
  3346. #: resources/qml/WelcomePages/CloudContent.qml:64
  3347. msgctxt "@label"
  3348. msgid "Sign in to the UltiMaker platform"
  3349. msgstr "Войдите на платформу UltiMaker"
  3350. #: resources/qml/Account/GeneralOperations.qml:39
  3351. msgctxt "@text"
  3352. msgid ""
  3353. "- Add material profiles and plug-ins from the Marketplace\n"
  3354. "- Back-up and sync your material profiles and plug-ins\n"
  3355. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  3356. msgstr ""
  3357. "- Добавляйте настройки материалов и плагины из Marketplace \n"
  3358. " - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n"
  3359. " - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker"
  3360. #: resources/qml/Account/GeneralOperations.qml:58
  3361. msgctxt "@button"
  3362. msgid "Create a free UltiMaker account"
  3363. msgstr "Создайте бесплатную учетную запись UltiMaker"
  3364. #: resources/qml/Account/SyncState.qml:35
  3365. msgctxt "@label"
  3366. msgid "Checking..."
  3367. msgstr "Проверка..."
  3368. #: resources/qml/Account/SyncState.qml:42
  3369. msgctxt "@label"
  3370. msgid "Account synced"
  3371. msgstr "Учетная запись синхронизирована"
  3372. #: resources/qml/Account/SyncState.qml:49
  3373. msgctxt "@label"
  3374. msgid "Something went wrong..."
  3375. msgstr "Что-то пошло не так..."
  3376. #: resources/qml/Account/SyncState.qml:102
  3377. msgctxt "@button"
  3378. msgid "Install pending updates"
  3379. msgstr "Установить ожидающие обновления"
  3380. #: resources/qml/Account/SyncState.qml:123
  3381. msgctxt "@button"
  3382. msgid "Check for account updates"
  3383. msgstr "Проверить наличие обновлений учетной записи"
  3384. #: resources/qml/Account/UserOperations.qml:78
  3385. msgctxt "@label The argument is a timestamp"
  3386. msgid "Last update: %1"
  3387. msgstr "Последнее обновление: %1"
  3388. #: resources/qml/Account/UserOperations.qml:107
  3389. msgctxt "@button"
  3390. msgid "UltiMaker Account"
  3391. msgstr "Учетная запись UltiMaker"
  3392. #: resources/qml/Account/UserOperations.qml:126
  3393. msgctxt "@button"
  3394. msgid "Sign Out"
  3395. msgstr "Выйти"
  3396. #: resources/qml/ActionPanel/OutputProcessWidget.qml:59
  3397. msgctxt "@label"
  3398. msgid "No time estimation available"
  3399. msgstr "Оценка времени недоступна"
  3400. #: resources/qml/ActionPanel/OutputProcessWidget.qml:77
  3401. msgctxt "@label"
  3402. msgid "No cost estimation available"
  3403. msgstr "Оценка расходов недоступна"
  3404. #: resources/qml/ActionPanel/OutputProcessWidget.qml:127
  3405. msgctxt "@button"
  3406. msgid "Preview"
  3407. msgstr "Предварительный просмотр"
  3408. #: resources/qml/ActionPanel/PrintJobInformation.qml:31
  3409. msgctxt "@label"
  3410. msgid "Time estimation"
  3411. msgstr "Оценка времени"
  3412. #: resources/qml/ActionPanel/PrintJobInformation.qml:107
  3413. msgctxt "@label"
  3414. msgid "Material estimation"
  3415. msgstr "Оценка материала"
  3416. #: resources/qml/ActionPanel/PrintJobInformation.qml:156
  3417. msgctxt "@label m for meter"
  3418. msgid "%1m"
  3419. msgstr "%1 м"
  3420. #: resources/qml/ActionPanel/PrintJobInformation.qml:157
  3421. msgctxt "@label g for grams"
  3422. msgid "%1g"
  3423. msgstr "%1 г"
  3424. #: resources/qml/ActionPanel/SliceProcessWidget.qml:54
  3425. msgctxt "@label:PrintjobStatus"
  3426. msgid "Slicing..."
  3427. msgstr "Нарезка на слои..."
  3428. #: resources/qml/ActionPanel/SliceProcessWidget.qml:78
  3429. msgctxt "@label:PrintjobStatus"
  3430. msgid "Unable to slice"
  3431. msgstr "Невозможно нарезать"
  3432. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3433. msgctxt "@button"
  3434. msgid "Processing"
  3435. msgstr "Обработка"
  3436. #: resources/qml/ActionPanel/SliceProcessWidget.qml:114
  3437. msgctxt "@button"
  3438. msgid "Slice"
  3439. msgstr "Нарезка на слои"
  3440. #: resources/qml/ActionPanel/SliceProcessWidget.qml:115
  3441. msgctxt "@label"
  3442. msgid "Start the slicing process"
  3443. msgstr "Запустить нарезку на слои"
  3444. #: resources/qml/ActionPanel/SliceProcessWidget.qml:132
  3445. msgctxt "@button"
  3446. msgid "Cancel"
  3447. msgstr "Отмена"
  3448. #: resources/qml/Actions.qml:81
  3449. msgctxt "@action:inmenu"
  3450. msgid "Show Online Troubleshooting"
  3451. msgstr "Показать сетевое руководство по устранению неполадок"
  3452. #: resources/qml/Actions.qml:88
  3453. msgctxt "@action:inmenu"
  3454. msgid "Toggle Full Screen"
  3455. msgstr "Полный экран"
  3456. #: resources/qml/Actions.qml:96
  3457. msgctxt "@action:inmenu"
  3458. msgid "Exit Full Screen"
  3459. msgstr "Выйти из полноэкранного режима"
  3460. #: resources/qml/Actions.qml:103
  3461. msgctxt "@action:inmenu menubar:edit"
  3462. msgid "&Undo"
  3463. msgstr "Отмена"
  3464. #: resources/qml/Actions.qml:113
  3465. msgctxt "@action:inmenu menubar:edit"
  3466. msgid "&Redo"
  3467. msgstr "Возврат"
  3468. #: resources/qml/Actions.qml:131
  3469. msgctxt "@action:inmenu menubar:file"
  3470. msgid "&Quit"
  3471. msgstr "Выход"
  3472. #: resources/qml/Actions.qml:139
  3473. msgctxt "@action:inmenu menubar:view"
  3474. msgid "3D View"
  3475. msgstr "Трехмерный вид"
  3476. #: resources/qml/Actions.qml:146
  3477. msgctxt "@action:inmenu menubar:view"
  3478. msgid "Front View"
  3479. msgstr "Вид спереди"
  3480. #: resources/qml/Actions.qml:153
  3481. msgctxt "@action:inmenu menubar:view"
  3482. msgid "Top View"
  3483. msgstr "Вид сверху"
  3484. #: resources/qml/Actions.qml:160
  3485. msgctxt "@action:inmenu menubar:view"
  3486. msgid "Bottom View"
  3487. msgstr "Вид снизу"
  3488. #: resources/qml/Actions.qml:167
  3489. msgctxt "@action:inmenu menubar:view"
  3490. msgid "Left Side View"
  3491. msgstr "Вид слева"
  3492. #: resources/qml/Actions.qml:174
  3493. msgctxt "@action:inmenu menubar:view"
  3494. msgid "Right Side View"
  3495. msgstr "Вид справа"
  3496. #: resources/qml/Actions.qml:188
  3497. msgctxt "@action:inmenu"
  3498. msgid "Configure Cura..."
  3499. msgstr "Настроить Cura..."
  3500. #: resources/qml/Actions.qml:197
  3501. msgctxt "@action:inmenu menubar:printer"
  3502. msgid "&Add Printer..."
  3503. msgstr "Добавить принтер..."
  3504. #: resources/qml/Actions.qml:203
  3505. msgctxt "@action:inmenu menubar:printer"
  3506. msgid "Manage Pr&inters..."
  3507. msgstr "Управление принтерами..."
  3508. #: resources/qml/Actions.qml:210
  3509. msgctxt "@action:inmenu"
  3510. msgid "Manage Materials..."
  3511. msgstr "Управление материалами..."
  3512. #: resources/qml/Actions.qml:218
  3513. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  3514. msgid "Add more materials from Marketplace"
  3515. msgstr "Добавить больше материалов из Магазина"
  3516. #: resources/qml/Actions.qml:225
  3517. msgctxt "@action:inmenu menubar:profile"
  3518. msgid "&Update profile with current settings/overrides"
  3519. msgstr "Обновить профиль текущими параметрами"
  3520. #: resources/qml/Actions.qml:233
  3521. msgctxt "@action:inmenu menubar:profile"
  3522. msgid "&Discard current changes"
  3523. msgstr "Сбросить текущие параметры"
  3524. #: resources/qml/Actions.qml:245
  3525. msgctxt "@action:inmenu menubar:profile"
  3526. msgid "&Create profile from current settings/overrides..."
  3527. msgstr "Создать профиль из текущих параметров..."
  3528. #: resources/qml/Actions.qml:251
  3529. msgctxt "@action:inmenu menubar:profile"
  3530. msgid "Manage Profiles..."
  3531. msgstr "Управление профилями..."
  3532. #: resources/qml/Actions.qml:259
  3533. msgctxt "@action:inmenu menubar:help"
  3534. msgid "Show Online &Documentation"
  3535. msgstr "Показать онлайн документацию"
  3536. #: resources/qml/Actions.qml:267
  3537. msgctxt "@action:inmenu menubar:help"
  3538. msgid "Report a &Bug"
  3539. msgstr "Отправить отчёт об ошибке"
  3540. #: resources/qml/Actions.qml:275
  3541. msgctxt "@action:inmenu menubar:help"
  3542. msgid "What's New"
  3543. msgstr "Что нового"
  3544. #: resources/qml/Actions.qml:289
  3545. msgctxt "@action:inmenu menubar:help"
  3546. msgid "About..."
  3547. msgstr "О Cura..."
  3548. #: resources/qml/Actions.qml:296
  3549. msgctxt "@action:inmenu menubar:edit"
  3550. msgid "Delete Selected"
  3551. msgstr "Удалить выбранное"
  3552. #: resources/qml/Actions.qml:306
  3553. msgctxt "@action:inmenu menubar:edit"
  3554. msgid "Center Selected"
  3555. msgstr "Центрировать выбранное"
  3556. #: resources/qml/Actions.qml:315
  3557. msgctxt "@action:inmenu menubar:edit"
  3558. msgid "Multiply Selected"
  3559. msgstr "Размножить выбранное"
  3560. #: resources/qml/Actions.qml:324
  3561. msgctxt "@action:inmenu"
  3562. msgid "Delete Model"
  3563. msgstr "Удалить модель"
  3564. #: resources/qml/Actions.qml:332
  3565. msgctxt "@action:inmenu"
  3566. msgid "Ce&nter Model on Platform"
  3567. msgstr "Поместить модель по центру"
  3568. #: resources/qml/Actions.qml:338
  3569. msgctxt "@action:inmenu menubar:edit"
  3570. msgid "&Group Models"
  3571. msgstr "Сгруппировать модели"
  3572. #: resources/qml/Actions.qml:358
  3573. msgctxt "@action:inmenu menubar:edit"
  3574. msgid "Ungroup Models"
  3575. msgstr "Разгруппировать модели"
  3576. #: resources/qml/Actions.qml:368
  3577. msgctxt "@action:inmenu menubar:edit"
  3578. msgid "&Merge Models"
  3579. msgstr "Объединить модели"
  3580. #: resources/qml/Actions.qml:378
  3581. msgctxt "@action:inmenu"
  3582. msgid "&Multiply Model..."
  3583. msgstr "Дублировать модель..."
  3584. #: resources/qml/Actions.qml:385
  3585. msgctxt "@action:inmenu menubar:edit"
  3586. msgid "Select All Models"
  3587. msgstr "Выбрать все модели"
  3588. #: resources/qml/Actions.qml:395
  3589. msgctxt "@action:inmenu menubar:edit"
  3590. msgid "Clear Build Plate"
  3591. msgstr "Очистить стол"
  3592. #: resources/qml/Actions.qml:405
  3593. msgctxt "@action:inmenu menubar:file"
  3594. msgid "Reload All Models"
  3595. msgstr "Перезагрузить все модели"
  3596. #: resources/qml/Actions.qml:414
  3597. msgctxt "@action:inmenu menubar:edit"
  3598. msgid "Arrange All Models"
  3599. msgstr "Выровнять все модели"
  3600. #: resources/qml/Actions.qml:422
  3601. msgctxt "@action:inmenu menubar:edit"
  3602. msgid "Arrange Selection"
  3603. msgstr "Выровнять выбранные"
  3604. #: resources/qml/Actions.qml:429
  3605. msgctxt "@action:inmenu menubar:edit"
  3606. msgid "Reset All Model Positions"
  3607. msgstr "Сбросить позиции всех моделей"
  3608. #: resources/qml/Actions.qml:436
  3609. msgctxt "@action:inmenu menubar:edit"
  3610. msgid "Reset All Model Transformations"
  3611. msgstr "Сбросить преобразования всех моделей"
  3612. #: resources/qml/Actions.qml:445
  3613. msgctxt "@action:inmenu menubar:file"
  3614. msgid "&Open File(s)..."
  3615. msgstr "Открыть файл(ы)..."
  3616. #: resources/qml/Actions.qml:455
  3617. msgctxt "@action:inmenu menubar:file"
  3618. msgid "&New Project..."
  3619. msgstr "Новый проект..."
  3620. #: resources/qml/Actions.qml:462
  3621. msgctxt "@action:inmenu menubar:help"
  3622. msgid "Show Configuration Folder"
  3623. msgstr "Показать конфигурационный каталог"
  3624. #: resources/qml/Actions.qml:469 resources/qml/Settings/SettingView.qml:476
  3625. msgctxt "@action:menu"
  3626. msgid "Configure setting visibility..."
  3627. msgstr "Видимость параметров..."
  3628. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:32
  3629. msgctxt "@label:button"
  3630. msgid "My printers"
  3631. msgstr "Мои принтеры"
  3632. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:34
  3633. msgctxt "@tooltip:button"
  3634. msgid "Monitor printers in Ultimaker Digital Factory."
  3635. msgstr "Следите за своими принтерами в Ultimaker Digital Factory."
  3636. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:41
  3637. msgctxt "@tooltip:button"
  3638. msgid "Create print projects in Digital Library."
  3639. msgstr "Создавайте проекты печати в электронной библиотеке."
  3640. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:46
  3641. msgctxt "@label:button"
  3642. msgid "Print jobs"
  3643. msgstr "Задания печати"
  3644. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:48
  3645. msgctxt "@tooltip:button"
  3646. msgid "Monitor print jobs and reprint from your print history."
  3647. msgstr "Отслеживайте задания печати и запускайте их повторно из истории печати."
  3648. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:55
  3649. msgctxt "@tooltip:button"
  3650. msgid "Extend UltiMaker Cura with plugins and material profiles."
  3651. msgstr "Расширяйте возможности UltiMaker Cura за счет плагинов и профилей материалов."
  3652. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:62
  3653. msgctxt "@tooltip:button"
  3654. msgid "Become a 3D printing expert with UltiMaker e-learning."
  3655. msgstr "Пройдите электронное обучение UltiMaker и станьте экспертом в области 3D-печати."
  3656. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:67
  3657. msgctxt "@label:button"
  3658. msgid "UltiMaker support"
  3659. msgstr "Поддержка UltiMaker"
  3660. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:69
  3661. msgctxt "@tooltip:button"
  3662. msgid "Learn how to get started with UltiMaker Cura."
  3663. msgstr "Узнайте, как начать работу с UltiMaker Cura."
  3664. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:74
  3665. msgctxt "@label:button"
  3666. msgid "Ask a question"
  3667. msgstr "Задать вопрос"
  3668. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:76
  3669. msgctxt "@tooltip:button"
  3670. msgid "Consult the UltiMaker Community."
  3671. msgstr "Посоветуйтесь со специалистами в сообществе UltiMaker."
  3672. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:81
  3673. msgctxt "@label:button"
  3674. msgid "Report a bug"
  3675. msgstr "Сообщить об ошибке"
  3676. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:83
  3677. msgctxt "@tooltip:button"
  3678. msgid "Let developers know that something is going wrong."
  3679. msgstr "Сообщите разработчикам о неполадках."
  3680. #: resources/qml/ApplicationSwitcher/ApplicationSwitcherPopup.qml:90
  3681. msgctxt "@tooltip:button"
  3682. msgid "Visit the UltiMaker website."
  3683. msgstr "Посетите веб-сайт UltiMaker."
  3684. #: resources/qml/ColorDialog.qml:110
  3685. msgctxt "@label"
  3686. msgid "Hex"
  3687. msgstr "Шестигранный"
  3688. #: resources/qml/Cura.qml:256
  3689. msgctxt "@label"
  3690. msgid "This package will be installed after restarting."
  3691. msgstr "Этот пакет будет установлен после перезапуска."
  3692. #: resources/qml/Cura.qml:467 resources/qml/Preferences/GeneralPage.qml:14
  3693. msgctxt "@title:tab"
  3694. msgid "General"
  3695. msgstr "Общее"
  3696. #: resources/qml/Cura.qml:470
  3697. msgctxt "@title:tab"
  3698. msgid "Settings"
  3699. msgstr "Параметры"
  3700. #: resources/qml/Cura.qml:472 resources/qml/Preferences/MachinesPage.qml:17
  3701. msgctxt "@title:tab"
  3702. msgid "Printers"
  3703. msgstr "Принтеры"
  3704. #: resources/qml/Cura.qml:474
  3705. #: resources/qml/Preferences/Materials/MaterialsPage.qml:70
  3706. msgctxt "@title:tab"
  3707. msgid "Materials"
  3708. msgstr "Материалы"
  3709. #: resources/qml/Cura.qml:476 resources/qml/Preferences/ProfilesPage.qml:57
  3710. msgctxt "@title:tab"
  3711. msgid "Profiles"
  3712. msgstr "Профили"
  3713. #: resources/qml/Cura.qml:581
  3714. msgctxt "@title:window %1 is the application name"
  3715. msgid "Closing %1"
  3716. msgstr "Закрытие %1"
  3717. #: resources/qml/Cura.qml:582 resources/qml/Cura.qml:591
  3718. msgctxt "@label %1 is the application name"
  3719. msgid "Are you sure you want to exit %1?"
  3720. msgstr "Вы уверены, что хотите выйти из %1?"
  3721. #: resources/qml/Cura.qml:629
  3722. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:16
  3723. msgctxt "@title:window"
  3724. msgid "Open file(s)"
  3725. msgstr "Открыть файл(ы)"
  3726. #: resources/qml/Cura.qml:734
  3727. msgctxt "@window:title"
  3728. msgid "Install Package"
  3729. msgstr "Установить пакет"
  3730. #: resources/qml/Cura.qml:741
  3731. msgctxt "@title:window"
  3732. msgid "Open File(s)"
  3733. msgstr "Открыть файл(ы)"
  3734. #: resources/qml/Cura.qml:743
  3735. msgctxt "@text:window"
  3736. 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."
  3737. msgstr "Среди выбранных файлов мы нашли несколько файлов с G-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста."
  3738. #: resources/qml/Cura.qml:828
  3739. msgctxt "@title:window"
  3740. msgid "Add Printer"
  3741. msgstr "Добавление принтера"
  3742. #: resources/qml/Cura.qml:836
  3743. msgctxt "@title:window"
  3744. msgid "What's New"
  3745. msgstr "Что нового"
  3746. #: resources/qml/Cura.qml:890
  3747. msgctxt "@title:window"
  3748. msgid "Save Custom Profile"
  3749. msgstr ""
  3750. #: resources/qml/Cura.qml:891
  3751. msgctxt "@textfield:placeholder"
  3752. msgid "New Custom Profile"
  3753. msgstr ""
  3754. #: resources/qml/Cura.qml:892
  3755. msgctxt "@info"
  3756. msgid "Custom profile name:"
  3757. msgstr ""
  3758. #: resources/qml/Cura.qml:909
  3759. msgctxt "@label %i will be replaced with a profile name"
  3760. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  3761. msgstr "<b>В пользовательском профиле будут сохранены только измененные пользователем настройки.</b><br/>Для материалов, поддерживающих новый пользовательский профиль, этот профиль будет наследовать свойства от <b>%1</b>."
  3762. #: resources/qml/Cura.qml:917
  3763. msgctxt "@action:button"
  3764. msgid "Learn more about Cura print profiles"
  3765. msgstr "Подробнее о профилях печати Cura"
  3766. #: resources/qml/Cura.qml:926
  3767. msgctxt "@button"
  3768. msgid "Save new profile"
  3769. msgstr ""
  3770. #: resources/qml/Dialogs/AboutDialog.qml:15
  3771. msgctxt "@title:window The argument is the application name."
  3772. msgid "About %1"
  3773. msgstr "О программе %1"
  3774. #: resources/qml/Dialogs/AboutDialog.qml:59
  3775. msgctxt "@label"
  3776. msgid "version: %1"
  3777. msgstr "версия: %1"
  3778. #: resources/qml/Dialogs/AboutDialog.qml:74
  3779. msgctxt "@label"
  3780. msgid "End-to-end solution for fused filament 3D printing."
  3781. msgstr "Полное решение для 3D печати методом наплавления материала."
  3782. #: resources/qml/Dialogs/AboutDialog.qml:87
  3783. msgctxt "@info:credit"
  3784. msgid ""
  3785. "Cura is developed by UltiMaker in cooperation with the community.\n"
  3786. "Cura proudly uses the following open source projects:"
  3787. msgstr ""
  3788. "Cura разработана компанией UltiMaker B.V. совместно с сообществом.\n"
  3789. "Cura использует следующие проекты с открытым исходным кодом:"
  3790. #: resources/qml/Dialogs/AboutDialog.qml:138
  3791. msgctxt "@label Description for application component"
  3792. msgid "Graphical user interface"
  3793. msgstr "Графический интерфейс пользователя"
  3794. #: resources/qml/Dialogs/AboutDialog.qml:139
  3795. msgctxt "@label Description for application component"
  3796. msgid "Application framework"
  3797. msgstr "Фреймворк приложения"
  3798. #: resources/qml/Dialogs/AboutDialog.qml:140
  3799. msgctxt "@label Description for application component"
  3800. msgid "G-code generator"
  3801. msgstr "Генератор G-кода"
  3802. #: resources/qml/Dialogs/AboutDialog.qml:141
  3803. msgctxt "@label Description for application component"
  3804. msgid "Interprocess communication library"
  3805. msgstr "Библиотека межпроцессного взаимодействия"
  3806. #: resources/qml/Dialogs/AboutDialog.qml:142
  3807. msgctxt "@label Description for application component"
  3808. msgid "Python bindings for libnest2d"
  3809. msgstr "Интерфейс Python для libnest2d"
  3810. #: resources/qml/Dialogs/AboutDialog.qml:143
  3811. msgctxt "@label Description for application component"
  3812. msgid "Polygon packing library, developed by Prusa Research"
  3813. msgstr "Библиотека упаковки полигонов, разработанная Prusa Research"
  3814. #: resources/qml/Dialogs/AboutDialog.qml:144
  3815. msgctxt "@label Description for application component"
  3816. msgid "Support library for handling 3MF files"
  3817. msgstr "Вспомогательная библиотека для работы с 3MF файлами"
  3818. #: resources/qml/Dialogs/AboutDialog.qml:145
  3819. msgctxt "@label Description for application component"
  3820. msgid "Support library for file metadata and streaming"
  3821. msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи"
  3822. #: resources/qml/Dialogs/AboutDialog.qml:148
  3823. msgctxt "@label Description for application dependency"
  3824. msgid "Programming language"
  3825. msgstr "Язык программирования"
  3826. #: resources/qml/Dialogs/AboutDialog.qml:149
  3827. msgctxt "@label Description for application dependency"
  3828. msgid "GUI framework"
  3829. msgstr "Фреймворк GUI"
  3830. #: resources/qml/Dialogs/AboutDialog.qml:150
  3831. msgctxt "@label Description for application dependency"
  3832. msgid "GUI framework bindings"
  3833. msgstr "Фреймворк GUI, интерфейс"
  3834. #: resources/qml/Dialogs/AboutDialog.qml:151
  3835. msgctxt "@label Description for application dependency"
  3836. msgid "C/C++ Binding library"
  3837. msgstr "C/C++ библиотека интерфейса"
  3838. #: resources/qml/Dialogs/AboutDialog.qml:152
  3839. msgctxt "@label Description for application dependency"
  3840. msgid "Data interchange format"
  3841. msgstr "Формат обмена данными"
  3842. #: resources/qml/Dialogs/AboutDialog.qml:153
  3843. msgctxt "@label"
  3844. msgid "Font"
  3845. msgstr "Шрифт"
  3846. #: resources/qml/Dialogs/AboutDialog.qml:156
  3847. msgctxt "@label Description for application dependency"
  3848. msgid "Polygon clipping library"
  3849. msgstr "Библиотека обрезки полигонов"
  3850. #: resources/qml/Dialogs/AboutDialog.qml:157
  3851. msgctxt "@label Description for application dependency"
  3852. msgid "JSON parser"
  3853. msgstr "Парсер JSON"
  3854. #: resources/qml/Dialogs/AboutDialog.qml:158
  3855. msgctxt "@label Description for application dependency"
  3856. msgid "Utility functions, including an image loader"
  3857. msgstr "Вспомогательные функции, включая загрузчик изображений"
  3858. #: resources/qml/Dialogs/AboutDialog.qml:159
  3859. msgctxt "@label Description for application dependency"
  3860. msgid "Utility library, including Voronoi generation"
  3861. msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного"
  3862. #: resources/qml/Dialogs/AboutDialog.qml:162
  3863. #: resources/qml/Dialogs/AboutDialog.qml:163
  3864. msgctxt "@label Description for application dependency"
  3865. msgid "Root Certificates for validating SSL trustworthiness"
  3866. msgstr "Корневые сертификаты для проверки надежности SSL"
  3867. #: resources/qml/Dialogs/AboutDialog.qml:164
  3868. msgctxt "@label Description for application dependency"
  3869. msgid "Compatibility between Python 2 and 3"
  3870. msgstr "Совместимость между Python 2 и 3"
  3871. #: resources/qml/Dialogs/AboutDialog.qml:165
  3872. msgctxt "@label Description for application dependency"
  3873. msgid "Support library for system keyring access"
  3874. msgstr "Вспомогательная библиотека для доступа к набору ключей системы"
  3875. #: resources/qml/Dialogs/AboutDialog.qml:166
  3876. msgctxt "@label Description for application dependency"
  3877. msgid "Support library for faster math"
  3878. msgstr "Вспомогательная библиотека для быстрых расчётов"
  3879. #: resources/qml/Dialogs/AboutDialog.qml:167
  3880. msgctxt "@label Description for application dependency"
  3881. msgid "Support library for handling STL files"
  3882. msgstr "Вспомогательная библиотека для работы с STL файлами"
  3883. #: resources/qml/Dialogs/AboutDialog.qml:168
  3884. msgctxt "@label Description for application dependency"
  3885. msgid "Python bindings for Clipper"
  3886. msgstr "Привязки Python для Clipper"
  3887. #: resources/qml/Dialogs/AboutDialog.qml:169
  3888. msgctxt "@label Description for application dependency"
  3889. msgid "Serial communication library"
  3890. msgstr "Библиотека последовательного интерфейса"
  3891. #: resources/qml/Dialogs/AboutDialog.qml:170
  3892. msgctxt "@label Description for application dependency"
  3893. msgid "Support library for scientific computing"
  3894. msgstr "Вспомогательная библиотека для научных вычислений"
  3895. #: resources/qml/Dialogs/AboutDialog.qml:171
  3896. msgctxt "@Label Description for application dependency"
  3897. msgid "Python Error tracking library"
  3898. msgstr "Библиотека отслеживания ошибок Python"
  3899. #: resources/qml/Dialogs/AboutDialog.qml:172
  3900. msgctxt "@label Description for application dependency"
  3901. msgid "Support library for handling triangular meshes"
  3902. msgstr "Вспомогательная библиотека для работы с треугольными сетками"
  3903. #: resources/qml/Dialogs/AboutDialog.qml:173
  3904. msgctxt "@label Description for application dependency"
  3905. msgid "ZeroConf discovery library"
  3906. msgstr "Библиотека ZeroConf"
  3907. #: resources/qml/Dialogs/AboutDialog.qml:176
  3908. msgctxt "@label Description for development tool"
  3909. msgid "Universal build system configuration"
  3910. msgstr "Конфигурация универсальной системы сборки"
  3911. #: resources/qml/Dialogs/AboutDialog.qml:177
  3912. msgctxt "@label Description for development tool"
  3913. msgid "Dependency and package manager"
  3914. msgstr "Менеджер зависимостей и пакетов"
  3915. #: resources/qml/Dialogs/AboutDialog.qml:178
  3916. msgctxt "@label Description for development tool"
  3917. msgid "Packaging Python-applications"
  3918. msgstr "Упаковка Python-приложений"
  3919. #: resources/qml/Dialogs/AboutDialog.qml:179
  3920. msgctxt "@label Description for development tool"
  3921. msgid "Linux cross-distribution application deployment"
  3922. msgstr "Развертывание приложений для различных дистрибутивов Linux"
  3923. #: resources/qml/Dialogs/AboutDialog.qml:180
  3924. msgctxt "@label Description for development tool"
  3925. msgid "Generating Windows installers"
  3926. msgstr "Генерация установщиков для Windows"
  3927. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:17
  3928. msgctxt "@title:window"
  3929. msgid "Open project file"
  3930. msgstr "Открыть файл проекта"
  3931. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:84
  3932. msgctxt "@text:window"
  3933. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3934. msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?"
  3935. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:91
  3936. msgctxt "@text:window"
  3937. msgid "Remember my choice"
  3938. msgstr "Запомнить мой выбор"
  3939. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:105
  3940. msgctxt "@action:button"
  3941. msgid "Open as project"
  3942. msgstr "Открыть как проект"
  3943. #: resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:110
  3944. msgctxt "@action:button"
  3945. msgid "Import models"
  3946. msgstr "Импортировать модели"
  3947. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:17
  3948. msgctxt "@title:window"
  3949. msgid "Select Printer"
  3950. msgstr "Выберите принтер"
  3951. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:54
  3952. msgctxt "@title:label"
  3953. msgid "Compatible Printers"
  3954. msgstr "Совместимые принтеры"
  3955. #: resources/qml/Dialogs/ChoosePrinterDialog.qml:110
  3956. msgctxt "@description"
  3957. msgid "No compatible printers, that are currently online, were found."
  3958. msgstr "Нет совместимых принтеров, которые в настоящее время находятся в сети."
  3959. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:13
  3960. msgctxt "@title:window"
  3961. msgid "Discard or Keep changes"
  3962. msgstr "Сбросить или сохранить изменения"
  3963. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:64
  3964. msgctxt "@text:window, %1 is a profile name"
  3965. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  3966. msgstr ""
  3967. "Вы изменили некоторые настройки профиля.\n"
  3968. "Сохранить измененные настройки после переключения профилей?\n"
  3969. "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"."
  3970. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:90
  3971. msgctxt "@title:column"
  3972. msgid "Profile settings"
  3973. msgstr "Параметры профиля"
  3974. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:92
  3975. msgctxt "@title:column"
  3976. msgid "Current changes"
  3977. msgstr "Текущие изменения"
  3978. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:123
  3979. #: resources/qml/Preferences/GeneralPage.qml:820
  3980. msgctxt "@option:discardOrKeep"
  3981. msgid "Always ask me this"
  3982. msgstr "Всегда спрашивать меня"
  3983. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:124
  3984. msgctxt "@option:discardOrKeep"
  3985. msgid "Discard and never ask again"
  3986. msgstr "Сбросить и никогда больше не спрашивать"
  3987. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  3988. msgctxt "@option:discardOrKeep"
  3989. msgid "Keep and never ask again"
  3990. msgstr "Сохранить и никогда больше не спрашивать"
  3991. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:157
  3992. msgctxt "@action:button"
  3993. msgid "Discard changes"
  3994. msgstr "Отменить изменения"
  3995. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:164
  3996. msgctxt "@action:button"
  3997. msgid "Keep changes"
  3998. msgstr "Сохранить изменения"
  3999. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:171
  4000. msgctxt "@action:button"
  4001. msgid "Save as new custom profile"
  4002. msgstr ""
  4003. #: resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:178
  4004. msgctxt "@action:button"
  4005. msgid "Save changes"
  4006. msgstr ""
  4007. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:47
  4008. msgctxt "@text:window"
  4009. 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?"
  4010. msgstr "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?"
  4011. #: resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:64
  4012. msgctxt "@action:button"
  4013. msgid "Import all as models"
  4014. msgstr "Импортировать всё как модели"
  4015. #: resources/qml/Dialogs/RenameDialog.qml:23
  4016. msgctxt "@title:window"
  4017. msgid "Rename"
  4018. msgstr "Переименовать"
  4019. #: resources/qml/Dialogs/RenameDialog.qml:24
  4020. msgctxt "@info"
  4021. msgid "Please provide a new name."
  4022. msgstr "Укажите новое имя."
  4023. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:14
  4024. msgctxt "@title:window"
  4025. msgid "Save Project"
  4026. msgstr "Сохранить проект"
  4027. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:177
  4028. msgctxt "@action:label"
  4029. msgid "Extruder %1"
  4030. msgstr "Экструдер %1"
  4031. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:193
  4032. msgctxt "@action:label"
  4033. msgid "%1 & material"
  4034. msgstr "%1 и материал"
  4035. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:195
  4036. msgctxt "@action:label"
  4037. msgid "Material"
  4038. msgstr "Материал"
  4039. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:284
  4040. msgctxt "@action:label"
  4041. msgid "Don't show project summary on save again"
  4042. msgstr "Больше не показывать сводку по проекту"
  4043. #: resources/qml/Dialogs/WorkspaceSummaryDialog.qml:298
  4044. msgctxt "@action:button"
  4045. msgid "Save"
  4046. msgstr "Сохранить"
  4047. #: resources/qml/JobSpecs.qml:93
  4048. msgctxt "@text Print job name"
  4049. msgid "Untitled"
  4050. msgstr "Без имени"
  4051. #: resources/qml/MainWindow/ApplicationMenu.qml:63
  4052. #: resources/qml/Menus/SettingsMenu.qml:13
  4053. msgctxt "@title:menu menubar:toplevel"
  4054. msgid "&Settings"
  4055. msgstr "&Параметры"
  4056. #: resources/qml/MainWindow/ApplicationMenu.qml:87
  4057. msgctxt "@title:window"
  4058. msgid "New project"
  4059. msgstr "Новый проект"
  4060. #: resources/qml/MainWindow/ApplicationMenu.qml:88
  4061. msgctxt "@info:question"
  4062. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4063. msgstr "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки."
  4064. #: resources/qml/MainWindow/MainWindowHeader.qml:135
  4065. msgctxt "@action:button"
  4066. msgid "Marketplace"
  4067. msgstr "Магазин"
  4068. #: resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  4069. msgctxt "@header"
  4070. msgid "Configurations"
  4071. msgstr "Конфигурации"
  4072. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  4073. msgctxt "@label"
  4074. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  4075. msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала."
  4076. #: resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  4077. msgctxt "@label"
  4078. msgid "Marketplace"
  4079. msgstr "Магазин"
  4080. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:52
  4081. msgctxt "@label"
  4082. msgid "Loading available configurations from the printer..."
  4083. msgstr "Загрузка доступных конфигураций из принтера..."
  4084. #: resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:53
  4085. msgctxt "@label"
  4086. msgid "The configurations are not available because the printer is disconnected."
  4087. msgstr "Конфигурации недоступны, поскольку принтер отключен."
  4088. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:106
  4089. msgctxt "@tooltip"
  4090. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  4091. msgstr "Конфигурация этого экструдера не разрешается и запрещает нарезку на слои."
  4092. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:110
  4093. msgctxt "@tooltip"
  4094. msgid "There are no profiles matching the configuration of this extruder."
  4095. msgstr "Нет профилей, соответствующих конфигурации этого экструдера."
  4096. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:250
  4097. msgctxt "@label"
  4098. msgid "Select configuration"
  4099. msgstr "Выберите конфигурации"
  4100. #: resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:358
  4101. msgctxt "@label"
  4102. msgid "Configurations"
  4103. msgstr "Конфигурации"
  4104. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:27
  4105. msgctxt "@header"
  4106. msgid "Custom"
  4107. msgstr "Свое"
  4108. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:173
  4109. msgctxt "@label"
  4110. msgid "Enabled"
  4111. msgstr "Включено"
  4112. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:222
  4113. msgctxt "@label"
  4114. msgid "Material"
  4115. msgstr "Материал"
  4116. #: resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:348
  4117. msgctxt "@label"
  4118. msgid "Use glue for better adhesion with this material combination."
  4119. msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов."
  4120. #: resources/qml/Menus/ContextMenu.qml:29
  4121. msgctxt "@label"
  4122. msgid "Print Selected Model With:"
  4123. msgid_plural "Print Selected Models With:"
  4124. msgstr[0] "Печать выбранной модели:"
  4125. msgstr[1] "Печать выбранных моделей:"
  4126. msgstr[2] "Печать выбранных моделей:"
  4127. #: resources/qml/Menus/ContextMenu.qml:92
  4128. msgctxt "@title:window"
  4129. msgid "Multiply Selected Model"
  4130. msgid_plural "Multiply Selected Models"
  4131. msgstr[0] "Размножить выбранную модель"
  4132. msgstr[1] "Размножить выбранные модели"
  4133. msgstr[2] "Размножить выбранные модели"
  4134. #: resources/qml/Menus/ContextMenu.qml:123
  4135. msgctxt "@label"
  4136. msgid "Number of Copies"
  4137. msgstr "Количество копий"
  4138. #: resources/qml/Menus/EditMenu.qml:12
  4139. msgctxt "@title:menu menubar:toplevel"
  4140. msgid "&Edit"
  4141. msgstr "Правка"
  4142. #: resources/qml/Menus/ExtensionMenu.qml:13
  4143. msgctxt "@title:menu menubar:toplevel"
  4144. msgid "E&xtensions"
  4145. msgstr "Расширения"
  4146. #: resources/qml/Menus/FileMenu.qml:13
  4147. msgctxt "@title:menu menubar:toplevel"
  4148. msgid "&File"
  4149. msgstr "Файл"
  4150. #: resources/qml/Menus/FileMenu.qml:45
  4151. msgctxt "@title:menu menubar:file"
  4152. msgid "&Save Project..."
  4153. msgstr "&Сохранить проект..."
  4154. #: resources/qml/Menus/FileMenu.qml:78
  4155. msgctxt "@title:menu menubar:file"
  4156. msgid "&Export..."
  4157. msgstr "&Экспорт..."
  4158. #: resources/qml/Menus/FileMenu.qml:89
  4159. msgctxt "@action:inmenu menubar:file"
  4160. msgid "Export Selection..."
  4161. msgstr "Экспорт выбранного..."
  4162. #: resources/qml/Menus/HelpMenu.qml:14
  4163. msgctxt "@title:menu menubar:toplevel"
  4164. msgid "&Help"
  4165. msgstr "Справка"
  4166. #: resources/qml/Menus/MaterialMenu.qml:13
  4167. msgctxt "@label:category menu label"
  4168. msgid "Material"
  4169. msgstr "Материал"
  4170. #: resources/qml/Menus/MaterialMenu.qml:53
  4171. msgctxt "@label:category menu label"
  4172. msgid "Favorites"
  4173. msgstr "Избранные"
  4174. #: resources/qml/Menus/MaterialMenu.qml:78
  4175. msgctxt "@label:category menu label"
  4176. msgid "Generic"
  4177. msgstr "Универсальные"
  4178. #: resources/qml/Menus/OpenFilesMenu.qml:15
  4179. msgctxt "@title:menu menubar:file"
  4180. msgid "Open File(s)..."
  4181. msgstr "Открыть файл(ы)..."
  4182. #: resources/qml/Menus/PreferencesMenu.qml:21
  4183. msgctxt "@title:menu menubar:toplevel"
  4184. msgid "P&references"
  4185. msgstr "Настройки"
  4186. #: resources/qml/Menus/PrinterMenu.qml:13
  4187. msgctxt "@title:menu menubar:settings"
  4188. msgid "&Printer"
  4189. msgstr "Принтер"
  4190. #: resources/qml/Menus/PrinterMenu.qml:17
  4191. msgctxt "@label:category menu label"
  4192. msgid "Network enabled printers"
  4193. msgstr "Подключенные к сети принтеры"
  4194. #: resources/qml/Menus/PrinterMenu.qml:50
  4195. msgctxt "@label:category menu label"
  4196. msgid "Local printers"
  4197. msgstr "Локальные принтеры"
  4198. #: resources/qml/Menus/RecentFilesMenu.qml:15
  4199. msgctxt "@title:menu menubar:file"
  4200. msgid "Open &Recent"
  4201. msgstr "Открыть недавние"
  4202. #: resources/qml/Menus/SaveProjectMenu.qml:15
  4203. msgctxt "@title:menu menubar:file"
  4204. msgid "Save Project..."
  4205. msgstr "Сохранить проект..."
  4206. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:16
  4207. msgctxt "@action:inmenu"
  4208. msgid "Visible Settings"
  4209. msgstr "Видимые параметры"
  4210. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  4211. msgctxt "@action:inmenu"
  4212. msgid "Collapse All Categories"
  4213. msgstr "Свернуть все категории"
  4214. #: resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  4215. msgctxt "@action:inmenu"
  4216. msgid "Manage Setting Visibility..."
  4217. msgstr "Управление видимостью настроек..."
  4218. #: resources/qml/Menus/SettingsMenu.qml:34
  4219. msgctxt "@title:menu"
  4220. msgid "&Material"
  4221. msgstr "Материал"
  4222. #: resources/qml/Menus/SettingsMenu.qml:49
  4223. msgctxt "@action:inmenu"
  4224. msgid "Set as Active Extruder"
  4225. msgstr "Установить как активный экструдер"
  4226. #: resources/qml/Menus/SettingsMenu.qml:55
  4227. msgctxt "@action:inmenu"
  4228. msgid "Enable Extruder"
  4229. msgstr "Включить экструдер"
  4230. #: resources/qml/Menus/SettingsMenu.qml:63
  4231. msgctxt "@action:inmenu"
  4232. msgid "Disable Extruder"
  4233. msgstr "Отключить экструдер"
  4234. #: resources/qml/Menus/ViewMenu.qml:13
  4235. msgctxt "@title:menu menubar:toplevel"
  4236. msgid "&View"
  4237. msgstr "Вид"
  4238. #: resources/qml/Menus/ViewMenu.qml:17
  4239. msgctxt "@action:inmenu menubar:view"
  4240. msgid "&Camera position"
  4241. msgstr "Положение камеры"
  4242. #: resources/qml/Menus/ViewMenu.qml:30
  4243. msgctxt "@action:inmenu menubar:view"
  4244. msgid "Camera view"
  4245. msgstr "Вид камеры"
  4246. #: resources/qml/Menus/ViewMenu.qml:48
  4247. msgctxt "@action:inmenu menubar:view"
  4248. msgid "Perspective"
  4249. msgstr "Перспективная"
  4250. #: resources/qml/Menus/ViewMenu.qml:59
  4251. msgctxt "@action:inmenu menubar:view"
  4252. msgid "Orthographic"
  4253. msgstr "Ортографическая"
  4254. #: resources/qml/MonitorButton.qml:115
  4255. msgctxt "@label:MonitorStatus"
  4256. msgid "Not connected to a printer"
  4257. msgstr "Не подключен к принтеру"
  4258. #: resources/qml/MonitorButton.qml:119
  4259. msgctxt "@label:MonitorStatus"
  4260. msgid "Printer does not accept commands"
  4261. msgstr "Принтер не принимает команды"
  4262. #: resources/qml/MonitorButton.qml:129
  4263. msgctxt "@label:MonitorStatus"
  4264. msgid "In maintenance. Please check the printer"
  4265. msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер"
  4266. #: resources/qml/MonitorButton.qml:140
  4267. msgctxt "@label:MonitorStatus"
  4268. msgid "Lost connection with the printer"
  4269. msgstr "Потеряно соединение с принтером"
  4270. #: resources/qml/MonitorButton.qml:142
  4271. msgctxt "@label:MonitorStatus"
  4272. msgid "Printing..."
  4273. msgstr "Печать..."
  4274. #: resources/qml/MonitorButton.qml:145
  4275. msgctxt "@label:MonitorStatus"
  4276. msgid "Paused"
  4277. msgstr "Приостановлен"
  4278. #: resources/qml/MonitorButton.qml:148
  4279. msgctxt "@label:MonitorStatus"
  4280. msgid "Preparing..."
  4281. msgstr "Подготовка..."
  4282. #: resources/qml/MonitorButton.qml:150
  4283. msgctxt "@label:MonitorStatus"
  4284. msgid "Please remove the print"
  4285. msgstr "Пожалуйста, удалите напечатанное"
  4286. #: resources/qml/MonitorButton.qml:318
  4287. msgctxt "@label"
  4288. msgid "Abort Print"
  4289. msgstr "Прервать печать"
  4290. #: resources/qml/MonitorButton.qml:327
  4291. msgctxt "@label"
  4292. msgid "Are you sure you want to abort the print?"
  4293. msgstr "Вы уверены, что желаете прервать печать?"
  4294. #: resources/qml/ObjectItemButton.qml:109
  4295. msgctxt "@label"
  4296. msgid "Is printed as support."
  4297. msgstr "Печатается как поддержка."
  4298. #: resources/qml/ObjectItemButton.qml:112
  4299. msgctxt "@label"
  4300. msgid "Other models overlapping with this model are modified."
  4301. msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены."
  4302. #: resources/qml/ObjectItemButton.qml:115
  4303. msgctxt "@label"
  4304. msgid "Infill overlapping with this model is modified."
  4305. msgstr "Изменено заполнение перекрытия с этой моделью."
  4306. #: resources/qml/ObjectItemButton.qml:118
  4307. msgctxt "@label"
  4308. msgid "Overlaps with this model are not supported."
  4309. msgstr "Перекрытия с этой моделью не поддерживаются."
  4310. #: resources/qml/ObjectItemButton.qml:125
  4311. msgctxt "@label %1 is the number of settings it overrides."
  4312. msgid "Overrides %1 setting."
  4313. msgid_plural "Overrides %1 settings."
  4314. msgstr[0] "Переопределяет %1 настройку."
  4315. msgstr[1] "Переопределяет %1 настройки."
  4316. msgstr[2] "Переопределяет %1 настроек."
  4317. #: resources/qml/ObjectSelector.qml:59
  4318. msgctxt "@label"
  4319. msgid "Object list"
  4320. msgstr "Список объектов"
  4321. #: resources/qml/Preferences/GeneralPage.qml:134
  4322. #: resources/qml/Preferences/SettingVisibilityPage.qml:24
  4323. msgctxt "@action:button"
  4324. msgid "Defaults"
  4325. msgstr "Стандартные"
  4326. #: resources/qml/Preferences/GeneralPage.qml:172
  4327. msgctxt "@label"
  4328. msgid "Interface"
  4329. msgstr "Интерфейс"
  4330. #: resources/qml/Preferences/GeneralPage.qml:215
  4331. msgctxt "@heading"
  4332. msgid "-- incomplete --"
  4333. msgstr "-- неполный --"
  4334. #: resources/qml/Preferences/GeneralPage.qml:261
  4335. msgctxt "@label"
  4336. msgid "Currency:"
  4337. msgstr "Валюта:"
  4338. #: resources/qml/Preferences/GeneralPage.qml:277
  4339. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  4340. msgid "Theme*:"
  4341. msgstr "Тема*:"
  4342. #: resources/qml/Preferences/GeneralPage.qml:323
  4343. msgctxt "@info:tooltip"
  4344. msgid "Slice automatically when changing settings."
  4345. msgstr "Нарезать автоматически при изменении настроек."
  4346. #: resources/qml/Preferences/GeneralPage.qml:331
  4347. msgctxt "@option:check"
  4348. msgid "Slice automatically"
  4349. msgstr "Нарезать автоматически"
  4350. #: resources/qml/Preferences/GeneralPage.qml:340
  4351. msgctxt "@info:tooltip"
  4352. msgid "Show an icon and notifications in the system notification area."
  4353. msgstr "Показать значок и уведомления в области уведомлений системы."
  4354. #: resources/qml/Preferences/GeneralPage.qml:348
  4355. msgctxt "@option:check"
  4356. msgid "Add icon to system tray *"
  4357. msgstr "Добавить значок в системный трей*"
  4358. #: resources/qml/Preferences/GeneralPage.qml:357
  4359. msgctxt "@label"
  4360. msgid "*You will need to restart the application for these changes to have effect."
  4361. msgstr "*Для применения данных изменений вам потребуется перезапустить приложение."
  4362. #: resources/qml/Preferences/GeneralPage.qml:373
  4363. msgctxt "@label"
  4364. msgid "Viewport behavior"
  4365. msgstr "Поведение окна"
  4366. #: resources/qml/Preferences/GeneralPage.qml:381
  4367. msgctxt "@info:tooltip"
  4368. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  4369. msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно."
  4370. #: resources/qml/Preferences/GeneralPage.qml:390
  4371. msgctxt "@option:check"
  4372. msgid "Display overhang"
  4373. msgstr "Отобразить нависания"
  4374. #: resources/qml/Preferences/GeneralPage.qml:400
  4375. msgctxt "@info:tooltip"
  4376. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  4377. msgstr "Отметьте отсутствующие или лишние поверхности модели с помощью предупреждающих знаков. В путях инструментов часто будут отсутствовать детали предполагаемой геометрии."
  4378. #: resources/qml/Preferences/GeneralPage.qml:409
  4379. msgctxt "@option:check"
  4380. msgid "Display model errors"
  4381. msgstr "Показывать ошибки модели"
  4382. #: resources/qml/Preferences/GeneralPage.qml:417
  4383. msgctxt "@info:tooltip"
  4384. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  4385. msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана"
  4386. #: resources/qml/Preferences/GeneralPage.qml:422
  4387. msgctxt "@action:button"
  4388. msgid "Center camera when item is selected"
  4389. msgstr "Центрировать камеру на выбранном объекте"
  4390. #: resources/qml/Preferences/GeneralPage.qml:432
  4391. msgctxt "@info:tooltip"
  4392. msgid "Should the default zoom behavior of cura be inverted?"
  4393. msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?"
  4394. #: resources/qml/Preferences/GeneralPage.qml:437
  4395. msgctxt "@action:button"
  4396. msgid "Invert the direction of camera zoom."
  4397. msgstr "Инвертировать направление увеличения камеры."
  4398. #: resources/qml/Preferences/GeneralPage.qml:453
  4399. msgctxt "@info:tooltip"
  4400. msgid "Should zooming move in the direction of the mouse?"
  4401. msgstr "Увеличивать по мере движения мышкой?"
  4402. #: resources/qml/Preferences/GeneralPage.qml:453
  4403. msgctxt "@info:tooltip"
  4404. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4405. msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается."
  4406. #: resources/qml/Preferences/GeneralPage.qml:458
  4407. msgctxt "@action:button"
  4408. msgid "Zoom toward mouse direction"
  4409. msgstr "Увеличивать по движению мышки"
  4410. #: resources/qml/Preferences/GeneralPage.qml:484
  4411. msgctxt "@info:tooltip"
  4412. msgid "Should models on the platform be moved so that they no longer intersect?"
  4413. msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?"
  4414. #: resources/qml/Preferences/GeneralPage.qml:489
  4415. msgctxt "@option:check"
  4416. msgid "Ensure models are kept apart"
  4417. msgstr "Удостовериться, что модели размещены рядом"
  4418. #: resources/qml/Preferences/GeneralPage.qml:498
  4419. msgctxt "@info:tooltip"
  4420. msgid "Should models on the platform be moved down to touch the build plate?"
  4421. msgstr "Следует ли опустить модели на стол?"
  4422. #: resources/qml/Preferences/GeneralPage.qml:503
  4423. msgctxt "@option:check"
  4424. msgid "Automatically drop models to the build plate"
  4425. msgstr "Автоматически опускать модели на стол"
  4426. #: resources/qml/Preferences/GeneralPage.qml:515
  4427. msgctxt "@info:tooltip"
  4428. msgid "Show caution message in g-code reader."
  4429. msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода."
  4430. #: resources/qml/Preferences/GeneralPage.qml:524
  4431. msgctxt "@option:check"
  4432. msgid "Caution message in g-code reader"
  4433. msgstr "Предупреждающее сообщение в средстве считывания G-кода"
  4434. #: resources/qml/Preferences/GeneralPage.qml:532
  4435. msgctxt "@info:tooltip"
  4436. msgid "Should layer be forced into compatibility mode?"
  4437. msgstr "Должен ли слой быть переведён в режим совместимости?"
  4438. #: resources/qml/Preferences/GeneralPage.qml:537
  4439. msgctxt "@option:check"
  4440. msgid "Force layer view compatibility mode (restart required)"
  4441. msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)"
  4442. #: resources/qml/Preferences/GeneralPage.qml:547
  4443. msgctxt "@info:tooltip"
  4444. msgid "Should Cura open at the location it was closed?"
  4445. msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?"
  4446. #: resources/qml/Preferences/GeneralPage.qml:552
  4447. msgctxt "@option:check"
  4448. msgid "Restore window position on start"
  4449. msgstr "Восстановить положение окна при запуске"
  4450. #: resources/qml/Preferences/GeneralPage.qml:562
  4451. msgctxt "@info:tooltip"
  4452. msgid "What type of camera rendering should be used?"
  4453. msgstr "Рендеринг камеры какого типа следует использовать?"
  4454. #: resources/qml/Preferences/GeneralPage.qml:569
  4455. msgctxt "@window:text"
  4456. msgid "Camera rendering:"
  4457. msgstr "Рендеринг камеры:"
  4458. #: resources/qml/Preferences/GeneralPage.qml:576
  4459. msgid "Perspective"
  4460. msgstr "Перспективная"
  4461. #: resources/qml/Preferences/GeneralPage.qml:577
  4462. msgid "Orthographic"
  4463. msgstr "Ортографическая"
  4464. #: resources/qml/Preferences/GeneralPage.qml:617
  4465. msgctxt "@label"
  4466. msgid "Opening and saving files"
  4467. msgstr "Открытие и сохранение файлов"
  4468. #: resources/qml/Preferences/GeneralPage.qml:624
  4469. msgctxt "@info:tooltip"
  4470. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  4471. msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?"
  4472. #: resources/qml/Preferences/GeneralPage.qml:629
  4473. msgctxt "@option:check"
  4474. msgid "Use a single instance of Cura"
  4475. msgstr "Использовать один экземпляр Cura"
  4476. #: resources/qml/Preferences/GeneralPage.qml:640
  4477. msgctxt "@info:tooltip"
  4478. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  4479. msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?"
  4480. #: resources/qml/Preferences/GeneralPage.qml:646
  4481. msgctxt "@option:check"
  4482. msgid "Clear buildplate before loading model into the single instance"
  4483. msgstr "Очистите печатную пластину перед загрузкой модели в единственный экземпляр"
  4484. #: resources/qml/Preferences/GeneralPage.qml:656
  4485. msgctxt "@info:tooltip"
  4486. msgid "Should models be scaled to the build volume if they are too large?"
  4487. msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?"
  4488. #: resources/qml/Preferences/GeneralPage.qml:661
  4489. msgctxt "@option:check"
  4490. msgid "Scale large models"
  4491. msgstr "Масштабировать большие модели"
  4492. #: resources/qml/Preferences/GeneralPage.qml:671
  4493. msgctxt "@info:tooltip"
  4494. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  4495. msgstr "Модель может показаться очень маленькой, если её размерность задана в метрах, а не миллиметрах. Следует ли масштабировать такие модели?"
  4496. #: resources/qml/Preferences/GeneralPage.qml:676
  4497. msgctxt "@option:check"
  4498. msgid "Scale extremely small models"
  4499. msgstr "Масштабировать очень маленькие модели"
  4500. #: resources/qml/Preferences/GeneralPage.qml:686
  4501. msgctxt "@info:tooltip"
  4502. msgid "Should models be selected after they are loaded?"
  4503. msgstr "Выбрать модели после их загрузки?"
  4504. #: resources/qml/Preferences/GeneralPage.qml:691
  4505. msgctxt "@option:check"
  4506. msgid "Select models when loaded"
  4507. msgstr "Выбрать модели при загрузке"
  4508. #: resources/qml/Preferences/GeneralPage.qml:701
  4509. msgctxt "@info:tooltip"
  4510. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  4511. msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?"
  4512. #: resources/qml/Preferences/GeneralPage.qml:706
  4513. msgctxt "@option:check"
  4514. msgid "Add machine prefix to job name"
  4515. msgstr "Добавить префикс принтера к имени задачи"
  4516. #: resources/qml/Preferences/GeneralPage.qml:716
  4517. msgctxt "@info:tooltip"
  4518. msgid "Should a summary be shown when saving a project file?"
  4519. msgstr "Показывать сводку при сохранении файла проекта?"
  4520. #: resources/qml/Preferences/GeneralPage.qml:720
  4521. msgctxt "@option:check"
  4522. msgid "Show summary dialog when saving project"
  4523. msgstr "Показывать сводку при сохранении проекта"
  4524. #: resources/qml/Preferences/GeneralPage.qml:730
  4525. msgctxt "@info:tooltip"
  4526. msgid "Default behavior when opening a project file"
  4527. msgstr "Стандартное поведение при открытии файла проекта"
  4528. #: resources/qml/Preferences/GeneralPage.qml:738
  4529. msgctxt "@window:text"
  4530. msgid "Default behavior when opening a project file: "
  4531. msgstr "Стандартное поведение при открытии файла проекта: "
  4532. #: resources/qml/Preferences/GeneralPage.qml:753
  4533. msgctxt "@option:openProject"
  4534. msgid "Always ask me this"
  4535. msgstr "Всегда спрашивать меня"
  4536. #: resources/qml/Preferences/GeneralPage.qml:754
  4537. msgctxt "@option:openProject"
  4538. msgid "Always open as a project"
  4539. msgstr "Всегда открывать как проект"
  4540. #: resources/qml/Preferences/GeneralPage.qml:755
  4541. msgctxt "@option:openProject"
  4542. msgid "Always import models"
  4543. msgstr "Всегда импортировать модели"
  4544. #: resources/qml/Preferences/GeneralPage.qml:792
  4545. msgctxt "@info:tooltip"
  4546. 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."
  4547. msgstr "При внесении изменений в профиль и переключении на другой, будет показан диалог, запрашивающий ваше решение о сохранении ваших изменений, или вы можете указать стандартное поведение и не показывать такой диалог."
  4548. #: resources/qml/Preferences/GeneralPage.qml:801
  4549. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:46
  4550. msgctxt "@label"
  4551. msgid "Profiles"
  4552. msgstr "Профили"
  4553. #: resources/qml/Preferences/GeneralPage.qml:806
  4554. msgctxt "@window:text"
  4555. msgid "Default behavior for changed setting values when switching to a different profile: "
  4556. msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: "
  4557. #: resources/qml/Preferences/GeneralPage.qml:821
  4558. msgctxt "@option:discardOrKeep"
  4559. msgid "Always discard changed settings"
  4560. msgstr "Всегда сбрасывать измененные настройки"
  4561. #: resources/qml/Preferences/GeneralPage.qml:822
  4562. msgctxt "@option:discardOrKeep"
  4563. msgid "Always transfer changed settings to new profile"
  4564. msgstr "Всегда передавать измененные настройки новому профилю"
  4565. #: resources/qml/Preferences/GeneralPage.qml:856
  4566. msgctxt "@label"
  4567. msgid "Privacy"
  4568. msgstr "Приватность"
  4569. #: resources/qml/Preferences/GeneralPage.qml:862
  4570. msgctxt "@info:tooltip"
  4571. 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."
  4572. msgstr "Можно ли отправлять анонимную информацию о вашей печати в UltiMaker? Следует отметить, что ни модели, ни IP-адреса и никакая другая персональная информация не будет отправлена или сохранена."
  4573. #: resources/qml/Preferences/GeneralPage.qml:867
  4574. msgctxt "@option:check"
  4575. msgid "Send (anonymous) print information"
  4576. msgstr "Отправлять (анонимно) информацию о печати"
  4577. #: resources/qml/Preferences/GeneralPage.qml:897
  4578. msgctxt "@label"
  4579. msgid "Updates"
  4580. msgstr "Обновления"
  4581. #: resources/qml/Preferences/GeneralPage.qml:904
  4582. msgctxt "@info:tooltip"
  4583. msgid "Should Cura check for updates when the program is started?"
  4584. msgstr "Должна ли Cura проверять обновления программы при старте?"
  4585. #: resources/qml/Preferences/GeneralPage.qml:909
  4586. msgctxt "@option:check"
  4587. msgid "Check for updates on start"
  4588. msgstr "Проверять обновления при старте"
  4589. #: resources/qml/Preferences/GeneralPage.qml:925
  4590. msgctxt "@info:tooltip"
  4591. msgid "When checking for updates, only check for stable releases."
  4592. msgstr "При проверке обновлений проверяйте только стабильные версии."
  4593. #: resources/qml/Preferences/GeneralPage.qml:931
  4594. msgctxt "@option:radio"
  4595. msgid "Stable releases only"
  4596. msgstr "Только стабильные версии"
  4597. #: resources/qml/Preferences/GeneralPage.qml:941
  4598. msgctxt "@info:tooltip"
  4599. msgid "When checking for updates, check for both stable and for beta releases."
  4600. msgstr "При проверке обновлений проверяйте как стабильные, так и бета-версии."
  4601. #: resources/qml/Preferences/GeneralPage.qml:947
  4602. msgctxt "@option:radio"
  4603. msgid "Stable and Beta releases"
  4604. msgstr "Стабильные и бета-версии"
  4605. #: resources/qml/Preferences/GeneralPage.qml:957
  4606. msgctxt "@info:tooltip"
  4607. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  4608. msgstr "Следует ли автоматически проверять наличие новых плагинов при каждом запуске Cura? Настоятельно рекомендуется не выключать это!"
  4609. #: resources/qml/Preferences/GeneralPage.qml:962
  4610. msgctxt "@option:check"
  4611. msgid "Get notifications for plugin updates"
  4612. msgstr "Получать уведомления об обновлениях плагинов"
  4613. #: resources/qml/Preferences/MachinesPage.qml:50
  4614. msgctxt "@action:button"
  4615. msgid "Add New"
  4616. msgstr "Добавить новый"
  4617. #: resources/qml/Preferences/MachinesPage.qml:147
  4618. #: resources/qml/Preferences/Materials/MaterialsPage.qml:160
  4619. #: resources/qml/Preferences/ProfilesPage.qml:294
  4620. msgctxt "@action:button"
  4621. msgid "Activate"
  4622. msgstr "Активировать"
  4623. #: resources/qml/Preferences/MachinesPage.qml:159
  4624. #: resources/qml/Preferences/ProfilesPage.qml:331
  4625. msgctxt "@action:button"
  4626. msgid "Rename"
  4627. msgstr "Переименовать"
  4628. #: resources/qml/Preferences/Materials/MaterialsPage.qml:72
  4629. msgctxt "@label"
  4630. msgid "Materials compatible with active printer:"
  4631. msgstr "Материалы, совместимые с активным принтером:"
  4632. #: resources/qml/Preferences/Materials/MaterialsPage.qml:78
  4633. #: resources/qml/Preferences/ProfilesPage.qml:94
  4634. msgctxt "@action:button"
  4635. msgid "Create new"
  4636. msgstr "Создать новый"
  4637. #: resources/qml/Preferences/Materials/MaterialsPage.qml:90
  4638. #: resources/qml/Preferences/ProfilesPage.qml:88
  4639. msgctxt "@action:button"
  4640. msgid "Import"
  4641. msgstr "Импорт"
  4642. #: resources/qml/Preferences/Materials/MaterialsPage.qml:101
  4643. msgctxt "@action:button"
  4644. msgid "Sync with Printers"
  4645. msgstr "Синхронизация с принтерами"
  4646. #: resources/qml/Preferences/Materials/MaterialsPage.qml:174
  4647. #: resources/qml/Preferences/ProfilesPage.qml:311
  4648. msgctxt "@action:button"
  4649. msgid "Duplicate"
  4650. msgstr "Дублировать"
  4651. #: resources/qml/Preferences/Materials/MaterialsPage.qml:198
  4652. #: resources/qml/Preferences/ProfilesPage.qml:342
  4653. msgctxt "@action:button"
  4654. msgid "Export"
  4655. msgstr "Экспорт"
  4656. #: resources/qml/Preferences/Materials/MaterialsPage.qml:212
  4657. #: resources/qml/Preferences/ProfilesPage.qml:392
  4658. msgctxt "@title:window"
  4659. msgid "Confirm Remove"
  4660. msgstr "Подтвердите удаление"
  4661. #: resources/qml/Preferences/Materials/MaterialsPage.qml:215
  4662. #: resources/qml/Preferences/ProfilesPage.qml:393
  4663. msgctxt "@label (%1 is object name)"
  4664. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  4665. msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!"
  4666. #: resources/qml/Preferences/Materials/MaterialsPage.qml:228
  4667. #: resources/qml/Preferences/Materials/MaterialsPage.qml:238
  4668. msgctxt "@title:window"
  4669. msgid "Import Material"
  4670. msgstr "Импортировать материал"
  4671. #: resources/qml/Preferences/Materials/MaterialsPage.qml:242
  4672. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4673. msgid "Successfully imported material <filename>%1</filename>"
  4674. msgstr "Успешно импортированный материал <filename>%1</filename>"
  4675. #: resources/qml/Preferences/Materials/MaterialsPage.qml:245
  4676. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  4677. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  4678. msgstr "Не могу импортировать материал <filename>%1</filename>: <message>%2</message>"
  4679. #: resources/qml/Preferences/Materials/MaterialsPage.qml:256
  4680. #: resources/qml/Preferences/Materials/MaterialsPage.qml:267
  4681. msgctxt "@title:window"
  4682. msgid "Export Material"
  4683. msgstr "Экспортировать материал"
  4684. #: resources/qml/Preferences/Materials/MaterialsPage.qml:272
  4685. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  4686. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  4687. msgstr "Не могу экспортировать материал <filename>%1</filename>: <message>%2</message>"
  4688. #: resources/qml/Preferences/Materials/MaterialsPage.qml:275
  4689. msgctxt "@info:status Don't translate the XML tag <filename>!"
  4690. msgid "Successfully exported material to <filename>%1</filename>"
  4691. msgstr "Материал успешно экспортирован в <filename>%1</filename>"
  4692. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:18
  4693. msgctxt "@title:window"
  4694. msgid "Sync materials with printers"
  4695. msgstr "Синхронизировать материалы с принтерами"
  4696. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:49
  4697. msgctxt "@title:header"
  4698. msgid "Sync materials with printers"
  4699. msgstr "Синхронизировать материалы с принтерами"
  4700. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:55
  4701. msgctxt "@text"
  4702. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  4703. msgstr "Выполнив несколько простых действий, вы сможете синхронизировать все профили материалов со своими принтерами."
  4704. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:77
  4705. msgctxt "@button"
  4706. msgid "Why do I need to sync material profiles?"
  4707. msgstr "Зачем нужна синхронизация профилей материалов?"
  4708. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:86
  4709. msgctxt "@button"
  4710. msgid "Start"
  4711. msgstr "Пуск"
  4712. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:144
  4713. msgctxt "@title:header"
  4714. msgid "Sign in"
  4715. msgstr "Войти"
  4716. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:150
  4717. msgctxt "@text"
  4718. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  4719. msgstr "Для автоматической синхронизации профилей материалов со всеми принтерами, подключенными к Digital Factory, необходимо войти в Cura."
  4720. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:174
  4721. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:462
  4722. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:602
  4723. msgctxt "@button"
  4724. msgid "Sync materials with USB"
  4725. msgstr "Синхронизация материалов с помощью USB"
  4726. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:207
  4727. msgctxt "@title:header"
  4728. msgid "The following printers will receive the new material profiles:"
  4729. msgstr "Следующие принтеры получат новые профили материалов:"
  4730. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:214
  4731. msgctxt "@title:header"
  4732. msgid "Something went wrong when sending the materials to the printers."
  4733. msgstr "При отправке материалов на принтеры что-то пошло не так."
  4734. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:221
  4735. msgctxt "@title:header"
  4736. msgid "Material profiles successfully synced with the following printers:"
  4737. msgstr "Профили материалов успешно синхронизированы со следующими принтерами:"
  4738. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:258
  4739. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:445
  4740. msgctxt "@button"
  4741. msgid "Troubleshooting"
  4742. msgstr "Поиск и устранение неисправностей"
  4743. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:422
  4744. msgctxt "@text Asking the user whether printers are missing in a list."
  4745. msgid "Printers missing?"
  4746. msgstr "Отсутствуют принтеры?"
  4747. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:424
  4748. msgctxt "@text"
  4749. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  4750. msgstr "Убедитесь, что все ваши принтеры включены и подключены к Digital Factory."
  4751. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:433
  4752. msgctxt "@button"
  4753. msgid "Refresh List"
  4754. msgstr "Обновить список"
  4755. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:473
  4756. msgctxt "@button"
  4757. msgid "Try again"
  4758. msgstr "Повторить попытку"
  4759. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:477
  4760. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4761. msgctxt "@button"
  4762. msgid "Done"
  4763. msgstr "Готово"
  4764. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:479
  4765. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:622
  4766. msgctxt "@button"
  4767. msgid "Sync"
  4768. msgstr "Синхронизация"
  4769. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:535
  4770. msgctxt "@button"
  4771. msgid "Syncing"
  4772. msgstr "Синхронизация"
  4773. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:553
  4774. msgctxt "@title:header"
  4775. msgid "No printers found"
  4776. msgstr "Принтеры не обнаружены"
  4777. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:574
  4778. msgctxt "@text"
  4779. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  4780. msgstr "Похоже, у вас нет совместимых принтеров, подключенных к Digital Factory. Убедитесь, что ваш принтер подключен и на нем установлена последняя версия прошивки."
  4781. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:585
  4782. msgctxt "@button"
  4783. msgid "Learn how to connect your printer to Digital Factory"
  4784. msgstr "Узнайте, как подключить принтер к Digital Factory"
  4785. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:613
  4786. msgctxt "@button"
  4787. msgid "Refresh"
  4788. msgstr "Обновить"
  4789. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:642
  4790. msgctxt "@title:header"
  4791. msgid "Sync material profiles via USB"
  4792. msgstr "Синхронизация профилей материалов с помощью USB"
  4793. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:648
  4794. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  4795. msgid "Follow the following steps to load the new material profiles to your printer."
  4796. msgstr "Чтобы загрузить новые профили материалов в принтер, выполните следующие действия."
  4797. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:679
  4798. msgctxt "@text"
  4799. msgid "Click the export material archive button."
  4800. msgstr "Нажмите кнопку экспорта архива материалов."
  4801. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:680
  4802. msgctxt "@text"
  4803. msgid "Save the .umm file on a USB stick."
  4804. msgstr "Сохраните UMM-файл на USB-накопителе."
  4805. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:681
  4806. msgctxt "@text"
  4807. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  4808. msgstr "Вставьте USB-накопитель в принтер и запустите процедуру загрузки новых профилей материалов."
  4809. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:689
  4810. msgctxt "@button"
  4811. msgid "How to load new material profiles to my printer"
  4812. msgstr "Загрузка новых профилей материалов в принтер"
  4813. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:703
  4814. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:299
  4815. msgctxt "@button"
  4816. msgid "Back"
  4817. msgstr "Назад"
  4818. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:712
  4819. msgctxt "@button"
  4820. msgid "Export material archive"
  4821. msgstr "Экспорт архива материалов"
  4822. #: resources/qml/Preferences/Materials/MaterialsSyncDialog.qml:747
  4823. msgctxt "@title:window"
  4824. msgid "Export All Materials"
  4825. msgstr "Экспорт всех материалов"
  4826. #: resources/qml/Preferences/Materials/MaterialsView.qml:121
  4827. msgctxt "@title:window"
  4828. msgid "Confirm Diameter Change"
  4829. msgstr "Подтвердить изменение диаметра"
  4830. #: resources/qml/Preferences/Materials/MaterialsView.qml:122
  4831. msgctxt "@label (%1 is a number)"
  4832. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  4833. msgstr "Установлен новый диаметр пластиковой нити %1 мм. Это значение несовместимо с текущим экструдером. Продолжить?"
  4834. #: resources/qml/Preferences/Materials/MaterialsView.qml:152
  4835. msgctxt "@label"
  4836. msgid "Display Name"
  4837. msgstr "Отображаемое имя"
  4838. #: resources/qml/Preferences/Materials/MaterialsView.qml:171
  4839. msgctxt "@label"
  4840. msgid "Brand"
  4841. msgstr "Брэнд"
  4842. #: resources/qml/Preferences/Materials/MaterialsView.qml:190
  4843. msgctxt "@label"
  4844. msgid "Material Type"
  4845. msgstr "Тип материала"
  4846. #: resources/qml/Preferences/Materials/MaterialsView.qml:210
  4847. msgctxt "@label"
  4848. msgid "Color"
  4849. msgstr "Цвет"
  4850. #: resources/qml/Preferences/Materials/MaterialsView.qml:262
  4851. msgctxt "@title"
  4852. msgid "Material color picker"
  4853. msgstr "Выбор цвета материала"
  4854. #: resources/qml/Preferences/Materials/MaterialsView.qml:275
  4855. msgctxt "@label"
  4856. msgid "Properties"
  4857. msgstr "Свойства"
  4858. #: resources/qml/Preferences/Materials/MaterialsView.qml:286
  4859. msgctxt "@label"
  4860. msgid "Density"
  4861. msgstr "Плотность"
  4862. #: resources/qml/Preferences/Materials/MaterialsView.qml:319
  4863. msgctxt "@label"
  4864. msgid "Diameter"
  4865. msgstr "Диаметр"
  4866. #: resources/qml/Preferences/Materials/MaterialsView.qml:369
  4867. msgctxt "@label"
  4868. msgid "Filament Cost"
  4869. msgstr "Стоимость материала"
  4870. #: resources/qml/Preferences/Materials/MaterialsView.qml:401
  4871. msgctxt "@label"
  4872. msgid "Filament weight"
  4873. msgstr "Вес материала"
  4874. #: resources/qml/Preferences/Materials/MaterialsView.qml:433
  4875. msgctxt "@label"
  4876. msgid "Filament length"
  4877. msgstr "Длина материала"
  4878. #: resources/qml/Preferences/Materials/MaterialsView.qml:451
  4879. msgctxt "@label"
  4880. msgid "Cost per Meter"
  4881. msgstr "Стоимость метра"
  4882. #: resources/qml/Preferences/Materials/MaterialsView.qml:465
  4883. msgctxt "@label"
  4884. msgid "This material is linked to %1 and shares some of its properties."
  4885. msgstr "Данный материал привязан к %1 и имеет ряд его свойств."
  4886. #: resources/qml/Preferences/Materials/MaterialsView.qml:472
  4887. msgctxt "@label"
  4888. msgid "Unlink Material"
  4889. msgstr "Отвязать материал"
  4890. #: resources/qml/Preferences/Materials/MaterialsView.qml:485
  4891. msgctxt "@label"
  4892. msgid "Description"
  4893. msgstr "Описание"
  4894. #: resources/qml/Preferences/Materials/MaterialsView.qml:503
  4895. msgctxt "@label"
  4896. msgid "Adhesion Information"
  4897. msgstr "Информация об адгезии"
  4898. #: resources/qml/Preferences/Materials/MaterialsView.qml:642
  4899. msgctxt "@title"
  4900. msgid "Information"
  4901. msgstr "Информация"
  4902. #: resources/qml/Preferences/Materials/MaterialsView.qml:647
  4903. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:18
  4904. msgctxt "@label"
  4905. msgid "Print settings"
  4906. msgstr "Параметры печати"
  4907. #: resources/qml/Preferences/ProfilesPage.qml:59
  4908. msgctxt "@label"
  4909. msgid "Profiles compatible with active printer:"
  4910. msgstr "Профили, совместимые с активным принтером:"
  4911. #: resources/qml/Preferences/ProfilesPage.qml:98
  4912. msgctxt "@action:tooltip"
  4913. msgid "Create new profile from current settings/overrides"
  4914. msgstr "Создать новый профиль из текущих настроек/переопределений"
  4915. #: resources/qml/Preferences/ProfilesPage.qml:125
  4916. msgctxt "@action:label"
  4917. msgid "Some settings from current profile were overwritten."
  4918. msgstr "Некоторые настройки из текущего профиля были перезаписаны."
  4919. #: resources/qml/Preferences/ProfilesPage.qml:140
  4920. msgctxt "@action:button"
  4921. msgid "Update profile."
  4922. msgstr "Обновить профиль."
  4923. #: resources/qml/Preferences/ProfilesPage.qml:143
  4924. msgctxt "@action:tooltip"
  4925. msgid "Update profile with current settings/overrides"
  4926. msgstr "Обновить профиль текущими параметрами"
  4927. #: resources/qml/Preferences/ProfilesPage.qml:148
  4928. msgctxt "@action:button"
  4929. msgid "Discard current changes"
  4930. msgstr "Сбросить текущие параметры"
  4931. #: resources/qml/Preferences/ProfilesPage.qml:158
  4932. msgctxt "@action:label"
  4933. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  4934. msgstr "Данный профиль использует настройки принтера по умолчанию, поэтому список ниже пуст."
  4935. #: resources/qml/Preferences/ProfilesPage.qml:165
  4936. msgctxt "@action:label"
  4937. msgid "Your current settings match the selected profile."
  4938. msgstr "Ваши текущие параметры совпадают с выбранным профилем."
  4939. #: resources/qml/Preferences/ProfilesPage.qml:175
  4940. msgctxt "@title:tab"
  4941. msgid "Global Settings"
  4942. msgstr "Общие параметры"
  4943. #: resources/qml/Preferences/ProfilesPage.qml:278
  4944. msgctxt "@title:window"
  4945. msgid "Create Profile"
  4946. msgstr "Создать профиль"
  4947. #: resources/qml/Preferences/ProfilesPage.qml:280
  4948. msgctxt "@info"
  4949. msgid "Please provide a name for this profile."
  4950. msgstr "Укажите имя для данного профиля."
  4951. #: resources/qml/Preferences/ProfilesPage.qml:352
  4952. #: resources/qml/Preferences/ProfilesPage.qml:368
  4953. msgctxt "@title:window"
  4954. msgid "Export Profile"
  4955. msgstr "Экспорт профиля"
  4956. #: resources/qml/Preferences/ProfilesPage.qml:382
  4957. msgctxt "@title:window"
  4958. msgid "Duplicate Profile"
  4959. msgstr "Скопировать профиль"
  4960. #: resources/qml/Preferences/ProfilesPage.qml:409
  4961. msgctxt "@title:window"
  4962. msgid "Rename Profile"
  4963. msgstr "Переименовать профиль"
  4964. #: resources/qml/Preferences/ProfilesPage.qml:422
  4965. #: resources/qml/Preferences/ProfilesPage.qml:429
  4966. msgctxt "@title:window"
  4967. msgid "Import Profile"
  4968. msgstr "Импорт профиля"
  4969. #: resources/qml/Preferences/SettingVisibilityItem.qml:56
  4970. msgctxt "@item:tooltip"
  4971. msgid "This setting has been hidden by the active machine and will not be visible."
  4972. msgstr "Данный параметр был скрыт текущим принтером и не будет отображаться."
  4973. #: resources/qml/Preferences/SettingVisibilityItem.qml:73
  4974. msgctxt "@item:tooltip %1 is list of setting names"
  4975. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  4976. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  4977. msgstr[0] "Этот параметр был скрыт значением %1. Измените это значение, чтобы параметр стал отображаться."
  4978. msgstr[1] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться."
  4979. msgstr[2] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться."
  4980. #: resources/qml/Preferences/SettingVisibilityPage.qml:13
  4981. msgctxt "@title:tab"
  4982. msgid "Setting Visibility"
  4983. msgstr "Видимость параметров"
  4984. #: resources/qml/Preferences/SettingVisibilityPage.qml:55
  4985. msgctxt "@label:textbox"
  4986. msgid "Check all"
  4987. msgstr "Выбрать все"
  4988. #: resources/qml/PrintMonitor.qml:156
  4989. msgctxt "@label"
  4990. msgid "Active print"
  4991. msgstr "Идёт печать"
  4992. #: resources/qml/PrintMonitor.qml:164
  4993. msgctxt "@label"
  4994. msgid "Job Name"
  4995. msgstr "Имя задачи"
  4996. #: resources/qml/PrintMonitor.qml:172
  4997. msgctxt "@label"
  4998. msgid "Printing Time"
  4999. msgstr "Время печати"
  5000. #: resources/qml/PrintMonitor.qml:180
  5001. msgctxt "@label"
  5002. msgid "Estimated time left"
  5003. msgstr "Осталось примерно"
  5004. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:46
  5005. msgctxt "@label"
  5006. msgid "Profile"
  5007. msgstr "Профиль"
  5008. #: resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:136
  5009. msgctxt "@tooltip"
  5010. msgid ""
  5011. "Some setting/override values are different from the values stored in the profile.\n"
  5012. "\n"
  5013. "Click to open the profile manager."
  5014. msgstr ""
  5015. "Значения некоторых параметров отличаются от значений профиля.\n"
  5016. "\n"
  5017. "Нажмите для открытия менеджера профилей."
  5018. #: resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:158
  5019. msgctxt "@label:header"
  5020. msgid "Custom profiles"
  5021. msgstr "Собственные профили"
  5022. #: resources/qml/PrintSetupSelector/PrintSetupSelector.qml:20
  5023. msgctxt "@label shown when we load a Gcode file"
  5024. msgid "Print setup disabled. G-code file can not be modified."
  5025. msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом."
  5026. #: resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:179
  5027. msgctxt "@button"
  5028. msgid "Recommended"
  5029. msgstr "Рекомендован"
  5030. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  5031. msgctxt "@label:Should be short"
  5032. msgid "On"
  5033. msgstr "Вкл"
  5034. #: resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  5035. msgctxt "@label:Should be short"
  5036. msgid "Off"
  5037. msgstr "Выкл"
  5038. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:65
  5039. msgctxt "@info, %1 is the name of the custom profile"
  5040. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  5041. msgstr "Активен <b>%1</b> собственный профиль, и вы переписали некоторые настройки."
  5042. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:78
  5043. msgctxt "@info, %1 is the name of the custom profile"
  5044. msgid "<b>%1</b> custom profile is overriding some settings."
  5045. msgstr "<b>%1</b> собственный профиль переопределяет некоторые параметры."
  5046. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:92
  5047. msgctxt "@info %1 is the name of a profile"
  5048. msgid "Recommended settings (for <b>%1</b>) were altered."
  5049. msgstr "Рекомендуемые настройки (для <b>%1</b>) были изменены."
  5050. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:106
  5051. msgctxt "@info %1 is the name of a profile"
  5052. msgid "Some setting-values defined in <b>%1</b> were overridden."
  5053. msgstr ""
  5054. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:137
  5055. msgctxt "@info"
  5056. msgid "Reset to defaults."
  5057. msgstr "Восстановить значения по умолчанию."
  5058. #: resources/qml/PrintSetupSelector/ProfileWarningReset.qml:178
  5059. msgctxt "@info"
  5060. msgid "Compare and save."
  5061. msgstr "Сравните и экономьте."
  5062. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:15
  5063. msgctxt "@label"
  5064. msgid "Adhesion"
  5065. msgstr "Прилипание"
  5066. #: resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:20
  5067. msgctxt "@label"
  5068. 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."
  5069. msgstr "Разрешает печать каймы или подложки. Это добавляет плоскую область вокруг или под вашим объектом, которую легко удалить после печати."
  5070. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:102
  5071. msgctxt "@label"
  5072. msgid "Recommended print settings"
  5073. msgstr ""
  5074. #: resources/qml/PrintSetupSelector/Recommended/RecommendedPrintSetup.qml:111
  5075. msgctxt "@button"
  5076. msgid "Show Custom"
  5077. msgstr ""
  5078. #: resources/qml/PrintSetupSelector/Recommended/RecommendedResolutionSelector.qml:27
  5079. msgctxt "@label"
  5080. msgid "Resolution"
  5081. msgstr "Разрешение"
  5082. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:16
  5083. msgctxt "@label"
  5084. msgid "Strength"
  5085. msgstr "Прочность"
  5086. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:20
  5087. msgctxt "@label"
  5088. msgid "The following settings define the strength of your part."
  5089. msgstr "Следующие настройки определяют прочность детали."
  5090. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:34
  5091. msgctxt "infill_sparse_density description"
  5092. msgid "Infill Density"
  5093. msgstr ""
  5094. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:35
  5095. msgctxt "@label"
  5096. msgid "Adjusts the density of infill of the print."
  5097. msgstr "Отрегулируйте плотность заполнения при печати."
  5098. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:54
  5099. msgctxt "@action:label"
  5100. msgid "Infill Pattern"
  5101. msgstr "Шаблон заполнения"
  5102. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:56
  5103. msgctxt "@label"
  5104. msgid ""
  5105. "The pattern of the infill material of the print:\n"
  5106. "\n"
  5107. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  5108. "\n"
  5109. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  5110. "\n"
  5111. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  5112. msgstr ""
  5113. "Шаблон заполнительного материала печати:\n"
  5114. "\n"
  5115. "Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».\n"
  5116. "\n"
  5117. "Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».\n"
  5118. "\n"
  5119. "Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»."
  5120. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:67
  5121. msgctxt "@action:label"
  5122. msgid "Shell Thickness"
  5123. msgstr ""
  5124. #: resources/qml/PrintSetupSelector/Recommended/RecommendedStrengthSelector.qml:68
  5125. msgctxt "@label"
  5126. msgid "Defines the thickness of your part side walls, roof and floor."
  5127. msgstr "Определяет толщину боковых стен, крыши и пола вашей детали."
  5128. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:16
  5129. msgctxt "@label"
  5130. msgid "Support"
  5131. msgstr "Поддержки"
  5132. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:21
  5133. msgctxt "@label"
  5134. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  5135. msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати."
  5136. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:40
  5137. msgctxt "@action:label"
  5138. msgid "Support Type"
  5139. msgstr ""
  5140. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:41
  5141. msgctxt "@label"
  5142. msgid ""
  5143. "Chooses between the techniques available to generate support. \n"
  5144. "\n"
  5145. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  5146. "\n"
  5147. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  5148. msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины."
  5149. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:53
  5150. msgctxt "@action:label"
  5151. msgid "Print with"
  5152. msgstr ""
  5153. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:54
  5154. msgctxt "@label"
  5155. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  5156. msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров."
  5157. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:67
  5158. msgctxt "@action:label"
  5159. msgid "Placement"
  5160. msgstr "Размещение"
  5161. #: resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:68
  5162. msgctxt "support_type description"
  5163. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  5164. msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели."
  5165. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:31
  5166. msgctxt "@error"
  5167. msgid "Configuration not supported"
  5168. msgstr "Конфигурация не поддерживается"
  5169. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:39
  5170. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  5171. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  5172. msgstr "Нет профилей для выбранного материала/конфигурации %1. Пожалуйста, измените конфигурацию."
  5173. #: resources/qml/PrintSetupSelector/Recommended/UnsupportedProfileIndication.qml:47
  5174. msgctxt "@button:label"
  5175. msgid "Learn more"
  5176. msgstr "Узнать больше"
  5177. #: resources/qml/PrinterOutput/ExtruderBox.qml:40
  5178. msgctxt "@label"
  5179. msgid "Extruder"
  5180. msgstr "Экструдер"
  5181. #: resources/qml/PrinterOutput/ExtruderBox.qml:70
  5182. msgctxt "@tooltip"
  5183. 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."
  5184. msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен."
  5185. #: resources/qml/PrinterOutput/ExtruderBox.qml:105
  5186. msgctxt "@tooltip"
  5187. msgid "The current temperature of this hotend."
  5188. msgstr "Текущая температура данного сопла."
  5189. #: resources/qml/PrinterOutput/ExtruderBox.qml:182
  5190. msgctxt "@tooltip of temperature input"
  5191. msgid "The temperature to pre-heat the hotend to."
  5192. msgstr "Температура предварительного нагрева сопла."
  5193. #: resources/qml/PrinterOutput/ExtruderBox.qml:271
  5194. #: resources/qml/PrinterOutput/HeatedBedBox.qml:259
  5195. msgctxt "@button Cancel pre-heating"
  5196. msgid "Cancel"
  5197. msgstr "Отмена"
  5198. #: resources/qml/PrinterOutput/ExtruderBox.qml:274
  5199. #: resources/qml/PrinterOutput/HeatedBedBox.qml:263
  5200. msgctxt "@button"
  5201. msgid "Pre-heat"
  5202. msgstr "Преднагрев"
  5203. #: resources/qml/PrinterOutput/ExtruderBox.qml:297
  5204. msgctxt "@tooltip of pre-heat"
  5205. 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."
  5206. msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати."
  5207. #: resources/qml/PrinterOutput/ExtruderBox.qml:335
  5208. msgctxt "@tooltip"
  5209. msgid "The colour of the material in this extruder."
  5210. msgstr "Цвет материала в данном экструдере."
  5211. #: resources/qml/PrinterOutput/ExtruderBox.qml:367
  5212. msgctxt "@tooltip"
  5213. msgid "The material in this extruder."
  5214. msgstr "Материал в данном экструдере."
  5215. #: resources/qml/PrinterOutput/ExtruderBox.qml:400
  5216. msgctxt "@tooltip"
  5217. msgid "The nozzle inserted in this extruder."
  5218. msgstr "Сопло, вставленное в данный экструдер."
  5219. #: resources/qml/PrinterOutput/HeatedBedBox.qml:25
  5220. msgctxt "@label"
  5221. msgid "Build plate"
  5222. msgstr "Рабочий стол"
  5223. #: resources/qml/PrinterOutput/HeatedBedBox.qml:55
  5224. msgctxt "@tooltip"
  5225. 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."
  5226. msgstr "Целевая температура горячего стола. Стол будет нагреваться и охлаждаться, оставаясь на этой температуре. Если установлена в 0, значит нагрев стола отключен."
  5227. #: resources/qml/PrinterOutput/HeatedBedBox.qml:88
  5228. msgctxt "@tooltip"
  5229. msgid "The current temperature of the heated bed."
  5230. msgstr "Текущая температура горячего стола."
  5231. #: resources/qml/PrinterOutput/HeatedBedBox.qml:162
  5232. msgctxt "@tooltip of temperature input"
  5233. msgid "The temperature to pre-heat the bed to."
  5234. msgstr "Температура преднагрева горячего стола."
  5235. #: resources/qml/PrinterOutput/HeatedBedBox.qml:286
  5236. msgctxt "@tooltip of pre-heat"
  5237. 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."
  5238. msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати."
  5239. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:51
  5240. msgctxt "@label"
  5241. msgid "Printer control"
  5242. msgstr "Управление принтером"
  5243. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:66
  5244. msgctxt "@label"
  5245. msgid "Jog Position"
  5246. msgstr "Положение толчковой подачи"
  5247. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:82
  5248. msgctxt "@label"
  5249. msgid "X/Y"
  5250. msgstr "X/Y"
  5251. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:162
  5252. msgctxt "@label"
  5253. msgid "Z"
  5254. msgstr "Z"
  5255. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:217
  5256. msgctxt "@label"
  5257. msgid "Jog Distance"
  5258. msgstr "Расстояние толчковой подачи"
  5259. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  5260. msgctxt "@label"
  5261. msgid "Send G-code"
  5262. msgstr "Отправить G-код"
  5263. #: resources/qml/PrinterOutput/ManualPrinterControl.qml:319
  5264. msgctxt "@tooltip of G-code command input"
  5265. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  5266. msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды."
  5267. #: resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  5268. msgctxt "@info:status"
  5269. msgid "The printer is not connected."
  5270. msgstr "Принтер не подключен."
  5271. #: resources/qml/PrinterSelector/MachineListButton.qml:34
  5272. msgctxt "@label"
  5273. msgid "Hide all connected printers"
  5274. msgstr "Скрыть все подключенные принтеры"
  5275. #: resources/qml/PrinterSelector/MachineListButton.qml:47
  5276. msgctxt "@label"
  5277. msgid "Show all connected printers"
  5278. msgstr "Показать все подключенные принтеры"
  5279. #: resources/qml/PrinterSelector/MachineSelector.qml:64
  5280. msgctxt "@status"
  5281. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  5282. msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету."
  5283. #: resources/qml/PrinterSelector/MachineSelector.qml:68
  5284. msgctxt "@status"
  5285. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  5286. msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку."
  5287. #: resources/qml/PrinterSelector/MachineSelector.qml:73
  5288. msgctxt "@status"
  5289. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  5290. msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход."
  5291. #: resources/qml/PrinterSelector/MachineSelector.qml:78
  5292. msgctxt "@status"
  5293. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  5294. msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету."
  5295. #: resources/qml/PrinterSelector/MachineSelectorList.qml:30
  5296. #: resources/qml/PrinterSelector/MachineSelectorList.qml:32
  5297. msgctxt "@label"
  5298. msgid "Other printers"
  5299. msgstr "Другие принтеры"
  5300. #: resources/qml/ProfileOverview.qml:36
  5301. msgctxt "@title:column"
  5302. msgid "Setting"
  5303. msgstr "Параметр"
  5304. #: resources/qml/ProfileOverview.qml:37
  5305. msgctxt "@title:column"
  5306. msgid "Profile"
  5307. msgstr "Профиль"
  5308. #: resources/qml/ProfileOverview.qml:38
  5309. msgctxt "@title:column"
  5310. msgid "Current"
  5311. msgstr "Текущий"
  5312. #: resources/qml/ProfileOverview.qml:39
  5313. msgctxt "@title:column Unit of measurement"
  5314. msgid "Unit"
  5315. msgstr "Единица"
  5316. #: resources/qml/SearchBar.qml:17
  5317. msgctxt "@placeholder"
  5318. msgid "Search"
  5319. msgstr "Поиск"
  5320. #: resources/qml/Settings/SettingCategory.qml:115
  5321. msgctxt "@label"
  5322. msgid ""
  5323. "Some hidden settings use values different from their normal calculated value.\n"
  5324. "\n"
  5325. "Click to make these settings visible."
  5326. msgstr ""
  5327. "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n"
  5328. "\n"
  5329. "Щёлкните, чтобы сделать эти параметры видимыми."
  5330. #: resources/qml/Settings/SettingItem.qml:84
  5331. msgctxt "@label"
  5332. msgid "This setting is not used because all the settings that it influences are overridden."
  5333. msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются."
  5334. #: resources/qml/Settings/SettingItem.qml:89
  5335. msgctxt "@label Header for list of settings."
  5336. msgid "Affects"
  5337. msgstr "Влияет на"
  5338. #: resources/qml/Settings/SettingItem.qml:94
  5339. msgctxt "@label Header for list of settings."
  5340. msgid "Affected By"
  5341. msgstr "Зависит от"
  5342. #: resources/qml/Settings/SettingItem.qml:196
  5343. msgctxt "@label"
  5344. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  5345. msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров."
  5346. #: resources/qml/Settings/SettingItem.qml:200
  5347. msgctxt "@label"
  5348. msgid "This setting is resolved from conflicting extruder-specific values:"
  5349. msgstr "Эта настройка получена из конфликтующих значений экструдера:"
  5350. #: resources/qml/Settings/SettingItem.qml:240
  5351. msgctxt "@label"
  5352. msgid ""
  5353. "This setting has a value that is different from the profile.\n"
  5354. "\n"
  5355. "Click to restore the value of the profile."
  5356. msgstr ""
  5357. "Значение этого параметра отличается от значения в профиле.\n"
  5358. "\n"
  5359. "Щёлкните для восстановления значения из профиля."
  5360. #: resources/qml/Settings/SettingItem.qml:340
  5361. msgctxt "@label"
  5362. msgid ""
  5363. "This setting is normally calculated, but it currently has an absolute value set.\n"
  5364. "\n"
  5365. "Click to restore the calculated value."
  5366. msgstr ""
  5367. "Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n"
  5368. "\n"
  5369. "Щёлкните для восстановления вычисленного значения."
  5370. #: resources/qml/Settings/SettingView.qml:48
  5371. msgctxt "@label:textbox"
  5372. msgid "Search settings"
  5373. msgstr "Параметры поиска"
  5374. #: resources/qml/Settings/SettingView.qml:395
  5375. msgctxt "@action:menu"
  5376. msgid "Copy value to all extruders"
  5377. msgstr "Скопировать значение для всех экструдеров"
  5378. #: resources/qml/Settings/SettingView.qml:404
  5379. msgctxt "@action:menu"
  5380. msgid "Copy all changed values to all extruders"
  5381. msgstr "Копировать все измененные значения для всех экструдеров"
  5382. #: resources/qml/Settings/SettingView.qml:440
  5383. msgctxt "@action:menu"
  5384. msgid "Hide this setting"
  5385. msgstr "Спрятать этот параметр"
  5386. #: resources/qml/Settings/SettingView.qml:453
  5387. msgctxt "@action:menu"
  5388. msgid "Don't show this setting"
  5389. msgstr "Не показывать этот параметр"
  5390. #: resources/qml/Settings/SettingView.qml:457
  5391. msgctxt "@action:menu"
  5392. msgid "Keep this setting visible"
  5393. msgstr "Оставить этот параметр видимым"
  5394. #: resources/qml/Toolbar.qml:142
  5395. msgctxt "@label %1 is filled in with the name of an extruder"
  5396. msgid "Print Selected Model with %1"
  5397. msgid_plural "Print Selected Models with %1"
  5398. msgstr[0] "Печатать выбранную модель с %1"
  5399. msgstr[1] "Печатать выбранные модели с %1"
  5400. msgstr[2] "Печатать выбранные модели с %1"
  5401. #: resources/qml/ViewOrientationControls.qml:25
  5402. msgctxt "@info:tooltip"
  5403. msgid "3D View"
  5404. msgstr "Трехмерный вид"
  5405. #: resources/qml/ViewOrientationControls.qml:38
  5406. msgctxt "@info:tooltip"
  5407. msgid "Front View"
  5408. msgstr "Вид спереди"
  5409. #: resources/qml/ViewOrientationControls.qml:51
  5410. msgctxt "@info:tooltip"
  5411. msgid "Top View"
  5412. msgstr "Вид сверху"
  5413. #: resources/qml/ViewOrientationControls.qml:64
  5414. msgctxt "@info:tooltip"
  5415. msgid "Left View"
  5416. msgstr "Вид слева"
  5417. #: resources/qml/ViewOrientationControls.qml:77
  5418. msgctxt "@info:tooltip"
  5419. msgid "Right View"
  5420. msgstr "Вид справа"
  5421. #: resources/qml/ViewsSelector.qml:50
  5422. msgctxt "@label"
  5423. msgid "View type"
  5424. msgstr "Просмотр типа"
  5425. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  5426. msgctxt "@label"
  5427. msgid "Add a Cloud printer"
  5428. msgstr "Добавить облачный принтер"
  5429. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:73
  5430. msgctxt "@label"
  5431. msgid "Waiting for Cloud response"
  5432. msgstr "Ожидается ответ от облака"
  5433. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:83
  5434. msgctxt "@label"
  5435. msgid "No printers found in your account?"
  5436. msgstr "В учетной записи нет принтеров?"
  5437. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:117
  5438. msgctxt "@label"
  5439. msgid "The following printers in your account have been added in Cura:"
  5440. msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:"
  5441. #: resources/qml/WelcomePages/AddCloudPrintersView.qml:186
  5442. msgctxt "@button"
  5443. msgid "Add printer manually"
  5444. msgstr "Добавить принтер вручную"
  5445. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:203
  5446. msgctxt "@label"
  5447. msgid "Manufacturer"
  5448. msgstr "Производитель"
  5449. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:214
  5450. msgctxt "@label"
  5451. msgid "Profile author"
  5452. msgstr "Автор профиля"
  5453. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:226
  5454. msgctxt "@label"
  5455. msgid "Printer name"
  5456. msgstr "Имя принтера"
  5457. #: resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:232
  5458. msgctxt "@text"
  5459. msgid "Please name your printer"
  5460. msgstr "Присвойте имя принтеру"
  5461. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  5462. msgctxt "@label"
  5463. msgid "There is no printer found over your network."
  5464. msgstr "В вашей сети не найден принтер."
  5465. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:162
  5466. msgctxt "@label"
  5467. msgid "Refresh"
  5468. msgstr "Обновить"
  5469. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:173
  5470. msgctxt "@label"
  5471. msgid "Add printer by IP"
  5472. msgstr "Добавить принтер по IP-адресу"
  5473. #: resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:205
  5474. msgctxt "@label"
  5475. msgid "Troubleshooting"
  5476. msgstr "Поиск и устранение неисправностей"
  5477. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  5478. msgctxt "@label"
  5479. msgid "Add printer by IP address"
  5480. msgstr "Добавить принтер по IP-адресу"
  5481. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:128
  5482. msgctxt "@text"
  5483. msgid "Enter your printer's IP address."
  5484. msgstr "Введите IP-адрес своего принтера."
  5485. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:150
  5486. msgctxt "@button"
  5487. msgid "Add"
  5488. msgstr "Добавить"
  5489. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:195
  5490. msgctxt "@label"
  5491. msgid "Could not connect to device."
  5492. msgstr "Не удалось подключиться к устройству."
  5493. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:196
  5494. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:201
  5495. msgctxt "@label"
  5496. msgid "Can't connect to your UltiMaker printer?"
  5497. msgstr "Не удается подключиться к принтеру UltiMaker?"
  5498. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:200
  5499. msgctxt "@label"
  5500. msgid "The printer at this address has not responded yet."
  5501. msgstr "От принтера с этим адресом еще не поступал ответ."
  5502. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:231
  5503. msgctxt "@label"
  5504. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  5505. msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой."
  5506. #: resources/qml/WelcomePages/AddPrinterByIpContent.qml:312
  5507. msgctxt "@button"
  5508. msgid "Connect"
  5509. msgstr "Подключить"
  5510. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:29
  5511. msgctxt "@label"
  5512. msgid "Add a networked printer"
  5513. msgstr "Добавить сетевой принтер"
  5514. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:78
  5515. msgctxt "@label"
  5516. msgid "Add a non-networked printer"
  5517. msgstr "Добавить принтер, не подключенный к сети"
  5518. #: resources/qml/WelcomePages/AddThirdPartyPrinter.qml:102
  5519. msgctxt "@button"
  5520. msgid "Add UltiMaker printer via Digital Factory"
  5521. msgstr ""
  5522. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:29
  5523. msgctxt "@label"
  5524. msgid "In order to start using Cura you will need to configure a printer."
  5525. msgstr ""
  5526. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:36
  5527. msgctxt "@label"
  5528. msgid "What printer would you like to setup?"
  5529. msgstr "Какой принтер вы хотите настроить?"
  5530. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:55
  5531. msgctxt "@button"
  5532. msgid "UltiMaker printer"
  5533. msgstr ""
  5534. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:64
  5535. msgctxt "@button"
  5536. msgid "Non UltiMaker printer"
  5537. msgstr ""
  5538. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinter.qml:73
  5539. msgctxt "@button"
  5540. msgid "Learn more about adding printers to Cura"
  5541. msgstr "Подробно о добавлении принтеров в Cura"
  5542. #: resources/qml/WelcomePages/AddUltimakerOrThirdPartyPrinterStack.qml:29
  5543. msgctxt "@label"
  5544. msgid "Add printer"
  5545. msgstr "Добавление принтера"
  5546. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:33
  5547. msgctxt "@label"
  5548. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  5549. msgstr ""
  5550. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:70
  5551. msgctxt "@label"
  5552. msgid "If you are trying to add a new UltiMaker printer to Cura"
  5553. msgstr "Если вы пытаетесь добавить новый принтер UltiMaker в Cura"
  5554. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:80
  5555. msgctxt "@info"
  5556. msgid "Sign in into UltiMaker Digital Factory"
  5557. msgstr ""
  5558. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:81
  5559. msgctxt "@info"
  5560. msgid "Follow the procedure to add a new printer"
  5561. msgstr "Следуйте процедуре добавления нового принтера"
  5562. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:82
  5563. msgctxt "@info"
  5564. msgid "Your new printer will automatically appear in Cura"
  5565. msgstr "Новый принтер автоматически появится в Cura"
  5566. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:100
  5567. msgctxt "@button"
  5568. msgid "Learn more"
  5569. msgstr "Узнать больше"
  5570. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:121
  5571. msgctxt "@button"
  5572. msgid "Add local printer"
  5573. msgstr ""
  5574. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:129
  5575. msgctxt "@button"
  5576. msgid "Sign in to Digital Factory"
  5577. msgstr ""
  5578. #: resources/qml/WelcomePages/AddUltimakerPrinter.qml:133
  5579. msgctxt "@button"
  5580. msgid "Waiting for new printers"
  5581. msgstr ""
  5582. #: resources/qml/WelcomePages/ChangelogContent.qml:24
  5583. msgctxt "@label"
  5584. msgid "Release Notes"
  5585. msgstr "Примечания к выпуску"
  5586. #: resources/qml/WelcomePages/CloudContent.qml:123
  5587. msgctxt "@text"
  5588. msgid "Add material settings and plugins from the Marketplace"
  5589. msgstr "Добавляйте настройки материалов и плагины из Marketplace"
  5590. #: resources/qml/WelcomePages/CloudContent.qml:149
  5591. msgctxt "@text"
  5592. msgid "Backup and sync your material settings and plugins"
  5593. msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов"
  5594. #: resources/qml/WelcomePages/CloudContent.qml:175
  5595. msgctxt "@text"
  5596. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  5597. msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе UltiMaker"
  5598. #: resources/qml/WelcomePages/CloudContent.qml:189
  5599. msgctxt "@button"
  5600. msgid "Skip"
  5601. msgstr "Пропустить"
  5602. #: resources/qml/WelcomePages/CloudContent.qml:201
  5603. msgctxt "@text"
  5604. msgid "Create a free UltiMaker Account"
  5605. msgstr "Создайте бесплатную учетную запись UltiMaker"
  5606. #: resources/qml/WelcomePages/DropDownWidget.qml:93
  5607. msgctxt "@label"
  5608. msgid "Empty"
  5609. msgstr "Пусто"
  5610. #: resources/qml/WelcomePages/UserAgreementContent.qml:23
  5611. msgctxt "@label"
  5612. msgid "User Agreement"
  5613. msgstr "Пользовательское соглашение"
  5614. #: resources/qml/WelcomePages/UserAgreementContent.qml:67
  5615. msgctxt "@button"
  5616. msgid "Decline and close"
  5617. msgstr "Отклонить и закрыть"
  5618. #: resources/qml/WelcomePages/WhatsNewContent.qml:28
  5619. msgctxt "@label"
  5620. msgid "What's New"
  5621. msgstr "Что нового"
  5622. #: resources/qml/Widgets/ComboBox.qml:18
  5623. msgctxt "@label"
  5624. msgid "No items to select from"
  5625. msgstr "Нет элементов для выбора"
  5626. #~ msgctxt "@info:status"
  5627. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled."
  5628. #~ msgstr "При печати через кабель Cura отображает слои неточно."
  5629. #~ msgctxt "@info:title"
  5630. #~ msgid "Simulation View"
  5631. #~ msgstr "Вид моделирования"