cura.po 199 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622
  1. # Cura
  2. # Copyright (C) 2022 UltiMaker.
  3. # This file is distributed under the same license as the Cura package.
  4. # Ultimaker <plugins@ultimaker.com>, 2022.
  5. #
  6. #, fuzzy
  7. msgid ""
  8. msgstr ""
  9. "Project-Id-Version: PACKAGE VERSION\n"
  10. "Report-Msgid-Bugs-To: \n"
  11. "POT-Creation-Date: 2023-09-20 14:03+0000\n"
  12. "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
  13. "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  14. "Language-Team: LANGUAGE <LL@li.org>\n"
  15. "Language: ru_RU\n"
  16. "MIME-Version: 1.0\n"
  17. "Content-Type: text/plain; charset=UTF-8\n"
  18. "Content-Transfer-Encoding: 8bit\n"
  19. "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
  20. #, python-format
  21. msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm."
  22. msgid "%(width).1f x %(depth).1f x %(height).1f mm"
  23. msgstr "%(width).1f x %(depth).1f x %(height).1f мм"
  24. msgctxt "@action:label"
  25. msgid "%1 & material"
  26. msgstr "%1 и материал"
  27. msgctxt "@action:label"
  28. msgid "%1 out of %2"
  29. msgstr "%1 из %2"
  30. msgctxt "@action:label"
  31. msgid "%1 override"
  32. msgid_plural "%1 overrides"
  33. msgstr[0] "%1 перекрыт"
  34. msgstr[1] "%1 перекрыто"
  35. msgstr[2] "%1 перекрыто"
  36. msgctxt "@action:label"
  37. msgid "%1, %2 override"
  38. msgid_plural "%1, %2 overrides"
  39. msgstr[0] "%1, %2 перекрыто"
  40. msgstr[1] "%1, %2 перекрыто"
  41. msgstr[2] "%1, %2 перекрыто"
  42. msgctxt "@label g for grams"
  43. msgid "%1g"
  44. msgstr "%1 г"
  45. msgctxt "@label m for meter"
  46. msgid "%1m"
  47. msgstr "%1 м"
  48. msgctxt "@action:inmenu menubar:printer"
  49. msgid "&Add Printer..."
  50. msgstr "Добавить принтер..."
  51. msgctxt "@action:inmenu menubar:view"
  52. msgid "&Camera position"
  53. msgstr "Положение камеры"
  54. msgctxt "@action:inmenu menubar:profile"
  55. msgid "&Create profile from current settings/overrides..."
  56. msgstr "Создать профиль из текущих параметров..."
  57. msgctxt "@action:inmenu menubar:profile"
  58. msgid "&Discard current changes"
  59. msgstr "Сбросить текущие параметры"
  60. msgctxt "@title:menu menubar:toplevel"
  61. msgid "&Edit"
  62. msgstr "Правка"
  63. msgctxt "@title:menu menubar:file"
  64. msgid "&Export..."
  65. msgstr "&Экспорт..."
  66. msgctxt "@title:menu menubar:toplevel"
  67. msgid "&File"
  68. msgstr "Файл"
  69. msgctxt "@action:inmenu menubar:edit"
  70. msgid "&Group Models"
  71. msgstr "Сгруппировать модели"
  72. msgctxt "@title:menu menubar:toplevel"
  73. msgid "&Help"
  74. msgstr "Справка"
  75. msgctxt "@title:menu"
  76. msgid "&Material"
  77. msgstr "Материал"
  78. msgctxt "@action:inmenu menubar:edit"
  79. msgid "&Merge Models"
  80. msgstr "Объединить модели"
  81. msgctxt "@action:inmenu"
  82. msgid "&Multiply Model..."
  83. msgstr "Дублировать модель..."
  84. msgctxt "@action:inmenu menubar:file"
  85. msgid "&New Project..."
  86. msgstr "Новый проект..."
  87. msgctxt "@action:inmenu menubar:file"
  88. msgid "&Open File(s)..."
  89. msgstr "Открыть файл(ы)..."
  90. msgctxt "@title:menu menubar:settings"
  91. msgid "&Printer"
  92. msgstr "Принтер"
  93. msgctxt "@action:inmenu menubar:file"
  94. msgid "&Quit"
  95. msgstr "Выход"
  96. msgctxt "@action:inmenu menubar:edit"
  97. msgid "&Redo"
  98. msgstr "Возврат"
  99. msgctxt "@title:menu menubar:file"
  100. msgid "&Save Project..."
  101. msgstr "&Сохранить проект..."
  102. msgctxt "@title:menu menubar:toplevel"
  103. msgid "&Settings"
  104. msgstr "&Параметры"
  105. msgctxt "@action:inmenu menubar:edit"
  106. msgid "&Undo"
  107. msgstr "Отмена"
  108. msgctxt "@action:inmenu menubar:profile"
  109. msgid "&Update profile with current settings/overrides"
  110. msgstr "Обновить профиль текущими параметрами"
  111. msgctxt "@title:menu menubar:toplevel"
  112. msgid "&View"
  113. msgstr "Вид"
  114. msgctxt "@label"
  115. msgid "*You will need to restart the application for these changes to have effect."
  116. msgstr "*Для применения данных изменений вам потребуется перезапустить приложение."
  117. msgctxt "@text"
  118. msgid ""
  119. "- Add material profiles and plug-ins from the Marketplace\n"
  120. "- Back-up and sync your material profiles and plug-ins\n"
  121. "- Share ideas and get help from 48,000+ users in the UltiMaker community"
  122. msgstr ""
  123. "- Добавляйте настройки материалов и плагины из Marketplace \n"
  124. " - Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов \n"
  125. " - Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе Ultimaker"
  126. msgctxt "@heading"
  127. msgid "-- incomplete --"
  128. msgstr "-- неполный --"
  129. msgctxt "@action:label"
  130. msgid "1mm Transmittance (%)"
  131. msgstr "Проходимость через 1 мм (%)"
  132. msgctxt "@info:title"
  133. msgid "3D Model Assistant"
  134. msgstr "Помощник по 3D-моделям"
  135. msgctxt "@action:inmenu menubar:view"
  136. msgid "3D View"
  137. msgstr "Трехмерный вид"
  138. msgctxt "@info:tooltip"
  139. msgid "3D View"
  140. msgstr "Трехмерный вид"
  141. msgctxt "@item:inlistbox"
  142. msgid "3MF File"
  143. msgstr "Файл 3MF"
  144. msgctxt "name"
  145. msgid "3MF Reader"
  146. msgstr "Чтение 3MF"
  147. msgctxt "name"
  148. msgid "3MF Writer"
  149. msgstr "Запись 3MF"
  150. msgctxt "@error:zip"
  151. msgid "3MF Writer plug-in is corrupt."
  152. msgstr "Подключаемый модуль для записи 3MF поврежден."
  153. msgctxt "@item:inlistbox"
  154. msgid "3MF file"
  155. msgstr "3MF файл"
  156. msgctxt "@info, %1 is the name of the custom profile"
  157. msgid "<b>%1</b> custom profile is active and you overwrote some settings."
  158. msgstr "Активен <b>%1</b> собственный профиль, и вы переписали некоторые настройки."
  159. msgctxt "@info, %1 is the name of the custom profile"
  160. msgid "<b>%1</b> custom profile is overriding some settings."
  161. msgstr "Собственный профиль <b>%1</b> переопределяет некоторые настройки."
  162. msgctxt "@label %i will be replaced with a profile name"
  163. msgid "<b>Only user changed settings will be saved in the custom profile.</b><br/>For materials that support it, the new custom profile will inherit properties from <b>%1</b>."
  164. msgstr "<b>В пользовательском профиле будут сохранены только измененные пользователем настройки.</b><br/>Для поддерживающих его материалов новый пользовательский профиль будет наследовать свойства от <b>%1</b>."
  165. #, python-brace-format
  166. msgctxt "@label OpenGL renderer"
  167. msgid "<li>OpenGL Renderer: {renderer}</li>"
  168. msgstr "<li>Средство визуализации OpenGL: {renderer}</li>"
  169. #, python-brace-format
  170. msgctxt "@label OpenGL vendor"
  171. msgid "<li>OpenGL Vendor: {vendor}</li>"
  172. msgstr "<li>Поставщик OpenGL: {vendor}</li>"
  173. #, python-brace-format
  174. msgctxt "@label OpenGL version"
  175. msgid "<li>OpenGL Version: {version}</li>"
  176. msgstr "<li>Версия OpenGL: {version}</li>"
  177. msgctxt "@label crash message"
  178. msgid ""
  179. "<p><b>A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem</p></b>\n"
  180. " <p>Please use the \"Send report\" button to post a bug report automatically to our servers</p>\n"
  181. " "
  182. msgstr ""
  183. "<p><b>В Cura возникла критическая ошибка. Отправьте нам этот отчет о сбое для устранения проблемы</p></b>\n"
  184. " <p>Нажмите кнопку «Отправить отчет», чтобы автоматически опубликовать отчет об ошибке на наших серверах</p>\n"
  185. " "
  186. msgctxt "@label crash message"
  187. msgid ""
  188. "<p><b>Oops, UltiMaker Cura has encountered something that doesn't seem right.</p></b>\n"
  189. " <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"
  190. " <p>Backups can be found in the configuration folder.</p>\n"
  191. " <p>Please send us this Crash Report to fix the problem.</p>\n"
  192. " "
  193. msgstr ""
  194. "<p><b>В ПО UltiMaker Cura обнаружена ошибка.</p></b>\n"
  195. " <p>Во время запуска обнаружена неустранимая ошибка. Возможно, она вызвана некоторыми файлами конфигурации с неправильными данными. Рекомендуется создать резервную копию конфигурации и сбросить ее.</p>\n"
  196. " <p>Резервные копии хранятся в папке конфигурации.</p>\n"
  197. " <p>Отправьте нам этот отчет о сбое для устранения проблемы.</p>\n"
  198. " "
  199. #, python-brace-format
  200. msgctxt "@info:status"
  201. msgid ""
  202. "<p>One or more 3D models may not print optimally due to the model size and material configuration:</p>\n"
  203. "<p>{model_names}</p>\n"
  204. "<p>Find out how to ensure the best possible print quality and reliability.</p>\n"
  205. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">View print quality guide</a></p>"
  206. msgstr ""
  207. "<p>Одна или несколько 3D-моделей могут не напечататься оптимальным образом из-за размера модели и конфигурации материала:</p>\n"
  208. "<p>{model_names}</p>\n"
  209. "<p>Узнайте, как обеспечить максимально возможное качество и высокую надежность печати.</p>\n"
  210. "<p><a href=\"https://ultimaker.com/3D-model-assistant\">Ознакомиться с руководством по качеству печати</a></p>"
  211. msgctxt "@label"
  212. msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?"
  213. msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?"
  214. msgctxt "info:status"
  215. msgid "A cloud connection is not available for a printer"
  216. msgid_plural "A cloud connection is not available for some printers"
  217. msgstr[0] "Подключение к облаку недоступно для принтера"
  218. msgstr[1] "Подключение к облаку недоступно для некоторых принтеров"
  219. msgstr[2] "Подключение к облаку недоступно для некоторых принтеров"
  220. msgctxt "@message"
  221. msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed."
  222. msgstr "Печать еще выполняется. Cura не может начать другую печать через USB, пока предыдущая печать не будет завершена."
  223. msgctxt "@item:inlistbox"
  224. msgid "AMF File"
  225. msgstr "Файл AMF"
  226. msgctxt "name"
  227. msgid "AMF Reader"
  228. msgstr "Средство чтения AMF"
  229. msgctxt "@label"
  230. msgid "Abort"
  231. msgstr "Прервать"
  232. msgctxt "@label"
  233. msgid "Abort Print"
  234. msgstr "Прервать печать"
  235. msgctxt "@window:title"
  236. msgid "Abort print"
  237. msgstr "Прервать печать"
  238. msgctxt "@label:status"
  239. msgid "Aborted"
  240. msgstr "Прервано"
  241. msgctxt "@label"
  242. msgid "Aborting..."
  243. msgstr "Прерывается..."
  244. msgctxt "@label:status"
  245. msgid "Aborting..."
  246. msgstr "Прерывается..."
  247. msgctxt "@title:window The argument is the application name."
  248. msgid "About %1"
  249. msgstr "О программе %1"
  250. msgctxt "@action:inmenu menubar:help"
  251. msgid "About..."
  252. msgstr "О Cura..."
  253. msgctxt "@button"
  254. msgid "Accept"
  255. msgstr "Принять"
  256. msgctxt "description"
  257. msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware."
  258. msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку."
  259. msgctxt "@label"
  260. msgid "Account synced"
  261. msgstr "Учетная запись синхронизирована"
  262. msgctxt "@label:status"
  263. msgid "Action required"
  264. msgstr "Необходимое действие"
  265. msgctxt "@action:button"
  266. msgid "Activate"
  267. msgstr "Активировать"
  268. msgctxt "@label"
  269. msgid "Active print"
  270. msgstr "Идёт печать"
  271. msgctxt "@action:button"
  272. msgid "Add"
  273. msgstr "Добавить"
  274. msgctxt "@button"
  275. msgid "Add"
  276. msgstr "Добавить"
  277. msgctxt "@action:button"
  278. msgid "Add New"
  279. msgstr "Добавить новый"
  280. msgctxt "@title:window"
  281. msgid "Add Printer"
  282. msgstr "Добавление принтера"
  283. msgctxt "@button"
  284. msgid "Add UltiMaker printer via Digital Factory"
  285. msgstr "Добавить принтер UltiMaker через Digital Factory"
  286. msgctxt "@label"
  287. msgid "Add a Cloud printer"
  288. msgstr "Добавить облачный принтер"
  289. msgctxt "@label"
  290. msgid "Add a networked printer"
  291. msgstr "Добавить сетевой принтер"
  292. msgctxt "@label"
  293. msgid "Add a non-networked printer"
  294. msgstr "Добавить принтер, не подключенный к сети"
  295. msgctxt "@action"
  296. msgid "Add a script"
  297. msgstr "Добавить скрипт"
  298. msgctxt "@option:check"
  299. msgid "Add icon to system tray *"
  300. msgstr "Добавить значок в системный трей*"
  301. msgctxt "@button"
  302. msgid "Add local printer"
  303. msgstr "Добавить локальный принтер"
  304. msgctxt "@option:check"
  305. msgid "Add machine prefix to job name"
  306. msgstr "Добавить префикс принтера к имени задачи"
  307. msgctxt "@text"
  308. msgid "Add material settings and plugins from the Marketplace"
  309. msgstr "Добавляйте настройки материалов и плагины из Marketplace"
  310. msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate."
  311. msgid "Add more materials from Marketplace"
  312. msgstr "Добавить больше материалов из Магазина"
  313. msgctxt "@button"
  314. msgid "Add printer"
  315. msgstr "Добавить принтер"
  316. msgctxt "@label"
  317. msgid "Add printer"
  318. msgstr "Добавление принтера"
  319. msgctxt "@label"
  320. msgid "Add printer by IP"
  321. msgstr "Добавить принтер по IP-адресу"
  322. msgctxt "@label"
  323. msgid "Add printer by IP address"
  324. msgstr "Добавить принтер по IP-адресу"
  325. msgctxt "@button"
  326. msgid "Add printer manually"
  327. msgstr "Добавить принтер вручную"
  328. #, python-brace-format
  329. msgctxt "info:status Filled in with printer name and printer model."
  330. msgid "Adding printer {name} ({model}) from your account"
  331. msgstr "Добавление принтера {name} ({model}) из вашей учетной записи"
  332. msgctxt "@label"
  333. msgid "Address"
  334. msgstr "Адрес"
  335. msgctxt "@label"
  336. msgid "Adhesion"
  337. msgstr "Прилипание"
  338. msgctxt "@label"
  339. msgid "Adhesion Information"
  340. msgstr "Информация об адгезии"
  341. msgctxt "@label"
  342. msgid "Adjusts the density of infill of the print."
  343. msgstr "Отрегулируйте плотность заполнения при печати."
  344. msgctxt "support_type description"
  345. msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model."
  346. msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели."
  347. msgctxt "@label Header for list of settings."
  348. msgid "Affected By"
  349. msgstr "Зависит от"
  350. msgctxt "@label Header for list of settings."
  351. msgid "Affects"
  352. msgstr "Влияет на"
  353. msgctxt "@button"
  354. msgid "Agree"
  355. msgstr "Принимаю"
  356. msgctxt "@item:inlistbox"
  357. msgid "All Files (*)"
  358. msgstr "Все файлы (*)"
  359. #, python-brace-format
  360. msgctxt "@item:inlistbox"
  361. msgid "All Supported Types ({0})"
  362. msgstr "Все поддерживаемые типы ({0})"
  363. msgctxt "@text:window"
  364. msgid "Allow sending anonymous data"
  365. msgstr "Разрешить отправку анонимных данных"
  366. msgctxt "description"
  367. msgid "Allows loading and displaying G-code files."
  368. msgstr "Позволяет загружать и отображать файлы G-code."
  369. msgctxt "@option:discardOrKeep"
  370. msgid "Always ask me this"
  371. msgstr "Всегда спрашивать меня"
  372. msgctxt "@option:openProject"
  373. msgid "Always ask me this"
  374. msgstr "Всегда спрашивать меня"
  375. msgctxt "@option:discardOrKeep"
  376. msgid "Always discard changed settings"
  377. msgstr "Всегда сбрасывать измененные настройки"
  378. msgctxt "@option:openProject"
  379. msgid "Always import models"
  380. msgstr "Всегда импортировать модели"
  381. msgctxt "@option:openProject"
  382. msgid "Always open as a project"
  383. msgstr "Всегда открывать как проект"
  384. msgctxt "@option:discardOrKeep"
  385. msgid "Always transfer changed settings to new profile"
  386. msgstr "Всегда передавать измененные настройки новому профилю"
  387. msgctxt "@info:tooltip"
  388. msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?"
  389. msgstr "Модель может показаться очень маленькой, если её размерность задана в метрах, а не миллиметрах. Следует ли масштабировать такие модели?"
  390. msgctxt "@label"
  391. msgid "Annealing"
  392. msgstr ""
  393. msgctxt "@label"
  394. msgid "Anonymous"
  395. msgstr "Анонимн"
  396. msgctxt "@label Description for application component"
  397. msgid "Application framework"
  398. msgstr "Фреймворк приложения"
  399. msgctxt "@label"
  400. msgid "Apply Extruder offsets to GCode"
  401. msgstr "Применить смещения экструдера к GCode"
  402. msgctxt "@info:title"
  403. msgid "Are you ready for cloud printing?"
  404. msgstr "Вы готовы к облачной печати?"
  405. msgctxt "@label %1 is the name of a print job."
  406. msgid "Are you sure you want to abort %1?"
  407. msgstr "Вы уверены, что хотите прервать %1?"
  408. msgctxt "@label"
  409. msgid "Are you sure you want to abort the print?"
  410. msgstr "Вы уверены, что желаете прервать печать?"
  411. msgctxt "@label %1 is the name of a print job."
  412. msgid "Are you sure you want to delete %1?"
  413. msgstr "Вы уверены, что хотите удалить %1?"
  414. msgctxt "@dialog:info"
  415. msgid "Are you sure you want to delete this backup? This cannot be undone."
  416. msgstr "Вы уверены, что хотите удалить указанную резервную копию? Данное действие невозможно отменить."
  417. msgctxt "@label %1 is the application name"
  418. msgid "Are you sure you want to exit %1?"
  419. msgstr "Вы уверены, что хотите выйти из %1?"
  420. msgctxt "@label %1 is the name of a print job."
  421. msgid "Are you sure you want to move %1 to the top of the queue?"
  422. msgstr "Вы уверены, что хотите переместить %1 в начало очереди?"
  423. #, python-brace-format
  424. msgctxt "@message {printer_name} is replaced with the name of the printer"
  425. msgid "Are you sure you want to remove {printer_name} temporarily?"
  426. msgstr "Действительно удалить {printer_name} временно?"
  427. msgctxt "@info:question"
  428. msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings."
  429. msgstr "Вы действительно желаете начать новый проект? Это действие очистит область печати и сбросит все несохранённые настройки."
  430. msgctxt "@label (%1 is object name)"
  431. msgid "Are you sure you wish to remove %1? This cannot be undone!"
  432. msgstr "Вы уверены, что желаете удалить %1? Это нельзя будет отменить!"
  433. #, python-brace-format
  434. msgctxt "@label {0} is the name of a printer that's about to be deleted."
  435. msgid "Are you sure you wish to remove {0}? This cannot be undone!"
  436. msgstr "Действительно удалить {0}? Это действие невозможно будет отменить!"
  437. msgctxt "@action:inmenu menubar:edit"
  438. msgid "Arrange All Models"
  439. msgstr "Выровнять все модели"
  440. msgctxt "@action:inmenu menubar:edit"
  441. msgid "Arrange All Models in a grid"
  442. msgstr ""
  443. msgctxt "@label:button"
  444. msgid "Ask a question"
  445. msgstr "Задать вопрос"
  446. msgctxt "@checkbox:description"
  447. msgid "Auto Backup"
  448. msgstr "Автоматическое резервное копирование"
  449. msgctxt "@checkbox:description"
  450. msgid "Automatically create a backup each day that Cura is started."
  451. msgstr "Автоматически создавать резервную копию в день запуска Cura."
  452. msgctxt "@option:check"
  453. msgid "Automatically drop models to the build plate"
  454. msgstr "Автоматически опускать модели на стол"
  455. msgctxt "@action:button"
  456. msgid "Automatically upgrade Firmware"
  457. msgstr "Автоматическое обновление прошивки"
  458. msgctxt "@label"
  459. msgid "Available networked printers"
  460. msgstr "Доступные сетевые принтеры"
  461. msgctxt "@item:inlistbox"
  462. msgid "BMP Image"
  463. msgstr "BMP изображение"
  464. msgctxt "@button"
  465. msgid "Back"
  466. msgstr "Назад"
  467. msgctxt "@button:tooltip"
  468. msgid "Back"
  469. msgstr "Назад"
  470. msgctxt "@info:title"
  471. msgid "Backup"
  472. msgstr "Резервное копирование"
  473. msgctxt "@button"
  474. msgid "Backup Now"
  475. msgstr "Создать резервную копию"
  476. msgctxt "@action:button"
  477. msgid "Backup and Reset Configuration"
  478. msgstr "Резервное копирование и сброс конфигурации"
  479. msgctxt "description"
  480. msgid "Backup and restore your configuration."
  481. msgstr "Резервное копирование и восстановление конфигурации."
  482. msgctxt "@text"
  483. msgid "Backup and sync your material settings and plugins"
  484. msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов"
  485. msgctxt "@description"
  486. msgid "Backup and synchronize your Cura settings."
  487. msgstr "Резервное копирование и синхронизация ваших параметров Cura."
  488. msgctxt "@info:title"
  489. msgid "Backups"
  490. msgstr "Резервные копии"
  491. msgctxt "@action:label"
  492. msgid "Base (mm)"
  493. msgstr "Основание (мм)"
  494. msgctxt "@action:inmenu menubar:view"
  495. msgid "Bottom View"
  496. msgstr "Вид снизу"
  497. msgctxt "@label"
  498. msgid "Brand"
  499. msgstr "Брэнд"
  500. msgctxt "@title"
  501. msgid "Build Plate Leveling"
  502. msgstr "Выравнивание стола"
  503. msgctxt "@info:title"
  504. msgid "Build Volume"
  505. msgstr "Объём печати"
  506. msgctxt "@label"
  507. msgid "Build plate"
  508. msgstr "Рабочий стол"
  509. msgctxt "@label"
  510. msgid "Build plate shape"
  511. msgstr "Форма стола"
  512. msgctxt "@label"
  513. msgid "Bundled Materials"
  514. msgstr "Связанные материалы"
  515. msgctxt "@label"
  516. msgid "Bundled Plugins"
  517. msgstr "Связанные встраиваемые модули"
  518. msgctxt "@button"
  519. msgid "Buy spool"
  520. msgstr "Купить катушку"
  521. msgctxt "@label Is followed by the name of an author"
  522. msgid "By"
  523. msgstr "Автор"
  524. msgctxt "@label Description for application dependency"
  525. msgid "C/C++ Binding library"
  526. msgstr "C/C++ библиотека интерфейса"
  527. msgctxt "@item:inlistbox"
  528. msgid "COLLADA Digital Asset Exchange"
  529. msgstr "COLLADA Digital Asset Exchange"
  530. msgctxt "@info:status"
  531. msgid "Calculated"
  532. msgstr "Вычислено"
  533. msgctxt "@window:text"
  534. msgid "Camera rendering:"
  535. msgstr "Рендеринг камеры:"
  536. msgctxt "@action:inmenu menubar:view"
  537. msgid "Camera view"
  538. msgstr "Вид камеры"
  539. msgctxt "@info:title"
  540. msgid "Can't Find Location"
  541. msgstr "Не могу найти место"
  542. msgctxt "@info:title"
  543. msgid "Can't Open Project File"
  544. msgstr "Невозможно открыть файл проекта"
  545. msgctxt "@label"
  546. msgid "Can't connect to your UltiMaker printer?"
  547. msgstr "Не удается подключиться к принтеру UltiMaker?"
  548. #, python-brace-format
  549. msgctxt "@info:status Don't translate the XML tags <filename>!"
  550. msgid "Can't import profile from <filename>{0}</filename> before a printer is added."
  551. msgstr "Невозможно импортировать профиль из <filename>{0}</filename>, пока не добавлен принтер."
  552. #, python-brace-format
  553. msgctxt "@info:status"
  554. msgid "Can't open any other file if G-code is loading. Skipped importing {0}"
  555. msgstr "Невозможно открыть любой другой файл, если G-code файл уже загружен. Пропускаю импортирование {0}"
  556. msgctxt "@info:error"
  557. msgid "Can't write to UFP file:"
  558. msgstr "Невозможно записать в файл UFP:"
  559. msgctxt "@action:button"
  560. msgid "Cancel"
  561. msgstr "Отмена"
  562. msgctxt "@button"
  563. msgid "Cancel"
  564. msgstr "Отмена"
  565. msgctxt "@button Cancel pre-heating"
  566. msgid "Cancel"
  567. msgstr "Отмена"
  568. msgctxt "@option:check"
  569. msgid "Caution message in g-code reader"
  570. msgstr "Предупреждающее сообщение в средстве считывания G-кода"
  571. msgctxt "@action:inmenu"
  572. msgid "Ce&nter Model on Platform"
  573. msgstr "Поместить модель по центру"
  574. msgctxt "@action:inmenu menubar:edit"
  575. msgid "Center Selected"
  576. msgstr "Центрировать выбранное"
  577. msgctxt "@action:button"
  578. msgid "Center camera when item is selected"
  579. msgstr "Центрировать камеру на выбранном объекте"
  580. msgctxt "@info:tooltip"
  581. msgid "Change active post-processing scripts."
  582. msgstr "Измените активные скрипты пост-обработки."
  583. msgctxt "@label"
  584. msgid "Change material %1 from %2 to %3."
  585. msgstr "Изменить материал %1 с %2 на %3."
  586. msgctxt "@label"
  587. msgid "Change print core %1 from %2 to %3."
  588. msgstr "Изменить экструдер %1 с %2 на %3."
  589. msgctxt "@info:title"
  590. msgid "Changes detected from your UltiMaker account"
  591. msgstr "В вашей учетной записи UltiMaker обнаружены изменения"
  592. msgctxt "@title"
  593. msgid "Changes from your account"
  594. msgstr "Изменения в вашей учетной записи"
  595. msgctxt "@label:textbox"
  596. msgid "Check all"
  597. msgstr "Выбрать все"
  598. msgctxt "@button"
  599. msgid "Check for account updates"
  600. msgstr "Проверить наличие обновлений учетной записи"
  601. msgctxt "@option:check"
  602. msgid "Check for updates on start"
  603. msgstr "Проверять обновления при старте"
  604. msgctxt "@label"
  605. msgid "Checking..."
  606. msgstr "Проверка..."
  607. msgctxt "description"
  608. msgid "Checks for firmware updates."
  609. msgstr "Проверяет наличие обновлений ПО."
  610. msgctxt "description"
  611. msgid "Checks models and print configuration for possible printing issues and give suggestions."
  612. msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации."
  613. msgctxt "@label"
  614. msgid ""
  615. "Chooses between the techniques available to generate support. \n"
  616. "\n"
  617. "\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n"
  618. "\n"
  619. "\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible."
  620. msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины."
  621. msgctxt "@action:inmenu menubar:edit"
  622. msgid "Clear Build Plate"
  623. msgstr "Очистить стол"
  624. msgctxt "@option:check"
  625. msgid "Clear buildplate before loading model into the single instance"
  626. msgstr "Очистите печатную пластину перед загрузкой модели в единственный экземпляр"
  627. msgctxt "@text"
  628. msgid "Click the export material archive button."
  629. msgstr "Нажмите кнопку экспорта архива материалов."
  630. msgctxt "@action:button"
  631. msgid "Close"
  632. msgstr "Закрыть"
  633. msgctxt "@title:window %1 is the application name"
  634. msgid "Closing %1"
  635. msgstr "Закрытие %1"
  636. msgctxt "@action:inmenu"
  637. msgid "Collapse All Categories"
  638. msgstr "Свернуть все категории"
  639. msgctxt "@label"
  640. msgid "Color"
  641. msgstr "Цвет"
  642. msgctxt "@action:label"
  643. msgid "Color Model"
  644. msgstr "Цветовая модель"
  645. msgctxt "@label"
  646. msgid "Color scheme"
  647. msgstr "Цветовая схема"
  648. msgctxt "@info"
  649. msgid "Compare and save."
  650. msgstr "Сравнивайте и экономьте."
  651. msgctxt "@label"
  652. msgid "Compatibility Mode"
  653. msgstr "Режим совместимости"
  654. msgctxt "@label Description for application dependency"
  655. msgid "Compatibility between Python 2 and 3"
  656. msgstr "Совместимость между Python 2 и 3"
  657. msgctxt "@title:label"
  658. msgid "Compatible Printers"
  659. msgstr "Совместимые принтеры"
  660. msgctxt "@label"
  661. msgid "Compatible material diameter"
  662. msgstr "Диаметр совместимого материала"
  663. msgctxt "@header"
  664. msgid "Compatible printers"
  665. msgstr "Совместимые принтеры"
  666. msgctxt "@header"
  667. msgid "Compatible support materials"
  668. msgstr "Совместимые вспомогательные материалы"
  669. msgctxt "@header"
  670. msgid "Compatible with Material Station"
  671. msgstr "Совместимо с Material Station"
  672. msgctxt "@item:inlistbox"
  673. msgid "Compressed COLLADA Digital Asset Exchange"
  674. msgstr "Compressed COLLADA Digital Asset Exchange"
  675. msgctxt "@item:inlistbox"
  676. msgid "Compressed G-code File"
  677. msgstr "Сжатый файл с G-кодом"
  678. msgctxt "name"
  679. msgid "Compressed G-code Reader"
  680. msgstr "Средство считывания сжатого G-кода"
  681. msgctxt "name"
  682. msgid "Compressed G-code Writer"
  683. msgstr "Средство записи сжатого G-кода"
  684. msgctxt "@title:window"
  685. msgid "Configuration Changes"
  686. msgstr "Изменения конфигурации"
  687. msgctxt "@error"
  688. msgid "Configuration not supported"
  689. msgstr "Конфигурация не поддерживается"
  690. msgctxt "@header"
  691. msgid "Configurations"
  692. msgstr "Конфигурации"
  693. msgctxt "@label"
  694. msgid "Configurations"
  695. msgstr "Конфигурации"
  696. msgctxt "@action:inmenu"
  697. msgid "Configure Cura..."
  698. msgstr "Настроить Cura..."
  699. msgctxt "@info:tooltip"
  700. msgid "Configure Per Model Settings"
  701. msgstr "Правка параметров модели"
  702. msgctxt "@action"
  703. msgid "Configure group"
  704. msgstr "Настроить группу"
  705. msgctxt "@action:menu"
  706. msgid "Configure setting visibility..."
  707. msgstr "Видимость параметров..."
  708. msgctxt "@title:window"
  709. msgid "Confirm Diameter Change"
  710. msgstr "Подтвердить изменение диаметра"
  711. msgctxt "@title:window"
  712. msgid "Confirm Remove"
  713. msgstr "Подтвердите удаление"
  714. msgctxt "@action:button"
  715. msgid "Connect"
  716. msgstr "Подключить"
  717. msgctxt "@button"
  718. msgid "Connect"
  719. msgstr "Подключить"
  720. msgctxt "@title:window"
  721. msgid "Connect to Networked Printer"
  722. msgstr "Подключение к сетевому принтеру"
  723. msgctxt "@action"
  724. msgid "Connect via Network"
  725. msgstr "Подключиться через сеть"
  726. msgctxt "@info:status"
  727. msgid "Connected over the network"
  728. msgstr "Подключен по сети"
  729. msgctxt "@label"
  730. msgid "Connected printers"
  731. msgstr "Подключенные принтеры"
  732. msgctxt "@info:status"
  733. msgid "Connected via USB"
  734. msgstr "Подключено через USB"
  735. msgctxt "@info:status"
  736. msgid "Connected via cloud"
  737. msgstr "Подключено через облако"
  738. msgctxt "description"
  739. msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library."
  740. msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее."
  741. msgctxt "@tooltip:button"
  742. msgid "Consult the UltiMaker Community."
  743. msgstr "Посоветуйтесь со специалистами в сообществе UltiMaker."
  744. msgctxt "@title:window"
  745. msgid "Convert Image"
  746. msgstr "Преобразование изображения"
  747. msgctxt "@label"
  748. msgid "Cooling Fan Number"
  749. msgstr "Номер охлаждающего вентилятора"
  750. msgctxt "@action:menu"
  751. msgid "Copy all changed values to all extruders"
  752. msgstr "Копировать все измененные значения для всех экструдеров"
  753. msgctxt "@action:inmenu menubar:edit"
  754. msgid "Copy to clipboard"
  755. msgstr ""
  756. msgctxt "@action:menu"
  757. msgid "Copy value to all extruders"
  758. msgstr "Скопировать значение для всех экструдеров"
  759. msgctxt "@label"
  760. msgid "Cost per Meter"
  761. msgstr "Стоимость метра"
  762. msgctxt "@info"
  763. msgid "Could not access update information."
  764. msgstr "Не могу получить информацию об обновлениях."
  765. msgctxt "@label"
  766. msgid "Could not connect to device."
  767. msgstr "Не удалось подключиться к устройству."
  768. msgctxt "@info:backup_failed"
  769. msgid "Could not create archive from user data directory: {}"
  770. msgstr "Не удалось создать архив из каталога с данными пользователя: {}"
  771. #, python-brace-format
  772. msgctxt "@info:status Don't translate the tag {device}!"
  773. msgid "Could not find a file name when trying to write to {device}."
  774. msgstr "Не могу найти имя файла при записи в {device}."
  775. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  776. msgid "Could not import material <filename>%1</filename>: <message>%2</message>"
  777. msgstr "Не могу импортировать материал <filename>%1</filename>: <message>%2</message>"
  778. msgctxt "@info:error"
  779. msgid "Could not interpret the server's response."
  780. msgstr "Не удалось интерпретировать ответ сервера."
  781. msgctxt "@info:error"
  782. msgid "Could not reach Marketplace."
  783. msgstr "Не удалось связаться с магазином."
  784. msgctxt "@message"
  785. msgid "Could not read response."
  786. msgstr "Не удалось прочитать ответ."
  787. msgctxt "@message:text"
  788. msgid "Could not save material archive to {}:"
  789. msgstr "Невозможно сохранить архив материалов в {}:"
  790. #, python-brace-format
  791. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  792. msgid "Could not save to <filename>{0}</filename>: <message>{1}</message>"
  793. msgstr "Не могу записать <filename>{0}</filename>: <message>{1}</message>"
  794. #, python-brace-format
  795. msgctxt "@info:status"
  796. msgid "Could not save to removable drive {0}: {1}"
  797. msgstr "Невозможно сохранить на внешний носитель {0}: {1}"
  798. msgctxt "@info:text"
  799. msgid "Could not upload the data to the printer."
  800. msgstr "Облако не залило данные на принтер."
  801. #, python-brace-format
  802. msgctxt "@info:plugin_failed"
  803. msgid ""
  804. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  805. "No permission to execute process."
  806. msgstr ""
  807. #, python-brace-format
  808. msgctxt "@info:plugin_failed"
  809. msgid ""
  810. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  811. "Operating system is blocking it (antivirus?)"
  812. msgstr ""
  813. #, python-brace-format
  814. msgctxt "@info:plugin_failed"
  815. msgid ""
  816. "Couldn't start EnginePlugin: {self._plugin_id}\n"
  817. "Resource is temporarily unavailable"
  818. msgstr ""
  819. msgctxt "@title:window"
  820. msgid "Crash Report"
  821. msgstr "Отчёт о сбое"
  822. msgctxt "@title:window"
  823. msgid "Create Profile"
  824. msgstr "Создать профиль"
  825. msgctxt "@text"
  826. msgid "Create a free UltiMaker Account"
  827. msgstr "Создайте бесплатную учетную запись UltiMaker"
  828. msgctxt "@button"
  829. msgid "Create a free UltiMaker account"
  830. msgstr "Создайте бесплатную учетную запись UltiMaker"
  831. msgctxt "@info:tooltip"
  832. msgid "Create a volume in which supports are not printed."
  833. msgstr "Создание объема без печати элементов поддержки."
  834. msgctxt "@action:ComboBox Save settings in a new profile"
  835. msgid "Create new"
  836. msgstr "Создать новый"
  837. msgctxt "@action:button"
  838. msgid "Create new"
  839. msgstr "Создать новый"
  840. msgctxt "@button"
  841. msgid "Create new"
  842. msgstr "Создать новый"
  843. msgctxt "@action:tooltip"
  844. msgid "Create new profile from current settings/overrides"
  845. msgstr "Создать новый профиль из текущих настроек/переопределений"
  846. msgctxt "@tooltip:button"
  847. msgid "Create print projects in Digital Library."
  848. msgstr "Создавайте проекты печати в электронной библиотеке."
  849. msgctxt "description"
  850. msgid "Creates an eraser mesh to block the printing of support in certain places"
  851. msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах"
  852. msgctxt "@info:backup_status"
  853. msgid "Creating your backup..."
  854. msgstr "Создание резервной копии..."
  855. msgctxt "@item:inlistbox"
  856. msgid "Cura 15.04 profiles"
  857. msgstr "Профили Cura 15.04"
  858. msgctxt "@title:window"
  859. msgid "Cura Backups"
  860. msgstr "Резервные копии Cura"
  861. msgctxt "name"
  862. msgid "Cura Backups"
  863. msgstr "Резервные копии Cura"
  864. msgctxt "@item:inlistbox"
  865. msgid "Cura Profile"
  866. msgstr "Профиль Cura"
  867. msgctxt "name"
  868. msgid "Cura Profile Reader"
  869. msgstr "Чтение профиля Cura"
  870. msgctxt "name"
  871. msgid "Cura Profile Writer"
  872. msgstr "Запись профиля Cura"
  873. msgctxt "@item:inlistbox"
  874. msgid "Cura Project 3MF file"
  875. msgstr "3MF файл проекта Cura"
  876. msgctxt "@backuplist:label"
  877. msgid "Cura Version"
  878. msgstr "Версия Cura"
  879. msgctxt "@title:window"
  880. msgid "Cura can't start"
  881. msgstr "Не удалось запустить Cura"
  882. #, python-brace-format
  883. msgctxt "@info:status"
  884. msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}."
  885. msgstr "Cura обнаружены профили материалов, которые пока не установлены в главном принтере группы {0}."
  886. msgctxt "@info:credit"
  887. msgid ""
  888. "Cura is developed by UltiMaker in cooperation with the community.\n"
  889. "Cura proudly uses the following open source projects:"
  890. msgstr ""
  891. "Cura разработана компанией UltiMaker B.V. совместно с сообществом.\n"
  892. "Cura использует следующие проекты с открытым исходным кодом:"
  893. msgctxt "@label"
  894. msgid "Cura language"
  895. msgstr "Язык Cura"
  896. msgctxt "@label Cura version number"
  897. msgid "Cura version"
  898. msgstr "Версия Cura"
  899. msgctxt "name"
  900. msgid "CuraEngine Backend"
  901. msgstr "Движок CuraEngine"
  902. msgctxt "description"
  903. msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps"
  904. msgstr ""
  905. msgctxt "name"
  906. msgid "CuraEngineGradualFlow"
  907. msgstr ""
  908. msgctxt "@label"
  909. msgid "Currency:"
  910. msgstr "Валюта:"
  911. msgctxt "@title:column"
  912. msgid "Current"
  913. msgstr "Текущий"
  914. msgctxt "@title:column"
  915. msgid "Current changes"
  916. msgstr "Текущие изменения"
  917. msgctxt "@header"
  918. msgid "Custom"
  919. msgstr "Свое"
  920. msgctxt "@label"
  921. msgid "Custom"
  922. msgstr "Своё"
  923. msgctxt "@title:tab"
  924. msgid "Custom"
  925. msgstr "Своя"
  926. msgctxt "@label"
  927. msgid "Custom Material"
  928. msgstr "Собственный материал"
  929. msgctxt "@label"
  930. msgid "Custom profile"
  931. msgstr "Собственный профиль"
  932. msgctxt "@info"
  933. msgid "Custom profile name:"
  934. msgstr "Имя пользовательского профиля:"
  935. msgctxt "@label"
  936. msgid "Custom profiles"
  937. msgstr "Собственные профили"
  938. msgctxt "@label:header"
  939. msgid "Custom profiles"
  940. msgstr "Собственные профили"
  941. msgctxt "@action:inmenu menubar:edit"
  942. msgid "Cut"
  943. msgstr ""
  944. msgctxt "@item:inlistbox"
  945. msgid "Cutting mesh"
  946. msgstr "Ограничивающий объект"
  947. msgctxt "@item:inlistbox"
  948. msgid "Darker is higher"
  949. msgstr "Тёмные выше"
  950. msgctxt "@info:title"
  951. msgid "Data Sent"
  952. msgstr "Данные отправлены"
  953. msgctxt "@label Description for application dependency"
  954. msgid "Data interchange format"
  955. msgstr "Формат обмена данными"
  956. msgctxt "@button"
  957. msgid "Decline"
  958. msgstr "Отклонить"
  959. msgctxt "@button"
  960. msgid "Decline and close"
  961. msgstr "Отклонить и закрыть"
  962. msgctxt "@button"
  963. msgid "Decline and remove from account"
  964. msgstr "Отклонить и удалить из учетной записи"
  965. msgctxt "@info:No intent profile selected"
  966. msgid "Default"
  967. msgstr ""
  968. msgctxt "@label"
  969. msgid "Default"
  970. msgstr ""
  971. msgctxt "@window:text"
  972. msgid "Default behavior for changed setting values when switching to a different profile: "
  973. msgstr "Поведение по умолчанию для измененных значений настройки при переключении на другой профиль: "
  974. msgctxt "@info:tooltip"
  975. msgid "Default behavior when opening a project file"
  976. msgstr "Стандартное поведение при открытии файла проекта"
  977. msgctxt "@window:text"
  978. msgid "Default behavior when opening a project file: "
  979. msgstr "Стандартное поведение при открытии файла проекта: "
  980. msgctxt "@action:button"
  981. msgid "Defaults"
  982. msgstr "Стандартные"
  983. msgctxt "@label"
  984. msgid "Defines the thickness of your part side walls, roof and floor."
  985. msgstr "Определяет толщину боковых стен, крыши и пола вашей детали."
  986. msgctxt "@label"
  987. msgid "Delete"
  988. msgstr "Удалить"
  989. msgctxt "@dialog:title"
  990. msgid "Delete Backup"
  991. msgstr "Удалить резервную копию"
  992. msgctxt "@action:inmenu"
  993. msgid "Delete Model"
  994. msgstr "Удалить модель"
  995. msgctxt "@action:inmenu menubar:edit"
  996. msgid "Delete Selected"
  997. msgstr "Удалить выбранное"
  998. msgctxt "@window:title"
  999. msgid "Delete print job"
  1000. msgstr "Удалить задание печати"
  1001. msgctxt "@label"
  1002. msgid "Density"
  1003. msgstr "Плотность"
  1004. msgctxt "@label Description for development tool"
  1005. msgid "Dependency and package manager"
  1006. msgstr "Менеджер зависимостей и пакетов"
  1007. msgctxt "@action:label"
  1008. msgid "Depth (mm)"
  1009. msgstr "Глубина (мм)"
  1010. msgctxt "@action:label"
  1011. msgid "Derivative from"
  1012. msgstr "Производное от"
  1013. msgctxt "@header"
  1014. msgid "Description"
  1015. msgstr "Описание"
  1016. msgctxt "@label"
  1017. msgid "Description"
  1018. msgstr "Описание"
  1019. msgctxt "@action:button"
  1020. msgid "Details"
  1021. msgstr "Подробности"
  1022. msgctxt "@label"
  1023. msgid "Diameter"
  1024. msgstr "Диаметр"
  1025. msgctxt "@button"
  1026. msgid "Disable"
  1027. msgstr "Выключить"
  1028. msgctxt "@action:inmenu"
  1029. msgid "Disable Extruder"
  1030. msgstr "Отключить экструдер"
  1031. msgctxt "@option:discardOrKeep"
  1032. msgid "Discard and never ask again"
  1033. msgstr "Сбросить и никогда больше не спрашивать"
  1034. msgctxt "@action:button"
  1035. msgid "Discard changes"
  1036. msgstr "Отменить изменения"
  1037. msgctxt "@action:button"
  1038. msgid "Discard current changes"
  1039. msgstr "Сбросить текущие параметры"
  1040. msgctxt "@title:window"
  1041. msgid "Discard or Keep changes"
  1042. msgstr "Сбросить или сохранить изменения"
  1043. msgctxt "@button"
  1044. msgid "Dismiss"
  1045. msgstr "Отклонить"
  1046. msgctxt "@label"
  1047. msgid "Display Name"
  1048. msgstr "Отображаемое имя"
  1049. msgctxt "@option:check"
  1050. msgid "Display model errors"
  1051. msgstr "Показывать ошибки модели"
  1052. msgctxt "@option:check"
  1053. msgid "Display overhang"
  1054. msgstr "Отобразить нависания"
  1055. msgctxt "@info:option_text"
  1056. msgid "Do not show this message again"
  1057. msgstr "Больше не показывать это сообщение"
  1058. msgctxt "@info:generic"
  1059. msgid "Do you want to sync material and software packages with your account?"
  1060. msgstr "Хотите синхронизировать пакеты материалов и программного обеспечения со своей учетной записью?"
  1061. msgctxt "@action:label"
  1062. msgid "Don't show project summary on save again"
  1063. msgstr "Больше не показывать сводку по проекту"
  1064. msgctxt "@action:menu"
  1065. msgid "Don't show this setting"
  1066. msgstr "Не показывать этот параметр"
  1067. msgctxt "@label"
  1068. msgid "Don't support overlaps"
  1069. msgstr "Не поддерживать перекрытия"
  1070. msgctxt "@button"
  1071. msgid "Done"
  1072. msgstr "Готово"
  1073. msgctxt "@button"
  1074. msgid "Downgrade"
  1075. msgstr "Переход на более раннюю версию"
  1076. msgctxt "@button"
  1077. msgid "Downgrading..."
  1078. msgstr "Переход на более раннюю версию..."
  1079. msgctxt "@label"
  1080. msgid "Draft"
  1081. msgstr "Черновой"
  1082. msgctxt "@action:button"
  1083. msgid "Duplicate"
  1084. msgstr "Дублировать"
  1085. msgctxt "@title:window"
  1086. msgid "Duplicate Profile"
  1087. msgstr "Скопировать профиль"
  1088. msgctxt "@backup_limit_info"
  1089. msgid "During the preview phase, you'll be limited to 5 visible backups. Remove a backup to see older ones."
  1090. msgstr "На этапе предварительного просмотра отображается только 5 резервных копий. Для просмотра предыдущих резервных копий удалите одну копию."
  1091. msgctxt "@title:menu menubar:toplevel"
  1092. msgid "E&xtensions"
  1093. msgstr "Расширения"
  1094. msgctxt "@action:button"
  1095. msgid "Edit"
  1096. msgstr "Правка"
  1097. msgctxt "@action:button"
  1098. msgid "Eject"
  1099. msgstr "Извлечь"
  1100. #, python-brace-format
  1101. msgctxt "@action"
  1102. msgid "Eject removable device {0}"
  1103. msgstr "Извлекает внешний носитель {0}"
  1104. #, python-brace-format
  1105. msgctxt "@info:status"
  1106. msgid "Ejected {0}. You can now safely remove the drive."
  1107. msgstr "Извлечено {0}. Вы можете теперь безопасно извлечь носитель."
  1108. msgctxt "@label"
  1109. msgid "Empty"
  1110. msgstr "Пусто"
  1111. msgctxt "@button"
  1112. msgid "Enable"
  1113. msgstr "Включить"
  1114. msgctxt "@action:inmenu"
  1115. msgid "Enable Extruder"
  1116. msgstr "Включить экструдер"
  1117. msgctxt "@label"
  1118. 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. Disabling it results in a skirt around object by default."
  1119. msgstr ""
  1120. msgctxt "@label"
  1121. msgid "Enabled"
  1122. msgstr "Включено"
  1123. msgctxt "description"
  1124. msgid "Enables ability to generate printable geometry from 2D image files."
  1125. msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений."
  1126. msgctxt "@title:label"
  1127. msgid "End G-code"
  1128. msgstr "Завершающий G-код"
  1129. msgctxt "@label"
  1130. msgid "End-to-end solution for fused filament 3D printing."
  1131. msgstr "Полное решение для 3D печати методом наплавления материала."
  1132. msgctxt "@info:title"
  1133. msgid "EnginePlugin"
  1134. msgstr ""
  1135. msgctxt "@label"
  1136. msgid "Engineering"
  1137. msgstr ""
  1138. msgctxt "@option:check"
  1139. msgid "Ensure models are kept apart"
  1140. msgstr "Удостовериться, что модели размещены рядом"
  1141. msgctxt "@label"
  1142. msgid "Enter the IP address of your printer on the network."
  1143. msgstr "Введите IP-адрес принтера в сети."
  1144. msgctxt "@text"
  1145. msgid "Enter your printer's IP address."
  1146. msgstr "Введите IP-адрес своего принтера."
  1147. msgctxt "@info:title"
  1148. msgid "Error"
  1149. msgstr "Ошибка"
  1150. msgctxt "@title:groupbox"
  1151. msgid "Error traceback"
  1152. msgstr "Обратное отслеживание ошибки"
  1153. msgctxt "@label"
  1154. msgid "Estimated time left"
  1155. msgstr "Осталось примерно"
  1156. msgctxt "@action:inmenu"
  1157. msgid "Exit Full Screen"
  1158. msgstr "Выйти из полноэкранного режима"
  1159. msgctxt "@label"
  1160. msgid "Experimental"
  1161. msgstr "Экспериментальное"
  1162. msgctxt "@action:button"
  1163. msgid "Export"
  1164. msgstr "Экспорт"
  1165. msgctxt "@title:window"
  1166. msgid "Export All Materials"
  1167. msgstr "Экспорт всех материалов"
  1168. msgctxt "@title:window"
  1169. msgid "Export Material"
  1170. msgstr "Экспортировать материал"
  1171. msgctxt "@title:window"
  1172. msgid "Export Profile"
  1173. msgstr "Экспорт профиля"
  1174. msgctxt "@action:inmenu menubar:file"
  1175. msgid "Export Selection..."
  1176. msgstr "Экспорт выбранного..."
  1177. msgctxt "@button"
  1178. msgid "Export material archive"
  1179. msgstr "Экспорт архива материалов"
  1180. msgctxt "@info:title"
  1181. msgid "Export succeeded"
  1182. msgstr "Экспорт успешно завершен"
  1183. #, python-brace-format
  1184. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1185. msgid "Exported profile to <filename>{0}</filename>"
  1186. msgstr "Экспортирование профиля в <filename>{0}</filename>"
  1187. msgctxt "@tooltip:button"
  1188. msgid "Extend UltiMaker Cura with plugins and material profiles."
  1189. msgstr "Расширяйте возможности UltiMaker Cura за счет плагинов и профилей материалов."
  1190. msgctxt "description"
  1191. msgid "Extension that allows for user created scripts for post processing"
  1192. msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки"
  1193. msgctxt "@label"
  1194. msgid "Extruder"
  1195. msgstr "Экструдер"
  1196. msgctxt "@action:label"
  1197. msgid "Extruder %1"
  1198. msgstr "Экструдер %1"
  1199. msgctxt "@title:label"
  1200. msgid "Extruder End G-code"
  1201. msgstr "Завершающий G-код экструдера"
  1202. msgctxt "@title:label"
  1203. msgid "Extruder Start G-code"
  1204. msgstr "Стартовый G-код экструдера"
  1205. msgctxt "@info:title"
  1206. msgid "Extruder(s) Disabled"
  1207. msgstr "Экструдер (-ы) отключен (-ы)"
  1208. msgctxt "@label:status"
  1209. msgid "Failed"
  1210. msgstr "Сбой"
  1211. msgctxt "@text:error"
  1212. msgid "Failed to connect to Digital Factory to sync materials with some of the printers."
  1213. msgstr "Подключение к Digital Factory для синхронизации материалов с некоторыми принтерами не установлено."
  1214. msgctxt "@text:error"
  1215. msgid "Failed to connect to Digital Factory."
  1216. msgstr "Подключение к Digital Factory не установлено."
  1217. msgctxt "@text:error"
  1218. msgid "Failed to create archive of materials to sync with printers."
  1219. msgstr "Архив материалов для синхронизации с принтерами не создан."
  1220. #, python-brace-format
  1221. msgctxt "@info:status"
  1222. msgid "Failed to eject {0}. Another program may be using the drive."
  1223. msgstr "Невозможно извлечь {0}. Другая программа может использовать это устройство."
  1224. msgctxt "@info:status Don't translate the XML tags <filename> and <message>!"
  1225. msgid "Failed to export material to <filename>%1</filename>: <message>%2</message>"
  1226. msgstr "Не могу экспортировать материал <filename>%1</filename>: <message>%2</message>"
  1227. #, python-brace-format
  1228. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  1229. msgid "Failed to export profile to <filename>{0}</filename>: <message>{1}</message>"
  1230. msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: <message>{1}</message>"
  1231. #, python-brace-format
  1232. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1233. msgid "Failed to export profile to <filename>{0}</filename>: Writer plugin reported failure."
  1234. msgstr "Невозможно экспортировать профиль в <filename>{0}</filename>: Плагин записи уведомил об ошибке."
  1235. #, python-brace-format
  1236. msgctxt "@info:status Don't translate the XML tag <filename>!"
  1237. msgid "Failed to import profile from <filename>{0}</filename>:"
  1238. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  1239. #, python-brace-format
  1240. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1241. msgid "Failed to import profile from <filename>{0}</filename>:"
  1242. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>:"
  1243. #, python-brace-format
  1244. msgctxt "@info:status Don't translate the XML tags <filename>!"
  1245. msgid "Failed to import profile from <filename>{0}</filename>: {1}"
  1246. msgstr "Не удалось импортировать профиль из <filename>{0}</filename>: {1}"
  1247. msgctxt "@button"
  1248. msgid "Failed to load packages:"
  1249. msgstr "Пакеты не загружены:"
  1250. msgctxt "@text:error"
  1251. msgid "Failed to load the archive of materials to sync it with printers."
  1252. msgstr "Архив материалов для синхронизации с принтерами не загружен."
  1253. msgctxt "@message:title"
  1254. msgid "Failed to save material archive"
  1255. msgstr "Архив материалов не сохранен"
  1256. msgctxt "@label:category menu label"
  1257. msgid "Favorites"
  1258. msgstr "Избранные"
  1259. msgctxt "@label"
  1260. msgid "Filament Cost"
  1261. msgstr "Стоимость материала"
  1262. msgctxt "@label"
  1263. msgid "Filament length"
  1264. msgstr "Длина материала"
  1265. msgctxt "@label"
  1266. msgid "Filament weight"
  1267. msgstr "Вес материала"
  1268. msgctxt "@title:window"
  1269. msgid "File Already Exists"
  1270. msgstr "Файл уже существует"
  1271. msgctxt "@info:title"
  1272. msgid "File Saved"
  1273. msgstr "Файл сохранён"
  1274. #, python-brace-format
  1275. msgctxt "@info:status"
  1276. msgid "File {0} does not contain any valid profile."
  1277. msgstr "В файле {0} нет подходящих профилей."
  1278. msgctxt "@label:textbox"
  1279. msgid "Filter..."
  1280. msgstr "Фильтр..."
  1281. msgctxt "@info:title"
  1282. msgid "Finding Location"
  1283. msgstr "Поиск места"
  1284. msgctxt "@info:status"
  1285. msgid "Finding new location for objects"
  1286. msgstr "Поиск места для новых объектов"
  1287. msgctxt "@action:button"
  1288. msgid "Finish"
  1289. msgstr "Завершить"
  1290. msgctxt "@label:status"
  1291. msgid "Finished"
  1292. msgstr "Завершено"
  1293. msgctxt "@label:status"
  1294. msgid "Finishes %1 at %2"
  1295. msgstr "Завершение %1 в %2"
  1296. msgctxt "@title:window"
  1297. msgid "Firmware Update"
  1298. msgstr "Обновление прошивки"
  1299. msgctxt "name"
  1300. msgid "Firmware Update Checker"
  1301. msgstr "Проверка обновлений"
  1302. msgctxt "name"
  1303. msgid "Firmware Updater"
  1304. msgstr "Средство обновления прошивки"
  1305. msgctxt "@label"
  1306. msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware."
  1307. msgstr "Невозможно обновить прошивку, так как подключение к принтеру не поддерживает функцию обновления прошивки."
  1308. msgctxt "@label"
  1309. msgid "Firmware can not be updated because there is no connection with the printer."
  1310. msgstr "Невозможно обновить прошивку, так как нет подключения к принтеру."
  1311. msgctxt "@label"
  1312. 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."
  1313. msgstr "Прошивка является программным обеспечением, которое работает на плате вашего 3D принтера. Прошивка управляет шаговыми моторами, регулирует температуру и, в конечном счёте, обеспечивает работу вашего принтера."
  1314. msgctxt "@label"
  1315. msgid "Firmware update completed."
  1316. msgstr "Обновление прошивки завершено."
  1317. msgctxt "@label"
  1318. msgid "Firmware update failed due to an communication error."
  1319. msgstr "Обновление прошивки не удалось из-за ошибки связи."
  1320. msgctxt "@label"
  1321. msgid "Firmware update failed due to an input/output error."
  1322. msgstr "Обновление прошивки не удалось из-за ошибки ввода-вывода."
  1323. msgctxt "@label"
  1324. msgid "Firmware update failed due to an unknown error."
  1325. msgstr "Обновление прошивки не удалось из-за неизвестной ошибки."
  1326. msgctxt "@label"
  1327. msgid "Firmware update failed due to missing firmware."
  1328. msgstr "Обновление прошивки не удалось из-за её отсутствия."
  1329. msgctxt "@label"
  1330. msgid "Firmware version"
  1331. msgstr "Версия прошивки"
  1332. msgctxt "@label"
  1333. msgid "First available"
  1334. msgstr "Первое доступное"
  1335. msgctxt "@label:listbox"
  1336. msgid "Flow"
  1337. msgstr "Поток"
  1338. msgctxt "@text In the UI this is followed by a list of steps the user needs to take."
  1339. msgid "Follow the following steps to load the new material profiles to your printer."
  1340. msgstr "Чтобы загрузить новые профили материалов в принтер, выполните следующие действия."
  1341. msgctxt "@info"
  1342. msgid "Follow the procedure to add a new printer"
  1343. msgstr "Следуйте процедуре добавления нового принтера"
  1344. msgctxt "@text"
  1345. msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers."
  1346. msgstr "Выполнив несколько простых действий, вы сможете синхронизировать все профили материалов со своими принтерами."
  1347. msgctxt "@label"
  1348. msgid "Font"
  1349. msgstr "Шрифт"
  1350. msgctxt "@label"
  1351. 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."
  1352. msgstr "Для каждой позиции, вставьте кусок бумаги под сопло и отрегулируйте высоту стола. Когда кончик сопла немного прижимает бумагу к столу, значит вы выставили правильную высоту стола."
  1353. msgctxt "@info:tooltip"
  1354. msgid "For lithophanes a simple logarithmic model for translucency is available. For height maps the pixel values correspond to heights linearly."
  1355. msgstr "Для литофании предусмотрена простая логарифмическая модель светопроходимости. В картах высот значения пикселей линейно соответствуют высотам."
  1356. msgctxt "@info:tooltip"
  1357. 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."
  1358. msgstr "Для литофании темные пиксели должны соответствовать более толстым частям, чтобы сильнее задерживать проходящий свет. Для схем высот более светлые пиксели обозначают более высокий участок. Поэтому более светлые пиксели должны соответствовать более толстым местам в созданной 3D-модели."
  1359. msgctxt "@option:check"
  1360. msgid "Force layer view compatibility mode (restart required)"
  1361. msgstr "Просматривать слои в режиме совместимости (требуется перезапуск)"
  1362. msgctxt "@action:inmenu menubar:view"
  1363. msgid "Front View"
  1364. msgstr "Вид спереди"
  1365. msgctxt "@info:tooltip"
  1366. msgid "Front View"
  1367. msgstr "Вид спереди"
  1368. msgctxt "@item:inlistbox"
  1369. msgid "G File"
  1370. msgstr "Файл G"
  1371. msgctxt "@info:title"
  1372. msgid "G-code Details"
  1373. msgstr "Параметры G-code"
  1374. msgctxt "@item:inlistbox"
  1375. msgid "G-code File"
  1376. msgstr "Файл G-code"
  1377. msgctxt "name"
  1378. msgid "G-code Profile Reader"
  1379. msgstr "Средство считывания профиля из G-кода"
  1380. msgctxt "name"
  1381. msgid "G-code Reader"
  1382. msgstr "Чтение G-code"
  1383. msgctxt "name"
  1384. msgid "G-code Writer"
  1385. msgstr "Средство записи G-кода"
  1386. msgctxt "@label"
  1387. msgid "G-code flavor"
  1388. msgstr "Вариант G-кода"
  1389. msgctxt "@label Description for application component"
  1390. msgid "G-code generator"
  1391. msgstr "Генератор G-кода"
  1392. msgctxt "@error:not supported"
  1393. msgid "GCodeGzWriter does not support text mode."
  1394. msgstr "Средство записи G-кода с расширением GZ (GCodeGzWriter) не поддерживает текстовый режим."
  1395. msgctxt "@error:not supported"
  1396. msgid "GCodeWriter does not support non-text mode."
  1397. msgstr "Средство записи G-кода (GCodeWriter) не поддерживает нетекстовый режим."
  1398. msgctxt "@item:inlistbox"
  1399. msgid "GIF Image"
  1400. msgstr "GIF изображение"
  1401. msgctxt "@label Description for application dependency"
  1402. msgid "GUI framework"
  1403. msgstr "Фреймворк GUI"
  1404. msgctxt "@label Description for application dependency"
  1405. msgid "GUI framework bindings"
  1406. msgstr "Фреймворк GUI, интерфейс"
  1407. msgctxt "@label"
  1408. msgid "Gantry Height"
  1409. msgstr "Высота портала"
  1410. msgctxt "@title:tab"
  1411. msgid "General"
  1412. msgstr "Общее"
  1413. msgctxt "@label"
  1414. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing."
  1415. msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати."
  1416. msgctxt "@label Description for development tool"
  1417. msgid "Generating Windows installers"
  1418. msgstr "Генерация установщиков для Windows"
  1419. msgctxt "@label:category menu label"
  1420. msgid "Generic"
  1421. msgstr "Универсальные"
  1422. msgctxt "@option:check"
  1423. msgid "Get notifications for plugin updates"
  1424. msgstr "Получать уведомления об обновлениях плагинов"
  1425. msgctxt "@action"
  1426. msgid "Get started"
  1427. msgstr "Приступить"
  1428. msgctxt "@title:tab"
  1429. msgid "Global Settings"
  1430. msgstr "Общие параметры"
  1431. msgctxt "@label Description for application component"
  1432. msgid "Graphical user interface"
  1433. msgstr "Графический интерфейс пользователя"
  1434. msgctxt "@label"
  1435. msgid "Grid Placement"
  1436. msgstr ""
  1437. #, python-brace-format
  1438. msgctxt "@label"
  1439. msgid "Group #{group_nr}"
  1440. msgstr "Группа #{group_nr}"
  1441. msgctxt "@tooltip of pre-heat"
  1442. 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."
  1443. msgstr "Нагрев горячего стола перед печатью. Вы можете продолжать настройки вашей печати, пока стол нагревается, и вам не понадобится ждать нагрева стола для старта печати."
  1444. msgctxt "@tooltip of pre-heat"
  1445. 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."
  1446. msgstr "Нагрев сопла перед печатью. Можно продолжать настройки вашей печати во время нагрева, и вам не понадобится ждать нагрева сопла, когда вы будете готовы приступить к печати."
  1447. msgctxt "@label"
  1448. msgid "Heated Build Plate (official kit or self-built)"
  1449. msgstr "Нагреваемый стол (официальный набор или самодельный)"
  1450. msgctxt "@label"
  1451. msgid "Heated bed"
  1452. msgstr "Нагреваемый стол"
  1453. msgctxt "@label"
  1454. msgid "Heated build volume"
  1455. msgstr "Подогреваемый объем печати"
  1456. msgctxt "@action:label"
  1457. msgid "Height (mm)"
  1458. msgstr "Высота (мм)"
  1459. msgctxt "@label"
  1460. msgid "Helpers"
  1461. msgstr "Помощники"
  1462. msgctxt "@label"
  1463. msgid "Hide all connected printers"
  1464. msgstr "Скрыть все подключенные принтеры"
  1465. msgctxt "@action:menu"
  1466. msgid "Hide this setting"
  1467. msgstr "Спрятать этот параметр"
  1468. msgctxt "@info:tooltip"
  1469. msgid "Highlight missing or extraneous surfaces of the model using warning signs. The toolpaths will often be missing parts of the intended geometry."
  1470. msgstr "Отметьте отсутствующие или лишние поверхности модели с помощью предупреждающих знаков. В путях инструментов часто будут отсутствовать детали предполагаемой геометрии."
  1471. msgctxt "@info:tooltip"
  1472. msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly."
  1473. msgstr "Подсвечивать красным области модели, требующие поддержек. Без поддержек эти области не будут напечатаны правильно."
  1474. msgctxt "@button"
  1475. msgid "How to load new material profiles to my printer"
  1476. msgstr "Загрузка новых профилей материалов в принтер"
  1477. msgctxt "@action:button"
  1478. msgid "How to update"
  1479. msgstr "Порядок обновления"
  1480. msgctxt "@text:window"
  1481. msgid "I don't want to send anonymous data"
  1482. msgstr "Не хочу отправлять анонимные данные"
  1483. msgctxt "@label:status"
  1484. msgid "Idle"
  1485. msgstr "Простой"
  1486. msgctxt "@label"
  1487. msgid "If you are trying to add a new UltiMaker printer to Cura"
  1488. msgstr "Если вы пытаетесь добавить новый принтер UltiMaker в Cura"
  1489. msgctxt "@label"
  1490. msgid "If your printer is not listed, read the <a href='%1'>network printing troubleshooting guide</a>"
  1491. msgstr "Если ваш принтер отсутствует в списке, обратитесь к <a href='%1'>руководству по решению проблем с сетевой печатью</a>"
  1492. msgctxt "name"
  1493. msgid "Image Reader"
  1494. msgstr "Чтение изображений"
  1495. msgctxt "@action:button"
  1496. msgid "Import"
  1497. msgstr "Импорт"
  1498. msgctxt "@title:window"
  1499. msgid "Import Material"
  1500. msgstr "Импортировать материал"
  1501. msgctxt "@title:window"
  1502. msgid "Import Profile"
  1503. msgstr "Импорт профиля"
  1504. msgctxt "@action:button"
  1505. msgid "Import all as models"
  1506. msgstr "Импортировать всё как модели"
  1507. msgctxt "@action:button"
  1508. msgid "Import models"
  1509. msgstr "Импортировать модели"
  1510. msgctxt "@label:MonitorStatus"
  1511. msgid "In maintenance. Please check the printer"
  1512. msgstr "В режиме обслуживания. Пожалуйста, проверьте принтер"
  1513. msgctxt "@info"
  1514. msgid "In order to monitor your print from Cura, please connect the printer."
  1515. msgstr "Чтобы отслеживать задания печати при помощи Cura, подключите принтер."
  1516. msgctxt "@label"
  1517. msgid "In order to start using Cura you will need to configure a printer."
  1518. msgstr "Чтобы начать пользоваться Cura, необходимо настроить принтер."
  1519. msgctxt "@button"
  1520. msgid "In order to use the package you will need to restart Cura"
  1521. msgstr "Для работы с пакетом необходимо перезапустить Cura"
  1522. msgctxt "@label"
  1523. msgid "Infill"
  1524. msgstr "Заполнение"
  1525. msgctxt "@tooltip"
  1526. msgid "Infill"
  1527. msgstr "Заполнение"
  1528. msgctxt "infill_sparse_density description"
  1529. msgid "Infill Density"
  1530. msgstr "Плотность заполнения"
  1531. msgctxt "@action:label"
  1532. msgid "Infill Pattern"
  1533. msgstr "Шаблон заполнения"
  1534. msgctxt "@item:inlistbox"
  1535. msgid "Infill mesh only"
  1536. msgstr "Заполнение объекта"
  1537. msgctxt "@label"
  1538. msgid "Infill overlapping with this model is modified."
  1539. msgstr "Изменено заполнение перекрытия с этой моделью."
  1540. msgctxt "@info:title"
  1541. msgid "Information"
  1542. msgstr "Информация"
  1543. msgctxt "@title"
  1544. msgid "Information"
  1545. msgstr "Информация"
  1546. msgctxt "@info:progress"
  1547. msgid "Initializing Active Machine..."
  1548. msgstr "Инициализация активной машины..."
  1549. msgctxt "@info:progress"
  1550. msgid "Initializing build volume..."
  1551. msgstr "Инициализация объема печати..."
  1552. msgctxt "@info:progress"
  1553. msgid "Initializing engine..."
  1554. msgstr "Инициализация ядра..."
  1555. msgctxt "@info:progress"
  1556. msgid "Initializing machine manager..."
  1557. msgstr "Инициализация диспетчера машин..."
  1558. msgctxt "@label"
  1559. msgid "Inner Wall"
  1560. msgstr "Внутренняя стенка"
  1561. msgctxt "@tooltip"
  1562. msgid "Inner Walls"
  1563. msgstr "Внутренние стенки"
  1564. msgctxt "@text"
  1565. msgid "Insert the USB stick into your printer and launch the procedure to load new material profiles."
  1566. msgstr "Вставьте USB-накопитель в принтер и запустите процедуру загрузки новых профилей материалов."
  1567. msgctxt "@button"
  1568. msgid "Install"
  1569. msgstr "Установить"
  1570. msgctxt "@header"
  1571. msgid "Install Materials"
  1572. msgstr "Установка материалов"
  1573. msgctxt "@window:title"
  1574. msgid "Install Package"
  1575. msgstr "Установить пакет"
  1576. msgctxt "@action:button"
  1577. msgid "Install Packages"
  1578. msgstr ""
  1579. msgctxt "@header"
  1580. msgid "Install Packages"
  1581. msgstr ""
  1582. msgctxt "@header"
  1583. msgid "Install Plugins"
  1584. msgstr "Установка встраиваемых модулей"
  1585. msgctxt "@action:button"
  1586. msgid "Install missing packages"
  1587. msgstr ""
  1588. msgctxt "@title"
  1589. msgid "Install missing packages"
  1590. msgstr ""
  1591. msgctxt "@label"
  1592. msgid "Install missing packages from project file."
  1593. msgstr ""
  1594. msgctxt "@button"
  1595. msgid "Install pending updates"
  1596. msgstr "Установить ожидающие обновления"
  1597. msgctxt "@label"
  1598. msgid "Installed Materials"
  1599. msgstr "Установленные материалы"
  1600. msgctxt "@label"
  1601. msgid "Installed Plugins"
  1602. msgstr "Установленные встраиваемые модули"
  1603. msgctxt "@button"
  1604. msgid "Installing..."
  1605. msgstr "Установка..."
  1606. msgctxt "@action:label"
  1607. msgid "Intent"
  1608. msgstr ""
  1609. msgctxt "@label"
  1610. msgid "Interface"
  1611. msgstr "Интерфейс"
  1612. msgctxt "@label Description for application component"
  1613. msgid "Interprocess communication library"
  1614. msgstr "Библиотека межпроцессного взаимодействия"
  1615. msgctxt "@title:window"
  1616. msgid "Invalid IP address"
  1617. msgstr "Недействительный IP-адрес"
  1618. msgctxt "@info:status"
  1619. msgid "Invalid file URL:"
  1620. msgstr "Неправильный URL-адрес файла:"
  1621. msgctxt "@action:button"
  1622. msgid "Invert the direction of camera zoom."
  1623. msgstr "Инвертировать направление увеличения камеры."
  1624. msgctxt "@label"
  1625. msgid "Is printed as support."
  1626. msgstr "Печатается как поддержка."
  1627. msgctxt "@text"
  1628. msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware."
  1629. msgstr "Похоже, у вас нет совместимых принтеров, подключенных к Digital Factory. Убедитесь, что ваш принтер подключен и на нем установлена последняя версия прошивки."
  1630. msgctxt "@item:inlistbox"
  1631. msgid "JPEG Image"
  1632. msgstr "JPEG изображение"
  1633. msgctxt "@item:inlistbox"
  1634. msgid "JPG Image"
  1635. msgstr "JPG изображение"
  1636. msgctxt "@label Description for application dependency"
  1637. msgid "JSON parser"
  1638. msgstr "Парсер JSON"
  1639. msgctxt "@label"
  1640. msgid "Job Name"
  1641. msgstr "Имя задачи"
  1642. msgctxt "@label"
  1643. msgid "Jog Distance"
  1644. msgstr "Расстояние толчковой подачи"
  1645. msgctxt "@label"
  1646. msgid "Jog Position"
  1647. msgstr "Положение толчковой подачи"
  1648. msgctxt "@option:discardOrKeep"
  1649. msgid "Keep and never ask again"
  1650. msgstr "Сохранить и никогда больше не спрашивать"
  1651. msgctxt "@action:button"
  1652. msgid "Keep changes"
  1653. msgstr "Сохранить изменения"
  1654. msgctxt "@action:button"
  1655. msgid "Keep printer configurations"
  1656. msgstr "Сохранить конфигурации принтера"
  1657. msgctxt "@action:menu"
  1658. msgid "Keep this setting visible"
  1659. msgstr "Оставить этот параметр видимым"
  1660. msgctxt "@label The argument is a timestamp"
  1661. msgid "Last update: %1"
  1662. msgstr "Последнее обновление: %1"
  1663. msgctxt "@label:listbox"
  1664. msgid "Layer Thickness"
  1665. msgstr "Толщина слоя"
  1666. msgctxt "@item:inlistbox"
  1667. msgid "Layer view"
  1668. msgstr "Просмотр слоёв"
  1669. msgctxt "@button:label"
  1670. msgid "Learn More"
  1671. msgstr "Узнать Больше"
  1672. msgctxt "@button"
  1673. msgid "Learn how to connect your printer to Digital Factory"
  1674. msgstr "Узнайте, как подключить принтер к Digital Factory"
  1675. msgctxt "@tooltip:button"
  1676. msgid "Learn how to get started with UltiMaker Cura."
  1677. msgstr "Узнайте, как начать работу с UltiMaker Cura."
  1678. msgctxt "@action"
  1679. msgid "Learn more"
  1680. msgstr "Узнать больше"
  1681. msgctxt "@action:button"
  1682. msgid "Learn more"
  1683. msgstr "Узнать больше"
  1684. msgctxt "@button"
  1685. msgid "Learn more"
  1686. msgstr "Узнать больше"
  1687. msgctxt "@button:label"
  1688. msgid "Learn more"
  1689. msgstr "Узнать больше"
  1690. msgctxt "@action:button"
  1691. msgid "Learn more about Cura print profiles"
  1692. msgstr "Подробнее о профилях печати Cura"
  1693. msgctxt "@button"
  1694. msgid "Learn more about adding printers to Cura"
  1695. msgstr "Подробнее о добавлении принтеров в Cura"
  1696. msgctxt "@label"
  1697. msgid "Learn more about project packages."
  1698. msgstr ""
  1699. msgctxt "@action:inmenu menubar:view"
  1700. msgid "Left Side View"
  1701. msgstr "Вид слева"
  1702. msgctxt "@info:tooltip"
  1703. msgid "Left View"
  1704. msgstr "Вид слева"
  1705. msgctxt "name"
  1706. msgid "Legacy Cura Profile Reader"
  1707. msgstr "Чтение устаревших профилей Cura"
  1708. msgctxt "@tooltip:button"
  1709. msgid "Let developers know that something is going wrong."
  1710. msgstr "Сообщите разработчикам о неполадках."
  1711. msgctxt "@action"
  1712. msgid "Level build plate"
  1713. msgstr "Выравнивание стола"
  1714. msgctxt "@item:inlistbox"
  1715. msgid "Lighter is higher"
  1716. msgstr "Светлые выше"
  1717. msgctxt "@label:listbox"
  1718. msgid "Line Type"
  1719. msgstr "Тип линии"
  1720. msgctxt "@label:listbox"
  1721. msgid "Line Width"
  1722. msgstr "Ширина линии"
  1723. msgctxt "@item:inlistbox"
  1724. msgid "Linear"
  1725. msgstr "Линейный"
  1726. msgctxt "@label Description for development tool"
  1727. msgid "Linux cross-distribution application deployment"
  1728. msgstr "Развертывание приложений для различных дистрибутивов Linux"
  1729. msgctxt "@label"
  1730. msgid "Load %3 as material %1 (This cannot be overridden)."
  1731. msgstr "Загрузите %3 как материал %1 (переопределение этого действия невозможно)."
  1732. msgctxt "@button"
  1733. msgid "Load more"
  1734. msgstr "Загрузить еще"
  1735. msgctxt "@button"
  1736. msgid "Loading"
  1737. msgstr "Загрузка"
  1738. msgctxt "@action:warning"
  1739. msgid "Loading a project will clear all models on the build plate."
  1740. msgstr "Загрузка проекта приведет к удалению всех моделей на рабочем столе."
  1741. msgctxt "@label"
  1742. msgid "Loading available configurations from the printer..."
  1743. msgstr "Загрузка доступных конфигураций из принтера..."
  1744. msgctxt "@info:progress"
  1745. msgid "Loading interface..."
  1746. msgstr "Загрузка интерфейса..."
  1747. msgctxt "@info:progress"
  1748. msgid "Loading machines..."
  1749. msgstr "Загрузка принтеров..."
  1750. msgctxt "@label:status"
  1751. msgid "Loading..."
  1752. msgstr "Загрузка..."
  1753. msgctxt "@title"
  1754. msgid "Loading..."
  1755. msgstr "Загрузка..."
  1756. msgctxt "@label:category menu label"
  1757. msgid "Local printers"
  1758. msgstr "Локальные принтеры"
  1759. msgctxt "@info:title"
  1760. msgid "Log-in failed"
  1761. msgstr "Вход в систему не выполнен"
  1762. msgctxt "@info:title"
  1763. msgid "Login failed"
  1764. msgstr "Вход не выполнен"
  1765. msgctxt "@title:groupbox"
  1766. msgid "Logs"
  1767. msgstr "Журналы"
  1768. msgctxt "description"
  1769. msgid "Logs certain events so that they can be used by the crash reporter"
  1770. msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы"
  1771. msgctxt "@label:MonitorStatus"
  1772. msgid "Lost connection with the printer"
  1773. msgstr "Потеряно соединение с принтером"
  1774. msgctxt "@action"
  1775. msgid "Machine Settings"
  1776. msgstr "Параметры принтера"
  1777. msgctxt "name"
  1778. msgid "Machine Settings Action"
  1779. msgstr "Параметры принтера действие"
  1780. msgctxt "@backuplist:label"
  1781. msgid "Machines"
  1782. msgstr "Принтеры"
  1783. msgctxt "@text"
  1784. msgid "Make sure all your printers are turned ON and connected to Digital Factory."
  1785. msgstr "Убедитесь, что все ваши принтеры включены и подключены к Digital Factory."
  1786. msgctxt "@info:generic"
  1787. 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."
  1788. msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code."
  1789. msgctxt "@action:inmenu"
  1790. msgid "Manage Materials..."
  1791. msgstr "Управление материалами..."
  1792. msgctxt "@action:inmenu menubar:printer"
  1793. msgid "Manage Pr&inters..."
  1794. msgstr "Управление принтерами..."
  1795. msgctxt "@action:inmenu menubar:profile"
  1796. msgid "Manage Profiles..."
  1797. msgstr "Управление профилями..."
  1798. msgctxt "@action:inmenu"
  1799. msgid "Manage Setting Visibility..."
  1800. msgstr "Управление видимостью настроек..."
  1801. msgctxt "@item:inmenu"
  1802. msgid "Manage backups"
  1803. msgstr "Управление резервными копиями"
  1804. msgctxt "@label link to connect manager"
  1805. msgid "Manage in browser"
  1806. msgstr "Управление через браузер"
  1807. msgctxt "@header"
  1808. msgid "Manage packages"
  1809. msgstr "Управление пакетами"
  1810. msgctxt "@info:tooltip"
  1811. msgid "Manage packages"
  1812. msgstr "Управление пакетами"
  1813. msgctxt "@action"
  1814. msgid "Manage print jobs"
  1815. msgstr "Управление заданиями печати"
  1816. msgctxt "@label link to Connect and Cloud interfaces"
  1817. msgid "Manage printer"
  1818. msgstr "Управление принтером"
  1819. msgctxt "@button"
  1820. msgid "Manage printers"
  1821. msgstr "Управление принтерами"
  1822. msgctxt "@text"
  1823. msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly."
  1824. msgstr "Здесь можно управлять встраиваемыми модулями Ultimaker Cura и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек."
  1825. msgctxt "description"
  1826. msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website."
  1827. msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker."
  1828. msgctxt "description"
  1829. msgid "Manages network connections to UltiMaker networked printers."
  1830. msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker."
  1831. msgctxt "@label"
  1832. msgid "Manufacturer"
  1833. msgstr "Производитель"
  1834. msgctxt "@action:button"
  1835. msgid "Marketplace"
  1836. msgstr "Магазин"
  1837. msgctxt "@label"
  1838. msgid "Marketplace"
  1839. msgstr "Магазин"
  1840. msgctxt "name"
  1841. msgid "Marketplace"
  1842. msgstr "Магазин"
  1843. msgctxt "@action:label"
  1844. msgid "Material"
  1845. msgstr "Материал"
  1846. msgctxt "@label"
  1847. msgid "Material"
  1848. msgstr "Материал"
  1849. msgctxt "@label:category menu label"
  1850. msgid "Material"
  1851. msgstr "Материал"
  1852. msgctxt "@label:listbox"
  1853. msgid "Material Color"
  1854. msgstr "Цвет материала"
  1855. msgctxt "name"
  1856. msgid "Material Profiles"
  1857. msgstr "Профили материалов"
  1858. msgctxt "@label"
  1859. msgid "Material Type"
  1860. msgstr "Тип материала"
  1861. msgctxt "@title"
  1862. msgid "Material color picker"
  1863. msgstr "Выбор цвета материала"
  1864. msgctxt "@label"
  1865. msgid "Material estimation"
  1866. msgstr "Оценка материала"
  1867. msgctxt "@title:header"
  1868. msgid "Material profiles successfully synced with the following printers:"
  1869. msgstr "Профили материалов успешно синхронизированы со следующими принтерами:"
  1870. msgctxt "@action:label"
  1871. msgid "Material settings"
  1872. msgstr "Параметры материала"
  1873. msgctxt "@backuplist:label"
  1874. msgid "Materials"
  1875. msgstr "Материалы"
  1876. msgctxt "@button"
  1877. msgid "Materials"
  1878. msgstr "Материалы"
  1879. msgctxt "@title:tab"
  1880. msgid "Materials"
  1881. msgstr "Материалы"
  1882. msgctxt "@label"
  1883. msgid "Materials compatible with active printer:"
  1884. msgstr "Материалы, совместимые с активным принтером:"
  1885. msgctxt "@label"
  1886. msgid "Mesh Type"
  1887. msgstr "Тип объекта"
  1888. msgctxt "@action:label"
  1889. msgid "Mode"
  1890. msgstr "Режим"
  1891. msgctxt "name"
  1892. msgid "Model Checker"
  1893. msgstr "Средство проверки моделей"
  1894. msgctxt "@info:title"
  1895. msgid "Model Errors"
  1896. msgstr "Ошибки модели"
  1897. msgctxt "@item:inmenu"
  1898. msgid "Modify G-Code"
  1899. msgstr "Изменить G-код"
  1900. msgctxt "@label"
  1901. msgid "Modify settings for overlaps"
  1902. msgstr "Изменить настройки для перекрытий"
  1903. msgctxt "@item:inmenu"
  1904. msgid "Monitor"
  1905. msgstr "Монитор"
  1906. msgctxt "name"
  1907. msgid "Monitor Stage"
  1908. msgstr "Этап мониторинга"
  1909. msgctxt "@action:button"
  1910. msgid "Monitor print"
  1911. msgstr "Мониторинг печати"
  1912. msgctxt "@tooltip:button"
  1913. msgid "Monitor print jobs and reprint from your print history."
  1914. msgstr "Отслеживайте задания печати и запускайте их повторно из истории печати."
  1915. msgctxt "@tooltip:button"
  1916. msgid "Monitor printers in Ultimaker Digital Factory."
  1917. msgstr "Следите за своими принтерами в Ultimaker Digital Factory."
  1918. msgctxt "@info"
  1919. msgid "Monitor your printers from everywhere using Ultimaker Digital Factory"
  1920. msgstr "Следите за своими принтерами откуда угодно с помощью Ultimaker Digital Factory"
  1921. msgctxt "@title:window"
  1922. msgid "More information on anonymous data collection"
  1923. msgstr "Дополнительная информация о сборе анонимных данных"
  1924. msgctxt "@window:title"
  1925. msgid "Move print job to top"
  1926. msgstr "Переместить задание печати в начало очереди"
  1927. msgctxt "@action:button"
  1928. msgid "Move to Next Position"
  1929. msgstr "Перейти к следующей позиции"
  1930. msgctxt "@label"
  1931. msgid "Move to top"
  1932. msgstr "Переместить в начало"
  1933. msgctxt "@info:tooltip"
  1934. msgid "Moves the camera so the model is in the center of the view when a model is selected"
  1935. msgstr "Перемещать камеру так, чтобы выбранная модель помещалась в центр экрана"
  1936. msgctxt "@action:inmenu menubar:edit"
  1937. msgid "Multiply Selected"
  1938. msgstr "Размножить выбранное"
  1939. msgctxt "@title:window"
  1940. msgid "Multiply Selected Model"
  1941. msgid_plural "Multiply Selected Models"
  1942. msgstr[0] "Размножить выбранную модель"
  1943. msgstr[1] "Размножить выбранные модели"
  1944. msgstr[2] "Размножить выбранные модели"
  1945. msgctxt "@info"
  1946. msgid "Multiply selected item and place them in a grid of build plate."
  1947. msgstr ""
  1948. msgctxt "@info:status"
  1949. msgid "Multiplying and placing objects"
  1950. msgstr "Размножение и размещение объектов"
  1951. msgctxt "@title"
  1952. msgid "My Backups"
  1953. msgstr "Мои резервные копии"
  1954. msgctxt "@label:button"
  1955. msgid "My printers"
  1956. msgstr "Мои принтеры"
  1957. msgctxt "@action:label"
  1958. msgid "Name"
  1959. msgstr "Название"
  1960. msgctxt "@label:category menu label"
  1961. msgid "Network enabled printers"
  1962. msgstr "Подключенные к сети принтеры"
  1963. msgctxt "@info:title"
  1964. msgid "Network error"
  1965. msgstr "Ошибка сети"
  1966. #, python-format
  1967. msgctxt "@info:title The %s gets replaced with the printer name."
  1968. msgid "New %s stable firmware available"
  1969. msgstr "Доступна новая стабильная прошивка %s"
  1970. msgctxt "@textfield:placeholder"
  1971. msgid "New Custom Profile"
  1972. msgstr "Новый пользовательский профиль"
  1973. msgctxt "@label"
  1974. msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely."
  1975. msgstr "Новые принтеры UltiMaker можно подключить к Digital Factory и управлять ими удаленно."
  1976. #, python-brace-format
  1977. msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!"
  1978. msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}."
  1979. msgstr "Для {machine_name} доступны новые функции или исправления! Если у вас не установлена самая последняя версия прошивки принтера, рекомендуем обновить ее до версии {latest_version}."
  1980. msgctxt "@action:button"
  1981. msgid "New materials installed"
  1982. msgstr "Установлены новые материалы"
  1983. msgctxt "info:status"
  1984. msgid "New printer detected from your Ultimaker account"
  1985. msgid_plural "New printers detected from your Ultimaker account"
  1986. msgstr[0] "Новый принтер обнаружен из учетной записи Ultimaker"
  1987. msgstr[1] "Новых принтера обнаружено из учетной записи Ultimaker"
  1988. msgstr[2] "Новых принтеров обнаружено из учетной записи Ultimaker"
  1989. msgctxt "@title:window"
  1990. msgid "New project"
  1991. msgstr "Новый проект"
  1992. msgctxt "@action:button"
  1993. msgid "Next"
  1994. msgstr "Следующий"
  1995. msgctxt "@button"
  1996. msgid "Next"
  1997. msgstr "Следующий"
  1998. msgctxt "@info:title"
  1999. msgid "Nightly build"
  2000. msgstr ""
  2001. msgctxt "@info"
  2002. msgid "No"
  2003. msgstr "Нет"
  2004. msgctxt "@info"
  2005. msgid "No compatibility information"
  2006. msgstr "Нет информации о совместимости"
  2007. msgctxt "@description"
  2008. msgid "No compatible printers, that are currently online, were found."
  2009. msgstr "В настоящее время в сети нет совместимых принтеров."
  2010. msgctxt "@label"
  2011. msgid "No cost estimation available"
  2012. msgstr "Оценка расходов недоступна"
  2013. #, python-brace-format
  2014. msgctxt "@info:status Don't translate the XML tags <filename>!"
  2015. msgid "No custom profile to import in file <filename>{0}</filename>"
  2016. msgstr "Отсутствует собственный профиль для импорта в файл <filename>{0}</filename>"
  2017. msgctxt "@label"
  2018. msgid "No items to select from"
  2019. msgstr "Нет элементов для выбора"
  2020. msgctxt "@info:title"
  2021. msgid "No layers to show"
  2022. msgstr "Нет слоев для отображения"
  2023. msgctxt "@message"
  2024. msgid "No more results to load"
  2025. msgstr "Больше нет результатов для загрузки"
  2026. msgctxt "@error:zip"
  2027. msgid "No permission to write the workspace here."
  2028. msgstr "Права на запись рабочей среды отсутствуют."
  2029. msgctxt "@title:header"
  2030. msgid "No printers found"
  2031. msgstr "Принтеры не обнаружены"
  2032. msgctxt "@label"
  2033. msgid "No printers found in your account?"
  2034. msgstr "В учетной записи нет принтеров?"
  2035. msgctxt "@message:text %1 is the name the printer uses for 'nozzle'."
  2036. msgid "No profiles are available for the selected material/%1 configuration. Please change your configuration."
  2037. msgstr "Нет профилей для выбранного материала/конфигурации %1. Пожалуйста, измените конфигурацию."
  2038. msgctxt "@message"
  2039. msgid "No results found with current filter"
  2040. msgstr "Поиск с текущим фильтром не дал результатов"
  2041. msgctxt "@label"
  2042. msgid "No time estimation available"
  2043. msgstr "Оценка времени недоступна"
  2044. msgctxt "@button"
  2045. msgid "Non UltiMaker printer"
  2046. msgstr "Принтер, не использующий UltiMaker"
  2047. msgctxt "@info No materials"
  2048. msgid "None"
  2049. msgstr "Нет"
  2050. msgctxt "@label"
  2051. msgid "Normal model"
  2052. msgstr "Нормальная модель"
  2053. msgctxt "@info:title"
  2054. msgid "Not a group host"
  2055. msgstr "Не главный принтер группы"
  2056. msgctxt "@label:MonitorStatus"
  2057. msgid "Not connected to a printer"
  2058. msgstr "Не подключен к принтеру"
  2059. msgctxt "@action:label"
  2060. msgid "Not in profile"
  2061. msgstr "Вне профиля"
  2062. msgctxt "@menuitem"
  2063. msgid "Not overridden"
  2064. msgstr "Не переопределен"
  2065. msgctxt "@info:not supported profile"
  2066. msgid "Not supported"
  2067. msgstr "Не поддерживается"
  2068. msgctxt "@label"
  2069. msgid "Not yet initialized"
  2070. msgstr "Еще не инициализировано"
  2071. msgctxt "@info:status"
  2072. msgid "Nothing is shown because you need to slice first."
  2073. msgstr "Ничего не отображается, поскольку сначала нужно выполнить нарезку на слои."
  2074. msgctxt "@label"
  2075. msgid "Nozzle"
  2076. msgstr "Сопло"
  2077. msgctxt "@title:label"
  2078. msgid "Nozzle Settings"
  2079. msgstr "Параметры сопла"
  2080. msgctxt "@label"
  2081. msgid "Nozzle offset X"
  2082. msgstr "Смещение сопла по оси X"
  2083. msgctxt "@label"
  2084. msgid "Nozzle offset Y"
  2085. msgstr "Смещение сопла по оси Y"
  2086. msgctxt "@label"
  2087. msgid "Nozzle size"
  2088. msgstr "Диаметр сопла"
  2089. msgctxt "@label"
  2090. msgid "Number of Copies"
  2091. msgstr "Количество копий"
  2092. msgctxt "@label"
  2093. msgid "Number of Extruders"
  2094. msgstr "Количество экструдеров"
  2095. msgctxt "@action:button"
  2096. msgid "OK"
  2097. msgstr "OK"
  2098. msgctxt "@label"
  2099. msgid "OS language"
  2100. msgstr "Язык ОС"
  2101. msgctxt "@label"
  2102. msgid "Object list"
  2103. msgstr "Список объектов"
  2104. msgctxt "@label:Should be short"
  2105. msgid "Off"
  2106. msgstr "Выкл"
  2107. msgctxt "@label:Should be short"
  2108. msgid "On"
  2109. msgstr "Вкл"
  2110. msgctxt "@label"
  2111. msgid "Only Show Top Layers"
  2112. msgstr "Показать только верхние слои"
  2113. #, python-brace-format
  2114. msgctxt "@info:status"
  2115. msgid "Only one G-code file can be loaded at a time. Skipped importing {0}"
  2116. msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}"
  2117. msgctxt "@action:button"
  2118. msgid "Open"
  2119. msgstr "Открыть"
  2120. msgctxt "@title:menu menubar:file"
  2121. msgid "Open &Recent"
  2122. msgstr "Открыть недавние"
  2123. msgctxt "@item:inlistbox 'Open' is part of the name of this file format."
  2124. msgid "Open Compressed Triangle Mesh"
  2125. msgstr "Open Compressed Triangle Mesh"
  2126. msgctxt "@title:window"
  2127. msgid "Open File(s)"
  2128. msgstr "Открыть файл(ы)"
  2129. msgctxt "@title:menu menubar:file"
  2130. msgid "Open File(s)..."
  2131. msgstr "Открыть файл(ы)..."
  2132. msgctxt "@title:window"
  2133. msgid "Open Project"
  2134. msgstr "Открытие проекта"
  2135. msgctxt "@info:title"
  2136. msgid "Open Project File"
  2137. msgstr "Открыть файл проекта"
  2138. msgctxt "@action:label"
  2139. msgid "Open With"
  2140. msgstr "Открыть с помощью"
  2141. msgctxt "@action:button"
  2142. msgid "Open as project"
  2143. msgstr "Открыть как проект"
  2144. msgctxt "@title:window"
  2145. msgid "Open file(s)"
  2146. msgstr "Открыть файл(ы)"
  2147. msgctxt "@action:button"
  2148. msgid "Open project anyway"
  2149. msgstr "Все равно открыть проект"
  2150. msgctxt "@title:window"
  2151. msgid "Open project file"
  2152. msgstr "Открыть файл проекта"
  2153. msgctxt "@label OpenGL version"
  2154. msgid "OpenGL"
  2155. msgstr "OpenGL"
  2156. msgctxt "@label"
  2157. msgid "Opening and saving files"
  2158. msgstr "Открытие и сохранение файлов"
  2159. msgctxt "@header"
  2160. msgid "Optimized for Air Manager"
  2161. msgstr "Оптимизировано для Air Manager"
  2162. msgctxt "@label"
  2163. msgid "Origin at center"
  2164. msgstr "Начало координат в центре"
  2165. msgid "Orthographic"
  2166. msgstr "Ортографическая"
  2167. msgctxt "@action:inmenu menubar:view"
  2168. msgid "Orthographic"
  2169. msgstr "Ортографическая"
  2170. msgctxt "@tooltip"
  2171. msgid "Other"
  2172. msgstr "Другое"
  2173. msgctxt "@label"
  2174. msgid "Other models overlapping with this model are modified."
  2175. msgstr "Другие модели, имеющие перекрытия с этой моделью, изменены."
  2176. msgctxt "@label"
  2177. msgid "Other printers"
  2178. msgstr "Другие принтеры"
  2179. msgctxt "@tooltip"
  2180. msgid "Outer Wall"
  2181. msgstr "Внешняя стенка"
  2182. msgctxt "@label"
  2183. msgid "Overlaps with this model are not supported."
  2184. msgstr "Перекрытия с этой моделью не поддерживаются."
  2185. msgctxt "@action:button"
  2186. msgid "Override"
  2187. msgstr "Переопределить"
  2188. msgctxt "@label"
  2189. msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print."
  2190. msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати."
  2191. msgctxt "@label %1 is the number of settings it overrides."
  2192. msgid "Overrides %1 setting."
  2193. msgid_plural "Overrides %1 settings."
  2194. msgstr[0] "Переопределяет %1 настройку."
  2195. msgstr[1] "Переопределяет %1 настройки."
  2196. msgstr[2] "Переопределяет %1 настроек."
  2197. msgctxt "@title:menu menubar:toplevel"
  2198. msgid "P&references"
  2199. msgstr "Настройки"
  2200. msgctxt "@item:inlistbox"
  2201. msgid "PNG Image"
  2202. msgstr "PNG изображение"
  2203. msgctxt "@header"
  2204. msgid "Package details"
  2205. msgstr "Сведения о пакете"
  2206. msgctxt "@label Description for development tool"
  2207. msgid "Packaging Python-applications"
  2208. msgstr "Упаковка Python-приложений"
  2209. msgctxt "@info:status"
  2210. msgid "Parsing G-code"
  2211. msgstr "Обработка G-code"
  2212. msgctxt "@action:inmenu menubar:edit"
  2213. msgid "Paste from clipboard"
  2214. msgstr ""
  2215. msgctxt "@label"
  2216. msgid "Pause"
  2217. msgstr "Пауза"
  2218. msgctxt "@label:MonitorStatus"
  2219. msgid "Paused"
  2220. msgstr "Приостановлен"
  2221. msgctxt "@label:status"
  2222. msgid "Paused"
  2223. msgstr "Приостановлено"
  2224. msgctxt "@label"
  2225. msgid "Pausing..."
  2226. msgstr "Приостановка..."
  2227. msgctxt "@label:status"
  2228. msgid "Pausing..."
  2229. msgstr "Приостановка..."
  2230. msgctxt "@label"
  2231. msgid "Per Model Settings"
  2232. msgstr "Параметры модели"
  2233. msgctxt "name"
  2234. msgid "Per Model Settings Tool"
  2235. msgstr "Инструмент для настройки каждой модели"
  2236. msgid "Perspective"
  2237. msgstr "Перспективная"
  2238. msgctxt "@action:inmenu menubar:view"
  2239. msgid "Perspective"
  2240. msgstr "Перспективная"
  2241. msgctxt "@action:label"
  2242. msgid "Placement"
  2243. msgstr "Размещение"
  2244. msgctxt "@info:title"
  2245. msgid "Placing Object"
  2246. msgstr "Размещение объекта"
  2247. msgctxt "@info:title"
  2248. msgid "Placing Objects"
  2249. msgstr "Размещение объектов"
  2250. msgctxt "@label Type of platform"
  2251. msgid "Platform"
  2252. msgstr "Платформа"
  2253. msgctxt "@info"
  2254. msgid "Please connect your printer to the network."
  2255. msgstr "Подключите принтер к сети."
  2256. msgctxt "@text"
  2257. msgid "Please enter a valid IP address."
  2258. msgstr "Введите действительный IP-адрес."
  2259. msgctxt "@message"
  2260. msgid "Please give the required permissions when authorizing this application."
  2261. msgstr "Дайте необходимые разрешения при авторизации в этом приложении."
  2262. msgctxt "@info"
  2263. msgid ""
  2264. "Please make sure your printer has a connection:\n"
  2265. "- Check if the printer is turned on.\n"
  2266. "- Check if the printer is connected to the network.\n"
  2267. "- Check if you are signed in to discover cloud-connected printers."
  2268. msgstr ""
  2269. "Проверьте наличие подключения к принтеру:\n"
  2270. "- Убедитесь, что принтер включен.\n"
  2271. "- Убедитесь, что принтер подключен к сети.\n"
  2272. "- Убедитесь, что вы вошли в систему (это необходимо для поиска принтеров, подключенных к облаку)."
  2273. msgctxt "@text"
  2274. msgid "Please name your printer"
  2275. msgstr "Присвойте имя принтеру"
  2276. msgctxt "@warning:status"
  2277. msgid "Please prepare G-code before exporting."
  2278. msgstr "Подготовьте G-код перед экспортом."
  2279. msgctxt "@info"
  2280. msgid "Please provide a name for this profile."
  2281. msgstr "Укажите имя для данного профиля."
  2282. msgctxt "@info"
  2283. msgid "Please provide a new name."
  2284. msgstr "Укажите новое имя."
  2285. msgctxt "@text"
  2286. msgid "Please read and agree with the plugin licence."
  2287. msgstr "Прочитайте лицензию встраиваемого модуля и примите ее условия."
  2288. msgctxt "@label:MonitorStatus"
  2289. msgid "Please remove the print"
  2290. msgstr "Пожалуйста, удалите напечатанное"
  2291. msgctxt "@info:status"
  2292. msgid ""
  2293. "Please review settings and check if your models:\n"
  2294. "- Fit within the build volume\n"
  2295. "- Are assigned to an enabled extruder\n"
  2296. "- Are not all set as modifier meshes"
  2297. msgstr ""
  2298. "Проверьте настройки и убедитесь в том, что ваши модели:\n"
  2299. "- соответствуют допустимой области печати\n"
  2300. "- назначены активированному экструдеру\n"
  2301. "- не заданы как объекты-модификаторы"
  2302. msgctxt "@label"
  2303. msgid "Please select any upgrades made to this UltiMaker Original"
  2304. msgstr "Пожалуйста, укажите любые изменения, внесённые в UltiMaker Original"
  2305. msgctxt "@description"
  2306. msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise"
  2307. msgstr "Войдите, чтобы получить проверенные встраиваемые модули и материалы для UltiMaker Cura Enterprise"
  2308. msgctxt "@action:button"
  2309. msgid "Please sync the material profiles with your printers before starting to print."
  2310. msgstr "Перед началом печати синхронизируйте профили материалов с принтерами."
  2311. msgctxt "@info"
  2312. msgid "Please update your printer's firmware to manage the queue remotely."
  2313. msgstr "Для удаленного управления очередью необходимо обновить программное обеспечение принтера."
  2314. msgctxt "@info:status"
  2315. msgid "Please wait until the current job has been sent."
  2316. msgstr "Дождитесь окончания отправки текущего задания."
  2317. msgctxt "@title:window"
  2318. msgid "Plugin License Agreement"
  2319. msgstr "Лицензионное соглашение плагина"
  2320. msgctxt "@button"
  2321. msgid "Plugin license agreement"
  2322. msgstr "Лицензионное соглашение плагина"
  2323. msgctxt "@backuplist:label"
  2324. msgid "Plugins"
  2325. msgstr "Плагины"
  2326. msgctxt "@button"
  2327. msgid "Plugins"
  2328. msgstr "Плагины"
  2329. msgctxt "@label Description for application dependency"
  2330. msgid "Polygon clipping library"
  2331. msgstr "Библиотека обрезки полигонов"
  2332. msgctxt "@label Description for application component"
  2333. msgid "Polygon packing library, developed by Prusa Research"
  2334. msgstr "Библиотека упаковки полигонов, разработанная Prusa Research"
  2335. msgctxt "@item:inmenu"
  2336. msgid "Post Processing"
  2337. msgstr "Пост-обработка"
  2338. msgctxt "name"
  2339. msgid "Post Processing"
  2340. msgstr "Пост обработка"
  2341. msgctxt "@title:window"
  2342. msgid "Post Processing Plugin"
  2343. msgstr "Плагин пост-обработки"
  2344. msgctxt "@label"
  2345. msgid "Post Processing Scripts"
  2346. msgstr "Скрипты пост-обработки"
  2347. msgctxt "@button"
  2348. msgid "Pre-heat"
  2349. msgstr "Преднагрев"
  2350. msgctxt "@item:inmenu"
  2351. msgid "Prepare"
  2352. msgstr "Подготовка"
  2353. msgctxt "name"
  2354. msgid "Prepare Stage"
  2355. msgstr "Подготовительный этап"
  2356. msgctxt "@label:MonitorStatus"
  2357. msgid "Preparing..."
  2358. msgstr "Подготовка..."
  2359. msgctxt "@label:status"
  2360. msgid "Preparing..."
  2361. msgstr "Подготовка..."
  2362. msgctxt "@label"
  2363. msgid "Preset printers"
  2364. msgstr "Предварительно настроенные принтеры"
  2365. msgctxt "@button"
  2366. msgid "Preview"
  2367. msgstr "Предварительный просмотр"
  2368. msgctxt "@item:inmenu"
  2369. msgid "Preview"
  2370. msgstr "Предварительный просмотр"
  2371. msgctxt "name"
  2372. msgid "Preview Stage"
  2373. msgstr "Этап предварительного просмотра"
  2374. msgctxt "@tooltip"
  2375. msgid "Prime Tower"
  2376. msgstr "Черновая башня"
  2377. msgctxt "@action:button"
  2378. msgid "Print"
  2379. msgstr "Печать"
  2380. msgctxt "@label"
  2381. msgid "Print Selected Model With:"
  2382. msgid_plural "Print Selected Models With:"
  2383. msgstr[0] "Печать выбранной модели:"
  2384. msgstr[1] "Печать выбранных моделей:"
  2385. msgstr[2] "Печать выбранных моделей:"
  2386. msgctxt "@label %1 is filled in with the name of an extruder"
  2387. msgid "Print Selected Model with %1"
  2388. msgid_plural "Print Selected Models with %1"
  2389. msgstr[0] "Печатать выбранную модель с %1"
  2390. msgstr[1] "Печатать выбранные модели с %1"
  2391. msgstr[2] "Печатать выбранные модели с %1"
  2392. msgctxt "@label"
  2393. msgid "Print as support"
  2394. msgstr "Печать в качестве поддержки"
  2395. msgctxt "@info:title"
  2396. msgid "Print error"
  2397. msgstr "Ошибка печати"
  2398. msgctxt "@message"
  2399. msgid "Print in Progress"
  2400. msgstr "Идет печать"
  2401. msgctxt "@info:status"
  2402. msgid "Print job queue is full. The printer can't accept a new job."
  2403. msgstr "Очередь заданий печати заполнена. Принтер не может принять новое задание."
  2404. msgctxt "@info:status"
  2405. msgid "Print job was successfully sent to the printer."
  2406. msgstr "Задание печати успешно отправлено на принтер."
  2407. msgctxt "@label"
  2408. msgid "Print jobs"
  2409. msgstr "Задания печати"
  2410. msgctxt "@label:button"
  2411. msgid "Print jobs"
  2412. msgstr "Задания печати"
  2413. msgctxt "@action:button Preceded by 'Ready to'."
  2414. msgid "Print over network"
  2415. msgstr "Печать через сеть"
  2416. msgctxt "@properties:tooltip"
  2417. msgid "Print over network"
  2418. msgstr "Печать через сеть"
  2419. msgctxt "@title:window"
  2420. msgid "Print over network"
  2421. msgstr "Печать через сеть"
  2422. msgctxt "@label"
  2423. msgid "Print settings"
  2424. msgstr "Параметры печати"
  2425. msgctxt "@label shown when we load a Gcode file"
  2426. msgid "Print setup disabled. G-code file can not be modified."
  2427. msgstr "Настройка печати отключена. Невозможно изменить файл с G-кодом."
  2428. msgctxt "@action:button Preceded by 'Ready to'."
  2429. msgid "Print via USB"
  2430. msgstr "Печатать через USB"
  2431. msgctxt "@info:tooltip"
  2432. msgid "Print via USB"
  2433. msgstr "Печатать через USB"
  2434. msgctxt "@action:button"
  2435. msgid "Print via cloud"
  2436. msgstr "Печать через облако"
  2437. msgctxt "@properties:tooltip"
  2438. msgid "Print via cloud"
  2439. msgstr "Печать через облако"
  2440. msgctxt "@action:label"
  2441. msgid "Print with"
  2442. msgstr "Печать с помощью"
  2443. msgctxt "@title:tab"
  2444. msgid "Printer"
  2445. msgstr "Принтер"
  2446. msgctxt "@title:window"
  2447. msgid "Printer Address"
  2448. msgstr "Адрес принтера"
  2449. msgctxt "@action:label"
  2450. msgid "Printer Group"
  2451. msgstr "Группа принтеров"
  2452. msgctxt "@title:label"
  2453. msgid "Printer Settings"
  2454. msgstr "Параметры принтера"
  2455. msgctxt "@label"
  2456. msgid "Printer control"
  2457. msgstr "Управление принтером"
  2458. msgctxt "@label:MonitorStatus"
  2459. msgid "Printer does not accept commands"
  2460. msgstr "Принтер не принимает команды"
  2461. msgctxt "@label"
  2462. msgid "Printer name"
  2463. msgstr "Имя принтера"
  2464. msgctxt "@label"
  2465. msgid "Printer selection"
  2466. msgstr "Выбор принтера"
  2467. msgctxt "@action:label"
  2468. msgid "Printer settings"
  2469. msgstr "Параметры принтера"
  2470. msgctxt "@info:tooltip"
  2471. msgid "Printer settings will be updated to match the settings saved with the project."
  2472. msgstr "Параметры принтера будут обновлены в соответствии с параметрами, сохраненными в проекте."
  2473. msgctxt "@title:tab"
  2474. msgid "Printers"
  2475. msgstr "Принтеры"
  2476. msgctxt "info:status"
  2477. msgid "Printers added from Digital Factory:"
  2478. msgstr "Принтеры, добавленные из Digital Factory:"
  2479. msgctxt "@text Asking the user whether printers are missing in a list."
  2480. msgid "Printers missing?"
  2481. msgstr "Отсутствуют принтеры?"
  2482. msgctxt "@title:label"
  2483. msgid "Printhead Settings"
  2484. msgstr "Параметры головы"
  2485. msgctxt "@label:status"
  2486. msgid "Printing"
  2487. msgstr "Печать"
  2488. msgctxt "@label"
  2489. msgid "Printing Time"
  2490. msgstr "Время печати"
  2491. msgctxt "@label:MonitorStatus"
  2492. msgid "Printing..."
  2493. msgstr "Печать..."
  2494. msgctxt "@label"
  2495. msgid "Privacy"
  2496. msgstr "Приватность"
  2497. msgctxt "@button"
  2498. msgid "Processing"
  2499. msgstr "Обработка"
  2500. msgctxt "@info:status"
  2501. msgid "Processing Layers"
  2502. msgstr "Обработка слоёв"
  2503. msgctxt "@label"
  2504. msgid "Profile"
  2505. msgstr "Профиль"
  2506. msgctxt "@title:column"
  2507. msgid "Profile"
  2508. msgstr "Профиль"
  2509. msgctxt "@label"
  2510. msgid "Profile author"
  2511. msgstr "Автор профиля"
  2512. msgctxt "@info:status"
  2513. msgid "Profile is missing a quality type."
  2514. msgstr "У профайла отсутствует тип качества."
  2515. msgctxt "@action:label"
  2516. msgid "Profile settings"
  2517. msgstr "Параметры профиля"
  2518. msgctxt "@title:column"
  2519. msgid "Profile settings"
  2520. msgstr "Параметры профиля"
  2521. #, python-brace-format
  2522. msgctxt "@info:status"
  2523. msgid "Profile {0} has an unknown file type or is corrupted."
  2524. msgstr "Профиль {0} имеет неизвестный тип файла или повреждён."
  2525. msgctxt "@backuplist:label"
  2526. msgid "Profiles"
  2527. msgstr "Профили"
  2528. msgctxt "@label"
  2529. msgid "Profiles"
  2530. msgstr "Профили"
  2531. msgctxt "@title:tab"
  2532. msgid "Profiles"
  2533. msgstr "Профили"
  2534. msgctxt "@label"
  2535. msgid "Profiles compatible with active printer:"
  2536. msgstr "Профили, совместимые с активным принтером:"
  2537. msgctxt "@label Description for application dependency"
  2538. msgid "Programming language"
  2539. msgstr "Язык программирования"
  2540. #, python-brace-format
  2541. msgctxt "@info:status Don't translate the XML tags <filename> or <message>!"
  2542. msgid "Project file <filename>{0}</filename> contains an unknown machine type <message>{1}</message>. Cannot import the machine. Models will be imported instead."
  2543. msgstr "Файл проекта <filename>{0}</filename> содержит неизвестный тип принтера <message>{1}</message>. Не удалось импортировать принтер. Вместо этого будут импортированы модели."
  2544. #, python-brace-format
  2545. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2546. msgid "Project file <filename>{0}</filename> is corrupt: <message>{1}</message>."
  2547. msgstr "Файл проекта <filename>{0}</filename> поврежден: <message>{1}</message>."
  2548. #, python-brace-format
  2549. msgctxt "@info:error Don't translate the XML tag <filename>!"
  2550. msgid "Project file <filename>{0}</filename> is made using profiles that are unknown to this version of UltiMaker Cura."
  2551. msgstr "Файл проекта <filename>{0}</filename> создан с использованием профилей, несовместимых с данной версией UltiMaker Cura."
  2552. #, python-brace-format
  2553. msgctxt "@info:error Don't translate the XML tags <filename> or <message>!"
  2554. msgid "Project file <filename>{0}</filename> is suddenly inaccessible: <message>{1}</message>."
  2555. msgstr "Файл проекта <filename>{0}</filename> внезапно стал недоступен: <message>{1}.</message>."
  2556. msgctxt "@label"
  2557. msgid "Properties"
  2558. msgstr "Свойства"
  2559. msgctxt "description"
  2560. msgid "Provides a machine actions for updating firmware."
  2561. msgstr "Обеспечение действий принтера для обновления прошивки."
  2562. msgctxt "description"
  2563. msgid "Provides a monitor stage in Cura."
  2564. msgstr "Обеспечивает этап мониторинга в Cura."
  2565. msgctxt "description"
  2566. msgid "Provides a normal solid mesh view."
  2567. msgstr "Предоставляет просмотр твёрдого тела."
  2568. msgctxt "description"
  2569. msgid "Provides a prepare stage in Cura."
  2570. msgstr "Обеспечивает подготовительный этап в Cura."
  2571. msgctxt "description"
  2572. msgid "Provides a preview stage in Cura."
  2573. msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura."
  2574. msgctxt "description"
  2575. msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)."
  2576. msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)"
  2577. msgctxt "description"
  2578. msgid "Provides capabilities to read and write XML-based material profiles."
  2579. msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML."
  2580. msgctxt "description"
  2581. msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)."
  2582. msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)"
  2583. msgctxt "description"
  2584. msgid "Provides removable drive hotplugging and writing support."
  2585. msgstr "Предоставляет поддержку для подключения и записи на внешний носитель."
  2586. msgctxt "description"
  2587. msgid "Provides support for exporting Cura profiles."
  2588. msgstr "Предоставляет поддержку для экспорта профилей Cura."
  2589. msgctxt "description"
  2590. msgid "Provides support for importing Cura profiles."
  2591. msgstr "Предоставляет поддержку для импорта профилей Cura."
  2592. msgctxt "description"
  2593. msgid "Provides support for importing profiles from g-code files."
  2594. msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов."
  2595. msgctxt "description"
  2596. msgid "Provides support for importing profiles from legacy Cura versions."
  2597. msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura."
  2598. msgctxt "description"
  2599. msgid "Provides support for reading 3MF files."
  2600. msgstr "Предоставляет поддержку для чтения 3MF файлов."
  2601. msgctxt "description"
  2602. msgid "Provides support for reading AMF files."
  2603. msgstr "Обеспечивает поддержку чтения файлов AMF."
  2604. msgctxt "description"
  2605. msgid "Provides support for reading Ultimaker Format Packages."
  2606. msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker."
  2607. msgctxt "description"
  2608. msgid "Provides support for reading X3D files."
  2609. msgstr "Предоставляет поддержку для чтения X3D файлов."
  2610. msgctxt "description"
  2611. msgid "Provides support for reading model files."
  2612. msgstr "Предоставляет поддержку для чтения файлов моделей."
  2613. msgctxt "description"
  2614. msgid "Provides support for writing 3MF files."
  2615. msgstr "Предоставляет возможность записи 3MF файлов."
  2616. msgctxt "description"
  2617. msgid "Provides support for writing Ultimaker Format Packages."
  2618. msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker."
  2619. msgctxt "description"
  2620. msgid "Provides the Per Model Settings."
  2621. msgstr "Предоставляет параметры для каждой модели."
  2622. msgctxt "description"
  2623. msgid "Provides the X-Ray view."
  2624. msgstr "Предоставляет рентгеновский вид."
  2625. msgctxt "description"
  2626. msgid "Provides the link to the CuraEngine slicing backend."
  2627. msgstr "Предоставляет интерфейс к движку CuraEngine."
  2628. msgctxt "description"
  2629. msgid "Provides the preview of sliced layerdata."
  2630. msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя."
  2631. msgctxt "@label"
  2632. msgid "PyQt version"
  2633. msgstr "Версия PyQt"
  2634. msgctxt "@Label Description for application dependency"
  2635. msgid "Python Error tracking library"
  2636. msgstr "Библиотека отслеживания ошибок Python"
  2637. msgctxt "@label Description for application dependency"
  2638. msgid "Python bindings for Clipper"
  2639. msgstr "Привязки Python для Clipper"
  2640. msgctxt "@label Description for application component"
  2641. msgid "Python bindings for libnest2d"
  2642. msgstr "Интерфейс Python для libnest2d"
  2643. msgctxt "@label"
  2644. msgid "Qt version"
  2645. msgstr "Версия Qt"
  2646. #, python-brace-format
  2647. msgctxt "@info:status"
  2648. msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'."
  2649. msgstr "Тип качества \"{0}\" несовместим с текущим определением активной машины \"{1}\"."
  2650. msgctxt "@info:title"
  2651. msgid "Queue Full"
  2652. msgstr "Очередь заполнена"
  2653. msgctxt "@label"
  2654. msgid "Queued"
  2655. msgstr "Запланировано"
  2656. msgctxt "@info:button, %1 is the application name"
  2657. msgid "Quit %1"
  2658. msgstr "Выйти из %1"
  2659. msgctxt "description"
  2660. msgid "Reads g-code from a compressed archive."
  2661. msgstr "Считывает G-код из сжатого архива."
  2662. msgctxt "@button"
  2663. msgid "Recommended"
  2664. msgstr "Рекомендован"
  2665. msgctxt "@title:tab"
  2666. msgid "Recommended"
  2667. msgstr "Рекомендованная"
  2668. msgctxt "@label"
  2669. msgid "Recommended print settings"
  2670. msgstr "Рекомендуемые настройки печати"
  2671. msgctxt "@info %1 is the name of a profile"
  2672. msgid "Recommended settings (for <b>%1</b>) were altered."
  2673. msgstr "Рекомендуемые настройки (для <b>%1</b>) были изменены."
  2674. msgctxt "@action:button"
  2675. msgid "Refresh"
  2676. msgstr "Обновить"
  2677. msgctxt "@button"
  2678. msgid "Refresh"
  2679. msgstr "Обновить"
  2680. msgctxt "@label"
  2681. msgid "Refresh"
  2682. msgstr "Обновить"
  2683. msgctxt "@button"
  2684. msgid "Refresh List"
  2685. msgstr "Обновить список"
  2686. msgctxt "@button"
  2687. msgid "Refreshing..."
  2688. msgstr ""
  2689. msgctxt "@label"
  2690. msgid "Release Notes"
  2691. msgstr "Примечания к выпуску"
  2692. msgctxt "@action:inmenu menubar:file"
  2693. msgid "Reload All Models"
  2694. msgstr "Перезагрузить все модели"
  2695. msgctxt "@text:window"
  2696. msgid "Remember my choice"
  2697. msgstr "Запомнить мой выбор"
  2698. msgctxt "@item:intext"
  2699. msgid "Removable Drive"
  2700. msgstr "Внешний носитель"
  2701. msgctxt "name"
  2702. msgid "Removable Drive Output Device Plugin"
  2703. msgstr "Плагин для работы с внешним носителем"
  2704. msgctxt "@action:button"
  2705. msgid "Remove"
  2706. msgstr "Удалить"
  2707. msgctxt "@action:button"
  2708. msgid "Remove printers"
  2709. msgstr "Удалить принтеры"
  2710. msgctxt "@title:window"
  2711. msgid "Remove printers?"
  2712. msgstr "Удалить принтеры?"
  2713. msgctxt "@action:button"
  2714. msgid "Rename"
  2715. msgstr "Переименовать"
  2716. msgctxt "@title:window"
  2717. msgid "Rename"
  2718. msgstr "Переименовать"
  2719. msgctxt "@title:window"
  2720. msgid "Rename Profile"
  2721. msgstr "Переименовать профиль"
  2722. msgctxt "@action:inmenu menubar:help"
  2723. msgid "Report a &Bug"
  2724. msgstr "Отправить отчёт об ошибке"
  2725. msgctxt "@label:button"
  2726. msgid "Report a bug"
  2727. msgstr "Сообщить об ошибке"
  2728. msgctxt "@message:button"
  2729. msgid "Report a bug"
  2730. msgstr "Сообщить об ошибке"
  2731. msgctxt "@message:description"
  2732. msgid "Report a bug on UltiMaker Cura's issue tracker."
  2733. msgstr "Сообщите об ошибке в системе отслеживания проблем UltiMaker Cura."
  2734. msgctxt "@label:status"
  2735. msgid "Requires configuration changes"
  2736. msgstr "Необходимо внести изменения конфигурации"
  2737. msgctxt "@action:inmenu menubar:edit"
  2738. msgid "Reset All Model Positions"
  2739. msgstr "Сбросить позиции всех моделей"
  2740. msgctxt "@action:inmenu menubar:edit"
  2741. msgid "Reset All Model Transformations"
  2742. msgstr "Сбросить преобразования всех моделей"
  2743. msgctxt "@info"
  2744. msgid "Reset to defaults."
  2745. msgstr "Восстановить значения по умолчанию."
  2746. msgctxt "@label"
  2747. msgid "Resolution"
  2748. msgstr "Разрешение"
  2749. msgctxt "@button"
  2750. msgid "Restore"
  2751. msgstr "Восстановить"
  2752. msgctxt "@dialog:title"
  2753. msgid "Restore Backup"
  2754. msgstr "Восстановить резервную копию"
  2755. msgctxt "@option:check"
  2756. msgid "Restore window position on start"
  2757. msgstr "Восстановить положение окна при запуске"
  2758. msgctxt "@label"
  2759. msgid "Resume"
  2760. msgstr "Продолжить"
  2761. msgctxt "@label"
  2762. msgid "Resuming..."
  2763. msgstr "Возобновляется..."
  2764. msgctxt "@label:status"
  2765. msgid "Resuming..."
  2766. msgstr "Возобновляется..."
  2767. msgctxt "@tooltip"
  2768. msgid "Retractions"
  2769. msgstr "Откаты"
  2770. msgctxt "@button"
  2771. msgid "Retry?"
  2772. msgstr "Повторить попытку?"
  2773. msgctxt "@action:inmenu menubar:view"
  2774. msgid "Right Side View"
  2775. msgstr "Вид справа"
  2776. msgctxt "@info:tooltip"
  2777. msgid "Right View"
  2778. msgstr "Вид справа"
  2779. msgctxt "@label Description for application dependency"
  2780. msgid "Root Certificates for validating SSL trustworthiness"
  2781. msgstr "Корневые сертификаты для проверки надежности SSL"
  2782. msgctxt "@info:title"
  2783. msgid "Safely Remove Hardware"
  2784. msgstr "Безопасное извлечение устройства"
  2785. msgctxt "@button"
  2786. msgid "Safety datasheet"
  2787. msgstr "Паспорт безопасности"
  2788. msgctxt "@action:button"
  2789. msgid "Save"
  2790. msgstr "Сохранить"
  2791. msgctxt "@option"
  2792. msgid "Save Cura project"
  2793. msgstr "Сохранить проект Cura"
  2794. msgctxt "@option"
  2795. msgid "Save Cura project and print file"
  2796. msgstr "Сохранить проекта Cura и распечатать файл"
  2797. msgctxt "@title:window"
  2798. msgid "Save Custom Profile"
  2799. msgstr "Сохранить пользовательский профиль"
  2800. msgctxt "@title:window"
  2801. msgid "Save Project"
  2802. msgstr "Сохранить проект"
  2803. msgctxt "@title:menu menubar:file"
  2804. msgid "Save Project..."
  2805. msgstr "Сохранить проект..."
  2806. msgctxt "@action:button"
  2807. msgid "Save as new custom profile"
  2808. msgstr "Сохранить как новый пользовательский профиль"
  2809. msgctxt "@action:button"
  2810. msgid "Save changes"
  2811. msgstr "Сохранить изменения"
  2812. msgctxt "@button"
  2813. msgid "Save new profile"
  2814. msgstr "Сохранить новый профиль"
  2815. msgctxt "@text"
  2816. msgid "Save the .umm file on a USB stick."
  2817. msgstr "Сохраните UMM-файл на USB-накопителе."
  2818. msgctxt "@action:button Preceded by 'Ready to'."
  2819. msgid "Save to Removable Drive"
  2820. msgstr "Сохранить на внешний носитель"
  2821. #, python-brace-format
  2822. msgctxt "@item:inlistbox"
  2823. msgid "Save to Removable Drive {0}"
  2824. msgstr "Сохранить на внешний носитель {0}"
  2825. #, python-brace-format
  2826. msgctxt "@info:status"
  2827. msgid "Saved to Removable Drive {0} as {1}"
  2828. msgstr "Сохранено на внешний носитель {0} как {1}"
  2829. msgctxt "@info:title"
  2830. msgid "Saving"
  2831. msgstr "Сохранение"
  2832. #, python-brace-format
  2833. msgctxt "@info:progress Don't translate the XML tags <filename>!"
  2834. msgid "Saving to Removable Drive <filename>{0}</filename>"
  2835. msgstr "Сохранение на внешний носитель <filename>{0}</filename>"
  2836. msgctxt "@option:check"
  2837. msgid "Scale extremely small models"
  2838. msgstr "Масштабировать очень маленькие модели"
  2839. msgctxt "@option:check"
  2840. msgid "Scale large models"
  2841. msgstr "Масштабировать большие модели"
  2842. msgctxt "@placeholder"
  2843. msgid "Search"
  2844. msgstr "Поиск"
  2845. msgctxt "@info"
  2846. msgid "Search in the browser"
  2847. msgstr "Поиск в браузере"
  2848. msgctxt "@label:textbox"
  2849. msgid "Search settings"
  2850. msgstr "Параметры поиска"
  2851. msgctxt "@action:inmenu menubar:edit"
  2852. msgid "Select All Models"
  2853. msgstr "Выбрать все модели"
  2854. msgctxt "@title:window"
  2855. msgid "Select Printer"
  2856. msgstr "Выберите принтер"
  2857. msgctxt "@title:window"
  2858. msgid "Select Settings to Customize for this model"
  2859. msgstr "Выберите параметр для изменения этой модели"
  2860. msgctxt "@text"
  2861. msgid "Select and install material profiles optimised for your UltiMaker 3D printers."
  2862. msgstr "Выберите и установите профили материалов, оптимизированные для 3D-принтеров Ultimaker."
  2863. msgctxt "@label"
  2864. msgid "Select configuration"
  2865. msgstr "Выберите конфигурации"
  2866. msgctxt "@title:window"
  2867. msgid "Select custom firmware"
  2868. msgstr "Выбрать собственную прошивку"
  2869. msgctxt "@option:check"
  2870. msgid "Select models when loaded"
  2871. msgstr "Выбрать модели при загрузке"
  2872. msgctxt "@action:button"
  2873. msgid "Select settings"
  2874. msgstr "Выберите параметры"
  2875. msgctxt "@action"
  2876. msgid "Select upgrades"
  2877. msgstr "Выбор обновлений"
  2878. msgctxt "@label"
  2879. msgid "Select your printer from the list below:"
  2880. msgstr "Выберите свой принтер из приведенного ниже списка:"
  2881. msgctxt "@option:check"
  2882. msgid "Send (anonymous) print information"
  2883. msgstr "Отправлять (анонимно) информацию о печати"
  2884. msgctxt "@label"
  2885. msgid "Send G-code"
  2886. msgstr "Отправить G-код"
  2887. msgctxt "@tooltip of G-code command input"
  2888. msgid "Send a custom G-code command to the connected printer. Press 'enter' to send the command."
  2889. msgstr "Отправить свою команду в G-коде подключенному принтеру. Нажмите Enter (Ввод) для отправки команды."
  2890. msgctxt "@action:button"
  2891. msgid "Send crash report to UltiMaker"
  2892. msgstr "Отправить отчет о сбое в UltiMaker"
  2893. msgctxt "@action:button"
  2894. msgid "Send report"
  2895. msgstr "Отправить отчёт"
  2896. msgctxt "@info:status"
  2897. msgid "Sending Print Job"
  2898. msgstr "Отправка задания печати"
  2899. msgctxt "@info:title"
  2900. msgid "Sending materials to printer"
  2901. msgstr "Отправка материалов на принтер"
  2902. msgctxt "name"
  2903. msgid "Sentry Logger"
  2904. msgstr "Контрольный журнал"
  2905. msgctxt "@label Description for application dependency"
  2906. msgid "Serial communication library"
  2907. msgstr "Библиотека последовательного интерфейса"
  2908. msgctxt "@action:inmenu"
  2909. msgid "Set as Active Extruder"
  2910. msgstr "Установить как активный экструдер"
  2911. msgctxt "@title:column"
  2912. msgid "Setting"
  2913. msgstr "Параметр"
  2914. msgctxt "@title:tab"
  2915. msgid "Setting Visibility"
  2916. msgstr "Видимость параметров"
  2917. msgctxt "@info:progress"
  2918. msgid "Setting up preferences..."
  2919. msgstr "Настройка параметров..."
  2920. msgctxt "@info:progress"
  2921. msgid "Setting up scene..."
  2922. msgstr "Настройка сцены..."
  2923. msgctxt "@action:label"
  2924. msgid "Setting visibility"
  2925. msgstr "Видимость параметров"
  2926. msgctxt "@label"
  2927. msgid "Settings"
  2928. msgstr "Параметры"
  2929. msgctxt "@title:tab"
  2930. msgid "Settings"
  2931. msgstr "Параметры"
  2932. msgctxt "@info:message Followed by a list of settings."
  2933. msgid "Settings have been changed to match the current availability of extruders:"
  2934. msgstr "Настройки изменены в соответствии с текущей доступностью экструдеров:"
  2935. msgctxt "@info:title"
  2936. msgid "Settings updated"
  2937. msgstr "Настройки обновлены"
  2938. msgctxt "@text"
  2939. msgid "Share ideas and get help from 48,000+ users in the UltiMaker Community"
  2940. msgstr "Делитесь идеями и получайте помощь от 48 000 пользователей в сообществе UltiMaker"
  2941. msgctxt "@label"
  2942. msgid "Shell"
  2943. msgstr "Ограждение"
  2944. msgctxt "@action:label"
  2945. msgid "Shell Thickness"
  2946. msgstr "Толщина стенки"
  2947. msgctxt "@info:tooltip"
  2948. msgid "Should Cura check for updates when the program is started?"
  2949. msgstr "Должна ли Cura проверять обновления программы при старте?"
  2950. msgctxt "@info:tooltip"
  2951. msgid "Should Cura open at the location it was closed?"
  2952. msgstr "Открыть Cura на том месте, где вы остановились в прошлый раз?"
  2953. msgctxt "@info:tooltip"
  2954. msgid "Should a prefix based on the printer name be added to the print job name automatically?"
  2955. msgstr "Надо ли автоматически добавлять префикс, основанный на имени принтера, к названию задачи на печать?"
  2956. msgctxt "@info:tooltip"
  2957. msgid "Should a summary be shown when saving a project file?"
  2958. msgstr "Показывать сводку при сохранении файла проекта?"
  2959. msgctxt "@info:tooltip"
  2960. msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!"
  2961. msgstr "Следует ли автоматически проверять наличие новых плагинов при каждом запуске Cura? Настоятельно рекомендуется не выключать это!"
  2962. msgctxt "@info:tooltip"
  2963. 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."
  2964. msgstr "Можно ли отправлять анонимную информацию о вашей печати в UltiMaker? Следует отметить, что ни модели, ни IP-адреса и никакая другая персональная информация не будет отправлена или сохранена."
  2965. msgctxt "@info:tooltip"
  2966. msgid "Should layer be forced into compatibility mode?"
  2967. msgstr "Должен ли слой быть переведён в режим совместимости?"
  2968. msgctxt "@info:tooltip"
  2969. msgid "Should models be scaled to the build volume if they are too large?"
  2970. msgstr "Масштабировать ли модели для размещения внутри печатаемого объёма, если они не влезают в него?"
  2971. msgctxt "@info:tooltip"
  2972. msgid "Should models be selected after they are loaded?"
  2973. msgstr "Выбрать модели после их загрузки?"
  2974. msgctxt "@info:tooltip"
  2975. msgid "Should models on the platform be moved down to touch the build plate?"
  2976. msgstr "Следует ли опустить модели на стол?"
  2977. msgctxt "@info:tooltip"
  2978. msgid "Should models on the platform be moved so that they no longer intersect?"
  2979. msgstr "Следует ли размещать модели на столе так, чтобы они больше не пересекались?"
  2980. msgctxt "@info:tooltip"
  2981. msgid "Should opening files from the desktop or external applications open in the same instance of Cura?"
  2982. msgstr "Открывать файлы с компьютера и из внешних приложений в одном экземпляре Cura?"
  2983. msgctxt "@info:tooltip"
  2984. msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?"
  2985. msgstr "Следует ли очищать печатную пластину перед загрузкой новой модели в единственный экземпляр Cura?"
  2986. msgctxt "@info:tooltip"
  2987. msgid "Should the default zoom behavior of cura be inverted?"
  2988. msgstr "Следует ли инвертировать стандартный способ увеличения в Cura?"
  2989. msgctxt "@info:tooltip"
  2990. msgid "Should zooming move in the direction of the mouse?"
  2991. msgstr "Увеличивать по мере движения мышкой?"
  2992. msgctxt "@label"
  2993. msgid "Show 5 Detailed Layers On Top"
  2994. msgstr "Показать 5 детализированных слоёв сверху"
  2995. msgctxt "@action:inmenu menubar:help"
  2996. msgid "Show Configuration Folder"
  2997. msgstr "Показать конфигурационный каталог"
  2998. msgctxt "@button"
  2999. msgid "Show Custom"
  3000. msgstr "Показать свое"
  3001. msgctxt "@action:inmenu menubar:help"
  3002. msgid "Show Online &Documentation"
  3003. msgstr "Показать онлайн документацию"
  3004. msgctxt "@action:inmenu"
  3005. msgid "Show Online Troubleshooting"
  3006. msgstr "Показать сетевое руководство по устранению неполадок"
  3007. msgctxt "@label:checkbox"
  3008. msgid "Show all"
  3009. msgstr "Показать всё"
  3010. msgctxt "@label"
  3011. msgid "Show all connected printers"
  3012. msgstr "Показать все подключенные принтеры"
  3013. msgctxt "@info:tooltip"
  3014. msgid "Show an icon and notifications in the system notification area."
  3015. msgstr "Показать значок и уведомления в области уведомлений системы."
  3016. msgctxt "@info:tooltip"
  3017. msgid "Show caution message in g-code reader."
  3018. msgstr "Показывать предупреждающее сообщение в средстве считывания G-кода."
  3019. msgctxt "@action:button"
  3020. msgid "Show configuration folder"
  3021. msgstr "Показать конфигурационный каталог"
  3022. msgctxt "@action:button"
  3023. msgid "Show detailed crash report"
  3024. msgstr "Показать подробный отчет о сбое"
  3025. msgctxt "@option:check"
  3026. msgid "Show summary dialog when saving project"
  3027. msgstr "Показывать сводку при сохранении проекта"
  3028. msgctxt "@tooltip:button"
  3029. msgid "Show your support for Cura with a donation."
  3030. msgstr ""
  3031. msgctxt "@button"
  3032. msgid "Sign Out"
  3033. msgstr "Выйти"
  3034. msgctxt "@action:button"
  3035. msgid "Sign in"
  3036. msgstr "Войти"
  3037. msgctxt "@button"
  3038. msgid "Sign in"
  3039. msgstr "Войти"
  3040. msgctxt "@title:header"
  3041. msgid "Sign in"
  3042. msgstr "Войти"
  3043. msgctxt "@info"
  3044. msgid "Sign in into UltiMaker Digital Factory"
  3045. msgstr "Войти в UltiMaker Digital Factory"
  3046. msgctxt "@button"
  3047. msgid "Sign in to Digital Factory"
  3048. msgstr "Войти в Digital Factory"
  3049. msgctxt "@label"
  3050. msgid "Sign in to the UltiMaker platform"
  3051. msgstr "Войдите на платформу UltiMaker"
  3052. msgctxt "name"
  3053. msgid "Simulation View"
  3054. msgstr "Вид моделирования"
  3055. msgctxt "@tooltip"
  3056. msgid "Skin"
  3057. msgstr "Покрытие"
  3058. msgctxt "@action:button"
  3059. msgid "Skip"
  3060. msgstr "Пропустить"
  3061. msgctxt "@button"
  3062. msgid "Skip"
  3063. msgstr "Пропустить"
  3064. msgctxt "@tooltip"
  3065. msgid "Skirt"
  3066. msgstr "Юбка"
  3067. msgctxt "@button"
  3068. msgid "Slice"
  3069. msgstr "Нарезка на слои"
  3070. msgctxt "@option:check"
  3071. msgid "Slice automatically"
  3072. msgstr "Нарезать автоматически"
  3073. msgctxt "@info:tooltip"
  3074. msgid "Slice automatically when changing settings."
  3075. msgstr "Нарезать автоматически при изменении настроек."
  3076. msgctxt "name"
  3077. msgid "Slice info"
  3078. msgstr "Информация о нарезке модели"
  3079. msgctxt "@message:title"
  3080. msgid "Slicing failed"
  3081. msgstr "Нарезка на слои не выполнена"
  3082. msgctxt "@message"
  3083. msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker."
  3084. msgstr "Нарезка на слои не выполнена из-за непредвиденной ошибки. Возможно, стоит сообщить об ошибке в нашей системе отслеживания проблем."
  3085. msgctxt "@label:PrintjobStatus"
  3086. msgid "Slicing..."
  3087. msgstr "Нарезка на слои..."
  3088. msgctxt "@action:label"
  3089. msgid "Smoothing"
  3090. msgstr "Сглаживание"
  3091. msgctxt "name"
  3092. msgid "Solid View"
  3093. msgstr "Обзор"
  3094. msgctxt "@item:inmenu"
  3095. msgid "Solid view"
  3096. msgstr "Просмотр модели"
  3097. msgctxt "@label"
  3098. msgid ""
  3099. "Some hidden settings use values different from their normal calculated value.\n"
  3100. "\n"
  3101. "Click to make these settings visible."
  3102. msgstr ""
  3103. "Некоторые из скрытых параметров используют значения, отличающиеся от их вычисленных значений.\n"
  3104. "\n"
  3105. "Щёлкните, чтобы сделать эти параметры видимыми."
  3106. msgctxt "@info:status"
  3107. msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace."
  3108. msgstr ""
  3109. msgctxt "@info:title"
  3110. msgid "Some required packages are not installed"
  3111. msgstr ""
  3112. msgctxt "@info %1 is the name of a profile"
  3113. msgid "Some setting-values defined in <b>%1</b> were overridden."
  3114. msgstr ""
  3115. msgctxt "@tooltip"
  3116. msgid ""
  3117. "Some setting/override values are different from the values stored in the profile.\n"
  3118. "\n"
  3119. "Click to open the profile manager."
  3120. msgstr ""
  3121. "Значения некоторых параметров отличаются от значений профиля.\n"
  3122. "\n"
  3123. "Нажмите для открытия менеджера профилей."
  3124. msgctxt "@action:label"
  3125. msgid "Some settings from current profile were overwritten."
  3126. msgstr "Некоторые настройки из текущего профиля были перезаписаны."
  3127. msgctxt "@message"
  3128. msgid "Something unexpected happened when trying to log in, please try again."
  3129. msgstr "Возникла непредвиденная ошибка при попытке входа в систему. Повторите попытку."
  3130. msgctxt "@title:header"
  3131. msgid "Something went wrong when sending the materials to the printers."
  3132. msgstr "При отправке материалов на принтеры что-то пошло не так."
  3133. msgctxt "@label"
  3134. msgid "Something went wrong..."
  3135. msgstr "Что-то пошло не так..."
  3136. msgctxt "@label:listbox"
  3137. msgid "Speed"
  3138. msgstr "Скорость"
  3139. msgctxt "@action:inmenu"
  3140. msgid "Sponsor Cura"
  3141. msgstr ""
  3142. msgctxt "@label:button"
  3143. msgid "Sponsor Cura"
  3144. msgstr ""
  3145. msgctxt "@option:radio"
  3146. msgid "Stable and Beta releases"
  3147. msgstr "Стабильные и бета-версии"
  3148. msgctxt "@option:radio"
  3149. msgid "Stable releases only"
  3150. msgstr "Только стабильные версии"
  3151. msgctxt "@item:inlistbox"
  3152. msgid "Stanford Triangle Format"
  3153. msgstr "Stanford Triangle Format"
  3154. msgctxt "@button"
  3155. msgid "Start"
  3156. msgstr "Пуск"
  3157. msgctxt "@action:button"
  3158. msgid "Start Build Plate Leveling"
  3159. msgstr "Начало выравнивания стола"
  3160. msgctxt "@title:label"
  3161. msgid "Start G-code"
  3162. msgstr "Стартовый G-код"
  3163. msgctxt "@label"
  3164. msgid "Start the slicing process"
  3165. msgstr "Запустить нарезку на слои"
  3166. msgctxt "@label"
  3167. msgid "Starts"
  3168. msgstr "Запуск"
  3169. msgctxt "@text"
  3170. msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users."
  3171. msgstr "Оптимизируйте свои рабочие процессы и настройте Ultimaker Cura с помощью встраиваемых модулей, разработанных экспертами нашего замечательного сообщества."
  3172. msgctxt "@label"
  3173. msgid "Strength"
  3174. msgstr "Прочность"
  3175. msgctxt "description"
  3176. msgid "Submits anonymous slice info. Can be disabled through preferences."
  3177. msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки."
  3178. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3179. msgid "Successfully exported material to <filename>%1</filename>"
  3180. msgstr "Материал успешно экспортирован в <filename>%1</filename>"
  3181. msgctxt "@info:status Don't translate the XML tag <filename>!"
  3182. msgid "Successfully imported material <filename>%1</filename>"
  3183. msgstr "Успешно импортированный материал <filename>%1</filename>"
  3184. #, python-brace-format
  3185. msgctxt "@info:status"
  3186. msgid "Successfully imported profile {0}."
  3187. msgstr "Профиль {0} успешно импортирован."
  3188. msgctxt "@action:title"
  3189. msgid "Summary - Cura Project"
  3190. msgstr "Сводка - Проект Cura"
  3191. msgctxt "@label"
  3192. msgid "Support"
  3193. msgstr "Поддержки"
  3194. msgctxt "@tooltip"
  3195. msgid "Support"
  3196. msgstr "Поддержки"
  3197. msgctxt "@label"
  3198. msgid "Support Blocker"
  3199. msgstr "Блокировщик поддержки"
  3200. msgctxt "name"
  3201. msgid "Support Eraser"
  3202. msgstr "Средство стирания элемента поддержки"
  3203. msgctxt "@tooltip"
  3204. msgid "Support Infill"
  3205. msgstr "Заполнение поддержек"
  3206. msgctxt "@tooltip"
  3207. msgid "Support Interface"
  3208. msgstr "Связующий слой поддержек"
  3209. msgctxt "@action:label"
  3210. msgid "Support Type"
  3211. msgstr "Тип поддержки"
  3212. msgctxt "@label Description for application dependency"
  3213. msgid "Support library for faster math"
  3214. msgstr "Вспомогательная библиотека для быстрых расчётов"
  3215. msgctxt "@label Description for application component"
  3216. msgid "Support library for file metadata and streaming"
  3217. msgstr "Вспомогательная библиотека для метаданных файла и потоковой передачи"
  3218. msgctxt "@label Description for application component"
  3219. msgid "Support library for handling 3MF files"
  3220. msgstr "Вспомогательная библиотека для работы с 3MF файлами"
  3221. msgctxt "@label Description for application dependency"
  3222. msgid "Support library for handling STL files"
  3223. msgstr "Вспомогательная библиотека для работы с STL файлами"
  3224. msgctxt "@label Description for application dependency"
  3225. msgid "Support library for handling triangular meshes"
  3226. msgstr "Вспомогательная библиотека для работы с треугольными сетками"
  3227. msgctxt "@label Description for application dependency"
  3228. msgid "Support library for scientific computing"
  3229. msgstr "Вспомогательная библиотека для научных вычислений"
  3230. msgctxt "@label Description for application dependency"
  3231. msgid "Support library for system keyring access"
  3232. msgstr "Вспомогательная библиотека для доступа к набору ключей системы"
  3233. msgctxt "@action:button"
  3234. msgid "Sync"
  3235. msgstr "Синхронизация"
  3236. msgctxt "@button"
  3237. msgid "Sync"
  3238. msgstr "Синхронизация"
  3239. msgctxt "@title:header"
  3240. msgid "Sync material profiles via USB"
  3241. msgstr "Синхронизация профилей материалов с помощью USB"
  3242. msgctxt "@action:button"
  3243. msgid "Sync materials"
  3244. msgstr "Синхронизировать материалы"
  3245. msgctxt "@button"
  3246. msgid "Sync materials with USB"
  3247. msgstr "Синхронизация материалов с помощью USB"
  3248. msgctxt "@title:header"
  3249. msgid "Sync materials with printers"
  3250. msgstr "Синхронизировать материалы с принтерами"
  3251. msgctxt "@title:window"
  3252. msgid "Sync materials with printers"
  3253. msgstr "Синхронизировать материалы с принтерами"
  3254. msgctxt "@action:button"
  3255. msgid "Sync with Printers"
  3256. msgstr "Синхронизация с принтерами"
  3257. msgctxt "@button"
  3258. msgid "Syncing"
  3259. msgstr "Синхронизация"
  3260. msgctxt "@info:generic"
  3261. msgid "Syncing..."
  3262. msgstr "Синхронизация..."
  3263. msgctxt "@title:groupbox"
  3264. msgid "System information"
  3265. msgstr "Информация о системе"
  3266. msgctxt "@button"
  3267. msgid "Technical datasheet"
  3268. msgstr "Таблица технических характеристик"
  3269. msgctxt "@info:tooltip"
  3270. msgid "The amount of smoothing to apply to the image."
  3271. msgstr "Величина сглаживания для применения к изображению."
  3272. msgctxt "@text"
  3273. msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance."
  3274. msgstr ""
  3275. msgctxt "@label"
  3276. msgid "The assigned printer, %1, requires the following configuration change:"
  3277. msgid_plural "The assigned printer, %1, requires the following configuration changes:"
  3278. msgstr[0] "Для назначенного принтера %1 требуется следующее изменение конфигурации:"
  3279. msgstr[1] "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  3280. msgstr[2] "Для назначенного принтера %1 требуются следующие изменения конфигурации:"
  3281. msgctxt "@error:file_size"
  3282. msgid "The backup exceeds the maximum file size."
  3283. msgstr "Размер файла резервной копии превышает максимально допустимый."
  3284. msgctxt "@info:tooltip"
  3285. msgid "The base height from the build plate in millimeters."
  3286. msgstr "Высота основания от стола в миллиметрах."
  3287. msgctxt "@info:status"
  3288. 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."
  3289. msgstr "Высота печатаемого объёма была уменьшена до значения параметра \"Последовательность печати\", чтобы предотвратить касание портала за напечатанные детали."
  3290. msgctxt "@status"
  3291. msgid "The cloud connection is currently unavailable. Please check your internet connection."
  3292. msgstr "В настоящий момент нет подключения к облаку. Проверьте подключение к Интернету."
  3293. msgctxt "@status"
  3294. msgid "The cloud connection is currently unavailable. Please sign in to connect to the cloud printer."
  3295. msgstr "В настоящий момент нет подключения к облаку. Для подключения к облачному принтеру выполните вход."
  3296. msgctxt "@status"
  3297. msgid "The cloud printer is offline. Please check if the printer is turned on and connected to the internet."
  3298. msgstr "Облачный принтер не в сети. Убедитесь, что принтер включен и подключен к Интернету."
  3299. msgctxt "@tooltip"
  3300. msgid "The colour of the material in this extruder."
  3301. msgstr "Цвет материала в данном экструдере."
  3302. msgctxt "@tooltip"
  3303. msgid "The configuration of this extruder is not allowed, and prohibits slicing."
  3304. msgstr "Конфигурация этого экструдера не разрешается и запрещает нарезку на слои."
  3305. msgctxt "@label"
  3306. msgid "The configurations are not available because the printer is disconnected."
  3307. msgstr "Конфигурации недоступны, поскольку принтер отключен."
  3308. msgctxt "@tooltip"
  3309. msgid "The current temperature of the heated bed."
  3310. msgstr "Текущая температура горячего стола."
  3311. msgctxt "@tooltip"
  3312. msgid "The current temperature of this hotend."
  3313. msgstr "Текущая температура данного сопла."
  3314. msgctxt "@info:tooltip"
  3315. msgid "The depth in millimeters on the build plate"
  3316. msgstr "Глубина в миллиметрах на столе"
  3317. msgctxt "@text"
  3318. msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction."
  3319. msgstr "Черновой профиль предназначен для печати начальных прототипов и проверки концепции, где приоритетом является скорость печати."
  3320. msgctxt "@text"
  3321. msgid "The engineering profile is designed to print functional prototypes and end-use parts with the intent of better accuracy and for closer tolerances."
  3322. msgstr "Инженерный профиль предназначен для печати функциональных прототипов и готовых деталей, для которых требуется высокая точность и малые допуски."
  3323. msgctxt "@label"
  3324. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  3325. msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров."
  3326. #, python-brace-format
  3327. msgctxt "@label Don't translate the XML tag <filename>!"
  3328. msgid "The file <filename>{0}</filename> already exists. Are you sure you want to overwrite it?"
  3329. msgstr "Файл <filename>{0}</filename> уже существует. Вы уверены, что желаете перезаписать его?"
  3330. msgctxt "@label"
  3331. msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements."
  3332. msgstr "Поставляемая с новыми принтерами прошивка работоспособна, но обновления предоставляют больше возможностей и усовершенствований."
  3333. msgctxt "@info:backup_failed"
  3334. msgid "The following error occurred while trying to restore a Cura backup:"
  3335. msgstr "При попытке восстановить резервную копию Cura произошла следующая ошибка:"
  3336. msgctxt "@label"
  3337. msgid "The following packages can not be installed because of an incompatible Cura version:"
  3338. msgstr "Следующие пакеты невозможно установить из-за несовместимой версии Cura:"
  3339. msgctxt "@label"
  3340. msgid "The following packages will be added:"
  3341. msgstr "Будут добавлены следующие пакеты:"
  3342. msgctxt "@label"
  3343. msgid "The following printers in your account have been added in Cura:"
  3344. msgstr "Следующие принтеры в вашей учетной записи добавлены в Cura:"
  3345. msgctxt "@title:header"
  3346. msgid "The following printers will receive the new material profiles:"
  3347. msgstr "Следующие принтеры получат новые профили материалов:"
  3348. msgctxt "@info:tooltip"
  3349. msgid "The following script is active:"
  3350. msgid_plural "The following scripts are active:"
  3351. msgstr[0] "Активны следующие скрипты:"
  3352. msgstr[1] "Активны следующие скрипты:"
  3353. msgstr[2] "Активны следующие скрипты:"
  3354. msgctxt "@label"
  3355. msgid "The following settings define the strength of your part."
  3356. msgstr "Следующие настройки определяют прочность детали."
  3357. msgctxt "@info:status"
  3358. msgid "The highlighted areas indicate either missing or extraneous surfaces. Fix your model and open it again into Cura."
  3359. msgstr "Выделены области с отсутствующими или лишними поверхностями. Исправьте модель и снова откройте ее в Cura."
  3360. msgctxt "@tooltip"
  3361. msgid "The material in this extruder."
  3362. msgstr "Материал в данном экструдере."
  3363. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3364. msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk."
  3365. msgstr "Пакет материалов, связанный с проектом Cura, не найден на Ultimaker Marketplace. Используйте частичное определение профиля материала, хранящееся в файле проекта Cura, на свой страх и риск."
  3366. msgctxt "@info:tooltip"
  3367. msgid "The maximum distance of each pixel from \"Base.\""
  3368. msgstr "Максимальная дистанция каждого пикселя от \"Основания.\""
  3369. msgctxt "@label (%1 is a number)"
  3370. msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?"
  3371. msgstr "Установлен новый диаметр пластиковой нити %1 мм. Это значение несовместимо с текущим экструдером. Продолжить?"
  3372. msgctxt "@tooltip"
  3373. msgid "The nozzle inserted in this extruder."
  3374. msgstr "Сопло, вставленное в данный экструдер."
  3375. msgctxt "@label"
  3376. msgid ""
  3377. "The pattern of the infill material of the print:\n"
  3378. "\n"
  3379. "For quick prints of non functional model choose line, zig zag or lightning infill.\n"
  3380. "\n"
  3381. "For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n"
  3382. "\n"
  3383. "For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid."
  3384. msgstr ""
  3385. "Шаблон заполнительного материала печати:\n"
  3386. "\n"
  3387. "Для быстрой печати нефункциональной модели выберите шаблон «Линейный», «Зигзагообразный» или «Молния».\n"
  3388. "\n"
  3389. "Для функциональной части, не подвергающейся большому напряжению, мы рекомендуем шаблон «Сетка», «Треугольник» или «Шестигранник из треугольников».\n"
  3390. "\n"
  3391. "Для функциональной 3D-печати, требующей высокой прочности в разных направлениях, используйте шаблон «Куб», «Динамический куб», «Четверть куба», «Восьмигранник» или «Гироид»."
  3392. msgctxt "@info:tooltip"
  3393. 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."
  3394. msgstr "Процент света, проникающего в отпечаток толщиной 1 миллиметр. Если уменьшить это значение, контрастность в темных областях изображения увеличится, а в светлых — уменьшится."
  3395. msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate"
  3396. msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file."
  3397. msgstr ""
  3398. msgctxt "@info:title"
  3399. msgid "The print job was successfully submitted"
  3400. msgstr "Задание печати успешно отправлено"
  3401. msgctxt "@label"
  3402. msgid "The printer %1 is assigned, but the job contains an unknown material configuration."
  3403. msgstr "Принтер %1 назначен, однако в задании указана неизвестная конфигурация материала."
  3404. msgctxt "@label"
  3405. msgid "The printer at this address has not responded yet."
  3406. msgstr "От принтера с этим адресом еще не поступал ответ."
  3407. msgctxt "@label"
  3408. msgid "The printer at this address has not yet responded."
  3409. msgstr "Принтер по этому адресу ещё не отвечал."
  3410. msgctxt "@info:status"
  3411. msgid "The printer is not connected."
  3412. msgstr "Принтер не подключен."
  3413. msgctxt "@label"
  3414. msgid "The printer(s) below cannot be connected because they are part of a group"
  3415. msgstr "Перечисленные ниже принтеры невозможно подключить, поскольку они входят в состав группы"
  3416. msgctxt "@message"
  3417. msgid "The provided state is not correct."
  3418. msgstr "Указано неверное состояние."
  3419. msgctxt "@text:window"
  3420. msgid "The release notes could not be opened."
  3421. msgstr "Невозможно открыть примечания к версии."
  3422. msgctxt "@text:error"
  3423. msgid "The response from Digital Factory appears to be corrupted."
  3424. msgstr "Ответ от Digital Factory поврежден."
  3425. msgctxt "@text:error"
  3426. msgid "The response from Digital Factory is missing important information."
  3427. msgstr "В ответе от Digital Factory отсутствует важная информация."
  3428. msgctxt "@tooltip"
  3429. 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."
  3430. msgstr "Целевая температура горячего стола. Стол будет нагреваться и охлаждаться, оставаясь на этой температуре. Если установлена в 0, значит нагрев стола отключен."
  3431. msgctxt "@tooltip"
  3432. 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."
  3433. msgstr "Целевая температура сопла. Сопло будет нагрето или остужено до указанной температуры. Если значение равно 0, то нагрев будет отключен."
  3434. msgctxt "@tooltip of temperature input"
  3435. msgid "The temperature to pre-heat the bed to."
  3436. msgstr "Температура преднагрева горячего стола."
  3437. msgctxt "@tooltip of temperature input"
  3438. msgid "The temperature to pre-heat the hotend to."
  3439. msgstr "Температура предварительного нагрева сопла."
  3440. msgctxt "@text"
  3441. msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality."
  3442. msgstr "Визуальный профиль предназначен для печати визуальных прототипов и моделей, для которых требуется высокое качество поверхности и внешнего вида."
  3443. msgctxt "@info:tooltip"
  3444. msgid "The width in millimeters on the build plate"
  3445. msgstr "Ширина в миллиметрах на печатной пластине"
  3446. msgctxt "@label: Please keep the asterix, it's to indicate that a restart is needed."
  3447. msgid "Theme*:"
  3448. msgstr "Тема*:"
  3449. msgctxt "@info:status"
  3450. msgid "There are no file formats available to write with!"
  3451. msgstr "Ни один из форматов файлов не доступен для записи!"
  3452. msgctxt "@label"
  3453. msgid "There are no print jobs in the queue. Slice and send a job to add one."
  3454. msgstr "В очереди нет заданий печати. Выполните нарезку и отправьте задание."
  3455. msgctxt "@tooltip"
  3456. msgid "There are no profiles matching the configuration of this extruder."
  3457. msgstr "Нет профилей, соответствующих конфигурации этого экструдера."
  3458. msgctxt "@info:status"
  3459. msgid "There is no active printer yet."
  3460. msgstr "Еще нет активных принтеров."
  3461. msgctxt "@label"
  3462. msgid "There is no printer found over your network."
  3463. msgstr "В вашей сети не найден принтер."
  3464. msgctxt "@error"
  3465. msgid "There is no workspace yet to write. Please add a printer first."
  3466. msgstr "Нет рабочей среды для записи. Сначала добавьте принтер."
  3467. msgctxt "@info:backup_status"
  3468. msgid "There was an error trying to restore your backup."
  3469. msgstr "При попытке восстановления данных из резервной копии возникла ошибка."
  3470. msgctxt "@info:backup_status"
  3471. msgid "There was an error while creating your backup."
  3472. msgstr "При создании резервной копии возникла ошибка."
  3473. msgctxt "@info:backup_status"
  3474. msgid "There was an error while uploading your backup."
  3475. msgstr "При заливке вашей резервной копии возникла ошибка."
  3476. msgctxt "@label"
  3477. msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."
  3478. msgstr "Данная конфигурация недоступна, поскольку %1 не распознан. Посетите %2 и загрузите подходящий профиль материала."
  3479. msgctxt "@text:window"
  3480. msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?"
  3481. msgstr "Это проект Cura. Следует открыть его как проект или просто импортировать из него модели?"
  3482. msgctxt "@label"
  3483. msgid "This material is linked to %1 and shares some of its properties."
  3484. msgstr "Данный материал привязан к %1 и имеет ряд его свойств."
  3485. msgctxt "@label"
  3486. msgid "This package will be installed after restarting."
  3487. msgstr "Этот пакет будет установлен после перезапуска."
  3488. msgctxt "@label"
  3489. msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group."
  3490. msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой."
  3491. msgctxt "info:status"
  3492. msgid "This printer is not linked to the Digital Factory:"
  3493. msgid_plural "These printers are not linked to the Digital Factory:"
  3494. msgstr[0] "Это принтер не подключен Digital Factory:"
  3495. msgstr[1] "Эти принтеры не подключены Digital Factory:"
  3496. msgstr[2] "Эти принтеры не подключены Digital Factory:"
  3497. msgctxt "@status"
  3498. msgid "This printer is not linked to your account. Please visit the Ultimaker Digital Factory to establish a connection."
  3499. msgstr "Этот принтер не связан с вашей учетной записью. Посетите сайт Ultimaker Digital Factory, чтобы установить привязку."
  3500. msgctxt "@label"
  3501. msgid "This printer is not set up to host a group of printers."
  3502. msgstr "Данный принтер не настроен для управления группой принтеров."
  3503. msgctxt "@label"
  3504. msgid "This printer is the host for a group of %1 printers."
  3505. msgstr "Данный принтер управляет группой из %1 принтера (-ов)."
  3506. #, python-brace-format
  3507. msgctxt "@info:status Don't translate the XML tags <filename>!"
  3508. msgid "This profile <filename>{0}</filename> contains incorrect data, could not import it."
  3509. msgstr "Данный профиль <filename>{0}</filename> содержит неверные данные, поэтому его невозможно импортировать."
  3510. msgctxt "@action:label"
  3511. msgid "This profile uses the defaults specified by the printer, so it has no settings/overrides in the list below."
  3512. msgstr "Данный профиль использует настройки принтера по умолчанию, поэтому список ниже пуст."
  3513. msgctxt "@label"
  3514. msgid "This project contains materials or plugins that are currently not installed in Cura.<br/>Install the missing packages and reopen the project."
  3515. msgstr ""
  3516. msgctxt "@label"
  3517. msgid ""
  3518. "This setting has a value that is different from the profile.\n"
  3519. "\n"
  3520. "Click to restore the value of the profile."
  3521. msgstr ""
  3522. "Значение этого параметра отличается от значения в профиле.\n"
  3523. "\n"
  3524. "Щёлкните для восстановления значения из профиля."
  3525. msgctxt "@item:tooltip"
  3526. msgid "This setting has been hidden by the active machine and will not be visible."
  3527. msgstr "Данный параметр был скрыт текущим принтером и не будет отображаться."
  3528. msgctxt "@item:tooltip %1 is list of setting names"
  3529. msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible."
  3530. msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible."
  3531. msgstr[0] "Этот параметр был скрыт значением %1. Измените это значение, чтобы параметр стал отображаться."
  3532. msgstr[1] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться."
  3533. msgstr[2] "Эти параметры были скрыты значением %1. Измените это значение, чтобы параметр стал отображаться."
  3534. msgctxt "@label"
  3535. msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders."
  3536. msgstr "Данная настройка всегда используется совместно всеми экструдерами. Изменение данного значения приведет к изменению значения для всех экструдеров."
  3537. msgctxt "@label"
  3538. msgid ""
  3539. "This setting is normally calculated, but it currently has an absolute value set.\n"
  3540. "\n"
  3541. "Click to restore the calculated value."
  3542. msgstr ""
  3543. "Обычно это значение вычисляется, но в настоящий момент было установлено явно.\n"
  3544. "\n"
  3545. "Щёлкните для восстановления вычисленного значения."
  3546. msgctxt "@label"
  3547. msgid "This setting is not used because all the settings that it influences are overridden."
  3548. msgstr "Этот параметр не используется, поскольку все параметры, на которые он влияет, переопределяются."
  3549. msgctxt "@label"
  3550. msgid "This setting is resolved from conflicting extruder-specific values:"
  3551. msgstr "Эта настройка получена из конфликтующих значений экструдера:"
  3552. msgctxt "@info:warning"
  3553. msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}"
  3554. msgstr ""
  3555. msgctxt "@label"
  3556. msgid "Time estimation"
  3557. msgstr "Оценка времени"
  3558. msgctxt "@message"
  3559. msgid "Timeout when authenticating with the account server."
  3560. msgstr "Истекло время аутентификации на сервере учетной записи."
  3561. msgctxt "@text"
  3562. msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura."
  3563. msgstr "Для автоматической синхронизации профилей материалов со всеми принтерами, подключенными к Digital Factory, необходимо войти в Cura."
  3564. #, python-brace-format
  3565. msgctxt "info:status"
  3566. msgid "To establish a connection, please visit the {website_link}"
  3567. msgstr "Чтобы установить подключение, перейдите на сайт {website_link}"
  3568. msgctxt "@label"
  3569. 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."
  3570. msgstr "Сейчас вы можете отрегулировать ваш стол, чтобы быть уверенным в качестве последующей печати. При нажатии на кнопку «Перейти к следующей позиции» сопло перейдёт на другую позиции, которую можно будет отрегулировать."
  3571. msgctxt "@label"
  3572. 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."
  3573. msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер."
  3574. #, python-brace-format
  3575. msgctxt "@message {printer_name} is replaced with the name of the printer"
  3576. msgid "To remove {printer_name} permanently, visit {digital_factory_link}"
  3577. msgstr "Чтобы удалить {printer_name} без возможности восстановления, перейдите на сайт {digital_factory_link}"
  3578. msgctxt "@action:inmenu"
  3579. msgid "Toggle Full Screen"
  3580. msgstr "Полный экран"
  3581. msgctxt "@label"
  3582. msgid "Top / Bottom"
  3583. msgstr "Дно / крышка"
  3584. msgctxt "@action:inmenu menubar:view"
  3585. msgid "Top View"
  3586. msgstr "Вид сверху"
  3587. msgctxt "@info:tooltip"
  3588. msgid "Top View"
  3589. msgstr "Вид сверху"
  3590. msgctxt "@label"
  3591. msgid "Total print time"
  3592. msgstr "Общее время печати"
  3593. msgctxt "@action:tooltip"
  3594. msgid "Track the print in Ultimaker Digital Factory"
  3595. msgstr "Отслеживайте печать в Ultimaker Digital Factory"
  3596. msgctxt "@item:inlistbox"
  3597. msgid "Translucency"
  3598. msgstr "Светопроходимость"
  3599. msgctxt "@tooltip"
  3600. msgid "Travel"
  3601. msgstr "Перемещение"
  3602. msgctxt "@label"
  3603. msgid "Travels"
  3604. msgstr "Перемещения"
  3605. msgctxt "@info:backup_failed"
  3606. msgid "Tried to restore a Cura backup that is higher than the current version."
  3607. msgstr "Выполнена попытка восстановить резервную копию Cura с более поздней версией, чем текущая."
  3608. msgctxt "@info:backup_failed"
  3609. msgid "Tried to restore a Cura backup without having proper data or meta data."
  3610. msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных."
  3611. msgctxt "name"
  3612. msgid "Trimesh Reader"
  3613. msgstr "Средство чтения Trimesh"
  3614. msgctxt "@button"
  3615. msgid "Troubleshooting"
  3616. msgstr "Поиск и устранение неисправностей"
  3617. msgctxt "@label"
  3618. msgid "Troubleshooting"
  3619. msgstr "Поиск и устранение неисправностей"
  3620. msgctxt "@button"
  3621. msgid "Try again"
  3622. msgstr "Повторить попытку"
  3623. msgctxt "@action:label"
  3624. msgid "Type"
  3625. msgstr "Тип"
  3626. msgctxt "@label"
  3627. msgid "Type"
  3628. msgstr "Тип"
  3629. msgctxt "name"
  3630. msgid "UFP Reader"
  3631. msgstr "Средство считывания UFP"
  3632. msgctxt "name"
  3633. msgid "UFP Writer"
  3634. msgstr "Средство записи UFP"
  3635. msgctxt "@item:inmenu"
  3636. msgid "USB printing"
  3637. msgstr "Печать через USB"
  3638. msgctxt "name"
  3639. msgid "USB printing"
  3640. msgstr "Печать через USB"
  3641. msgctxt "@button"
  3642. msgid "UltiMaker Account"
  3643. msgstr "Учетная запись UltiMaker"
  3644. msgctxt "@info"
  3645. msgid "UltiMaker Certified Material"
  3646. msgstr "Сертифицированный материал UltiMaker"
  3647. msgctxt "@text:window"
  3648. 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:"
  3649. msgstr "UltiMaker Cura собирает анонимные данные для повышения качества печати и улучшения взаимодействия с пользователем. Ниже приведен пример всех передаваемых данных:"
  3650. msgctxt "@item:inlistbox"
  3651. msgid "UltiMaker Format Package"
  3652. msgstr "Пакет формата UltiMaker"
  3653. msgctxt "name"
  3654. msgid "UltiMaker Network Connection"
  3655. msgstr "Соединение с сетью UltiMaker"
  3656. msgctxt "@info"
  3657. msgid "UltiMaker Verified Package"
  3658. msgstr "Проверенный пакет UltiMaker"
  3659. msgctxt "@info"
  3660. msgid "UltiMaker Verified Plug-in"
  3661. msgstr "Проверенный плагин UltiMaker"
  3662. msgctxt "name"
  3663. msgid "UltiMaker machine actions"
  3664. msgstr "Действия с принтерами UltiMaker"
  3665. msgctxt "@button"
  3666. msgid "UltiMaker printer"
  3667. msgstr "Принтер UltiMaker"
  3668. msgctxt "@label:button"
  3669. msgid "UltiMaker support"
  3670. msgstr "Поддержка UltiMaker"
  3671. msgctxt "info:name"
  3672. msgid "Ultimaker Digital Factory"
  3673. msgstr "Ultimaker Digital Factory"
  3674. msgctxt "name"
  3675. msgid "Ultimaker Digital Library"
  3676. msgstr "Ultimaker Digital Library"
  3677. msgctxt "@info:status"
  3678. msgid "Unable to add the profile."
  3679. msgstr "Невозможно добавить профиль."
  3680. msgctxt "@info:status"
  3681. msgid "Unable to find a location within the build volume for all objects"
  3682. msgstr "Невозможно разместить все объекты внутри печатаемого объёма"
  3683. #, python-brace-format
  3684. msgctxt "@info:plugin_failed"
  3685. msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}"
  3686. msgstr ""
  3687. #, python-brace-format
  3688. msgctxt "@info:plugin_failed"
  3689. msgid ""
  3690. "Unable to kill running EnginePlugin: {self._plugin_id}\n"
  3691. "Access is denied."
  3692. msgstr ""
  3693. msgctxt "@info"
  3694. msgid "Unable to reach the UltiMaker account server."
  3695. msgstr "Нет связи с сервером учетных записей UltiMaker."
  3696. msgctxt "@text"
  3697. msgid "Unable to read example data file."
  3698. msgstr "Невозможно прочитать пример файла данных."
  3699. msgctxt "@info:title"
  3700. msgid "Unable to slice"
  3701. msgstr "Невозможно нарезать"
  3702. msgctxt "@label:PrintjobStatus"
  3703. msgid "Unable to slice"
  3704. msgstr "Невозможно нарезать"
  3705. msgctxt "@info:status"
  3706. msgid "Unable to slice because the prime tower or prime position(s) are invalid."
  3707. msgstr "Слайсинг невозможен, так как черновая башня или её позиция неверные."
  3708. #, python-format
  3709. msgctxt "@info:status"
  3710. msgid "Unable to slice because there are objects associated with disabled Extruder %s."
  3711. msgstr "Невозможно разделить на слои из-за наличия объектов, связанных с отключенным экструдером %s."
  3712. #, python-brace-format
  3713. msgctxt "@info:status"
  3714. msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}"
  3715. msgstr "Не удалось выполнить слайсинг из-за настроек модели. Следующие настройки ошибочны для одной или нескольких моделей: {error_labels}"
  3716. msgctxt "@info:status"
  3717. msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration."
  3718. msgstr "Невозможно нарезать модель, используя текущий материал, так как он несовместим с выбранной машиной или конфигурацией."
  3719. #, python-brace-format
  3720. msgctxt "@info:status"
  3721. msgid "Unable to slice with the current settings. The following settings have errors: {0}"
  3722. msgstr "Не могу выполнить слайсинг на текущих настройках. Проверьте следующие настройки: {0}"
  3723. msgctxt "@info"
  3724. msgid "Unable to start a new sign in process. Check if another sign in attempt is still active."
  3725. msgstr "Невозможно начать новый вход в систему. Проверьте, возможно другой сеанс еще не завершен."
  3726. msgctxt "@label:status"
  3727. msgid "Unavailable"
  3728. msgstr "Недоступен"
  3729. msgctxt "@label"
  3730. msgid "Unavailable printer"
  3731. msgstr "Недоступный принтер"
  3732. msgctxt "@action:inmenu menubar:edit"
  3733. msgid "Ungroup Models"
  3734. msgstr "Разгруппировать модели"
  3735. msgctxt "@button"
  3736. msgid "Uninstall"
  3737. msgstr "Удалить"
  3738. msgctxt "@title:column Unit of measurement"
  3739. msgid "Unit"
  3740. msgstr "Единица"
  3741. msgctxt "@label Description for development tool"
  3742. msgid "Universal build system configuration"
  3743. msgstr "Конфигурация универсальной системы сборки"
  3744. msgctxt "@label"
  3745. msgid "Unknown"
  3746. msgstr "Неизвестно"
  3747. msgctxt "@label unknown version of Cura"
  3748. msgid "Unknown"
  3749. msgstr "Неизвестно"
  3750. msgctxt "@label:property"
  3751. msgid "Unknown Author"
  3752. msgstr "Неизвестный автор"
  3753. msgctxt "@label:property"
  3754. msgid "Unknown Package"
  3755. msgstr "Неизвестный пакет"
  3756. #, python-brace-format
  3757. msgctxt "@error:send"
  3758. msgid "Unknown error code when uploading print job: {0}"
  3759. msgstr "Неизвестный код ошибки при загрузке задания печати: {0}"
  3760. msgctxt "@text"
  3761. msgid "Unknown error."
  3762. msgstr "Неизвестная ошибка."
  3763. msgctxt "@label"
  3764. msgid "Unlink Material"
  3765. msgstr "Отвязать материал"
  3766. msgctxt "@label:status"
  3767. msgid "Unreachable"
  3768. msgstr "Недостижимо"
  3769. msgctxt "@label"
  3770. msgid "Untitled"
  3771. msgstr "Без имени"
  3772. msgctxt "@text Print job name"
  3773. msgid "Untitled"
  3774. msgstr "Без имени"
  3775. msgctxt "@button"
  3776. msgid "Update"
  3777. msgstr "Обновить"
  3778. msgctxt "@action"
  3779. msgid "Update Firmware"
  3780. msgstr "Обновить прошивку"
  3781. msgctxt "@title"
  3782. msgid "Update Firmware"
  3783. msgstr "Обновить прошивку"
  3784. msgctxt "@action:ComboBox Update/override existing profile"
  3785. msgid "Update existing"
  3786. msgstr "Обновить существующий"
  3787. msgctxt "@action:tooltip"
  3788. msgid "Update profile with current settings/overrides"
  3789. msgstr "Обновить профиль текущими параметрами"
  3790. msgctxt "@action:button"
  3791. msgid "Update profile."
  3792. msgstr "Обновить профиль."
  3793. msgctxt "@info:title"
  3794. msgid "Update your printer"
  3795. msgstr "Обновите свой принтер"
  3796. msgctxt "@label"
  3797. msgid "Updates"
  3798. msgstr "Обновления"
  3799. msgctxt "@label"
  3800. msgid "Updating firmware."
  3801. msgstr "Обновление прошивки."
  3802. msgctxt "@button"
  3803. msgid "Updating..."
  3804. msgstr "Обновление..."
  3805. msgctxt "description"
  3806. msgid "Upgrades configurations from Cura 2.1 to Cura 2.2."
  3807. msgstr "Обновляет настройки Cura 2.1 до Cura 2.2."
  3808. msgctxt "description"
  3809. msgid "Upgrades configurations from Cura 2.2 to Cura 2.4."
  3810. msgstr "Обновляет настройки Cura 2.2 до Cura 2.4."
  3811. msgctxt "description"
  3812. msgid "Upgrades configurations from Cura 2.5 to Cura 2.6."
  3813. msgstr "Обновляет настройки Cura 2.5 до Cura 2.6."
  3814. msgctxt "description"
  3815. msgid "Upgrades configurations from Cura 2.6 to Cura 2.7."
  3816. msgstr "Обновляет настройки Cura 2.6 до Cura 2.7."
  3817. msgctxt "description"
  3818. msgid "Upgrades configurations from Cura 2.7 to Cura 3.0."
  3819. msgstr "Обновляет настройки Cura 2.7 до Cura 3.0."
  3820. msgctxt "description"
  3821. msgid "Upgrades configurations from Cura 3.0 to Cura 3.1."
  3822. msgstr "Обновление настроек Cura 3.0 до Cura 3.1."
  3823. msgctxt "description"
  3824. msgid "Upgrades configurations from Cura 3.2 to Cura 3.3."
  3825. msgstr "Обновляет настройки Cura 3.2 до Cura 3.3."
  3826. msgctxt "description"
  3827. msgid "Upgrades configurations from Cura 3.3 to Cura 3.4."
  3828. msgstr "Обновляет настройки Cura 3.3 до Cura 3.4."
  3829. msgctxt "description"
  3830. msgid "Upgrades configurations from Cura 3.4 to Cura 3.5."
  3831. msgstr "Обновляет настройки Cura 3.4 до Cura 3.5."
  3832. msgctxt "description"
  3833. msgid "Upgrades configurations from Cura 3.5 to Cura 4.0."
  3834. msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0."
  3835. msgctxt "description"
  3836. msgid "Upgrades configurations from Cura 4.0 to Cura 4.1."
  3837. msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1."
  3838. msgctxt "description"
  3839. msgid "Upgrades configurations from Cura 4.1 to Cura 4.2."
  3840. msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2."
  3841. msgctxt "description"
  3842. msgid "Upgrades configurations from Cura 4.11 to Cura 4.12."
  3843. msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12."
  3844. msgctxt "description"
  3845. msgid "Upgrades configurations from Cura 4.13 to Cura 5.0."
  3846. msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0."
  3847. msgctxt "description"
  3848. msgid "Upgrades configurations from Cura 4.2 to Cura 4.3."
  3849. msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3."
  3850. msgctxt "description"
  3851. msgid "Upgrades configurations from Cura 4.3 to Cura 4.4."
  3852. msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4."
  3853. msgctxt "description"
  3854. msgid "Upgrades configurations from Cura 4.4 to Cura 4.5."
  3855. msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5."
  3856. msgctxt "description"
  3857. msgid "Upgrades configurations from Cura 4.5 to Cura 4.6."
  3858. msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6."
  3859. msgctxt "description"
  3860. msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2."
  3861. msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2."
  3862. msgctxt "description"
  3863. msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7."
  3864. msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7."
  3865. msgctxt "description"
  3866. msgid "Upgrades configurations from Cura 4.7 to Cura 4.8."
  3867. msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8."
  3868. msgctxt "description"
  3869. msgid "Upgrades configurations from Cura 4.8 to Cura 4.9."
  3870. msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9."
  3871. msgctxt "description"
  3872. msgid "Upgrades configurations from Cura 4.9 to Cura 4.10."
  3873. msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10."
  3874. msgctxt "description"
  3875. msgid "Upgrades configurations from Cura 5.2 to Cura 5.3."
  3876. msgstr "Обновляет настройки Cura 5.2 до Cura 5.3."
  3877. msgctxt "description"
  3878. msgid "Upgrades configurations from Cura 5.3 to Cura 5.4."
  3879. msgstr ""
  3880. msgctxt "description"
  3881. msgid "Upgrades configurations from Cura 5.4 to Cura 5.5."
  3882. msgstr ""
  3883. msgctxt "@action:button"
  3884. msgid "Upload custom Firmware"
  3885. msgstr "Залить собственную прошивку"
  3886. msgctxt "@info:status"
  3887. msgid "Uploading print job to printer."
  3888. msgstr "Загрузка задания печати в принтер."
  3889. msgctxt "@info:backup_status"
  3890. msgid "Uploading your backup..."
  3891. msgstr "Выполняется заливка вашей резервной копии..."
  3892. msgctxt "@option:check"
  3893. msgid "Use a single instance of Cura"
  3894. msgstr "Использовать один экземпляр Cura"
  3895. msgctxt "@label"
  3896. msgid "Use glue for better adhesion with this material combination."
  3897. msgstr "Использовать клей для лучшего прилипания с этой комбинацией материалов."
  3898. msgctxt "@label"
  3899. msgid "User Agreement"
  3900. msgstr "Пользовательское соглашение"
  3901. msgctxt "@label Description for application dependency"
  3902. msgid "Utility functions, including an image loader"
  3903. msgstr "Вспомогательные функции, включая загрузчик изображений"
  3904. msgctxt "@label Description for application dependency"
  3905. msgid "Utility library, including Voronoi generation"
  3906. msgstr "Вспомогательные функции, включая генерацию диаграмм Вороного"
  3907. msgctxt "name"
  3908. msgid "Version Upgrade 2.1 to 2.2"
  3909. msgstr "Обновление версии 2.1 до 2.2"
  3910. msgctxt "name"
  3911. msgid "Version Upgrade 2.2 to 2.4"
  3912. msgstr "Обновление версии 2.2 до 2.4"
  3913. msgctxt "name"
  3914. msgid "Version Upgrade 2.5 to 2.6"
  3915. msgstr "Обновление версии 2.5 до 2.6"
  3916. msgctxt "name"
  3917. msgid "Version Upgrade 2.6 to 2.7"
  3918. msgstr "Обновление версии 2.6 до 2.7"
  3919. msgctxt "name"
  3920. msgid "Version Upgrade 2.7 to 3.0"
  3921. msgstr "Обновление версии 2.7 до 3.0"
  3922. msgctxt "name"
  3923. msgid "Version Upgrade 3.0 to 3.1"
  3924. msgstr "Обновление версии 3.0 до 3.1"
  3925. msgctxt "name"
  3926. msgid "Version Upgrade 3.2 to 3.3"
  3927. msgstr "Обновление версии 3.2 до 3.3"
  3928. msgctxt "name"
  3929. msgid "Version Upgrade 3.3 to 3.4"
  3930. msgstr "Обновление версии 3.3 до 3.4"
  3931. msgctxt "name"
  3932. msgid "Version Upgrade 3.4 to 3.5"
  3933. msgstr "Обновление версии 3.4 до 3.5"
  3934. msgctxt "name"
  3935. msgid "Version Upgrade 3.5 to 4.0"
  3936. msgstr "Обновление версии 3.5 до 4.0"
  3937. msgctxt "name"
  3938. msgid "Version Upgrade 4.0 to 4.1"
  3939. msgstr "Обновление версии 4.0 до 4.1"
  3940. msgctxt "name"
  3941. msgid "Version Upgrade 4.1 to 4.2"
  3942. msgstr "Обновление версии 4.1 до 4.2"
  3943. msgctxt "name"
  3944. msgid "Version Upgrade 4.11 to 4.12"
  3945. msgstr "Обновление версии 4.11 до 4.12"
  3946. msgctxt "name"
  3947. msgid "Version Upgrade 4.13 to 5.0"
  3948. msgstr "Обновление версии 4.13 до 5.0"
  3949. msgctxt "name"
  3950. msgid "Version Upgrade 4.2 to 4.3"
  3951. msgstr "Обновление версии 4.2 до 4.3"
  3952. msgctxt "name"
  3953. msgid "Version Upgrade 4.3 to 4.4"
  3954. msgstr "Обновление версии 4.3 до 4.4"
  3955. msgctxt "name"
  3956. msgid "Version Upgrade 4.4 to 4.5"
  3957. msgstr "Обновление версии 4.4 до 4.5"
  3958. msgctxt "name"
  3959. msgid "Version Upgrade 4.5 to 4.6"
  3960. msgstr "Обновление версии 4.5 до 4.6"
  3961. msgctxt "name"
  3962. msgid "Version Upgrade 4.6.0 to 4.6.2"
  3963. msgstr "Обновление версии с 4.6.0 до 4.6.2"
  3964. msgctxt "name"
  3965. msgid "Version Upgrade 4.6.2 to 4.7"
  3966. msgstr "Обновление версии с 4.6.2 до 4.7"
  3967. msgctxt "name"
  3968. msgid "Version Upgrade 4.7 to 4.8"
  3969. msgstr "Обновление версии 4.7 до 4.8"
  3970. msgctxt "name"
  3971. msgid "Version Upgrade 4.8 to 4.9"
  3972. msgstr "Обновление версии 4.8 до 4.9"
  3973. msgctxt "name"
  3974. msgid "Version Upgrade 4.9 to 4.10"
  3975. msgstr "Обновление версии 4.9 до 4.10"
  3976. msgctxt "name"
  3977. msgid "Version Upgrade 5.2 to 5.3"
  3978. msgstr "Обновление версии 5.2 до 5.3"
  3979. msgctxt "name"
  3980. msgid "Version Upgrade 5.3 to 5.4"
  3981. msgstr ""
  3982. msgctxt "name"
  3983. msgid "Version Upgrade 5.4 to 5.5"
  3984. msgstr ""
  3985. msgctxt "@button"
  3986. msgid "View printers in Digital Factory"
  3987. msgstr "Просмотреть принтеры в Digital Factory"
  3988. msgctxt "@label"
  3989. msgid "View type"
  3990. msgstr "Просмотр типа"
  3991. msgctxt "@label link to technical assistance"
  3992. msgid "View user manuals online"
  3993. msgstr "Просмотр руководств пользователей онлайн"
  3994. msgctxt "@label"
  3995. msgid "Viewport behavior"
  3996. msgstr "Поведение окна"
  3997. msgctxt "@action:inmenu"
  3998. msgid "Visible Settings"
  3999. msgstr "Видимые параметры"
  4000. msgctxt "@button"
  4001. msgid "Visit plug-in website"
  4002. msgstr "Посетите веб-сайт встраиваемых модулей"
  4003. msgctxt "@tooltip:button"
  4004. msgid "Visit the UltiMaker website."
  4005. msgstr "Посетите веб-сайт UltiMaker."
  4006. msgctxt "@label"
  4007. msgid "Visual"
  4008. msgstr "Визуальный"
  4009. msgctxt "@label"
  4010. msgid "Waiting for"
  4011. msgstr "Ожидание"
  4012. msgctxt "@label"
  4013. msgid "Waiting for Cloud response"
  4014. msgstr "Ожидается ответ от облака"
  4015. msgctxt "@button"
  4016. msgid "Waiting for new printers"
  4017. msgstr "Ожидание новых принтеров"
  4018. msgctxt "@button"
  4019. msgid "Want more?"
  4020. msgstr "Желаете большего?"
  4021. msgctxt "@info:title"
  4022. msgid "Warning"
  4023. msgstr "Внимание"
  4024. #, python-brace-format
  4025. msgctxt "@info:status"
  4026. 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."
  4027. msgstr "Внимание! Профиль не отображается, так как его тип качества \"{0}\" недоступен для текущей конфигурации. Выберите комбинацию материала и сопла, которым подходит этот тип качества."
  4028. msgctxt "@text:window"
  4029. 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."
  4030. msgstr "Среди выбранных файлов мы нашли несколько файлов с G-кодом. Вы можете открыть только один файл за раз. Измените свой выбор, пожалуйста."
  4031. msgctxt "@text:window"
  4032. 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?"
  4033. msgstr "Мы нашли один или более проектных файлов среди выбранных вами. Вы можете открыть только один файл проекта. Мы предлагаем импортировать только модели их этих файлов. Желаете продолжить?"
  4034. msgctxt "@info"
  4035. msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam."
  4036. msgstr "Каналы веб-камеры для облачных принтеров невозможно просмотреть из UltiMaker Cura. Щелкните «Управление принтером», чтобы просмотреть эту веб-камеру на сайте Ultimaker Digital Factory."
  4037. msgctxt "@button"
  4038. msgid "Website"
  4039. msgstr "Веб-сайт"
  4040. msgctxt "@label"
  4041. msgid "What printer would you like to setup?"
  4042. msgstr "Какой принтер вы хотите настроить?"
  4043. msgctxt "@info:tooltip"
  4044. msgid "What type of camera rendering should be used?"
  4045. msgstr "Рендеринг камеры какого типа следует использовать?"
  4046. msgctxt "@action:inmenu menubar:help"
  4047. msgid "What's New"
  4048. msgstr "Что нового"
  4049. msgctxt "@label"
  4050. msgid "What's New"
  4051. msgstr "Что нового"
  4052. msgctxt "@title:window"
  4053. msgid "What's New"
  4054. msgstr "Что нового"
  4055. msgctxt "@info:tooltip"
  4056. msgid "When checking for updates, check for both stable and for beta releases."
  4057. msgstr "При проверке обновлений проверяйте как стабильные, так и бета-версии."
  4058. msgctxt "@info:tooltip"
  4059. msgid "When checking for updates, only check for stable releases."
  4060. msgstr "При проверке обновлений проверяйте только стабильные версии."
  4061. msgctxt "@info:tooltip"
  4062. 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."
  4063. msgstr "При внесении изменений в профиль и переключении на другой, будет показан диалог, запрашивающий ваше решение о сохранении ваших изменений, или вы можете указать стандартное поведение и не показывать такой диалог."
  4064. msgctxt "@button"
  4065. msgid "Why do I need to sync material profiles?"
  4066. msgstr "Зачем нужна синхронизация профилей материалов?"
  4067. msgctxt "@action:label"
  4068. msgid "Width (mm)"
  4069. msgstr "Ширина (мм)"
  4070. msgctxt "description"
  4071. msgid "Writes g-code to a compressed archive."
  4072. msgstr "Записывает G-код в сжатый архив."
  4073. msgctxt "description"
  4074. msgid "Writes g-code to a file."
  4075. msgstr "Записывает G-код в файл."
  4076. msgctxt "@label"
  4077. msgid "X (Width)"
  4078. msgstr "X (Ширина)"
  4079. msgctxt "@label"
  4080. msgid "X max"
  4081. msgstr "X максимум"
  4082. msgctxt "@label"
  4083. msgid "X min"
  4084. msgstr "X минимум"
  4085. msgctxt "name"
  4086. msgid "X-Ray View"
  4087. msgstr "Просмотр в рентгене"
  4088. msgctxt "@item:inlistbox"
  4089. msgid "X-Ray view"
  4090. msgstr "Просмотр в рентгене"
  4091. msgctxt "@label"
  4092. msgid "X/Y"
  4093. msgstr "X/Y"
  4094. msgctxt "@item:inlistbox"
  4095. msgid "X3D File"
  4096. msgstr "Файл X3D"
  4097. msgctxt "name"
  4098. msgid "X3D Reader"
  4099. msgstr "Чтение X3D"
  4100. msgctxt "@label"
  4101. msgid "Y (Depth)"
  4102. msgstr "Y (Глубина)"
  4103. msgctxt "@label"
  4104. msgid "Y max"
  4105. msgstr "Y максимум"
  4106. msgctxt "@label"
  4107. msgid "Y min"
  4108. msgstr "Y минимум"
  4109. msgctxt "@info"
  4110. msgid "Yes"
  4111. msgstr "Да"
  4112. msgctxt "@label"
  4113. msgid ""
  4114. "You are about to remove all printers from Cura. This action cannot be undone.\n"
  4115. "Are you sure you want to continue?"
  4116. msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?"
  4117. #, python-brace-format
  4118. msgctxt "@label"
  4119. msgid ""
  4120. "You are about to remove {0} printer from Cura. This action cannot be undone.\n"
  4121. "Are you sure you want to continue?"
  4122. msgid_plural ""
  4123. "You are about to remove {0} printers from Cura. This action cannot be undone.\n"
  4124. "Are you sure you want to continue?"
  4125. msgstr[0] ""
  4126. "Вы удаляете {0} принтер из Cura. Это действие невозможно будет отменить.\n"
  4127. "Продолжить?"
  4128. msgstr[1] ""
  4129. "Вы удаляете {0} принтера из Cura. Это действие невозможно будет отменить.\n"
  4130. "Продолжить?"
  4131. msgstr[2] ""
  4132. "Вы удаляете {0} принтеров из Cura. Это действие невозможно будет отменить.\n"
  4133. "Продолжить?"
  4134. msgctxt "@info:status"
  4135. msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware."
  4136. msgstr "Вы пытаетесь подключиться к принтеру, на котором не работает UltiMaker Connect. Обновите прошивку принтера до последней версии."
  4137. #, python-brace-format
  4138. msgctxt "@info:status"
  4139. 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."
  4140. msgstr "Вы пытаетесь подключиться к {0}, но это не главный принтер группы. Откройте веб-страницу, чтобы настроить его в качестве главного принтера группы."
  4141. msgctxt "@empty_state"
  4142. msgid "You don't have any backups currently. Use the 'Backup Now' button to create one."
  4143. msgstr "В данный момент у вас отсутствуют резервные копии. Для создания резервной копии нажмите кнопку «Создать резервную копию»."
  4144. msgctxt "@text:window, %1 is a profile name"
  4145. msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'."
  4146. msgstr ""
  4147. "Вы изменили некоторые настройки профиля.\n"
  4148. "Сохранить измененные настройки после переключения профилей?\n"
  4149. "Изменения можно отменить и загрузить настройки по умолчанию из \"%1\"."
  4150. msgctxt "@label"
  4151. msgid "You need to accept the license to install the package"
  4152. msgstr "Для установки пакета необходимо принять лицензию"
  4153. msgctxt "@info:generic"
  4154. msgid "You need to quit and restart {} before changes have effect."
  4155. msgstr "Для активации изменений вам потребуется завершить работу программного обеспечения {} и перезапустить его."
  4156. msgctxt "@dialog:info"
  4157. msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?"
  4158. msgstr "Вам потребуется перезапустить Cura, прежде чем данные будут восстановлены из резервной копии. Вы действительно хотите закрыть Cura прямо сейчас?"
  4159. msgctxt "@info:status"
  4160. msgid "You will receive a confirmation via email when the print job is approved"
  4161. msgstr "Вы получите подтверждение по электронной почте после утверждения задания печати"
  4162. msgctxt "@info:backup_status"
  4163. msgid "Your backup has finished uploading."
  4164. msgstr "Заливка вашей резервной копии завершена."
  4165. msgctxt "@action:label"
  4166. msgid "Your current settings match the selected profile."
  4167. msgstr "Ваши текущие параметры совпадают с выбранным профилем."
  4168. msgctxt "@info"
  4169. msgid "Your new printer will automatically appear in Cura"
  4170. msgstr "Ваш новый принтер автоматически появится в Cura"
  4171. #, python-brace-format
  4172. msgctxt "@info:status"
  4173. msgid ""
  4174. "Your printer <b>{printer_name}</b> could be connected via cloud.\n"
  4175. " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory"
  4176. msgstr ""
  4177. "Ваш принтер <b>{printer_name}</b> может быть подключен через облако.\n"
  4178. " Управляйте очередью печати и следите за результатом из любого места благодаря подключению принтера к Digital Factory"
  4179. msgctxt "@label"
  4180. msgid "Z"
  4181. msgstr "Z"
  4182. msgctxt "@label"
  4183. msgid "Z (Height)"
  4184. msgstr "Z (Высота)"
  4185. msgctxt "@label Description for application dependency"
  4186. msgid "ZeroConf discovery library"
  4187. msgstr "Библиотека ZeroConf"
  4188. msgctxt "@action:button"
  4189. msgid "Zoom toward mouse direction"
  4190. msgstr "Увеличивать по движению мышки"
  4191. msgctxt "@info:tooltip"
  4192. msgid "Zooming towards the mouse is not supported in the orthographic perspective."
  4193. msgstr "В ортогональной проекции изменение масштаба мышью не поддерживается."
  4194. msgctxt "@text Placeholder for the username if it has been deleted"
  4195. msgid "deleted user"
  4196. msgstr "удаленный пользователь"
  4197. msgctxt "@item:inlistbox"
  4198. msgid "glTF Binary"
  4199. msgstr "glTF Binary"
  4200. msgctxt "@item:inlistbox"
  4201. msgid "glTF Embedded JSON"
  4202. msgstr "glTF Embedded JSON"
  4203. msgctxt "@label"
  4204. msgid "max"
  4205. msgstr "макс"
  4206. msgctxt "@label"
  4207. msgid "min"
  4208. msgstr "мин"
  4209. msgctxt "@label"
  4210. msgid "mm"
  4211. msgstr "мм"
  4212. msgctxt "@info:status"
  4213. msgid "today"
  4214. msgstr "сегодня"
  4215. msgctxt "@info:status"
  4216. msgid "tomorrow"
  4217. msgstr "завтра"
  4218. msgctxt "@label"
  4219. msgid "version: %1"
  4220. msgstr "версия: %1"
  4221. #, python-brace-format
  4222. msgctxt "@message {printer_name} is replaced with the name of the printer"
  4223. msgid "{printer_name} will be removed until the next account sync."
  4224. msgstr "{printer_name} будет удален до следующей синхронизации учетной записи."
  4225. msgctxt "@info:generic"
  4226. msgid "{} plugins failed to download"
  4227. msgstr "Встраиваемые модули ({} шт.) не загружены"
  4228. #, python-brace-format
  4229. #~ msgctxt "info:{0} gets replaced by a number of printers"
  4230. #~ msgid "... and {0} other"
  4231. #~ msgid_plural "... and {0} others"
  4232. #~ msgstr[0] "... и еще {0} другой"
  4233. #~ msgstr[1] "... и еще {0} других"
  4234. #~ msgstr[2] "... и еще {0} других"
  4235. #~ msgctxt "@action:inmenu menubar:edit"
  4236. #~ msgid "Arrange Selection"
  4237. #~ msgstr "Выровнять выбранные"
  4238. #~ msgctxt "@tooltip:button"
  4239. #~ msgid "Become a 3D printing expert with UltiMaker e-learning."
  4240. #~ msgstr "Пройдите электронное обучение UltiMaker и станьте экспертом в области 3D-печати."
  4241. #~ msgctxt "@info:status"
  4242. #~ msgid "Cura does not accurately display layers when Wire Printing is enabled."
  4243. #~ msgstr "При печати через кабель Cura отображает слои неточно."
  4244. #~ msgctxt "@label"
  4245. #~ 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."
  4246. #~ msgstr "Разрешает печать каймы или подложки. Это добавляет плоскую область вокруг или под вашим объектом, которую легко удалить после печати."
  4247. #~ msgctxt "@error:zip"
  4248. #~ msgid "Error writing 3mf file."
  4249. #~ msgstr "Ошибка в ходе записи файла 3MF."
  4250. #~ msgctxt "@label"
  4251. #~ msgid "Hex"
  4252. #~ msgstr "Шестигранный"
  4253. #~ msgctxt "@action:button"
  4254. #~ msgid "Install Materials"
  4255. #~ msgstr "Установка материалов"
  4256. #~ msgctxt "@title"
  4257. #~ msgid "Install missing Materials"
  4258. #~ msgstr "Установить недостающие материалы"
  4259. #~ msgctxt "@action:button"
  4260. #~ msgid "Install missing material"
  4261. #~ msgstr "Установить недостающий материал"
  4262. #~ msgctxt "@info:title"
  4263. #~ msgid "Material profiles not installed"
  4264. #~ msgstr "Профили материалов не установлены"
  4265. #~ msgctxt "@info:title"
  4266. #~ msgid "Simulation View"
  4267. #~ msgstr "Вид моделирования"
  4268. #~ msgctxt "@label"
  4269. #~ msgid "The material used in this project is currently not installed in Cura.<br/>Install the material profile and reopen the project."
  4270. #~ msgstr "Материал, используемый в этом проекте, в настоящее время не установлен в Cura.<br/>Установите профиль материала и откройте проект снова."
  4271. #~ msgctxt "@info:status"
  4272. #~ msgid "The material used in this project relies on some material definitions not available in Cura, this might produce undesirable print results. We highly recommend installing the full material package from the Marketplace."
  4273. #~ msgstr "Используемый в этом проекте материал основывается на определениях материалов, недоступных в Cura, что может привести к нежелательным результатам при печати. Мы настоятельно рекомендуем установить полный пакет материалов из магазина."
  4274. #~ msgctxt "@error:zip"
  4275. #~ msgid "The operating system does not allow saving a project file to this location or with this file name."
  4276. #~ msgstr "Операционная система не позволяет сохранять файл проекта в этом каталоге или с этим именем файла."