cura.po 414 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.9\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-04-02 16:10+0200\n"
  10. "PO-Revision-Date: 2020-08-21 13:40+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Russian <info@lionbridge.com>, Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
  13. "Language: ru_RU\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 2.2.4\n"
  18. "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"
  19. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:523
  20. msgctxt "@info:progress"
  21. msgid "Loading machines..."
  22. msgstr "Загрузка принтеров..."
  23. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:530
  24. msgctxt "@info:progress"
  25. msgid "Setting up preferences..."
  26. msgstr "Настройка параметров..."
  27. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:668
  28. msgctxt "@info:progress"
  29. msgid "Initializing Active Machine..."
  30. msgstr "Инициализация активной машины..."
  31. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:799
  32. msgctxt "@info:progress"
  33. msgid "Initializing machine manager..."
  34. msgstr "Инициализация диспетчера машин..."
  35. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:813
  36. msgctxt "@info:progress"
  37. msgid "Initializing build volume..."
  38. msgstr "Инициализация объема печати..."
  39. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:884
  40. msgctxt "@info:progress"
  41. msgid "Setting up scene..."
  42. msgstr "Настройка сцены..."
  43. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:920
  44. msgctxt "@info:progress"
  45. msgid "Loading interface..."
  46. msgstr "Загрузка интерфейса..."
  47. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:925
  48. msgctxt "@info:progress"
  49. msgid "Initializing engine..."
  50. msgstr "Инициализация ядра..."
  51. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1242
  52. #, python-format
  53. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  54. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  55. msgstr "%(width).1f x %(depth).1f x %(height).1f мм"
  56. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1799
  57. #, python-brace-format
  58. msgctxt "@info:status"
  59. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  60. msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}"
  61. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1800
  62. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:188
  63. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  64. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  65. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  66. msgctxt "@info:title"
  67. msgid "Warning"
  68. msgstr "Внимание"
  69. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1809
  70. #, python-brace-format
  71. msgctxt "@info:status"
  72. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  73. msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}"
  74. #: /mnt/projects/ultimaker/cura/Cura/cura/CuraApplication.py:1810
  75. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:146
  76. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:153
  77. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:139
  78. msgctxt "@info:title"
  79. msgid "Error"
  80. msgstr "Ошибка"
  81. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/GlobalStacksModel.py:76
  82. #, python-brace-format
  83. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  84. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  85. msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!"
  86. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:226
  87. msgctxt "@label"
  88. msgid "Custom Material"
  89. msgstr "Собственный материал"
  90. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/MaterialManagementModel.py:227
  91. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:205
  92. msgctxt "@label"
  93. msgid "Custom"
  94. msgstr "Своё"
  95. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:338
  96. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:11
  97. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:42
  98. msgctxt "@label"
  99. msgid "Default"
  100. msgstr "Default"
  101. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:361
  102. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:110
  103. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:83
  104. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1612
  105. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:130
  106. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:171
  107. msgctxt "@label"
  108. msgid "Unknown"
  109. msgstr "Неизвестно"
  110. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:383
  111. msgctxt "@label"
  112. msgid "Custom profiles"
  113. msgstr "Собственные профили"
  114. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:418
  115. #, python-brace-format
  116. msgctxt "@item:inlistbox"
  117. msgid "All Supported Types ({0})"
  118. msgstr "Все поддерживаемые типы ({0})"
  119. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/QualityManagementModel.py:419
  120. msgctxt "@item:inlistbox"
  121. msgid "All Files (*)"
  122. msgstr "Все файлы (*)"
  123. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:14
  124. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:45
  125. msgctxt "@label"
  126. msgid "Visual"
  127. msgstr "Визуальный"
  128. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:15
  129. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:46
  130. msgctxt "@text"
  131. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  132. msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида."
  133. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:18
  134. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:49
  135. msgctxt "@label"
  136. msgid "Engineering"
  137. msgstr "Engineering"
  138. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:19
  139. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:50
  140. msgctxt "@text"
  141. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  142. msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски."
  143. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:22
  144. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:53
  145. msgctxt "@label"
  146. msgid "Draft"
  147. msgstr "Черновой"
  148. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentTranslations.py:23
  149. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/IntentCategoryModel.py:54
  150. msgctxt "@text"
  151. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  152. msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати."
  153. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:113
  154. msgctxt "@label"
  155. msgid "The printer(s) below cannot be connected because they are part of a group"
  156. msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы"
  157. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/DiscoveredPrintersModel.py:115
  158. msgctxt "@label"
  159. msgid "Available networked printers"
  160. msgstr "Доступные сетевые принтеры"
  161. #: /mnt/projects/ultimaker/cura/Cura/cura/Machines/Models/ExtrudersModel.py:211
  162. msgctxt "@menuitem"
  163. msgid "Not overridden"
  164. msgstr "Не переопределен"
  165. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:107
  166. msgctxt "@title:window"
  167. msgid "Cura can't start"
  168. msgstr "Не удалось запустить Cura"
  169. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:113
  170. msgctxt "@label crash message"
  171. msgid ""
  172. "<p><b>Oops, Ultimaker Cura has encountered something that doesn't seem right.</p></b>\n"
  173. " <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"
  174. " <p>Backups can be found in the configuration folder.</p>\n"
  175. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  176. " "
  177. msgstr ""
  178. "<p><b>В ПО Ultimaker Cura обнаружена ошибка.</p></b>\n"
  179. " <p>Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.</p>\n"
  180. " <p>Резервные копии хранятся в папке конфигурации.</p>\n"
  181. " <p>Отправьте нам этот отчет о сбое для устранения проблемы.</p>\n"
  182. " "
  183. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:122
  184. msgctxt "@action:button"
  185. msgid "Send crash report to Ultimaker"
  186. msgstr "Отправить отчет о сбое в Ultimaker"
  187. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:125
  188. msgctxt "@action:button"
  189. msgid "Show detailed crash report"
  190. msgstr "Показать подробный отчет о сбое"
  191. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:129
  192. msgctxt "@action:button"
  193. msgid "Show configuration folder"
  194. msgstr "Показать конфигурационный каталог"
  195. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:140
  196. msgctxt "@action:button"
  197. msgid "Backup and Reset Configuration"
  198. msgstr "Резервное копирование и сброс конфигурации"
  199. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:171
  200. msgctxt "@title:window"
  201. msgid "Crash Report"
  202. msgstr "Отчёт о сбое"
  203. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:190
  204. msgctxt "@label crash message"
  205. msgid ""
  206. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  207. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  208. " "
  209. msgstr ""
  210. "<p><b>В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы</p></b>\n"
  211. " <p>Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах</p>\n"
  212. " "
  213. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:198
  214. msgctxt "@title:groupbox"
  215. msgid "System information"
  216. msgstr "Информация о системе"
  217. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:207
  218. msgctxt "@label unknown version of Cura"
  219. msgid "Unknown"
  220. msgstr "Неизвестно"
  221. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:228
  222. msgctxt "@label Cura version number"
  223. msgid "Cura version"
  224. msgstr "Версия Cura"
  225. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:229
  226. msgctxt "@label"
  227. msgid "Cura language"
  228. msgstr "Язык Cura"
  229. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:230
  230. msgctxt "@label"
  231. msgid "OS language"
  232. msgstr "Язык ОС"
  233. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:231
  234. msgctxt "@label Type of platform"
  235. msgid "Platform"
  236. msgstr "Платформа"
  237. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:232
  238. msgctxt "@label"
  239. msgid "Qt version"
  240. msgstr "Версия Qt"
  241. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:233
  242. msgctxt "@label"
  243. msgid "PyQt version"
  244. msgstr "Версия PyQt"
  245. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:234
  246. msgctxt "@label OpenGL version"
  247. msgid "OpenGL"
  248. msgstr "OpenGL"
  249. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:264
  250. msgctxt "@label"
  251. msgid "Not yet initialized<br/>"
  252. msgstr "Еще не инициализировано<br/>"
  253. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:267
  254. #, python-brace-format
  255. msgctxt "@label OpenGL version"
  256. msgid "<li>OpenGL Version: {version}</li>"
  257. msgstr "<li>Версия OpenGL: {version}</li>"
  258. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:268
  259. #, python-brace-format
  260. msgctxt "@label OpenGL vendor"
  261. msgid "<li>OpenGL Vendor: {vendor}</li>"
  262. msgstr "<li>Поставщик OpenGL: {vendor}</li>"
  263. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:269
  264. #, python-brace-format
  265. msgctxt "@label OpenGL renderer"
  266. msgid "<li>OpenGL Renderer: {renderer}</li>"
  267. msgstr "<li>Средство визуализации OpenGL: {renderer}</li>"
  268. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:303
  269. msgctxt "@title:groupbox"
  270. msgid "Error traceback"
  271. msgstr "Обратное отслеживание ошибки"
  272. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:389
  273. msgctxt "@title:groupbox"
  274. msgid "Logs"
  275. msgstr "Журналы"
  276. #: /mnt/projects/ultimaker/cura/Cura/cura/CrashHandler.py:417
  277. msgctxt "@action:button"
  278. msgid "Send report"
  279. msgstr "Отправить отчёт"
  280. #: /mnt/projects/ultimaker/cura/Cura/cura/API/Account.py:179
  281. msgctxt "@info:title"
  282. msgid "Login failed"
  283. msgstr "Вход не выполнен"
  284. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationHelpers.py:92
  285. msgctxt "@message"
  286. msgid "Could not read response."
  287. msgstr "Не удалось прочитать ответ."
  288. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:187
  289. msgctxt "@info"
  290. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  291. msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен."
  292. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationService.py:242
  293. msgctxt "@info"
  294. msgid "Unable to reach the Ultimaker account server."
  295. msgstr "Нет связи с сервером учетных записей Ultimaker."
  296. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:74
  297. msgctxt "@message"
  298. msgid "The provided state is not correct."
  299. msgstr "Указано неверное состояние."
  300. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:85
  301. msgctxt "@message"
  302. msgid "Please give the required permissions when authorizing this application."
  303. msgstr "Дайте необходимые разрешения при авторизации в этом приложении."
  304. #: /mnt/projects/ultimaker/cura/Cura/cura/OAuth2/AuthorizationRequestHandler.py:92
  305. msgctxt "@message"
  306. msgid "Something unexpected happened when trying to log in, please try again."
  307. msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку."
  308. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:205
  309. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:132
  310. msgctxt "@title:window"
  311. msgid "File Already Exists"
  312. msgstr "Файл уже существует"
  313. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:206
  314. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:133
  315. #, python-brace-format
  316. msgctxt "@label Don't translate the XML tag <filename>!"
  317. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  318. msgstr "Файл <filename>{0}</filename> уже существует. Вы уверены, что желаете перезаписать его?"
  319. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:456
  320. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/ContainerManager.py:459
  321. msgctxt "@info:status"
  322. msgid "Invalid file URL:"
  323. msgstr "Неправильный URL-адрес файла:"
  324. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:713
  325. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:216
  326. msgctxt "@label"
  327. msgid "Nozzle"
  328. msgstr "Сопло"
  329. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:856
  330. msgctxt "@info:message Followed by a list of settings."
  331. msgid "Settings have been changed to match the current availability of extruders:"
  332. msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:"
  333. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:858
  334. msgctxt "@info:title"
  335. msgid "Settings updated"
  336. msgstr "Настройки обновлены"
  337. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/MachineManager.py:1478
  338. msgctxt "@info:title"
  339. msgid "Extruder(s) Disabled"
  340. msgstr "Экструдер (-ы) отключен (-ы)"
  341. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:144
  342. #, python-brace-format
  343. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  344. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  345. msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: <message>{1}</message>"
  346. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:151
  347. #, python-brace-format
  348. msgctxt "@info:status Don't translate the XML tag <filename>!"
  349. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  350. msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: Плагин записи уведомил об ошибке."
  351. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:156
  352. #, python-brace-format
  353. msgctxt "@info:status Don't translate the XML tag <filename>!"
  354. msgid "Exported profile to <filename>{0}</filename>"
  355. msgstr "Экспортирование профиля в <filename>{0}</filename>"
  356. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:157
  357. msgctxt "@info:title"
  358. msgid "Export succeeded"
  359. msgstr "Экспорт успешно завершен"
  360. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:188
  361. #, python-brace-format
  362. msgctxt "@info:status Don't translate the XML tags <filename>!"
  363. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  364. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>: {1}"
  365. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:192
  366. #, python-brace-format
  367. msgctxt "@info:status Don't translate the XML tags <filename>!"
  368. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  369. msgstr "Невозможно импортировать профиль из <filename>{0}</filename>, пока не добавлен принтер."
  370. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:207
  371. #, python-brace-format
  372. msgctxt "@info:status Don't translate the XML tags <filename>!"
  373. msgid "No custom profile to import in file <filename>{0}</filename>"
  374. msgstr "Отсутствует собственный профиль для импорта в файл <filename>{0}</filename>"
  375. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:211
  376. #, python-brace-format
  377. msgctxt "@info:status Don't translate the XML tags <filename>!"
  378. msgid "Failed to import profile from <filename>{0}</filename>:"
  379. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  380. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:235
  381. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:245
  382. #, python-brace-format
  383. msgctxt "@info:status Don't translate the XML tags <filename>!"
  384. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  385. msgstr "Данный профиль <filename>{0}</filename> содержит неверные данные, поэтому его невозможно импортировать."
  386. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:338
  387. #, python-brace-format
  388. msgctxt "@info:status Don't translate the XML tag <filename>!"
  389. msgid "Failed to import profile from <filename>{0}</filename>:"
  390. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  391. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:342
  392. #, python-brace-format
  393. msgctxt "@info:status"
  394. msgid "Successfully imported profile {0}."
  395. msgstr "Профиль {0} успешно импортирован."
  396. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:349
  397. #, python-brace-format
  398. msgctxt "@info:status"
  399. msgid "File {0} does not contain any valid profile."
  400. msgstr "В файле {0} нет подходящих профилей."
  401. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:352
  402. #, python-brace-format
  403. msgctxt "@info:status"
  404. msgid "Profile {0} has an unknown file type or is corrupted."
  405. msgstr "Профиль {0} имеет неизвестный тип файла или повреждён."
  406. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:426
  407. msgctxt "@label"
  408. msgid "Custom profile"
  409. msgstr "Собственный профиль"
  410. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:442
  411. msgctxt "@info:status"
  412. msgid "Profile is missing a quality type."
  413. msgstr "У профайла отсутствует тип качества."
  414. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:446
  415. msgctxt "@info:status"
  416. msgid "There is no active printer yet."
  417. msgstr ""
  418. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:452
  419. msgctxt "@info:status"
  420. msgid "Unable to add the profile."
  421. msgstr "Невозможно добавить профиль."
  422. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:466
  423. #, python-brace-format
  424. msgctxt "@info:status"
  425. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  426. msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"."
  427. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/CuraContainerRegistry.py:471
  428. #, python-brace-format
  429. msgctxt "@info:status"
  430. 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."
  431. msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества."
  432. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:36
  433. msgctxt "@info:not supported profile"
  434. msgid "Not supported"
  435. msgstr "Не поддерживается"
  436. #: /mnt/projects/ultimaker/cura/Cura/cura/Settings/cura_empty_instance_containers.py:55
  437. msgctxt "@info:No intent profile selected"
  438. msgid "Default"
  439. msgstr "Default"
  440. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:67
  441. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:24
  442. msgctxt "@info:status"
  443. msgid "Finding new location for objects"
  444. msgstr "Поиск места для новых объектов"
  445. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:71
  446. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:28
  447. msgctxt "@info:title"
  448. msgid "Finding Location"
  449. msgstr "Поиск места"
  450. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:150
  451. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:41
  452. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:76
  453. msgctxt "@info:status"
  454. msgid "Unable to find a location within the build volume for all objects"
  455. msgstr "Невозможно разместить все объекты внутри печатаемого объёма"
  456. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsAllBuildPlatesJob.py:151
  457. #: /mnt/projects/ultimaker/cura/Cura/cura/Arranging/ArrangeObjectsJob.py:42
  458. msgctxt "@info:title"
  459. msgid "Can't Find Location"
  460. msgstr "Не могу найти место"
  461. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/ObjectsModel.py:69
  462. #, python-brace-format
  463. msgctxt "@label"
  464. msgid "Group #{group_nr}"
  465. msgstr "Группа #{group_nr}"
  466. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:55
  467. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:268
  468. msgctxt "@action:button"
  469. msgid "Skip"
  470. msgstr ""
  471. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WhatsNewPagesModel.py:60
  472. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:185
  473. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:128
  474. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:482
  475. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:174
  476. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:127
  477. msgctxt "@action:button"
  478. msgid "Close"
  479. msgstr "Закрыть"
  480. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:56
  481. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:259
  482. msgctxt "@action:button"
  483. msgid "Next"
  484. msgstr "Следующий"
  485. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/WelcomePagesModel.py:272
  486. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:26
  487. msgctxt "@action:button"
  488. msgid "Finish"
  489. msgstr "Завершить"
  490. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:82
  491. msgctxt "@tooltip"
  492. msgid "Outer Wall"
  493. msgstr "Внешняя стенка"
  494. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:83
  495. msgctxt "@tooltip"
  496. msgid "Inner Walls"
  497. msgstr "Внутренние стенки"
  498. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:84
  499. msgctxt "@tooltip"
  500. msgid "Skin"
  501. msgstr "Покрытие"
  502. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:85
  503. msgctxt "@tooltip"
  504. msgid "Infill"
  505. msgstr "Заполнение"
  506. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:86
  507. msgctxt "@tooltip"
  508. msgid "Support Infill"
  509. msgstr "Заполнение поддержек"
  510. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:87
  511. msgctxt "@tooltip"
  512. msgid "Support Interface"
  513. msgstr "Связующий слой поддержек"
  514. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:88
  515. msgctxt "@tooltip"
  516. msgid "Support"
  517. msgstr "Поддержки"
  518. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:89
  519. msgctxt "@tooltip"
  520. msgid "Skirt"
  521. msgstr "Юбка"
  522. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:90
  523. msgctxt "@tooltip"
  524. msgid "Prime Tower"
  525. msgstr "Черновая башня"
  526. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:91
  527. msgctxt "@tooltip"
  528. msgid "Travel"
  529. msgstr "Перемещение"
  530. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:92
  531. msgctxt "@tooltip"
  532. msgid "Retractions"
  533. msgstr "Откаты"
  534. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/PrintInformation.py:93
  535. msgctxt "@tooltip"
  536. msgid "Other"
  537. msgstr "Другое"
  538. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:17
  539. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:67
  540. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:48
  541. msgctxt "@action:button"
  542. msgid "Add"
  543. msgstr "Добавить"
  544. #: /mnt/projects/ultimaker/cura/Cura/cura/UI/AddPrinterPagesModel.py:33
  545. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:81
  546. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:19
  547. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:58
  548. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:352
  549. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:42
  550. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:445
  551. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:150
  552. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:234
  553. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:82
  554. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:292
  555. msgctxt "@action:button"
  556. msgid "Cancel"
  557. msgstr "Отмена"
  558. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:98
  559. msgctxt "@info:status"
  560. 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."
  561. msgstr "Высота печатаемого объёма была уменьшена до значения параметра \"Последовательность печати\", чтобы предотвратить касание портала за напечатанные детали."
  562. #: /mnt/projects/ultimaker/cura/Cura/cura/BuildVolume.py:100
  563. msgctxt "@info:title"
  564. msgid "Build Volume"
  565. msgstr "Объём печати"
  566. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:113
  567. msgctxt "@info:backup_failed"
  568. msgid "Could not create archive from user data directory: {}"
  569. msgstr "Не удалось создать архив из каталога с данными пользователя: {}"
  570. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:119
  571. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:107
  572. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:113
  573. msgctxt "@info:title"
  574. msgid "Backup"
  575. msgstr "Резервное копирование"
  576. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:132
  577. msgctxt "@info:backup_failed"
  578. msgid "Tried to restore a Cura backup without having proper data or meta data."
  579. msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных."
  580. #: /mnt/projects/ultimaker/cura/Cura/cura/Backups/Backup.py:143
  581. msgctxt "@info:backup_failed"
  582. msgid "Tried to restore a Cura backup that is higher than the current version."
  583. msgstr "Выполнена попытка восстановить резервную копию Cura с более поздней версией, чем текущая."
  584. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:26
  585. msgctxt "@info:status"
  586. msgid "Multiplying and placing objects"
  587. msgstr "Размножение и размещение объектов"
  588. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:28
  589. msgctxt "@info:title"
  590. msgid "Placing Objects"
  591. msgstr "Размещение объектов"
  592. #: /mnt/projects/ultimaker/cura/Cura/cura/MultiplyObjectsJob.py:77
  593. msgctxt "@info:title"
  594. msgid "Placing Object"
  595. msgstr "Размещение объекта"
  596. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:23
  597. msgctxt "@action:button Preceded by 'Ready to'."
  598. msgid "Save to Removable Drive"
  599. msgstr "Сохранить на внешний носитель"
  600. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:24
  601. #, python-brace-format
  602. msgctxt "@item:inlistbox"
  603. msgid "Save to Removable Drive {0}"
  604. msgstr "Сохранить на внешний носитель {0}"
  605. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:66
  606. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/MeshFormatHandler.py:118
  607. msgctxt "@info:status"
  608. msgid "There are no file formats available to write with!"
  609. msgstr "Ни один из форматов файлов не доступен для записи!"
  610. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  611. #, python-brace-format
  612. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  613. msgid "Saving to Removable Drive <filename>{0}</filename>"
  614. msgstr "Сохранение на внешний носитель <filename>{0}</filename>"
  615. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:96
  616. msgctxt "@info:title"
  617. msgid "Saving"
  618. msgstr "Сохранение"
  619. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:106
  620. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:109
  621. #, python-brace-format
  622. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  623. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  624. msgstr "Не могу записать <filename>{0}</filename>: <message>{1}</message>"
  625. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:125
  626. #, python-brace-format
  627. msgctxt "@info:status Don't translate the tag {device}!"
  628. msgid "Could not find a file name when trying to write to {device}."
  629. msgstr "Не могу найти имя файла при записи в {device}."
  630. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:138
  631. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:153
  632. #, python-brace-format
  633. msgctxt "@info:status"
  634. msgid "Could not save to removable drive {0}: {1}"
  635. msgstr "Невозможно сохранить на внешний носитель {0}: {1}"
  636. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  637. #, python-brace-format
  638. msgctxt "@info:status"
  639. msgid "Saved to Removable Drive {0} as {1}"
  640. msgstr "Сохранено на внешний носитель {0} как {1}"
  641. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:147
  642. msgctxt "@info:title"
  643. msgid "File Saved"
  644. msgstr "Файл сохранён"
  645. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  646. msgctxt "@action:button"
  647. msgid "Eject"
  648. msgstr "Извлечь"
  649. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:148
  650. #, python-brace-format
  651. msgctxt "@action"
  652. msgid "Eject removable device {0}"
  653. msgstr "Извлекает внешний носитель {0}"
  654. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  655. #, python-brace-format
  656. msgctxt "@info:status"
  657. msgid "Ejected {0}. You can now safely remove the drive."
  658. msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель."
  659. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:163
  660. msgctxt "@info:title"
  661. msgid "Safely Remove Hardware"
  662. msgstr "Безопасное извлечение устройства"
  663. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py:165
  664. #, python-brace-format
  665. msgctxt "@info:status"
  666. msgid "Failed to eject {0}. Another program may be using the drive."
  667. msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство."
  668. #: /mnt/projects/ultimaker/cura/Cura/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py:76
  669. msgctxt "@item:intext"
  670. msgid "Removable Drive"
  671. msgstr "Внешний носитель"
  672. #: /mnt/projects/ultimaker/cura/Cura/plugins/AMFReader/__init__.py:15
  673. msgctxt "@item:inlistbox"
  674. msgid "AMF File"
  675. msgstr "Файл AMF"
  676. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeProfileReader/__init__.py:14
  677. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:14
  678. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/__init__.py:16
  679. msgctxt "@item:inlistbox"
  680. msgid "G-code File"
  681. msgstr "Файл G-code"
  682. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.py:27
  683. msgctxt "@action"
  684. msgid "Update Firmware"
  685. msgstr "Обновить прошивку"
  686. #: /mnt/projects/ultimaker/cura/Cura/plugins/X3DReader/__init__.py:13
  687. msgctxt "@item:inlistbox"
  688. msgid "X3D File"
  689. msgstr "Файл X3D"
  690. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:9
  691. msgctxt "@button"
  692. msgid "Decline"
  693. msgstr "Отклонить"
  694. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:10
  695. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:56
  696. msgctxt "@button"
  697. msgid "Agree"
  698. msgstr "Принимаю"
  699. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicenseModel.py:74
  700. msgctxt "@title:window"
  701. msgid "Plugin License Agreement"
  702. msgstr "Лицензионное соглашение плагина"
  703. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/LicensePresenter.py:38
  704. msgctxt "@button"
  705. msgid "Decline and remove from account"
  706. msgstr "Отклонить и удалить из учетной записи"
  707. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/SyncOrchestrator.py:79
  708. msgctxt "@info:generic"
  709. msgid "{} plugins failed to download"
  710. msgstr "Встраиваемые модули ({} шт.) не загружены"
  711. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:89
  712. msgctxt "@info:generic"
  713. msgid "Syncing..."
  714. msgstr "Синхронизация..."
  715. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/DownloadPresenter.py:93
  716. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:143
  717. msgctxt "@info:title"
  718. msgid "Changes detected from your Ultimaker account"
  719. msgstr "В вашей учетной записи Ultimaker обнаружены изменения"
  720. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/RestartApplicationPresenter.py:20
  721. msgctxt "@info:generic"
  722. msgid "You need to quit and restart {} before changes have effect."
  723. msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его."
  724. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:142
  725. msgctxt "@info:generic"
  726. msgid "Do you want to sync material and software packages with your account?"
  727. msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?"
  728. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/src/CloudSync/CloudPackageChecker.py:145
  729. msgctxt "@action:button"
  730. msgid "Sync"
  731. msgstr "Синхронизация"
  732. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:14
  733. msgctxt "@label"
  734. msgid "Per Model Settings"
  735. msgstr "Параметры модели"
  736. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/__init__.py:15
  737. msgctxt "@info:tooltip"
  738. msgid "Configure Per Model Settings"
  739. msgstr "Правка параметров модели"
  740. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:35
  741. msgctxt "@item:inmenu"
  742. msgid "Post Processing"
  743. msgstr "Пост-обработка"
  744. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.py:36
  745. msgctxt "@item:inmenu"
  746. msgid "Modify G-Code"
  747. msgstr "Изменить G-код"
  748. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  749. msgctxt "@info:status"
  750. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  751. msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией."
  752. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:382
  753. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:413
  754. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:437
  755. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:446
  756. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:455
  757. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:467
  758. msgctxt "@info:title"
  759. msgid "Unable to slice"
  760. msgstr "Невозможно нарезать"
  761. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:412
  762. #, python-brace-format
  763. msgctxt "@info:status"
  764. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  765. msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}"
  766. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:436
  767. #, python-brace-format
  768. msgctxt "@info:status"
  769. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  770. msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}"
  771. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:445
  772. msgctxt "@info:status"
  773. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  774. msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные."
  775. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:454
  776. #, python-format
  777. msgctxt "@info:status"
  778. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  779. msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s."
  780. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/CuraEngineBackend.py:463
  781. msgctxt "@info:status"
  782. msgid ""
  783. "Please review settings and check if your models:\n"
  784. "- Fit within the build volume\n"
  785. "- Are assigned to an enabled extruder\n"
  786. "- Are not all set as modifier meshes"
  787. msgstr ""
  788. "Проверьте настройки и убедитесь в том, что ваши модели:\n"
  789. "- соответствуют допустимой области печати\n"
  790. "- назначены активированному экструдеру\n"
  791. "- не заданы как объекты-модификаторы"
  792. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:52
  793. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  794. msgctxt "@info:status"
  795. msgid "Processing Layers"
  796. msgstr "Обработка слоёв"
  797. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraEngineBackend/ProcessSlicedLayersJob.py:260
  798. msgctxt "@info:title"
  799. msgid "Information"
  800. msgstr "Информация"
  801. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:42
  802. msgctxt "@item:inmenu"
  803. msgid "USB printing"
  804. msgstr "Печать через USB"
  805. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:43
  806. msgctxt "@action:button Preceded by 'Ready to'."
  807. msgid "Print via USB"
  808. msgstr "Печатать через USB"
  809. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:44
  810. msgctxt "@info:tooltip"
  811. msgid "Print via USB"
  812. msgstr "Печатать через USB"
  813. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:80
  814. msgctxt "@info:status"
  815. msgid "Connected via USB"
  816. msgstr "Подключено через USB"
  817. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:110
  818. msgctxt "@label"
  819. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  820. msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?"
  821. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  822. msgctxt "@message"
  823. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  824. msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена."
  825. #: /mnt/projects/ultimaker/cura/Cura/plugins/USBPrinting/USBPrinterOutputDevice.py:134
  826. msgctxt "@message"
  827. msgid "Print in Progress"
  828. msgstr "Идет печать"
  829. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileWriter/__init__.py:14
  830. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraProfileReader/__init__.py:14
  831. msgctxt "@item:inlistbox"
  832. msgid "Cura Profile"
  833. msgstr "Профиль Cura"
  834. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/UltimakerNetworkedPrinterAction.py:28
  835. msgctxt "@action"
  836. msgid "Connect via Network"
  837. msgstr "Подключиться через сеть"
  838. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:227
  839. msgctxt "info:status"
  840. msgid "New printer detected from your Ultimaker account"
  841. msgid_plural "New printers detected from your Ultimaker account"
  842. msgstr[0] "новый принтер обнаружен из учетной записи Ultimaker"
  843. msgstr[1] "новых принтера обнаружено из учетной записи Ultimaker"
  844. msgstr[2] "новых принтеров обнаружено из учетной записи Ultimaker"
  845. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:238
  846. #, python-brace-format
  847. msgctxt "info:status Filled in with printer name and printer model."
  848. msgid "Adding printer {name} ({model}) from your account"
  849. msgstr "Добавление принтера {name} ({model}) из вашей учетной записи"
  850. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:255
  851. #, python-brace-format
  852. msgctxt "info:{0} gets replaced by a number of printers"
  853. msgid "... and {0} other"
  854. msgid_plural "... and {0} others"
  855. msgstr[0] "... и еще {0} другой"
  856. msgstr[1] "... и еще {0} других"
  857. msgstr[2] "... и еще {0} других"
  858. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:260
  859. msgctxt "info:status"
  860. msgid "Printers added from Digital Factory:"
  861. msgstr "Принтеры, добавленные из Digital Factory:"
  862. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:316
  863. msgctxt "info:status"
  864. msgid "A cloud connection is not available for a printer"
  865. msgid_plural "A cloud connection is not available for some printers"
  866. msgstr[0] "Подключение к облаку недоступно для принтера"
  867. msgstr[1] "Подключение к облаку недоступно для некоторых принтеров"
  868. msgstr[2] "Подключение к облаку недоступно для некоторых принтеров"
  869. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:324
  870. msgctxt "info:status"
  871. msgid "This printer is not linked to the Digital Factory:"
  872. msgid_plural "These printers are not linked to the Digital Factory:"
  873. msgstr[0] "Это принтер не подключен Digital Factory:"
  874. msgstr[1] "Эти принтеры не подключены Digital Factory:"
  875. msgstr[2] "Эти принтеры не подключены Digital Factory:"
  876. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:329
  877. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:419
  878. msgctxt "info:name"
  879. msgid "Ultimaker Digital Factory"
  880. msgstr "Ultimaker Digital Factory"
  881. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:333
  882. #, python-brace-format
  883. msgctxt "info:status"
  884. msgid "To establish a connection, please visit the {website_link}"
  885. msgstr "Чтобы установить подключение, перейдите на сайт {website_link}"
  886. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:337
  887. msgctxt "@action:button"
  888. msgid "Keep printer configurations"
  889. msgstr "Сохранить конфигурации принтера"
  890. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:342
  891. msgctxt "@action:button"
  892. msgid "Remove printers"
  893. msgstr "Удалить принтеры"
  894. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:421
  895. #, python-brace-format
  896. msgctxt "@message {printer_name} is replaced with the name of the printer"
  897. msgid "{printer_name} will be removed until the next account sync."
  898. msgstr "{printer_name} будет удален до следующей синхронизации учетной записи."
  899. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:422
  900. #, python-brace-format
  901. msgctxt "@message {printer_name} is replaced with the name of the printer"
  902. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  903. msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}"
  904. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:423
  905. #, python-brace-format
  906. msgctxt "@message {printer_name} is replaced with the name of the printer"
  907. msgid "Are you sure you want to remove {printer_name} temporarily?"
  908. msgstr "Действительно удалить {printer_name} временно?"
  909. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:460
  910. msgctxt "@title:window"
  911. msgid "Remove printers?"
  912. msgstr "Удалить принтеры?"
  913. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:463
  914. #, python-brace-format
  915. msgctxt "@label"
  916. msgid ""
  917. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  918. "Are you sure you want to continue?"
  919. msgid_plural ""
  920. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  921. "Are you sure you want to continue?"
  922. msgstr[0] ""
  923. "Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\n"
  924. "Продолжить?"
  925. msgstr[1] ""
  926. "Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\n"
  927. "Продолжить?"
  928. msgstr[2] ""
  929. "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n"
  930. "Продолжить?"
  931. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDeviceManager.py:468
  932. msgctxt "@label"
  933. msgid ""
  934. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  935. "Are you sure you want to continue?"
  936. msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?"
  937. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:152
  938. msgctxt "@action:button"
  939. msgid "Print via cloud"
  940. msgstr "Печать через облако"
  941. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:153
  942. msgctxt "@properties:tooltip"
  943. msgid "Print via cloud"
  944. msgstr "Печать через облако"
  945. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:154
  946. msgctxt "@info:status"
  947. msgid "Connected via cloud"
  948. msgstr "Подключено через облако"
  949. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py:264
  950. #, python-brace-format
  951. msgctxt "@error:send"
  952. msgid "Unknown error code when uploading print job: {0}"
  953. msgstr "Неизвестный код ошибки при загрузке задания печати: {0}"
  954. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:27
  955. msgctxt "@info:status"
  956. msgid "tomorrow"
  957. msgstr "завтра"
  958. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Utils.py:30
  959. msgctxt "@info:status"
  960. msgid "today"
  961. msgstr "сегодня"
  962. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:15
  963. msgctxt "@info:status"
  964. msgid "Sending Print Job"
  965. msgstr "Отправка задания печати"
  966. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadProgressMessage.py:16
  967. msgctxt "@info:status"
  968. msgid "Uploading print job to printer."
  969. msgstr "Загрузка задания печати в принтер."
  970. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:27
  971. #, python-brace-format
  972. msgctxt "@info:status"
  973. 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."
  974. msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы."
  975. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:30
  976. msgctxt "@info:title"
  977. msgid "Not a group host"
  978. msgstr "Не главный принтер группы"
  979. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/NotClusterHostMessage.py:35
  980. msgctxt "@action"
  981. msgid "Configure group"
  982. msgstr "Настроить группу"
  983. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:27
  984. msgctxt "@info:status"
  985. msgid "Send and monitor print jobs from anywhere using your Ultimaker account."
  986. msgstr "Отправляйте и отслеживайте задания печати из любого места с помощью вашей учетной записи Ultimaker."
  987. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:33
  988. msgctxt "@info:status Ultimaker Cloud should not be translated."
  989. msgid "Connect to Ultimaker Digital Factory"
  990. msgstr "Подключение к Ultimaker Digital Factory"
  991. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/CloudFlowMessage.py:36
  992. msgctxt "@action"
  993. msgid "Get started"
  994. msgstr "Приступить"
  995. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:15
  996. msgctxt "@info:status"
  997. msgid "Please wait until the current job has been sent."
  998. msgstr "Дождитесь окончания отправки текущего задания."
  999. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadBlockedMessage.py:16
  1000. msgctxt "@info:title"
  1001. msgid "Print error"
  1002. msgstr "Ошибка печати"
  1003. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:15
  1004. msgctxt "@info:text"
  1005. msgid "Could not upload the data to the printer."
  1006. msgstr "Облако не залило данные на принтер."
  1007. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadErrorMessage.py:16
  1008. msgctxt "@info:title"
  1009. msgid "Network error"
  1010. msgstr "Ошибка сети"
  1011. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:24
  1012. #, python-brace-format
  1013. msgctxt "@info:status"
  1014. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  1015. msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}."
  1016. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/MaterialSyncMessage.py:26
  1017. msgctxt "@info:title"
  1018. msgid "Sending materials to printer"
  1019. msgstr "Отправка материалов на принтер"
  1020. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:16
  1021. msgctxt "@info:status"
  1022. msgid "Print job queue is full. The printer can't accept a new job."
  1023. msgstr "Очередь заданий печати заполнена. Принтер не может принять новое задание."
  1024. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadQueueFullMessage.py:17
  1025. msgctxt "@info:title"
  1026. msgid "Queue Full"
  1027. msgstr "Очередь заполнена"
  1028. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:15
  1029. msgctxt "@info:status"
  1030. msgid "Print job was successfully sent to the printer."
  1031. msgstr "Задание печати успешно отправлено на принтер."
  1032. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/PrintJobUploadSuccessMessage.py:16
  1033. msgctxt "@info:title"
  1034. msgid "Data Sent"
  1035. msgstr "Данные отправлены"
  1036. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:18
  1037. msgctxt "@info:status"
  1038. msgid "You are attempting to connect to a printer that is not running Ultimaker Connect. Please update the printer to the latest firmware."
  1039. msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает Ultimaker Connect. Обновите прошивку принтера до последней версии."
  1040. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Messages/LegacyDeviceNoLongerSupportedMessage.py:21
  1041. msgctxt "@info:title"
  1042. msgid "Update your printer"
  1043. msgstr "Обновите свой принтер"
  1044. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:58
  1045. msgctxt "@action:button Preceded by 'Ready to'."
  1046. msgid "Print over network"
  1047. msgstr "Печать через сеть"
  1048. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:59
  1049. msgctxt "@properties:tooltip"
  1050. msgid "Print over network"
  1051. msgstr "Печать через сеть"
  1052. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py:60
  1053. msgctxt "@info:status"
  1054. msgid "Connected over the network"
  1055. msgstr "Подключен по сети"
  1056. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelection.py:21
  1057. msgctxt "@action"
  1058. msgid "Select upgrades"
  1059. msgstr "Выбор обновлений"
  1060. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.py:24
  1061. msgctxt "@action"
  1062. msgid "Level build plate"
  1063. msgstr "Выравнивание стола"
  1064. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:203
  1065. msgctxt "@title:tab"
  1066. msgid "Recommended"
  1067. msgstr "Рекомендованная"
  1068. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.py:205
  1069. msgctxt "@title:tab"
  1070. msgid "Custom"
  1071. msgstr "Своя"
  1072. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:535
  1073. #, python-brace-format
  1074. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1075. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  1076. msgstr "Файл проекта <filename>{0}</filename> содержит неизвестный тип принтера <message>{1}</message>. Не удалось импортировать принтер. Вместо этого будут импортированы модели."
  1077. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:538
  1078. msgctxt "@info:title"
  1079. msgid "Open Project File"
  1080. msgstr "Открыть файл проекта"
  1081. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:634
  1082. #, python-brace-format
  1083. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1084. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  1085. msgstr "Файл проекта <filename>{0}</filename> внезапно стал недоступен: <message>{1}.</message>."
  1086. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:635
  1087. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:642
  1088. msgctxt "@info:title"
  1089. msgid "Can't Open Project File"
  1090. msgstr "Невозможно открыть файл проекта"
  1091. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:641
  1092. #, python-brace-format
  1093. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  1094. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  1095. msgstr ""
  1096. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/ThreeMFWorkspaceReader.py:693
  1097. #, python-brace-format
  1098. msgctxt "@info:error Don't translate the XML tag <filename>!"
  1099. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of Ultimaker Cura."
  1100. msgstr "Файл проекта <filename>{0}</filename> создан с использованием профилей, несовместимых с данной версией Ultimaker Cura."
  1101. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:27
  1102. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/__init__.py:33
  1103. msgctxt "@item:inlistbox"
  1104. msgid "3MF File"
  1105. msgstr "Файл 3MF"
  1106. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/__init__.py:17
  1107. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzReader/__init__.py:17
  1108. msgctxt "@item:inlistbox"
  1109. msgid "Compressed G-code File"
  1110. msgstr "Сжатый файл с G-кодом"
  1111. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeGzWriter/GCodeGzWriter.py:43
  1112. msgctxt "@error:not supported"
  1113. msgid "GCodeGzWriter does not support text mode."
  1114. msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим."
  1115. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:31
  1116. msgctxt "@info:title"
  1117. msgid "3D Model Assistant"
  1118. msgstr "Помощник по 3D-моделям"
  1119. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.py:96
  1120. #, python-brace-format
  1121. msgctxt "@info:status"
  1122. msgid ""
  1123. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  1124. "<p>{model_names}</p>\n"
  1125. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  1126. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  1127. msgstr ""
  1128. "<p>Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:</p>\n"
  1129. "<p>{model_names}</p>\n"
  1130. "<p>Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.</p>\n"
  1131. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ознакомиться с руководством по качеству печати</a></p>"
  1132. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerJob.py:127
  1133. msgctxt "@info"
  1134. msgid "Could not access update information."
  1135. msgstr "Не могу получить информацию об обновлениях."
  1136. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:17
  1137. #, python-brace-format
  1138. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1139. msgid "New features or bug-fixes may be available for your {machine_name}! If not already at the latest version, it is recommended to update the firmware on your printer to version {latest_version}."
  1140. msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}."
  1141. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:22
  1142. #, python-format
  1143. msgctxt "@info:title The %s gets replaced with the printer name."
  1144. msgid "New %s firmware available"
  1145. msgstr "Доступна новая прошивка %s"
  1146. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdateChecker/FirmwareUpdateCheckerMessage.py:28
  1147. msgctxt "@action:button"
  1148. msgid "How to update"
  1149. msgstr "Порядок обновления"
  1150. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/__init__.py:18
  1151. msgctxt "@item:inlistbox"
  1152. msgid "G File"
  1153. msgstr "Файл G"
  1154. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:347
  1155. msgctxt "@info:status"
  1156. msgid "Parsing G-code"
  1157. msgstr "Обработка G-code"
  1158. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:349
  1159. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:503
  1160. msgctxt "@info:title"
  1161. msgid "G-code Details"
  1162. msgstr "Параметры G-code"
  1163. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeReader/FlavorParser.py:501
  1164. msgctxt "@info:generic"
  1165. 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."
  1166. msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code."
  1167. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:12
  1168. msgctxt "@label"
  1169. msgid "Support Blocker"
  1170. msgstr "Блокировщик поддержки"
  1171. #: /mnt/projects/ultimaker/cura/Cura/plugins/SupportEraser/__init__.py:13
  1172. msgctxt "@info:tooltip"
  1173. msgid "Create a volume in which supports are not printed."
  1174. msgstr "Создание объема без печати элементов поддержки."
  1175. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:15
  1176. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  1177. msgid "Open Compressed Triangle Mesh"
  1178. msgstr "Open Compressed Triangle Mesh"
  1179. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:19
  1180. msgctxt "@item:inlistbox"
  1181. msgid "COLLADA Digital Asset Exchange"
  1182. msgstr "COLLADA Digital Asset Exchange"
  1183. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:23
  1184. msgctxt "@item:inlistbox"
  1185. msgid "glTF Binary"
  1186. msgstr "glTF Binary"
  1187. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:27
  1188. msgctxt "@item:inlistbox"
  1189. msgid "glTF Embedded JSON"
  1190. msgstr "glTF Embedded JSON"
  1191. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:36
  1192. msgctxt "@item:inlistbox"
  1193. msgid "Stanford Triangle Format"
  1194. msgstr "Stanford Triangle Format"
  1195. #: /mnt/projects/ultimaker/cura/Cura/plugins/TrimeshReader/__init__.py:40
  1196. msgctxt "@item:inlistbox"
  1197. msgid "Compressed COLLADA Digital Asset Exchange"
  1198. msgstr "Compressed COLLADA Digital Asset Exchange"
  1199. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPReader/__init__.py:22
  1200. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/__init__.py:28
  1201. msgctxt "@item:inlistbox"
  1202. msgid "Ultimaker Format Package"
  1203. msgstr "Пакет формата Ultimaker"
  1204. #: /mnt/projects/ultimaker/cura/Cura/plugins/LegacyProfileReader/__init__.py:14
  1205. msgctxt "@item:inlistbox"
  1206. msgid "Cura 15.04 profiles"
  1207. msgstr "Профили Cura 15.04"
  1208. #: /mnt/projects/ultimaker/cura/Cura/plugins/PrepareStage/__init__.py:12
  1209. msgctxt "@item:inmenu"
  1210. msgid "Prepare"
  1211. msgstr "Подготовка"
  1212. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/__init__.py:14
  1213. msgctxt "@item:inmenu"
  1214. msgid "Monitor"
  1215. msgstr "Монитор"
  1216. #: /mnt/projects/ultimaker/cura/Cura/plugins/XRayView/__init__.py:12
  1217. msgctxt "@item:inlistbox"
  1218. msgid "X-Ray view"
  1219. msgstr "Просмотр в рентгене"
  1220. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWriter.py:206
  1221. msgctxt "@error:zip"
  1222. msgid "Error writing 3mf file."
  1223. msgstr "Ошибка в ходе записи файла 3MF."
  1224. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:26
  1225. msgctxt "@item:inlistbox"
  1226. msgid "3MF file"
  1227. msgstr "3MF файл"
  1228. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/__init__.py:34
  1229. msgctxt "@item:inlistbox"
  1230. msgid "Cura Project 3MF file"
  1231. msgstr "3MF файл проекта Cura"
  1232. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:31
  1233. msgctxt "@error:zip"
  1234. msgid "3MF Writer plug-in is corrupt."
  1235. msgstr "Подключаемый модуль для записи 3MF поврежден."
  1236. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:59
  1237. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:92
  1238. msgctxt "@error:zip"
  1239. msgid "No permission to write the workspace here."
  1240. msgstr "Права на запись рабочей среды отсутствуют."
  1241. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFWriter/ThreeMFWorkspaceWriter.py:96
  1242. msgctxt "@error:zip"
  1243. msgid "The operating system does not allow saving a project file to this location or with this file name."
  1244. msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла."
  1245. #: /mnt/projects/ultimaker/cura/Cura/plugins/PreviewStage/__init__.py:13
  1246. msgctxt "@item:inmenu"
  1247. msgid "Preview"
  1248. msgstr "Предварительный просмотр"
  1249. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/__init__.py:15
  1250. msgctxt "@item:inlistbox"
  1251. msgid "Layer view"
  1252. msgstr "Просмотр слоёв"
  1253. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:124
  1254. msgctxt "@info:status"
  1255. msgid "Cura does not accurately display layers when Wire Printing is enabled."
  1256. msgstr "При печати через кабель Cura отображает слои неточно."
  1257. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:125
  1258. msgctxt "@info:title"
  1259. msgid "Simulation View"
  1260. msgstr "Вид моделирования"
  1261. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1262. msgctxt "@info:status"
  1263. msgid "Nothing is shown because you need to slice first."
  1264. msgstr "Ничего не отображается, поскольку сначала нужно выполнить нарезку на слои."
  1265. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:126
  1266. msgctxt "@info:title"
  1267. msgid "No layers to show"
  1268. msgstr "Нет слоев для отображения"
  1269. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationView.py:127
  1270. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:74
  1271. msgctxt "@info:option_text"
  1272. msgid "Do not show this message again"
  1273. msgstr "Больше не показывать это сообщение"
  1274. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.py:32
  1275. msgctxt "@action"
  1276. msgid "Machine Settings"
  1277. msgstr "Параметры принтера"
  1278. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/__init__.py:12
  1279. msgctxt "@item:inmenu"
  1280. msgid "Solid view"
  1281. msgstr "Просмотр модели"
  1282. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:71
  1283. msgctxt "@info:status"
  1284. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  1285. msgstr ""
  1286. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:73
  1287. msgctxt "@info:title"
  1288. msgid "Model Errors"
  1289. msgstr ""
  1290. #: /mnt/projects/ultimaker/cura/Cura/plugins/SolidView/SolidView.py:79
  1291. msgctxt "@action:button"
  1292. msgid "Learn more"
  1293. msgstr ""
  1294. #: /mnt/projects/ultimaker/cura/Cura/plugins/UFPWriter/UFPWriter.py:134
  1295. msgctxt "@info:error"
  1296. msgid "Can't write to UFP file:"
  1297. msgstr "Невозможно записать в файл UFP:"
  1298. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:74
  1299. msgctxt "@error:not supported"
  1300. msgid "GCodeWriter does not support non-text mode."
  1301. msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим."
  1302. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:80
  1303. #: /mnt/projects/ultimaker/cura/Cura/plugins/GCodeWriter/GCodeWriter.py:96
  1304. msgctxt "@warning:status"
  1305. msgid "Please prepare G-code before exporting."
  1306. msgstr "Подготовьте G-код перед экспортом."
  1307. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:14
  1308. msgctxt "@item:inlistbox"
  1309. msgid "JPG Image"
  1310. msgstr "JPG изображение"
  1311. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:18
  1312. msgctxt "@item:inlistbox"
  1313. msgid "JPEG Image"
  1314. msgstr "JPEG изображение"
  1315. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:22
  1316. msgctxt "@item:inlistbox"
  1317. msgid "PNG Image"
  1318. msgstr "PNG изображение"
  1319. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:26
  1320. msgctxt "@item:inlistbox"
  1321. msgid "BMP Image"
  1322. msgstr "BMP изображение"
  1323. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/__init__.py:30
  1324. msgctxt "@item:inlistbox"
  1325. msgid "GIF Image"
  1326. msgstr "GIF изображение"
  1327. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DriveApiService.py:86
  1328. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/RestoreBackupJob.py:23
  1329. msgctxt "@info:backup_status"
  1330. msgid "There was an error trying to restore your backup."
  1331. msgstr "При попытке восстановления данных из резервной копии возникла ошибка."
  1332. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:26
  1333. msgctxt "@info:title"
  1334. msgid "Backups"
  1335. msgstr "Резервные копии"
  1336. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:27
  1337. msgctxt "@info:backup_status"
  1338. msgid "There was an error while uploading your backup."
  1339. msgstr "При заливке вашей резервной копии возникла ошибка."
  1340. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:47
  1341. msgctxt "@info:backup_status"
  1342. msgid "Creating your backup..."
  1343. msgstr "Создание резервной копии..."
  1344. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:54
  1345. msgctxt "@info:backup_status"
  1346. msgid "There was an error while creating your backup."
  1347. msgstr "При создании резервной копии возникла ошибка."
  1348. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:58
  1349. msgctxt "@info:backup_status"
  1350. msgid "Uploading your backup..."
  1351. msgstr "Выполняется заливка вашей резервной копии..."
  1352. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:68
  1353. msgctxt "@info:backup_status"
  1354. msgid "Your backup has finished uploading."
  1355. msgstr "Заливка вашей резервной копии завершена."
  1356. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/CreateBackupJob.py:107
  1357. msgctxt "@error:file_size"
  1358. msgid "The backup exceeds the maximum file size."
  1359. msgstr "Размер файла резервной копии превышает максимально допустимый."
  1360. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/DrivePluginExtension.py:64
  1361. msgctxt "@item:inmenu"
  1362. msgid "Manage backups"
  1363. msgstr "Управление резервными копиями"
  1364. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:31
  1365. msgctxt "@title"
  1366. msgid "Update Firmware"
  1367. msgstr "Обновить прошивку"
  1368. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:39
  1369. msgctxt "@label"
  1370. 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."
  1371. msgstr "Прошивка является программным обеспечением, которое работает на плате вашего 3D принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера."
  1372. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:46
  1373. msgctxt "@label"
  1374. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  1375. msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований."
  1376. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:58
  1377. msgctxt "@action:button"
  1378. msgid "Automatically upgrade Firmware"
  1379. msgstr "Автоматическое обновление прошивки"
  1380. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:69
  1381. msgctxt "@action:button"
  1382. msgid "Upload custom Firmware"
  1383. msgstr "Залить собственную прошивку"
  1384. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:83
  1385. msgctxt "@label"
  1386. msgid "Firmware can not be updated because there is no connection with the printer."
  1387. msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру."
  1388. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:91
  1389. msgctxt "@label"
  1390. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1391. msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки."
  1392. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:98
  1393. msgctxt "@title:window"
  1394. msgid "Select custom firmware"
  1395. msgstr "Выбрать собственную прошивку"
  1396. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:119
  1397. msgctxt "@title:window"
  1398. msgid "Firmware Update"
  1399. msgstr "Обновление прошивки"
  1400. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:143
  1401. msgctxt "@label"
  1402. msgid "Updating firmware."
  1403. msgstr "Обновление прошивки."
  1404. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:145
  1405. msgctxt "@label"
  1406. msgid "Firmware update completed."
  1407. msgstr "Обновление прошивки завершено."
  1408. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:147
  1409. msgctxt "@label"
  1410. msgid "Firmware update failed due to an unknown error."
  1411. msgstr "Обновление прошивки не удалось из-за неизвестной ошибки."
  1412. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:149
  1413. msgctxt "@label"
  1414. msgid "Firmware update failed due to an communication error."
  1415. msgstr "Обновление прошивки не удалось из-за ошибки связи."
  1416. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:151
  1417. msgctxt "@label"
  1418. msgid "Firmware update failed due to an input/output error."
  1419. msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода."
  1420. #: /mnt/projects/ultimaker/cura/Cura/plugins/FirmwareUpdater/FirmwareUpdaterMachineAction.qml:153
  1421. msgctxt "@label"
  1422. msgid "Firmware update failed due to missing firmware."
  1423. msgstr "Обновление прошивки не удалось из-за её отсутствия."
  1424. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/Toolbox.qml:19
  1425. msgctxt "@title"
  1426. msgid "Marketplace"
  1427. msgstr "Магазин"
  1428. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxLicenseDialog.qml:36
  1429. msgctxt "@label"
  1430. msgid "You need to accept the license to install the package"
  1431. msgstr "Для установки пакета необходимо принять лицензию"
  1432. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:14
  1433. msgctxt "@title"
  1434. msgid "Changes from your account"
  1435. msgstr "Изменения в вашей учетной записи"
  1436. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1437. msgctxt "@button"
  1438. msgid "Dismiss"
  1439. msgstr "Отклонить"
  1440. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:23
  1441. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:123
  1442. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:182
  1443. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/FirstStartMachineActionsContent.qml:77
  1444. msgctxt "@button"
  1445. msgid "Next"
  1446. msgstr "Следующий"
  1447. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:52
  1448. msgctxt "@label"
  1449. msgid "The following packages will be added:"
  1450. msgstr "Будут добавлены следующие пакеты:"
  1451. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/CompatibilityDialog.qml:97
  1452. msgctxt "@label"
  1453. msgid "The following packages can not be installed because of an incompatible Cura version:"
  1454. msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:"
  1455. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:20
  1456. msgctxt "@title:window"
  1457. msgid "Confirm uninstall"
  1458. msgstr "Подтвердить удаление"
  1459. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:50
  1460. msgctxt "@text:window"
  1461. msgid "You are uninstalling materials and/or profiles that are still in use. Confirming will reset the following materials/profiles to their defaults."
  1462. msgstr "Вы удаляете материалы и/или профили, которые все еще используются. Подтверждение приведет к сбросу указанных ниже материалов/профилей к их настройкам по умолчанию."
  1463. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:51
  1464. msgctxt "@text:window"
  1465. msgid "Materials"
  1466. msgstr "Материалы"
  1467. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:52
  1468. msgctxt "@text:window"
  1469. msgid "Profiles"
  1470. msgstr "Профили"
  1471. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/dialogs/ToolboxConfirmUninstallResetDialog.qml:90
  1472. msgctxt "@action:button"
  1473. msgid "Confirm"
  1474. msgstr "Подтвердить"
  1475. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxErrorPage.qml:16
  1476. msgctxt "@info"
  1477. msgid "Could not connect to the Cura Package database. Please check your connection."
  1478. msgstr "Не удалось подключиться к базе данных пакета Cura. Проверьте свое подключение."
  1479. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1480. msgctxt "@label"
  1481. msgid "Community Contributions"
  1482. msgstr "Вклад в развитие сообщества"
  1483. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:33
  1484. msgctxt "@label"
  1485. msgid "Community Plugins"
  1486. msgstr "Плагины сообщества"
  1487. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDownloadsPage.qml:42
  1488. msgctxt "@label"
  1489. msgid "Generic Materials"
  1490. msgstr "Универсальные материалы"
  1491. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:89
  1492. msgctxt "@label"
  1493. msgid "Version"
  1494. msgstr "Версия"
  1495. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:96
  1496. msgctxt "@label"
  1497. msgid "Last updated"
  1498. msgstr "Последнее обновление"
  1499. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:103
  1500. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:138
  1501. msgctxt "@label"
  1502. msgid "Brand"
  1503. msgstr "Брэнд"
  1504. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxDetailPage.qml:110
  1505. msgctxt "@label"
  1506. msgid "Downloads"
  1507. msgstr "Загрузки"
  1508. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:33
  1509. msgctxt "@title:tab"
  1510. msgid "Installed plugins"
  1511. msgstr "Установленные встраиваемые модули"
  1512. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:72
  1513. msgctxt "@info"
  1514. msgid "No plugin has been installed."
  1515. msgstr "Встраиваемые модули не установлены."
  1516. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:86
  1517. msgctxt "@title:tab"
  1518. msgid "Installed materials"
  1519. msgstr "Установленные материалы"
  1520. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:125
  1521. msgctxt "@info"
  1522. msgid "No material has been installed."
  1523. msgstr "Материалы не установлены."
  1524. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:139
  1525. msgctxt "@title:tab"
  1526. msgid "Bundled plugins"
  1527. msgstr "Связанные встраиваемые модули"
  1528. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxInstalledPage.qml:184
  1529. msgctxt "@title:tab"
  1530. msgid "Bundled materials"
  1531. msgstr "Связанные материалы"
  1532. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:95
  1533. msgctxt "@label"
  1534. msgid "Website"
  1535. msgstr "Веб-сайт"
  1536. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxAuthorPage.qml:102
  1537. msgctxt "@label"
  1538. msgid "Email"
  1539. msgstr "Электронная почта"
  1540. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:22
  1541. msgctxt "@description"
  1542. msgid "Please sign in to get verified plugins and materials for Ultimaker Cura Enterprise"
  1543. msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для Ultimaker Cura Enterprise"
  1544. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/WelcomePage.qml:39
  1545. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:51
  1546. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:199
  1547. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:53
  1548. msgctxt "@button"
  1549. msgid "Sign in"
  1550. msgstr "Войти"
  1551. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/pages/ToolboxLoadingPage.qml:17
  1552. msgctxt "@info"
  1553. msgid "Fetching packages..."
  1554. msgstr "Выборка пакетов..."
  1555. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:34
  1556. msgctxt "@label"
  1557. msgid "Compatibility"
  1558. msgstr "Совместимость"
  1559. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:124
  1560. msgctxt "@label:table_header"
  1561. msgid "Machine"
  1562. msgstr "Принтер"
  1563. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:137
  1564. msgctxt "@label:table_header"
  1565. msgid "Build Plate"
  1566. msgstr "Рабочий стол"
  1567. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:143
  1568. msgctxt "@label:table_header"
  1569. msgid "Support"
  1570. msgstr "Поддержки"
  1571. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:149
  1572. msgctxt "@label:table_header"
  1573. msgid "Quality"
  1574. msgstr "Качество"
  1575. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:170
  1576. msgctxt "@action:label"
  1577. msgid "Technical Data Sheet"
  1578. msgstr "Таблица технических характеристик"
  1579. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:179
  1580. msgctxt "@action:label"
  1581. msgid "Safety Data Sheet"
  1582. msgstr "Паспорт безопасности"
  1583. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:188
  1584. msgctxt "@action:label"
  1585. msgid "Printing Guidelines"
  1586. msgstr "Инструкции по печати"
  1587. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxCompatibilityChart.qml:197
  1588. msgctxt "@action:label"
  1589. msgid "Website"
  1590. msgstr "Веб-сайт"
  1591. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:30
  1592. msgctxt "@title:tab"
  1593. msgid "Plugins"
  1594. msgstr "Плагины"
  1595. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:44
  1596. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:89
  1597. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:457
  1598. msgctxt "@title:tab"
  1599. msgid "Materials"
  1600. msgstr "Материалы"
  1601. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:58
  1602. msgctxt "@title:tab"
  1603. msgid "Installed"
  1604. msgstr "Установлено"
  1605. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxHeader.qml:86
  1606. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:39
  1607. msgctxt "@info:tooltip"
  1608. msgid "Go to Web Marketplace"
  1609. msgstr "Перейти в интернет-магазин"
  1610. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:22
  1611. msgctxt "@label"
  1612. msgid "Will install upon restarting"
  1613. msgstr "Установка выполнится при перезагрузке"
  1614. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:34
  1615. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:96
  1616. msgctxt "@action:button"
  1617. msgid "Update"
  1618. msgstr "Обновить"
  1619. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:35
  1620. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:97
  1621. msgctxt "@action:button"
  1622. msgid "Updating"
  1623. msgstr "Обновление"
  1624. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:36
  1625. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:98
  1626. msgctxt "@action:button"
  1627. msgid "Updated"
  1628. msgstr "Обновлено"
  1629. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:53
  1630. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1631. msgid "<a href='%1'>Log in</a> is required to update"
  1632. msgstr "Для выполнения обновления необходимо <a href='%1'>войти</a>"
  1633. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1634. msgctxt "@action:button"
  1635. msgid "Downgrade"
  1636. msgstr "Переход на более раннюю версию"
  1637. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxInstalledTileActions.qml:71
  1638. msgctxt "@action:button"
  1639. msgid "Uninstall"
  1640. msgstr "Удалить"
  1641. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:46
  1642. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:20
  1643. msgctxt "@action:button"
  1644. msgid "Installed"
  1645. msgstr "Установлено"
  1646. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:56
  1647. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1648. msgid "<a href='%1'>Log in</a> is required to install or update"
  1649. msgstr "Для выполнения установки или обновления необходимо <a href='%1'>войти</a>"
  1650. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDetailTileActions.qml:80
  1651. msgctxt "@label:The string between <a href=> and </a> is the highlighted link"
  1652. msgid "<a href='%1'>Buy material spools</a>"
  1653. msgstr "<a href='%1'>Приобретение катушек с материалом</a>"
  1654. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:27
  1655. msgctxt "@label"
  1656. msgid "Premium"
  1657. msgstr "Премиум"
  1658. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxDownloadsShowcase.qml:42
  1659. msgctxt "@label"
  1660. msgid "Search materials"
  1661. msgstr "Поиск материалов"
  1662. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:19
  1663. msgctxt "@info"
  1664. msgid "You will need to restart Cura before changes in packages have effect."
  1665. msgstr "Вам потребуется перезапустить Cura для активации изменений в пакетах."
  1666. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml:46
  1667. msgctxt "@info:button, %1 is the application name"
  1668. msgid "Quit %1"
  1669. msgstr "Выйти из %1"
  1670. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml:25
  1671. msgctxt "@action:button"
  1672. msgid "Back"
  1673. msgstr "Назад"
  1674. #: /mnt/projects/ultimaker/cura/Cura/plugins/Toolbox/resources/qml/components/ToolboxProgressButton.qml:18
  1675. msgctxt "@action:button"
  1676. msgid "Install"
  1677. msgstr "Установить"
  1678. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:42
  1679. msgctxt "@label"
  1680. msgid "Mesh Type"
  1681. msgstr "Тип объекта"
  1682. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:82
  1683. msgctxt "@label"
  1684. msgid "Normal model"
  1685. msgstr "Нормальная модель"
  1686. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:94
  1687. msgctxt "@label"
  1688. msgid "Print as support"
  1689. msgstr "Печать в качестве поддержки"
  1690. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:106
  1691. msgctxt "@label"
  1692. msgid "Modify settings for overlaps"
  1693. msgstr "Изменить настройки для перекрытий"
  1694. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:118
  1695. msgctxt "@label"
  1696. msgid "Don't support overlaps"
  1697. msgstr "Не поддерживать перекрытия"
  1698. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:149
  1699. msgctxt "@item:inlistbox"
  1700. msgid "Infill mesh only"
  1701. msgstr "Заполнение объекта"
  1702. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:150
  1703. msgctxt "@item:inlistbox"
  1704. msgid "Cutting mesh"
  1705. msgstr "Ограничивающий объект"
  1706. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/PerObjectSettingsPanel.qml:380
  1707. msgctxt "@action:button"
  1708. msgid "Select settings"
  1709. msgstr "Выберите параметры"
  1710. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:13
  1711. msgctxt "@title:window"
  1712. msgid "Select Settings to Customize for this model"
  1713. msgstr "Выберите параметр для изменения этой модели"
  1714. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:55
  1715. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:94
  1716. msgctxt "@label:textbox"
  1717. msgid "Filter..."
  1718. msgstr "Фильтр..."
  1719. #: /mnt/projects/ultimaker/cura/Cura/plugins/PerObjectSettingsTool/SettingPickDialog.qml:68
  1720. msgctxt "@label:checkbox"
  1721. msgid "Show all"
  1722. msgstr "Показать всё"
  1723. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:18
  1724. msgctxt "@title:window"
  1725. msgid "Post Processing Plugin"
  1726. msgstr "Плагин пост-обработки"
  1727. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:57
  1728. msgctxt "@label"
  1729. msgid "Post Processing Scripts"
  1730. msgstr "Скрипты пост-обработки"
  1731. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:233
  1732. msgctxt "@action"
  1733. msgid "Add a script"
  1734. msgstr "Добавить скрипт"
  1735. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:279
  1736. msgctxt "@label"
  1737. msgid "Settings"
  1738. msgstr "Параметры"
  1739. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:499
  1740. msgctxt "@info:tooltip"
  1741. msgid "Change active post-processing scripts."
  1742. msgstr "Измените активные скрипты пост-обработки."
  1743. #: /mnt/projects/ultimaker/cura/Cura/plugins/PostProcessingPlugin/PostProcessingPlugin.qml:503
  1744. msgctxt "@info:tooltip"
  1745. msgid "The following script is active:"
  1746. msgid_plural "The following scripts are active:"
  1747. msgstr[0] "Активны следующие скрипты:"
  1748. msgstr[1] "Активны следующие скрипты:"
  1749. msgstr[2] "Активны следующие скрипты:"
  1750. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:31
  1751. msgctxt "@label"
  1752. msgid "Queued"
  1753. msgstr "Запланировано"
  1754. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:66
  1755. msgctxt "@label link to connect manager"
  1756. msgid "Manage in browser"
  1757. msgstr "Управление через браузер"
  1758. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:99
  1759. msgctxt "@label"
  1760. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  1761. msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание."
  1762. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:110
  1763. msgctxt "@label"
  1764. msgid "Print jobs"
  1765. msgstr "Задания печати"
  1766. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:122
  1767. msgctxt "@label"
  1768. msgid "Total print time"
  1769. msgstr "Общее время печати"
  1770. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorQueue.qml:134
  1771. msgctxt "@label"
  1772. msgid "Waiting for"
  1773. msgstr "Ожидание"
  1774. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:20
  1775. msgctxt "@title:window"
  1776. msgid "Configuration Changes"
  1777. msgstr "Изменения конфигурации"
  1778. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:27
  1779. msgctxt "@action:button"
  1780. msgid "Override"
  1781. msgstr "Переопределить"
  1782. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:85
  1783. msgctxt "@label"
  1784. msgid "The assigned printer, %1, requires the following configuration change:"
  1785. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  1786. msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:"
  1787. msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  1788. msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  1789. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:89
  1790. msgctxt "@label"
  1791. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  1792. msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала."
  1793. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:99
  1794. msgctxt "@label"
  1795. msgid "Change material %1 from %2 to %3."
  1796. msgstr "Изменить материал %1 с %2 на %3."
  1797. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:102
  1798. msgctxt "@label"
  1799. msgid "Load %3 as material %1 (This cannot be overridden)."
  1800. msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)."
  1801. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:105
  1802. msgctxt "@label"
  1803. msgid "Change print core %1 from %2 to %3."
  1804. msgstr "Изменить экструдер %1 с %2 на %3."
  1805. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:108
  1806. msgctxt "@label"
  1807. msgid "Change build plate to %1 (This cannot be overridden)."
  1808. msgstr "Заменить рабочий стол на %1 (переопределение этого действия невозможно)."
  1809. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:115
  1810. msgctxt "@label"
  1811. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  1812. msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати."
  1813. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:153
  1814. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:184
  1815. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:191
  1816. msgctxt "@label"
  1817. msgid "Glass"
  1818. msgstr "Стекло"
  1819. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorConfigOverrideDialog.qml:156
  1820. msgctxt "@label"
  1821. msgid "Aluminum"
  1822. msgstr "Алюминий"
  1823. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:133
  1824. msgctxt "@label"
  1825. msgid "Unavailable printer"
  1826. msgstr "Недоступный принтер"
  1827. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:135
  1828. msgctxt "@label"
  1829. msgid "First available"
  1830. msgstr "Первое доступное"
  1831. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobCard.qml:250
  1832. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:254
  1833. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:523
  1834. msgctxt "@info"
  1835. msgid "Please update your printer's firmware to manage the queue remotely."
  1836. msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера."
  1837. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:45
  1838. msgctxt "@title:window"
  1839. msgid "Connect to Networked Printer"
  1840. msgstr "Подключение к сетевому принтеру"
  1841. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1842. msgctxt "@label"
  1843. 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."
  1844. msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер."
  1845. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:57
  1846. msgctxt "@label"
  1847. msgid "Select your printer from the list below:"
  1848. msgstr "Выберите свой принтер из приведенного ниже списка:"
  1849. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:77
  1850. msgctxt "@action:button"
  1851. msgid "Edit"
  1852. msgstr "Правка"
  1853. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:88
  1854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:156
  1855. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:55
  1856. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:138
  1857. msgctxt "@action:button"
  1858. msgid "Remove"
  1859. msgstr "Удалить"
  1860. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:96
  1861. msgctxt "@action:button"
  1862. msgid "Refresh"
  1863. msgstr "Обновить"
  1864. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:176
  1865. msgctxt "@label"
  1866. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1867. msgstr "Если ваш принтер отсутствует в списке, обратитесь к <a href='%1'>руководству по решению проблем с сетевой печатью</a>"
  1868. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:205
  1869. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:263
  1870. msgctxt "@label"
  1871. msgid "Type"
  1872. msgstr "Тип"
  1873. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:225
  1874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:279
  1875. msgctxt "@label"
  1876. msgid "Firmware version"
  1877. msgstr "Версия прошивки"
  1878. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:239
  1879. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:295
  1880. msgctxt "@label"
  1881. msgid "Address"
  1882. msgstr "Адрес"
  1883. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:263
  1884. msgctxt "@label"
  1885. msgid "This printer is not set up to host a group of printers."
  1886. msgstr "Данный принтер не настроен для управления группой принтеров."
  1887. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:267
  1888. msgctxt "@label"
  1889. msgid "This printer is the host for a group of %1 printers."
  1890. msgstr "Данный принтер управляет группой из %1 принтера (-ов)."
  1891. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:278
  1892. msgctxt "@label"
  1893. msgid "The printer at this address has not yet responded."
  1894. msgstr "Принтер по этому адресу ещё не отвечал."
  1895. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:283
  1896. msgctxt "@action:button"
  1897. msgid "Connect"
  1898. msgstr "Подключить"
  1899. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:296
  1900. msgctxt "@title:window"
  1901. msgid "Invalid IP address"
  1902. msgstr "Недействительный IP-адрес"
  1903. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:297
  1904. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:146
  1905. msgctxt "@text"
  1906. msgid "Please enter a valid IP address."
  1907. msgstr "Введите действительный IP-адрес."
  1908. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:308
  1909. msgctxt "@title:window"
  1910. msgid "Printer Address"
  1911. msgstr "Адрес принтера"
  1912. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:331
  1913. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:102
  1914. msgctxt "@label"
  1915. msgid "Enter the IP address of your printer on the network."
  1916. msgstr "Введите IP-адрес принтера в сети."
  1917. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/DiscoverUM3Action.qml:361
  1918. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:139
  1919. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:227
  1920. msgctxt "@action:button"
  1921. msgid "OK"
  1922. msgstr "OK"
  1923. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:11
  1924. msgctxt "@title:window"
  1925. msgid "Print over network"
  1926. msgstr "Печать через сеть"
  1927. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:52
  1928. msgctxt "@action:button"
  1929. msgid "Print"
  1930. msgstr "Печать"
  1931. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/PrintWindow.qml:80
  1932. msgctxt "@label"
  1933. msgid "Printer selection"
  1934. msgstr "Выбор принтера"
  1935. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:54
  1936. msgctxt "@label"
  1937. msgid "Move to top"
  1938. msgstr "Переместить в начало"
  1939. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:70
  1940. msgctxt "@label"
  1941. msgid "Delete"
  1942. msgstr "Удалить"
  1943. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:100
  1944. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:290
  1945. msgctxt "@label"
  1946. msgid "Resume"
  1947. msgstr "Продолжить"
  1948. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:102
  1949. msgctxt "@label"
  1950. msgid "Pausing..."
  1951. msgstr "Приостановка..."
  1952. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:104
  1953. msgctxt "@label"
  1954. msgid "Resuming..."
  1955. msgstr "Возобновляется..."
  1956. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:106
  1957. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:285
  1958. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:294
  1959. msgctxt "@label"
  1960. msgid "Pause"
  1961. msgstr "Пауза"
  1962. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1963. msgctxt "@label"
  1964. msgid "Aborting..."
  1965. msgstr "Прерывается..."
  1966. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:124
  1967. msgctxt "@label"
  1968. msgid "Abort"
  1969. msgstr "Прервать"
  1970. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:143
  1971. msgctxt "@label %1 is the name of a print job."
  1972. msgid "Are you sure you want to move %1 to the top of the queue?"
  1973. msgstr "Вы уверены, что хотите переместить %1 в начало очереди?"
  1974. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:144
  1975. msgctxt "@window:title"
  1976. msgid "Move print job to top"
  1977. msgstr "Переместить задание печати в начало очереди"
  1978. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:153
  1979. msgctxt "@label %1 is the name of a print job."
  1980. msgid "Are you sure you want to delete %1?"
  1981. msgstr "Вы уверены, что хотите удалить %1?"
  1982. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:154
  1983. msgctxt "@window:title"
  1984. msgid "Delete print job"
  1985. msgstr "Удалить задание печати"
  1986. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:163
  1987. msgctxt "@label %1 is the name of a print job."
  1988. msgid "Are you sure you want to abort %1?"
  1989. msgstr "Вы уверены, что хотите прервать %1?"
  1990. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorContextMenu.qml:164
  1991. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:336
  1992. msgctxt "@window:title"
  1993. msgid "Abort print"
  1994. msgstr "Прервать печать"
  1995. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:78
  1996. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:90
  1997. msgctxt "@label:status"
  1998. msgid "Aborted"
  1999. msgstr "Прервано"
  2000. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:80
  2001. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:82
  2002. msgctxt "@label:status"
  2003. msgid "Finished"
  2004. msgstr "Завершено"
  2005. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:84
  2006. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:86
  2007. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:364
  2008. msgctxt "@label:status"
  2009. msgid "Preparing..."
  2010. msgstr "Подготовка..."
  2011. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:88
  2012. msgctxt "@label:status"
  2013. msgid "Aborting..."
  2014. msgstr "Прерывается..."
  2015. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:92
  2016. msgctxt "@label:status"
  2017. msgid "Pausing..."
  2018. msgstr "Приостановка..."
  2019. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:94
  2020. msgctxt "@label:status"
  2021. msgid "Paused"
  2022. msgstr "Приостановлено"
  2023. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:96
  2024. msgctxt "@label:status"
  2025. msgid "Resuming..."
  2026. msgstr "Возобновляется..."
  2027. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:98
  2028. msgctxt "@label:status"
  2029. msgid "Action required"
  2030. msgstr "Необходимое действие"
  2031. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrintJobProgressBar.qml:100
  2032. msgctxt "@label:status"
  2033. msgid "Finishes %1 at %2"
  2034. msgstr "Завершение %1 в %2"
  2035. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:154
  2036. msgctxt "@label link to Connect and Cloud interfaces"
  2037. msgid "Manage printer"
  2038. msgstr "Управление принтером"
  2039. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:348
  2040. msgctxt "@label:status"
  2041. msgid "Loading..."
  2042. msgstr "Загрузка..."
  2043. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:352
  2044. msgctxt "@label:status"
  2045. msgid "Unavailable"
  2046. msgstr "Недоступен"
  2047. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:356
  2048. msgctxt "@label:status"
  2049. msgid "Unreachable"
  2050. msgstr "Недостижимо"
  2051. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:360
  2052. msgctxt "@label:status"
  2053. msgid "Idle"
  2054. msgstr "Простой"
  2055. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:369
  2056. msgctxt "@label:status"
  2057. msgid "Printing"
  2058. msgstr "Печать"
  2059. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:410
  2060. msgctxt "@label"
  2061. msgid "Untitled"
  2062. msgstr "Без имени"
  2063. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:431
  2064. msgctxt "@label"
  2065. msgid "Anonymous"
  2066. msgstr "Анонимн"
  2067. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:458
  2068. msgctxt "@label:status"
  2069. msgid "Requires configuration changes"
  2070. msgstr "Необходимо внести изменения конфигурации"
  2071. #: /mnt/projects/ultimaker/cura/Cura/plugins/UM3NetworkPrinting/resources/qml/MonitorPrinterCard.qml:496
  2072. msgctxt "@action:button"
  2073. msgid "Details"
  2074. msgstr "Подробности"
  2075. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:30
  2076. msgctxt "@label"
  2077. msgid "Please select any upgrades made to this Ultimaker Original"
  2078. msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker Original"
  2079. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/UMOUpgradeSelectionMachineAction.qml:41
  2080. msgctxt "@label"
  2081. msgid "Heated Build Plate (official kit or self-built)"
  2082. msgstr "Нагреваемый стол (официальный набор или самодельный)"
  2083. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:30
  2084. msgctxt "@title"
  2085. msgid "Build Plate Leveling"
  2086. msgstr "Выравнивание стола"
  2087. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:44
  2088. msgctxt "@label"
  2089. 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."
  2090. msgstr "Сейчас вы можете отрегулировать ваш стол, чтобы быть уверенным в качестве последующей печати. При нажатии на кнопку «Перейти к следующей позиции» сопло перейдёт на другую позиции, которую можно будет отрегулировать."
  2091. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:57
  2092. msgctxt "@label"
  2093. 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."
  2094. msgstr "Для каждой позиции, вставьте кусок бумаги под сопло и отрегулируйте высоту стола. Когда кончик сопла немного прижимает бумагу к столу, значит вы выставили правильную высоту стола."
  2095. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:75
  2096. msgctxt "@action:button"
  2097. msgid "Start Build Plate Leveling"
  2098. msgstr "Начало выравнивания стола"
  2099. #: /mnt/projects/ultimaker/cura/Cura/plugins/UltimakerMachineActions/BedLevelMachineAction.qml:87
  2100. msgctxt "@action:button"
  2101. msgid "Move to Next Position"
  2102. msgstr "Перейти к следующей позиции"
  2103. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:15
  2104. msgctxt "@title:window"
  2105. msgid "Open Project"
  2106. msgstr "Открытие проекта"
  2107. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:62
  2108. msgctxt "@action:ComboBox Update/override existing profile"
  2109. msgid "Update existing"
  2110. msgstr "Обновить существующий"
  2111. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:63
  2112. msgctxt "@action:ComboBox Save settings in a new profile"
  2113. msgid "Create new"
  2114. msgstr "Создать новый"
  2115. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:75
  2116. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:69
  2117. msgctxt "@action:title"
  2118. msgid "Summary - Cura Project"
  2119. msgstr "Сводка - Проект Cura"
  2120. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:97
  2121. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:93
  2122. msgctxt "@action:label"
  2123. msgid "Printer settings"
  2124. msgstr "Параметры принтера"
  2125. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:113
  2126. msgctxt "@info:tooltip"
  2127. msgid "How should the conflict in the machine be resolved?"
  2128. msgstr "Как следует решать конфликт в принтере?"
  2129. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:167
  2130. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:102
  2131. msgctxt "@action:label"
  2132. msgid "Type"
  2133. msgstr "Тип"
  2134. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:183
  2135. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2136. msgctxt "@action:label"
  2137. msgid "Printer Group"
  2138. msgstr "Группа принтеров"
  2139. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:205
  2140. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:218
  2141. msgctxt "@action:label"
  2142. msgid "Profile settings"
  2143. msgstr "Параметры профиля"
  2144. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:221
  2145. msgctxt "@info:tooltip"
  2146. msgid "How should the conflict in the profile be resolved?"
  2147. msgstr "Как следует решать конфликт в профиле?"
  2148. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:242
  2149. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:353
  2150. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:117
  2151. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:242
  2152. msgctxt "@action:label"
  2153. msgid "Name"
  2154. msgstr "Название"
  2155. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:258
  2156. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:259
  2157. msgctxt "@action:label"
  2158. msgid "Intent"
  2159. msgstr "Intent"
  2160. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:274
  2161. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:226
  2162. msgctxt "@action:label"
  2163. msgid "Not in profile"
  2164. msgstr "Вне профиля"
  2165. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:279
  2166. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:231
  2167. msgctxt "@action:label"
  2168. msgid "%1 override"
  2169. msgid_plural "%1 overrides"
  2170. msgstr[0] "%1 перекрыт"
  2171. msgstr[1] "%1 перекрыто"
  2172. msgstr[2] "%1 перекрыто"
  2173. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:290
  2174. msgctxt "@action:label"
  2175. msgid "Derivative from"
  2176. msgstr "Производное от"
  2177. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:295
  2178. msgctxt "@action:label"
  2179. msgid "%1, %2 override"
  2180. msgid_plural "%1, %2 overrides"
  2181. msgstr[0] "%1, %2 перекрыто"
  2182. msgstr[1] "%1, %2 перекрыто"
  2183. msgstr[2] "%1, %2 перекрыто"
  2184. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:312
  2185. msgctxt "@action:label"
  2186. msgid "Material settings"
  2187. msgstr "Параметры материала"
  2188. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:328
  2189. msgctxt "@info:tooltip"
  2190. msgid "How should the conflict in the material be resolved?"
  2191. msgstr "Как следует решать конфликт в материале?"
  2192. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:373
  2193. msgctxt "@action:label"
  2194. msgid "Setting visibility"
  2195. msgstr "Видимость параметров"
  2196. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:382
  2197. msgctxt "@action:label"
  2198. msgid "Mode"
  2199. msgstr "Режим"
  2200. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:398
  2201. msgctxt "@action:label"
  2202. msgid "Visible settings:"
  2203. msgstr "Видимые параметры:"
  2204. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:403
  2205. msgctxt "@action:label"
  2206. msgid "%1 out of %2"
  2207. msgstr "%1 из %2"
  2208. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:429
  2209. msgctxt "@action:warning"
  2210. msgid "Loading a project will clear all models on the build plate."
  2211. msgstr "Загрузка проекта приведет к удалению всех моделей на рабочем столе."
  2212. #: /mnt/projects/ultimaker/cura/Cura/plugins/3MFReader/WorkspaceDialog.qml:457
  2213. msgctxt "@action:button"
  2214. msgid "Open"
  2215. msgstr "Открыть"
  2216. #: /mnt/projects/ultimaker/cura/Cura/plugins/ModelChecker/ModelChecker.qml:22
  2217. msgctxt "@info:tooltip"
  2218. msgid "Some things could be problematic in this print. Click to see tips for adjustment."
  2219. msgstr "С этой печатью могут быть связаны некоторые проблемы. Щелкните для просмотра советов по регулировке."
  2220. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:100
  2221. msgctxt "@info"
  2222. msgid ""
  2223. "Please make sure your printer has a connection:\n"
  2224. "- Check if the printer is turned on.\n"
  2225. "- Check if the printer is connected to the network.\n"
  2226. "- Check if you are signed in to discover cloud-connected printers."
  2227. msgstr ""
  2228. "Проверьте наличие подключения к принтеру:\n"
  2229. "- Убедитесь, что принтер включен.\n"
  2230. "- Убедитесь, что принтер подключен к сети.\n"
  2231. "- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)."
  2232. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:117
  2233. msgctxt "@info"
  2234. msgid "Please connect your printer to the network."
  2235. msgstr "Подключите принтер к сети."
  2236. #: /mnt/projects/ultimaker/cura/Cura/plugins/MonitorStage/MonitorMain.qml:155
  2237. msgctxt "@label link to technical assistance"
  2238. msgid "View user manuals online"
  2239. msgstr "Просмотр руководств пользователей онлайн"
  2240. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:17
  2241. msgctxt "@title:window"
  2242. msgid "More information on anonymous data collection"
  2243. msgstr "Дополнительная информация о сборе анонимных данных"
  2244. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:74
  2245. msgctxt "@text:window"
  2246. 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:"
  2247. msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:"
  2248. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:110
  2249. msgctxt "@text:window"
  2250. msgid "I don't want to send anonymous data"
  2251. msgstr "Не хочу отправлять анонимные данные"
  2252. #: /mnt/projects/ultimaker/cura/Cura/plugins/SliceInfoPlugin/MoreInfoWindow.qml:119
  2253. msgctxt "@text:window"
  2254. msgid "Allow sending anonymous data"
  2255. msgstr "Разрешить отправку анонимных данных"
  2256. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:20
  2257. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:49
  2258. msgctxt "@label"
  2259. msgid "Color scheme"
  2260. msgstr "Цветовая схема"
  2261. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:109
  2262. msgctxt "@label:listbox"
  2263. msgid "Material Color"
  2264. msgstr "Цвет материала"
  2265. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:113
  2266. msgctxt "@label:listbox"
  2267. msgid "Line Type"
  2268. msgstr "Тип линии"
  2269. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:117
  2270. msgctxt "@label:listbox"
  2271. msgid "Speed"
  2272. msgstr "Скорость"
  2273. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:121
  2274. msgctxt "@label:listbox"
  2275. msgid "Layer Thickness"
  2276. msgstr ""
  2277. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:125
  2278. msgctxt "@label:listbox"
  2279. msgid "Line Width"
  2280. msgstr ""
  2281. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:163
  2282. msgctxt "@label"
  2283. msgid "Compatibility Mode"
  2284. msgstr "Режим совместимости"
  2285. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:237
  2286. msgctxt "@label"
  2287. msgid "Travels"
  2288. msgstr "Перемещения"
  2289. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:243
  2290. msgctxt "@label"
  2291. msgid "Helpers"
  2292. msgstr "Помощники"
  2293. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:249
  2294. msgctxt "@label"
  2295. msgid "Shell"
  2296. msgstr "Ограждение"
  2297. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:255
  2298. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:65
  2299. msgctxt "@label"
  2300. msgid "Infill"
  2301. msgstr "Заполнение"
  2302. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:263
  2303. msgctxt "@label"
  2304. msgid "Starts"
  2305. msgstr ""
  2306. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:314
  2307. msgctxt "@label"
  2308. msgid "Only Show Top Layers"
  2309. msgstr "Показать только верхние слои"
  2310. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:324
  2311. msgctxt "@label"
  2312. msgid "Show 5 Detailed Layers On Top"
  2313. msgstr "Показать 5 детализированных слоёв сверху"
  2314. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:338
  2315. msgctxt "@label"
  2316. msgid "Top / Bottom"
  2317. msgstr "Дно / крышка"
  2318. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:342
  2319. msgctxt "@label"
  2320. msgid "Inner Wall"
  2321. msgstr "Внутренняя стенка"
  2322. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:405
  2323. msgctxt "@label"
  2324. msgid "min"
  2325. msgstr "мин."
  2326. #: /mnt/projects/ultimaker/cura/Cura/plugins/SimulationView/SimulationViewMenuComponent.qml:464
  2327. msgctxt "@label"
  2328. msgid "max"
  2329. msgstr "макс."
  2330. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:63
  2331. msgctxt "@title:label"
  2332. msgid "Nozzle Settings"
  2333. msgstr "Параметры сопла"
  2334. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:75
  2335. msgctxt "@label"
  2336. msgid "Nozzle size"
  2337. msgstr "Диаметр сопла"
  2338. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:79
  2339. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:93
  2340. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:109
  2341. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:124
  2342. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:74
  2343. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:89
  2344. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:104
  2345. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:205
  2346. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:225
  2347. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:245
  2348. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:265
  2349. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:283
  2350. msgctxt "@label"
  2351. msgid "mm"
  2352. msgstr "мм"
  2353. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:89
  2354. msgctxt "@label"
  2355. msgid "Compatible material diameter"
  2356. msgstr "Диаметр совместимого материала"
  2357. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:105
  2358. msgctxt "@label"
  2359. msgid "Nozzle offset X"
  2360. msgstr "Смещение сопла по оси X"
  2361. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:120
  2362. msgctxt "@label"
  2363. msgid "Nozzle offset Y"
  2364. msgstr "Смещение сопла по оси Y"
  2365. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:135
  2366. msgctxt "@label"
  2367. msgid "Cooling Fan Number"
  2368. msgstr "Номер охлаждающего вентилятора"
  2369. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:163
  2370. msgctxt "@title:label"
  2371. msgid "Extruder Start G-code"
  2372. msgstr "Стартовый G-код экструдера"
  2373. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml:177
  2374. msgctxt "@title:label"
  2375. msgid "Extruder End G-code"
  2376. msgstr "Завершающий G-код экструдера"
  2377. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsAction.qml:42
  2378. msgctxt "@title:tab"
  2379. msgid "Printer"
  2380. msgstr "Принтер"
  2381. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:56
  2382. msgctxt "@title:label"
  2383. msgid "Printer Settings"
  2384. msgstr "Параметры принтера"
  2385. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:70
  2386. msgctxt "@label"
  2387. msgid "X (Width)"
  2388. msgstr "X (Ширина)"
  2389. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:85
  2390. msgctxt "@label"
  2391. msgid "Y (Depth)"
  2392. msgstr "Y (Глубина)"
  2393. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:100
  2394. msgctxt "@label"
  2395. msgid "Z (Height)"
  2396. msgstr "Z (Высота)"
  2397. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:114
  2398. msgctxt "@label"
  2399. msgid "Build plate shape"
  2400. msgstr "Форма стола"
  2401. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:127
  2402. msgctxt "@label"
  2403. msgid "Origin at center"
  2404. msgstr "Начало координат в центре"
  2405. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:139
  2406. msgctxt "@label"
  2407. msgid "Heated bed"
  2408. msgstr "Нагреваемый стол"
  2409. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:151
  2410. msgctxt "@label"
  2411. msgid "Heated build volume"
  2412. msgstr "Подогреваемый объем печати"
  2413. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:163
  2414. msgctxt "@label"
  2415. msgid "G-code flavor"
  2416. msgstr "Вариант G-кода"
  2417. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:187
  2418. msgctxt "@title:label"
  2419. msgid "Printhead Settings"
  2420. msgstr "Параметры головы"
  2421. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:201
  2422. msgctxt "@label"
  2423. msgid "X min"
  2424. msgstr "X минимум"
  2425. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:221
  2426. msgctxt "@label"
  2427. msgid "Y min"
  2428. msgstr "Y минимум"
  2429. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:241
  2430. msgctxt "@label"
  2431. msgid "X max"
  2432. msgstr "X максимум"
  2433. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:261
  2434. msgctxt "@label"
  2435. msgid "Y max"
  2436. msgstr "Y максимум"
  2437. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:279
  2438. msgctxt "@label"
  2439. msgid "Gantry Height"
  2440. msgstr "Высота портала"
  2441. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:293
  2442. msgctxt "@label"
  2443. msgid "Number of Extruders"
  2444. msgstr "Количество экструдеров"
  2445. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:345
  2446. msgctxt "@label"
  2447. msgid "Apply Extruder offsets to GCode"
  2448. msgstr ""
  2449. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:393
  2450. msgctxt "@title:label"
  2451. msgid "Start G-code"
  2452. msgstr "Стартовый G-код"
  2453. #: /mnt/projects/ultimaker/cura/Cura/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml:404
  2454. msgctxt "@title:label"
  2455. msgid "End G-code"
  2456. msgstr "Завершающий G-код"
  2457. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:19
  2458. msgctxt "@title:window"
  2459. msgid "Convert Image..."
  2460. msgstr "Преобразование изображения..."
  2461. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:33
  2462. msgctxt "@info:tooltip"
  2463. msgid "The maximum distance of each pixel from \"Base.\""
  2464. msgstr "Максимальная дистанция каждого пикселя от \"Основания.\""
  2465. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:38
  2466. msgctxt "@action:label"
  2467. msgid "Height (mm)"
  2468. msgstr "Высота (мм)"
  2469. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:56
  2470. msgctxt "@info:tooltip"
  2471. msgid "The base height from the build plate in millimeters."
  2472. msgstr "Высота основания от стола в миллиметрах."
  2473. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:61
  2474. msgctxt "@action:label"
  2475. msgid "Base (mm)"
  2476. msgstr "Основание (мм)"
  2477. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:79
  2478. msgctxt "@info:tooltip"
  2479. msgid "The width in millimeters on the build plate."
  2480. msgstr "Ширина в миллиметрах на столе."
  2481. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:84
  2482. msgctxt "@action:label"
  2483. msgid "Width (mm)"
  2484. msgstr "Ширина (мм)"
  2485. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:103
  2486. msgctxt "@info:tooltip"
  2487. msgid "The depth in millimeters on the build plate"
  2488. msgstr "Глубина в миллиметрах на столе"
  2489. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:108
  2490. msgctxt "@action:label"
  2491. msgid "Depth (mm)"
  2492. msgstr "Глубина (мм)"
  2493. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:126
  2494. msgctxt "@info:tooltip"
  2495. 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."
  2496. msgstr "Для литофании темные пиксели должны соответствовать более толстым частям, чтобы сильнее задерживать проходящий свет. Для схем высот более светлые пиксели обозначают более высокий участок. Поэтому более светлые пиксели должны соответствовать более толстым местам в созданной 3D-модели."
  2497. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2498. msgctxt "@item:inlistbox"
  2499. msgid "Darker is higher"
  2500. msgstr "Тёмные выше"
  2501. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:139
  2502. msgctxt "@item:inlistbox"
  2503. msgid "Lighter is higher"
  2504. msgstr "Светлые выше"
  2505. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:149
  2506. msgctxt "@info:tooltip"
  2507. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  2508. msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам."
  2509. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2510. msgctxt "@item:inlistbox"
  2511. msgid "Linear"
  2512. msgstr "Линейный"
  2513. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:161
  2514. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:172
  2515. msgctxt "@item:inlistbox"
  2516. msgid "Translucency"
  2517. msgstr "Светопроходимость"
  2518. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:171
  2519. msgctxt "@info:tooltip"
  2520. 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."
  2521. msgstr "Процент света, проникающего в отпечаток толщиной 1 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится."
  2522. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:177
  2523. msgctxt "@action:label"
  2524. msgid "1mm Transmittance (%)"
  2525. msgstr "Проходимость через 1 мм (%)"
  2526. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:195
  2527. msgctxt "@info:tooltip"
  2528. msgid "The amount of smoothing to apply to the image."
  2529. msgstr "Величина сглаживания для применения к изображению."
  2530. #: /mnt/projects/ultimaker/cura/Cura/plugins/ImageReader/ConfigUI.qml:200
  2531. msgctxt "@action:label"
  2532. msgid "Smoothing"
  2533. msgstr "Сглаживание"
  2534. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:28
  2535. msgctxt "@title"
  2536. msgid "My Backups"
  2537. msgstr "Мои резервные копии"
  2538. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:38
  2539. msgctxt "@empty_state"
  2540. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  2541. msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»."
  2542. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/BackupsPage.qml:60
  2543. msgctxt "@backup_limit_info"
  2544. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  2545. msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию."
  2546. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/pages/WelcomePage.qml:34
  2547. msgctxt "@description"
  2548. msgid "Backup and synchronize your Cura settings."
  2549. msgstr "Резервное копирование и синхронизация ваших параметров Cura."
  2550. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:22
  2551. msgctxt "@button"
  2552. msgid "Want more?"
  2553. msgstr "Желаете большего?"
  2554. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:31
  2555. msgctxt "@button"
  2556. msgid "Backup Now"
  2557. msgstr "Создать резервную копию"
  2558. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:43
  2559. msgctxt "@checkbox:description"
  2560. msgid "Auto Backup"
  2561. msgstr "Автоматическое резервное копирование"
  2562. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListFooter.qml:44
  2563. msgctxt "@checkbox:description"
  2564. msgid "Automatically create a backup each day that Cura is started."
  2565. msgstr "Автоматически создавать резервную копию в день запуска Cura."
  2566. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:21
  2567. msgctxt "@backuplist:label"
  2568. msgid "Cura Version"
  2569. msgstr "Версия Cura"
  2570. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:29
  2571. msgctxt "@backuplist:label"
  2572. msgid "Machines"
  2573. msgstr "Принтеры"
  2574. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:37
  2575. msgctxt "@backuplist:label"
  2576. msgid "Materials"
  2577. msgstr "Материалы"
  2578. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:45
  2579. msgctxt "@backuplist:label"
  2580. msgid "Profiles"
  2581. msgstr "Профили"
  2582. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItemDetails.qml:53
  2583. msgctxt "@backuplist:label"
  2584. msgid "Plugins"
  2585. msgstr "Плагины"
  2586. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:71
  2587. msgctxt "@button"
  2588. msgid "Restore"
  2589. msgstr "Восстановить"
  2590. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:99
  2591. msgctxt "@dialog:title"
  2592. msgid "Delete Backup"
  2593. msgstr "Удалить резервную копию"
  2594. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:100
  2595. msgctxt "@dialog:info"
  2596. msgid "Are you sure you want to delete this backup? This cannot be undone."
  2597. msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить."
  2598. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:108
  2599. msgctxt "@dialog:title"
  2600. msgid "Restore Backup"
  2601. msgstr "Восстановить резервную копию"
  2602. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/components/BackupListItem.qml:109
  2603. msgctxt "@dialog:info"
  2604. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  2605. msgstr "Вам потребуется перезапустить Cura, прежде чем данные будут восстановлены из резервной копии. Вы действительно хотите закрыть Cura прямо сейчас?"
  2606. #: /mnt/projects/ultimaker/cura/Cura/plugins/CuraDrive/src/qml/main.qml:25
  2607. msgctxt "@title:window"
  2608. msgid "Cura Backups"
  2609. msgstr "Резервные копии Cura"
  2610. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:13
  2611. msgctxt "@label:category menu label"
  2612. msgid "Material"
  2613. msgstr "Материал"
  2614. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:54
  2615. msgctxt "@label:category menu label"
  2616. msgid "Favorites"
  2617. msgstr "Избранные"
  2618. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/MaterialMenu.qml:79
  2619. msgctxt "@label:category menu label"
  2620. msgid "Generic"
  2621. msgstr "Универсальные"
  2622. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:13
  2623. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:27
  2624. msgctxt "@title:menu menubar:toplevel"
  2625. msgid "&File"
  2626. msgstr "Файл"
  2627. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:41
  2628. msgctxt "@title:menu menubar:file"
  2629. msgid "&Save Project..."
  2630. msgstr "&Сохранить проект..."
  2631. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:74
  2632. msgctxt "@title:menu menubar:file"
  2633. msgid "&Export..."
  2634. msgstr "&Экспорт..."
  2635. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/FileMenu.qml:85
  2636. msgctxt "@action:inmenu menubar:file"
  2637. msgid "Export Selection..."
  2638. msgstr "Экспорт выбранного..."
  2639. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/RecentFilesMenu.qml:15
  2640. msgctxt "@title:menu menubar:file"
  2641. msgid "Open &Recent"
  2642. msgstr "Открыть недавние"
  2643. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:112
  2644. msgctxt "@label"
  2645. msgid "Select configuration"
  2646. msgstr "Выберите конфигурации"
  2647. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationMenu.qml:223
  2648. msgctxt "@label"
  2649. msgid "Configurations"
  2650. msgstr "Конфигурации"
  2651. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/AutoConfiguration.qml:18
  2652. msgctxt "@header"
  2653. msgid "Configurations"
  2654. msgstr "Конфигурации"
  2655. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:25
  2656. msgctxt "@header"
  2657. msgid "Custom"
  2658. msgstr "Свое"
  2659. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:61
  2660. msgctxt "@label"
  2661. msgid "Printer"
  2662. msgstr "Принтер"
  2663. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:213
  2664. msgctxt "@label"
  2665. msgid "Enabled"
  2666. msgstr "Включено"
  2667. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:267
  2668. msgctxt "@label"
  2669. msgid "Material"
  2670. msgstr "Материал"
  2671. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml:394
  2672. msgctxt "@label"
  2673. msgid "Use glue for better adhesion with this material combination."
  2674. msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов."
  2675. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:137
  2676. msgctxt "@label"
  2677. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  2678. msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала."
  2679. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml:138
  2680. msgctxt "@label"
  2681. msgid "Marketplace"
  2682. msgstr "Магазин"
  2683. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:57
  2684. msgctxt "@label"
  2685. msgid "Loading available configurations from the printer..."
  2686. msgstr "Загрузка доступных конфигураций из принтера..."
  2687. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ConfigurationMenu/ConfigurationListView.qml:58
  2688. msgctxt "@label"
  2689. msgid "The configurations are not available because the printer is disconnected."
  2690. msgstr "Конфигурации недоступны, поскольку принтер отключен."
  2691. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:12
  2692. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:49
  2693. msgctxt "@title:menu menubar:toplevel"
  2694. msgid "&View"
  2695. msgstr "Вид"
  2696. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:19
  2697. msgctxt "@action:inmenu menubar:view"
  2698. msgid "&Camera position"
  2699. msgstr "Положение камеры"
  2700. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:44
  2701. msgctxt "@action:inmenu menubar:view"
  2702. msgid "Camera view"
  2703. msgstr "Вид камеры"
  2704. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:47
  2705. msgctxt "@action:inmenu menubar:view"
  2706. msgid "Perspective"
  2707. msgstr "Перспективная"
  2708. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:59
  2709. msgctxt "@action:inmenu menubar:view"
  2710. msgid "Orthographic"
  2711. msgstr "Ортографическая"
  2712. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ViewMenu.qml:80
  2713. msgctxt "@action:inmenu menubar:view"
  2714. msgid "&Build plate"
  2715. msgstr "Рабочий стол"
  2716. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:25
  2717. msgctxt "@label:category menu label"
  2718. msgid "Network enabled printers"
  2719. msgstr "Подключенные к сети принтеры"
  2720. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/PrinterMenu.qml:42
  2721. msgctxt "@label:category menu label"
  2722. msgid "Local printers"
  2723. msgstr "Локальные принтеры"
  2724. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:13
  2725. msgctxt "@action:inmenu"
  2726. msgid "Visible Settings"
  2727. msgstr "Видимые параметры"
  2728. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:42
  2729. msgctxt "@action:inmenu"
  2730. msgid "Collapse All Categories"
  2731. msgstr "Свернуть все категории"
  2732. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml:51
  2733. msgctxt "@action:inmenu"
  2734. msgid "Manage Setting Visibility..."
  2735. msgstr "Управление видимостью настроек..."
  2736. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:13
  2737. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:51
  2738. msgctxt "@title:menu menubar:toplevel"
  2739. msgid "&Settings"
  2740. msgstr "&Параметры"
  2741. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:15
  2742. msgctxt "@title:menu menubar:settings"
  2743. msgid "&Printer"
  2744. msgstr "Принтер"
  2745. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:29
  2746. msgctxt "@title:menu"
  2747. msgid "&Material"
  2748. msgstr "Материал"
  2749. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:44
  2750. msgctxt "@action:inmenu"
  2751. msgid "Set as Active Extruder"
  2752. msgstr "Установить как активный экструдер"
  2753. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:50
  2754. msgctxt "@action:inmenu"
  2755. msgid "Enable Extruder"
  2756. msgstr "Включить экструдер"
  2757. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SettingsMenu.qml:57
  2758. msgctxt "@action:inmenu"
  2759. msgid "Disable Extruder"
  2760. msgstr "Отключить экструдер"
  2761. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/SaveProjectMenu.qml:15
  2762. msgctxt "@title:menu menubar:file"
  2763. msgid "Save Project..."
  2764. msgstr ""
  2765. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:27
  2766. msgctxt "@label"
  2767. msgid "Print Selected Model With:"
  2768. msgid_plural "Print Selected Models With:"
  2769. msgstr[0] "Печать выбранной модели:"
  2770. msgstr[1] "Печать выбранных моделей:"
  2771. msgstr[2] "Печать выбранных моделей:"
  2772. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:116
  2773. msgctxt "@title:window"
  2774. msgid "Multiply Selected Model"
  2775. msgid_plural "Multiply Selected Models"
  2776. msgstr[0] "Размножить выбранную модель"
  2777. msgstr[1] "Размножить выбранные модели"
  2778. msgstr[2] "Размножить выбранные модели"
  2779. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/ContextMenu.qml:141
  2780. msgctxt "@label"
  2781. msgid "Number of Copies"
  2782. msgstr "Количество копий"
  2783. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Menus/OpenFilesMenu.qml:15
  2784. msgctxt "@title:menu menubar:file"
  2785. msgid "Open File(s)..."
  2786. msgstr ""
  2787. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:146
  2788. msgctxt "@label:header"
  2789. msgid "Custom profiles"
  2790. msgstr "Собственные профили"
  2791. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/QualitiesWithIntentMenu.qml:244
  2792. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:564
  2793. msgctxt "@action:button"
  2794. msgid "Discard current changes"
  2795. msgstr "Сбросить текущие параметры"
  2796. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:47
  2797. msgctxt "@label"
  2798. msgid "Profile"
  2799. msgstr "Профиль"
  2800. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Custom/CustomPrintSetup.qml:170
  2801. msgctxt "@tooltip"
  2802. msgid ""
  2803. "Some setting/override values are different from the values stored in the profile.\n"
  2804. "\n"
  2805. "Click to open the profile manager."
  2806. msgstr ""
  2807. "Значения некоторых параметров отличаются от значений профиля.\n"
  2808. "\n"
  2809. "Нажмите для открытия менеджера профилей."
  2810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:13
  2811. msgctxt "@label:Should be short"
  2812. msgid "On"
  2813. msgstr "Вкл"
  2814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:14
  2815. msgctxt "@label:Should be short"
  2816. msgid "Off"
  2817. msgstr "Выкл"
  2818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorHeader.qml:33
  2819. msgctxt "@label"
  2820. msgid "Experimental"
  2821. msgstr "Экспериментальное"
  2822. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:144
  2823. msgctxt "@button"
  2824. msgid "Recommended"
  2825. msgstr "Рекомендован"
  2826. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelectorContents.qml:158
  2827. msgctxt "@button"
  2828. msgid "Custom"
  2829. msgstr "Свое"
  2830. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:19
  2831. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:374
  2832. msgctxt "@label"
  2833. msgid "Print settings"
  2834. msgstr "Параметры печати"
  2835. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/PrintSetupSelector.qml:21
  2836. msgctxt "@label shown when we load a Gcode file"
  2837. msgid "Print setup disabled. G-code file can not be modified."
  2838. msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом."
  2839. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:193
  2840. msgctxt "@label"
  2841. msgid "Gradual infill"
  2842. msgstr "Постепенное заполнение"
  2843. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedInfillDensitySelector.qml:232
  2844. msgctxt "@label"
  2845. msgid "Gradual infill will gradually increase the amount of infill towards the top."
  2846. msgstr "Постепенное заполнение будет постепенно увеличивать объём заполнения по направлению вверх."
  2847. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:52
  2848. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:728
  2849. msgctxt "@label"
  2850. msgid "Profiles"
  2851. msgstr "Профили"
  2852. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedQualityProfileSelector.qml:81
  2853. msgctxt "@tooltip"
  2854. msgid "You have modified some profile settings. If you want to change these go to custom mode."
  2855. msgstr "В некоторые настройки профиля были внесены изменения. Если их необходимо изменить, перейдите в пользовательский режим."
  2856. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:30
  2857. msgctxt "@label"
  2858. msgid "Support"
  2859. msgstr "Поддержки"
  2860. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml:71
  2861. msgctxt "@label"
  2862. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2863. msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати."
  2864. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:29
  2865. msgctxt "@label"
  2866. msgid "Adhesion"
  2867. msgstr "Прилипание"
  2868. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/Recommended/RecommendedAdhesionSelector.qml:74
  2869. msgctxt "@label"
  2870. 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."
  2871. msgstr "Разрешает печать каймы или подложки. Это добавляет плоскую область вокруг или под вашим объектом, которую легко удалить после печати."
  2872. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintSetupSelector/NoIntentIcon.qml:31
  2873. msgctxt "@label %1 is filled in with the type of a profile. %2 is filled with a list of numbers (eg '1' or '1, 2')"
  2874. msgid "There is no %1 profile for the configuration in extruder %2. The default intent will be used instead"
  2875. msgid_plural "There is no %1 profile for the configurations in extruders %2. The default intent will be used instead"
  2876. msgstr[0] "Нет %1 профиля для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию"
  2877. msgstr[1] "Нет %1 профилей для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию"
  2878. msgstr[2] "Нет %1 профилей для конфигураций в экструдерах %2. Вместо этого будет использоваться функция по умолчанию"
  2879. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Widgets/ComboBox.qml:24
  2880. msgctxt "@label"
  2881. msgid "No items to select from"
  2882. msgstr ""
  2883. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:140
  2884. msgctxt "@label"
  2885. msgid "Active print"
  2886. msgstr "Идёт печать"
  2887. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:148
  2888. msgctxt "@label"
  2889. msgid "Job Name"
  2890. msgstr "Имя задачи"
  2891. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:156
  2892. msgctxt "@label"
  2893. msgid "Printing Time"
  2894. msgstr "Время печати"
  2895. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrintMonitor.qml:164
  2896. msgctxt "@label"
  2897. msgid "Estimated time left"
  2898. msgstr "Осталось примерно"
  2899. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:15
  2900. msgctxt "@title:window"
  2901. msgid "Discard or Keep changes"
  2902. msgstr "Сбросить или сохранить изменения"
  2903. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:57
  2904. msgctxt "@text:window, %1 is a profile name"
  2905. msgid ""
  2906. "You have customized some profile settings.\n"
  2907. "Would you like to Keep these changed settings after switching profiles?\n"
  2908. "Alternatively, you can discard the changes to load the defaults from '%1'."
  2909. msgstr ""
  2910. "Вы изменили некоторые настройки профиля.\n"
  2911. "Сохранить измененные настройки после переключения профилей?\n"
  2912. "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"."
  2913. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:111
  2914. msgctxt "@title:column"
  2915. msgid "Profile settings"
  2916. msgstr "Параметры профиля"
  2917. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:125
  2918. msgctxt "@title:column"
  2919. msgid "Current changes"
  2920. msgstr "Текущие изменения"
  2921. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:158
  2922. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:747
  2923. msgctxt "@option:discardOrKeep"
  2924. msgid "Always ask me this"
  2925. msgstr "Всегда спрашивать меня"
  2926. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:159
  2927. msgctxt "@option:discardOrKeep"
  2928. msgid "Discard and never ask again"
  2929. msgstr "Сбросить и никогда больше не спрашивать"
  2930. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:160
  2931. msgctxt "@option:discardOrKeep"
  2932. msgid "Keep and never ask again"
  2933. msgstr "Сохранить и никогда больше не спрашивать"
  2934. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:197
  2935. msgctxt "@action:button"
  2936. msgid "Discard changes"
  2937. msgstr "Отменить изменения"
  2938. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/DiscardOrKeepProfileChangesDialog.qml:210
  2939. msgctxt "@action:button"
  2940. msgid "Keep changes"
  2941. msgstr "Сохранить изменения"
  2942. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:15
  2943. msgctxt "@title:window The argument is the application name."
  2944. msgid "About %1"
  2945. msgstr "О программе %1"
  2946. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:57
  2947. msgctxt "@label"
  2948. msgid "version: %1"
  2949. msgstr "версия: %1"
  2950. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:72
  2951. msgctxt "@label"
  2952. msgid "End-to-end solution for fused filament 3D printing."
  2953. msgstr "Полное решение для 3D печати методом наплавления материала."
  2954. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:85
  2955. msgctxt "@info:credit"
  2956. msgid ""
  2957. "Cura is developed by Ultimaker B.V. in cooperation with the community.\n"
  2958. "Cura proudly uses the following open source projects:"
  2959. msgstr ""
  2960. "Cura разработана компанией Ultimaker B.V. совместно с сообществом.\n"
  2961. "Cura использует следующие проекты с открытым исходным кодом:"
  2962. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:135
  2963. msgctxt "@label"
  2964. msgid "Graphical user interface"
  2965. msgstr "Графический интерфейс пользователя"
  2966. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:136
  2967. msgctxt "@label"
  2968. msgid "Application framework"
  2969. msgstr "Фреймворк приложения"
  2970. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:137
  2971. msgctxt "@label"
  2972. msgid "G-code generator"
  2973. msgstr "Генератор G-кода"
  2974. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:138
  2975. msgctxt "@label"
  2976. msgid "Interprocess communication library"
  2977. msgstr "Библиотека межпроцессного взаимодействия"
  2978. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:140
  2979. msgctxt "@label"
  2980. msgid "Programming language"
  2981. msgstr "Язык программирования"
  2982. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:141
  2983. msgctxt "@label"
  2984. msgid "GUI framework"
  2985. msgstr "Фреймворк GUI"
  2986. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:142
  2987. msgctxt "@label"
  2988. msgid "GUI framework bindings"
  2989. msgstr "Фреймворк GUI, интерфейс"
  2990. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:143
  2991. msgctxt "@label"
  2992. msgid "C/C++ Binding library"
  2993. msgstr "C/C++ библиотека интерфейса"
  2994. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:144
  2995. msgctxt "@label"
  2996. msgid "Data interchange format"
  2997. msgstr "Формат обмена данными"
  2998. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:145
  2999. msgctxt "@label"
  3000. msgid "Support library for scientific computing"
  3001. msgstr "Вспомогательная библиотека для научных вычислений"
  3002. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:146
  3003. msgctxt "@label"
  3004. msgid "Support library for faster math"
  3005. msgstr "Вспомогательная библиотека для быстрых расчётов"
  3006. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:147
  3007. msgctxt "@label"
  3008. msgid "Support library for handling STL files"
  3009. msgstr "Вспомогательная библиотека для работы с STL файлами"
  3010. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:148
  3011. msgctxt "@label"
  3012. msgid "Support library for handling planar objects"
  3013. msgstr "Вспомогательная библиотека для работы с плоскими объектами"
  3014. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:149
  3015. msgctxt "@label"
  3016. msgid "Support library for handling triangular meshes"
  3017. msgstr "Вспомогательная библиотека для работы с треугольными сетками"
  3018. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:150
  3019. msgctxt "@label"
  3020. msgid "Support library for handling 3MF files"
  3021. msgstr "Вспомогательная библиотека для работы с 3MF файлами"
  3022. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:151
  3023. msgctxt "@label"
  3024. msgid "Support library for file metadata and streaming"
  3025. msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи"
  3026. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:152
  3027. msgctxt "@label"
  3028. msgid "Serial communication library"
  3029. msgstr "Библиотека последовательного интерфейса"
  3030. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:153
  3031. msgctxt "@label"
  3032. msgid "ZeroConf discovery library"
  3033. msgstr "Библиотека ZeroConf"
  3034. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:154
  3035. msgctxt "@label"
  3036. msgid "Polygon clipping library"
  3037. msgstr "Библиотека обрезки полигонов"
  3038. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:155
  3039. msgctxt "@Label"
  3040. msgid "Static type checker for Python"
  3041. msgstr "Средство проверки статического типа для Python"
  3042. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:156
  3043. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:157
  3044. msgctxt "@Label"
  3045. msgid "Root Certificates for validating SSL trustworthiness"
  3046. msgstr "Корневые сертификаты для проверки надежности SSL"
  3047. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:158
  3048. msgctxt "@Label"
  3049. msgid "Python Error tracking library"
  3050. msgstr "Библиотека отслеживания ошибок Python"
  3051. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:159
  3052. msgctxt "@label"
  3053. msgid "Polygon packing library, developed by Prusa Research"
  3054. msgstr "Библиотека упаковки полигонов, разработанная Prusa Research"
  3055. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:160
  3056. msgctxt "@label"
  3057. msgid "Python bindings for libnest2d"
  3058. msgstr "Интерфейс Python для libnest2d"
  3059. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:161
  3060. msgctxt "@label"
  3061. msgid "Support library for system keyring access"
  3062. msgstr ""
  3063. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:162
  3064. msgctxt "@label"
  3065. msgid "Python extensions for Microsoft Windows"
  3066. msgstr ""
  3067. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:163
  3068. msgctxt "@label"
  3069. msgid "Font"
  3070. msgstr "Шрифт"
  3071. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:164
  3072. msgctxt "@label"
  3073. msgid "SVG icons"
  3074. msgstr "Иконки SVG"
  3075. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AboutDialog.qml:165
  3076. msgctxt "@label"
  3077. msgid "Linux cross-distribution application deployment"
  3078. msgstr "Развертывание приложений для различных дистрибутивов Linux"
  3079. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:19
  3080. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:627
  3081. msgctxt "@title:window"
  3082. msgid "Open file(s)"
  3083. msgstr "Открыть файл(ы)"
  3084. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:59
  3085. msgctxt "@text:window"
  3086. 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?"
  3087. msgstr "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?"
  3088. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/OpenFilesIncludingProjectsDialog.qml:94
  3089. msgctxt "@action:button"
  3090. msgid "Import all as models"
  3091. msgstr "Импортировать всё как модели"
  3092. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:15
  3093. msgctxt "@title:window"
  3094. msgid "Save Project"
  3095. msgstr "Сохранить проект"
  3096. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:173
  3097. msgctxt "@action:label"
  3098. msgid "Extruder %1"
  3099. msgstr "Экструдер %1"
  3100. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:189
  3101. msgctxt "@action:label"
  3102. msgid "%1 & material"
  3103. msgstr "%1 и материал"
  3104. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:191
  3105. msgctxt "@action:label"
  3106. msgid "Material"
  3107. msgstr "Материал"
  3108. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:281
  3109. msgctxt "@action:label"
  3110. msgid "Don't show project summary on save again"
  3111. msgstr "Больше не показывать сводку по проекту"
  3112. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/WorkspaceSummaryDialog.qml:300
  3113. msgctxt "@action:button"
  3114. msgid "Save"
  3115. msgstr "Сохранить"
  3116. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:20
  3117. msgctxt "@title:window"
  3118. msgid "Open project file"
  3119. msgstr "Открыть файл проекта"
  3120. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:88
  3121. msgctxt "@text:window"
  3122. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3123. msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?"
  3124. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:98
  3125. msgctxt "@text:window"
  3126. msgid "Remember my choice"
  3127. msgstr "Запомнить мой выбор"
  3128. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:117
  3129. msgctxt "@action:button"
  3130. msgid "Open as project"
  3131. msgstr "Открыть как проект"
  3132. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Dialogs/AskOpenAsProjectOrModelsDialog.qml:126
  3133. msgctxt "@action:button"
  3134. msgid "Import models"
  3135. msgstr "Импортировать модели"
  3136. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/JobSpecs.qml:99
  3137. msgctxt "@text Print job name"
  3138. msgid "Untitled"
  3139. msgstr "Без имени"
  3140. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:56
  3141. msgctxt "@label"
  3142. msgid "Welcome to Ultimaker Cura"
  3143. msgstr "Приветствуем в Ultimaker Cura"
  3144. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:68
  3145. msgctxt "@text"
  3146. msgid "Please follow these steps to set up Ultimaker Cura. This will only take a few moments."
  3147. msgstr ""
  3148. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WelcomeContent.qml:86
  3149. msgctxt "@button"
  3150. msgid "Get started"
  3151. msgstr "Приступить"
  3152. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DropDownWidget.qml:93
  3153. msgctxt "@label"
  3154. msgid "Empty"
  3155. msgstr "Пусто"
  3156. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:24
  3157. msgctxt "@label"
  3158. msgid "Help us to improve Ultimaker Cura"
  3159. msgstr "Помогите нам улучшить Ultimaker Cura"
  3160. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:57
  3161. msgctxt "@text"
  3162. msgid "Ultimaker Cura collects anonymous data to improve print quality and user experience, including:"
  3163. msgstr "Ultimaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем, включая перечисленные ниже:"
  3164. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:71
  3165. msgctxt "@text"
  3166. msgid "Machine types"
  3167. msgstr "Типы принтера"
  3168. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:77
  3169. msgctxt "@text"
  3170. msgid "Material usage"
  3171. msgstr "Использование материала"
  3172. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:83
  3173. msgctxt "@text"
  3174. msgid "Number of slices"
  3175. msgstr "Количество слоев"
  3176. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:89
  3177. msgctxt "@text"
  3178. msgid "Print settings"
  3179. msgstr "Параметры печати"
  3180. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:102
  3181. msgctxt "@text"
  3182. msgid "Data collected by Ultimaker Cura will not contain any personal information."
  3183. msgstr "Данные, собранные Ultimaker Cura, не содержат каких-либо персональных данных."
  3184. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/DataCollectionsContent.qml:103
  3185. msgctxt "@text"
  3186. msgid "More information"
  3187. msgstr "Дополнительная информация"
  3188. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:70
  3189. msgctxt "@label"
  3190. msgid "Add printer by IP address"
  3191. msgstr "Добавить принтер по IP-адресу"
  3192. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:133
  3193. msgctxt "@text"
  3194. msgid "Enter your printer's IP address."
  3195. msgstr "Введите IP-адрес своего принтера."
  3196. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:158
  3197. msgctxt "@button"
  3198. msgid "Add"
  3199. msgstr "Добавить"
  3200. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:206
  3201. msgctxt "@label"
  3202. msgid "Could not connect to device."
  3203. msgstr "Не удалось подключиться к устройству."
  3204. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:207
  3205. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:212
  3206. msgctxt "@label"
  3207. msgid "Can't connect to your Ultimaker printer?"
  3208. msgstr "Не удается подключиться к принтеру Ultimaker?"
  3209. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:211
  3210. msgctxt "@label"
  3211. msgid "The printer at this address has not responded yet."
  3212. msgstr "От принтера с этим адресом еще не поступал ответ."
  3213. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:245
  3214. msgctxt "@label"
  3215. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3216. msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой."
  3217. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:334
  3218. msgctxt "@button"
  3219. msgid "Back"
  3220. msgstr "Назад"
  3221. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddPrinterByIpContent.qml:347
  3222. msgctxt "@button"
  3223. msgid "Connect"
  3224. msgstr "Подключить"
  3225. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:24
  3226. msgctxt "@label"
  3227. msgid "Add a printer"
  3228. msgstr "Добавить принтер"
  3229. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:39
  3230. msgctxt "@label"
  3231. msgid "Add a networked printer"
  3232. msgstr "Добавить сетевой принтер"
  3233. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml:90
  3234. msgctxt "@label"
  3235. msgid "Add a non-networked printer"
  3236. msgstr "Добавить принтер, не подключенный к сети"
  3237. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/WhatsNewContent.qml:28
  3238. msgctxt "@label"
  3239. msgid "What's New"
  3240. msgstr ""
  3241. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:47
  3242. msgctxt "@label"
  3243. msgid "Add a Cloud printer"
  3244. msgstr "Добавить облачный принтер"
  3245. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:74
  3246. msgctxt "@label"
  3247. msgid "Waiting for Cloud response"
  3248. msgstr "Ожидается ответ от облака"
  3249. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:86
  3250. msgctxt "@label"
  3251. msgid "No printers found in your account?"
  3252. msgstr "В учетной записи нет принтеров?"
  3253. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:121
  3254. msgctxt "@label"
  3255. msgid "The following printers in your account have been added in Cura:"
  3256. msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:"
  3257. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddCloudPrintersView.qml:204
  3258. msgctxt "@button"
  3259. msgid "Add printer manually"
  3260. msgstr "Добавить принтер вручную"
  3261. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:64
  3262. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:20
  3263. msgctxt "@label"
  3264. msgid "Sign in to the Ultimaker platform"
  3265. msgstr ""
  3266. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:124
  3267. msgctxt "@text"
  3268. msgid "Add material settings and plugins from the Marketplace"
  3269. msgstr ""
  3270. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:154
  3271. msgctxt "@text"
  3272. msgid "Backup and sync your material settings and plugins"
  3273. msgstr ""
  3274. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:184
  3275. msgctxt "@text"
  3276. msgid "Share ideas and get help from 48,000+ users in the Ultimaker Community"
  3277. msgstr ""
  3278. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:217
  3279. msgctxt "@text"
  3280. msgid "Create a free Ultimaker Account"
  3281. msgstr ""
  3282. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/CloudContent.qml:230
  3283. msgctxt "@button"
  3284. msgid "Skip"
  3285. msgstr "Пропустить"
  3286. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:23
  3287. msgctxt "@label"
  3288. msgid "User Agreement"
  3289. msgstr "Пользовательское соглашение"
  3290. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/UserAgreementContent.qml:70
  3291. msgctxt "@button"
  3292. msgid "Decline and close"
  3293. msgstr "Отклонить и закрыть"
  3294. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/ChangelogContent.qml:24
  3295. msgctxt "@label"
  3296. msgid "Release Notes"
  3297. msgstr ""
  3298. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:43
  3299. msgctxt "@label"
  3300. msgid "There is no printer found over your network."
  3301. msgstr "В вашей сети не найден принтер."
  3302. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:182
  3303. msgctxt "@label"
  3304. msgid "Refresh"
  3305. msgstr "Обновить"
  3306. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:193
  3307. msgctxt "@label"
  3308. msgid "Add printer by IP"
  3309. msgstr "Добавить принтер по IP-адресу"
  3310. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:204
  3311. msgctxt "@label"
  3312. msgid "Add cloud printer"
  3313. msgstr "Добавить облачный принтер"
  3314. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddNetworkPrinterScrollView.qml:240
  3315. msgctxt "@label"
  3316. msgid "Troubleshooting"
  3317. msgstr "Поиск и устранение неисправностей"
  3318. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:230
  3319. msgctxt "@label"
  3320. msgid "Manufacturer"
  3321. msgstr "Производитель"
  3322. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:247
  3323. msgctxt "@label"
  3324. msgid "Profile author"
  3325. msgstr "Автор профиля"
  3326. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:265
  3327. msgctxt "@label"
  3328. msgid "Printer name"
  3329. msgstr "Имя принтера"
  3330. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml:274
  3331. msgctxt "@text"
  3332. msgid "Please name your printer"
  3333. msgstr "Присвойте имя принтеру"
  3334. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:81
  3335. msgctxt "@label The argument is a timestamp"
  3336. msgid "Last update: %1"
  3337. msgstr "Последнее обновление: %1"
  3338. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:109
  3339. msgctxt "@button"
  3340. msgid "Ultimaker Account"
  3341. msgstr "Учетная запись Ultimaker"
  3342. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/UserOperations.qml:125
  3343. msgctxt "@button"
  3344. msgid "Sign Out"
  3345. msgstr "Выйти"
  3346. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:42
  3347. msgctxt "@text"
  3348. msgid ""
  3349. "- Add material profiles and plug-ins from the Marketplace\n"
  3350. "- Back-up and sync your material profiles and plug-ins\n"
  3351. "- Share ideas and get help from 48,000+ users in the Ultimaker community"
  3352. msgstr ""
  3353. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/GeneralOperations.qml:62
  3354. msgctxt "@button"
  3355. msgid "Create a free Ultimaker account"
  3356. msgstr ""
  3357. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/AccountWidget.qml:24
  3358. msgctxt "@action:button"
  3359. msgid "Sign in"
  3360. msgstr "Войти"
  3361. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:28
  3362. msgctxt "@label"
  3363. msgid "Checking..."
  3364. msgstr "Проверка..."
  3365. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:35
  3366. msgctxt "@label"
  3367. msgid "Account synced"
  3368. msgstr "Учетная запись синхронизирована"
  3369. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:42
  3370. msgctxt "@label"
  3371. msgid "Something went wrong..."
  3372. msgstr "Что-то пошло не так..."
  3373. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:96
  3374. msgctxt "@button"
  3375. msgid "Install pending updates"
  3376. msgstr "Установить ожидающие обновления"
  3377. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Account/SyncState.qml:118
  3378. msgctxt "@button"
  3379. msgid "Check for account updates"
  3380. msgstr "Проверить наличие обновлений учетной записи"
  3381. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectSelector.qml:59
  3382. msgctxt "@label"
  3383. msgid "Object list"
  3384. msgstr "Список объектов"
  3385. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:82
  3386. msgctxt "@action:inmenu"
  3387. msgid "Show Online Troubleshooting Guide"
  3388. msgstr "Показать онлайн-руководство по решению проблем"
  3389. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:89
  3390. msgctxt "@action:inmenu"
  3391. msgid "Toggle Full Screen"
  3392. msgstr "Полный экран"
  3393. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:97
  3394. msgctxt "@action:inmenu"
  3395. msgid "Exit Full Screen"
  3396. msgstr "Выйти из полноэкранного режима"
  3397. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:104
  3398. msgctxt "@action:inmenu menubar:edit"
  3399. msgid "&Undo"
  3400. msgstr "Отмена"
  3401. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:114
  3402. msgctxt "@action:inmenu menubar:edit"
  3403. msgid "&Redo"
  3404. msgstr "Возврат"
  3405. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:124
  3406. msgctxt "@action:inmenu menubar:file"
  3407. msgid "&Quit"
  3408. msgstr "Выход"
  3409. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:132
  3410. msgctxt "@action:inmenu menubar:view"
  3411. msgid "3D View"
  3412. msgstr "Трехмерный вид"
  3413. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:139
  3414. msgctxt "@action:inmenu menubar:view"
  3415. msgid "Front View"
  3416. msgstr "Вид спереди"
  3417. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:146
  3418. msgctxt "@action:inmenu menubar:view"
  3419. msgid "Top View"
  3420. msgstr "Вид сверху"
  3421. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:153
  3422. msgctxt "@action:inmenu menubar:view"
  3423. msgid "Left Side View"
  3424. msgstr "Вид слева"
  3425. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:160
  3426. msgctxt "@action:inmenu menubar:view"
  3427. msgid "Right Side View"
  3428. msgstr "Вид справа"
  3429. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:167
  3430. msgctxt "@action:inmenu"
  3431. msgid "Configure Cura..."
  3432. msgstr "Настроить Cura..."
  3433. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:174
  3434. msgctxt "@action:inmenu menubar:printer"
  3435. msgid "&Add Printer..."
  3436. msgstr "Добавить принтер..."
  3437. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:180
  3438. msgctxt "@action:inmenu menubar:printer"
  3439. msgid "Manage Pr&inters..."
  3440. msgstr "Управление принтерами..."
  3441. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:187
  3442. msgctxt "@action:inmenu"
  3443. msgid "Manage Materials..."
  3444. msgstr "Управление материалами..."
  3445. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:195
  3446. msgctxt "@action:inmenu"
  3447. msgid "Add more materials from Marketplace"
  3448. msgstr "Добавить больше материалов из Магазина"
  3449. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:202
  3450. msgctxt "@action:inmenu menubar:profile"
  3451. msgid "&Update profile with current settings/overrides"
  3452. msgstr "Обновить профиль текущими параметрами"
  3453. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:210
  3454. msgctxt "@action:inmenu menubar:profile"
  3455. msgid "&Discard current changes"
  3456. msgstr "Сбросить текущие параметры"
  3457. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:222
  3458. msgctxt "@action:inmenu menubar:profile"
  3459. msgid "&Create profile from current settings/overrides..."
  3460. msgstr "Создать профиль из текущих параметров..."
  3461. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:228
  3462. msgctxt "@action:inmenu menubar:profile"
  3463. msgid "Manage Profiles..."
  3464. msgstr "Управление профилями..."
  3465. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:236
  3466. msgctxt "@action:inmenu menubar:help"
  3467. msgid "Show Online &Documentation"
  3468. msgstr "Показать онлайн документацию"
  3469. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:244
  3470. msgctxt "@action:inmenu menubar:help"
  3471. msgid "Report a &Bug"
  3472. msgstr "Отправить отчёт об ошибке"
  3473. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:252
  3474. msgctxt "@action:inmenu menubar:help"
  3475. msgid "What's New"
  3476. msgstr "Что нового"
  3477. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:258
  3478. msgctxt "@action:inmenu menubar:help"
  3479. msgid "About..."
  3480. msgstr "О Cura..."
  3481. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:265
  3482. msgctxt "@action:inmenu menubar:edit"
  3483. msgid "Delete Selected"
  3484. msgstr ""
  3485. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:275
  3486. msgctxt "@action:inmenu menubar:edit"
  3487. msgid "Center Selected"
  3488. msgstr ""
  3489. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:284
  3490. msgctxt "@action:inmenu menubar:edit"
  3491. msgid "Multiply Selected"
  3492. msgstr ""
  3493. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:293
  3494. msgctxt "@action:inmenu"
  3495. msgid "Delete Model"
  3496. msgstr "Удалить модель"
  3497. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:301
  3498. msgctxt "@action:inmenu"
  3499. msgid "Ce&nter Model on Platform"
  3500. msgstr "Поместить модель по центру"
  3501. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:307
  3502. msgctxt "@action:inmenu menubar:edit"
  3503. msgid "&Group Models"
  3504. msgstr "Сгруппировать модели"
  3505. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:327
  3506. msgctxt "@action:inmenu menubar:edit"
  3507. msgid "Ungroup Models"
  3508. msgstr "Разгруппировать модели"
  3509. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:337
  3510. msgctxt "@action:inmenu menubar:edit"
  3511. msgid "&Merge Models"
  3512. msgstr "Объединить модели"
  3513. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:347
  3514. msgctxt "@action:inmenu"
  3515. msgid "&Multiply Model..."
  3516. msgstr "Дублировать модель..."
  3517. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:354
  3518. msgctxt "@action:inmenu menubar:edit"
  3519. msgid "Select All Models"
  3520. msgstr "Выбрать все модели"
  3521. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:364
  3522. msgctxt "@action:inmenu menubar:edit"
  3523. msgid "Clear Build Plate"
  3524. msgstr "Очистить стол"
  3525. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:374
  3526. msgctxt "@action:inmenu menubar:file"
  3527. msgid "Reload All Models"
  3528. msgstr "Перезагрузить все модели"
  3529. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:383
  3530. msgctxt "@action:inmenu menubar:edit"
  3531. msgid "Arrange All Models To All Build Plates"
  3532. msgstr "Выровнять все модели по всем рабочим столам"
  3533. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:390
  3534. msgctxt "@action:inmenu menubar:edit"
  3535. msgid "Arrange All Models"
  3536. msgstr "Выровнять все модели"
  3537. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:398
  3538. msgctxt "@action:inmenu menubar:edit"
  3539. msgid "Arrange Selection"
  3540. msgstr "Выровнять выбранные"
  3541. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:405
  3542. msgctxt "@action:inmenu menubar:edit"
  3543. msgid "Reset All Model Positions"
  3544. msgstr "Сбросить позиции всех моделей"
  3545. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:412
  3546. msgctxt "@action:inmenu menubar:edit"
  3547. msgid "Reset All Model Transformations"
  3548. msgstr "Сбросить преобразования всех моделей"
  3549. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:421
  3550. msgctxt "@action:inmenu menubar:file"
  3551. msgid "&Open File(s)..."
  3552. msgstr "Открыть файл(ы)..."
  3553. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:431
  3554. msgctxt "@action:inmenu menubar:file"
  3555. msgid "&New Project..."
  3556. msgstr "Новый проект..."
  3557. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:438
  3558. msgctxt "@action:inmenu menubar:help"
  3559. msgid "Show Configuration Folder"
  3560. msgstr "Показать конфигурационный каталог"
  3561. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:445
  3562. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:538
  3563. msgctxt "@action:menu"
  3564. msgid "Configure setting visibility..."
  3565. msgstr "Видимость параметров..."
  3566. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Actions.qml:452
  3567. msgctxt "@action:menu"
  3568. msgid "&Marketplace"
  3569. msgstr "&Магазин"
  3570. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:61
  3571. msgctxt "@info:status"
  3572. msgid "Calculated"
  3573. msgstr "Вычислено"
  3574. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:75
  3575. msgctxt "@title:column"
  3576. msgid "Setting"
  3577. msgstr "Параметр"
  3578. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:82
  3579. msgctxt "@title:column"
  3580. msgid "Profile"
  3581. msgstr "Профиль"
  3582. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:89
  3583. msgctxt "@title:column"
  3584. msgid "Current"
  3585. msgstr "Текущий"
  3586. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfileTab.qml:97
  3587. msgctxt "@title:column"
  3588. msgid "Unit"
  3589. msgstr "Единица"
  3590. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:72
  3591. msgctxt "@title"
  3592. msgid "Information"
  3593. msgstr "Информация"
  3594. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:101
  3595. msgctxt "@title:window"
  3596. msgid "Confirm Diameter Change"
  3597. msgstr "Подтвердить изменение диаметра"
  3598. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:102
  3599. msgctxt "@label (%1 is a number)"
  3600. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3601. msgstr "Установлен новый диаметр пластиковой нити %1 мм. Это значение несовместимо с текущим экструдером. Продолжить?"
  3602. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:128
  3603. msgctxt "@label"
  3604. msgid "Display Name"
  3605. msgstr "Отображаемое имя"
  3606. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:148
  3607. msgctxt "@label"
  3608. msgid "Material Type"
  3609. msgstr "Тип материала"
  3610. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:158
  3611. msgctxt "@label"
  3612. msgid "Color"
  3613. msgstr "Цвет"
  3614. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:208
  3615. msgctxt "@label"
  3616. msgid "Properties"
  3617. msgstr "Свойства"
  3618. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:210
  3619. msgctxt "@label"
  3620. msgid "Density"
  3621. msgstr "Плотность"
  3622. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:225
  3623. msgctxt "@label"
  3624. msgid "Diameter"
  3625. msgstr "Диаметр"
  3626. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:259
  3627. msgctxt "@label"
  3628. msgid "Filament Cost"
  3629. msgstr "Стоимость материала"
  3630. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:276
  3631. msgctxt "@label"
  3632. msgid "Filament weight"
  3633. msgstr "Вес материала"
  3634. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:294
  3635. msgctxt "@label"
  3636. msgid "Filament length"
  3637. msgstr "Длина материала"
  3638. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:303
  3639. msgctxt "@label"
  3640. msgid "Cost per Meter"
  3641. msgstr "Стоимость метра"
  3642. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:317
  3643. msgctxt "@label"
  3644. msgid "This material is linked to %1 and shares some of its properties."
  3645. msgstr "Данный материал привязан к %1 и имеет ряд его свойств."
  3646. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:324
  3647. msgctxt "@label"
  3648. msgid "Unlink Material"
  3649. msgstr "Отвязать материал"
  3650. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:335
  3651. msgctxt "@label"
  3652. msgid "Description"
  3653. msgstr "Описание"
  3654. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsView.qml:348
  3655. msgctxt "@label"
  3656. msgid "Adhesion Information"
  3657. msgstr "Информация об адгезии"
  3658. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:108
  3659. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:40
  3660. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:84
  3661. msgctxt "@action:button"
  3662. msgid "Activate"
  3663. msgstr "Активировать"
  3664. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:126
  3665. msgctxt "@action:button"
  3666. msgid "Create"
  3667. msgstr "Создать"
  3668. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:141
  3669. msgctxt "@action:button"
  3670. msgid "Duplicate"
  3671. msgstr "Дублировать"
  3672. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:171
  3673. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:167
  3674. msgctxt "@action:button"
  3675. msgid "Import"
  3676. msgstr "Импорт"
  3677. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:185
  3678. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:179
  3679. msgctxt "@action:button"
  3680. msgid "Export"
  3681. msgstr "Экспорт"
  3682. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:234
  3683. msgctxt "@action:label"
  3684. msgid "Printer"
  3685. msgstr "Принтер"
  3686. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:298
  3687. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:277
  3688. msgctxt "@title:window"
  3689. msgid "Confirm Remove"
  3690. msgstr "Подтвердите удаление"
  3691. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:301
  3692. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:278
  3693. msgctxt "@label (%1 is object name)"
  3694. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  3695. msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!"
  3696. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:315
  3697. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:323
  3698. msgctxt "@title:window"
  3699. msgid "Import Material"
  3700. msgstr "Импортировать материал"
  3701. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:324
  3702. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  3703. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  3704. msgstr "Не могу импортировать материал <filename>%1</filename>: <message>%2</message>"
  3705. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:328
  3706. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3707. msgid "Successfully imported material <filename>%1</filename>"
  3708. msgstr "Успешно импортированный материал <filename>%1</filename>"
  3709. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:346
  3710. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:354
  3711. msgctxt "@title:window"
  3712. msgid "Export Material"
  3713. msgstr "Экспортировать материал"
  3714. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:358
  3715. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  3716. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  3717. msgstr "Не могу экспортировать материал <filename>%1</filename>: <message>%2</message>"
  3718. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/Materials/MaterialsPage.qml:364
  3719. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3720. msgid "Successfully exported material to <filename>%1</filename>"
  3721. msgstr "Материал успешно экспортирован в <filename>%1</filename>"
  3722. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:16
  3723. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:455
  3724. msgctxt "@title:tab"
  3725. msgid "Printers"
  3726. msgstr "Принтеры"
  3727. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/MachinesPage.qml:63
  3728. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:152
  3729. msgctxt "@action:button"
  3730. msgid "Rename"
  3731. msgstr "Переименовать"
  3732. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:34
  3733. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:459
  3734. msgctxt "@title:tab"
  3735. msgid "Profiles"
  3736. msgstr "Профили"
  3737. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:104
  3738. msgctxt "@label"
  3739. msgid "Create"
  3740. msgstr "Создать"
  3741. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:121
  3742. msgctxt "@label"
  3743. msgid "Duplicate"
  3744. msgstr "Дублировать"
  3745. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:202
  3746. msgctxt "@title:window"
  3747. msgid "Create Profile"
  3748. msgstr "Создать профиль"
  3749. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:204
  3750. msgctxt "@info"
  3751. msgid "Please provide a name for this profile."
  3752. msgstr "Укажите имя для данного профиля."
  3753. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:263
  3754. msgctxt "@title:window"
  3755. msgid "Duplicate Profile"
  3756. msgstr "Скопировать профиль"
  3757. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:294
  3758. msgctxt "@title:window"
  3759. msgid "Rename Profile"
  3760. msgstr "Переименовать профиль"
  3761. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:307
  3762. msgctxt "@title:window"
  3763. msgid "Import Profile"
  3764. msgstr "Импорт профиля"
  3765. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:336
  3766. msgctxt "@title:window"
  3767. msgid "Export Profile"
  3768. msgstr "Экспорт профиля"
  3769. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:399
  3770. msgctxt "@label %1 is printer name"
  3771. msgid "Printer: %1"
  3772. msgstr "Принтер: %1"
  3773. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:557
  3774. msgctxt "@action:button"
  3775. msgid "Update profile with current settings/overrides"
  3776. msgstr "Обновить профиль текущими параметрами"
  3777. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:583
  3778. msgctxt "@action:label"
  3779. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3780. msgstr "Данный профиль использует настройки принтера по умолчанию, поэтому список ниже пуст."
  3781. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:591
  3782. msgctxt "@action:label"
  3783. msgid "Your current settings match the selected profile."
  3784. msgstr "Ваши текущие параметры совпадают с выбранным профилем."
  3785. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/ProfilesPage.qml:609
  3786. msgctxt "@title:tab"
  3787. msgid "Global Settings"
  3788. msgstr "Общие параметры"
  3789. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:14
  3790. msgctxt "@title:tab"
  3791. msgid "Setting Visibility"
  3792. msgstr "Видимость параметров"
  3793. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/SettingVisibilityPage.qml:46
  3794. msgctxt "@label:textbox"
  3795. msgid "Check all"
  3796. msgstr "Выбрать все"
  3797. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:15
  3798. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:450
  3799. msgctxt "@title:tab"
  3800. msgid "General"
  3801. msgstr "Общее"
  3802. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:137
  3803. msgctxt "@label"
  3804. msgid "Interface"
  3805. msgstr "Интерфейс"
  3806. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:216
  3807. msgctxt "@label"
  3808. msgid "Currency:"
  3809. msgstr "Валюта:"
  3810. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:229
  3811. msgctxt "@label"
  3812. msgid "Theme:"
  3813. msgstr "Тема:"
  3814. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:285
  3815. msgctxt "@label"
  3816. msgid "You will need to restart the application for these changes to have effect."
  3817. msgstr "Для применения данных изменений вам потребуется перезапустить приложение."
  3818. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:302
  3819. msgctxt "@info:tooltip"
  3820. msgid "Slice automatically when changing settings."
  3821. msgstr "Нарезать автоматически при изменении настроек."
  3822. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:310
  3823. msgctxt "@option:check"
  3824. msgid "Slice automatically"
  3825. msgstr "Нарезать автоматически"
  3826. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:324
  3827. msgctxt "@label"
  3828. msgid "Viewport behavior"
  3829. msgstr "Поведение окна"
  3830. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:332
  3831. msgctxt "@info:tooltip"
  3832. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  3833. msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно."
  3834. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:341
  3835. msgctxt "@option:check"
  3836. msgid "Display overhang"
  3837. msgstr "Отобразить нависания"
  3838. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:351
  3839. msgctxt "@info:tooltip"
  3840. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  3841. msgstr "Отметьте отсутствующие или лишние поверхности модели с помощью предупреждающих знаков. В путях инструментов часто будут отсутствовать детали предполагаемой геометрии."
  3842. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:360
  3843. msgctxt "@option:check"
  3844. msgid "Display model errors"
  3845. msgstr "Показывать ошибки модели"
  3846. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:368
  3847. msgctxt "@info:tooltip"
  3848. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  3849. msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана"
  3850. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:373
  3851. msgctxt "@action:button"
  3852. msgid "Center camera when item is selected"
  3853. msgstr "Центрировать камеру на выбранном объекте"
  3854. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:383
  3855. msgctxt "@info:tooltip"
  3856. msgid "Should the default zoom behavior of cura be inverted?"
  3857. msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?"
  3858. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:388
  3859. msgctxt "@action:button"
  3860. msgid "Invert the direction of camera zoom."
  3861. msgstr "Инвертировать направление увеличения камеры."
  3862. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3863. msgctxt "@info:tooltip"
  3864. msgid "Should zooming move in the direction of the mouse?"
  3865. msgstr "Увеличивать по мере движения мышкой?"
  3866. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:404
  3867. msgctxt "@info:tooltip"
  3868. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  3869. msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается."
  3870. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:409
  3871. msgctxt "@action:button"
  3872. msgid "Zoom toward mouse direction"
  3873. msgstr "Увеличивать по движению мышки"
  3874. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:435
  3875. msgctxt "@info:tooltip"
  3876. msgid "Should models on the platform be moved so that they no longer intersect?"
  3877. msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?"
  3878. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:440
  3879. msgctxt "@option:check"
  3880. msgid "Ensure models are kept apart"
  3881. msgstr "Удостовериться, что модели размещены рядом"
  3882. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:449
  3883. msgctxt "@info:tooltip"
  3884. msgid "Should models on the platform be moved down to touch the build plate?"
  3885. msgstr "Следует ли опустить модели на стол?"
  3886. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:454
  3887. msgctxt "@option:check"
  3888. msgid "Automatically drop models to the build plate"
  3889. msgstr "Автоматически опускать модели на стол"
  3890. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:466
  3891. msgctxt "@info:tooltip"
  3892. msgid "Show caution message in g-code reader."
  3893. msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода."
  3894. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:475
  3895. msgctxt "@option:check"
  3896. msgid "Caution message in g-code reader"
  3897. msgstr "Предупреждающее сообщение в средстве считывания G-кода"
  3898. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:483
  3899. msgctxt "@info:tooltip"
  3900. msgid "Should layer be forced into compatibility mode?"
  3901. msgstr "Должен ли слой быть переведён в режим совместимости?"
  3902. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:488
  3903. msgctxt "@option:check"
  3904. msgid "Force layer view compatibility mode (restart required)"
  3905. msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)"
  3906. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:498
  3907. msgctxt "@info:tooltip"
  3908. msgid "Should Cura open at the location it was closed?"
  3909. msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?"
  3910. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:503
  3911. msgctxt "@option:check"
  3912. msgid "Restore window position on start"
  3913. msgstr "Восстановить положение окна при запуске"
  3914. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:513
  3915. msgctxt "@info:tooltip"
  3916. msgid "What type of camera rendering should be used?"
  3917. msgstr "Рендеринг камеры какого типа следует использовать?"
  3918. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:520
  3919. msgctxt "@window:text"
  3920. msgid "Camera rendering:"
  3921. msgstr "Рендеринг камеры:"
  3922. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:531
  3923. msgid "Perspective"
  3924. msgstr "Перспективная"
  3925. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:532
  3926. msgid "Orthographic"
  3927. msgstr "Ортографическая"
  3928. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:563
  3929. msgctxt "@label"
  3930. msgid "Opening and saving files"
  3931. msgstr "Открытие и сохранение файлов"
  3932. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:570
  3933. msgctxt "@info:tooltip"
  3934. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  3935. msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?"
  3936. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:575
  3937. msgctxt "@option:check"
  3938. msgid "Use a single instance of Cura"
  3939. msgstr "Использовать один экземпляр Cura"
  3940. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:585
  3941. msgctxt "@info:tooltip"
  3942. msgid "Should models be scaled to the build volume if they are too large?"
  3943. msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?"
  3944. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:590
  3945. msgctxt "@option:check"
  3946. msgid "Scale large models"
  3947. msgstr "Масштабировать большие модели"
  3948. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:600
  3949. msgctxt "@info:tooltip"
  3950. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  3951. msgstr "Модель может показаться очень маленькой, если её размерность задана в метрах, а не миллиметрах. Следует ли масштабировать такие модели?"
  3952. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:605
  3953. msgctxt "@option:check"
  3954. msgid "Scale extremely small models"
  3955. msgstr "Масштабировать очень маленькие модели"
  3956. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:615
  3957. msgctxt "@info:tooltip"
  3958. msgid "Should models be selected after they are loaded?"
  3959. msgstr "Выбрать модели после их загрузки?"
  3960. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:620
  3961. msgctxt "@option:check"
  3962. msgid "Select models when loaded"
  3963. msgstr "Выбрать модели при загрузке"
  3964. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:630
  3965. msgctxt "@info:tooltip"
  3966. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  3967. msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?"
  3968. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:635
  3969. msgctxt "@option:check"
  3970. msgid "Add machine prefix to job name"
  3971. msgstr "Добавить префикс принтера к имени задачи"
  3972. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:645
  3973. msgctxt "@info:tooltip"
  3974. msgid "Should a summary be shown when saving a project file?"
  3975. msgstr "Показывать сводку при сохранении файла проекта?"
  3976. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:649
  3977. msgctxt "@option:check"
  3978. msgid "Show summary dialog when saving project"
  3979. msgstr "Показывать сводку при сохранении проекта"
  3980. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:659
  3981. msgctxt "@info:tooltip"
  3982. msgid "Default behavior when opening a project file"
  3983. msgstr "Стандартное поведение при открытии файла проекта"
  3984. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:667
  3985. msgctxt "@window:text"
  3986. msgid "Default behavior when opening a project file: "
  3987. msgstr "Стандартное поведение при открытии файла проекта: "
  3988. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:681
  3989. msgctxt "@option:openProject"
  3990. msgid "Always ask me this"
  3991. msgstr "Всегда спрашивать меня"
  3992. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:682
  3993. msgctxt "@option:openProject"
  3994. msgid "Always open as a project"
  3995. msgstr "Всегда открывать как проект"
  3996. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:683
  3997. msgctxt "@option:openProject"
  3998. msgid "Always import models"
  3999. msgstr "Всегда импортировать модели"
  4000. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:719
  4001. msgctxt "@info:tooltip"
  4002. 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."
  4003. msgstr "При внесении изменений в профиль и переключении на другой, будет показан диалог, запрашивающий ваше решение о сохранении ваших изменений, или вы можете указать стандартное поведение и не показывать такой диалог."
  4004. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:733
  4005. msgctxt "@window:text"
  4006. msgid "Default behavior for changed setting values when switching to a different profile: "
  4007. msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: "
  4008. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:748
  4009. msgctxt "@option:discardOrKeep"
  4010. msgid "Always discard changed settings"
  4011. msgstr "Всегда сбрасывать измененные настройки"
  4012. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:749
  4013. msgctxt "@option:discardOrKeep"
  4014. msgid "Always transfer changed settings to new profile"
  4015. msgstr "Всегда передавать измененные настройки новому профилю"
  4016. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:783
  4017. msgctxt "@label"
  4018. msgid "Privacy"
  4019. msgstr "Приватность"
  4020. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:790
  4021. msgctxt "@info:tooltip"
  4022. msgid "Should Cura check for updates when the program is started?"
  4023. msgstr "Должна ли Cura проверять обновления программы при старте?"
  4024. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:795
  4025. msgctxt "@option:check"
  4026. msgid "Check for updates on start"
  4027. msgstr "Проверять обновления при старте"
  4028. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:805
  4029. msgctxt "@info:tooltip"
  4030. 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."
  4031. msgstr "Можно ли отправлять анонимную информацию о вашей печати в Ultimaker? Следует отметить, что ни модели, ни IP-адреса и никакая другая персональная информация не будет отправлена или сохранена."
  4032. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:810
  4033. msgctxt "@option:check"
  4034. msgid "Send (anonymous) print information"
  4035. msgstr "Отправлять (анонимно) информацию о печати"
  4036. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Preferences/GeneralPage.qml:819
  4037. msgctxt "@action:button"
  4038. msgid "More information"
  4039. msgstr "Дополнительная информация"
  4040. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewsSelector.qml:50
  4041. msgctxt "@label"
  4042. msgid "View type"
  4043. msgstr "Просмотр типа"
  4044. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:119
  4045. msgctxt "@label:MonitorStatus"
  4046. msgid "Not connected to a printer"
  4047. msgstr "Не подключен к принтеру"
  4048. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:123
  4049. msgctxt "@label:MonitorStatus"
  4050. msgid "Printer does not accept commands"
  4051. msgstr "Принтер не принимает команды"
  4052. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:133
  4053. msgctxt "@label:MonitorStatus"
  4054. msgid "In maintenance. Please check the printer"
  4055. msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер"
  4056. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:144
  4057. msgctxt "@label:MonitorStatus"
  4058. msgid "Lost connection with the printer"
  4059. msgstr "Потеряно соединение с принтером"
  4060. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:146
  4061. msgctxt "@label:MonitorStatus"
  4062. msgid "Printing..."
  4063. msgstr "Печать..."
  4064. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:149
  4065. msgctxt "@label:MonitorStatus"
  4066. msgid "Paused"
  4067. msgstr "Приостановлен"
  4068. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:152
  4069. msgctxt "@label:MonitorStatus"
  4070. msgid "Preparing..."
  4071. msgstr "Подготовка..."
  4072. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:154
  4073. msgctxt "@label:MonitorStatus"
  4074. msgid "Please remove the print"
  4075. msgstr "Пожалуйста, удалите напечатанное"
  4076. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:326
  4077. msgctxt "@label"
  4078. msgid "Abort Print"
  4079. msgstr "Прервать печать"
  4080. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MonitorButton.qml:338
  4081. msgctxt "@label"
  4082. msgid "Are you sure you want to abort the print?"
  4083. msgstr "Вы уверены, что желаете прервать печать?"
  4084. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:68
  4085. msgctxt "@label:textbox"
  4086. msgid "Search settings"
  4087. msgstr "Параметры поиска"
  4088. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:456
  4089. msgctxt "@action:menu"
  4090. msgid "Copy value to all extruders"
  4091. msgstr "Скопировать значение для всех экструдеров"
  4092. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:465
  4093. msgctxt "@action:menu"
  4094. msgid "Copy all changed values to all extruders"
  4095. msgstr "Копировать все измененные значения для всех экструдеров"
  4096. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:502
  4097. msgctxt "@action:menu"
  4098. msgid "Hide this setting"
  4099. msgstr "Спрятать этот параметр"
  4100. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:515
  4101. msgctxt "@action:menu"
  4102. msgid "Don't show this setting"
  4103. msgstr "Не показывать этот параметр"
  4104. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingView.qml:519
  4105. msgctxt "@action:menu"
  4106. msgid "Keep this setting visible"
  4107. msgstr "Оставить этот параметр видимым"
  4108. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingCategory.qml:200
  4109. msgctxt "@label"
  4110. msgid ""
  4111. "Some hidden settings use values different from their normal calculated value.\n"
  4112. "\n"
  4113. "Click to make these settings visible."
  4114. msgstr ""
  4115. "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n"
  4116. "\n"
  4117. "Щёлкните, чтобы сделать эти параметры видимыми."
  4118. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:81
  4119. msgctxt "@label"
  4120. msgid "This setting is not used because all the settings that it influences are overridden."
  4121. msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются."
  4122. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:86
  4123. msgctxt "@label Header for list of settings."
  4124. msgid "Affects"
  4125. msgstr "Влияет на"
  4126. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:91
  4127. msgctxt "@label Header for list of settings."
  4128. msgid "Affected By"
  4129. msgstr "Зависит от"
  4130. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:187
  4131. msgctxt "@label"
  4132. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  4133. msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров."
  4134. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:191
  4135. msgctxt "@label"
  4136. msgid "This setting is resolved from conflicting extruder-specific values:"
  4137. msgstr "Эта настройка получена из конфликтующих значений экструдера:"
  4138. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:230
  4139. msgctxt "@label"
  4140. msgid ""
  4141. "This setting has a value that is different from the profile.\n"
  4142. "\n"
  4143. "Click to restore the value of the profile."
  4144. msgstr ""
  4145. "Значение этого параметра отличается от значения в профиле.\n"
  4146. "\n"
  4147. "Щёлкните для восстановления значения из профиля."
  4148. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Settings/SettingItem.qml:329
  4149. msgctxt "@label"
  4150. msgid ""
  4151. "This setting is normally calculated, but it currently has an absolute value set.\n"
  4152. "\n"
  4153. "Click to restore the calculated value."
  4154. msgstr ""
  4155. "Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n"
  4156. "\n"
  4157. "Щёлкните для восстановления вычисленного значения."
  4158. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:27
  4159. msgctxt "@info:tooltip"
  4160. msgid "3D View"
  4161. msgstr "Трехмерный вид"
  4162. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:40
  4163. msgctxt "@info:tooltip"
  4164. msgid "Front View"
  4165. msgstr "Вид спереди"
  4166. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:53
  4167. msgctxt "@info:tooltip"
  4168. msgid "Top View"
  4169. msgstr "Вид сверху"
  4170. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:66
  4171. msgctxt "@info:tooltip"
  4172. msgid "Left View"
  4173. msgstr "Вид слева"
  4174. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ViewOrientationControls.qml:79
  4175. msgctxt "@info:tooltip"
  4176. msgid "Right View"
  4177. msgstr "Вид справа"
  4178. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:41
  4179. msgctxt "@label"
  4180. msgid "Extruder"
  4181. msgstr "Экструдер"
  4182. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:71
  4183. msgctxt "@tooltip"
  4184. 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."
  4185. msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен."
  4186. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:103
  4187. msgctxt "@tooltip"
  4188. msgid "The current temperature of this hotend."
  4189. msgstr "Текущая температура данного сопла."
  4190. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:177
  4191. msgctxt "@tooltip of temperature input"
  4192. msgid "The temperature to pre-heat the hotend to."
  4193. msgstr "Температура предварительного нагрева сопла."
  4194. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:341
  4195. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:332
  4196. msgctxt "@button Cancel pre-heating"
  4197. msgid "Cancel"
  4198. msgstr "Отмена"
  4199. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:344
  4200. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:335
  4201. msgctxt "@button"
  4202. msgid "Pre-heat"
  4203. msgstr "Преднагрев"
  4204. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:370
  4205. msgctxt "@tooltip of pre-heat"
  4206. 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."
  4207. msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати."
  4208. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:406
  4209. msgctxt "@tooltip"
  4210. msgid "The colour of the material in this extruder."
  4211. msgstr "Цвет материала в данном экструдере."
  4212. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:438
  4213. msgctxt "@tooltip"
  4214. msgid "The material in this extruder."
  4215. msgstr "Материал в данном экструдере."
  4216. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ExtruderBox.qml:470
  4217. msgctxt "@tooltip"
  4218. msgid "The nozzle inserted in this extruder."
  4219. msgstr "Сопло, вставленное в данный экструдер."
  4220. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:26
  4221. msgctxt "@label"
  4222. msgid "Build plate"
  4223. msgstr "Рабочий стол"
  4224. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:56
  4225. msgctxt "@tooltip"
  4226. 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."
  4227. msgstr "Целевая температура горячего стола. Стол будет нагреваться и охлаждаться, оставаясь на этой температуре. Если установлена в 0, значит нагрев стола отключен."
  4228. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:88
  4229. msgctxt "@tooltip"
  4230. msgid "The current temperature of the heated bed."
  4231. msgstr "Текущая температура горячего стола."
  4232. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:161
  4233. msgctxt "@tooltip of temperature input"
  4234. msgid "The temperature to pre-heat the bed to."
  4235. msgstr "Температура преднагрева горячего стола."
  4236. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/HeatedBedBox.qml:361
  4237. msgctxt "@tooltip of pre-heat"
  4238. 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."
  4239. msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати."
  4240. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:52
  4241. msgctxt "@label"
  4242. msgid "Printer control"
  4243. msgstr "Управление принтером"
  4244. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:67
  4245. msgctxt "@label"
  4246. msgid "Jog Position"
  4247. msgstr "Положение толчковой подачи"
  4248. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:85
  4249. msgctxt "@label"
  4250. msgid "X/Y"
  4251. msgstr "X/Y"
  4252. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:192
  4253. msgctxt "@label"
  4254. msgid "Z"
  4255. msgstr "Z"
  4256. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:257
  4257. msgctxt "@label"
  4258. msgid "Jog Distance"
  4259. msgstr "Расстояние толчковой подачи"
  4260. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:301
  4261. msgctxt "@label"
  4262. msgid "Send G-code"
  4263. msgstr "Отправить G-код"
  4264. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/ManualPrinterControl.qml:365
  4265. msgctxt "@tooltip of G-code command input"
  4266. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  4267. msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды."
  4268. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterOutput/OutputDeviceHeader.qml:55
  4269. msgctxt "@info:status"
  4270. msgid "The printer is not connected."
  4271. msgstr "Принтер не подключен."
  4272. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:114
  4273. msgctxt "@label"
  4274. msgid "Is printed as support."
  4275. msgstr "Печатается как поддержка."
  4276. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:117
  4277. msgctxt "@label"
  4278. msgid "Other models overlapping with this model are modified."
  4279. msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены."
  4280. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:120
  4281. msgctxt "@label"
  4282. msgid "Infill overlapping with this model is modified."
  4283. msgstr "Изменено заполнение перекрытия с этой моделью."
  4284. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:123
  4285. msgctxt "@label"
  4286. msgid "Overlaps with this model are not supported."
  4287. msgstr "Перекрытия с этой моделью не поддерживаются."
  4288. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ObjectItemButton.qml:130
  4289. msgctxt "@label %1 is the number of settings it overrides."
  4290. msgid "Overrides %1 setting."
  4291. msgid_plural "Overrides %1 settings."
  4292. msgstr[0] "Переопределяет %1 настройку."
  4293. msgstr[1] "Переопределяет %1 настройки."
  4294. msgstr[2] "Переопределяет %1 настроек."
  4295. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/MainWindowHeader.qml:90
  4296. msgctxt "@action:button"
  4297. msgid "Marketplace"
  4298. msgstr "Магазин"
  4299. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:31
  4300. msgctxt "@title:menu menubar:toplevel"
  4301. msgid "&Edit"
  4302. msgstr "Правка"
  4303. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:56
  4304. msgctxt "@title:menu menubar:toplevel"
  4305. msgid "E&xtensions"
  4306. msgstr "Расширения"
  4307. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:94
  4308. msgctxt "@title:menu menubar:toplevel"
  4309. msgid "P&references"
  4310. msgstr "Настройки"
  4311. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:102
  4312. msgctxt "@title:menu menubar:toplevel"
  4313. msgid "&Help"
  4314. msgstr "Справка"
  4315. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:148
  4316. msgctxt "@title:window"
  4317. msgid "New project"
  4318. msgstr "Новый проект"
  4319. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/MainWindow/ApplicationMenu.qml:149
  4320. msgctxt "@info:question"
  4321. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  4322. msgstr "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки."
  4323. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:257
  4324. msgctxt "@label"
  4325. msgid "This package will be installed after restarting."
  4326. msgstr "Этот пакет будет установлен после перезапуска."
  4327. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:453
  4328. msgctxt "@title:tab"
  4329. msgid "Settings"
  4330. msgstr "Параметры"
  4331. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:576
  4332. msgctxt "@title:window %1 is the application name"
  4333. msgid "Closing %1"
  4334. msgstr "Закрытие %1"
  4335. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:577
  4336. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:589
  4337. msgctxt "@label %1 is the application name"
  4338. msgid "Are you sure you want to exit %1?"
  4339. msgstr "Вы уверены, что хотите выйти из %1?"
  4340. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:737
  4341. msgctxt "@window:title"
  4342. msgid "Install Package"
  4343. msgstr "Установить пакет"
  4344. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:745
  4345. msgctxt "@title:window"
  4346. msgid "Open File(s)"
  4347. msgstr "Открыть файл(ы)"
  4348. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:748
  4349. msgctxt "@text:window"
  4350. 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."
  4351. msgstr "Среди выбранных файлов мы нашли несколько файлов с G-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста."
  4352. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:857
  4353. msgctxt "@title:window"
  4354. msgid "Add Printer"
  4355. msgstr "Добавление принтера"
  4356. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/Cura.qml:865
  4357. msgctxt "@title:window"
  4358. msgid "What's New"
  4359. msgstr "Что нового"
  4360. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:47
  4361. msgctxt "@status"
  4362. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  4363. msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету."
  4364. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:51
  4365. msgctxt "@status"
  4366. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  4367. msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку."
  4368. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:56
  4369. msgctxt "@status"
  4370. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  4371. msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход."
  4372. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:60
  4373. msgctxt "@status"
  4374. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  4375. msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету."
  4376. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:238
  4377. msgctxt "@button"
  4378. msgid "Add printer"
  4379. msgstr "Добавить принтер"
  4380. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelector.qml:255
  4381. msgctxt "@button"
  4382. msgid "Manage printers"
  4383. msgstr "Управление принтерами"
  4384. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4385. msgctxt "@label"
  4386. msgid "Connected printers"
  4387. msgstr "Подключенные принтеры"
  4388. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/PrinterSelector/MachineSelectorList.qml:19
  4389. msgctxt "@label"
  4390. msgid "Preset printers"
  4391. msgstr "Предварительно настроенные принтеры"
  4392. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ExtruderButton.qml:16
  4393. msgctxt "@label %1 is filled in with the name of an extruder"
  4394. msgid "Print Selected Model with %1"
  4395. msgid_plural "Print Selected Models with %1"
  4396. msgstr[0] "Печатать выбранную модель с %1"
  4397. msgstr[1] "Печатать выбранные модели с %1"
  4398. msgstr[2] "Печатать выбранные модели с %1"
  4399. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:31
  4400. msgctxt "@label"
  4401. msgid "Time estimation"
  4402. msgstr "Оценка времени"
  4403. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:114
  4404. msgctxt "@label"
  4405. msgid "Material estimation"
  4406. msgstr "Оценка материала"
  4407. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:164
  4408. msgctxt "@label m for meter"
  4409. msgid "%1m"
  4410. msgstr "%1 м"
  4411. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/PrintJobInformation.qml:165
  4412. msgctxt "@label g for grams"
  4413. msgid "%1g"
  4414. msgstr "%1 г"
  4415. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:55
  4416. msgctxt "@label:PrintjobStatus"
  4417. msgid "Slicing..."
  4418. msgstr "Нарезка на слои..."
  4419. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:67
  4420. msgctxt "@label:PrintjobStatus"
  4421. msgid "Unable to slice"
  4422. msgstr "Невозможно нарезать"
  4423. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4424. msgctxt "@button"
  4425. msgid "Processing"
  4426. msgstr "Обработка"
  4427. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:103
  4428. msgctxt "@button"
  4429. msgid "Slice"
  4430. msgstr "Нарезка на слои"
  4431. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:104
  4432. msgctxt "@label"
  4433. msgid "Start the slicing process"
  4434. msgstr "Запустить нарезку на слои"
  4435. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/SliceProcessWidget.qml:118
  4436. msgctxt "@button"
  4437. msgid "Cancel"
  4438. msgstr "Отмена"
  4439. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:59
  4440. msgctxt "@label"
  4441. msgid "No time estimation available"
  4442. msgstr "Оценка времени недоступна"
  4443. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:77
  4444. msgctxt "@label"
  4445. msgid "No cost estimation available"
  4446. msgstr "Оценка расходов недоступна"
  4447. #: /mnt/projects/ultimaker/cura/Cura/resources/qml/ActionPanel/OutputProcessWidget.qml:127
  4448. msgctxt "@button"
  4449. msgid "Preview"
  4450. msgstr "Предварительный просмотр"
  4451. #: RemovableDriveOutputDevice/plugin.json
  4452. msgctxt "description"
  4453. msgid "Provides removable drive hotplugging and writing support."
  4454. msgstr "Предоставляет поддержку для подключения и записи на внешний носитель."
  4455. #: RemovableDriveOutputDevice/plugin.json
  4456. msgctxt "name"
  4457. msgid "Removable Drive Output Device Plugin"
  4458. msgstr "Плагин для работы с внешним носителем"
  4459. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4460. msgctxt "description"
  4461. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  4462. msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0."
  4463. #: VersionUpgrade/VersionUpgrade35to40/plugin.json
  4464. msgctxt "name"
  4465. msgid "Version Upgrade 3.5 to 4.0"
  4466. msgstr "Обновление версии 3.5 до 4.0"
  4467. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4468. msgctxt "description"
  4469. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  4470. msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7."
  4471. #: VersionUpgrade/VersionUpgrade462to47/plugin.json
  4472. msgctxt "name"
  4473. msgid "Version Upgrade 4.6.2 to 4.7"
  4474. msgstr "Обновление версии с 4.6.2 до 4.7"
  4475. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4476. msgctxt "description"
  4477. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  4478. msgstr "Обновляет настройки Cura 2.2 до Cura 2.4."
  4479. #: VersionUpgrade/VersionUpgrade22to24/plugin.json
  4480. msgctxt "name"
  4481. msgid "Version Upgrade 2.2 to 2.4"
  4482. msgstr "Обновление версии 2.2 до 2.4"
  4483. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4484. msgctxt "description"
  4485. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  4486. msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3."
  4487. #: VersionUpgrade/VersionUpgrade42to43/plugin.json
  4488. msgctxt "name"
  4489. msgid "Version Upgrade 4.2 to 4.3"
  4490. msgstr "Обновление версии 4.2 до 4.3"
  4491. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4492. msgctxt "description"
  4493. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  4494. msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2."
  4495. #: VersionUpgrade/VersionUpgrade460to462/plugin.json
  4496. msgctxt "name"
  4497. msgid "Version Upgrade 4.6.0 to 4.6.2"
  4498. msgstr "Обновление версии с 4.6.0 до 4.6.2"
  4499. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4500. msgctxt "description"
  4501. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  4502. msgstr "Обновление настроек Cura 3.0 до Cura 3.1."
  4503. #: VersionUpgrade/VersionUpgrade30to31/plugin.json
  4504. msgctxt "name"
  4505. msgid "Version Upgrade 3.0 to 3.1"
  4506. msgstr "Обновление версии 3.0 до 3.1"
  4507. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4508. msgctxt "description"
  4509. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  4510. msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1."
  4511. #: VersionUpgrade/VersionUpgrade40to41/plugin.json
  4512. msgctxt "name"
  4513. msgid "Version Upgrade 4.0 to 4.1"
  4514. msgstr "Обновление версии 4.0 до 4.1"
  4515. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4516. msgctxt "description"
  4517. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  4518. msgstr "Обновляет настройки Cura 2.6 до Cura 2.7."
  4519. #: VersionUpgrade/VersionUpgrade26to27/plugin.json
  4520. msgctxt "name"
  4521. msgid "Version Upgrade 2.6 to 2.7"
  4522. msgstr "Обновление версии 2.6 до 2.7"
  4523. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4524. msgctxt "description"
  4525. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  4526. msgstr "Обновляет настройки Cura 2.5 до Cura 2.6."
  4527. #: VersionUpgrade/VersionUpgrade25to26/plugin.json
  4528. msgctxt "name"
  4529. msgid "Version Upgrade 2.5 to 2.6"
  4530. msgstr "Обновление версии 2.5 до 2.6"
  4531. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4532. msgctxt "description"
  4533. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  4534. msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2."
  4535. #: VersionUpgrade/VersionUpgrade41to42/plugin.json
  4536. msgctxt "name"
  4537. msgid "Version Upgrade 4.1 to 4.2"
  4538. msgstr "Обновление версии 4.1 до 4.2"
  4539. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4540. msgctxt "description"
  4541. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  4542. msgstr "Обновляет настройки Cura 2.1 до Cura 2.2."
  4543. #: VersionUpgrade/VersionUpgrade21to22/plugin.json
  4544. msgctxt "name"
  4545. msgid "Version Upgrade 2.1 to 2.2"
  4546. msgstr "Обновление версии 2.1 до 2.2"
  4547. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4548. msgctxt "description"
  4549. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  4550. msgstr "Обновляет настройки Cura 3.2 до Cura 3.3."
  4551. #: VersionUpgrade/VersionUpgrade32to33/plugin.json
  4552. msgctxt "name"
  4553. msgid "Version Upgrade 3.2 to 3.3"
  4554. msgstr "Обновление версии 3.2 до 3.3"
  4555. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4556. msgctxt "description"
  4557. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  4558. msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6."
  4559. #: VersionUpgrade/VersionUpgrade45to46/plugin.json
  4560. msgctxt "name"
  4561. msgid "Version Upgrade 4.5 to 4.6"
  4562. msgstr "Обновление версии 4.5 до 4.6"
  4563. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4564. msgctxt "description"
  4565. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  4566. msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5."
  4567. #: VersionUpgrade/VersionUpgrade44to45/plugin.json
  4568. msgctxt "name"
  4569. msgid "Version Upgrade 4.4 to 4.5"
  4570. msgstr "Обновление версии 4.4 до 4.5"
  4571. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4572. msgctxt "description"
  4573. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  4574. msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8."
  4575. #: VersionUpgrade/VersionUpgrade47to48/plugin.json
  4576. msgctxt "name"
  4577. msgid "Version Upgrade 4.7 to 4.8"
  4578. msgstr "Обновление версии 4.7 до 4.8"
  4579. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4580. msgctxt "description"
  4581. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  4582. msgstr "Обновляет настройки Cura 3.3 до Cura 3.4."
  4583. #: VersionUpgrade/VersionUpgrade33to34/plugin.json
  4584. msgctxt "name"
  4585. msgid "Version Upgrade 3.3 to 3.4"
  4586. msgstr "Обновление версии 3.3 до 3.4"
  4587. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4588. msgctxt "description"
  4589. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  4590. msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4."
  4591. #: VersionUpgrade/VersionUpgrade43to44/plugin.json
  4592. msgctxt "name"
  4593. msgid "Version Upgrade 4.3 to 4.4"
  4594. msgstr "Обновление версии 4.3 до 4.4"
  4595. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4596. msgctxt "description"
  4597. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  4598. msgstr "Обновляет настройки Cura 3.4 до Cura 3.5."
  4599. #: VersionUpgrade/VersionUpgrade34to35/plugin.json
  4600. msgctxt "name"
  4601. msgid "Version Upgrade 3.4 to 3.5"
  4602. msgstr "Обновление версии 3.4 до 3.5"
  4603. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4604. msgctxt "description"
  4605. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  4606. msgstr "Обновляет настройки Cura 2.7 до Cura 3.0."
  4607. #: VersionUpgrade/VersionUpgrade27to30/plugin.json
  4608. msgctxt "name"
  4609. msgid "Version Upgrade 2.7 to 3.0"
  4610. msgstr "Обновление версии 2.7 до 3.0"
  4611. #: AMFReader/plugin.json
  4612. msgctxt "description"
  4613. msgid "Provides support for reading AMF files."
  4614. msgstr "Обеспечивает поддержку чтения файлов AMF."
  4615. #: AMFReader/plugin.json
  4616. msgctxt "name"
  4617. msgid "AMF Reader"
  4618. msgstr "Средство чтения AMF"
  4619. #: GCodeProfileReader/plugin.json
  4620. msgctxt "description"
  4621. msgid "Provides support for importing profiles from g-code files."
  4622. msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов."
  4623. #: GCodeProfileReader/plugin.json
  4624. msgctxt "name"
  4625. msgid "G-code Profile Reader"
  4626. msgstr "Средство считывания профиля из G-кода"
  4627. #: FirmwareUpdater/plugin.json
  4628. msgctxt "description"
  4629. msgid "Provides a machine actions for updating firmware."
  4630. msgstr "Обеспечение действий принтера для обновления прошивки."
  4631. #: FirmwareUpdater/plugin.json
  4632. msgctxt "name"
  4633. msgid "Firmware Updater"
  4634. msgstr "Средство обновления прошивки"
  4635. #: X3DReader/plugin.json
  4636. msgctxt "description"
  4637. msgid "Provides support for reading X3D files."
  4638. msgstr "Предоставляет поддержку для чтения X3D файлов."
  4639. #: X3DReader/plugin.json
  4640. msgctxt "name"
  4641. msgid "X3D Reader"
  4642. msgstr "Чтение X3D"
  4643. #: Toolbox/plugin.json
  4644. msgctxt "description"
  4645. msgid "Find, manage and install new Cura packages."
  4646. msgstr "Поиск, управление и установка новых пакетов Cura."
  4647. #: Toolbox/plugin.json
  4648. msgctxt "name"
  4649. msgid "Toolbox"
  4650. msgstr "Панель инструментов"
  4651. #: PerObjectSettingsTool/plugin.json
  4652. msgctxt "description"
  4653. msgid "Provides the Per Model Settings."
  4654. msgstr "Предоставляет параметры для каждой модели."
  4655. #: PerObjectSettingsTool/plugin.json
  4656. msgctxt "name"
  4657. msgid "Per Model Settings Tool"
  4658. msgstr "Инструмент для настройки каждой модели"
  4659. #: PostProcessingPlugin/plugin.json
  4660. msgctxt "description"
  4661. msgid "Extension that allows for user created scripts for post processing"
  4662. msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки"
  4663. #: PostProcessingPlugin/plugin.json
  4664. msgctxt "name"
  4665. msgid "Post Processing"
  4666. msgstr "Пост обработка"
  4667. #: CuraEngineBackend/plugin.json
  4668. msgctxt "description"
  4669. msgid "Provides the link to the CuraEngine slicing backend."
  4670. msgstr "Предоставляет интерфейс к движку CuraEngine."
  4671. #: CuraEngineBackend/plugin.json
  4672. msgctxt "name"
  4673. msgid "CuraEngine Backend"
  4674. msgstr "Движок CuraEngine"
  4675. #: USBPrinting/plugin.json
  4676. msgctxt "description"
  4677. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  4678. msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку."
  4679. #: USBPrinting/plugin.json
  4680. msgctxt "name"
  4681. msgid "USB printing"
  4682. msgstr "Печать через USB"
  4683. #: CuraProfileWriter/plugin.json
  4684. msgctxt "description"
  4685. msgid "Provides support for exporting Cura profiles."
  4686. msgstr "Предоставляет поддержку для экспорта профилей Cura."
  4687. #: CuraProfileWriter/plugin.json
  4688. msgctxt "name"
  4689. msgid "Cura Profile Writer"
  4690. msgstr "Запись профиля Cura"
  4691. #: UM3NetworkPrinting/plugin.json
  4692. msgctxt "description"
  4693. msgid "Manages network connections to Ultimaker networked printers."
  4694. msgstr "Управляет сетевыми соединениями с сетевыми принтерами Ultimaker 3."
  4695. #: UM3NetworkPrinting/plugin.json
  4696. msgctxt "name"
  4697. msgid "Ultimaker Network Connection"
  4698. msgstr "Соединение с сетью Ultimaker"
  4699. #: UltimakerMachineActions/plugin.json
  4700. msgctxt "description"
  4701. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  4702. msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)"
  4703. #: UltimakerMachineActions/plugin.json
  4704. msgctxt "name"
  4705. msgid "Ultimaker machine actions"
  4706. msgstr "Действия с принтерами Ultimaker"
  4707. #: 3MFReader/plugin.json
  4708. msgctxt "description"
  4709. msgid "Provides support for reading 3MF files."
  4710. msgstr "Предоставляет поддержку для чтения 3MF файлов."
  4711. #: 3MFReader/plugin.json
  4712. msgctxt "name"
  4713. msgid "3MF Reader"
  4714. msgstr "Чтение 3MF"
  4715. #: GCodeGzWriter/plugin.json
  4716. msgctxt "description"
  4717. msgid "Writes g-code to a compressed archive."
  4718. msgstr "Записывает G-код в сжатый архив."
  4719. #: GCodeGzWriter/plugin.json
  4720. msgctxt "name"
  4721. msgid "Compressed G-code Writer"
  4722. msgstr "Средство записи сжатого G-кода"
  4723. #: GCodeGzReader/plugin.json
  4724. msgctxt "description"
  4725. msgid "Reads g-code from a compressed archive."
  4726. msgstr "Считывает G-код из сжатого архива."
  4727. #: GCodeGzReader/plugin.json
  4728. msgctxt "name"
  4729. msgid "Compressed G-code Reader"
  4730. msgstr "Средство считывания сжатого G-кода"
  4731. #: ModelChecker/plugin.json
  4732. msgctxt "description"
  4733. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  4734. msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации."
  4735. #: ModelChecker/plugin.json
  4736. msgctxt "name"
  4737. msgid "Model Checker"
  4738. msgstr "Средство проверки моделей"
  4739. #: FirmwareUpdateChecker/plugin.json
  4740. msgctxt "description"
  4741. msgid "Checks for firmware updates."
  4742. msgstr "Проверяет наличие обновлений ПО."
  4743. #: FirmwareUpdateChecker/plugin.json
  4744. msgctxt "name"
  4745. msgid "Firmware Update Checker"
  4746. msgstr "Проверка обновлений"
  4747. #: GCodeReader/plugin.json
  4748. msgctxt "description"
  4749. msgid "Allows loading and displaying G-code files."
  4750. msgstr "Позволяет загружать и отображать файлы G-code."
  4751. #: GCodeReader/plugin.json
  4752. msgctxt "name"
  4753. msgid "G-code Reader"
  4754. msgstr "Чтение G-code"
  4755. #: SupportEraser/plugin.json
  4756. msgctxt "description"
  4757. msgid "Creates an eraser mesh to block the printing of support in certain places"
  4758. msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах"
  4759. #: SupportEraser/plugin.json
  4760. msgctxt "name"
  4761. msgid "Support Eraser"
  4762. msgstr "Средство стирания элемента поддержки"
  4763. #: TrimeshReader/plugin.json
  4764. msgctxt "description"
  4765. msgid "Provides support for reading model files."
  4766. msgstr "Предоставляет поддержку для чтения файлов моделей."
  4767. #: TrimeshReader/plugin.json
  4768. msgctxt "name"
  4769. msgid "Trimesh Reader"
  4770. msgstr "Средство чтения Trimesh"
  4771. #: SentryLogger/plugin.json
  4772. msgctxt "description"
  4773. msgid "Logs certain events so that they can be used by the crash reporter"
  4774. msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы"
  4775. #: SentryLogger/plugin.json
  4776. msgctxt "name"
  4777. msgid "Sentry Logger"
  4778. msgstr "Контрольный журнал"
  4779. #: UFPReader/plugin.json
  4780. msgctxt "description"
  4781. msgid "Provides support for reading Ultimaker Format Packages."
  4782. msgstr "Предоставляет поддержку для чтения пакетов формата Ultimaker."
  4783. #: UFPReader/plugin.json
  4784. msgctxt "name"
  4785. msgid "UFP Reader"
  4786. msgstr "Средство считывания UFP"
  4787. #: LegacyProfileReader/plugin.json
  4788. msgctxt "description"
  4789. msgid "Provides support for importing profiles from legacy Cura versions."
  4790. msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura."
  4791. #: LegacyProfileReader/plugin.json
  4792. msgctxt "name"
  4793. msgid "Legacy Cura Profile Reader"
  4794. msgstr "Чтение устаревших профилей Cura"
  4795. #: PrepareStage/plugin.json
  4796. msgctxt "description"
  4797. msgid "Provides a prepare stage in Cura."
  4798. msgstr "Обеспечивает подготовительный этап в Cura."
  4799. #: PrepareStage/plugin.json
  4800. msgctxt "name"
  4801. msgid "Prepare Stage"
  4802. msgstr "Подготовительный этап"
  4803. #: MonitorStage/plugin.json
  4804. msgctxt "description"
  4805. msgid "Provides a monitor stage in Cura."
  4806. msgstr "Обеспечивает этап мониторинга в Cura."
  4807. #: MonitorStage/plugin.json
  4808. msgctxt "name"
  4809. msgid "Monitor Stage"
  4810. msgstr "Этап мониторинга"
  4811. #: XRayView/plugin.json
  4812. msgctxt "description"
  4813. msgid "Provides the X-Ray view."
  4814. msgstr "Предоставляет рентгеновский вид."
  4815. #: XRayView/plugin.json
  4816. msgctxt "name"
  4817. msgid "X-Ray View"
  4818. msgstr "Просмотр в рентгене"
  4819. #: 3MFWriter/plugin.json
  4820. msgctxt "description"
  4821. msgid "Provides support for writing 3MF files."
  4822. msgstr "Предоставляет возможность записи 3MF файлов."
  4823. #: 3MFWriter/plugin.json
  4824. msgctxt "name"
  4825. msgid "3MF Writer"
  4826. msgstr "Запись 3MF"
  4827. #: SliceInfoPlugin/plugin.json
  4828. msgctxt "description"
  4829. msgid "Submits anonymous slice info. Can be disabled through preferences."
  4830. msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки."
  4831. #: SliceInfoPlugin/plugin.json
  4832. msgctxt "name"
  4833. msgid "Slice info"
  4834. msgstr "Информация о нарезке модели"
  4835. #: PreviewStage/plugin.json
  4836. msgctxt "description"
  4837. msgid "Provides a preview stage in Cura."
  4838. msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura."
  4839. #: PreviewStage/plugin.json
  4840. msgctxt "name"
  4841. msgid "Preview Stage"
  4842. msgstr "Этап предварительного просмотра"
  4843. #: SimulationView/plugin.json
  4844. msgctxt "description"
  4845. msgid "Provides the Simulation view."
  4846. msgstr "Открытие вида моделирования."
  4847. #: SimulationView/plugin.json
  4848. msgctxt "name"
  4849. msgid "Simulation View"
  4850. msgstr "Вид моделирования"
  4851. #: MachineSettingsAction/plugin.json
  4852. msgctxt "description"
  4853. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  4854. msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)"
  4855. #: MachineSettingsAction/plugin.json
  4856. msgctxt "name"
  4857. msgid "Machine Settings Action"
  4858. msgstr "Параметры принтера действие"
  4859. #: XmlMaterialProfile/plugin.json
  4860. msgctxt "description"
  4861. msgid "Provides capabilities to read and write XML-based material profiles."
  4862. msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML."
  4863. #: XmlMaterialProfile/plugin.json
  4864. msgctxt "name"
  4865. msgid "Material Profiles"
  4866. msgstr "Профили материалов"
  4867. #: SolidView/plugin.json
  4868. msgctxt "description"
  4869. msgid "Provides a normal solid mesh view."
  4870. msgstr "Предоставляет просмотр твёрдого тела."
  4871. #: SolidView/plugin.json
  4872. msgctxt "name"
  4873. msgid "Solid View"
  4874. msgstr "Обзор"
  4875. #: CuraProfileReader/plugin.json
  4876. msgctxt "description"
  4877. msgid "Provides support for importing Cura profiles."
  4878. msgstr "Предоставляет поддержку для импорта профилей Cura."
  4879. #: CuraProfileReader/plugin.json
  4880. msgctxt "name"
  4881. msgid "Cura Profile Reader"
  4882. msgstr "Чтение профиля Cura"
  4883. #: UFPWriter/plugin.json
  4884. msgctxt "description"
  4885. msgid "Provides support for writing Ultimaker Format Packages."
  4886. msgstr "Предоставляет поддержку для записи пакетов формата Ultimaker."
  4887. #: UFPWriter/plugin.json
  4888. msgctxt "name"
  4889. msgid "UFP Writer"
  4890. msgstr "Средство записи UFP"
  4891. #: GCodeWriter/plugin.json
  4892. msgctxt "description"
  4893. msgid "Writes g-code to a file."
  4894. msgstr "Записывает G-код в файл."
  4895. #: GCodeWriter/plugin.json
  4896. msgctxt "name"
  4897. msgid "G-code Writer"
  4898. msgstr "Средство записи G-кода"
  4899. #: ImageReader/plugin.json
  4900. msgctxt "description"
  4901. msgid "Enables ability to generate printable geometry from 2D image files."
  4902. msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений."
  4903. #: ImageReader/plugin.json
  4904. msgctxt "name"
  4905. msgid "Image Reader"
  4906. msgstr "Чтение изображений"
  4907. #: CuraDrive/plugin.json
  4908. msgctxt "description"
  4909. msgid "Backup and restore your configuration."
  4910. msgstr "Резервное копирование и восстановление конфигурации."
  4911. #: CuraDrive/plugin.json
  4912. msgctxt "name"
  4913. msgid "Cura Backups"
  4914. msgstr "Резервные копии Cura"
  4915. #~ msgctxt "@info:status"
  4916. #~ msgid "Global stack is missing."
  4917. #~ msgstr "Общий стек отсутствует."
  4918. #~ msgctxt "@info:status"
  4919. #~ msgid "Your model is not manifold. The highlighted areas indicate either missing or extraneous surfaces."
  4920. #~ msgstr "Модель не размножена. Выделены области с отсутствующими или лишними поверхностями."
  4921. #~ msgctxt "@info:title"
  4922. #~ msgid "Model errors"
  4923. #~ msgstr "Ошибки модели"
  4924. #~ msgctxt "@label:listbox"
  4925. #~ msgid "Layer thickness"
  4926. #~ msgstr "Толщина слоя"
  4927. #~ msgctxt "@label"
  4928. #~ msgid "Your key to connected 3D printing"
  4929. #~ msgstr "Ваш ключ к дистанционной 3D-печати"
  4930. #~ msgctxt "@text"
  4931. #~ msgid ""
  4932. #~ "- Customize your experience with more print profiles and plugins\n"
  4933. #~ "- Stay flexible by syncing your setup and loading it anywhere\n"
  4934. #~ "- Increase efficiency with a remote workflow on Ultimaker printers"
  4935. #~ msgstr ""
  4936. #~ "- Новые профили печати и подключаемые модули позволяют вам печатать именно то, что вы хотите\n"
  4937. #~ "- Функция синхронизации настроек и их загрузки из любого места расширяет ваши возможности\n"
  4938. #~ "- Удаленная работа на принтерах Ultimaker обеспечивает повышение эффективности ваших процессов"
  4939. #~ msgctxt "@button"
  4940. #~ msgid "Create account"
  4941. #~ msgstr "Создать учетную запись"
  4942. #~ msgctxt "@action:inmenu menubar:edit"
  4943. #~ msgid "Delete Selected Model"
  4944. #~ msgid_plural "Delete Selected Models"
  4945. #~ msgstr[0] "Удалить выбранную модель"
  4946. #~ msgstr[1] "Удалить выбранные модели"
  4947. #~ msgstr[2] "Удалить выбранные модели"
  4948. #~ msgctxt "@action:inmenu menubar:edit"
  4949. #~ msgid "Center Selected Model"
  4950. #~ msgid_plural "Center Selected Models"
  4951. #~ msgstr[0] "Центрировать выбранную модель"
  4952. #~ msgstr[1] "Центрировать выбранные модели"
  4953. #~ msgstr[2] "Центрировать выбранные модели"
  4954. #~ msgctxt "@action:inmenu menubar:edit"
  4955. #~ msgid "Multiply Selected Model"
  4956. #~ msgid_plural "Multiply Selected Models"
  4957. #~ msgstr[0] "Размножить выбранную модель"
  4958. #~ msgstr[1] "Размножить выбранные модели"
  4959. #~ msgstr[2] "Размножить выбранные модели"
  4960. #~ msgctxt "@button"
  4961. #~ msgid "Finish"
  4962. #~ msgstr "Завершить"
  4963. #~ msgctxt "@label"
  4964. #~ msgid "Ultimaker Account"
  4965. #~ msgstr "Учетная запись Ultimaker"
  4966. #~ msgctxt "@text"
  4967. #~ msgid "Your key to connected 3D printing"
  4968. #~ msgstr "Ваш ключ к дистанционной 3D-печати"
  4969. #~ msgctxt "@text"
  4970. #~ msgid "- Customize your experience with more print profiles and plugins"
  4971. #~ msgstr "- Новые профили печати и подключаемые модули позволяют вам печатать именно то, что вы хотите"
  4972. #~ msgctxt "@text"
  4973. #~ msgid "- Stay flexible by syncing your setup and loading it anywhere"
  4974. #~ msgstr "- Функция синхронизации настроек и их загрузки из любого места расширяет ваши возможности"
  4975. #~ msgctxt "@text"
  4976. #~ msgid "- Increase efficiency with a remote workflow on Ultimaker printers"
  4977. #~ msgstr "- Удаленная работа на принтерах Ultimaker обеспечивает повышение эффективности ваших процессов"
  4978. #~ msgctxt "@text"
  4979. #~ msgid ""
  4980. #~ "Please follow these steps to set up\n"
  4981. #~ "Ultimaker Cura. This will only take a few moments."
  4982. #~ msgstr ""
  4983. #~ "Выполните указанные ниже действия для настройки\n"
  4984. #~ "Ultimaker Cura. Это займет немного времени."
  4985. #~ msgctxt "@label"
  4986. #~ msgid "What's new in Ultimaker Cura"
  4987. #~ msgstr "Что нового в Ultimaker Cura"
  4988. #~ msgctxt "@label ({} is object name)"
  4989. #~ msgid "Are you sure you wish to remove {}? This cannot be undone!"
  4990. #~ msgstr "Действительно удалить {}? Это действие невозможно будет отменить!"
  4991. #~ msgctxt "@info:status"
  4992. #~ msgid "The selected model was too small to load."
  4993. #~ msgstr "Выбранная модель слишком мала для загрузки."
  4994. #~ msgctxt "@info:status"
  4995. #~ msgid "Successfully imported profile {0}"
  4996. #~ msgstr "Успешно импортирован профиль {0}"
  4997. #~ msgctxt "@info:status"
  4998. #~ msgid "Could not find a quality type {0} for the current configuration."
  4999. #~ msgstr "Невозможно найти тип качества {0} для текущей конфигурации."
  5000. #~ msgctxt "info:status"
  5001. #~ msgid "Adding printer {} ({}) from your account"
  5002. #~ msgstr "Добавление принтера {} ({}) из вашей учетной записи"
  5003. #~ msgctxt "info:hidden list items"
  5004. #~ msgid "<li>... and {} others</li>"
  5005. #~ msgstr "<li>... и еще {} других</li>"
  5006. #~ msgctxt "info:status"
  5007. #~ msgid "Printers added from Digital Factory:<ul>{}</ul>"
  5008. #~ msgstr "Принтеры добавлены из Digital Factory: <ul> {} </ul>"
  5009. #~ msgctxt "info:status"
  5010. #~ msgid "<ul>{}</ul>To establish a connection, please visit the <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5011. #~ msgstr "<ul>{}</ul>Чтобы установить подключение, перейдите на сайт <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>."
  5012. #~ msgctxt "@label ({} is printer name)"
  5013. #~ msgid "{} will be removed until the next account sync. <br> To remove {} permanently, visit <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Are you sure you want to remove {} temporarily?"
  5014. #~ msgstr "{} будет удален до следующей синхронизации учетной записи. <br> Чтобы удалить {} без возможности восстановления, перейдите на сайт <a href='https://mycloud.ultimaker.com/'>Ultimaker Digital Factory</a>. <br><br>Действительно удалить {} временно?"
  5015. #~ msgctxt "@label"
  5016. #~ msgid ""
  5017. #~ "You are about to remove {} printer(s) from Cura. This action cannot be undone. \n"
  5018. #~ "Are you sure you want to continue?"
  5019. #~ msgstr ""
  5020. #~ "Вы удаляете {} принтера(-ов) из Cura. Это действие невозможно будет отменить. \n"
  5021. #~ "Вы уверены, что хотите продолжить?"
  5022. #~ msgctxt "@label"
  5023. #~ msgid ""
  5024. #~ "You are about to remove all printers from Cura. This action cannot be undone. \n"
  5025. #~ "Are you sure you want to continue?"
  5026. #~ msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Вы уверены, что хотите продолжить?"
  5027. #~ msgctxt "@action:ComboBox option"
  5028. #~ msgid "Update"
  5029. #~ msgstr "Обновить"
  5030. #~ msgctxt "@action:ComboBox option"
  5031. #~ msgid "Create new"
  5032. #~ msgstr "Создать новый"
  5033. #~ msgctxt "@label"
  5034. #~ msgid "Shared Heater"
  5035. #~ msgstr "Общий нагреватель"
  5036. #~ msgctxt "@info"
  5037. #~ msgid "The webcam is not available because you are monitoring a cloud printer."
  5038. #~ msgstr "Веб-камера недоступна, поскольку вы отслеживаете облачный принтер."
  5039. #~ msgctxt "@button"
  5040. #~ msgid "Ultimaker Digital Factory"
  5041. #~ msgstr "Ultimaker Digital Factory"
  5042. #~ msgctxt "@text:window, %1 is a profile name"
  5043. #~ msgid ""
  5044. #~ "You have customized some profile settings.\n"
  5045. #~ "Would you like to Keep these changed settings after switching profiles?\n"
  5046. #~ "Alternatively, you can Discard the changes to load the defaults from '%1'."
  5047. #~ msgstr ""
  5048. #~ "Вы изменили некоторые настройки профиля.\n"
  5049. #~ "Хотите сохранить измененные настройки после переключения профилей?\n"
  5050. #~ "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"."
  5051. #~ msgctxt "@label"
  5052. #~ msgid "Overrides %1 setting."
  5053. #~ msgid_plural "Overrides %1 settings."
  5054. #~ msgstr[0] "Переопределяет %1 настройку."
  5055. #~ msgstr[1] "Переопределяет %1 настройки."
  5056. #~ msgstr[2] "Переопределяет %1 настроек."
  5057. #~ msgctxt "@text"
  5058. #~ msgid "Please give your printer a name"
  5059. #~ msgstr "Присвойте имя принтеру"
  5060. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  5061. #~ msgid "New features are available for your {machine_name}! It is recommended to update the firmware on your printer."
  5062. #~ msgstr "Для {machine_name} доступны новые функции! Рекомендуется обновить встроенное программное обеспечение принтера."
  5063. #~ msgctxt "@action:button"
  5064. #~ msgid "Print via Cloud"
  5065. #~ msgstr "Печать через облако"
  5066. #~ msgctxt "@properties:tooltip"
  5067. #~ msgid "Print via Cloud"
  5068. #~ msgstr "Печать через облако"
  5069. #~ msgctxt "@info:status"
  5070. #~ msgid "Connected via Cloud"
  5071. #~ msgstr "Подключено через облако"
  5072. #~ msgctxt "@info:status Ultimaker Cloud should not be translated."
  5073. #~ msgid "Connect to Ultimaker Cloud"
  5074. #~ msgstr "Подключиться к облаку Ultimaker Cloud"
  5075. #~ msgctxt "@label"
  5076. #~ msgid "You need to login first before you can rate"
  5077. #~ msgstr "Для оценивания необходимо войти в систему"
  5078. #~ msgctxt "@label"
  5079. #~ msgid "You need to install the package before you can rate"
  5080. #~ msgstr "Для оценивания необходимо установить пакет"
  5081. #~ msgctxt "@label"
  5082. #~ msgid "ratings"
  5083. #~ msgstr "оценки"
  5084. #~ msgctxt "@label"
  5085. #~ msgid "Featured"
  5086. #~ msgstr "Рекомендуемые"
  5087. #~ msgctxt "@label"
  5088. #~ msgid "Your rating"
  5089. #~ msgstr "Ваша оценка"
  5090. #~ msgctxt "@label"
  5091. #~ msgid "Author"
  5092. #~ msgstr "Автор"
  5093. #~ msgctxt "@description"
  5094. #~ msgid "Get plugins and materials verified by Ultimaker"
  5095. #~ msgstr "Получите встраиваемые модули и материалы, утвержденные Ultimaker"
  5096. #~ msgctxt "@label The argument is a username."
  5097. #~ msgid "Hi %1"
  5098. #~ msgstr "Приветствуем, %1"
  5099. #~ msgctxt "@button"
  5100. #~ msgid "Ultimaker account"
  5101. #~ msgstr "Учетная запись Ultimaker"
  5102. #~ msgctxt "@button"
  5103. #~ msgid "Sign out"
  5104. #~ msgstr "Выйти"
  5105. #~ msgctxt "@label"
  5106. #~ msgid "Support library for analysis of complex networks"
  5107. #~ msgstr "Вспомогательная библиотека для анализа сложных сетей"
  5108. #~ msgctxt "@Label"
  5109. #~ msgid "Python HTTP library"
  5110. #~ msgstr "Библиотека Python HTTP"
  5111. #~ msgctxt "@text:window"
  5112. #~ msgid ""
  5113. #~ "You have customized some profile settings.\n"
  5114. #~ "Would you like to keep or discard those settings?"
  5115. #~ msgstr ""
  5116. #~ "Вы изменили некоторые параметры профиля.\n"
  5117. #~ "Желаете сохранить их или вернуть к прежним значениям?"
  5118. #~ msgctxt "@title:column"
  5119. #~ msgid "Default"
  5120. #~ msgstr "По умолчанию"
  5121. #~ msgctxt "@title:column"
  5122. #~ msgid "Customized"
  5123. #~ msgstr "Свой"
  5124. #~ msgctxt "@action:button"
  5125. #~ msgid "Discard"
  5126. #~ msgstr "Сбросить"
  5127. #~ msgctxt "@action:button"
  5128. #~ msgid "Keep"
  5129. #~ msgstr "Сохранить"
  5130. #~ msgctxt "@action:button"
  5131. #~ msgid "Create New Profile"
  5132. #~ msgstr "Создать новый профиль"
  5133. #~ msgctxt "@title:menu menubar:file"
  5134. #~ msgid "&Save..."
  5135. #~ msgstr "&Сохранить..."
  5136. #~ msgctxt "@text"
  5137. #~ msgid "Place enter your printer's IP address."
  5138. #~ msgstr "Введите IP-адрес своего принтера."
  5139. #~ msgctxt "@button"
  5140. #~ msgid "Create an account"
  5141. #~ msgstr "Создать учетную запись"
  5142. #~ msgctxt "@info:generic"
  5143. #~ msgid ""
  5144. #~ "\n"
  5145. #~ "Do you want to sync material and software packages with your account?"
  5146. #~ msgstr ""
  5147. #~ "\n"
  5148. #~ "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?"
  5149. #~ msgctxt "@info:generic"
  5150. #~ msgid ""
  5151. #~ "\n"
  5152. #~ "Syncing..."
  5153. #~ msgstr ""
  5154. #~ "\n"
  5155. #~ "Синхронизация..."
  5156. #~ msgctxt "@info:status"
  5157. #~ msgid "Nothing to slice because none of the models fit the build volume or are assigned to a disabled extruder. Please scale or rotate models to fit, or enable an extruder."
  5158. #~ msgstr "Нечего нарезать, так как ни одна модель не попадает в объем принтера либо она назначена отключенному экструдеру. Отмасштабируйте/поверните модели либо включите экструдер."
  5159. #~ msgctxt "@info:backup_status"
  5160. #~ msgid "There was an error listing your backups."
  5161. #~ msgstr "При составлении списка ваших резервных копий возникла ошибка."
  5162. #~ msgctxt "@title:groupbox"
  5163. #~ msgid "User description (Note: Developers may not speak your language, please use English if possible)"
  5164. #~ msgstr "Пользовательское описание (примечание: по возможности пишите на английском языке, так как разработчики могут не знать вашего языка)"
  5165. #~ msgctxt "@title:window"
  5166. #~ msgid "Closing Cura"
  5167. #~ msgstr "Закрытие Cura"
  5168. #~ msgctxt "@label"
  5169. #~ msgid "Are you sure you want to exit Cura?"
  5170. #~ msgstr "Вы уверены, что хотите выйти из Cura?"
  5171. #~ msgctxt "@label"
  5172. #~ msgid "Language:"
  5173. #~ msgstr "Язык:"
  5174. #~ msgctxt "@label"
  5175. #~ msgid "Ultimaker Cloud"
  5176. #~ msgstr "Ultimaker Cloud"
  5177. #~ msgctxt "@text"
  5178. #~ msgid "The next generation 3D printing workflow"
  5179. #~ msgstr "Рабочий процесс трехмерной печати следующего поколения"
  5180. #~ msgctxt "@text"
  5181. #~ msgid "- Send print jobs to Ultimaker printers outside your local network"
  5182. #~ msgstr "- Отправляйте задания печати на принтеры Ultimaker за пределами вашей локальной сети"
  5183. #~ msgctxt "@text"
  5184. #~ msgid "- Store your Ultimaker Cura settings in the cloud for use anywhere"
  5185. #~ msgstr "- Храните параметры Ultimaker Cura в облаке, чтобы применять их из любого места"
  5186. #~ msgctxt "@text"
  5187. #~ msgid "- Get exclusive access to print profiles from leading brands"
  5188. #~ msgstr "- Получайте эксклюзивный доступ к профилям печати от ведущих брендов"
  5189. #~ msgctxt "@label"
  5190. #~ msgid "The value is resolved from per-extruder values "
  5191. #~ msgstr "Значение получается из параметров каждого экструдера "
  5192. #~ msgctxt "@label"
  5193. #~ msgid "The next generation 3D printing workflow"
  5194. #~ msgstr "Рабочий процесс трехмерной печати следующего поколения"
  5195. #~ msgctxt "@text"
  5196. #~ msgid ""
  5197. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5198. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5199. #~ "- Get exclusive access to print profiles from leading brands"
  5200. #~ msgstr ""
  5201. #~ "- Отправляйте задания печати на принтеры Ultimaker за пределами вашей локальной сети\n"
  5202. #~ "- Храните параметры Ultimaker Cura в облаке, чтобы применять их из любого места\n"
  5203. #~ "- Получайте эксклюзивный доступ к профилям печати от ведущих брендов"
  5204. #~ msgctxt "@title:window"
  5205. #~ msgid "About "
  5206. #~ msgstr "Сведения "
  5207. #~ msgctxt "@info:button"
  5208. #~ msgid "Quit Cura"
  5209. #~ msgstr "Выйти из Cura"
  5210. #~ msgctxt "@action:checkbox"
  5211. #~ msgid "Infill only"
  5212. #~ msgstr "Только заполнение"
  5213. #~ msgctxt "@info:tooltip"
  5214. #~ msgid "Change active post-processing scripts"
  5215. #~ msgstr "Изменить активные скрипты пост-обработки"
  5216. #~ msgctxt "@label:listbox"
  5217. #~ msgid "Feedrate"
  5218. #~ msgstr "Скорость подачи"
  5219. #~ msgctxt "name"
  5220. #~ msgid "Machine Settings action"
  5221. #~ msgstr "Параметры принтера действие"
  5222. #~ msgctxt "@info:title"
  5223. #~ msgid "New cloud printers found"
  5224. #~ msgstr "Обнаружены новые облачные принтеры"
  5225. #~ msgctxt "@info:message"
  5226. #~ msgid "New printers have been found connected to your account, you can find them in your list of discovered printers."
  5227. #~ msgstr "Обнаружены новые принтеры, подключенные к вашей учетной записи; вы можете найти их в списке обнаруженных принтеров."
  5228. #~ msgctxt "@info:status"
  5229. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled"
  5230. #~ msgstr "Cura не аккуратно отображает слои при использовании печати через кабель"
  5231. #~ msgctxt "@label"
  5232. #~ msgid "Pre-sliced file {0}"
  5233. #~ msgstr "Предообратка файла {0}"
  5234. #~ msgctxt "@label"
  5235. #~ msgid ""
  5236. #~ "This plugin contains a license.\n"
  5237. #~ "You need to accept this license to install this plugin.\n"
  5238. #~ "Do you agree with the terms below?"
  5239. #~ msgstr ""
  5240. #~ "Этот плагин содержит лицензию.\n"
  5241. #~ "Чтобы установить этот плагин, необходимо принять условия лицензии.\n"
  5242. #~ "Принять приведенные ниже условия?"
  5243. #~ msgctxt "@action:button"
  5244. #~ msgid "Accept"
  5245. #~ msgstr "Принять"
  5246. #~ msgctxt "@action:button"
  5247. #~ msgid "Decline"
  5248. #~ msgstr "Отклонить"
  5249. #~ msgctxt "@action:inmenu"
  5250. #~ msgid "Show All Settings"
  5251. #~ msgstr "Показывать все настройки"
  5252. #~ msgctxt "@title:window"
  5253. #~ msgid "Ultimaker Cura"
  5254. #~ msgstr "Ultimaker Cura"
  5255. #~ msgctxt "@title:window"
  5256. #~ msgid "About Cura"
  5257. #~ msgstr "О Cura"
  5258. #~ msgctxt "@item:inmenu"
  5259. #~ msgid "Flatten active settings"
  5260. #~ msgstr "Сбросить текущие параметры к стандартным значениям"
  5261. #~ msgctxt "@info:status"
  5262. #~ msgid "Profile has been flattened & activated."
  5263. #~ msgstr "Профиль был нормализован и активирован."
  5264. #~ msgctxt "X3g Writer Plugin Description"
  5265. #~ msgid "Writes X3g to files"
  5266. #~ msgstr "Записывает X3g в файлы"
  5267. #~ msgctxt "X3g Writer File Description"
  5268. #~ msgid "X3g File"
  5269. #~ msgstr "Файл X3g"
  5270. #~ msgctxt "X3G Writer File Description"
  5271. #~ msgid "X3G File"
  5272. #~ msgstr "Файл X3G"
  5273. #~ msgctxt "@item:inmenu"
  5274. #~ msgid "Profile Assistant"
  5275. #~ msgstr "Помощник по профилю"
  5276. #~ msgctxt "@item:inlistbox"
  5277. #~ msgid "Profile Assistant"
  5278. #~ msgstr "Помощник по профилю"
  5279. #~ msgctxt "@action:button"
  5280. #~ msgid "Retry"
  5281. #~ msgstr "Повторить"
  5282. #~ msgctxt "@label:table_header"
  5283. #~ msgid "Print Core"
  5284. #~ msgstr "Экструдер"
  5285. #~ msgctxt "@label"
  5286. #~ msgid "Don't support overlap with other models"
  5287. #~ msgstr "Не поддерживать перекрытие с другими моделями"
  5288. #~ msgctxt "@label"
  5289. #~ msgid "Modify settings for overlap with other models"
  5290. #~ msgstr "Изменять настройки для перекрытия с другими моделями"
  5291. #~ msgctxt "@label"
  5292. #~ msgid "Modify settings for infill of other models"
  5293. #~ msgstr "Изменять настройки для заполнения других моделей"
  5294. #~ msgctxt "@action:ComboBox option"
  5295. #~ msgid "Update existing"
  5296. #~ msgstr "Обновить существующий"
  5297. #~ msgctxt "@label"
  5298. #~ msgid "Not supported"
  5299. #~ msgstr "Не поддерживается"
  5300. #~ msgctxt "@action:button"
  5301. #~ msgid "Previous"
  5302. #~ msgstr "Предыдущий"
  5303. #~ msgctxt "@label"
  5304. #~ msgid "Tip"
  5305. #~ msgstr "Кончик"
  5306. #~ msgctxt "@label"
  5307. #~ msgid "Print experiment"
  5308. #~ msgstr "Пробная печать"
  5309. #~ msgctxt "@label"
  5310. #~ msgid "Checklist"
  5311. #~ msgstr "Контрольный список"
  5312. #~ msgctxt "@label"
  5313. #~ msgid "Please select any upgrades made to this Ultimaker 2."
  5314. #~ msgstr "Пожалуйста, укажите любые изменения, внесённые в Ultimaker 2."
  5315. #~ msgctxt "@label"
  5316. #~ msgid "Olsson Block"
  5317. #~ msgstr "Блок Олссона"
  5318. #~ msgctxt "@window:text"
  5319. #~ msgid "Camera rendering: "
  5320. #~ msgstr "Рендеринг камеры: "
  5321. #~ msgctxt "@info:tooltip"
  5322. #~ msgid "Use multi build plate functionality"
  5323. #~ msgstr "Использовать функционал нескольких рабочих столов"
  5324. #~ msgctxt "@option:check"
  5325. #~ msgid "Use multi build plate functionality (restart required)"
  5326. #~ msgstr "Использовать функционал нескольких рабочих столов (требуется перезапуск)"
  5327. #~ msgctxt "@label"
  5328. #~ msgid "Default profiles"
  5329. #~ msgstr "Профили по умолчанию"
  5330. #~ msgctxt "@label:textbox"
  5331. #~ msgid "search settings"
  5332. #~ msgstr "параметры поиска"
  5333. #~ msgctxt "@label"
  5334. #~ msgid "Layer Height"
  5335. #~ msgstr "Высота слоя"
  5336. #~ msgctxt "@tooltip"
  5337. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile."
  5338. #~ msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти параметры для задействования данного профиля качества."
  5339. #~ msgctxt "@tooltip"
  5340. #~ msgid "A custom profile is currently active. To enable the quality slider, choose a default quality profile in Custom tab"
  5341. #~ msgstr "В настоящее время активен пользовательский профиль. Чтобы включить ползунок качества, на вкладке «Пользовательские» выберите профиль качества по умолчанию"
  5342. #~ msgctxt "@title:menu"
  5343. #~ msgid "&Build plate"
  5344. #~ msgstr "Рабочий стол"
  5345. #~ msgctxt "@title:settings"
  5346. #~ msgid "&Profile"
  5347. #~ msgstr "Профиль"
  5348. #~ msgctxt "@action:label"
  5349. #~ msgid "Build plate"
  5350. #~ msgstr "Рабочий стол"
  5351. #~ msgctxt "description"
  5352. #~ msgid "Dump the contents of all settings to a HTML file."
  5353. #~ msgstr "Запись содержимого всех настроек в виде HTML файла."
  5354. #~ msgctxt "name"
  5355. #~ msgid "God Mode"
  5356. #~ msgstr "Режим бога"
  5357. #~ msgctxt "description"
  5358. #~ msgid "Create a flattened quality changes profile."
  5359. #~ msgstr "Создание нормализованного профиля с изменениями качества."
  5360. #~ msgctxt "name"
  5361. #~ msgid "Profile Flattener"
  5362. #~ msgstr "Нормализатор профиля"
  5363. #~ msgctxt "description"
  5364. #~ msgid "Allows material manufacturers to create new material and quality profiles using a drop-in UI."
  5365. #~ msgstr "Позволяет производителям материалов создавать новые профили материалов и качества с помощью дружественного интерфейса."
  5366. #~ msgctxt "name"
  5367. #~ msgid "Print Profile Assistant"
  5368. #~ msgstr "Помощник по профилю печати"
  5369. #~ msgctxt "@info:status"
  5370. #~ msgid "Connected over the network."
  5371. #~ msgstr "Подключен по сети."
  5372. #~ msgctxt "@info:status"
  5373. #~ msgid "Connected over the network. Please approve the access request on the printer."
  5374. #~ msgstr "Подключен по сети. Пожалуйста, подтвердите запрос на принтере."
  5375. #~ msgctxt "@info:status"
  5376. #~ msgid "Connected over the network. No access to control the printer."
  5377. #~ msgstr "Подключен по сети. Нет доступа к управлению принтером."
  5378. #~ msgctxt "@info:status"
  5379. #~ msgid "Access to the printer requested. Please approve the request on the printer"
  5380. #~ msgstr "Запрошен доступ к принтеру. Пожалуйста, подтвердите запрос на принтере"
  5381. #~ msgctxt "@info:title"
  5382. #~ msgid "Authentication status"
  5383. #~ msgstr "Состояние аутентификации"
  5384. #~ msgctxt "@info:title"
  5385. #~ msgid "Authentication Status"
  5386. #~ msgstr "Состояние аутентификации"
  5387. #~ msgctxt "@info:tooltip"
  5388. #~ msgid "Re-send the access request"
  5389. #~ msgstr "Послать запрос доступа ещё раз"
  5390. #~ msgctxt "@info:status"
  5391. #~ msgid "Access to the printer accepted"
  5392. #~ msgstr "Доступ к принтеру получен"
  5393. #~ msgctxt "@info:status"
  5394. #~ msgid "No access to print with this printer. Unable to send print job."
  5395. #~ msgstr "Нет доступа к использованию этого принтера. Невозможно отправить задачу на печать."
  5396. #~ msgctxt "@action:button"
  5397. #~ msgid "Request Access"
  5398. #~ msgstr "Запросить доступ"
  5399. #~ msgctxt "@info:tooltip"
  5400. #~ msgid "Send access request to the printer"
  5401. #~ msgstr "Отправить запрос на доступ к принтеру"
  5402. #~ msgctxt "@label"
  5403. #~ msgid "Unable to start a new print job."
  5404. #~ msgstr "Не удалось начать новое задание печати."
  5405. #~ msgctxt "@label"
  5406. #~ msgid "There is an issue with the configuration of your Ultimaker, which makes it impossible to start the print. Please resolve this issues before continuing."
  5407. #~ msgstr "Возникла проблема конфигурации Ultimaker, из-за которой невозможно начать печать. Перед продолжением работы решите возникшую проблему."
  5408. #~ msgctxt "@window:title"
  5409. #~ msgid "Mismatched configuration"
  5410. #~ msgstr "Несовпадение конфигурации"
  5411. #~ msgctxt "@label"
  5412. #~ msgid "Are you sure you wish to print with the selected configuration?"
  5413. #~ msgstr "Вы уверены, что желаете печатать с использованием выбранной конфигурации?"
  5414. #~ msgctxt "@label"
  5415. #~ msgid "There is a mismatch between the configuration or calibration of the printer and Cura. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5416. #~ msgstr "Есть несовпадение между конфигурацией или калибровкой принтера и Cura. Для лучшего результата, всегда производите слайсинг для PrintCore и материала, которые установлены в вашем принтере."
  5417. #~ msgctxt "@info:status"
  5418. #~ msgid "Sending new jobs (temporarily) blocked, still sending the previous print job."
  5419. #~ msgstr "Отправка новых заданий (временно) заблокирована, идёт отправка предыдущего задания."
  5420. #~ msgctxt "@info:status"
  5421. #~ msgid "Sending data to printer"
  5422. #~ msgstr "Отправка данных на принтер"
  5423. #~ msgctxt "@info:title"
  5424. #~ msgid "Sending Data"
  5425. #~ msgstr "Отправка данных"
  5426. #~ msgctxt "@info:status"
  5427. #~ msgid "No Printcore loaded in slot {slot_number}"
  5428. #~ msgstr "Модуль экструдера PrintCore не загружен в слот {slot_number}"
  5429. #~ msgctxt "@info:status"
  5430. #~ msgid "No material loaded in slot {slot_number}"
  5431. #~ msgstr "Материал не загружен в слот {slot_number}"
  5432. #~ msgctxt "@label"
  5433. #~ msgid "Different PrintCore (Cura: {cura_printcore_name}, Printer: {remote_printcore_name}) selected for extruder {extruder_id}"
  5434. #~ msgstr "Другой модуль экструдера PrintCore (Cura: {cura_printcore_name}, принтер: {remote_printcore_name}) выбран для экструдера {extruder_id}"
  5435. #~ msgctxt "@label"
  5436. #~ msgid "Different material (Cura: {0}, Printer: {1}) selected for extruder {2}"
  5437. #~ msgstr "Разный материал (Cura: {0}, Принтер: {1}) выбран для экструдера {2}"
  5438. #~ msgctxt "@window:title"
  5439. #~ msgid "Sync with your printer"
  5440. #~ msgstr "Синхронизация с вашим принтером"
  5441. #~ msgctxt "@label"
  5442. #~ msgid "Would you like to use your current printer configuration in Cura?"
  5443. #~ msgstr "Желаете использовать текущую конфигурацию принтера в Cura?"
  5444. #~ msgctxt "@label"
  5445. #~ msgid "The PrintCores and/or materials on your printer differ from those within your current project. For the best result, always slice for the PrintCores and materials that are inserted in your printer."
  5446. #~ msgstr "Модуль PrintCore и/или материал в вашем принтере отличается от тех, что вы используете в текущем проекте. Для наилучшего результата всегда указывайте правильный модуль PrintCore и материалы, которые вставлены в ваш принтер."
  5447. #~ msgctxt "@action:button"
  5448. #~ msgid "View in Monitor"
  5449. #~ msgstr "Просмотр на мониторе"
  5450. #~ msgctxt "@info:status"
  5451. #~ msgid "Printer '{printer_name}' has finished printing '{job_name}'."
  5452. #~ msgstr "{printer_name} завершил печать '{job_name}'."
  5453. #~ msgctxt "@info:status"
  5454. #~ msgid "The print job '{job_name}' was finished."
  5455. #~ msgstr "Задание печати '{job_name}' выполнено."
  5456. #~ msgctxt "@info:status"
  5457. #~ msgid "Print finished"
  5458. #~ msgstr "Печать завершена"
  5459. #~ msgctxt "@label:material"
  5460. #~ msgid "Empty"
  5461. #~ msgstr "Пусто"
  5462. #~ msgctxt "@label:material"
  5463. #~ msgid "Unknown"
  5464. #~ msgstr "Неизвестн"
  5465. #~ msgctxt "@info:title"
  5466. #~ msgid "Cloud error"
  5467. #~ msgstr "Ошибка облака"
  5468. #~ msgctxt "@info:status"
  5469. #~ msgid "Could not export print job."
  5470. #~ msgstr "Облако не экспортировало задание печати."
  5471. #~ msgctxt "@info:description"
  5472. #~ msgid "There was an error connecting to the cloud."
  5473. #~ msgstr "При подключении к облаку возникла ошибка."
  5474. #~ msgctxt "@info:status"
  5475. #~ msgid "Uploading via Ultimaker Cloud"
  5476. #~ msgstr "Заливка через облако Ultimaker Cloud"
  5477. #~ msgctxt "@info:status Ultimaker Cloud is a brand name and shouldn't be translated."
  5478. #~ msgid "Connect to Ultimaker Cloud"
  5479. #~ msgstr "Подключиться к облаку Ultimaker Cloud"
  5480. #~ msgctxt "@action"
  5481. #~ msgid "Don't ask me again for this printer."
  5482. #~ msgstr "Не спрашивать меня снова для этого принтера."
  5483. #~ msgctxt "@info:status"
  5484. #~ msgid "You can now send and monitor print jobs from anywhere using your Ultimaker account."
  5485. #~ msgstr "Теперь вы можете отправлять и отслеживать задания печати из любого места с помощью вашей учетной записи Ultimaker."
  5486. #~ msgctxt "@info:status"
  5487. #~ msgid "Connected!"
  5488. #~ msgstr "Подключено!"
  5489. #~ msgctxt "@action"
  5490. #~ msgid "Review your connection"
  5491. #~ msgstr "Проверьте свое подключение"
  5492. #~ msgctxt "@info:status Don't translate the XML tags <filename>!"
  5493. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  5494. #~ msgstr "Принтер, заданный в профиле <filename>{0}</filename> ({1}), не совпадает с вашим текущим принтером ({2}), поэтому его невозможно импортировать."
  5495. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5496. #~ msgid "Failed to import profile from <filename>{0}</filename>:"
  5497. #~ msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  5498. #~ msgctxt "@window:title"
  5499. #~ msgid "Existing Connection"
  5500. #~ msgstr "Текущее подключение"
  5501. #~ msgctxt "@message:text"
  5502. #~ msgid "This printer/group is already added to Cura. Please select another printer/group."
  5503. #~ msgstr "Этот принтер/группа уже добавлен (-а) в Cura. Выберите другой (-ую) принтер/группу."
  5504. #~ msgctxt "@label"
  5505. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5506. #~ msgstr "Введите IP-адрес принтера или его имя в сети."
  5507. #~ msgctxt "@info:tooltip"
  5508. #~ msgid "Connect to a printer"
  5509. #~ msgstr "Подключение к принтеру"
  5510. #~ msgctxt "@title"
  5511. #~ msgid "Cura Settings Guide"
  5512. #~ msgstr "Руководство по параметрам Cura"
  5513. #~ msgctxt "@info:tooltip"
  5514. #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective."
  5515. #~ msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается."
  5516. #~ msgid "Orthogonal"
  5517. #~ msgstr "Ортогональная"
  5518. #~ msgctxt "description"
  5519. #~ msgid "Manages network connections to Ultimaker 3 printers."
  5520. #~ msgstr "Управляет сетевыми соединениями с принтерами Ultimaker 3."
  5521. #~ msgctxt "name"
  5522. #~ msgid "UM3 Network Connection"
  5523. #~ msgstr "Соединение с сетью UM3"
  5524. #~ msgctxt "description"
  5525. #~ msgid "Provides extra information and explanations about settings in Cura, with images and animations."
  5526. #~ msgstr "Предоставляет дополнительную информацию и пояснения относительно параметров Cura с изображениями и анимацией."
  5527. #~ msgctxt "name"
  5528. #~ msgid "Settings Guide"
  5529. #~ msgstr "Руководство по параметрам"
  5530. #~ msgctxt "@item:inmenu"
  5531. #~ msgid "Cura Settings Guide"
  5532. #~ msgstr "Руководство по параметрам Cura"
  5533. #~ msgctxt "@info:generic"
  5534. #~ msgid "Settings have been changed to match the current availability of extruders: [%s]"
  5535. #~ msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров: [%s]"
  5536. #~ msgctxt "@title:groupbox"
  5537. #~ msgid "User description"
  5538. #~ msgstr "Описание пользователя"
  5539. #~ msgctxt "@info"
  5540. #~ msgid "These options are not available because you are monitoring a cloud printer."
  5541. #~ msgstr "Указанные опции недоступны, поскольку вы отслеживаете облачный принтер."
  5542. #~ msgctxt "@label link to connect manager"
  5543. #~ msgid "Go to Cura Connect"
  5544. #~ msgstr "Перейти к Cura Connect"
  5545. #~ msgctxt "@info"
  5546. #~ msgid "All jobs are printed."
  5547. #~ msgstr "Все задания печати выполнены."
  5548. #~ msgctxt "@label link to connect manager"
  5549. #~ msgid "View print history"
  5550. #~ msgstr "Просмотреть архив печати"
  5551. #~ msgctxt "@label"
  5552. #~ msgid ""
  5553. #~ "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer.\n"
  5554. #~ "\n"
  5555. #~ "Select your printer from the list below:"
  5556. #~ msgstr ""
  5557. #~ "Для печати на вашем принтере через сеть, пожалуйста, удостоверьтесь, что ваш принтер подключен к сети с помощью кабеля или через WiFi. Если вы не подключили Cura к вашему принтеру, вы по-прежнему можете использовать USB флешку для переноса G-Code файлов на ваш принтер.\n"
  5558. #~ "\n"
  5559. #~ "Укажите ваш принтер в списке ниже:"
  5560. #~ msgctxt "@info"
  5561. #~ msgid ""
  5562. #~ "Please make sure your printer has a connection:\n"
  5563. #~ "- Check if the printer is turned on.\n"
  5564. #~ "- Check if the printer is connected to the network."
  5565. #~ msgstr ""
  5566. #~ "Проверьте наличие подключения к принтеру:\n"
  5567. #~ "- Убедитесь, что принтер включен.\n"
  5568. #~ "- Проверьте, подключен ли принтер к сети."
  5569. #~ msgctxt "@option:check"
  5570. #~ msgid "See only current build plate"
  5571. #~ msgstr "Показывать только текущий рабочий стол"
  5572. #~ msgctxt "@action:button"
  5573. #~ msgid "Arrange to all build plates"
  5574. #~ msgstr "Выровнять для всех рабочих столов"
  5575. #~ msgctxt "@action:button"
  5576. #~ msgid "Arrange current build plate"
  5577. #~ msgstr "Выровнять текущий рабочий стол"
  5578. #~ msgctxt "description"
  5579. #~ msgid "Allows saving the resulting slice as an X3G file, to support printers that read this format (Malyan, Makerbot and other Sailfish-based printers)."
  5580. #~ msgstr "Разрешить сохранение результирующего слоя в формате X3G для поддержки принтеров, считывающих этот формат (Malyan, Makerbot и другие принтеры на базе Sailfish)."
  5581. #~ msgctxt "name"
  5582. #~ msgid "X3GWriter"
  5583. #~ msgstr "X3GWriter"
  5584. #~ msgctxt "description"
  5585. #~ msgid "Reads SVG files as toolpaths, for debugging printer movements."
  5586. #~ msgstr "Считывает файлы SVG как пути инструментов для отладки движений принтера."
  5587. #~ msgctxt "name"
  5588. #~ msgid "SVG Toolpath Reader"
  5589. #~ msgstr "Средство считывания путей инструментов SVG"
  5590. #~ msgctxt "@item:inmenu"
  5591. #~ msgid "Changelog"
  5592. #~ msgstr "Журнал изменений"
  5593. #~ msgctxt "@item:inmenu"
  5594. #~ msgid "Show Changelog"
  5595. #~ msgstr "Показать журнал изменений"
  5596. #~ msgctxt "@info:status"
  5597. #~ msgid "Sending data to remote cluster"
  5598. #~ msgstr "Отправка данных на удаленный кластер"
  5599. #~ msgctxt "@info:status"
  5600. #~ msgid "Connect to Ultimaker Cloud"
  5601. #~ msgstr "Подключиться к Ultimaker Cloud"
  5602. #~ msgctxt "@info"
  5603. #~ msgid "Cura collects anonymized usage statistics."
  5604. #~ msgstr "Cura собирает анонимизированную статистику об использовании."
  5605. #~ msgctxt "@info:title"
  5606. #~ msgid "Collecting Data"
  5607. #~ msgstr "Сбор данных"
  5608. #~ msgctxt "@action:button"
  5609. #~ msgid "More info"
  5610. #~ msgstr "Дополнительно"
  5611. #~ msgctxt "@action:tooltip"
  5612. #~ msgid "See more information on what data Cura sends."
  5613. #~ msgstr "Ознакомьтесь с дополнительной информацией о данных, отправляемых Cura."
  5614. #~ msgctxt "@action:button"
  5615. #~ msgid "Allow"
  5616. #~ msgstr "Разрешить"
  5617. #~ msgctxt "@action:tooltip"
  5618. #~ msgid "Allow Cura to send anonymized usage statistics to help prioritize future improvements to Cura. Some of your preferences and settings are sent, the Cura version and a hash of the models you're slicing."
  5619. #~ msgstr "Разрешить Cura отправлять анонимизированную статистику об использовании, чтобы помочь назначить приоритеты будущим улучшениям в Cura. Отправлены некоторые ваши настройки и параметры, включая версию Cura и хэш моделей, разделяемых на слои."
  5620. #~ msgctxt "@item:inmenu"
  5621. #~ msgid "Evaluation"
  5622. #~ msgstr "Оценивание"
  5623. #~ msgctxt "@info:title"
  5624. #~ msgid "Network enabled printers"
  5625. #~ msgstr "Подключенные к сети принтеры"
  5626. #~ msgctxt "@info:title"
  5627. #~ msgid "Local printers"
  5628. #~ msgstr "Локальные принтеры"
  5629. #~ msgctxt "@info:backup_failed"
  5630. #~ msgid "Tried to restore a Cura backup that does not match your current version."
  5631. #~ msgstr "Попытка восстановить резервную копию Cura, не совпадающую с вашей текущей версией."
  5632. #~ msgctxt "@title"
  5633. #~ msgid "Machine Settings"
  5634. #~ msgstr "Параметры принтера"
  5635. #~ msgctxt "@label"
  5636. #~ msgid "Printer Settings"
  5637. #~ msgstr "Параметры принтера"
  5638. #~ msgctxt "@option:check"
  5639. #~ msgid "Origin at center"
  5640. #~ msgstr "Начало координат в центре"
  5641. #~ msgctxt "@option:check"
  5642. #~ msgid "Heated bed"
  5643. #~ msgstr "Нагреваемый стол"
  5644. #~ msgctxt "@label"
  5645. #~ msgid "Printhead Settings"
  5646. #~ msgstr "Параметры головы"
  5647. #~ msgctxt "@tooltip"
  5648. #~ msgid "Distance from the left of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5649. #~ msgstr "Расстояние от левого края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"."
  5650. #~ msgctxt "@tooltip"
  5651. #~ msgid "Distance from the front of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5652. #~ msgstr "Расстояние от переднего края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"."
  5653. #~ msgctxt "@tooltip"
  5654. #~ msgid "Distance from the right of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5655. #~ msgstr "Расстояние от правого края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"."
  5656. #~ msgctxt "@tooltip"
  5657. #~ msgid "Distance from the rear of the printhead to the center of the nozzle. Used to prevent colissions between previous prints and the printhead when printing \"One at a Time\"."
  5658. #~ msgstr "Расстояние от заднего края головы до центра сопла. Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"."
  5659. #~ msgctxt "@label"
  5660. #~ msgid "Gantry height"
  5661. #~ msgstr "Высота портала"
  5662. #~ msgctxt "@tooltip"
  5663. #~ msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes). Used to prevent collisions between previous prints and the gantry when printing \"One at a Time\"."
  5664. #~ msgstr "Разница в высоте от кончика сопла до портала (по осям X и Y). Используется для предотвращения столкновений с уже напечатанной частью и головой в режиме \"По отдельности\"."
  5665. #~ msgctxt "@label"
  5666. #~ msgid "Start G-code"
  5667. #~ msgstr "Стартовый G-код"
  5668. #~ msgctxt "@tooltip"
  5669. #~ msgid "G-code commands to be executed at the very start."
  5670. #~ msgstr "Команды в G-коде, которые будут выполнены в самом начале."
  5671. #~ msgctxt "@label"
  5672. #~ msgid "End G-code"
  5673. #~ msgstr "Завершающий G-код"
  5674. #~ msgctxt "@tooltip"
  5675. #~ msgid "G-code commands to be executed at the very end."
  5676. #~ msgstr "Команды в G-коде, которые будут выполнены в самом конце."
  5677. #~ msgctxt "@label"
  5678. #~ msgid "Nozzle Settings"
  5679. #~ msgstr "Параметры сопла"
  5680. #~ msgctxt "@tooltip"
  5681. #~ msgid "The nominal diameter of filament supported by the printer. The exact diameter will be overridden by the material and/or the profile."
  5682. #~ msgstr "Номинальный диаметр материала, поддерживаемый принтером. Точный диаметр будет указан в материале и/или в профиле."
  5683. #~ msgctxt "@label"
  5684. #~ msgid "Extruder Start G-code"
  5685. #~ msgstr "Стартовый G-код экструдера"
  5686. #~ msgctxt "@label"
  5687. #~ msgid "Extruder End G-code"
  5688. #~ msgstr "Завершающий G-код экструдера"
  5689. #~ msgctxt "@label"
  5690. #~ msgid "Changelog"
  5691. #~ msgstr "Журнал изменений"
  5692. #~ msgctxt "@title:window"
  5693. #~ msgid "User Agreement"
  5694. #~ msgstr "Пользовательское соглашение"
  5695. #~ msgctxt "@alabel"
  5696. #~ msgid "Enter the IP address or hostname of your printer on the network."
  5697. #~ msgstr "Введите IP-адрес принтера или его имя в сети."
  5698. #~ msgctxt "@info"
  5699. #~ msgid "Please select a network connected printer to monitor."
  5700. #~ msgstr "Выберите принтер, подключенный к сети, который необходимо отслеживать."
  5701. #~ msgctxt "@info"
  5702. #~ msgid "Please connect your Ultimaker printer to your local network."
  5703. #~ msgstr "Подключите ваш принтер Ultimaker к своей локальной сети."
  5704. #~ msgctxt "@text:window"
  5705. #~ msgid "Cura sends anonymous data to Ultimaker in order to improve the print quality and user experience. Below is an example of all the data that is sent."
  5706. #~ msgstr "Cura отправляет анонимные данные в Ultimaker для повышения качества печати и взаимодействия с пользователем. Ниже приведен пример всех отправляемых данных."
  5707. #~ msgctxt "@text:window"
  5708. #~ msgid "I don't want to send this data"
  5709. #~ msgstr "Не хочу отправлять описанные данные"
  5710. #~ msgctxt "@text:window"
  5711. #~ msgid "Allow sending this data to Ultimaker and help us improve Cura"
  5712. #~ msgstr "Разрешить отправку описанных данных в Ultimaker для улучшения Cura"
  5713. #~ msgctxt "@label"
  5714. #~ msgid "No print selected"
  5715. #~ msgstr "Печать не выбрана"
  5716. #~ msgctxt "@info:tooltip"
  5717. #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh."
  5718. #~ msgstr "По умолчанию, светлые пиксели представлены высокими точками на объекте, а тёмные пиксели представлены низкими точками на объекте. Измените эту опцию для изменения данного поведения, таким образом тёмные пиксели будут представлены высокими точками, а светлые - низкими."
  5719. #~ msgctxt "@title"
  5720. #~ msgid "Select Printer Upgrades"
  5721. #~ msgstr "Выбор компонентов для обновления"
  5722. #~ msgctxt "@label"
  5723. #~ msgid "Select which extruder to use for support. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  5724. #~ msgstr "Выбирает, какой экструдер следует использовать для поддержек. Будут созданы поддерживающие структуры под моделью для предотвращения проседания краёв или печати в воздухе."
  5725. #~ msgctxt "@tooltip"
  5726. #~ msgid "This quality profile is not available for your current material and nozzle configuration. Please change these to enable this quality profile"
  5727. #~ msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти настройки для задействования данного профиля качества"
  5728. #~ msgctxt "@label shown when we load a Gcode file"
  5729. #~ msgid "Print setup disabled. G code file can not be modified."
  5730. #~ msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом."
  5731. #~ msgctxt "@label"
  5732. #~ msgid "See the material compatibility chart"
  5733. #~ msgstr "См. таблицу совместимости материалов"
  5734. #~ msgctxt "@label"
  5735. #~ msgid "View types"
  5736. #~ msgstr "Просмотр типов"
  5737. #~ msgctxt "@label"
  5738. #~ msgid "Hi "
  5739. #~ msgstr "Приветствуем! "
  5740. #~ msgctxt "@text"
  5741. #~ msgid ""
  5742. #~ "- Send print jobs to Ultimaker printers outside your local network\n"
  5743. #~ "- Store your Ultimaker Cura settings in the cloud for use anywhere\n"
  5744. #~ "- Get exclusive access to material profiles from leading brands"
  5745. #~ msgstr ""
  5746. #~ "- Отправляйте задания печати на принтеры Ultimaker за пределами вашей локальной сети\n"
  5747. #~ "- Храните параметры Ultimaker Cura в облаке, чтобы применять их из любого места\n"
  5748. #~ "- Получите эксклюзивный доступ к профилям материалов от лидирующих производителей"
  5749. #~ msgctxt "@label:PrintjobStatus"
  5750. #~ msgid "Unable to Slice"
  5751. #~ msgstr "Невозможно нарезать"
  5752. #~ msgctxt "@label"
  5753. #~ msgid "Time specification"
  5754. #~ msgstr "Настройка расчета времени"
  5755. #~ msgctxt "@label"
  5756. #~ msgid "Material specification"
  5757. #~ msgstr "Характеристики материала"
  5758. #~ msgctxt "@title:tab"
  5759. #~ msgid "Add a printer to Cura"
  5760. #~ msgstr "Добавить принтер к Cura"
  5761. #~ msgctxt "@title:tab"
  5762. #~ msgid ""
  5763. #~ "Select the printer you want to use from the list below.\n"
  5764. #~ "\n"
  5765. #~ "If your printer is not in the list, use the \"Custom FFF Printer\" from the \"Custom\" category and adjust the settings to match your printer in the next dialog."
  5766. #~ msgstr ""
  5767. #~ "Выберите желаемый принтер в списке ниже.\n"
  5768. #~ "\n"
  5769. #~ "Если принтер отсутствует в списке, воспользуйтесь опцией «Собственный принтер FFF» из категории «Свое». Затем в открывшемся диалоговом окне настройте параметры в соответствии с характеристиками вашего принтера."
  5770. #~ msgctxt "@label"
  5771. #~ msgid "Printer Name"
  5772. #~ msgstr "Имя принтера"
  5773. #~ msgctxt "@action:button"
  5774. #~ msgid "Add Printer"
  5775. #~ msgstr "Добавить принтер"
  5776. #~ msgid "Modify G-Code"
  5777. #~ msgstr "Изменить G-код"
  5778. #~ msgctxt "@info:status"
  5779. #~ msgid "Nothing to slice because none of the models fit the build volume. Please scale or rotate models to fit."
  5780. #~ msgstr "Нечего нарезать, так как ни одна модель не попадает в объём принтера. Пожалуйста, отмасштабируйте или поверните модель."
  5781. #~ msgctxt "@info:status"
  5782. #~ msgid "The selected material is incompatible with the selected machine or configuration."
  5783. #~ msgstr "Выбранный материал несовместим с выбранным принтером или конфигурацией."
  5784. #~ msgctxt "@info:title"
  5785. #~ msgid "Incompatible Material"
  5786. #~ msgstr "Несовместимый материал"
  5787. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  5788. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  5789. #~ msgstr "Невозможно импортировать профиль из <filename>{0}</filename>: <message>{1}</message>"
  5790. #~ msgctxt "@title"
  5791. #~ msgid "Toolbox"
  5792. #~ msgstr "Панель инструментов"
  5793. #~ msgctxt "@label"
  5794. #~ msgid "Not available"
  5795. #~ msgstr "Недоступно"
  5796. #~ msgctxt "@label"
  5797. #~ msgid "Unreachable"
  5798. #~ msgstr "Недостижимо"
  5799. #~ msgctxt "@label"
  5800. #~ msgid "Available"
  5801. #~ msgstr "Доступен"
  5802. #~ msgctxt "@label:status"
  5803. #~ msgid "Preparing"
  5804. #~ msgstr "Подготовка"
  5805. #~ msgctxt "@label:status"
  5806. #~ msgid "Pausing"
  5807. #~ msgstr "Приостановка"
  5808. #~ msgctxt "@label:status"
  5809. #~ msgid "Resuming"
  5810. #~ msgstr "Возобновляется"
  5811. #~ msgctxt "@label"
  5812. #~ msgid "Waiting for: Unavailable printer"
  5813. #~ msgstr "Ожидание: недоступный принтер"
  5814. #~ msgctxt "@label"
  5815. #~ msgid "Waiting for: First available"
  5816. #~ msgstr "Ожидание: первое доступное"
  5817. #~ msgctxt "@label"
  5818. #~ msgid "Waiting for: "
  5819. #~ msgstr "Ожидание: "
  5820. #~ msgctxt "@label"
  5821. #~ msgid "Configuration change"
  5822. #~ msgstr "Изменение конфигурации"
  5823. #~ msgctxt "@label"
  5824. #~ msgid "The assigned printer, %1, requires the following configuration change(s):"
  5825. #~ msgstr "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  5826. #~ msgctxt "@label"
  5827. #~ msgid "Override"
  5828. #~ msgstr "Переопределить"
  5829. #~ msgctxt "@label"
  5830. #~ msgid "Starting a print job with an incompatible configuration could damage your 3D printer. Are you sure you want to override the configuration and print %1?"
  5831. #~ msgstr "Начало задания печати с несовместимой конфигурацией может привести к повреждению 3D-принтера. Действительно переопределить конфигурацию и печатать %1?"
  5832. #~ msgctxt "@window:title"
  5833. #~ msgid "Override configuration configuration and start print"
  5834. #~ msgstr "Переопределить конфигурацию и начать печать"
  5835. #~ msgctxt "@label link to connect manager"
  5836. #~ msgid "Manage queue"
  5837. #~ msgstr "Управление очередью"
  5838. #~ msgctxt "@label"
  5839. #~ msgid "Printing"
  5840. #~ msgstr "Печать"
  5841. #~ msgctxt "@label link to connect manager"
  5842. #~ msgid "Manage printers"
  5843. #~ msgstr "Управление принтерами"
  5844. #~ msgctxt "@action:button"
  5845. #~ msgid "Activate Configuration"
  5846. #~ msgstr "Активировать конфигурацию"
  5847. #~ msgctxt "@info:tooltip"
  5848. #~ msgid "Load the configuration of the printer into Cura"
  5849. #~ msgstr "Загрузка конфигурации принтера в Cura"
  5850. #~ msgctxt "@label"
  5851. #~ msgid "Show Travels"
  5852. #~ msgstr "Показать движения"
  5853. #~ msgctxt "@label"
  5854. #~ msgid "Show Helpers"
  5855. #~ msgstr "Показать поддержку"
  5856. #~ msgctxt "@label"
  5857. #~ msgid "Show Shell"
  5858. #~ msgstr "Показать стенки"
  5859. #~ msgctxt "@label"
  5860. #~ msgid "Show Infill"
  5861. #~ msgstr "Показать заполнение"
  5862. #~ msgctxt "@text:window"
  5863. #~ msgid "I don't want to send these data"
  5864. #~ msgstr "Не хочу отправлять описанные данные"
  5865. #~ msgctxt "@text:window"
  5866. #~ msgid "Allow sending these data to Ultimaker and help us improve Cura"
  5867. #~ msgstr "Разрешить отправку описанных данных в Ultimaker для улучшения Cura"
  5868. #~ msgctxt "@label"
  5869. #~ msgid "Printer type:"
  5870. #~ msgstr "Тип принтера:"
  5871. #~ msgctxt "@label"
  5872. #~ msgid "Connection:"
  5873. #~ msgstr "Соединение:"
  5874. #~ msgctxt "@label"
  5875. #~ msgid "State:"
  5876. #~ msgstr "Состояние:"
  5877. #~ msgctxt "@label:MonitorStatus"
  5878. #~ msgid "Waiting for a printjob"
  5879. #~ msgstr "Ожидаем задание на печать"
  5880. #~ msgctxt "@label:MonitorStatus"
  5881. #~ msgid "Waiting for someone to clear the build plate"
  5882. #~ msgstr "Ожидаем, чтобы кто-нибудь освободил стол"
  5883. #~ msgctxt "@label:MonitorStatus"
  5884. #~ msgid "Aborting print..."
  5885. #~ msgstr "Прерывание печати..."
  5886. #~ msgctxt "@label"
  5887. #~ msgid "Protected profiles"
  5888. #~ msgstr "Защищённые профили"
  5889. #~ msgctxt "@label"
  5890. #~ msgid "Printer Name:"
  5891. #~ msgstr "Имя принтера:"
  5892. #~ msgctxt "@label"
  5893. #~ msgid "Profile:"
  5894. #~ msgstr "Профиль:"
  5895. #~ msgctxt "@label:textbox"
  5896. #~ msgid "Search..."
  5897. #~ msgstr "Поиск..."
  5898. #~ msgctxt "@action:inmenu"
  5899. #~ msgid "Collapse All"
  5900. #~ msgstr "Свернуть все"
  5901. #~ msgctxt "@action:inmenu"
  5902. #~ msgid "Expand All"
  5903. #~ msgstr "Развернуть все"
  5904. #~ msgctxt "@label:header configurations"
  5905. #~ msgid "Available configurations"
  5906. #~ msgstr "Доступные конфигурации"
  5907. #~ msgctxt "@label:extruder label"
  5908. #~ msgid "Extruder"
  5909. #~ msgstr "Экструдер"
  5910. #~ msgctxt "@label:extruder label"
  5911. #~ msgid "Yes"
  5912. #~ msgstr "Да"
  5913. #~ msgctxt "@label:extruder label"
  5914. #~ msgid "No"
  5915. #~ msgstr "Нет"
  5916. #~ msgctxt "@label:listbox"
  5917. #~ msgid "Print Setup"
  5918. #~ msgstr "Настройка печати"
  5919. #~ msgctxt "@label:listbox"
  5920. #~ msgid ""
  5921. #~ "Print Setup disabled\n"
  5922. #~ "G-code files cannot be modified"
  5923. #~ msgstr ""
  5924. #~ "Настройка принтера отключена\n"
  5925. #~ "G-code файлы нельзя изменять"
  5926. #~ msgctxt "@label Hours and minutes"
  5927. #~ msgid "00h 00min"
  5928. #~ msgstr "00 ч 00 мин"
  5929. #~ msgctxt "@tooltip"
  5930. #~ msgid "Time specification"
  5931. #~ msgstr "Настройка расчета времени"
  5932. #~ msgctxt "@label"
  5933. #~ msgid "Cost specification"
  5934. #~ msgstr "Настройка расчета стоимости"
  5935. #~ msgctxt "@label"
  5936. #~ msgid "Total:"
  5937. #~ msgstr "Итого:"
  5938. #~ msgctxt "@tooltip"
  5939. #~ msgid "<b>Recommended Print Setup</b><br/><br/>Print with the recommended settings for the selected printer, material and quality."
  5940. #~ msgstr "<b>Рекомендованные параметры печати</b><br/><br/>Печатайте с рекомендованными параметрами для выбранных принтера, материала и качества."
  5941. #~ msgctxt "@tooltip"
  5942. #~ msgid "<b>Custom Print Setup</b><br/><br/>Print with finegrained control over every last bit of the slicing process."
  5943. #~ msgstr "<b>Свои параметры печати</b><br/><br/>Печатайте с полным контролем над каждой особенностью процесса слайсинга."
  5944. #~ msgctxt "@action:inmenu menubar:help"
  5945. #~ msgid "Show Engine &Log..."
  5946. #~ msgstr "Показать журнал движка..."
  5947. #~ msgctxt "@action:menu"
  5948. #~ msgid "Browse packages..."
  5949. #~ msgstr "Обзор пакетов..."
  5950. #~ msgctxt "@action:inmenu menubar:view"
  5951. #~ msgid "Expand/Collapse Sidebar"
  5952. #~ msgstr "Развернуть/свернуть боковую панель"
  5953. #~ msgctxt "@label:PrintjobStatus"
  5954. #~ msgid "Please load a 3D model"
  5955. #~ msgstr "Пожалуйста, загрузите 3D модель"
  5956. #~ msgctxt "@label:PrintjobStatus"
  5957. #~ msgid "Ready to slice"
  5958. #~ msgstr "Готов к нарезке"
  5959. #~ msgctxt "@label:PrintjobStatus %1 is target operation"
  5960. #~ msgid "Ready to %1"
  5961. #~ msgstr "Готов к %1"
  5962. #~ msgctxt "@label:PrintjobStatus"
  5963. #~ msgid "Slicing unavailable"
  5964. #~ msgstr "Нарезка недоступна"
  5965. #~ msgctxt "@info:tooltip"
  5966. #~ msgid "Slice current printjob"
  5967. #~ msgstr "Разделить на слои текущее задание на печать"
  5968. #~ msgctxt "@info:tooltip"
  5969. #~ msgid "Cancel slicing process"
  5970. #~ msgstr "Отмена разделения на слои"
  5971. #~ msgctxt "@label:Printjob"
  5972. #~ msgid "Prepare"
  5973. #~ msgstr "Подготовка"
  5974. #~ msgctxt "@label:Printjob"
  5975. #~ msgid "Cancel"
  5976. #~ msgstr "Отмена"
  5977. #~ msgctxt "@info:tooltip"
  5978. #~ msgid "Select the active output device"
  5979. #~ msgstr "Выберите активное целевое устройство"
  5980. #~ msgctxt "@title:menu"
  5981. #~ msgid "&View"
  5982. #~ msgstr "Вид"
  5983. #~ msgctxt "@title:menu"
  5984. #~ msgid "&Settings"
  5985. #~ msgstr "Параметры"
  5986. #~ msgctxt "@title:menu menubar:toplevel"
  5987. #~ msgid "&Toolbox"
  5988. #~ msgstr "&Панель инструментов"
  5989. #~ msgctxt "@action:button"
  5990. #~ msgid "Open File"
  5991. #~ msgstr "Открыть файл"
  5992. #~ msgctxt "@tooltip"
  5993. #~ msgid "This quality profile is not available for you current material and nozzle configuration. Please change these to enable this quality profile"
  5994. #~ msgstr "Этот профиль качества недоступен для вашей текущей конфигурации материала и сопла. Измените эти настройки для задействования данного профиля качества"
  5995. #~ msgctxt "@label"
  5996. #~ msgid "Print Speed"
  5997. #~ msgstr "Скорость печати"
  5998. #~ msgctxt "@label"
  5999. #~ msgid "Slower"
  6000. #~ msgstr "Медленнее"
  6001. #~ msgctxt "@label"
  6002. #~ msgid "Faster"
  6003. #~ msgstr "Быстрее"
  6004. #~ msgctxt "@label"
  6005. #~ msgid "Enable gradual"
  6006. #~ msgstr "Постепенное"
  6007. #~ msgctxt "@label"
  6008. #~ msgid "Generate Support"
  6009. #~ msgstr "Генерация поддержек"
  6010. #~ msgctxt "@label"
  6011. #~ msgid "Build Plate Adhesion"
  6012. #~ msgstr "Тип прилипания к столу"
  6013. #~ msgctxt "@label"
  6014. #~ msgid "Need help improving your prints?<br>Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  6015. #~ msgstr "Требуется помощь в улучшении вашей печати?<br>Обратитесь к <a href='%1'>Руководству Ultimaker по решению проблем</a>"
  6016. #~ msgctxt "@title:window"
  6017. #~ msgid "Engine Log"
  6018. #~ msgstr "Журнал движка"
  6019. #~ msgctxt "@label"
  6020. #~ msgid "Printer type"
  6021. #~ msgstr "Тип принтера"
  6022. #~ msgctxt "@label"
  6023. #~ msgid "Use glue with this material combination"
  6024. #~ msgstr "Использовать клей с этой комбинацией материалов"
  6025. #~ msgctxt "@label"
  6026. #~ msgid "Check compatibility"
  6027. #~ msgstr "Проверить совместимость"
  6028. #~ msgctxt "@tooltip"
  6029. #~ msgid "Click to check the material compatibility on Ultimaker.com."
  6030. #~ msgstr "Нажмите для проверки совместимости материала на Ultimaker.com."
  6031. #~ msgctxt "description"
  6032. #~ msgid "Shows changes since latest checked version."
  6033. #~ msgstr "Показывает изменения со времени последней отмеченной версии."
  6034. #~ msgctxt "name"
  6035. #~ msgid "Changelog"
  6036. #~ msgstr "Журнал изменений"
  6037. #~ msgctxt "description"
  6038. #~ msgid "Create a flattend quality changes profile."
  6039. #~ msgstr "Создаёт профиль со стандартными настройками."
  6040. #~ msgctxt "name"
  6041. #~ msgid "Profile flatener"
  6042. #~ msgstr "Нормализация профиля"
  6043. #~ msgctxt "description"
  6044. #~ msgid "Ask the user once if he/she agrees with our license."
  6045. #~ msgstr "Запрашивает согласие пользователя с условиями лицензии."
  6046. #~ msgctxt "name"
  6047. #~ msgid "UserAgreement"
  6048. #~ msgstr "UserAgreement"
  6049. #~ msgctxt "@warning:status"
  6050. #~ msgid "Please generate G-code before saving."
  6051. #~ msgstr "Сгенерируйте G-код перед сохранением."
  6052. #~ msgctxt "@action"
  6053. #~ msgid "Upgrade Firmware"
  6054. #~ msgstr "Обновление прошивки"
  6055. #~ msgctxt "@label unknown material"
  6056. #~ msgid "Unknown"
  6057. #~ msgstr "Неизвестно"
  6058. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6059. #~ msgid "No custom profile to import in file <filename>{0}</filename>"
  6060. #~ msgstr "Отсутствует собственный профиль для импорта в файл <filename>{0}</filename>"
  6061. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6062. #~ msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  6063. #~ msgstr "Данный профиль <filename>{0}</filename> содержит неверные данные, поэтому его невозможно импортировать."
  6064. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6065. #~ msgid "The machine defined in profile <filename>{0}</filename> ({1}) doesn't match with your current machine ({2}), could not import it."
  6066. #~ msgstr "Принтер, заданный в профиле <filename>{0}</filename> ({1}), не совпадает с вашим текущим принтером ({2}), поэтому его невозможно импортировать."
  6067. #~ msgctxt "@title:window"
  6068. #~ msgid "Confirm uninstall "
  6069. #~ msgstr "Подтвердить удаление "
  6070. #~ msgctxt "@label Print estimates: m for meters, g for grams, %4 is currency and %3 is print cost"
  6071. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6072. #~ msgstr "%1 м / ~ %2 г / ~ %4 %3"
  6073. #~ msgctxt "@label Print estimates: m for meters, g for grams"
  6074. #~ msgid "%1m / ~ %2g"
  6075. #~ msgstr "%1 м / ~ %2 г"
  6076. #~ msgctxt "@title"
  6077. #~ msgid "Upgrade Firmware"
  6078. #~ msgstr "Обновление прошивки"
  6079. #~ msgctxt "@action:button"
  6080. #~ msgid "Print with Doodle3D WiFi-Box"
  6081. #~ msgstr "Печать через Doodle3D WiFi-Box"
  6082. #~ msgctxt "@properties:tooltip"
  6083. #~ msgid "Print with Doodle3D WiFi-Box"
  6084. #~ msgstr "Печать через Doodle3D WiFi-Box"
  6085. #~ msgctxt "@info:status"
  6086. #~ msgid "Connecting to Doodle3D Connect"
  6087. #~ msgstr "Соединение с Doodle3D Connect"
  6088. #~ msgctxt "@info:status"
  6089. #~ msgid "Sending data to Doodle3D Connect"
  6090. #~ msgstr "Отправка данных через Doodle3D Connect"
  6091. #~ msgctxt "@info:status"
  6092. #~ msgid "Unable to send data to Doodle3D Connect. Is another job still active?"
  6093. #~ msgstr "Невозможно отправить данные через Doodle3D Connect. Другое задание активно?"
  6094. #~ msgctxt "@info:status"
  6095. #~ msgid "Storing data on Doodle3D Connect"
  6096. #~ msgstr "Сохранение данных на Doodle3D Connect"
  6097. #~ msgctxt "@info:status"
  6098. #~ msgid "File sent to Doodle3D Connect"
  6099. #~ msgstr "Файл отправлен через Doodle3D Connect"
  6100. #~ msgctxt "@action:button"
  6101. #~ msgid "Open Connect..."
  6102. #~ msgstr "Открыть Connect..."
  6103. #~ msgctxt "@info:tooltip"
  6104. #~ msgid "Open the Doodle3D Connect web interface"
  6105. #~ msgstr "Открыть Doodle3D Connect web интерфейс"
  6106. #~ msgctxt "@item:inlistbox"
  6107. #~ msgid "Blender file"
  6108. #~ msgstr "Файл Blender"
  6109. #~ msgctxt "@info:status"
  6110. #~ msgid ""
  6111. #~ "Could not export using \"{}\" quality!\n"
  6112. #~ "Felt back to \"{}\"."
  6113. #~ msgstr ""
  6114. #~ "Не удалось выполнить экспорт с использованием качества \"{}\"!\n"
  6115. #~ "Выполнен возврат к \"{}\"."
  6116. #~ msgctxt "@label"
  6117. #~ msgid "Contact"
  6118. #~ msgstr "Контакт"
  6119. #~ msgctxt "@label"
  6120. #~ msgid "This printer is not set up to host a group of Ultimaker 3 printers."
  6121. #~ msgstr "Данный принтер не настроен для управления группой принтеров Ultimaker 3."
  6122. #~ msgctxt "@label"
  6123. #~ msgid "This printer is the host for a group of %1 Ultimaker 3 printers."
  6124. #~ msgstr "Данный принтер управляет группой из %1 принтеров Ultimaker 3."
  6125. #~ msgctxt "@label: arg 1 is group name"
  6126. #~ msgid "%1 is not set up to host a group of connected Ultimaker 3 printers"
  6127. #~ msgstr "%1 не настроен для управления группой подключенных принтеров Ultimaker 3"
  6128. #~ msgctxt "@label link to connect manager"
  6129. #~ msgid "Add/Remove printers"
  6130. #~ msgstr "Добавить/удалить принтеры"
  6131. #~ msgctxt "@info:tooltip"
  6132. #~ msgid "Opens the print jobs page with your default web browser."
  6133. #~ msgstr "Открытие страницы заданий печати в веб-браузере по умолчанию."
  6134. #~ msgctxt "@action:button"
  6135. #~ msgid "View print jobs"
  6136. #~ msgstr "Просмотреть задания на печать"
  6137. #~ msgctxt "@label:status"
  6138. #~ msgid "Preparing to print"
  6139. #~ msgstr "Подготовка к печати"
  6140. #~ msgctxt "@label:status"
  6141. #~ msgid "Available"
  6142. #~ msgstr "Доступен"
  6143. #~ msgctxt "@label:status"
  6144. #~ msgid "Lost connection with the printer"
  6145. #~ msgstr "Потеряно соединение с принтером"
  6146. #~ msgctxt "@label:status"
  6147. #~ msgid "Unknown"
  6148. #~ msgstr "Неизвестно"
  6149. #~ msgctxt "@label:status"
  6150. #~ msgid "Disabled"
  6151. #~ msgstr "Отключено"
  6152. #~ msgctxt "@label:status"
  6153. #~ msgid "Reserved"
  6154. #~ msgstr "Занят"
  6155. #~ msgctxt "@label"
  6156. #~ msgid "Preparing to print"
  6157. #~ msgstr "Подготовка к печати"
  6158. #~ msgctxt "@label:status"
  6159. #~ msgid "Print aborted"
  6160. #~ msgstr "Печать прервана"
  6161. #~ msgctxt "@label"
  6162. #~ msgid "Not accepting print jobs"
  6163. #~ msgstr "Не принимает задания на печать"
  6164. #~ msgctxt "@label"
  6165. #~ msgid "Finishes at: "
  6166. #~ msgstr "Заканчивается на: "
  6167. #~ msgctxt "@label"
  6168. #~ msgid "Clear build plate"
  6169. #~ msgstr "Очистите стол"
  6170. #~ msgctxt "@label"
  6171. #~ msgid "Waiting for configuration change"
  6172. #~ msgstr "Ожидание изменения конфигурации"
  6173. #~ msgctxt "@title"
  6174. #~ msgid "Print jobs"
  6175. #~ msgstr "Задания на печать"
  6176. #~ msgctxt "@label:title"
  6177. #~ msgid "Printers"
  6178. #~ msgstr "Принтеры"
  6179. #~ msgctxt "@action:button"
  6180. #~ msgid "View printers"
  6181. #~ msgstr "Просмотреть принтеры"
  6182. #~ msgctxt "@label:"
  6183. #~ msgid "Pause"
  6184. #~ msgstr "Пауза"
  6185. #~ msgctxt "@label:"
  6186. #~ msgid "Resume"
  6187. #~ msgstr "Продолжить"
  6188. #~ msgctxt "@label:"
  6189. #~ msgid "Abort Print"
  6190. #~ msgstr "Прервать печать"
  6191. #~ msgctxt "@option:openProject"
  6192. #~ msgid "Always ask"
  6193. #~ msgstr "Всегда спрашивать"
  6194. #~ msgctxt "@label"
  6195. #~ msgid "Override Profile"
  6196. #~ msgstr "Переопределение профиля"
  6197. #~ msgctxt "@info:tooltip"
  6198. #~ msgid "Should newly loaded models be arranged on the build plate? Used in conjunction with multi build plate (EXPERIMENTAL)"
  6199. #~ msgstr "Должны ли новые загруженные модели выравниваться на рабочем столе? Используется в сочетании с несколькими рабочими столами (ЭКСПЕРИМЕНТАЛЬНАЯ ОПЦИЯ)"
  6200. #~ msgctxt "@option:check"
  6201. #~ msgid "Do not arrange objects on load"
  6202. #~ msgstr "Не выравнивать объекты под нагрузкой"
  6203. #~ msgctxt "@action:inmenu menubar:file"
  6204. #~ msgid "&Save Selection to File"
  6205. #~ msgstr "Сохранить выделенное в файл"
  6206. #~ msgctxt "@title:menu menubar:file"
  6207. #~ msgid "Save &As..."
  6208. #~ msgstr "Сохранить как..."
  6209. #~ msgctxt "@title:menu menubar:file"
  6210. #~ msgid "Save &Project..."
  6211. #~ msgstr "Сохранить проект..."
  6212. #~ msgctxt "@label"
  6213. #~ msgid "Use adhesion sheet or glue with this material combination"
  6214. #~ msgstr "Использовать клейкий лист или клей с этой комбинацией материалов"
  6215. #~ msgctxt "description"
  6216. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6217. #~ msgstr "Принять G-code и отправить его через WiFi на Doodle3D WiFi-Box."
  6218. #~ msgctxt "name"
  6219. #~ msgid "Doodle3D WiFi-Box"
  6220. #~ msgstr "Doodle3D WiFi-Box"
  6221. #~ msgctxt "description"
  6222. #~ msgid "Provides an edit window for direct script editing."
  6223. #~ msgstr "Открывает окно редактирования для непосредственного редактирования скриптов."
  6224. #~ msgctxt "name"
  6225. #~ msgid "Live scripting tool"
  6226. #~ msgstr "Интерактивный инструмент для работы со скриптами"
  6227. #~ msgctxt "description"
  6228. #~ msgid "Helps to open Blender files directly in Cura."
  6229. #~ msgstr "Помогает открывать файлы Blender непосредственно в Cura."
  6230. #~ msgctxt "name"
  6231. #~ msgid "Blender Integration (experimental)"
  6232. #~ msgstr "Интеграция Blender (экспериментальная опция)"
  6233. #~ msgctxt "@info:title"
  6234. #~ msgid "Model Checker Warning"
  6235. #~ msgstr "Предупреждение средства проверки моделей"
  6236. #~ msgctxt "@info:status"
  6237. #~ msgid ""
  6238. #~ "Some models may not be printed optimally due to object size and chosen material for models: {model_names}.\n"
  6239. #~ "Tips that may be useful to improve the print quality:\n"
  6240. #~ "1) Use rounded corners.\n"
  6241. #~ "2) Turn the fan off (only if there are no tiny details on the model).\n"
  6242. #~ "3) Use a different material."
  6243. #~ msgstr ""
  6244. #~ "Некоторые модели могут не напечататься оптимальным образом из-за размера объекта и выбранного материала для моделей: {model_names}.\n"
  6245. #~ "Советы, которые могут быть полезны для улучшения качества печати:\n"
  6246. #~ "1) используйте закругленные углы;\n"
  6247. #~ "2) выключите вентилятор (только при отсутствии миниатюрных деталей на модели);\n"
  6248. #~ "3) используйте другой материал."
  6249. #~ msgctxt "@info:status"
  6250. #~ msgid "SolidWorks reported errors while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6251. #~ msgstr "При открытии вашего файла поступили сообщения об ошибках от SolidWorks. Рекомендуется устранить данные проблемы непосредственно в SolidWorks."
  6252. #~ msgctxt "@info:status"
  6253. #~ msgid ""
  6254. #~ "Found no models inside your drawing. Could you please check its content again and make sure one part or assembly is inside?\n"
  6255. #~ "\n"
  6256. #~ "Thanks!"
  6257. #~ msgstr ""
  6258. #~ "В вашем чертеже не обнаружены модели. Проверьте еще раз его содержимое и убедитесь в наличии одной части или сборки.\n"
  6259. #~ "\n"
  6260. #~ "Спасибо!"
  6261. #~ msgctxt "@info:status"
  6262. #~ msgid ""
  6263. #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6264. #~ "\n"
  6265. #~ "Sorry!"
  6266. #~ msgstr ""
  6267. #~ "В вашем чертеже обнаружено больше одной части или сборки. В данный момент поддерживаются исключительно чертежи с одной частью или сборкой.\n"
  6268. #~ "\n"
  6269. #~ "Сожалеем!"
  6270. #~ msgctxt "@item:inlistbox"
  6271. #~ msgid "SolidWorks part file"
  6272. #~ msgstr "Файл компонентов SolidWorks"
  6273. #~ msgctxt "@item:inlistbox"
  6274. #~ msgid "SolidWorks assembly file"
  6275. #~ msgstr "Файл сборки SolidWorks"
  6276. #~ msgctxt "@item:inlistbox"
  6277. #~ msgid "SolidWorks drawing file"
  6278. #~ msgstr "Файл чертежа SolidWorks"
  6279. #~ msgctxt "@info:status"
  6280. #~ msgid ""
  6281. #~ "Dear customer,\n"
  6282. #~ "We could not find a valid installation of SolidWorks on your system. That means that either SolidWorks is not installed or you don't own an valid license. Please make sure that running SolidWorks itself works without issues and/or contact your ICT.\n"
  6283. #~ "\n"
  6284. #~ "With kind regards\n"
  6285. #~ " - Thomas Karl Pietrowski"
  6286. #~ msgstr ""
  6287. #~ "Уважаемый клиент!\n"
  6288. #~ "Мы не обнаружили подходящую установку SolidWorks в вашей системе. Это означает, что ПО SolidWorks не установлено либо у вас нет подходящей лицензии. Убедитесь, что при запуске ПО SolidWorks оно работает надлежащим образом и (или) обратитесь к своим специалистам по ИКТ.\n"
  6289. #~ "\n"
  6290. #~ "С наилучшими пожеланиями,\n"
  6291. #~ " - Томас Карл Петровски (Thomas Karl Pietrowski)"
  6292. #~ msgctxt "@info:status"
  6293. #~ msgid ""
  6294. #~ "Dear customer,\n"
  6295. #~ "You are currently running this plugin on an operating system other than Windows. This plugin will only work on Windows with SolidWorks installed, including an valid license. Please install this plugin on a Windows machine with SolidWorks installed.\n"
  6296. #~ "\n"
  6297. #~ "With kind regards\n"
  6298. #~ " - Thomas Karl Pietrowski"
  6299. #~ msgstr ""
  6300. #~ "Уважаемый клиент!\n"
  6301. #~ "В данный момент этот плагин запущен в операционной системе, отличной от Windows. Плагин функционирует исключительно под управлением ОС Windows с установленным ПО SolidWorks, для которого имеется подходящая лицензия. Установите данный плагин на принтер под управлением Windows с установленным ПО SolidWorks.\n"
  6302. #~ "\n"
  6303. #~ "С наилучшими пожеланиями,\n"
  6304. #~ " - Томас Карл Петровски (Thomas Karl Pietrowski)"
  6305. #~ msgid "Configure"
  6306. #~ msgstr "Настройка"
  6307. #~ msgid "Installation guide for SolidWorks macro"
  6308. #~ msgstr "Руководство по установке макроса SolidWorks"
  6309. #~ msgctxt "@action:button"
  6310. #~ msgid "Disable"
  6311. #~ msgstr "Отключить"
  6312. #~ msgctxt "@action:tooltip"
  6313. #~ msgid "Don't allow Cura to send anonymized usage statistics. You can enable it again in the preferences."
  6314. #~ msgstr "Запретить Cura отправлять анонимизированную статистику об использовании. Данное разрешение можно повторно активировать в разделе параметров."
  6315. #~ msgid "Install"
  6316. #~ msgstr "Установить"
  6317. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR. It is not set to a directory."
  6318. #~ msgstr "Не удалось скопировать файлы плагинов Siemens NX. Проверьте переменную среды UGII_USER_DIR. Ей не назначен каталог."
  6319. #~ msgid "Successfully installed Siemens NX Cura plugin."
  6320. #~ msgstr "Плагин Siemens NX Cura успешно установлен."
  6321. #~ msgid "Failed to copy Siemens NX plugins files. Please check your UGII_USER_DIR."
  6322. #~ msgstr "Не удалось скопировать файлы плагинов Siemens NX. Проверьте переменную среды UGII_USER_DIR."
  6323. #~ msgid "Failed to install Siemens NX plugin. Could not set environment variable UGII_USER_DIR for Siemens NX."
  6324. #~ msgstr "Не удалось установить плагин Siemens NX. Не удалось установить переменную среды UGII_USER_DIR для Siemens NX."
  6325. #~ msgctxt "@info:status"
  6326. #~ msgid "Failed to get plugin ID from <filename>{0}</filename>"
  6327. #~ msgstr "Невозможно получить идентификатор плагин <filename>{0}</filename>"
  6328. #~ msgctxt "@info:tile"
  6329. #~ msgid "Warning"
  6330. #~ msgstr "Внимание"
  6331. #~ msgctxt "@window:title"
  6332. #~ msgid "Plugin browser"
  6333. #~ msgstr "Браузер плагинов"
  6334. #~ msgctxt "@label"
  6335. #~ msgid "Ultimaker 3"
  6336. #~ msgstr "Ultimaker 3"
  6337. #~ msgctxt "@label"
  6338. #~ msgid "Ultimaker 3 Extended"
  6339. #~ msgstr "Ultimaker 3 Extended"
  6340. #~ msgctxt "@title:window"
  6341. #~ msgid "SolidWorks: Export wizard"
  6342. #~ msgstr "SolidWorks: Мастер экспорта"
  6343. #~ msgctxt "@action:label"
  6344. #~ msgid "Quality:"
  6345. #~ msgstr "Качество:"
  6346. #~ msgctxt "@option:curaSolidworksStlQuality"
  6347. #~ msgid "Fine (3D-printing)"
  6348. #~ msgstr "Точное (3D-печать)"
  6349. #~ msgctxt "@option:curaSolidworksStlQuality"
  6350. #~ msgid "Coarse (3D-printing)"
  6351. #~ msgstr "Грубое (3D-печать)"
  6352. #~ msgctxt "@option:curaSolidworksStlQuality"
  6353. #~ msgid "Fine (SolidWorks)"
  6354. #~ msgstr "Точное (SolidWorks)"
  6355. #~ msgctxt "@option:curaSolidworksStlQuality"
  6356. #~ msgid "Coarse (SolidWorks)"
  6357. #~ msgstr "Грубое (SolidWorks)"
  6358. #~ msgctxt "@text:window"
  6359. #~ msgid "Show this dialog again"
  6360. #~ msgstr "Показывать это диалоговое окно в дальнейшем"
  6361. #~ msgctxt "@action:button"
  6362. #~ msgid "Continue"
  6363. #~ msgstr "Продолжить"
  6364. #~ msgctxt "@action:button"
  6365. #~ msgid "Abort"
  6366. #~ msgstr "Прервать"
  6367. #~ msgctxt "@title:window"
  6368. #~ msgid "How to install Cura SolidWorks macro"
  6369. #~ msgstr "Порядок установки макроса Cura SolidWorks"
  6370. #~ msgctxt "@description:label"
  6371. #~ msgid "Steps:"
  6372. #~ msgstr "Шаги:"
  6373. #~ msgctxt "@action:button"
  6374. #~ msgid ""
  6375. #~ "Open the directory\n"
  6376. #~ "with macro and icon"
  6377. #~ msgstr ""
  6378. #~ "Откройте каталог\n"
  6379. #~ "с макросом и значком"
  6380. #~ msgctxt "@description:label"
  6381. #~ msgid "Instructions:"
  6382. #~ msgstr "Инструкции:"
  6383. #~ msgctxt "@action:playpause"
  6384. #~ msgid "Play"
  6385. #~ msgstr "Воспроизвести"
  6386. #~ msgctxt "@action:playpause"
  6387. #~ msgid "Pause"
  6388. #~ msgstr "Пауза"
  6389. #~ msgctxt "@action:button"
  6390. #~ msgid "Previous Step"
  6391. #~ msgstr "Предыдущий шаг"
  6392. #~ msgctxt "@action:button"
  6393. #~ msgid "Done"
  6394. #~ msgstr "Готово"
  6395. #~ msgctxt "@action:button"
  6396. #~ msgid "Next Step"
  6397. #~ msgstr "Следующий шаг"
  6398. #~ msgctxt "@title:window"
  6399. #~ msgid "SolidWorks plugin: Configuration"
  6400. #~ msgstr "Плагин SolidWorks: Конфигурация"
  6401. #~ msgctxt "@title:tab"
  6402. #~ msgid "Conversion settings"
  6403. #~ msgstr "Настройки преобразования"
  6404. #~ msgctxt "@label"
  6405. #~ msgid "First choice:"
  6406. #~ msgstr "Первый выбранный вариант:"
  6407. #~ msgctxt "@text:menu"
  6408. #~ msgid "Latest installed version (Recommended)"
  6409. #~ msgstr "Последняя установленная версия (рекомендуется)"
  6410. #~ msgctxt "@text:menu"
  6411. #~ msgid "Default version"
  6412. #~ msgstr "Версия по умолчанию"
  6413. #~ msgctxt "@label"
  6414. #~ msgid "Show wizard before opening SolidWorks files"
  6415. #~ msgstr "Показывать окно мастера перед открытием файлов SolidWorks"
  6416. #~ msgctxt "@label"
  6417. #~ msgid "Automatically rotate opened file into normed orientation"
  6418. #~ msgstr "Автоматически поворачивать открытый файл с применением нормированной ориентации"
  6419. #~ msgctxt "@title:tab"
  6420. #~ msgid "Installation(s)"
  6421. #~ msgstr "Установка (-и)"
  6422. #~ msgctxt "@label"
  6423. #~ msgid "COM service found"
  6424. #~ msgstr "Обнаружена служба COM"
  6425. #~ msgctxt "@label"
  6426. #~ msgid "Executable found"
  6427. #~ msgstr "Обнаружен исполняемый файл"
  6428. #~ msgctxt "@label"
  6429. #~ msgid "COM starting"
  6430. #~ msgstr "COM запускается"
  6431. #~ msgctxt "@label"
  6432. #~ msgid "Revision number"
  6433. #~ msgstr "Номер редакции"
  6434. #~ msgctxt "@label"
  6435. #~ msgid "Functions available"
  6436. #~ msgstr "Доступные функции"
  6437. #~ msgctxt "@label (%1 is object name)"
  6438. #~ msgid "The new material diameter is set to %1 mm, which is not compatible to the current machine. Do you wish to continue?"
  6439. #~ msgstr "Установлен новый диаметр материала %1 мм. Это значение несовместимо с текущим принтером. Продолжить?"
  6440. #~ msgctxt "@action:menu"
  6441. #~ msgid "Browse plugins..."
  6442. #~ msgstr "Просмотр плагинов..."
  6443. #~ msgctxt "@title:menu menubar:toplevel"
  6444. #~ msgid "P&lugins"
  6445. #~ msgstr "Плагины"
  6446. #~ msgctxt "@window:title"
  6447. #~ msgid "Install Plugin"
  6448. #~ msgstr "Установка плагина"
  6449. #~ msgctxt "description"
  6450. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  6451. #~ msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)"
  6452. #~ msgctxt "description"
  6453. #~ msgid "Manages network connections to Ultimaker 3 printers"
  6454. #~ msgstr "Управляет сетевыми соединениями с принтерами Ultimaker 3"
  6455. #~ msgctxt "description"
  6456. #~ msgid "Gives you the possibility to open certain files using SolidWorks itself. Conversion is done by this plugin and additional optimizations."
  6457. #~ msgstr "Позволяет открывать определенные файлы непосредственно с помощью SolidWorks. Преобразование выполняется с помощью данного плагина и дополнительных оптимизаций."
  6458. #~ msgctxt "name"
  6459. #~ msgid "SolidWorks Integration"
  6460. #~ msgstr "Интеграция с SolidWorks"
  6461. #~ msgctxt "description"
  6462. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  6463. #~ msgstr "Автоматически сохраняет настройки, принтеры и профили после внесения изменений."
  6464. #~ msgctxt "name"
  6465. #~ msgid "Auto Save"
  6466. #~ msgstr "Автосохранение"
  6467. #~ msgctxt "description"
  6468. #~ msgid "Helps you to install an 'export to Cura' button in Siemens NX."
  6469. #~ msgstr "Позволяет установить кнопку «Экспортировать в Cura» в Siemens NX."
  6470. #~ msgctxt "name"
  6471. #~ msgid "Siemens NX Integration"
  6472. #~ msgstr "Siemens NX Integration"
  6473. #~ msgctxt "description"
  6474. #~ msgid "Find, manage and install new plugins."
  6475. #~ msgstr "Поиск, управление и установка новых плагинов."
  6476. #~ msgctxt "name"
  6477. #~ msgid "Plugin Browser"
  6478. #~ msgstr "Браузер плагинов"
  6479. #~ msgctxt "description"
  6480. #~ msgid "Ask the user once if he/she agrees with our license"
  6481. #~ msgstr "Запрашивает согласие пользователя с условиями лицензии"
  6482. #~ msgctxt "description"
  6483. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  6484. #~ msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)"
  6485. #~ msgctxt "@item:inlistbox"
  6486. #~ msgid "GCode File"
  6487. #~ msgstr "Файл GCode"
  6488. #~ msgctxt "@info:status"
  6489. #~ msgid "Unable to start a new job because the printer is busy or not connected."
  6490. #~ msgstr "Невозможно запустить новое задание, потому что принтер занят или не подключен."
  6491. #~ msgctxt "@info:title"
  6492. #~ msgid "Printer Unavailable"
  6493. #~ msgstr "Принтер недоступен"
  6494. #~ msgctxt "@info:status"
  6495. #~ msgid "This printer does not support USB printing because it uses UltiGCode flavor."
  6496. #~ msgstr "Данный принтер не поддерживает печать через USB, потому что он использует UltiGCode диалект."
  6497. #~ msgctxt "@info:title"
  6498. #~ msgid "USB Printing"
  6499. #~ msgstr "USB печать"
  6500. #~ msgctxt "@info:status"
  6501. #~ msgid "Unable to start a new job because the printer does not support usb printing."
  6502. #~ msgstr "Невозможно запустить новую задачу, так как принтер не поддерживает печать через USB."
  6503. #~ msgctxt "@info"
  6504. #~ msgid "Unable to update firmware because there are no printers connected."
  6505. #~ msgstr "Невозможно обновить прошивку, потому что не были найдены подключенные принтеры."
  6506. #~ msgctxt "@info"
  6507. #~ msgid "Could not find firmware required for the printer at %s."
  6508. #~ msgstr "Не могу найти прошивку, подходящую для принтера в %s."
  6509. #~ msgctxt "@info:title"
  6510. #~ msgid "Printer Firmware"
  6511. #~ msgstr "Прошивка принтера"
  6512. #~ msgctxt "@info:title"
  6513. #~ msgid "Connection status"
  6514. #~ msgstr "Состояние соединения"
  6515. #~ msgctxt "@info:title"
  6516. #~ msgid "Connection Status"
  6517. #~ msgstr "Состояние соединения"
  6518. #~ msgctxt "@info:status"
  6519. #~ msgid "Access request was denied on the printer."
  6520. #~ msgstr "Запрос доступа к принтеру был отклонён."
  6521. #~ msgctxt "@info:status"
  6522. #~ msgid "Access request failed due to a timeout."
  6523. #~ msgstr "Запрос доступа был неудачен из-за таймаута."
  6524. #~ msgctxt "@info:status"
  6525. #~ msgid "The connection with the network was lost."
  6526. #~ msgstr "Соединение с сетью было потеряно."
  6527. #~ msgctxt "@info:status"
  6528. #~ msgid "The connection with the printer was lost. Check your printer to see if it is connected."
  6529. #~ msgstr "Соединение с принтером было потеряно. Проверьте свой принтер, подключен ли он."
  6530. #~ msgctxt "@info:status"
  6531. #~ msgid "Unable to start a new print job, printer is busy. Current printer status is %s."
  6532. #~ msgstr "Невозможно запустить новую задачу на печать, принтер занят. Текущий статус принтера %s."
  6533. #~ msgctxt "@info:title"
  6534. #~ msgid "Printer Status"
  6535. #~ msgstr "Состояние принтера"
  6536. #~ msgctxt "@info:status"
  6537. #~ msgid "Unable to start a new print job. No Printcore loaded in slot {0}"
  6538. #~ msgstr "Невозможно запустить новую задачу на печать. PrinterCore не был загружен в слот {0}"
  6539. #~ msgctxt "@info:status"
  6540. #~ msgid "Unable to start a new print job. No material loaded in slot {0}"
  6541. #~ msgstr "Невозможно запустить новую задачу на печать. Материал не загружен в слот {0}"
  6542. #~ msgctxt "@label"
  6543. #~ msgid "Not enough material for spool {0}."
  6544. #~ msgstr "Недостаточно материала в катушке {0}."
  6545. #~ msgctxt "@label"
  6546. #~ msgid "Different PrintCore (Cura: {0}, Printer: {1}) selected for extruder {2}"
  6547. #~ msgstr "Разный PrintCore (Cura: {0}, Принтер: {1}) выбран для экструдера {2}"
  6548. #~ msgctxt "@label"
  6549. #~ msgid "PrintCore {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  6550. #~ msgstr "PrintCore {0} не откалибровано. Необходимо выполнить XY калибровку для принтера."
  6551. #~ msgctxt "@info:status"
  6552. #~ msgid "Unable to send data to printer. Is another job still active?"
  6553. #~ msgstr "Невозможно отправить данные на принтер. Другая задача всё ещё активна?"
  6554. #~ msgctxt "@label:MonitorStatus"
  6555. #~ msgid "Print aborted. Please check the printer"
  6556. #~ msgstr "Печать прервана. Пожалуйста, проверьте принтер"
  6557. #~ msgctxt "@label:MonitorStatus"
  6558. #~ msgid "Pausing print..."
  6559. #~ msgstr "Печать приостановлена..."
  6560. #~ msgctxt "@label:MonitorStatus"
  6561. #~ msgid "Resuming print..."
  6562. #~ msgstr "Печать возобновлена..."
  6563. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers."
  6564. #~ msgstr "Данный принтер не настроен для управления группой подключенных принтеров Ultimaker 3."
  6565. #~ msgctxt "Count is number of printers."
  6566. #~ msgid "This printer is the host for a group of {count} connected Ultimaker 3 printers."
  6567. #~ msgstr "Данный принтер управляет группой из {count} подключенных принтеров Ultimaker 3."
  6568. #~ msgid "{printer_name} has finished printing '{job_name}'. Please collect the print and confirm clearing the build plate."
  6569. #~ msgstr "{printer_name} завершил печать '{job_name}'. Пожалуйста, освободите область печати."
  6570. #~ msgid "{printer_name} is reserved to print '{job_name}'. Please change the printer's configuration to match the job, for it to start printing."
  6571. #~ msgstr "{printer_name} назначен для печати '{job_name}'. Пожалуйста, измените конфигурацию принтера, чтобы она соответствовала заданию."
  6572. #~ msgctxt "@info:status"
  6573. #~ msgid "Unable to send new print job: this 3D printer is not (yet) set up to host a group of connected Ultimaker 3 printers."
  6574. #~ msgstr "Невозможно отправить новое задание: данный 3D принтер (ещё) не настроен на управление группой подключенных принтеров Ultimaker 3."
  6575. #~ msgctxt "@info:status"
  6576. #~ msgid "Unable to send print job to group {cluster_name}."
  6577. #~ msgstr "Невозможно отправить задание на группу {cluster_name}."
  6578. #~ msgctxt "@info:status"
  6579. #~ msgid "Sent {file_name} to group {cluster_name}."
  6580. #~ msgstr "Отправка {file_name} на группу {cluster_name}."
  6581. #~ msgctxt "@action:button"
  6582. #~ msgid "Show print jobs"
  6583. #~ msgstr "Показать задания на печать"
  6584. #~ msgctxt "@info:tooltip"
  6585. #~ msgid "Opens the print jobs interface in your browser."
  6586. #~ msgstr "Открыть интерфейс с заданиями печати в вашем браузере."
  6587. #~ msgctxt "@label Printer name"
  6588. #~ msgid "Unknown"
  6589. #~ msgstr "Неизвестно"
  6590. #~ msgctxt "@info:progress"
  6591. #~ msgid "Sending <filename>{file_name}</filename> to group {cluster_name}"
  6592. #~ msgstr "Отправляем <filename>{file_name}</filename> на группу {cluster_name}"
  6593. #~ msgctxt "@info:status"
  6594. #~ msgid "SolidWorks reported errors, while opening your file. We recommend to solve these issues inside SolidWorks itself."
  6595. #~ msgstr "При открытии вашего файла поступили сообщения об ошибках от SolidWorks. Рекомендуется устранить данные проблемы непосредственно в SolidWorks."
  6596. #~ msgctxt "@info:status"
  6597. #~ msgid ""
  6598. #~ "Found no models inside your drawing. Could you please check it's content again and make sure one part or assembly is inside?\n"
  6599. #~ "\n"
  6600. #~ " Thanks!."
  6601. #~ msgstr ""
  6602. #~ "В вашем чертеже не обнаружены модели. Проверьте еще раз его содержимое и убедитесь в наличии одной части или сборки.\n"
  6603. #~ "\n"
  6604. #~ "Благодарим!"
  6605. #~ msgctxt "@info:status"
  6606. #~ msgid ""
  6607. #~ "Found more then one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n"
  6608. #~ "\n"
  6609. #~ "Sorry!"
  6610. #~ msgstr ""
  6611. #~ "В вашем чертеже обнаружено больше одной части или сборки. В данный момент поддерживаются исключительно чертежи с одной частью или сборкой.\n"
  6612. #~ "\n"
  6613. #~ "Сожалеем!"
  6614. #~ msgctxt "@item:material"
  6615. #~ msgid "No material loaded"
  6616. #~ msgstr "Материал не загружен"
  6617. #~ msgctxt "@item:material"
  6618. #~ msgid "Unknown material"
  6619. #~ msgstr "Неизвестный материал"
  6620. #~ msgctxt "@info:status Has a cancel button next to it."
  6621. #~ msgid "The selected material diameter causes the material to become incompatible with the current printer."
  6622. #~ msgstr "Диаметр выбранного материала показывает, что он несовместим с текущим принтером."
  6623. #~ msgctxt "@action:button"
  6624. #~ msgid "Undo"
  6625. #~ msgstr "Отмена"
  6626. #~ msgctxt "@action"
  6627. #~ msgid "Undo changing the material diameter."
  6628. #~ msgstr "Отмена изменения диаметра материала."
  6629. #~ msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  6630. #~ msgid "The machine defined in profile <filename>{0}</filename> doesn't match with your current machine, could not import it."
  6631. #~ msgstr "Аппарат, заданный в профиле <filename>{0}</filename>, не совпадает с вашим текущим аппаратом, поэтому его невозможно импортировать."
  6632. #~ msgctxt "@label crash message"
  6633. #~ msgid ""
  6634. #~ "<p><b>A fatal error has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6635. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6636. #~ " "
  6637. #~ msgstr ""
  6638. #~ "<p><b>Возникла критическая ошибка. Отправьте нам этот отчет о сбое, чтобы мы могли устранить проблему</p></b>\n"
  6639. #~ " <p>Нажмите кнопку «Отправить отчёт», чтобы автоматически отправить отчет об ошибке на наши серверы</p>\n"
  6640. #~ " "
  6641. #~ msgctxt "@label"
  6642. #~ msgid "not yet initialised<br/>"
  6643. #~ msgstr "в данный момент не инициализировано<br/>"
  6644. #~ msgctxt "@label"
  6645. #~ msgid "Gcode flavor"
  6646. #~ msgstr "Вариант G-кода"
  6647. #~ msgctxt "@label"
  6648. #~ msgid "Start Gcode"
  6649. #~ msgstr "Начало G-кода"
  6650. #~ msgctxt "@tooltip"
  6651. #~ msgid "Gcode commands to be executed at the very start."
  6652. #~ msgstr "Команды в G-коде, которые будут выполнены при старте печати."
  6653. #~ msgctxt "@label"
  6654. #~ msgid "End Gcode"
  6655. #~ msgstr "Конец G-кода"
  6656. #~ msgctxt "@tooltip"
  6657. #~ msgid "Gcode commands to be executed at the very end."
  6658. #~ msgstr "Команды в G-коде, которые будут выполнены в конце печати."
  6659. #~ msgctxt "@label"
  6660. #~ msgid "Extruder Start Gcode"
  6661. #~ msgstr "G-код старта экструдера"
  6662. #~ msgctxt "@label"
  6663. #~ msgid "Extruder End Gcode"
  6664. #~ msgstr "G-код завершения экструдера"
  6665. #~ msgctxt "@label"
  6666. #~ msgid "Starting firmware update, this may take a while."
  6667. #~ msgstr "Запуск обновления прошивки, это может занять некоторое время."
  6668. #~ msgctxt "@label"
  6669. #~ msgid "Unknown error code: %1"
  6670. #~ msgstr "Неизвестный код ошибки: %1"
  6671. #~ msgctxt "@label Printer name"
  6672. #~ msgid "Ultimaker 3"
  6673. #~ msgstr "Ultimaker 3"
  6674. #~ msgctxt "@label Printer name"
  6675. #~ msgid "Ultimaker 3 Extended"
  6676. #~ msgstr "Ultimaker 3 Extended"
  6677. #~ msgctxt "@label Printer status"
  6678. #~ msgid "Unknown"
  6679. #~ msgstr "Неизвестно"
  6680. #~ msgctxt "@title:window"
  6681. #~ msgid "Find & Update plugins"
  6682. #~ msgstr "Найти и обновить плагины"
  6683. #~ msgctxt "@label"
  6684. #~ msgid "Here you can find a list of Third Party plugins."
  6685. #~ msgstr "Здесь вы можете найти список сторонних плагинов."
  6686. #~ msgctxt "@action:button"
  6687. #~ msgid "Upgrade"
  6688. #~ msgstr "Обновление"
  6689. #~ msgctxt "@action:button"
  6690. #~ msgid "Download"
  6691. #~ msgstr "Скачать"
  6692. #~ msgctxt "@info:tooltip"
  6693. #~ msgid "Show caution message in gcode reader."
  6694. #~ msgstr "Показывать важное сообщение при чтении G-кода."
  6695. #~ msgctxt "@option:check"
  6696. #~ msgid "Caution message in gcode reader"
  6697. #~ msgstr "Важное сообщение при чтении G-кода"
  6698. #~ msgctxt "@window:title"
  6699. #~ msgid "Import Profile"
  6700. #~ msgstr "Импортировать профиль"
  6701. #~ msgctxt "@action:label %1 is printer name, %2 is how this printer names variants, %3 is variant name"
  6702. #~ msgid "Printer: %1, %2: %3"
  6703. #~ msgstr "Принтер: %1, %2: %3"
  6704. #~ msgctxt "@action:label %1 is printer name"
  6705. #~ msgid "Printer: %1"
  6706. #~ msgstr "Принтер: %1"
  6707. #~ msgctxt "@label"
  6708. #~ msgid "GCode generator"
  6709. #~ msgstr "GCode генератор"
  6710. #~ msgctxt "@action:menu"
  6711. #~ msgid "Configure setting visiblity..."
  6712. #~ msgstr "Настроить видимость параметров..."
  6713. #~ msgctxt "@title:menuitem %1 is the automatically selected material"
  6714. #~ msgid "Automatic: %1"
  6715. #~ msgstr "Автоматически: %1"
  6716. #~ msgctxt "@title:menuitem %1 is the nozzle currently loaded in the printer"
  6717. #~ msgid "Automatic: %1"
  6718. #~ msgstr "Автоматически: %1"
  6719. #~ msgctxt "@info:status"
  6720. #~ msgid "No printer connected"
  6721. #~ msgstr "Принтер не подключен"
  6722. #~ msgctxt "@tooltip"
  6723. #~ msgid "The current temperature of this extruder."
  6724. #~ msgstr "Текущая температура экструдера."
  6725. #~ msgctxt "@action:menu"
  6726. #~ msgid "Installed plugins..."
  6727. #~ msgstr "Установленные плагины..."
  6728. #~ msgctxt "@label"
  6729. #~ msgid "Support Extruder"
  6730. #~ msgstr "Экструдер поддержек"
  6731. #~ msgctxt "description"
  6732. #~ msgid "Writes GCode to a file."
  6733. #~ msgstr "Записывает G-Code в файл."
  6734. #~ msgctxt "name"
  6735. #~ msgid "GCode Writer"
  6736. #~ msgstr "Запись G-Code"
  6737. #~ msgctxt "name"
  6738. #~ msgid "GCode Profile Reader"
  6739. #~ msgstr "Чтение профиля из G-Code"
  6740. #~ msgctxt "@info:status"
  6741. #~ msgid "Errors appeared while opening your SolidWorks file! Please check, whether it is possible to open your file in SolidWorks itself without any problems as well!"
  6742. #~ msgstr "Возникли ошибки во время открытия файла SolidWorks! Пожалуйста, проверьте может ли SolidWorks открыть этот файл без проблем!"
  6743. #~ msgctxt "@info:status"
  6744. #~ msgid "Error while starting %s!"
  6745. #~ msgstr "Ошибка при запуске %s!"
  6746. #~ msgctxt "@item:inlistbox"
  6747. #~ msgid "Simulation view"
  6748. #~ msgstr "Вид моделирования"
  6749. #~ msgctxt "@info"
  6750. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in the preferences."
  6751. #~ msgstr "Cura собирает анонимную статистику о нарезке модели. Вы можете отключить это в настройках."
  6752. #~ msgctxt "@action:button"
  6753. #~ msgid "Dismiss"
  6754. #~ msgstr "Отменить"
  6755. #~ msgctxt "@menuitem"
  6756. #~ msgid "Global"
  6757. #~ msgstr "Общие"
  6758. #~ msgctxt "@label crash message"
  6759. #~ msgid ""
  6760. #~ "<p><b>A fatal exception has occurred. Please send us this Crash Report to fix the problem</p></b>\n"
  6761. #~ " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  6762. #~ " "
  6763. #~ msgstr ""
  6764. #~ "<p><b>Произошло критическое исключение. Отправьте нам этот отчёт о сбое, чтобы мы могли устранить проблему</p></b>\n"
  6765. #~ " <p>Нажмите кнопку «Отправить отчёт», чтобы автоматически отправить отчёт об ошибке на наш сервер</p>\n"
  6766. #~ " "
  6767. #~ msgctxt "@label Cura version"
  6768. #~ msgid "<b>Cura version:</b> {version}<br/>"
  6769. #~ msgstr "<b>Версия Cura:</b> {version}<br/>"
  6770. #~ msgctxt "@label Platform"
  6771. #~ msgid "<b>Platform:</b> {platform}<br/>"
  6772. #~ msgstr "<b>Платформа:</b> {platform}<br/>"
  6773. #~ msgctxt "@label Qt version"
  6774. #~ msgid "<b>Qt version:</b> {qt}<br/>"
  6775. #~ msgstr "<b>Версия Qt:</b> {qt}<br/>"
  6776. #~ msgctxt "@label PyQt version"
  6777. #~ msgid "<b>PyQt version:</b> {pyqt}<br/>"
  6778. #~ msgstr "<b>Версия PyQt:</b> {pyqt}<br/>"
  6779. #~ msgctxt "@label OpenGL"
  6780. #~ msgid "<b>OpenGL:</b> {opengl}<br/>"
  6781. #~ msgstr "<b>OpenGL:</b> {opengl}<br/>"
  6782. #~ msgctxt "@title:groupbox"
  6783. #~ msgid "Exception traceback"
  6784. #~ msgstr "Диагностика исключения"
  6785. #~ msgctxt "@label"
  6786. #~ msgid "Material diameter"
  6787. #~ msgstr "Диаметр материала"
  6788. #~ msgctxt "@title:window"
  6789. #~ msgid "Cura SolidWorks Plugin Configuration"
  6790. #~ msgstr "Конфигурация плагина SolidWorks"
  6791. #~ msgctxt "@action:label"
  6792. #~ msgid "Default quality of the exported STL:"
  6793. #~ msgstr "Качество по-умолчанию экспортируемого STL:"
  6794. #~ msgctxt "@option:curaSolidworksStlQuality"
  6795. #~ msgid "Always ask"
  6796. #~ msgstr "Всегда спрашивать"
  6797. #~ msgctxt "@option:curaSolidworksStlQuality"
  6798. #~ msgid "Always use Fine quality"
  6799. #~ msgstr "Всегда использовать хорошее качество"
  6800. #~ msgctxt "@option:curaSolidworksStlQuality"
  6801. #~ msgid "Always use Coarse quality"
  6802. #~ msgstr "Всегда использовать грубое качество"
  6803. #~ msgctxt "@title:window"
  6804. #~ msgid "Import SolidWorks File as STL..."
  6805. #~ msgstr "Импортировать SolidWorks файл как STL..."
  6806. #~ msgctxt "@info:tooltip"
  6807. #~ msgid "Quality of the Exported STL"
  6808. #~ msgstr "Качество экспортируемого STL"
  6809. #~ msgctxt "@action:label"
  6810. #~ msgid "Quality"
  6811. #~ msgstr "Качество"
  6812. #~ msgctxt "@option:curaSolidworksStlQuality"
  6813. #~ msgid "Coarse"
  6814. #~ msgstr "Грубое"
  6815. #~ msgctxt "@option:curaSolidworksStlQuality"
  6816. #~ msgid "Fine"
  6817. #~ msgstr "Хорошее"
  6818. #~ msgctxt "@"
  6819. #~ msgid "No Profile Available"
  6820. #~ msgstr "отсутствуют доступные профили"
  6821. #~ msgctxt "@label"
  6822. #~ msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders"
  6823. #~ msgstr "Этот параметр всегда действует на все экструдеры. Его изменение повлияет на все экструдеры"
  6824. #~ msgctxt "@tooltip"
  6825. #~ msgid "<b>Time specification</b><br/><table>"
  6826. #~ msgstr "<b>Формат отображения времени</b><br/><table>"
  6827. #~ msgctxt "@action:inmenu menubar:view"
  6828. #~ msgid "&Reset camera position"
  6829. #~ msgstr "&Сбросить положение камеры"
  6830. #~ msgctxt "@title:menu menubar:file"
  6831. #~ msgid "Save project"
  6832. #~ msgstr "Сохранить проект"
  6833. #~ msgctxt "@title:tab"
  6834. #~ msgid "Prepare"
  6835. #~ msgstr "Подготовка"
  6836. #~ msgctxt "@title:tab"
  6837. #~ msgid "Monitor"
  6838. #~ msgstr "Монитор"
  6839. #~ msgctxt "@label"
  6840. #~ msgid "<a href='%1'>Check compatibility</a>"
  6841. #~ msgstr "<a href='%1'>Проверить совместимость</a>"
  6842. #~ msgctxt "description"
  6843. #~ msgid "Gives you the possibility to open certain files via SolidWorks itself. These are then converted and loaded into Cura"
  6844. #~ msgstr "Предоставляет вам возможность открывать файлы через SolidWorks. Файлы будут преобразовываться и загружаться в Cura"
  6845. #~ msgctxt "@label:status"
  6846. #~ msgid "Blocked"
  6847. #~ msgstr "блокированный"
  6848. #~ msgctxt "@label:status"
  6849. #~ msgid "Can't start print"
  6850. #~ msgstr "Не удается начать печать"
  6851. #~ msgctxt "@action:button"
  6852. #~ msgid "Open Connect.."
  6853. #~ msgstr "Открыть соединение..."
  6854. #~ msgctxt "@info:title"
  6855. #~ msgid "Print Details"
  6856. #~ msgstr "Подробности печати"
  6857. #~ msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  6858. #~ msgid "To ensure that your {machine_name} is equipped with the latest features it is recommended to update the firmware regularly. This can be done on the {machine_name} (when connected to the network) or via USB."
  6859. #~ msgstr "Рекомендуется регулярно обновлять прошивку принтера {machine_name}. Это может сделано когда {machine_name} подключен к сети или к USB."
  6860. #~ msgctxt "@info:title"
  6861. #~ msgid "Layer View"
  6862. #~ msgstr "Просмотр слоёв"
  6863. #~ msgctxt "@menuitem"
  6864. #~ msgid "Browse plugins"
  6865. #~ msgstr "Просмотр плагинов"
  6866. #~ msgctxt "@info:title"
  6867. #~ msgid "Export Details"
  6868. #~ msgstr "Экспорт подробностей"
  6869. #~ msgctxt "@label"
  6870. #~ msgid ""
  6871. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  6872. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  6873. #~ " "
  6874. #~ msgstr ""
  6875. #~ "<p>Произошла неожиданная ошибка и мы не смогли её исправить!</p>\n"
  6876. #~ " <p>Пожалуйста, используйте информацию ниже для создания отчёта об ошибке на <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  6877. #~ msgctxt "@action:button"
  6878. #~ msgid "Open Web Page"
  6879. #~ msgstr "Открыть веб страницу"
  6880. #~ msgctxt "@action:button"
  6881. #~ msgid "Ok"
  6882. #~ msgstr "Ok"
  6883. #~ msgctxt "@label"
  6884. #~ msgid "This printer is not set up to host a group of connected Ultimaker 3 printers"
  6885. #~ msgstr "Данный принтер не настроен для управления группой подключенных принтеров Ultimaker 3"
  6886. #~ msgctxt "@label"
  6887. #~ msgid "This printer is the host for a group of %1 connected Ultimaker 3 printers"
  6888. #~ msgstr "Данный принтер управляет группой из {count} подключенных принтеров Ultimaker 3"
  6889. #~ msgctxt "@label"
  6890. #~ msgid "Completed on: "
  6891. #~ msgstr "Выполнено на:"
  6892. #~ msgctxt "@info:tooltip"
  6893. #~ msgid "Opens the print jobs page with your default web browser."
  6894. #~ msgstr "Открывает страницу с заданиями на печать в вашем браузере."
  6895. #~ msgctxt "@label"
  6896. #~ msgid "PRINTER GROUP"
  6897. #~ msgstr "ГРУППА ПРИНТЕРОВ"
  6898. #~ msgctxt "@action:warning"
  6899. #~ msgid "Loading a project will clear all models on the buildplate"
  6900. #~ msgstr "Загрузка проекта уберёт все модели со стола"
  6901. #~ msgctxt "@label"
  6902. #~ msgid ""
  6903. #~ " plugin contains a license.\n"
  6904. #~ "You need to accept this license to install this plugin.\n"
  6905. #~ "Do you agree with the terms below?"
  6906. #~ msgstr ""
  6907. #~ " плагин содержит лицензию.\n"
  6908. #~ "Вам требуется принять лицензию для установки данного плагина.\n"
  6909. #~ "Вы согласны с написанным ниже?"
  6910. #~ msgctxt "@label"
  6911. #~ msgid "00h 00min"
  6912. #~ msgstr "00ч 00мин"
  6913. #~ msgctxt "@tooltip"
  6914. #~ msgid "<b>Time information</b>"
  6915. #~ msgstr "<b>Информация о времени</b>"
  6916. #~ msgctxt "@description"
  6917. #~ msgid "Print time"
  6918. #~ msgstr "Время печати"
  6919. #~ msgctxt "@label"
  6920. #~ msgid "%1m / ~ %2g / ~ %4 %3"
  6921. #~ msgstr "%1м / ~ %2гр / ~ %4 %3"
  6922. #~ msgctxt "@label"
  6923. #~ msgid "%1m / ~ %2g"
  6924. #~ msgstr "%1м / ~ %2гр"
  6925. #~ msgctxt "@title:window"
  6926. #~ msgid "Cura"
  6927. #~ msgstr "Cura"
  6928. #~ msgctxt "@label"
  6929. #~ msgid "<a href='%1'>Check material compatibility</a>"
  6930. #~ msgstr "<a href='%1'>Проверить совместимость материала</a>"
  6931. #~ msgctxt "name"
  6932. #~ msgid "UM3 Network Connection (Cluster)"
  6933. #~ msgstr "Соединение с сетью UM3 (кластер)"
  6934. #~ msgctxt "description"
  6935. #~ msgid "Provides the Layer view."
  6936. #~ msgstr "Предоставляет послойный просмотр."
  6937. #~ msgctxt "name"
  6938. #~ msgid "Layer View"
  6939. #~ msgstr "Просмотр слоёв"
  6940. #~ msgctxt "@item:inlistbox"
  6941. #~ msgid "X-Ray"
  6942. #~ msgstr "Рентген"
  6943. #~ msgctxt "@label"
  6944. #~ msgid "Doodle3D"
  6945. #~ msgstr "Doodle3D"
  6946. #~ msgctxt "@info:whatsthis"
  6947. #~ msgid "Accepts G-Code and sends them over WiFi to a Doodle3D WiFi-Box."
  6948. #~ msgstr "Принимает G-Code и отправляет его через WiFi на Doodle3D WiFi-Box."
  6949. #~ msgctxt "@item:inmenu"
  6950. #~ msgid "Doodle3D printing"
  6951. #~ msgstr "Печать Doodle3D"
  6952. #~ msgctxt "@action:button"
  6953. #~ msgid "Print with Doodle3D"
  6954. #~ msgstr "Печать через Doodle3D"
  6955. #~ msgctxt "@info:tooltip"
  6956. #~ msgid "Print with "
  6957. #~ msgstr "Печать через "
  6958. #~ msgctxt "@title:menu"
  6959. #~ msgid "Doodle3D"
  6960. #~ msgstr "Doodle3D"
  6961. #~ msgctxt "@item:inlistbox"
  6962. #~ msgid "Enable Scan devices..."
  6963. #~ msgstr "Активировать сканеры..."
  6964. #~ msgctxt "@info:progress"
  6965. #~ msgid "Saving to Removable Drive <filename>{0}</filename>"
  6966. #~ msgstr "Сохранение на внешний носитель <filename>{0}</filename>"
  6967. #~ msgctxt "@info:status"
  6968. #~ msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  6969. #~ msgstr "Не могу сохранить <filename>{0}</filename>: <message>{1}</message>"
  6970. #~ msgctxt "@info:status"
  6971. #~ msgid "Please keep in mind, that you have to reopen your SolidWorks file manually! Reloading the model won't work!"
  6972. #~ msgstr "Запомните, пожалуйста, что вы должны вручную открыть заново файл SolidWorks файл! Перезагрузка моделей не поможет!"
  6973. #~ msgctxt "@item:inlistbox"
  6974. #~ msgid "Layers"
  6975. #~ msgstr "Слои"
  6976. #~ msgid "Browse plugins"
  6977. #~ msgstr "Просмотр плагинов"
  6978. #~ msgctxt "@item:inmenu"
  6979. #~ msgid "Solid"
  6980. #~ msgstr "Твёрдое тело"
  6981. #~ msgctxt "@label"
  6982. #~ msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  6983. #~ msgstr "Файл <filename>{0}</filename> уже существует. Вы желаете его перезаписать?"
  6984. #~ msgctxt "@info:status"
  6985. #~ msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  6986. #~ msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: <message>{1}</message>"
  6987. #~ msgctxt "@info:status"
  6988. #~ msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  6989. #~ msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: Плагин записи уведомил об ошибке."
  6990. #~ msgctxt "@info:status"
  6991. #~ msgid "Exported profile to <filename>{0}</filename>"
  6992. #~ msgstr "Экспортирование профиля в <filename>{0}</filename>"
  6993. #~ msgctxt "@info:status"
  6994. #~ msgid "Failed to import profile from <filename>{0}</filename>: <message>{1}</message>"
  6995. #~ msgstr "Невозможно импортировать профиль из <filename>{0}</filename>: <message>{1}</message>"
  6996. #~ msgctxt "@title:window"
  6997. #~ msgid "Doodle3D Settings"
  6998. #~ msgstr "Настройки Doodle3D"
  6999. #~ msgctxt "@title:window"
  7000. #~ msgid "Print to: %1"
  7001. #~ msgstr "Печатать на: %1"
  7002. #~ msgctxt "@label"
  7003. #~ msgid "Extruder Temperature: %1/%2°C"
  7004. #~ msgstr "Температура экструдера: %1/%2°C"
  7005. #~ msgctxt "@label"
  7006. #~ msgid "Bed Temperature: %1/%2°C"
  7007. #~ msgstr "Температура стола: %1/%2°C"
  7008. #~ msgctxt "@label"
  7009. #~ msgid "%1"
  7010. #~ msgstr "%1"
  7011. #~ msgctxt "@label"
  7012. #~ msgid "View Mode: Layers"
  7013. #~ msgstr "Режим просмотра: Слои"
  7014. #~ msgctxt "@info:status"
  7015. #~ msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  7016. #~ msgstr "Не могу импортировать материал <filename>%1</filename>: <message>%2</message>"
  7017. #~ msgctxt "@info:status"
  7018. #~ msgid "Successfully imported material <filename>%1</filename>"
  7019. #~ msgstr "Успешно импортированный материал <filename>%1</filename>"
  7020. #~ msgctxt "@info:status"
  7021. #~ msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  7022. #~ msgstr "Не могу экспортировать материал <filename>%1</filename>: <message>%2</message>"
  7023. #~ msgctxt "@info:status"
  7024. #~ msgid "Successfully exported material to <filename>%1</filename>"
  7025. #~ msgstr "Материал успешно экспортирован в <filename>%1</filename>"
  7026. #~ msgctxt "@label"
  7027. #~ msgid "%1 m / ~ %2 g / ~ %4 %3"
  7028. #~ msgstr "%1 м / ~ %2 гр / ~ %4 %3"
  7029. #~ msgctxt "@label"
  7030. #~ msgid "%1 m / ~ %2 g"
  7031. #~ msgstr "%1 м / ~ %2 г"
  7032. #~ msgctxt "@label"
  7033. #~ msgid "Hotend"
  7034. #~ msgstr "Голова"
  7035. #~ msgctxt "@action:button"
  7036. #~ msgid "View Mode"
  7037. #~ msgstr "Режим просмотра"
  7038. #~ msgctxt "@title:tab"
  7039. #~ msgid "Print"
  7040. #~ msgstr "Печать"
  7041. #~ msgctxt "@label"
  7042. #~ msgid "0%"
  7043. #~ msgstr "0%"
  7044. #~ msgctxt "@label"
  7045. #~ msgid "Empty infill will leave your model hollow with low strength."
  7046. #~ msgstr "Пустое заполнение сделает вашу модель полой и хрупкой."
  7047. #~ msgctxt "@label"
  7048. #~ msgid "20%"
  7049. #~ msgstr "20%"
  7050. #~ msgctxt "@label"
  7051. #~ msgid "Light (20%) infill will give your model an average strength."
  7052. #~ msgstr "Слабое (20%) заполнение сделает вашу модель менее хрупкой."
  7053. #~ msgctxt "@label"
  7054. #~ msgid "50%"
  7055. #~ msgstr "50%"
  7056. #~ msgctxt "@label"
  7057. #~ msgid "Dense (50%) infill will give your model an above average strength."
  7058. #~ msgstr "Плотное (50%) заполнение придаст вашей модели прочность выше среднего."
  7059. #~ msgctxt "@label"
  7060. #~ msgid "100%"
  7061. #~ msgstr "100%"
  7062. #~ msgctxt "@label"
  7063. #~ msgid "Solid (100%) infill will make your model completely solid."
  7064. #~ msgstr "Сплошное (100%) заполнение сделает вашу модель крепкой."
  7065. #~ msgctxt "@label"
  7066. #~ msgid "Gradual"
  7067. #~ msgstr "Постепенное"
  7068. #~ msgctxt "description"
  7069. #~ msgid "Provides support for writing X3G files"
  7070. #~ msgstr "Предоставляет возможность записи X3G файлов"
  7071. #~ msgctxt "name"
  7072. #~ msgid "X3G Writer"
  7073. #~ msgstr "Запись X3G"
  7074. #~ msgctxt "@label"
  7075. #~ msgid "Machine Settings action"
  7076. #~ msgstr "Параметры принтера действие"
  7077. #~ msgctxt "@info:whatsthis"
  7078. #~ msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc)"
  7079. #~ msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)"
  7080. #~ msgctxt "@label"
  7081. #~ msgid "X-Ray View"
  7082. #~ msgstr "Просмотр в рентгене"
  7083. #~ msgctxt "@info:whatsthis"
  7084. #~ msgid "Provides the X-Ray view."
  7085. #~ msgstr "Предоставляет рентгеновский вид."
  7086. #~ msgctxt "@label"
  7087. #~ msgid "X3D Reader"
  7088. #~ msgstr "Чтение X3D"
  7089. #~ msgctxt "@info:whatsthis"
  7090. #~ msgid "Provides support for reading X3D files."
  7091. #~ msgstr "Предоставляет поддержку для чтения X3D файлов."
  7092. #~ msgctxt "@label"
  7093. #~ msgid "GCode Writer"
  7094. #~ msgstr "Запись GCode"
  7095. #~ msgctxt "@info:whatsthis"
  7096. #~ msgid "Writes GCode to a file."
  7097. #~ msgstr "Записывает GCode в файл."
  7098. #~ msgctxt "@action:button Preceded by 'Ready to'."
  7099. #~ msgid "Print with Doodle3D"
  7100. #~ msgstr "Печать через Doodle3D"
  7101. #~ msgctxt "@info:whatsthis"
  7102. #~ msgid "Shows changes since latest checked version."
  7103. #~ msgstr "Показывает изменения со времени последней отмеченной версии."
  7104. #~ msgctxt "@label"
  7105. #~ msgid "Profile flatener"
  7106. #~ msgstr "Нормализация профиля"
  7107. #~ msgctxt "@info:whatsthis"
  7108. #~ msgid "Create a flattend quality changes profile."
  7109. #~ msgstr "Создаёт профиль со стандартными настройками."
  7110. #~ msgctxt "@label"
  7111. #~ msgid "USB printing"
  7112. #~ msgstr "Печать через USB"
  7113. #~ msgctxt "@info:whatsthis"
  7114. #~ msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  7115. #~ msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку."
  7116. #~ msgctxt "X3G Writer Plugin Description"
  7117. #~ msgid "Writes X3G to a file"
  7118. #~ msgstr "Записывает X3G в файл"
  7119. #~ msgctxt "@label"
  7120. #~ msgid "Removable Drive Output Device Plugin"
  7121. #~ msgstr "Плагин для работы с внешним носителем"
  7122. #~ msgctxt "@info:whatsthis"
  7123. #~ msgid "Provides removable drive hotplugging and writing support."
  7124. #~ msgstr "Предоставляет поддержку для подключения и записи на внешний носитель."
  7125. #~ msgctxt "@info:whatsthis"
  7126. #~ msgid "Manages network connections to Ultimaker 3 printers"
  7127. #~ msgstr "Управляет сетевыми соединениями с принтерами Ultimaker 3"
  7128. #~ msgctxt "@label"
  7129. #~ msgid "Different print core (Cura: {0}, Printer: {1}) selected for extruder {2}"
  7130. #~ msgstr "Разные PrintCore (Cura: {0}, Принтер: {1}) выбраны для экструдера {2}"
  7131. #~ msgctxt "@label"
  7132. #~ msgid "Print core {0} is not properly calibrated. XY calibration needs to be performed on the printer."
  7133. #~ msgstr "PrintCore {0} не откалибровано. Необходимо выполнить XY калибровку для принтера."
  7134. #~ msgctxt "@label"
  7135. #~ msgid "The print cores and/or materials on your printer differ from those within your current project. For the best result, always slice for the print cores and materials that are inserted in your printer."
  7136. #~ msgstr "Модуль PrintCore и/или материал в вашем принтере отличается от тех, что вы используете в текущем проекте. Для наилучшего результата всегда указывайте правильный модуль PrintCore и материалы, которые вставлены в ваш принтер."
  7137. #~ msgctxt "@label"
  7138. #~ msgid "Post Processing"
  7139. #~ msgstr "Пост обработка"
  7140. #~ msgctxt "Description of plugin"
  7141. #~ msgid "Extension that allows for user created scripts for post processing"
  7142. #~ msgstr "Расширения, которые позволяют пользователю создавать скрипты для пост обработки"
  7143. #~ msgctxt "@label"
  7144. #~ msgid "Auto Save"
  7145. #~ msgstr "Автосохранение"
  7146. #~ msgctxt "@info:whatsthis"
  7147. #~ msgid "Automatically saves Preferences, Machines and Profiles after changes."
  7148. #~ msgstr "Автоматически сохраняет настройки, принтеры и профили после внесения изменений."
  7149. #~ msgctxt "@label"
  7150. #~ msgid "Slice info"
  7151. #~ msgstr "Информация о нарезке модели"
  7152. #~ msgctxt "@info:whatsthis"
  7153. #~ msgid "Submits anonymous slice info. Can be disabled through preferences."
  7154. #~ msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки."
  7155. #~ msgctxt "@info"
  7156. #~ msgid "Cura collects anonymised slicing statistics. You can disable this in preferences"
  7157. #~ msgstr "Cura собирает анонимную статистику о нарезке модели. Вы можете отключить это в настройках"
  7158. #~ msgctxt "@label"
  7159. #~ msgid "Material Profiles"
  7160. #~ msgstr "Профили материалов"
  7161. #~ msgctxt "@info:whatsthis"
  7162. #~ msgid "Provides capabilities to read and write XML-based material profiles."
  7163. #~ msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML."
  7164. #~ msgctxt "@label"
  7165. #~ msgid "Legacy Cura Profile Reader"
  7166. #~ msgstr "Чтение устаревших профилей Cura"
  7167. #~ msgctxt "@info:whatsthis"
  7168. #~ msgid "Provides support for importing profiles from legacy Cura versions."
  7169. #~ msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura."
  7170. #~ msgctxt "@label"
  7171. #~ msgid "GCode Profile Reader"
  7172. #~ msgstr "Чтение профиля из GCode"
  7173. #~ msgctxt "@info:whatsthis"
  7174. #~ msgid "Provides support for importing profiles from g-code files."
  7175. #~ msgstr "Предоставляет поддержку для импортирования профилей из GCode файлов."
  7176. #~ msgctxt "@label"
  7177. #~ msgid "Layer View"
  7178. #~ msgstr "Просмотр слоёв"
  7179. #~ msgctxt "@info:whatsthis"
  7180. #~ msgid "Provides the Layer view."
  7181. #~ msgstr "Предоставляет послойный просмотр."
  7182. #~ msgctxt "@label"
  7183. #~ msgid "Version Upgrade 2.5 to 2.6"
  7184. #~ msgstr "Обновление версии с 2.5 до 2.6"
  7185. #~ msgctxt "@info:whatsthis"
  7186. #~ msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  7187. #~ msgstr "Обновляет конфигурацию Cura 2.5 до Cura 2.6."
  7188. #~ msgctxt "@label"
  7189. #~ msgid "Version Upgrade 2.1 to 2.2"
  7190. #~ msgstr "Обновление версии 2.1 до 2.2"
  7191. #~ msgctxt "@info:whatsthis"
  7192. #~ msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  7193. #~ msgstr "Обновляет настройки Cura 2.1 до Cura 2.2."
  7194. #~ msgctxt "@label"
  7195. #~ msgid "Version Upgrade 2.2 to 2.4"
  7196. #~ msgstr "Обновление версии 2.2 до 2.4"
  7197. #~ msgctxt "@info:whatsthis"
  7198. #~ msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  7199. #~ msgstr "Обновляет конфигурации Cura 2.2 до Cura 2.4."
  7200. #~ msgctxt "@label"
  7201. #~ msgid "Image Reader"
  7202. #~ msgstr "Чтение изображений"
  7203. #~ msgctxt "@info:whatsthis"
  7204. #~ msgid "Enables ability to generate printable geometry from 2D image files."
  7205. #~ msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений."
  7206. #~ msgctxt "@label"
  7207. #~ msgid "CuraEngine Backend"
  7208. #~ msgstr "Движок CuraEngine"
  7209. #~ msgctxt "@info:whatsthis"
  7210. #~ msgid "Provides the link to the CuraEngine slicing backend."
  7211. #~ msgstr "Предоставляет интерфейс к движку CuraEngine."
  7212. #~ msgctxt "@label"
  7213. #~ msgid "Per Model Settings Tool"
  7214. #~ msgstr "Инструмент для настройки каждой модели"
  7215. #~ msgctxt "@info:whatsthis"
  7216. #~ msgid "Provides the Per Model Settings."
  7217. #~ msgstr "Предоставляет параметры для каждой модели."
  7218. #~ msgctxt "@label"
  7219. #~ msgid "3MF Reader"
  7220. #~ msgstr "Чтение 3MF"
  7221. #~ msgctxt "@info:whatsthis"
  7222. #~ msgid "Provides support for reading 3MF files."
  7223. #~ msgstr "Предоставляет поддержку для чтения 3MF файлов."
  7224. #~ msgctxt "@label"
  7225. #~ msgid "Solid View"
  7226. #~ msgstr "Обзор"
  7227. #~ msgctxt "@info:whatsthis"
  7228. #~ msgid "Provides a normal solid mesh view."
  7229. #~ msgstr "Предоставляет просмотр твёрдого тела."
  7230. #~ msgctxt "@label"
  7231. #~ msgid "G-code Reader"
  7232. #~ msgstr "Чтение G-code"
  7233. #~ msgctxt "@info:whatsthis"
  7234. #~ msgid "Allows loading and displaying G-code files."
  7235. #~ msgstr "Позволяет загружать и отображать файлы G-code."
  7236. #~ msgctxt "@label"
  7237. #~ msgid "Cura Profile Writer"
  7238. #~ msgstr "Запись профиля Cura"
  7239. #~ msgctxt "@info:whatsthis"
  7240. #~ msgid "Provides support for exporting Cura profiles."
  7241. #~ msgstr "Предоставляет поддержку для экспорта профилей Cura."
  7242. #~ msgctxt "@label"
  7243. #~ msgid "3MF Writer"
  7244. #~ msgstr "Запись 3MF"
  7245. #~ msgctxt "@info:whatsthis"
  7246. #~ msgid "Provides support for writing 3MF files."
  7247. #~ msgstr "Предоставляет возможность записи 3MF файлов."
  7248. #~ msgctxt "@label"
  7249. #~ msgid "Ultimaker machine actions"
  7250. #~ msgstr "Дополнительные возможности Ultimaker"
  7251. #~ msgctxt "@info:whatsthis"
  7252. #~ msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc)"
  7253. #~ msgstr "Предоставляет дополнительные возможности для принтеров Ultimaker (такие как мастер выравнивания стола, выбора обновления и так далее)"
  7254. #~ msgctxt "@label"
  7255. #~ msgid "Cura Profile Reader"
  7256. #~ msgstr "Чтение профиля Cura"
  7257. #~ msgctxt "@info:whatsthis"
  7258. #~ msgid "Provides support for importing Cura profiles."
  7259. #~ msgstr "Предоставляет поддержку для импорта профилей Cura."
  7260. #~ msgctxt "@info"
  7261. #~ msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  7262. #~ msgstr "%(width).1f x %(depth).1f x %(height).1f мм"
  7263. #~ msgctxt "@label"
  7264. #~ msgid "Build Plate Shape"
  7265. #~ msgstr "Форма стола"
  7266. #~ msgctxt "@option:check"
  7267. #~ msgid "Machine Center is Zero"
  7268. #~ msgstr "Ноль в центре стола"
  7269. #~ msgctxt "@option:check"
  7270. #~ msgid "Heated Bed"
  7271. #~ msgstr "Нагреваемый стол"
  7272. #~ msgctxt "@label"
  7273. #~ msgid "GCode Flavor"
  7274. #~ msgstr "Вариант G-кода"
  7275. #~ msgctxt "@label"
  7276. #~ msgid "Material Diameter"
  7277. #~ msgstr "Диаметр материала"
  7278. #~ msgctxt "@label"
  7279. #~ msgid "If your printer is not listed, read the <a href='%1'>network-printing troubleshooting guide</a>"
  7280. #~ msgstr "Если ваш принтер отсутствует в списке, обратитесь к <a href='%1'>руководству по решению проблем с сетевой печатью</a>"
  7281. #~ msgctxt "@item:inlistbox"
  7282. #~ msgid "Ultimaker"
  7283. #~ msgstr "Ultimaker"
  7284. #~ msgctxt "@label"
  7285. #~ msgid "Support library for scientific computing "
  7286. #~ msgstr "Вспомогательная библиотека для научных вычислений "
  7287. #~ msgctxt "@tooltip"
  7288. #~ msgid "<b>Print Setup</b><br/><br/>Edit or review the settings for the active print job."
  7289. #~ msgstr "<b>Настройка печати</b><br/><br/>Отредактируйте или просмотрите параметры для активной задачи на печать."
  7290. #~ msgctxt "@tooltip"
  7291. #~ msgid "<b>Print Monitor</b><br/><br/>Monitor the state of the connected printer and the print job in progress."
  7292. #~ msgstr "<b>Монитор печати</b><br/><br/>Отслеживайте состояние подключенного принтера и прогресс задачи на печать."
  7293. #~ msgctxt "@title:menuitem %1 is the value from the printer"
  7294. #~ msgid "Automatic: %1"
  7295. #~ msgstr "Автоматически: %1"
  7296. #~ msgctxt "@label:PrintjobStatus"
  7297. #~ msgid "Please load a 3d model"
  7298. #~ msgstr "Пожалуйста, загрузите 3D модель"
  7299. #~ msgctxt "@label"
  7300. #~ msgid "Print Selected Model with %1"
  7301. #~ msgid_plural "Print Selected Models With %1"
  7302. #~ msgstr[0] "Распечатать выбранную модель на %1"
  7303. #~ msgstr[1] "Распечатать выбранные модели на %1"
  7304. #~ msgstr[2] "Распечатать выбранные моделей на %1"
  7305. #~ msgctxt "@info:status"
  7306. #~ msgid "Unable to start a new print job. No PrinterCore loaded in slot {0}"
  7307. #~ msgstr "Невозможно запустить новую задачу на печать. PrinterCore не был загружен в слот {0}"
  7308. #~ msgctxt "@label"
  7309. #~ msgid "Version Upgrade 2.4 to 2.5"
  7310. #~ msgstr "Обновление версии 2.4 до 2.5"
  7311. #~ msgctxt "@info:whatsthis"
  7312. #~ msgid "Upgrades configurations from Cura 2.4 to Cura 2.5."
  7313. #~ msgstr "Обновление конфигурации Cura 2.4 до Cura 2.5."
  7314. #~ msgctxt "@info:status"
  7315. #~ msgid "Unable to find a quality profile for this combination. Default settings will be used instead."
  7316. #~ msgstr "Невозможно найти профиль качества для этой комбинации. Будут использованы параметры по умолчанию."
  7317. #~ msgctxt "@title:window"
  7318. #~ msgid "Oops!"
  7319. #~ msgstr "Ой!"
  7320. #~ msgctxt "@label"
  7321. #~ msgid ""
  7322. #~ "<p>A fatal exception has occurred that we could not recover from!</p>\n"
  7323. #~ " <p>We hope this picture of a kitten helps you recover from the shock.</p>\n"
  7324. #~ " <p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7325. #~ " "
  7326. #~ msgstr ""
  7327. #~ "<p>Произошла неожиданная ошибка и мы не смогли её обработать!</p>\n"
  7328. #~ " <p>Мы надеемся, что картинка с котёнком поможет вам оправиться от шока.</p>\n"
  7329. #~ " <p>Пожалуйста, используйте информацию ниже для создания отчёта об ошибке на <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>\n"
  7330. #~ " "
  7331. #~ msgctxt "@label"
  7332. #~ msgid "Please enter the correct settings for your printer below:"
  7333. #~ msgstr "Пожалуйста, введите правильные параметры для вашего принтера:"
  7334. #~ msgctxt "@label"
  7335. #~ msgid "Extruder %1"
  7336. #~ msgstr "Экструдер %1"
  7337. #~ msgctxt "@label Followed by extruder selection drop-down."
  7338. #~ msgid "Print model with"
  7339. #~ msgstr "Печатать модель экструдером"
  7340. #~ msgctxt "@label"
  7341. #~ msgid "You will need to restart the application for language changes to have effect."
  7342. #~ msgstr "Вам потребуется перезапустить приложение для переключения интерфейса на выбранный язык."
  7343. #~ msgctxt "@info:tooltip"
  7344. #~ msgid "Moves the camera so the model is in the center of the view when an model is selected"
  7345. #~ msgstr "Перемещать камеру так, чтобы модель при выборе помещалась в центр экрана"
  7346. #~ msgctxt "@action:inmenu menubar:edit"
  7347. #~ msgid "Delete &Selection"
  7348. #~ msgstr "Удалить выделенное"
  7349. #~ msgctxt "@action:inmenu menubar:file"
  7350. #~ msgid "&Open File..."
  7351. #~ msgstr "Открыть файл..."
  7352. #~ msgctxt "@action:inmenu menubar:file"
  7353. #~ msgid "&Open Project..."
  7354. #~ msgstr "Открыть проект..."
  7355. #~ msgctxt "@title:window"
  7356. #~ msgid "Multiply Model"
  7357. #~ msgstr "Дублировать модель"
  7358. #~ msgctxt "@title:menu menubar:file"
  7359. #~ msgid "Save &All"
  7360. #~ msgstr "Сохранить всё"
  7361. #~ msgctxt "@title:window"
  7362. #~ msgid "Open file"
  7363. #~ msgstr "Открыть файл"
  7364. #~ msgctxt "@title:window"
  7365. #~ msgid "Open workspace"
  7366. #~ msgstr "Открыть рабочее пространство"
  7367. #~ msgctxt "@label"
  7368. #~ msgid "Hollow"
  7369. #~ msgstr "Пустота"
  7370. #~ msgctxt "@label"
  7371. #~ msgid "No (0%) infill will leave your model hollow at the cost of low strength"
  7372. #~ msgstr "Отсутствие (0%) заполнения сделает вашу модель полой и минимально прочной"
  7373. #~ msgctxt "@label"
  7374. #~ msgid "Light"
  7375. #~ msgstr "Лёгкое"
  7376. #~ msgctxt "@label"
  7377. #~ msgid "Light (20%) infill will give your model an average strength"
  7378. #~ msgstr "Лёгкое (20%) заполнение придаст вашей модели среднюю прочность"
  7379. #~ msgctxt "@label"
  7380. #~ msgid "Dense"
  7381. #~ msgstr "Плотное"
  7382. #~ msgctxt "@label"
  7383. #~ msgid "Dense (50%) infill will give your model an above average strength"
  7384. #~ msgstr "Плотное (50%) заполнение придаст вашей модели прочность выше среднего"
  7385. #~ msgctxt "@label"
  7386. #~ msgid "Solid"
  7387. #~ msgstr "Твёрдое"
  7388. #~ msgctxt "@label"
  7389. #~ msgid "Solid (100%) infill will make your model completely solid"
  7390. #~ msgstr "Твёрдое (100%) заполнение сделает вашу модель полностью твёрдой."
  7391. #~ msgctxt "@label"
  7392. #~ msgid "Enable Support"
  7393. #~ msgstr "Разрешить поддержки"
  7394. #~ msgctxt "@label"
  7395. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  7396. #~ msgstr "Разрешить печать поддержек. Такие структуры поддерживают части моделей со значительными нависаниями."
  7397. #~ msgctxt "@label"
  7398. #~ msgid "Need help improving your prints? Read the <a href='%1'>Ultimaker Troubleshooting Guides</a>"
  7399. #~ msgstr "Нужна помощь с улучшением качества печати? Прочитайте <a href='%1'>Руководства Ultimaker по решению проблем</a>"
  7400. #~ msgctxt "@info:status"
  7401. #~ msgid "Connected over the network to {0}. Please approve the access request on the printer."
  7402. #~ msgstr "Подключен через сеть к {0}. Пожалуйста, подтвердите запрос доступа к принтеру."
  7403. #~ msgctxt "@info:status"
  7404. #~ msgid "Connected over the network to {0}."
  7405. #~ msgstr "Подключен через сеть к {0}."
  7406. #~ msgctxt "@info:status"
  7407. #~ msgid "Connected over the network to {0}. No access to control the printer."
  7408. #~ msgstr "Подключен через сеть к {0}. Нет доступа к управлению принтером."
  7409. #~ msgctxt "@info:status"
  7410. #~ msgid "Unable to start a new print job because the printer is busy. Please check the printer."
  7411. #~ msgstr "Невозможно запустить новую задачу на печать, так как принтер занят. Пожалуйста, проверьте принтер."
  7412. #~ msgctxt "@label"
  7413. #~ msgid "You made changes to the following setting(s)/override(s):"
  7414. #~ msgstr "Вы изменили следующие настройки:"
  7415. #~ msgctxt "@window:title"
  7416. #~ msgid "Switched profiles"
  7417. #~ msgstr "Переключены профили"
  7418. #~ msgctxt "@label"
  7419. #~ msgid "Do you want to transfer your %d changed setting(s)/override(s) to this profile?"
  7420. #~ msgstr "Желаете перенести ваши %d изменений настроек в этот профиль?"
  7421. #~ msgctxt "@label"
  7422. #~ msgid "If you transfer your settings they will override settings in the profile. If you don't transfer these settings, they will be lost."
  7423. #~ msgstr "При переносе ваших настроек они переопределять настройки в данном профиле. При отказе от переноса, ваши изменения будут потеряны."
  7424. #~ msgctxt "@label"
  7425. #~ msgid "Cost per Meter (Approx.)"
  7426. #~ msgstr "Стоимость метра (приблизительно)"
  7427. #~ msgctxt "@label"
  7428. #~ msgid "%1/m"
  7429. #~ msgstr "%1/м"
  7430. #~ msgctxt "@info:tooltip"
  7431. #~ msgid "Display 5 top layers in layer view or only the top-most layer. Rendering 5 layers takes longer, but may show more information."
  7432. #~ msgstr "Показывать пять верхних слов в режиме послойного просмотра или только самый верхний слой. Отображение 5 слоёв занимает больше времени, но предоставляет больше информации."
  7433. #~ msgctxt "@action:button"
  7434. #~ msgid "Display five top layers in layer view"
  7435. #~ msgstr "Показать пять верхних слоёв в режиме послойного просмотра"
  7436. #~ msgctxt "@info:tooltip"
  7437. #~ msgid "Should only the top layers be displayed in layerview?"
  7438. #~ msgstr "Следует ли отображать только верхние слои в режиме послойного просмотра?"
  7439. #~ msgctxt "@option:check"
  7440. #~ msgid "Only display top layer(s) in layer view"
  7441. #~ msgstr "Показывать только верхние слои в режиме послойного просмотра"
  7442. #~ msgctxt "@label"
  7443. #~ msgid "Opening files"
  7444. #~ msgstr "Открытие файлов"
  7445. #~ msgctxt "@label"
  7446. #~ msgid "Printer Monitor"
  7447. #~ msgstr "Монитор принтера"
  7448. #~ msgctxt "@label"
  7449. #~ msgid "Temperatures"
  7450. #~ msgstr "Температуры"
  7451. #~ msgctxt "@label:PrintjobStatus"
  7452. #~ msgid "Preparing to slice..."
  7453. #~ msgstr "Подготовка к нарезке на слои..."
  7454. #~ msgctxt "@label"
  7455. #~ msgid "<p>A fatal exception has occurred that we could not recover from!</p><p>Please use the information below to post a bug report at <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  7456. #~ msgstr "<p>Произошла неожиданная ошибка и мы не смогли его обработать!</p><p>Пожалуйста, используйте информацию ниже для создания отчёта об ошибке на <a href=\"http://github.com/Ultimaker/Cura/issues\">http://github.com/Ultimaker/Cura/issues</a></p>"
  7457. #~ msgctxt "@info:status"
  7458. #~ msgid "Profile {0} has an unknown file type."
  7459. #~ msgstr "Профиль {0} имеет неизвестный тип файла."
  7460. #~ msgctxt "@info:status"
  7461. #~ msgid "The selected material is imcompatible with the selected machine or configuration."
  7462. #~ msgstr "Выбранный материал несовместим с указанным принтером или конфигурацией."
  7463. #~ msgctxt "@label"
  7464. #~ msgid "You made changes to the following setting(s):"
  7465. #~ msgstr "Вы сделали изменения следующих настроек:"
  7466. #~ msgctxt "@label"
  7467. #~ msgid "Do you want to transfer your changed settings to this profile?"
  7468. #~ msgstr "Вы желаете перенести свои изменения параметров в этот профиль?"
  7469. #~ msgctxt "@label"
  7470. #~ msgid "If you transfer your settings they will override settings in the profile."
  7471. #~ msgstr "Если вы перенесёте свои параметры, они перезапишут настройки профиля."
  7472. #~ msgctxt "@info:status"
  7473. #~ msgid "Unable to slice with the current settings. Please check your settings for errors."
  7474. #~ msgstr "Невозможно нарезать модель при текущих параметрах. Пожалуйста, проверьте значения своих параметров на присутствие ошибок."
  7475. #~ msgctxt "@action:button"
  7476. #~ msgid "Save to Removable Drive"
  7477. #~ msgstr "Сохранить на внешний носитель"
  7478. #~ msgctxt "@action:button"
  7479. #~ msgid "Print via USB"
  7480. #~ msgstr "Печатать через USB"
  7481. #~ msgctxt "@info:credit"
  7482. #~ msgid "Cura has been developed by Ultimaker B.V. in cooperation with the community."
  7483. #~ msgstr "Cura была разработана компанией Ultimaker B.V. в кооперации с сообществом."
  7484. #~ msgctxt "@action:inmenu menubar:profile"
  7485. #~ msgid "&Update profile with current settings"
  7486. #~ msgstr "Записать текущие параметры в профиль"
  7487. #~ msgctxt "@action:inmenu menubar:profile"
  7488. #~ msgid "&Discard current settings"
  7489. #~ msgstr "Сбросить текущие параметры"
  7490. #~ msgctxt "@action:inmenu menubar:profile"
  7491. #~ msgid "&Create profile from current settings..."
  7492. #~ msgstr "Создать профиль из текущих параметров..."
  7493. #~ msgctxt "@action:inmenu"
  7494. #~ msgid "&Duplicate Model"
  7495. #~ msgstr "Дублировать модель"
  7496. #~ msgctxt "@action:button"
  7497. #~ msgid "Update profile with current settings"
  7498. #~ msgstr "Внести текущие параметры в профиль"
  7499. #~ msgctxt "@action:button"
  7500. #~ msgid "Discard current settings"
  7501. #~ msgstr "Сбросить текущие параметры"
  7502. #~ msgctxt "@action:label"
  7503. #~ msgid "This profile uses the defaults specified by the printer, so it has no settings in the list below."
  7504. #~ msgstr "Данный профиль использует параметры принтера по умолчанию, то есть у него нет параметров из списка ниже."
  7505. #~ msgctxt "@title:tab"
  7506. #~ msgid "Simple"
  7507. #~ msgstr "Простая"
  7508. #~ msgctxt "@title:tab"
  7509. #~ msgid "Advanced"
  7510. #~ msgstr "Продвинутая"
  7511. #~ msgctxt "@label:listbox"
  7512. #~ msgid "Printer:"
  7513. #~ msgstr "Принтер:"
  7514. #~ msgctxt "@tooltip"
  7515. #~ msgid ""
  7516. #~ "Some setting values are different from the values stored in the profile.\n"
  7517. #~ "\n"
  7518. #~ "Click to open the profile manager."
  7519. #~ msgstr ""
  7520. #~ "Значения некоторых параметров отличаются от значений в профиле.\n"
  7521. #~ "\n"
  7522. #~ "Щёлкните, открыть менеджер профилей."
  7523. #~ msgctxt "@label"
  7524. #~ msgid "Infill:"
  7525. #~ msgstr "Заполнение:"
  7526. #~ msgctxt "@label"
  7527. #~ msgid "Helper Parts:"
  7528. #~ msgstr "Помощники:"
  7529. #~ msgctxt "@option:check"
  7530. #~ msgid "Print Build Plate Adhesion"
  7531. #~ msgstr "Прилипание к столу"
  7532. #~ msgctxt "@option:check"
  7533. #~ msgid "Print Support Structure"
  7534. #~ msgstr "Печать структуры поддержек"
  7535. #~ msgctxt "@label"
  7536. #~ msgid "Enable printing support structures. This will build up supporting structures below the model to prevent the model from sagging or printing in mid air."
  7537. #~ msgstr "Разрешает печать поддержек. Это позволяет строить поддерживающие структуры под моделью, предотвращая её от провисания или печати в воздухе."
  7538. #~ msgctxt "@label"
  7539. #~ msgid "Don't print support"
  7540. #~ msgstr "Не печатать поддержки"
  7541. #~ msgctxt "@label"
  7542. #~ msgid "Print support using %1"
  7543. #~ msgstr "Печать поддержек с %1"
  7544. #~ msgctxt "@info:status"
  7545. #~ msgid "Successfully imported profiles {0}"
  7546. #~ msgstr "Успешно импортированы профили {0}"
  7547. #~ msgctxt "@label"
  7548. #~ msgid "Scripts"
  7549. #~ msgstr "Скрипты"
  7550. #~ msgctxt "@label"
  7551. #~ msgid "Active Scripts"
  7552. #~ msgstr "Активные скрипты"
  7553. #~ msgctxt "@label"
  7554. #~ msgid "Done"
  7555. #~ msgstr "Выполнено"
  7556. #~ msgctxt "@item:inlistbox"
  7557. #~ msgid "English"
  7558. #~ msgstr "Английский"
  7559. #~ msgctxt "@item:inlistbox"
  7560. #~ msgid "Finnish"
  7561. #~ msgstr "Финский"
  7562. #~ msgctxt "@item:inlistbox"
  7563. #~ msgid "French"
  7564. #~ msgstr "Французский"
  7565. #~ msgctxt "@item:inlistbox"
  7566. #~ msgid "German"
  7567. #~ msgstr "Немецкий"
  7568. #~ msgctxt "@item:inlistbox"
  7569. #~ msgid "Italian"
  7570. #~ msgstr "Итальянский"
  7571. #~ msgctxt "@item:inlistbox"
  7572. #~ msgid "Dutch"
  7573. #~ msgstr "Датский"
  7574. #~ msgctxt "@item:inlistbox"
  7575. #~ msgid "Spanish"
  7576. #~ msgstr "Испанский"
  7577. #~ msgctxt "@title:menu"
  7578. #~ msgid "Firmware"
  7579. #~ msgstr "Прошивка"
  7580. #~ msgctxt "@title:window"
  7581. #~ msgid "Print with USB"
  7582. #~ msgstr "Печать через USB"
  7583. #~ msgctxt "@label"
  7584. #~ msgid "Extruder Temperature %1"
  7585. #~ msgstr "Температура экструдера %1"
  7586. #~ msgctxt "@action:button"
  7587. #~ msgid "Add Setting"
  7588. #~ msgstr "Добавить настройку"
  7589. #~ msgctxt "@title"
  7590. #~ msgid "Add Printer"
  7591. #~ msgstr "Добавление принтера"
  7592. #~ msgctxt "@label"
  7593. #~ msgid "0.0 m"
  7594. #~ msgstr "0.0 м"
  7595. #~ msgctxt "@label"
  7596. #~ msgid "%1 m"
  7597. #~ msgstr "%1 м"
  7598. #~ msgctxt "@label:listbox"
  7599. #~ msgid "Setup"
  7600. #~ msgstr "Настройка"
  7601. #~ msgctxt "@action:inmenu menubar:profile"
  7602. #~ msgid "&Add Profile..."
  7603. #~ msgstr "Добавить профиль..."
  7604. #~ msgctxt "@title:menu menubar:toplevel"
  7605. #~ msgid "P&rofile"
  7606. #~ msgstr "Профиль"
  7607. #~ msgctxt "@title:tab"
  7608. #~ msgid "View"
  7609. #~ msgstr "Вид"
  7610. #~ msgctxt "@option:check"
  7611. #~ msgid "Generate Brim"
  7612. #~ msgstr "Генерировать кайму"
  7613. #~ msgctxt "@title:window"
  7614. #~ msgid "View"
  7615. #~ msgstr "Просмотр"
  7616. #~ msgctxt "@label:listbox"
  7617. #~ msgid "Print Job"
  7618. #~ msgstr "Задание на печать"
  7619. #~ msgctxt "@action:button"
  7620. #~ msgid "Skip Printer Check"
  7621. #~ msgstr "Пропустить проверку принтера"
  7622. #~ msgctxt "@info:status"
  7623. #~ msgid "Incomplete"
  7624. #~ msgstr "Не выполнено"
  7625. #~ msgctxt "@label"
  7626. #~ msgid "To assist you in having better default settings for your Ultimaker. Cura would like to know which upgrades you have in your machine:"
  7627. #~ msgstr "Для того, чтобы установить лучшие настройки по умолчанию для вашего Ultimaker, Cura должна знать какие изменения вы внесли в свой принтер:"
  7628. #~ msgctxt "@option:check"
  7629. #~ msgid "Olsson Block"
  7630. #~ msgstr "Блок Олссона"
  7631. #~ msgctxt "@action:button"
  7632. #~ msgid "Skip Bedleveling"
  7633. #~ msgstr "Пропустить выравнивание стола"
  7634. #~ msgctxt "@label"
  7635. #~ msgid "Everything is in order! You're done with bedleveling."
  7636. #~ msgstr "Всё в порядке! Вы завершили выравнивание стола."
  7637. #~ msgctxt "@option:check"
  7638. #~ msgid "Extruder driver upgrades"
  7639. #~ msgstr "Обновления экструдера"
  7640. #~ msgctxt "@option:check"
  7641. #~ msgid "Heated printer bed (self built)"
  7642. #~ msgstr "Нагреваемый стол (самодельный)"
  7643. #~ msgctxt "@label"
  7644. #~ msgid "If you bought your Ultimaker after october 2012 you will have the Extruder drive upgrade. If you do not have this upgrade, it is highly recommended to improve reliability. This upgrade can be bought from the Ultimaker webshop or found on thingiverse as thing:26094"
  7645. #~ msgstr "Если вы купили ваш Ultimaker после октября 2012 года, то у вас есть обновление экструдера. Если у вас нет этого обновления, оно крайне рекомендуется. Это обновление можно купить на сайте Ultimaker или найти на Thingiverse (thing:26094)"
  7646. #~ msgctxt "@label"
  7647. #~ msgid "Cura requires these new features and thus your firmware will most likely need to be upgraded. You can do so now."
  7648. #~ msgstr "Cura требует эти новые возможности и соответственно, ваша прошивка также может нуждаться в обновлении. Вы можете сделать это прямо сейчас."
  7649. #~ msgctxt "@action:button"
  7650. #~ msgid "Upgrade to Marlin Firmware"
  7651. #~ msgstr "Обновиться на прошивку Marlin"
  7652. #~ msgctxt "@action:button"
  7653. #~ msgid "Skip Upgrade"
  7654. #~ msgstr "Пропусть апгрейд"
  7655. #~ msgctxt "@label"
  7656. #~ msgid "This printer name has already been used. Please choose a different printer name."
  7657. #~ msgstr "Данное имя принтера уже используется. Пожалуйста, выберите другое имя для принтера."
  7658. #~ msgctxt "@title"
  7659. #~ msgid "Bed Levelling"
  7660. #~ msgstr "Выравнивание стола"