cura.po 268 KB

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