fdmprinter.def.json.po 451 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492
  1. # Cura
  2. # Copyright (C) 2021 Ultimaker B.V.
  3. # This file is distributed under the same license as the Cura package.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: Cura 4.11\n"
  8. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  9. "POT-Creation-Date: 2021-08-11 09:58+0000\n"
  10. "PO-Revision-Date: 2021-04-16 14:58+0200\n"
  11. "Last-Translator: Lionbridge <info@lionbridge.com>\n"
  12. "Language-Team: Russian <info@lionbridge.com>, Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
  13. "Language: ru_RU\n"
  14. "MIME-Version: 1.0\n"
  15. "Content-Type: text/plain; charset=UTF-8\n"
  16. "Content-Transfer-Encoding: 8bit\n"
  17. "X-Generator: Poedit 2.4.1\n"
  18. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
  19. #: fdmprinter.def.json
  20. msgctxt "machine_settings label"
  21. msgid "Machine"
  22. msgstr "Принтер"
  23. #: fdmprinter.def.json
  24. msgctxt "machine_settings description"
  25. msgid "Machine specific settings"
  26. msgstr "Параметры, относящиеся к принтеру"
  27. #: fdmprinter.def.json
  28. msgctxt "machine_name label"
  29. msgid "Machine Type"
  30. msgstr "Тип принтера"
  31. #: fdmprinter.def.json
  32. msgctxt "machine_name description"
  33. msgid "The name of your 3D printer model."
  34. msgstr "Название модели вашего 3D принтера."
  35. #: fdmprinter.def.json
  36. msgctxt "machine_show_variants label"
  37. msgid "Show Machine Variants"
  38. msgstr "Показать варианты принтера"
  39. #: fdmprinter.def.json
  40. msgctxt "machine_show_variants description"
  41. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  42. msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах."
  43. #: fdmprinter.def.json
  44. msgctxt "machine_start_gcode label"
  45. msgid "Start G-code"
  46. msgstr "Стартовый G-код"
  47. #: fdmprinter.def.json
  48. msgctxt "machine_start_gcode description"
  49. msgid ""
  50. "G-code commands to be executed at the very start - separated by \n"
  51. "."
  52. msgstr ""
  53. "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n"
  54. "."
  55. #: fdmprinter.def.json
  56. msgctxt "machine_end_gcode label"
  57. msgid "End G-code"
  58. msgstr "Завершающий G-код"
  59. #: fdmprinter.def.json
  60. msgctxt "machine_end_gcode description"
  61. msgid ""
  62. "G-code commands to be executed at the very end - separated by \n"
  63. "."
  64. msgstr ""
  65. "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n"
  66. "."
  67. #: fdmprinter.def.json
  68. msgctxt "material_guid label"
  69. msgid "Material GUID"
  70. msgstr "GUID материала"
  71. #: fdmprinter.def.json
  72. msgctxt "material_guid description"
  73. msgid "GUID of the material. This is set automatically."
  74. msgstr "Идентификатор материала, устанавливается автоматически."
  75. #: fdmprinter.def.json
  76. msgctxt "material_diameter label"
  77. msgid "Diameter"
  78. msgstr "Диаметр"
  79. #: fdmprinter.def.json
  80. msgctxt "material_diameter description"
  81. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  82. msgstr "Укажите диаметр используемой нити."
  83. #: fdmprinter.def.json
  84. msgctxt "material_bed_temp_wait label"
  85. msgid "Wait for Build Plate Heatup"
  86. msgstr "Ожидать пока прогреется стол"
  87. #: fdmprinter.def.json
  88. msgctxt "material_bed_temp_wait description"
  89. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  90. msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати."
  91. #: fdmprinter.def.json
  92. msgctxt "material_print_temp_wait label"
  93. msgid "Wait for Nozzle Heatup"
  94. msgstr "Ожидать пока прогреется голова"
  95. #: fdmprinter.def.json
  96. msgctxt "material_print_temp_wait description"
  97. msgid "Whether to wait until the nozzle temperature is reached at the start."
  98. msgstr "Следует ли добавлять команду ожидания прогрева головы перед началом печати."
  99. #: fdmprinter.def.json
  100. msgctxt "material_print_temp_prepend label"
  101. msgid "Include Material Temperatures"
  102. msgstr "Использовать температуру из материала"
  103. #: fdmprinter.def.json
  104. msgctxt "material_print_temp_prepend description"
  105. msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting."
  106. msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр."
  107. #: fdmprinter.def.json
  108. msgctxt "material_bed_temp_prepend label"
  109. msgid "Include Build Plate Temperature"
  110. msgstr "Добавлять температуру стола"
  111. #: fdmprinter.def.json
  112. msgctxt "material_bed_temp_prepend description"
  113. msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting."
  114. msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр."
  115. #: fdmprinter.def.json
  116. msgctxt "machine_width label"
  117. msgid "Machine Width"
  118. msgstr "Ширина принтера"
  119. #: fdmprinter.def.json
  120. msgctxt "machine_width description"
  121. msgid "The width (X-direction) of the printable area."
  122. msgstr "Ширина (по оси X) области печати."
  123. #: fdmprinter.def.json
  124. msgctxt "machine_depth label"
  125. msgid "Machine Depth"
  126. msgstr "Глубина принтера"
  127. #: fdmprinter.def.json
  128. msgctxt "machine_depth description"
  129. msgid "The depth (Y-direction) of the printable area."
  130. msgstr "Ширина (по оси Y) области печати."
  131. #: fdmprinter.def.json
  132. msgctxt "machine_shape label"
  133. msgid "Build Plate Shape"
  134. msgstr "Форма стола"
  135. #: fdmprinter.def.json
  136. msgctxt "machine_shape description"
  137. msgid "The shape of the build plate without taking unprintable areas into account."
  138. msgstr "Форма стола без учёта непечатаемых областей."
  139. #: fdmprinter.def.json
  140. msgctxt "machine_shape option rectangular"
  141. msgid "Rectangular"
  142. msgstr "Прямоугольная"
  143. #: fdmprinter.def.json
  144. msgctxt "machine_shape option elliptic"
  145. msgid "Elliptic"
  146. msgstr "Эллиптическая"
  147. #: fdmprinter.def.json
  148. msgctxt "machine_buildplate_type label"
  149. msgid "Build Plate Material"
  150. msgstr "Материал рабочего стола"
  151. #: fdmprinter.def.json
  152. msgctxt "machine_buildplate_type description"
  153. msgid "The material of the build plate installed on the printer."
  154. msgstr "Материал рабочего стола, установленного на принтере."
  155. #: fdmprinter.def.json
  156. msgctxt "machine_buildplate_type option glass"
  157. msgid "Glass"
  158. msgstr "Стекло"
  159. #: fdmprinter.def.json
  160. msgctxt "machine_buildplate_type option aluminum"
  161. msgid "Aluminum"
  162. msgstr "Алюминий"
  163. #: fdmprinter.def.json
  164. msgctxt "machine_height label"
  165. msgid "Machine Height"
  166. msgstr "Высота принтера"
  167. #: fdmprinter.def.json
  168. msgctxt "machine_height description"
  169. msgid "The height (Z-direction) of the printable area."
  170. msgstr "Ширина (по оси Z) области печати."
  171. #: fdmprinter.def.json
  172. msgctxt "machine_heated_bed label"
  173. msgid "Has Heated Build Plate"
  174. msgstr "Имеет подогреваемый стол"
  175. #: fdmprinter.def.json
  176. msgctxt "machine_heated_bed description"
  177. msgid "Whether the machine has a heated build plate present."
  178. msgstr "Имеет ли принтер подогреваемый стол."
  179. #: fdmprinter.def.json
  180. msgctxt "machine_heated_build_volume label"
  181. msgid "Has Build Volume Temperature Stabilization"
  182. msgstr "Есть стабилизация температуры для объема печати"
  183. #: fdmprinter.def.json
  184. msgctxt "machine_heated_build_volume description"
  185. msgid "Whether the machine is able to stabilize the build volume temperature."
  186. msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати."
  187. #: fdmprinter.def.json
  188. msgctxt "machine_always_write_active_tool label"
  189. msgid "Always Write Active Tool"
  190. msgstr "Всегда выполнять запись активного инструмента"
  191. #: fdmprinter.def.json
  192. msgctxt "machine_always_write_active_tool description"
  193. msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands."
  194. msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов."
  195. #: fdmprinter.def.json
  196. msgctxt "machine_center_is_zero label"
  197. msgid "Is Center Origin"
  198. msgstr "Начало координат в центре"
  199. #: fdmprinter.def.json
  200. msgctxt "machine_center_is_zero description"
  201. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  202. msgstr "Следует ли считать центром координат по осям X/Y в центре области печати."
  203. #: fdmprinter.def.json
  204. msgctxt "machine_extruder_count label"
  205. msgid "Number of Extruders"
  206. msgstr "Количество экструдеров"
  207. #: fdmprinter.def.json
  208. msgctxt "machine_extruder_count description"
  209. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  210. msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла."
  211. #: fdmprinter.def.json
  212. msgctxt "extruders_enabled_count label"
  213. msgid "Number of Extruders That Are Enabled"
  214. msgstr "Количество включенных экструдеров"
  215. #: fdmprinter.def.json
  216. msgctxt "extruders_enabled_count description"
  217. msgid "Number of extruder trains that are enabled; automatically set in software"
  218. msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением"
  219. #: fdmprinter.def.json
  220. msgctxt "machine_nozzle_tip_outer_diameter label"
  221. msgid "Outer Nozzle Diameter"
  222. msgstr "Внешний диаметр сопла"
  223. #: fdmprinter.def.json
  224. msgctxt "machine_nozzle_tip_outer_diameter description"
  225. msgid "The outer diameter of the tip of the nozzle."
  226. msgstr "Внешний диаметр кончика сопла."
  227. #: fdmprinter.def.json
  228. msgctxt "machine_nozzle_head_distance label"
  229. msgid "Nozzle Length"
  230. msgstr "Длина сопла"
  231. #: fdmprinter.def.json
  232. msgctxt "machine_nozzle_head_distance description"
  233. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  234. msgstr "Высота между кончиком сопла и нижней частью головы."
  235. #: fdmprinter.def.json
  236. msgctxt "machine_nozzle_expansion_angle label"
  237. msgid "Nozzle Angle"
  238. msgstr "Угол сопла"
  239. #: fdmprinter.def.json
  240. msgctxt "machine_nozzle_expansion_angle description"
  241. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  242. msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла."
  243. #: fdmprinter.def.json
  244. msgctxt "machine_heat_zone_length label"
  245. msgid "Heat Zone Length"
  246. msgstr "Длина зоны нагрева"
  247. #: fdmprinter.def.json
  248. msgctxt "machine_heat_zone_length description"
  249. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  250. msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу."
  251. #: fdmprinter.def.json
  252. msgctxt "machine_nozzle_temp_enabled label"
  253. msgid "Enable Nozzle Temperature Control"
  254. msgstr "Разрешить управление температурой сопла"
  255. #: fdmprinter.def.json
  256. msgctxt "machine_nozzle_temp_enabled description"
  257. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  258. msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura."
  259. #: fdmprinter.def.json
  260. msgctxt "machine_nozzle_heat_up_speed label"
  261. msgid "Heat Up Speed"
  262. msgstr "Скорость нагрева"
  263. #: fdmprinter.def.json
  264. msgctxt "machine_nozzle_heat_up_speed description"
  265. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  266. msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания."
  267. #: fdmprinter.def.json
  268. msgctxt "machine_nozzle_cool_down_speed label"
  269. msgid "Cool Down Speed"
  270. msgstr "Скорость охлаждения"
  271. #: fdmprinter.def.json
  272. msgctxt "machine_nozzle_cool_down_speed description"
  273. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  274. msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания."
  275. #: fdmprinter.def.json
  276. msgctxt "machine_min_cool_heat_time_window label"
  277. msgid "Minimal Time Standby Temperature"
  278. msgstr "Время перехода в ожидание"
  279. #: fdmprinter.def.json
  280. msgctxt "machine_min_cool_heat_time_window description"
  281. msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature."
  282. msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания."
  283. #: fdmprinter.def.json
  284. msgctxt "machine_gcode_flavor label"
  285. msgid "G-code Flavor"
  286. msgstr "Вариант G-кода"
  287. #: fdmprinter.def.json
  288. msgctxt "machine_gcode_flavor description"
  289. msgid "The type of g-code to be generated."
  290. msgstr "Генерируемый тип G-кода."
  291. #: fdmprinter.def.json
  292. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  293. msgid "Marlin"
  294. msgstr "Marlin"
  295. #: fdmprinter.def.json
  296. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  297. msgid "Marlin (Volumetric)"
  298. msgstr "Marlin (Volumetric)"
  299. #: fdmprinter.def.json
  300. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  301. msgid "RepRap"
  302. msgstr "RepRap"
  303. #: fdmprinter.def.json
  304. msgctxt "machine_gcode_flavor option UltiGCode"
  305. msgid "Ultimaker 2"
  306. msgstr "Ultimaker 2"
  307. #: fdmprinter.def.json
  308. msgctxt "machine_gcode_flavor option Griffin"
  309. msgid "Griffin"
  310. msgstr "Griffin"
  311. #: fdmprinter.def.json
  312. msgctxt "machine_gcode_flavor option Makerbot"
  313. msgid "Makerbot"
  314. msgstr "Makerbot"
  315. #: fdmprinter.def.json
  316. msgctxt "machine_gcode_flavor option BFB"
  317. msgid "Bits from Bytes"
  318. msgstr "Bits from Bytes"
  319. #: fdmprinter.def.json
  320. msgctxt "machine_gcode_flavor option MACH3"
  321. msgid "Mach3"
  322. msgstr "Mach3"
  323. #: fdmprinter.def.json
  324. msgctxt "machine_gcode_flavor option Repetier"
  325. msgid "Repetier"
  326. msgstr "Repetier"
  327. #: fdmprinter.def.json
  328. msgctxt "machine_firmware_retract label"
  329. msgid "Firmware Retraction"
  330. msgstr "Откат встроенного программного обеспечения"
  331. #: fdmprinter.def.json
  332. msgctxt "machine_firmware_retract description"
  333. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  334. msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала."
  335. #: fdmprinter.def.json
  336. msgctxt "machine_extruders_share_heater label"
  337. msgid "Extruders Share Heater"
  338. msgstr "Общий нагреватель экструдеров"
  339. #: fdmprinter.def.json
  340. msgctxt "machine_extruders_share_heater description"
  341. msgid "Whether the extruders share a single heater rather than each extruder having its own heater."
  342. msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный."
  343. #: fdmprinter.def.json
  344. msgctxt "machine_extruders_share_nozzle label"
  345. msgid "Extruders Share Nozzle"
  346. msgstr "Общее сопло экструдеров"
  347. #: fdmprinter.def.json
  348. msgctxt "machine_extruders_share_nozzle description"
  349. msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter."
  350. msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction."
  351. #: fdmprinter.def.json
  352. msgctxt "machine_extruders_shared_nozzle_initial_retraction label"
  353. msgid "Shared Nozzle Initial Retraction"
  354. msgstr "Начальный откат общего сопла"
  355. #: fdmprinter.def.json
  356. msgctxt "machine_extruders_shared_nozzle_initial_retraction description"
  357. msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts."
  358. msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее."
  359. #: fdmprinter.def.json
  360. msgctxt "machine_disallowed_areas label"
  361. msgid "Disallowed Areas"
  362. msgstr "Запрещенные области"
  363. #: fdmprinter.def.json
  364. msgctxt "machine_disallowed_areas description"
  365. msgid "A list of polygons with areas the print head is not allowed to enter."
  366. msgstr "Список полигонов с областями, в которые голове запрещено заходить."
  367. #: fdmprinter.def.json
  368. msgctxt "nozzle_disallowed_areas label"
  369. msgid "Nozzle Disallowed Areas"
  370. msgstr "Запрещённые зоны для сопла"
  371. #: fdmprinter.def.json
  372. msgctxt "nozzle_disallowed_areas description"
  373. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  374. msgstr "Список полигонов с областями, в которые не должно заходить сопло."
  375. #: fdmprinter.def.json
  376. msgctxt "machine_head_with_fans_polygon label"
  377. msgid "Machine Head & Fan Polygon"
  378. msgstr "Полигон головки принтера и вентилятора"
  379. #: fdmprinter.def.json
  380. msgctxt "machine_head_with_fans_polygon description"
  381. msgid "A 2D silhouette of the print head (fan caps included)."
  382. msgstr "2D контур головы принтера (включая крышки вентилятора)."
  383. #: fdmprinter.def.json
  384. msgctxt "gantry_height label"
  385. msgid "Gantry Height"
  386. msgstr "Высота портала"
  387. #: fdmprinter.def.json
  388. msgctxt "gantry_height description"
  389. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  390. msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)."
  391. #: fdmprinter.def.json
  392. msgctxt "machine_nozzle_id label"
  393. msgid "Nozzle ID"
  394. msgstr "Идентификатор сопла"
  395. #: fdmprinter.def.json
  396. msgctxt "machine_nozzle_id description"
  397. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  398. msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"."
  399. #: fdmprinter.def.json
  400. msgctxt "machine_nozzle_size label"
  401. msgid "Nozzle Diameter"
  402. msgstr "Диаметр сопла"
  403. #: fdmprinter.def.json
  404. msgctxt "machine_nozzle_size description"
  405. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  406. msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера."
  407. #: fdmprinter.def.json
  408. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  409. msgid "Offset with Extruder"
  410. msgstr "Смещение с экструдером"
  411. #: fdmprinter.def.json
  412. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  413. msgid "Apply the extruder offset to the coordinate system. Affects all extruders."
  414. msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры."
  415. #: fdmprinter.def.json
  416. msgctxt "extruder_prime_pos_z label"
  417. msgid "Extruder Prime Z Position"
  418. msgstr "Z координата начала печати"
  419. #: fdmprinter.def.json
  420. msgctxt "extruder_prime_pos_z description"
  421. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  422. msgstr "Позиция кончика сопла на оси Z при старте печати."
  423. #: fdmprinter.def.json
  424. msgctxt "extruder_prime_pos_abs label"
  425. msgid "Absolute Extruder Prime Position"
  426. msgstr "Абсолютная позиция экструдера при старте"
  427. #: fdmprinter.def.json
  428. msgctxt "extruder_prime_pos_abs description"
  429. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  430. msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы."
  431. #: fdmprinter.def.json
  432. msgctxt "machine_max_feedrate_x label"
  433. msgid "Maximum Speed X"
  434. msgstr "Максимальная скорость по оси X"
  435. #: fdmprinter.def.json
  436. msgctxt "machine_max_feedrate_x description"
  437. msgid "The maximum speed for the motor of the X-direction."
  438. msgstr "Максимальная скорость для мотора оси X."
  439. #: fdmprinter.def.json
  440. msgctxt "machine_max_feedrate_y label"
  441. msgid "Maximum Speed Y"
  442. msgstr "Максимальная скорость по оси Y"
  443. #: fdmprinter.def.json
  444. msgctxt "machine_max_feedrate_y description"
  445. msgid "The maximum speed for the motor of the Y-direction."
  446. msgstr "Максимальная скорость для мотора оси Y."
  447. #: fdmprinter.def.json
  448. msgctxt "machine_max_feedrate_z label"
  449. msgid "Maximum Speed Z"
  450. msgstr "Максимальная скорость по оси Z"
  451. #: fdmprinter.def.json
  452. msgctxt "machine_max_feedrate_z description"
  453. msgid "The maximum speed for the motor of the Z-direction."
  454. msgstr "Максимальная скорость для мотора оси Z."
  455. #: fdmprinter.def.json
  456. msgctxt "machine_max_feedrate_e label"
  457. msgid "Maximum Feedrate"
  458. msgstr "Максимальная подача"
  459. #: fdmprinter.def.json
  460. msgctxt "machine_max_feedrate_e description"
  461. msgid "The maximum speed of the filament."
  462. msgstr "Максимальная скорость подачи материала."
  463. #: fdmprinter.def.json
  464. msgctxt "machine_max_acceleration_x label"
  465. msgid "Maximum Acceleration X"
  466. msgstr "Максимальное ускорение по оси X"
  467. #: fdmprinter.def.json
  468. msgctxt "machine_max_acceleration_x description"
  469. msgid "Maximum acceleration for the motor of the X-direction"
  470. msgstr "Максимальное ускорение для мотора оси X"
  471. #: fdmprinter.def.json
  472. msgctxt "machine_max_acceleration_y label"
  473. msgid "Maximum Acceleration Y"
  474. msgstr "Максимальное ускорение по оси Y"
  475. #: fdmprinter.def.json
  476. msgctxt "machine_max_acceleration_y description"
  477. msgid "Maximum acceleration for the motor of the Y-direction."
  478. msgstr "Максимальное ускорение для мотора оси Y."
  479. #: fdmprinter.def.json
  480. msgctxt "machine_max_acceleration_z label"
  481. msgid "Maximum Acceleration Z"
  482. msgstr "Максимальное ускорение по оси Z"
  483. #: fdmprinter.def.json
  484. msgctxt "machine_max_acceleration_z description"
  485. msgid "Maximum acceleration for the motor of the Z-direction."
  486. msgstr "Максимальное ускорение для мотора оси Z."
  487. #: fdmprinter.def.json
  488. msgctxt "machine_max_acceleration_e label"
  489. msgid "Maximum Filament Acceleration"
  490. msgstr "Максимальное ускорение материала"
  491. #: fdmprinter.def.json
  492. msgctxt "machine_max_acceleration_e description"
  493. msgid "Maximum acceleration for the motor of the filament."
  494. msgstr "Максимальное ускорение мотора подачи материала."
  495. #: fdmprinter.def.json
  496. msgctxt "machine_acceleration label"
  497. msgid "Default Acceleration"
  498. msgstr "Стандартное ускорение"
  499. #: fdmprinter.def.json
  500. msgctxt "machine_acceleration description"
  501. msgid "The default acceleration of print head movement."
  502. msgstr "Стандартное ускорение для движений головы."
  503. #: fdmprinter.def.json
  504. msgctxt "machine_max_jerk_xy label"
  505. msgid "Default X-Y Jerk"
  506. msgstr "Обычный X-Y рывок"
  507. #: fdmprinter.def.json
  508. msgctxt "machine_max_jerk_xy description"
  509. msgid "Default jerk for movement in the horizontal plane."
  510. msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости."
  511. #: fdmprinter.def.json
  512. msgctxt "machine_max_jerk_z label"
  513. msgid "Default Z Jerk"
  514. msgstr "Обычный Z рывок"
  515. #: fdmprinter.def.json
  516. msgctxt "machine_max_jerk_z description"
  517. msgid "Default jerk for the motor of the Z-direction."
  518. msgstr "Стандартное изменение ускорения для мотора по оси Z."
  519. #: fdmprinter.def.json
  520. msgctxt "machine_max_jerk_e label"
  521. msgid "Default Filament Jerk"
  522. msgstr "Обычный рывок материала"
  523. #: fdmprinter.def.json
  524. msgctxt "machine_max_jerk_e description"
  525. msgid "Default jerk for the motor of the filament."
  526. msgstr "Стандартное изменение ускорения для мотора, подающего материал."
  527. #: fdmprinter.def.json
  528. msgctxt "machine_steps_per_mm_x label"
  529. msgid "Steps per Millimeter (X)"
  530. msgstr "Количество шагов на миллиметр (X)"
  531. #: fdmprinter.def.json
  532. msgctxt "machine_steps_per_mm_x description"
  533. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  534. msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X."
  535. #: fdmprinter.def.json
  536. msgctxt "machine_steps_per_mm_y label"
  537. msgid "Steps per Millimeter (Y)"
  538. msgstr "Количество шагов на миллиметр (Y)"
  539. #: fdmprinter.def.json
  540. msgctxt "machine_steps_per_mm_y description"
  541. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  542. msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y."
  543. #: fdmprinter.def.json
  544. msgctxt "machine_steps_per_mm_z label"
  545. msgid "Steps per Millimeter (Z)"
  546. msgstr "Количество шагов на миллиметр (Z)"
  547. #: fdmprinter.def.json
  548. msgctxt "machine_steps_per_mm_z description"
  549. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  550. msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z."
  551. #: fdmprinter.def.json
  552. msgctxt "machine_steps_per_mm_e label"
  553. msgid "Steps per Millimeter (E)"
  554. msgstr "Количество шагов на миллиметр (E)"
  555. #: fdmprinter.def.json
  556. msgctxt "machine_steps_per_mm_e description"
  557. msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference."
  558. msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности."
  559. #: fdmprinter.def.json
  560. msgctxt "machine_endstop_positive_direction_x label"
  561. msgid "X Endstop in Positive Direction"
  562. msgstr "Ограничитель хода на оси X в прямом направлении"
  563. #: fdmprinter.def.json
  564. msgctxt "machine_endstop_positive_direction_x description"
  565. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  566. msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)."
  567. #: fdmprinter.def.json
  568. msgctxt "machine_endstop_positive_direction_y label"
  569. msgid "Y Endstop in Positive Direction"
  570. msgstr "Ограничитель хода на оси Y в прямом направлении"
  571. #: fdmprinter.def.json
  572. msgctxt "machine_endstop_positive_direction_y description"
  573. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  574. msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)."
  575. #: fdmprinter.def.json
  576. msgctxt "machine_endstop_positive_direction_z label"
  577. msgid "Z Endstop in Positive Direction"
  578. msgstr "Ограничитель хода на оси Z в прямом направлении"
  579. #: fdmprinter.def.json
  580. msgctxt "machine_endstop_positive_direction_z description"
  581. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  582. msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)."
  583. #: fdmprinter.def.json
  584. msgctxt "machine_minimum_feedrate label"
  585. msgid "Minimum Feedrate"
  586. msgstr "Минимальная подача"
  587. #: fdmprinter.def.json
  588. msgctxt "machine_minimum_feedrate description"
  589. msgid "The minimal movement speed of the print head."
  590. msgstr "Минимальная скорость движения головы."
  591. #: fdmprinter.def.json
  592. msgctxt "machine_feeder_wheel_diameter label"
  593. msgid "Feeder Wheel Diameter"
  594. msgstr "Диаметр колесика питателя"
  595. #: fdmprinter.def.json
  596. msgctxt "machine_feeder_wheel_diameter description"
  597. msgid "The diameter of the wheel that drives the material in the feeder."
  598. msgstr "Диаметр колесика, перемещающего материал в питатель."
  599. #: fdmprinter.def.json
  600. msgctxt "resolution label"
  601. msgid "Quality"
  602. msgstr "Качество"
  603. #: fdmprinter.def.json
  604. msgctxt "resolution description"
  605. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  606. msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)"
  607. #: fdmprinter.def.json
  608. msgctxt "layer_height label"
  609. msgid "Layer Height"
  610. msgstr "Высота слоя"
  611. #: fdmprinter.def.json
  612. msgctxt "layer_height description"
  613. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  614. msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением."
  615. #: fdmprinter.def.json
  616. msgctxt "layer_height_0 label"
  617. msgid "Initial Layer Height"
  618. msgstr "Высота первого слоя"
  619. #: fdmprinter.def.json
  620. msgctxt "layer_height_0 description"
  621. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  622. msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу."
  623. #: fdmprinter.def.json
  624. msgctxt "line_width label"
  625. msgid "Line Width"
  626. msgstr "Ширина линии"
  627. #: fdmprinter.def.json
  628. msgctxt "line_width description"
  629. msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints."
  630. msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати."
  631. #: fdmprinter.def.json
  632. msgctxt "wall_line_width label"
  633. msgid "Wall Line Width"
  634. msgstr "Ширина линии стенки"
  635. #: fdmprinter.def.json
  636. msgctxt "wall_line_width description"
  637. msgid "Width of a single wall line."
  638. msgstr "Ширина одной линии стенки."
  639. #: fdmprinter.def.json
  640. msgctxt "wall_line_width_0 label"
  641. msgid "Outer Wall Line Width"
  642. msgstr "Ширина линии внешней стенки"
  643. #: fdmprinter.def.json
  644. msgctxt "wall_line_width_0 description"
  645. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  646. msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали."
  647. #: fdmprinter.def.json
  648. msgctxt "wall_line_width_x label"
  649. msgid "Inner Wall(s) Line Width"
  650. msgstr "Ширина линии внутренней стенки"
  651. #: fdmprinter.def.json
  652. msgctxt "wall_line_width_x description"
  653. msgid "Width of a single wall line for all wall lines except the outermost one."
  654. msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней."
  655. #: fdmprinter.def.json
  656. msgctxt "skin_line_width label"
  657. msgid "Top/Bottom Line Width"
  658. msgstr "Ширина линии дна/крышки"
  659. #: fdmprinter.def.json
  660. msgctxt "skin_line_width description"
  661. msgid "Width of a single top/bottom line."
  662. msgstr "Ширина одной линии дна/крышки."
  663. #: fdmprinter.def.json
  664. msgctxt "infill_line_width label"
  665. msgid "Infill Line Width"
  666. msgstr "Ширина линии заполнения"
  667. #: fdmprinter.def.json
  668. msgctxt "infill_line_width description"
  669. msgid "Width of a single infill line."
  670. msgstr "Ширина одной линии заполнения."
  671. #: fdmprinter.def.json
  672. msgctxt "skirt_brim_line_width label"
  673. msgid "Skirt/Brim Line Width"
  674. msgstr "Ширина линии юбки/каймы"
  675. #: fdmprinter.def.json
  676. msgctxt "skirt_brim_line_width description"
  677. msgid "Width of a single skirt or brim line."
  678. msgstr "Ширина одной линии юбки или каймы."
  679. #: fdmprinter.def.json
  680. msgctxt "support_line_width label"
  681. msgid "Support Line Width"
  682. msgstr "Ширина линии поддержки"
  683. #: fdmprinter.def.json
  684. msgctxt "support_line_width description"
  685. msgid "Width of a single support structure line."
  686. msgstr "Ширина одной линии поддержки."
  687. #: fdmprinter.def.json
  688. msgctxt "support_interface_line_width label"
  689. msgid "Support Interface Line Width"
  690. msgstr "Ширина линии поддерживающей крыши"
  691. #: fdmprinter.def.json
  692. msgctxt "support_interface_line_width description"
  693. msgid "Width of a single line of support roof or floor."
  694. msgstr "Ширина одной линии поддержки крышки или дна."
  695. #: fdmprinter.def.json
  696. msgctxt "support_roof_line_width label"
  697. msgid "Support Roof Line Width"
  698. msgstr "Ширина линии крыши поддержки"
  699. #: fdmprinter.def.json
  700. msgctxt "support_roof_line_width description"
  701. msgid "Width of a single support roof line."
  702. msgstr "Ширина одной линии крыши поддержки."
  703. #: fdmprinter.def.json
  704. msgctxt "support_bottom_line_width label"
  705. msgid "Support Floor Line Width"
  706. msgstr "Ширина линии дна поддержки"
  707. #: fdmprinter.def.json
  708. msgctxt "support_bottom_line_width description"
  709. msgid "Width of a single support floor line."
  710. msgstr "Ширина одной линии дна поддержки."
  711. #: fdmprinter.def.json
  712. msgctxt "prime_tower_line_width label"
  713. msgid "Prime Tower Line Width"
  714. msgstr "Ширина линии черновой башни"
  715. #: fdmprinter.def.json
  716. msgctxt "prime_tower_line_width description"
  717. msgid "Width of a single prime tower line."
  718. msgstr "Ширина отдельной линии черновой башни."
  719. #: fdmprinter.def.json
  720. msgctxt "initial_layer_line_width_factor label"
  721. msgid "Initial Layer Line Width"
  722. msgstr "Ширина линии первого слоя"
  723. #: fdmprinter.def.json
  724. msgctxt "initial_layer_line_width_factor description"
  725. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  726. msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу."
  727. #: fdmprinter.def.json
  728. msgctxt "shell label"
  729. msgid "Walls"
  730. msgstr "Стенки"
  731. #: fdmprinter.def.json
  732. msgctxt "shell description"
  733. msgid "Shell"
  734. msgstr "Ограждение"
  735. #: fdmprinter.def.json
  736. msgctxt "wall_extruder_nr label"
  737. msgid "Wall Extruder"
  738. msgstr "Экструдер стенок"
  739. #: fdmprinter.def.json
  740. msgctxt "wall_extruder_nr description"
  741. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  742. msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров."
  743. #: fdmprinter.def.json
  744. msgctxt "wall_0_extruder_nr label"
  745. msgid "Outer Wall Extruder"
  746. msgstr "Экструдер внешних стенок"
  747. #: fdmprinter.def.json
  748. msgctxt "wall_0_extruder_nr description"
  749. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  750. msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров."
  751. #: fdmprinter.def.json
  752. msgctxt "wall_x_extruder_nr label"
  753. msgid "Inner Wall Extruder"
  754. msgstr "Экструдер внутренней стенки"
  755. #: fdmprinter.def.json
  756. msgctxt "wall_x_extruder_nr description"
  757. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  758. msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров."
  759. #: fdmprinter.def.json
  760. msgctxt "wall_thickness label"
  761. msgid "Wall Thickness"
  762. msgstr "Толщина стенки"
  763. #: fdmprinter.def.json
  764. msgctxt "wall_thickness description"
  765. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  766. msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок."
  767. #: fdmprinter.def.json
  768. msgctxt "wall_line_count label"
  769. msgid "Wall Line Count"
  770. msgstr "Количество линий стенки"
  771. #: fdmprinter.def.json
  772. msgctxt "wall_line_count description"
  773. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  774. msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого."
  775. #: fdmprinter.def.json
  776. msgctxt "wall_0_wipe_dist label"
  777. msgid "Outer Wall Wipe Distance"
  778. msgstr "Расстояние очистки внешней стенки"
  779. #: fdmprinter.def.json
  780. msgctxt "wall_0_wipe_dist description"
  781. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  782. msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов."
  783. #: fdmprinter.def.json
  784. msgctxt "wall_0_inset label"
  785. msgid "Outer Wall Inset"
  786. msgstr "Вставка внешней стенки"
  787. #: fdmprinter.def.json
  788. msgctxt "wall_0_inset description"
  789. msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model."
  790. msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель."
  791. #: fdmprinter.def.json
  792. msgctxt "optimize_wall_printing_order label"
  793. msgid "Optimize Wall Printing Order"
  794. msgstr "Оптимизация порядка печати стенок"
  795. #: fdmprinter.def.json
  796. msgctxt "optimize_wall_printing_order description"
  797. msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type."
  798. msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется."
  799. #: fdmprinter.def.json
  800. msgctxt "outer_inset_first label"
  801. msgid "Outer Before Inner Walls"
  802. msgstr "Печать внешних стенок"
  803. #: fdmprinter.def.json
  804. msgctxt "outer_inset_first description"
  805. msgid "Prints walls in order of outside to inside when enabled. This can help improve dimensional accuracy in X and Y when using a high viscosity plastic like ABS; however it can decrease outer surface print quality, especially on overhangs."
  806. msgstr "Указывает печатать стенки снаружи внутрь. Это помогает улучшить аккуратность печати по осям X и Y, при использовании вязких пластиков подобно ABS. Однако это может отрицательно повлиять на качество печати внешних поверхностей, особенно нависающих."
  807. #: fdmprinter.def.json
  808. msgctxt "alternate_extra_perimeter label"
  809. msgid "Alternate Extra Wall"
  810. msgstr "Чередующаяся стенка"
  811. #: fdmprinter.def.json
  812. msgctxt "alternate_extra_perimeter description"
  813. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  814. msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати."
  815. #: fdmprinter.def.json
  816. msgctxt "travel_compensate_overlapping_walls_enabled label"
  817. msgid "Compensate Wall Overlaps"
  818. msgstr "Компенсация перекрытия стен"
  819. #: fdmprinter.def.json
  820. msgctxt "travel_compensate_overlapping_walls_enabled description"
  821. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  822. msgstr "Компенсирует поток для печатаемых частей стен в местах, где уже напечатана стена."
  823. #: fdmprinter.def.json
  824. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  825. msgid "Compensate Outer Wall Overlaps"
  826. msgstr "Компенсация перекрытия внешних стен"
  827. #: fdmprinter.def.json
  828. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  829. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  830. msgstr "Компенсирует поток для печатаемых частей внешних стен в местах, где уже напечатана стена."
  831. #: fdmprinter.def.json
  832. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  833. msgid "Compensate Inner Wall Overlaps"
  834. msgstr "Компенсация перекрытия внутренних стен"
  835. #: fdmprinter.def.json
  836. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  837. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  838. msgstr "Компенсирует поток для печатаемых частей внутренних стен в местах, где уже напечатана стена."
  839. #: fdmprinter.def.json
  840. msgctxt "wall_min_flow label"
  841. msgid "Minimum Wall Flow"
  842. msgstr "Минимальный поток для стенки"
  843. #: fdmprinter.def.json
  844. msgctxt "wall_min_flow description"
  845. msgid "Minimum allowed percentage flow for a wall line. The wall overlap compensation reduces a wall's flow when it lies close to an existing wall. Walls whose flow is less than this value will be replaced with a travel move. When using this setting, you must enable the wall overlap compensation and print the outer wall before inner walls."
  846. msgstr "Минимальный разрешенный поток (в процентах) для линии стенки. Компенсация перекрытия стенок снижает поток для стенки при нахождении вблизи от существующей стенки. Стенки с потоком меньше указанного значения будут заменены посредством движения. При использовании этой настройки необходимо активировать компенсацию перекрытия стенок и печатать сначала внешнюю стенку, а затем — внутренние."
  847. #: fdmprinter.def.json
  848. msgctxt "wall_min_flow_retract label"
  849. msgid "Prefer Retract"
  850. msgstr "Предпочтительный откат"
  851. #: fdmprinter.def.json
  852. msgctxt "wall_min_flow_retract description"
  853. msgid "If enabled, retraction is used rather than combing for travel moves that replace walls whose flow is below the minimum flow threshold."
  854. msgstr "Если включено, вместо комбинга для движений, заменяющих стенки с потоком меньше минимального установленного порога, используется откат."
  855. #: fdmprinter.def.json
  856. msgctxt "fill_perimeter_gaps label"
  857. msgid "Fill Gaps Between Walls"
  858. msgstr "Заполнение зазоров между стенками"
  859. #: fdmprinter.def.json
  860. msgctxt "fill_perimeter_gaps description"
  861. msgid "Fills the gaps between walls where no walls fit."
  862. msgstr "Заполняет зазоры между стенками, когда это необходимо."
  863. #: fdmprinter.def.json
  864. msgctxt "fill_perimeter_gaps option nowhere"
  865. msgid "Nowhere"
  866. msgstr "Нигде"
  867. #: fdmprinter.def.json
  868. msgctxt "fill_perimeter_gaps option everywhere"
  869. msgid "Everywhere"
  870. msgstr "Везде"
  871. #: fdmprinter.def.json
  872. msgctxt "filter_out_tiny_gaps label"
  873. msgid "Filter Out Tiny Gaps"
  874. msgstr "Фильтровать только небольшие зазоры"
  875. #: fdmprinter.def.json
  876. msgctxt "filter_out_tiny_gaps description"
  877. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  878. msgstr "Фильтровать только небольшие зазоры для сокращения пузырей за пределами модели."
  879. #: fdmprinter.def.json
  880. msgctxt "fill_outline_gaps label"
  881. msgid "Print Thin Walls"
  882. msgstr "Печать тонких стенок"
  883. #: fdmprinter.def.json
  884. msgctxt "fill_outline_gaps description"
  885. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  886. msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла."
  887. #: fdmprinter.def.json
  888. msgctxt "xy_offset label"
  889. msgid "Horizontal Expansion"
  890. msgstr "Горизонтальное расширение"
  891. #: fdmprinter.def.json
  892. msgctxt "xy_offset description"
  893. msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes."
  894. msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий."
  895. #: fdmprinter.def.json
  896. msgctxt "xy_offset_layer_0 label"
  897. msgid "Initial Layer Horizontal Expansion"
  898. msgstr "Горизонтальное расширение первого слоя"
  899. #: fdmprinter.def.json
  900. msgctxt "xy_offset_layer_0 description"
  901. msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"."
  902. msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"."
  903. #: fdmprinter.def.json
  904. msgctxt "hole_xy_offset label"
  905. msgid "Hole Horizontal Expansion"
  906. msgstr "Горизонтальное расширение отверстия"
  907. #: fdmprinter.def.json
  908. msgctxt "hole_xy_offset description"
  909. msgid "Amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes."
  910. msgstr "Смещение, применяемое ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий; отрицательные значения уменьшают размер отверстий."
  911. #: fdmprinter.def.json
  912. msgctxt "z_seam_type label"
  913. msgid "Z Seam Alignment"
  914. msgstr "Выравнивание шва по оси Z"
  915. #: fdmprinter.def.json
  916. msgctxt "z_seam_type description"
  917. msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  918. msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее."
  919. #: fdmprinter.def.json
  920. msgctxt "z_seam_type option back"
  921. msgid "User Specified"
  922. msgstr "Пользовательский"
  923. #: fdmprinter.def.json
  924. msgctxt "z_seam_type option shortest"
  925. msgid "Shortest"
  926. msgstr "Короткий путь"
  927. #: fdmprinter.def.json
  928. msgctxt "z_seam_type option random"
  929. msgid "Random"
  930. msgstr "Случайно"
  931. #: fdmprinter.def.json
  932. msgctxt "z_seam_type option sharpest_corner"
  933. msgid "Sharpest Corner"
  934. msgstr "Острейший угол"
  935. #: fdmprinter.def.json
  936. msgctxt "z_seam_position label"
  937. msgid "Z Seam Position"
  938. msgstr "Позиция Z шва"
  939. #: fdmprinter.def.json
  940. msgctxt "z_seam_position description"
  941. msgid "The position near where to start printing each part in a layer."
  942. msgstr "Позиция, рядом с которой следует начинать путь на каждом слое."
  943. #: fdmprinter.def.json
  944. msgctxt "z_seam_position option backleft"
  945. msgid "Back Left"
  946. msgstr "Сзади слева"
  947. #: fdmprinter.def.json
  948. msgctxt "z_seam_position option back"
  949. msgid "Back"
  950. msgstr "Назад"
  951. #: fdmprinter.def.json
  952. msgctxt "z_seam_position option backright"
  953. msgid "Back Right"
  954. msgstr "Сзади справа"
  955. #: fdmprinter.def.json
  956. msgctxt "z_seam_position option right"
  957. msgid "Right"
  958. msgstr "Справа"
  959. #: fdmprinter.def.json
  960. msgctxt "z_seam_position option frontright"
  961. msgid "Front Right"
  962. msgstr "Спереди справа"
  963. #: fdmprinter.def.json
  964. msgctxt "z_seam_position option front"
  965. msgid "Front"
  966. msgstr "Спереди"
  967. #: fdmprinter.def.json
  968. msgctxt "z_seam_position option frontleft"
  969. msgid "Front Left"
  970. msgstr "Спереди слева"
  971. #: fdmprinter.def.json
  972. msgctxt "z_seam_position option left"
  973. msgid "Left"
  974. msgstr "Слева"
  975. #: fdmprinter.def.json
  976. msgctxt "z_seam_x label"
  977. msgid "Z Seam X"
  978. msgstr "X координата для Z шва"
  979. #: fdmprinter.def.json
  980. msgctxt "z_seam_x description"
  981. msgid "The X coordinate of the position near where to start printing each part in a layer."
  982. msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое."
  983. #: fdmprinter.def.json
  984. msgctxt "z_seam_y label"
  985. msgid "Z Seam Y"
  986. msgstr "Y координата для Z шва"
  987. #: fdmprinter.def.json
  988. msgctxt "z_seam_y description"
  989. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  990. msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое."
  991. #: fdmprinter.def.json
  992. msgctxt "z_seam_corner label"
  993. msgid "Seam Corner Preference"
  994. msgstr "Настройки угла шва"
  995. #: fdmprinter.def.json
  996. msgctxt "z_seam_corner description"
  997. msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate."
  998. msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри."
  999. #: fdmprinter.def.json
  1000. msgctxt "z_seam_corner option z_seam_corner_none"
  1001. msgid "None"
  1002. msgstr "Нет"
  1003. #: fdmprinter.def.json
  1004. msgctxt "z_seam_corner option z_seam_corner_inner"
  1005. msgid "Hide Seam"
  1006. msgstr "Спрятать шов"
  1007. #: fdmprinter.def.json
  1008. msgctxt "z_seam_corner option z_seam_corner_outer"
  1009. msgid "Expose Seam"
  1010. msgstr "Показать шов"
  1011. #: fdmprinter.def.json
  1012. msgctxt "z_seam_corner option z_seam_corner_any"
  1013. msgid "Hide or Expose Seam"
  1014. msgstr "Спрятать или показать"
  1015. #: fdmprinter.def.json
  1016. msgctxt "z_seam_corner option z_seam_corner_weighted"
  1017. msgid "Smart Hiding"
  1018. msgstr "Интеллектуальное скрытие"
  1019. #: fdmprinter.def.json
  1020. msgctxt "z_seam_relative label"
  1021. msgid "Z Seam Relative"
  1022. msgstr "Привязка Z шва"
  1023. #: fdmprinter.def.json
  1024. msgctxt "z_seam_relative description"
  1025. msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate."
  1026. msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе."
  1027. #: fdmprinter.def.json
  1028. msgctxt "top_bottom label"
  1029. msgid "Top/Bottom"
  1030. msgstr "Дно / крышка"
  1031. #: fdmprinter.def.json
  1032. msgctxt "top_bottom description"
  1033. msgid "Top/Bottom"
  1034. msgstr "Дно / крышка"
  1035. #: fdmprinter.def.json
  1036. msgctxt "roofing_extruder_nr label"
  1037. msgid "Top Surface Skin Extruder"
  1038. msgstr "Экструдер для печати крышки"
  1039. #: fdmprinter.def.json
  1040. msgctxt "roofing_extruder_nr description"
  1041. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  1042. msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров."
  1043. #: fdmprinter.def.json
  1044. msgctxt "roofing_layer_count label"
  1045. msgid "Top Surface Skin Layers"
  1046. msgstr "Слои верхней оболочки"
  1047. #: fdmprinter.def.json
  1048. msgctxt "roofing_layer_count description"
  1049. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  1050. msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве."
  1051. #: fdmprinter.def.json
  1052. msgctxt "top_bottom_extruder_nr label"
  1053. msgid "Top/Bottom Extruder"
  1054. msgstr "Экструдер дна/крышки"
  1055. #: fdmprinter.def.json
  1056. msgctxt "top_bottom_extruder_nr description"
  1057. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  1058. msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров."
  1059. #: fdmprinter.def.json
  1060. msgctxt "top_bottom_thickness label"
  1061. msgid "Top/Bottom Thickness"
  1062. msgstr "Толщина дна/крышки"
  1063. #: fdmprinter.def.json
  1064. msgctxt "top_bottom_thickness description"
  1065. msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers."
  1066. msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке."
  1067. #: fdmprinter.def.json
  1068. msgctxt "top_thickness label"
  1069. msgid "Top Thickness"
  1070. msgstr "Толщина крышки"
  1071. #: fdmprinter.def.json
  1072. msgctxt "top_thickness description"
  1073. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  1074. msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке."
  1075. #: fdmprinter.def.json
  1076. msgctxt "top_layers label"
  1077. msgid "Top Layers"
  1078. msgstr "Слои крышки"
  1079. #: fdmprinter.def.json
  1080. msgctxt "top_layers description"
  1081. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  1082. msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого."
  1083. #: fdmprinter.def.json
  1084. msgctxt "bottom_thickness label"
  1085. msgid "Bottom Thickness"
  1086. msgstr "Толщина дна"
  1087. #: fdmprinter.def.json
  1088. msgctxt "bottom_thickness description"
  1089. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  1090. msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне."
  1091. #: fdmprinter.def.json
  1092. msgctxt "bottom_layers label"
  1093. msgid "Bottom Layers"
  1094. msgstr "Слои дна"
  1095. #: fdmprinter.def.json
  1096. msgctxt "bottom_layers description"
  1097. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  1098. msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого."
  1099. #: fdmprinter.def.json
  1100. msgctxt "initial_bottom_layers label"
  1101. msgid "Initial Bottom Layers"
  1102. msgstr "Начальные слои дна"
  1103. #: fdmprinter.def.json
  1104. msgctxt "initial_bottom_layers description"
  1105. msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number."
  1106. msgstr "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого."
  1107. #: fdmprinter.def.json
  1108. msgctxt "top_bottom_pattern label"
  1109. msgid "Top/Bottom Pattern"
  1110. msgstr "Шаблон для крышки/дна"
  1111. #: fdmprinter.def.json
  1112. msgctxt "top_bottom_pattern description"
  1113. msgid "The pattern of the top/bottom layers."
  1114. msgstr "Шаблон слоёв для крышки/дна."
  1115. #: fdmprinter.def.json
  1116. msgctxt "top_bottom_pattern option lines"
  1117. msgid "Lines"
  1118. msgstr "Линии"
  1119. #: fdmprinter.def.json
  1120. msgctxt "top_bottom_pattern option concentric"
  1121. msgid "Concentric"
  1122. msgstr "Концентрический"
  1123. #: fdmprinter.def.json
  1124. msgctxt "top_bottom_pattern option zigzag"
  1125. msgid "Zig Zag"
  1126. msgstr "Зигзаг"
  1127. #: fdmprinter.def.json
  1128. msgctxt "top_bottom_pattern_0 label"
  1129. msgid "Bottom Pattern Initial Layer"
  1130. msgstr "Нижний шаблон начального слоя"
  1131. #: fdmprinter.def.json
  1132. msgctxt "top_bottom_pattern_0 description"
  1133. msgid "The pattern on the bottom of the print on the first layer."
  1134. msgstr "Шаблон низа печати на первом слое."
  1135. #: fdmprinter.def.json
  1136. msgctxt "top_bottom_pattern_0 option lines"
  1137. msgid "Lines"
  1138. msgstr "Линии"
  1139. #: fdmprinter.def.json
  1140. msgctxt "top_bottom_pattern_0 option concentric"
  1141. msgid "Concentric"
  1142. msgstr "Концентрический"
  1143. #: fdmprinter.def.json
  1144. msgctxt "top_bottom_pattern_0 option zigzag"
  1145. msgid "Zig Zag"
  1146. msgstr "Зигзаг"
  1147. #: fdmprinter.def.json
  1148. msgctxt "connect_skin_polygons label"
  1149. msgid "Connect Top/Bottom Polygons"
  1150. msgstr "Соединение верхних/нижних полигонов"
  1151. #: fdmprinter.def.json
  1152. msgctxt "connect_skin_polygons description"
  1153. msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality."
  1154. msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности."
  1155. #: fdmprinter.def.json
  1156. msgctxt "skin_monotonic label"
  1157. msgid "Monotonic Top/Bottom Order"
  1158. msgstr "Монотонный порядок дна/крышки"
  1159. #: fdmprinter.def.json
  1160. msgctxt "skin_monotonic description"
  1161. msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1162. msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но"
  1163. " плоские поверхности выглядят более единообразными."
  1164. #: fdmprinter.def.json
  1165. msgctxt "skin_angles label"
  1166. msgid "Top/Bottom Line Directions"
  1167. msgstr "Направление линии дна/крышки"
  1168. #: fdmprinter.def.json
  1169. msgctxt "skin_angles description"
  1170. msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  1171. msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)."
  1172. #: fdmprinter.def.json
  1173. msgctxt "skin_no_small_gaps_heuristic label"
  1174. msgid "No Skin in Z Gaps"
  1175. msgstr "Нет оболочки в Z-зазорах"
  1176. #: fdmprinter.def.json
  1177. msgctxt "skin_no_small_gaps_heuristic description"
  1178. msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air."
  1179. msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой."
  1180. #: fdmprinter.def.json
  1181. msgctxt "skin_outline_count label"
  1182. msgid "Extra Skin Wall Count"
  1183. msgstr "Количество внешних дополнительных оболочек"
  1184. #: fdmprinter.def.json
  1185. msgctxt "skin_outline_count description"
  1186. msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material."
  1187. msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения."
  1188. #: fdmprinter.def.json
  1189. msgctxt "ironing_enabled label"
  1190. msgid "Enable Ironing"
  1191. msgstr "Разрешить разглаживание"
  1192. #: fdmprinter.def.json
  1193. msgctxt "ironing_enabled description"
  1194. msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material."
  1195. msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом."
  1196. #: fdmprinter.def.json
  1197. msgctxt "ironing_only_highest_layer label"
  1198. msgid "Iron Only Highest Layer"
  1199. msgstr "Самый высокий слой разглаживания"
  1200. #: fdmprinter.def.json
  1201. msgctxt "ironing_only_highest_layer description"
  1202. msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish."
  1203. msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности."
  1204. #: fdmprinter.def.json
  1205. msgctxt "ironing_pattern label"
  1206. msgid "Ironing Pattern"
  1207. msgstr "Шаблон разглаживания"
  1208. #: fdmprinter.def.json
  1209. msgctxt "ironing_pattern description"
  1210. msgid "The pattern to use for ironing top surfaces."
  1211. msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки."
  1212. #: fdmprinter.def.json
  1213. msgctxt "ironing_pattern option concentric"
  1214. msgid "Concentric"
  1215. msgstr "Концентрический"
  1216. #: fdmprinter.def.json
  1217. msgctxt "ironing_pattern option zigzag"
  1218. msgid "Zig Zag"
  1219. msgstr "Зигзаг"
  1220. #: fdmprinter.def.json
  1221. msgctxt "ironing_monotonic label"
  1222. msgid "Monotonic Ironing Order"
  1223. msgstr "Монотонный порядок разглаживания"
  1224. #: fdmprinter.def.json
  1225. msgctxt "ironing_monotonic description"
  1226. msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  1227. msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени,"
  1228. " но плоские поверхности выглядят более единообразными."
  1229. #: fdmprinter.def.json
  1230. msgctxt "ironing_line_spacing label"
  1231. msgid "Ironing Line Spacing"
  1232. msgstr "Расстояние между линиями разглаживания"
  1233. #: fdmprinter.def.json
  1234. msgctxt "ironing_line_spacing description"
  1235. msgid "The distance between the lines of ironing."
  1236. msgstr "Расстояние между линиями разглаживания."
  1237. #: fdmprinter.def.json
  1238. msgctxt "ironing_flow label"
  1239. msgid "Ironing Flow"
  1240. msgstr "Поток разглаживания"
  1241. #: fdmprinter.def.json
  1242. msgctxt "ironing_flow description"
  1243. msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface."
  1244. msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки."
  1245. #: fdmprinter.def.json
  1246. msgctxt "ironing_inset label"
  1247. msgid "Ironing Inset"
  1248. msgstr "Границы разглаживания"
  1249. #: fdmprinter.def.json
  1250. msgctxt "ironing_inset description"
  1251. msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print."
  1252. msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати."
  1253. #: fdmprinter.def.json
  1254. msgctxt "speed_ironing label"
  1255. msgid "Ironing Speed"
  1256. msgstr "Скорость разглаживания"
  1257. #: fdmprinter.def.json
  1258. msgctxt "speed_ironing description"
  1259. msgid "The speed at which to pass over the top surface."
  1260. msgstr "Скорость, на которой голова проходит над верхней оболочкой."
  1261. #: fdmprinter.def.json
  1262. msgctxt "acceleration_ironing label"
  1263. msgid "Ironing Acceleration"
  1264. msgstr "Ускорение разглаживания"
  1265. #: fdmprinter.def.json
  1266. msgctxt "acceleration_ironing description"
  1267. msgid "The acceleration with which ironing is performed."
  1268. msgstr "Ускорение, с которым производится разглаживание."
  1269. #: fdmprinter.def.json
  1270. msgctxt "jerk_ironing label"
  1271. msgid "Ironing Jerk"
  1272. msgstr "Рывок разглаживания"
  1273. #: fdmprinter.def.json
  1274. msgctxt "jerk_ironing description"
  1275. msgid "The maximum instantaneous velocity change while performing ironing."
  1276. msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание."
  1277. #: fdmprinter.def.json
  1278. msgctxt "skin_overlap label"
  1279. msgid "Skin Overlap Percentage"
  1280. msgstr "Процент перекрытия оболочек"
  1281. #: fdmprinter.def.json
  1282. msgctxt "skin_overlap description"
  1283. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1284. msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки."
  1285. #: fdmprinter.def.json
  1286. msgctxt "skin_overlap_mm label"
  1287. msgid "Skin Overlap"
  1288. msgstr "Перекрытие оболочек"
  1289. #: fdmprinter.def.json
  1290. msgctxt "skin_overlap_mm description"
  1291. msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall."
  1292. msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки."
  1293. #: fdmprinter.def.json
  1294. msgctxt "skin_preshrink label"
  1295. msgid "Skin Removal Width"
  1296. msgstr "Ширина удаляемой оболочки"
  1297. #: fdmprinter.def.json
  1298. msgctxt "skin_preshrink description"
  1299. msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model."
  1300. msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели."
  1301. #: fdmprinter.def.json
  1302. msgctxt "top_skin_preshrink label"
  1303. msgid "Top Skin Removal Width"
  1304. msgstr "Ширина удаляемой оболочки сверху"
  1305. #: fdmprinter.def.json
  1306. msgctxt "top_skin_preshrink description"
  1307. msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model."
  1308. msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели."
  1309. #: fdmprinter.def.json
  1310. msgctxt "bottom_skin_preshrink label"
  1311. msgid "Bottom Skin Removal Width"
  1312. msgstr "Ширина удаляемой оболочки снизу"
  1313. #: fdmprinter.def.json
  1314. msgctxt "bottom_skin_preshrink description"
  1315. msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model."
  1316. msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели."
  1317. #: fdmprinter.def.json
  1318. msgctxt "expand_skins_expand_distance label"
  1319. msgid "Skin Expand Distance"
  1320. msgstr "Дистанция расширения оболочки"
  1321. #: fdmprinter.def.json
  1322. msgctxt "expand_skins_expand_distance description"
  1323. msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used."
  1324. msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал."
  1325. #: fdmprinter.def.json
  1326. msgctxt "top_skin_expand_distance label"
  1327. msgid "Top Skin Expand Distance"
  1328. msgstr "Дистанция расширения оболочки сверху"
  1329. #: fdmprinter.def.json
  1330. msgctxt "top_skin_expand_distance description"
  1331. msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used."
  1332. msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал."
  1333. #: fdmprinter.def.json
  1334. msgctxt "bottom_skin_expand_distance label"
  1335. msgid "Bottom Skin Expand Distance"
  1336. msgstr "Расстояние расширения оболочки снизу"
  1337. #: fdmprinter.def.json
  1338. msgctxt "bottom_skin_expand_distance description"
  1339. msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used."
  1340. msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал."
  1341. #: fdmprinter.def.json
  1342. msgctxt "max_skin_angle_for_expansion label"
  1343. msgid "Maximum Skin Angle for Expansion"
  1344. msgstr "Максимальный угол оболочки при расширении"
  1345. #: fdmprinter.def.json
  1346. msgctxt "max_skin_angle_for_expansion description"
  1347. msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded."
  1348. msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки."
  1349. #: fdmprinter.def.json
  1350. msgctxt "min_skin_width_for_expansion label"
  1351. msgid "Minimum Skin Width for Expansion"
  1352. msgstr "Минимальная ширина оболочки при расширении"
  1353. #: fdmprinter.def.json
  1354. msgctxt "min_skin_width_for_expansion description"
  1355. msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical."
  1356. msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному."
  1357. #: fdmprinter.def.json
  1358. msgctxt "infill label"
  1359. msgid "Infill"
  1360. msgstr "Заполнение"
  1361. #: fdmprinter.def.json
  1362. msgctxt "infill description"
  1363. msgid "Infill"
  1364. msgstr "Заполнение"
  1365. #: fdmprinter.def.json
  1366. msgctxt "infill_extruder_nr label"
  1367. msgid "Infill Extruder"
  1368. msgstr "Экструдер для заполнения"
  1369. #: fdmprinter.def.json
  1370. msgctxt "infill_extruder_nr description"
  1371. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1372. msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров."
  1373. #: fdmprinter.def.json
  1374. msgctxt "infill_sparse_density label"
  1375. msgid "Infill Density"
  1376. msgstr "Плотность заполнения"
  1377. #: fdmprinter.def.json
  1378. msgctxt "infill_sparse_density description"
  1379. msgid "Adjusts the density of infill of the print."
  1380. msgstr "Отрегулируйте плотность заполнения при печати."
  1381. #: fdmprinter.def.json
  1382. msgctxt "infill_line_distance label"
  1383. msgid "Infill Line Distance"
  1384. msgstr "Дистанция линий заполнения"
  1385. #: fdmprinter.def.json
  1386. msgctxt "infill_line_distance description"
  1387. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1388. msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения."
  1389. #: fdmprinter.def.json
  1390. msgctxt "infill_pattern label"
  1391. msgid "Infill Pattern"
  1392. msgstr "Шаблон заполнения"
  1393. #: fdmprinter.def.json
  1394. msgctxt "infill_pattern description"
  1395. msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  1396. msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении."
  1397. #: fdmprinter.def.json
  1398. msgctxt "infill_pattern option grid"
  1399. msgid "Grid"
  1400. msgstr "Сетка"
  1401. #: fdmprinter.def.json
  1402. msgctxt "infill_pattern option lines"
  1403. msgid "Lines"
  1404. msgstr "Линии"
  1405. #: fdmprinter.def.json
  1406. msgctxt "infill_pattern option triangles"
  1407. msgid "Triangles"
  1408. msgstr "Треугольник"
  1409. #: fdmprinter.def.json
  1410. msgctxt "infill_pattern option trihexagon"
  1411. msgid "Tri-Hexagon"
  1412. msgstr "Шестигранник из треугольников"
  1413. #: fdmprinter.def.json
  1414. msgctxt "infill_pattern option cubic"
  1415. msgid "Cubic"
  1416. msgstr "Куб"
  1417. #: fdmprinter.def.json
  1418. msgctxt "infill_pattern option cubicsubdiv"
  1419. msgid "Cubic Subdivision"
  1420. msgstr "Динамический куб"
  1421. #: fdmprinter.def.json
  1422. msgctxt "infill_pattern option tetrahedral"
  1423. msgid "Octet"
  1424. msgstr "Восьмигранник"
  1425. #: fdmprinter.def.json
  1426. msgctxt "infill_pattern option quarter_cubic"
  1427. msgid "Quarter Cubic"
  1428. msgstr "Четверть куба"
  1429. #: fdmprinter.def.json
  1430. msgctxt "infill_pattern option concentric"
  1431. msgid "Concentric"
  1432. msgstr "Концентрическое"
  1433. #: fdmprinter.def.json
  1434. msgctxt "infill_pattern option zigzag"
  1435. msgid "Zig Zag"
  1436. msgstr "Зигзаг"
  1437. #: fdmprinter.def.json
  1438. msgctxt "infill_pattern option cross"
  1439. msgid "Cross"
  1440. msgstr "Крестовое"
  1441. #: fdmprinter.def.json
  1442. msgctxt "infill_pattern option cross_3d"
  1443. msgid "Cross 3D"
  1444. msgstr "Крестовое 3D"
  1445. #: fdmprinter.def.json
  1446. msgctxt "infill_pattern option gyroid"
  1447. msgid "Gyroid"
  1448. msgstr "Гироид"
  1449. #: fdmprinter.def.json
  1450. msgctxt "zig_zaggify_infill label"
  1451. msgid "Connect Infill Lines"
  1452. msgstr "Соединять линии заполнения"
  1453. #: fdmprinter.def.json
  1454. msgctxt "zig_zaggify_infill description"
  1455. msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  1456. msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала."
  1457. #: fdmprinter.def.json
  1458. msgctxt "connect_infill_polygons label"
  1459. msgid "Connect Infill Polygons"
  1460. msgstr "Соединение полигонов заполнения"
  1461. #: fdmprinter.def.json
  1462. msgctxt "connect_infill_polygons description"
  1463. msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time."
  1464. msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения."
  1465. #: fdmprinter.def.json
  1466. msgctxt "infill_angles label"
  1467. msgid "Infill Line Directions"
  1468. msgstr "Направления линии заполнения"
  1469. #: fdmprinter.def.json
  1470. msgctxt "infill_angles description"
  1471. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)."
  1472. msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)."
  1473. #: fdmprinter.def.json
  1474. msgctxt "infill_offset_x label"
  1475. msgid "Infill X Offset"
  1476. msgstr "Смещение заполнения по X"
  1477. #: fdmprinter.def.json
  1478. msgctxt "infill_offset_x description"
  1479. msgid "The infill pattern is moved this distance along the X axis."
  1480. msgstr "Расстояние перемещения шаблона заполнения по оси X."
  1481. #: fdmprinter.def.json
  1482. msgctxt "infill_offset_y label"
  1483. msgid "Infill Y Offset"
  1484. msgstr "Смещение заполнения по Y"
  1485. #: fdmprinter.def.json
  1486. msgctxt "infill_offset_y description"
  1487. msgid "The infill pattern is moved this distance along the Y axis."
  1488. msgstr "Расстояние перемещения шаблона заполнения по оси Y."
  1489. #: fdmprinter.def.json
  1490. msgctxt "infill_randomize_start_location label"
  1491. msgid "Randomize Infill Start"
  1492. msgstr "Рандомизация начала заполнения"
  1493. #: fdmprinter.def.json
  1494. msgctxt "infill_randomize_start_location description"
  1495. msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move."
  1496. msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения."
  1497. #: fdmprinter.def.json
  1498. msgctxt "infill_multiplier label"
  1499. msgid "Infill Line Multiplier"
  1500. msgstr "Множитель для линии заполнения"
  1501. #: fdmprinter.def.json
  1502. msgctxt "infill_multiplier description"
  1503. msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage."
  1504. msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются."
  1505. #: fdmprinter.def.json
  1506. msgctxt "infill_wall_line_count label"
  1507. msgid "Extra Infill Wall Count"
  1508. msgstr "Количество дополнительных стенок заполнения"
  1509. #: fdmprinter.def.json
  1510. msgctxt "infill_wall_line_count description"
  1511. msgid ""
  1512. "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n"
  1513. "This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right."
  1514. msgstr ""
  1515. "Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала.\n"
  1516. "Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки."
  1517. #: fdmprinter.def.json
  1518. msgctxt "sub_div_rad_add label"
  1519. msgid "Cubic Subdivision Shell"
  1520. msgstr "Стенка динамического куба"
  1521. #: fdmprinter.def.json
  1522. msgctxt "sub_div_rad_add description"
  1523. msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model."
  1524. msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели."
  1525. #: fdmprinter.def.json
  1526. msgctxt "infill_overlap label"
  1527. msgid "Infill Overlap Percentage"
  1528. msgstr "Процент перекрытие заполнения"
  1529. #: fdmprinter.def.json
  1530. msgctxt "infill_overlap description"
  1531. msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill."
  1532. msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением."
  1533. #: fdmprinter.def.json
  1534. msgctxt "infill_overlap_mm label"
  1535. msgid "Infill Overlap"
  1536. msgstr "Перекрытие заполнения"
  1537. #: fdmprinter.def.json
  1538. msgctxt "infill_overlap_mm description"
  1539. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1540. msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением."
  1541. #: fdmprinter.def.json
  1542. msgctxt "infill_wipe_dist label"
  1543. msgid "Infill Wipe Distance"
  1544. msgstr "Дистанция окончания заполнения"
  1545. #: fdmprinter.def.json
  1546. msgctxt "infill_wipe_dist description"
  1547. msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line."
  1548. msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения."
  1549. #: fdmprinter.def.json
  1550. msgctxt "infill_sparse_thickness label"
  1551. msgid "Infill Layer Thickness"
  1552. msgstr "Толщина слоя заполнения"
  1553. #: fdmprinter.def.json
  1554. msgctxt "infill_sparse_thickness description"
  1555. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1556. msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется."
  1557. #: fdmprinter.def.json
  1558. msgctxt "gradual_infill_steps label"
  1559. msgid "Gradual Infill Steps"
  1560. msgstr "Изменение шага заполнения"
  1561. #: fdmprinter.def.json
  1562. msgctxt "gradual_infill_steps description"
  1563. msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density."
  1564. msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения."
  1565. #: fdmprinter.def.json
  1566. msgctxt "gradual_infill_step_height label"
  1567. msgid "Gradual Infill Step Height"
  1568. msgstr "Высота изменения шага заполнения"
  1569. #: fdmprinter.def.json
  1570. msgctxt "gradual_infill_step_height description"
  1571. msgid "The height of infill of a given density before switching to half the density."
  1572. msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности."
  1573. #: fdmprinter.def.json
  1574. msgctxt "infill_before_walls label"
  1575. msgid "Infill Before Walls"
  1576. msgstr "Заполнение перед печатью стенок"
  1577. #: fdmprinter.def.json
  1578. msgctxt "infill_before_walls description"
  1579. msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface."
  1580. msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки."
  1581. #: fdmprinter.def.json
  1582. msgctxt "min_infill_area label"
  1583. msgid "Minimum Infill Area"
  1584. msgstr "Минимальная область заполнения"
  1585. #: fdmprinter.def.json
  1586. msgctxt "min_infill_area description"
  1587. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1588. msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)."
  1589. #: fdmprinter.def.json
  1590. msgctxt "infill_support_enabled label"
  1591. msgid "Infill Support"
  1592. msgstr "Поддержка заполнения"
  1593. #: fdmprinter.def.json
  1594. msgctxt "infill_support_enabled description"
  1595. msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength."
  1596. msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности."
  1597. #: fdmprinter.def.json
  1598. msgctxt "infill_support_angle label"
  1599. msgid "Infill Overhang Angle"
  1600. msgstr "Угол нависания при заполнении"
  1601. #: fdmprinter.def.json
  1602. msgctxt "infill_support_angle description"
  1603. msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill."
  1604. msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует."
  1605. #: fdmprinter.def.json
  1606. msgctxt "skin_edge_support_thickness label"
  1607. msgid "Skin Edge Support Thickness"
  1608. msgstr "Толщина опоры края оболочки"
  1609. #: fdmprinter.def.json
  1610. msgctxt "skin_edge_support_thickness description"
  1611. msgid "The thickness of the extra infill that supports skin edges."
  1612. msgstr "Толщина дополнительного объема, который поддерживает края оболочки."
  1613. #: fdmprinter.def.json
  1614. msgctxt "skin_edge_support_layers label"
  1615. msgid "Skin Edge Support Layers"
  1616. msgstr "Слои, которые поддерживают края оболочки"
  1617. #: fdmprinter.def.json
  1618. msgctxt "skin_edge_support_layers description"
  1619. msgid "The number of infill layers that supports skin edges."
  1620. msgstr "Количество слоев, которые поддерживают края оболочки."
  1621. #: fdmprinter.def.json
  1622. msgctxt "material label"
  1623. msgid "Material"
  1624. msgstr "Материал"
  1625. #: fdmprinter.def.json
  1626. msgctxt "material description"
  1627. msgid "Material"
  1628. msgstr "Материал"
  1629. #: fdmprinter.def.json
  1630. msgctxt "default_material_print_temperature label"
  1631. msgid "Default Printing Temperature"
  1632. msgstr "Температура сопла"
  1633. #: fdmprinter.def.json
  1634. msgctxt "default_material_print_temperature description"
  1635. msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value"
  1636. msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения"
  1637. #: fdmprinter.def.json
  1638. msgctxt "build_volume_temperature label"
  1639. msgid "Build Volume Temperature"
  1640. msgstr "Температура для объема печати"
  1641. #: fdmprinter.def.json
  1642. msgctxt "build_volume_temperature description"
  1643. msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted."
  1644. msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться."
  1645. #: fdmprinter.def.json
  1646. msgctxt "material_print_temperature label"
  1647. msgid "Printing Temperature"
  1648. msgstr "Температура сопла"
  1649. #: fdmprinter.def.json
  1650. msgctxt "material_print_temperature description"
  1651. msgid "The temperature used for printing."
  1652. msgstr "Температура, используемая при печати."
  1653. #: fdmprinter.def.json
  1654. msgctxt "material_print_temperature_layer_0 label"
  1655. msgid "Printing Temperature Initial Layer"
  1656. msgstr "Температура печати первого слоя"
  1657. #: fdmprinter.def.json
  1658. msgctxt "material_print_temperature_layer_0 description"
  1659. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1660. msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое."
  1661. #: fdmprinter.def.json
  1662. msgctxt "material_initial_print_temperature label"
  1663. msgid "Initial Printing Temperature"
  1664. msgstr "Начальная температура печати"
  1665. #: fdmprinter.def.json
  1666. msgctxt "material_initial_print_temperature description"
  1667. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1668. msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати."
  1669. #: fdmprinter.def.json
  1670. msgctxt "material_final_print_temperature label"
  1671. msgid "Final Printing Temperature"
  1672. msgstr "Конечная температура печати"
  1673. #: fdmprinter.def.json
  1674. msgctxt "material_final_print_temperature description"
  1675. msgid "The temperature to which to already start cooling down just before the end of printing."
  1676. msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати."
  1677. #: fdmprinter.def.json
  1678. msgctxt "material_extrusion_cool_down_speed label"
  1679. msgid "Extrusion Cool Down Speed Modifier"
  1680. msgstr "Модификатор скорости охлаждения экструзии"
  1681. #: fdmprinter.def.json
  1682. msgctxt "material_extrusion_cool_down_speed description"
  1683. msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding."
  1684. msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии."
  1685. #: fdmprinter.def.json
  1686. msgctxt "default_material_bed_temperature label"
  1687. msgid "Default Build Plate Temperature"
  1688. msgstr "Температура рабочего стола по умолчанию"
  1689. #: fdmprinter.def.json
  1690. msgctxt "default_material_bed_temperature description"
  1691. msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value"
  1692. msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения"
  1693. #: fdmprinter.def.json
  1694. msgctxt "material_bed_temperature label"
  1695. msgid "Build Plate Temperature"
  1696. msgstr "Температура стола"
  1697. #: fdmprinter.def.json
  1698. msgctxt "material_bed_temperature description"
  1699. msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated."
  1700. msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается."
  1701. #: fdmprinter.def.json
  1702. msgctxt "material_bed_temperature_layer_0 label"
  1703. msgid "Build Plate Temperature Initial Layer"
  1704. msgstr "Температура стола для первого слоя"
  1705. #: fdmprinter.def.json
  1706. msgctxt "material_bed_temperature_layer_0 description"
  1707. msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer."
  1708. msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя."
  1709. #: fdmprinter.def.json
  1710. msgctxt "material_adhesion_tendency label"
  1711. msgid "Adhesion Tendency"
  1712. msgstr "Тенденция к прилипанию"
  1713. #: fdmprinter.def.json
  1714. msgctxt "material_adhesion_tendency description"
  1715. msgid "Surface adhesion tendency."
  1716. msgstr "Тенденция к прилипанию к поверхности."
  1717. #: fdmprinter.def.json
  1718. msgctxt "material_surface_energy label"
  1719. msgid "Surface Energy"
  1720. msgstr "Поверхностная энергия"
  1721. #: fdmprinter.def.json
  1722. msgctxt "material_surface_energy description"
  1723. msgid "Surface energy."
  1724. msgstr "Поверхностная энергия."
  1725. #: fdmprinter.def.json
  1726. msgctxt "material_shrinkage_percentage label"
  1727. msgid "Scaling Factor Shrinkage Compensation"
  1728. msgstr "Коэффициент масштабирования для компенсации усадки"
  1729. #: fdmprinter.def.json
  1730. msgctxt "material_shrinkage_percentage description"
  1731. msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor."
  1732. msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом."
  1733. #: fdmprinter.def.json
  1734. msgctxt "material_crystallinity label"
  1735. msgid "Crystalline Material"
  1736. msgstr "Кристаллический материал"
  1737. #: fdmprinter.def.json
  1738. msgctxt "material_crystallinity description"
  1739. msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?"
  1740. msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?"
  1741. #: fdmprinter.def.json
  1742. msgctxt "material_anti_ooze_retracted_position label"
  1743. msgid "Anti-ooze Retracted Position"
  1744. msgstr "Положение отката для защиты от капель"
  1745. #: fdmprinter.def.json
  1746. msgctxt "material_anti_ooze_retracted_position description"
  1747. msgid "How far the material needs to be retracted before it stops oozing."
  1748. msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать."
  1749. #: fdmprinter.def.json
  1750. msgctxt "material_anti_ooze_retraction_speed label"
  1751. msgid "Anti-ooze Retraction Speed"
  1752. msgstr "Скорость отката для защиты от капель"
  1753. #: fdmprinter.def.json
  1754. msgctxt "material_anti_ooze_retraction_speed description"
  1755. msgid "How fast the material needs to be retracted during a filament switch to prevent oozing."
  1756. msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель."
  1757. #: fdmprinter.def.json
  1758. msgctxt "material_break_preparation_retracted_position label"
  1759. msgid "Break Preparation Retracted Position"
  1760. msgstr "Положение отката для подготовки к отламыванию"
  1761. #: fdmprinter.def.json
  1762. msgctxt "material_break_preparation_retracted_position description"
  1763. msgid "How far the filament can be stretched before it breaks, while heated."
  1764. msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится."
  1765. #: fdmprinter.def.json
  1766. msgctxt "material_break_preparation_speed label"
  1767. msgid "Break Preparation Retraction Speed"
  1768. msgstr "Скорость отката для подготовки к отламыванию"
  1769. #: fdmprinter.def.json
  1770. msgctxt "material_break_preparation_speed description"
  1771. msgid "How fast the filament needs to be retracted just before breaking it off in a retraction."
  1772. msgstr "Насколько быстро следует убирать материал, чтобы он отломился."
  1773. #: fdmprinter.def.json
  1774. msgctxt "material_break_preparation_temperature label"
  1775. msgid "Break Preparation Temperature"
  1776. msgstr "Температура подготовки к отламыванию"
  1777. #: fdmprinter.def.json
  1778. msgctxt "material_break_preparation_temperature description"
  1779. msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature."
  1780. msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати."
  1781. #: fdmprinter.def.json
  1782. msgctxt "material_break_retracted_position label"
  1783. msgid "Break Retracted Position"
  1784. msgstr "Положение отката для отламывания"
  1785. #: fdmprinter.def.json
  1786. msgctxt "material_break_retracted_position description"
  1787. msgid "How far to retract the filament in order to break it cleanly."
  1788. msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто."
  1789. #: fdmprinter.def.json
  1790. msgctxt "material_break_speed label"
  1791. msgid "Break Retraction Speed"
  1792. msgstr "Скорость отката для отламывания"
  1793. #: fdmprinter.def.json
  1794. msgctxt "material_break_speed description"
  1795. msgid "The speed at which to retract the filament in order to break it cleanly."
  1796. msgstr "Скорость, при которой убираемый материал отломится чисто."
  1797. #: fdmprinter.def.json
  1798. msgctxt "material_break_temperature label"
  1799. msgid "Break Temperature"
  1800. msgstr "Температура отламывания"
  1801. #: fdmprinter.def.json
  1802. msgctxt "material_break_temperature description"
  1803. msgid "The temperature at which the filament is broken for a clean break."
  1804. msgstr "Температура, при которой материал отломится чисто."
  1805. #: fdmprinter.def.json
  1806. msgctxt "material_flush_purge_speed label"
  1807. msgid "Flush Purge Speed"
  1808. msgstr "Скорость выдавливания заподлицо"
  1809. #: fdmprinter.def.json
  1810. msgctxt "material_flush_purge_speed description"
  1811. msgid "How fast to prime the material after switching to a different material."
  1812. msgstr "Скорость подачи материала после переключения на другой материал."
  1813. #: fdmprinter.def.json
  1814. msgctxt "material_flush_purge_length label"
  1815. msgid "Flush Purge Length"
  1816. msgstr "Длина выдавливания заподлицо"
  1817. #: fdmprinter.def.json
  1818. msgctxt "material_flush_purge_length description"
  1819. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material."
  1820. msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал."
  1821. #: fdmprinter.def.json
  1822. msgctxt "material_end_of_filament_purge_speed label"
  1823. msgid "End of Filament Purge Speed"
  1824. msgstr "Скорость выдавливания заканчивающегося материала"
  1825. #: fdmprinter.def.json
  1826. msgctxt "material_end_of_filament_purge_speed description"
  1827. msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material."
  1828. msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом."
  1829. #: fdmprinter.def.json
  1830. msgctxt "material_end_of_filament_purge_length label"
  1831. msgid "End of Filament Purge Length"
  1832. msgstr "Длина выдавливания заканчивающегося материала"
  1833. #: fdmprinter.def.json
  1834. msgctxt "material_end_of_filament_purge_length description"
  1835. msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material."
  1836. msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом."
  1837. #: fdmprinter.def.json
  1838. msgctxt "material_maximum_park_duration label"
  1839. msgid "Maximum Park Duration"
  1840. msgstr "Максимальная продолжительность парковки"
  1841. #: fdmprinter.def.json
  1842. msgctxt "material_maximum_park_duration description"
  1843. msgid "How long the material can be kept out of dry storage safely."
  1844. msgstr "Срок хранения материала вне сухого хранилища."
  1845. #: fdmprinter.def.json
  1846. msgctxt "material_no_load_move_factor label"
  1847. msgid "No Load Move Factor"
  1848. msgstr "Коэффициент движения без нагрузки"
  1849. #: fdmprinter.def.json
  1850. msgctxt "material_no_load_move_factor description"
  1851. msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch."
  1852. msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити."
  1853. #: fdmprinter.def.json
  1854. msgctxt "material_flow label"
  1855. msgid "Flow"
  1856. msgstr "Поток"
  1857. #: fdmprinter.def.json
  1858. msgctxt "material_flow description"
  1859. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1860. msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент."
  1861. #: fdmprinter.def.json
  1862. msgctxt "wall_material_flow label"
  1863. msgid "Wall Flow"
  1864. msgstr "Поток для стенки"
  1865. #: fdmprinter.def.json
  1866. msgctxt "wall_material_flow description"
  1867. msgid "Flow compensation on wall lines."
  1868. msgstr "Компенсация потока на линиях стенки."
  1869. #: fdmprinter.def.json
  1870. msgctxt "wall_0_material_flow label"
  1871. msgid "Outer Wall Flow"
  1872. msgstr "Поток для внешней стенки"
  1873. #: fdmprinter.def.json
  1874. msgctxt "wall_0_material_flow description"
  1875. msgid "Flow compensation on the outermost wall line."
  1876. msgstr "Компенсация потока на внешней линии стенки."
  1877. #: fdmprinter.def.json
  1878. msgctxt "wall_x_material_flow label"
  1879. msgid "Inner Wall(s) Flow"
  1880. msgstr "Поток для внутренних стенок"
  1881. #: fdmprinter.def.json
  1882. msgctxt "wall_x_material_flow description"
  1883. msgid "Flow compensation on wall lines for all wall lines except the outermost one."
  1884. msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней."
  1885. #: fdmprinter.def.json
  1886. msgctxt "skin_material_flow label"
  1887. msgid "Top/Bottom Flow"
  1888. msgstr "Поток для верхних/нижних линий"
  1889. #: fdmprinter.def.json
  1890. msgctxt "skin_material_flow description"
  1891. msgid "Flow compensation on top/bottom lines."
  1892. msgstr "Компенсация потока на верхних/нижних линиях."
  1893. #: fdmprinter.def.json
  1894. msgctxt "roofing_material_flow label"
  1895. msgid "Top Surface Skin Flow"
  1896. msgstr "Поток для верхней оболочки"
  1897. #: fdmprinter.def.json
  1898. msgctxt "roofing_material_flow description"
  1899. msgid "Flow compensation on lines of the areas at the top of the print."
  1900. msgstr "Компенсация потока на линиях наверху печатаемой детали."
  1901. #: fdmprinter.def.json
  1902. msgctxt "infill_material_flow label"
  1903. msgid "Infill Flow"
  1904. msgstr "Поток для заполнения"
  1905. #: fdmprinter.def.json
  1906. msgctxt "infill_material_flow description"
  1907. msgid "Flow compensation on infill lines."
  1908. msgstr "Компенсация потока на линиях заполнения."
  1909. #: fdmprinter.def.json
  1910. msgctxt "skirt_brim_material_flow label"
  1911. msgid "Skirt/Brim Flow"
  1912. msgstr "Поток для юбки/каймы"
  1913. #: fdmprinter.def.json
  1914. msgctxt "skirt_brim_material_flow description"
  1915. msgid "Flow compensation on skirt or brim lines."
  1916. msgstr "Компенсация потока на линиях юбки или каймы."
  1917. #: fdmprinter.def.json
  1918. msgctxt "support_material_flow label"
  1919. msgid "Support Flow"
  1920. msgstr "Поток для поддержек"
  1921. #: fdmprinter.def.json
  1922. msgctxt "support_material_flow description"
  1923. msgid "Flow compensation on support structure lines."
  1924. msgstr "Компенсация потока на линиях структуры поддержек."
  1925. #: fdmprinter.def.json
  1926. msgctxt "support_interface_material_flow label"
  1927. msgid "Support Interface Flow"
  1928. msgstr "Поток для связующего слоя поддержек"
  1929. #: fdmprinter.def.json
  1930. msgctxt "support_interface_material_flow description"
  1931. msgid "Flow compensation on lines of support roof or floor."
  1932. msgstr "Компенсация потока на линиях крыши или низа поддержек."
  1933. #: fdmprinter.def.json
  1934. msgctxt "support_roof_material_flow label"
  1935. msgid "Support Roof Flow"
  1936. msgstr "Поток для крыши поддержек"
  1937. #: fdmprinter.def.json
  1938. msgctxt "support_roof_material_flow description"
  1939. msgid "Flow compensation on support roof lines."
  1940. msgstr "Компенсация потока на линиях крыши поддержек."
  1941. #: fdmprinter.def.json
  1942. msgctxt "support_bottom_material_flow label"
  1943. msgid "Support Floor Flow"
  1944. msgstr "Поток для низа поддержек"
  1945. #: fdmprinter.def.json
  1946. msgctxt "support_bottom_material_flow description"
  1947. msgid "Flow compensation on support floor lines."
  1948. msgstr "Компенсация потока на линиях низа поддержек."
  1949. #: fdmprinter.def.json
  1950. msgctxt "prime_tower_flow label"
  1951. msgid "Prime Tower Flow"
  1952. msgstr "Поток черновой башни"
  1953. #: fdmprinter.def.json
  1954. msgctxt "prime_tower_flow description"
  1955. msgid "Flow compensation on prime tower lines."
  1956. msgstr "Компенсация потока на линиях черновой башни."
  1957. #: fdmprinter.def.json
  1958. msgctxt "material_flow_layer_0 label"
  1959. msgid "Initial Layer Flow"
  1960. msgstr "Поток для первого слоя"
  1961. #: fdmprinter.def.json
  1962. msgctxt "material_flow_layer_0 description"
  1963. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1964. msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент."
  1965. #: fdmprinter.def.json
  1966. msgctxt "material_standby_temperature label"
  1967. msgid "Standby Temperature"
  1968. msgstr "Температура ожидания"
  1969. #: fdmprinter.def.json
  1970. msgctxt "material_standby_temperature description"
  1971. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1972. msgstr "Температура сопла в момент, когда для печати используется другое сопло."
  1973. #: fdmprinter.def.json
  1974. msgctxt "speed label"
  1975. msgid "Speed"
  1976. msgstr "Скорость"
  1977. #: fdmprinter.def.json
  1978. msgctxt "speed description"
  1979. msgid "Speed"
  1980. msgstr "Скорость"
  1981. #: fdmprinter.def.json
  1982. msgctxt "speed_print label"
  1983. msgid "Print Speed"
  1984. msgstr "Скорость печати"
  1985. #: fdmprinter.def.json
  1986. msgctxt "speed_print description"
  1987. msgid "The speed at which printing happens."
  1988. msgstr "Скорость, на которой происходит печать."
  1989. #: fdmprinter.def.json
  1990. msgctxt "speed_infill label"
  1991. msgid "Infill Speed"
  1992. msgstr "Скорость заполнения"
  1993. #: fdmprinter.def.json
  1994. msgctxt "speed_infill description"
  1995. msgid "The speed at which infill is printed."
  1996. msgstr "Скорость, на которой печатается заполнение."
  1997. #: fdmprinter.def.json
  1998. msgctxt "speed_wall label"
  1999. msgid "Wall Speed"
  2000. msgstr "Скорость печати стенок"
  2001. #: fdmprinter.def.json
  2002. msgctxt "speed_wall description"
  2003. msgid "The speed at which the walls are printed."
  2004. msgstr "Скорость, на которой происходит печать стенок."
  2005. #: fdmprinter.def.json
  2006. msgctxt "speed_wall_0 label"
  2007. msgid "Outer Wall Speed"
  2008. msgstr "Скорость печати внешней стенки"
  2009. #: fdmprinter.def.json
  2010. msgctxt "speed_wall_0 description"
  2011. msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way."
  2012. msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество."
  2013. #: fdmprinter.def.json
  2014. msgctxt "speed_wall_x label"
  2015. msgid "Inner Wall Speed"
  2016. msgstr "Скорость печати внутренних стенок"
  2017. #: fdmprinter.def.json
  2018. msgctxt "speed_wall_x description"
  2019. msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed."
  2020. msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения."
  2021. #: fdmprinter.def.json
  2022. msgctxt "speed_roofing label"
  2023. msgid "Top Surface Skin Speed"
  2024. msgstr "Скорость верхней оболочки"
  2025. #: fdmprinter.def.json
  2026. msgctxt "speed_roofing description"
  2027. msgid "The speed at which top surface skin layers are printed."
  2028. msgstr "Скорость, на которой печатаются слои верхней оболочки."
  2029. #: fdmprinter.def.json
  2030. msgctxt "speed_topbottom label"
  2031. msgid "Top/Bottom Speed"
  2032. msgstr "Скорость крышки/дна"
  2033. #: fdmprinter.def.json
  2034. msgctxt "speed_topbottom description"
  2035. msgid "The speed at which top/bottom layers are printed."
  2036. msgstr "Скорость, на которой печатаются слои крышки/дна."
  2037. #: fdmprinter.def.json
  2038. msgctxt "speed_support label"
  2039. msgid "Support Speed"
  2040. msgstr "Скорость печати поддержек"
  2041. #: fdmprinter.def.json
  2042. msgctxt "speed_support description"
  2043. msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing."
  2044. msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати."
  2045. #: fdmprinter.def.json
  2046. msgctxt "speed_support_infill label"
  2047. msgid "Support Infill Speed"
  2048. msgstr "Скорость заполнения поддержек"
  2049. #: fdmprinter.def.json
  2050. msgctxt "speed_support_infill description"
  2051. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  2052. msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность."
  2053. #: fdmprinter.def.json
  2054. msgctxt "speed_support_interface label"
  2055. msgid "Support Interface Speed"
  2056. msgstr "Скорость границы поддержек"
  2057. #: fdmprinter.def.json
  2058. msgctxt "speed_support_interface description"
  2059. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  2060. msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  2061. #: fdmprinter.def.json
  2062. msgctxt "speed_support_roof label"
  2063. msgid "Support Roof Speed"
  2064. msgstr "Скорость печати крыши поддержек"
  2065. #: fdmprinter.def.json
  2066. msgctxt "speed_support_roof description"
  2067. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  2068. msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  2069. #: fdmprinter.def.json
  2070. msgctxt "speed_support_bottom label"
  2071. msgid "Support Floor Speed"
  2072. msgstr "Скорость печати низа поддержек"
  2073. #: fdmprinter.def.json
  2074. msgctxt "speed_support_bottom description"
  2075. msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model."
  2076. msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  2077. #: fdmprinter.def.json
  2078. msgctxt "speed_prime_tower label"
  2079. msgid "Prime Tower Speed"
  2080. msgstr "Скорость черновых башен"
  2081. #: fdmprinter.def.json
  2082. msgctxt "speed_prime_tower description"
  2083. msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal."
  2084. msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов."
  2085. #: fdmprinter.def.json
  2086. msgctxt "speed_travel label"
  2087. msgid "Travel Speed"
  2088. msgstr "Скорость перемещения"
  2089. #: fdmprinter.def.json
  2090. msgctxt "speed_travel description"
  2091. msgid "The speed at which travel moves are made."
  2092. msgstr "Скорость, с которой выполняется перемещение."
  2093. #: fdmprinter.def.json
  2094. msgctxt "speed_layer_0 label"
  2095. msgid "Initial Layer Speed"
  2096. msgstr "Скорость первого слоя"
  2097. #: fdmprinter.def.json
  2098. msgctxt "speed_layer_0 description"
  2099. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft."
  2100. msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание."
  2101. #: fdmprinter.def.json
  2102. msgctxt "speed_print_layer_0 label"
  2103. msgid "Initial Layer Print Speed"
  2104. msgstr "Скорость первого слоя"
  2105. #: fdmprinter.def.json
  2106. msgctxt "speed_print_layer_0 description"
  2107. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  2108. msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу."
  2109. #: fdmprinter.def.json
  2110. msgctxt "speed_travel_layer_0 label"
  2111. msgid "Initial Layer Travel Speed"
  2112. msgstr "Скорость перемещений на первом слое"
  2113. #: fdmprinter.def.json
  2114. msgctxt "speed_travel_layer_0 description"
  2115. msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed."
  2116. msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати."
  2117. #: fdmprinter.def.json
  2118. msgctxt "skirt_brim_speed label"
  2119. msgid "Skirt/Brim Speed"
  2120. msgstr "Скорость юбки/каймы"
  2121. #: fdmprinter.def.json
  2122. msgctxt "skirt_brim_speed description"
  2123. msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed."
  2124. msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости."
  2125. #: fdmprinter.def.json
  2126. msgctxt "speed_z_hop label"
  2127. msgid "Z Hop Speed"
  2128. msgstr "Скорость поднятия оси Z"
  2129. #: fdmprinter.def.json
  2130. msgctxt "speed_z_hop description"
  2131. msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move."
  2132. msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть."
  2133. #: fdmprinter.def.json
  2134. msgctxt "speed_slowdown_layers label"
  2135. msgid "Number of Slower Layers"
  2136. msgstr "Количество медленных слоёв"
  2137. #: fdmprinter.def.json
  2138. msgctxt "speed_slowdown_layers description"
  2139. msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers."
  2140. msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв."
  2141. #: fdmprinter.def.json
  2142. msgctxt "speed_equalize_flow_enabled label"
  2143. msgid "Equalize Filament Flow"
  2144. msgstr "Выравнивание потока материала"
  2145. #: fdmprinter.def.json
  2146. msgctxt "speed_equalize_flow_enabled description"
  2147. msgid "Print thinner than normal lines faster so that the amount of material extruded per second remains the same. Thin pieces in your model might require lines printed with smaller line width than provided in the settings. This setting controls the speed changes for such lines."
  2148. msgstr "Печатать более тонкие чем обычно линии быстрее, чтобы объём выдавленного материала в секунду оставался постоянным. Тонкие части в вашей модели могут требовать, чтобы линии были напечатаны с меньшей шириной, чем разрешено настройками. Этот параметр управляет скоростью изменения таких линий."
  2149. #: fdmprinter.def.json
  2150. msgctxt "speed_equalize_flow_max label"
  2151. msgid "Maximum Speed for Flow Equalization"
  2152. msgstr "Максимальная скорость выравнивания потока"
  2153. #: fdmprinter.def.json
  2154. msgctxt "speed_equalize_flow_max description"
  2155. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  2156. msgstr "Максимальная скорость печати до которой может увеличиваться скорость печати при выравнивании потока."
  2157. #: fdmprinter.def.json
  2158. msgctxt "acceleration_enabled label"
  2159. msgid "Enable Acceleration Control"
  2160. msgstr "Разрешить управление ускорением"
  2161. #: fdmprinter.def.json
  2162. msgctxt "acceleration_enabled description"
  2163. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  2164. msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати."
  2165. #: fdmprinter.def.json
  2166. msgctxt "acceleration_print label"
  2167. msgid "Print Acceleration"
  2168. msgstr "Ускорение печати"
  2169. #: fdmprinter.def.json
  2170. msgctxt "acceleration_print description"
  2171. msgid "The acceleration with which printing happens."
  2172. msgstr "Ускорение, с которым происходит печать."
  2173. #: fdmprinter.def.json
  2174. msgctxt "acceleration_infill label"
  2175. msgid "Infill Acceleration"
  2176. msgstr "Ускорение заполнения"
  2177. #: fdmprinter.def.json
  2178. msgctxt "acceleration_infill description"
  2179. msgid "The acceleration with which infill is printed."
  2180. msgstr "Ускорение, с которым печатается заполнение."
  2181. #: fdmprinter.def.json
  2182. msgctxt "acceleration_wall label"
  2183. msgid "Wall Acceleration"
  2184. msgstr "Ускорение стенок"
  2185. #: fdmprinter.def.json
  2186. msgctxt "acceleration_wall description"
  2187. msgid "The acceleration with which the walls are printed."
  2188. msgstr "Ускорение, с которым происходит печать стенок."
  2189. #: fdmprinter.def.json
  2190. msgctxt "acceleration_wall_0 label"
  2191. msgid "Outer Wall Acceleration"
  2192. msgstr "Ускорение внешней стенки"
  2193. #: fdmprinter.def.json
  2194. msgctxt "acceleration_wall_0 description"
  2195. msgid "The acceleration with which the outermost walls are printed."
  2196. msgstr "Ускорение, с которым происходит печать внешних стенок."
  2197. #: fdmprinter.def.json
  2198. msgctxt "acceleration_wall_x label"
  2199. msgid "Inner Wall Acceleration"
  2200. msgstr "Ускорение внутренней стенки"
  2201. #: fdmprinter.def.json
  2202. msgctxt "acceleration_wall_x description"
  2203. msgid "The acceleration with which all inner walls are printed."
  2204. msgstr "Ускорение, с которым происходит печать внутренних стенок."
  2205. #: fdmprinter.def.json
  2206. msgctxt "acceleration_roofing label"
  2207. msgid "Top Surface Skin Acceleration"
  2208. msgstr "Ускорение верхней оболочки"
  2209. #: fdmprinter.def.json
  2210. msgctxt "acceleration_roofing description"
  2211. msgid "The acceleration with which top surface skin layers are printed."
  2212. msgstr "Ускорение, с которым печатаются слои верхней оболочки."
  2213. #: fdmprinter.def.json
  2214. msgctxt "acceleration_topbottom label"
  2215. msgid "Top/Bottom Acceleration"
  2216. msgstr "Ускорение крышки/дна"
  2217. #: fdmprinter.def.json
  2218. msgctxt "acceleration_topbottom description"
  2219. msgid "The acceleration with which top/bottom layers are printed."
  2220. msgstr "Ускорение, с которым печатаются слои крышки/дна."
  2221. #: fdmprinter.def.json
  2222. msgctxt "acceleration_support label"
  2223. msgid "Support Acceleration"
  2224. msgstr "Ускорение поддержек"
  2225. #: fdmprinter.def.json
  2226. msgctxt "acceleration_support description"
  2227. msgid "The acceleration with which the support structure is printed."
  2228. msgstr "Ускорение, с которым печатаются структуры поддержки."
  2229. #: fdmprinter.def.json
  2230. msgctxt "acceleration_support_infill label"
  2231. msgid "Support Infill Acceleration"
  2232. msgstr "Ускорение заполнение поддержек"
  2233. #: fdmprinter.def.json
  2234. msgctxt "acceleration_support_infill description"
  2235. msgid "The acceleration with which the infill of support is printed."
  2236. msgstr "Ускорение, с которым печатается заполнение поддержек."
  2237. #: fdmprinter.def.json
  2238. msgctxt "acceleration_support_interface label"
  2239. msgid "Support Interface Acceleration"
  2240. msgstr "Ускорение края поддержек"
  2241. #: fdmprinter.def.json
  2242. msgctxt "acceleration_support_interface description"
  2243. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  2244. msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей."
  2245. #: fdmprinter.def.json
  2246. msgctxt "acceleration_support_roof label"
  2247. msgid "Support Roof Acceleration"
  2248. msgstr "Ускорение крыши поддержек"
  2249. #: fdmprinter.def.json
  2250. msgctxt "acceleration_support_roof description"
  2251. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  2252. msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели."
  2253. #: fdmprinter.def.json
  2254. msgctxt "acceleration_support_bottom label"
  2255. msgid "Support Floor Acceleration"
  2256. msgstr "Ускорение низа поддержек"
  2257. #: fdmprinter.def.json
  2258. msgctxt "acceleration_support_bottom description"
  2259. msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model."
  2260. msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели."
  2261. #: fdmprinter.def.json
  2262. msgctxt "acceleration_prime_tower label"
  2263. msgid "Prime Tower Acceleration"
  2264. msgstr "Ускорение черновой башни"
  2265. #: fdmprinter.def.json
  2266. msgctxt "acceleration_prime_tower description"
  2267. msgid "The acceleration with which the prime tower is printed."
  2268. msgstr "Ускорение, с которым печатается черновая башня."
  2269. #: fdmprinter.def.json
  2270. msgctxt "acceleration_travel label"
  2271. msgid "Travel Acceleration"
  2272. msgstr "Ускорение перемещения"
  2273. #: fdmprinter.def.json
  2274. msgctxt "acceleration_travel description"
  2275. msgid "The acceleration with which travel moves are made."
  2276. msgstr "Ускорение, с которым выполняется перемещение."
  2277. #: fdmprinter.def.json
  2278. msgctxt "acceleration_layer_0 label"
  2279. msgid "Initial Layer Acceleration"
  2280. msgstr "Ускорение первого слоя"
  2281. #: fdmprinter.def.json
  2282. msgctxt "acceleration_layer_0 description"
  2283. msgid "The acceleration for the initial layer."
  2284. msgstr "Ускорение для первого слоя."
  2285. #: fdmprinter.def.json
  2286. msgctxt "acceleration_print_layer_0 label"
  2287. msgid "Initial Layer Print Acceleration"
  2288. msgstr "Ускорение печати первого слоя"
  2289. #: fdmprinter.def.json
  2290. msgctxt "acceleration_print_layer_0 description"
  2291. msgid "The acceleration during the printing of the initial layer."
  2292. msgstr "Ускорение при печати первого слоя."
  2293. #: fdmprinter.def.json
  2294. msgctxt "acceleration_travel_layer_0 label"
  2295. msgid "Initial Layer Travel Acceleration"
  2296. msgstr "Ускорение перемещений первого слоя"
  2297. #: fdmprinter.def.json
  2298. msgctxt "acceleration_travel_layer_0 description"
  2299. msgid "The acceleration for travel moves in the initial layer."
  2300. msgstr "Ускорение для перемещения на первом слое."
  2301. #: fdmprinter.def.json
  2302. msgctxt "acceleration_skirt_brim label"
  2303. msgid "Skirt/Brim Acceleration"
  2304. msgstr "Ускорение юбки/каймы"
  2305. #: fdmprinter.def.json
  2306. msgctxt "acceleration_skirt_brim description"
  2307. msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration."
  2308. msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями."
  2309. #: fdmprinter.def.json
  2310. msgctxt "jerk_enabled label"
  2311. msgid "Enable Jerk Control"
  2312. msgstr "Включить управление рывком"
  2313. #: fdmprinter.def.json
  2314. msgctxt "jerk_enabled description"
  2315. msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality."
  2316. msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества."
  2317. #: fdmprinter.def.json
  2318. msgctxt "jerk_print label"
  2319. msgid "Print Jerk"
  2320. msgstr "Рывок печати"
  2321. #: fdmprinter.def.json
  2322. msgctxt "jerk_print description"
  2323. msgid "The maximum instantaneous velocity change of the print head."
  2324. msgstr "Изменение максимальной мгновенной скорости печатающей головки."
  2325. #: fdmprinter.def.json
  2326. msgctxt "jerk_infill label"
  2327. msgid "Infill Jerk"
  2328. msgstr "Рывок заполнения"
  2329. #: fdmprinter.def.json
  2330. msgctxt "jerk_infill description"
  2331. msgid "The maximum instantaneous velocity change with which infill is printed."
  2332. msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение."
  2333. #: fdmprinter.def.json
  2334. msgctxt "jerk_wall label"
  2335. msgid "Wall Jerk"
  2336. msgstr "Рывок стены"
  2337. #: fdmprinter.def.json
  2338. msgctxt "jerk_wall description"
  2339. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2340. msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены."
  2341. #: fdmprinter.def.json
  2342. msgctxt "jerk_wall_0 label"
  2343. msgid "Outer Wall Jerk"
  2344. msgstr "Рывок внешних стен"
  2345. #: fdmprinter.def.json
  2346. msgctxt "jerk_wall_0 description"
  2347. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2348. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки."
  2349. #: fdmprinter.def.json
  2350. msgctxt "jerk_wall_x label"
  2351. msgid "Inner Wall Jerk"
  2352. msgstr "Рывок внутренних стен"
  2353. #: fdmprinter.def.json
  2354. msgctxt "jerk_wall_x description"
  2355. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2356. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки."
  2357. #: fdmprinter.def.json
  2358. msgctxt "jerk_roofing label"
  2359. msgid "Top Surface Skin Jerk"
  2360. msgstr "Рывок верхней оболочки"
  2361. #: fdmprinter.def.json
  2362. msgctxt "jerk_roofing description"
  2363. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2364. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки."
  2365. #: fdmprinter.def.json
  2366. msgctxt "jerk_topbottom label"
  2367. msgid "Top/Bottom Jerk"
  2368. msgstr "Рывок крышки/дна"
  2369. #: fdmprinter.def.json
  2370. msgctxt "jerk_topbottom description"
  2371. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2372. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои."
  2373. #: fdmprinter.def.json
  2374. msgctxt "jerk_support label"
  2375. msgid "Support Jerk"
  2376. msgstr "Рывок поддержек"
  2377. #: fdmprinter.def.json
  2378. msgctxt "jerk_support description"
  2379. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2380. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки."
  2381. #: fdmprinter.def.json
  2382. msgctxt "jerk_support_infill label"
  2383. msgid "Support Infill Jerk"
  2384. msgstr "Рывок заполнение поддержек"
  2385. #: fdmprinter.def.json
  2386. msgctxt "jerk_support_infill description"
  2387. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2388. msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек."
  2389. #: fdmprinter.def.json
  2390. msgctxt "jerk_support_interface label"
  2391. msgid "Support Interface Jerk"
  2392. msgstr "Рывок связи поддержек"
  2393. #: fdmprinter.def.json
  2394. msgctxt "jerk_support_interface description"
  2395. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2396. msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек."
  2397. #: fdmprinter.def.json
  2398. msgctxt "jerk_support_roof label"
  2399. msgid "Support Roof Jerk"
  2400. msgstr "Рывок крыши поддержек"
  2401. #: fdmprinter.def.json
  2402. msgctxt "jerk_support_roof description"
  2403. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2404. msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек."
  2405. #: fdmprinter.def.json
  2406. msgctxt "jerk_support_bottom label"
  2407. msgid "Support Floor Jerk"
  2408. msgstr "Рывок низа поддержек"
  2409. #: fdmprinter.def.json
  2410. msgctxt "jerk_support_bottom description"
  2411. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2412. msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек."
  2413. #: fdmprinter.def.json
  2414. msgctxt "jerk_prime_tower label"
  2415. msgid "Prime Tower Jerk"
  2416. msgstr "Рывок черновых башен"
  2417. #: fdmprinter.def.json
  2418. msgctxt "jerk_prime_tower description"
  2419. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2420. msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня."
  2421. #: fdmprinter.def.json
  2422. msgctxt "jerk_travel label"
  2423. msgid "Travel Jerk"
  2424. msgstr "Рывок перемещения"
  2425. #: fdmprinter.def.json
  2426. msgctxt "jerk_travel description"
  2427. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2428. msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения."
  2429. #: fdmprinter.def.json
  2430. msgctxt "jerk_layer_0 label"
  2431. msgid "Initial Layer Jerk"
  2432. msgstr "Рывок первого слоя"
  2433. #: fdmprinter.def.json
  2434. msgctxt "jerk_layer_0 description"
  2435. msgid "The print maximum instantaneous velocity change for the initial layer."
  2436. msgstr "Изменение максимальной мгновенной скорости на первом слое."
  2437. #: fdmprinter.def.json
  2438. msgctxt "jerk_print_layer_0 label"
  2439. msgid "Initial Layer Print Jerk"
  2440. msgstr "Рывок печати первого слоя"
  2441. #: fdmprinter.def.json
  2442. msgctxt "jerk_print_layer_0 description"
  2443. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2444. msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой."
  2445. #: fdmprinter.def.json
  2446. msgctxt "jerk_travel_layer_0 label"
  2447. msgid "Initial Layer Travel Jerk"
  2448. msgstr "Рывок перемещения первого слоя"
  2449. #: fdmprinter.def.json
  2450. msgctxt "jerk_travel_layer_0 description"
  2451. msgid "The acceleration for travel moves in the initial layer."
  2452. msgstr "Ускорение для перемещения на первом слое."
  2453. #: fdmprinter.def.json
  2454. msgctxt "jerk_skirt_brim label"
  2455. msgid "Skirt/Brim Jerk"
  2456. msgstr "Рывок юбки/каймы"
  2457. #: fdmprinter.def.json
  2458. msgctxt "jerk_skirt_brim description"
  2459. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2460. msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма."
  2461. #: fdmprinter.def.json
  2462. msgctxt "travel label"
  2463. msgid "Travel"
  2464. msgstr "Перемещение"
  2465. #: fdmprinter.def.json
  2466. msgctxt "travel description"
  2467. msgid "travel"
  2468. msgstr "перемещение"
  2469. #: fdmprinter.def.json
  2470. msgctxt "retraction_enable label"
  2471. msgid "Enable Retraction"
  2472. msgstr "Разрешить откат"
  2473. #: fdmprinter.def.json
  2474. msgctxt "retraction_enable description"
  2475. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  2476. msgstr "Откат нити при движении сопла вне зоны печати."
  2477. #: fdmprinter.def.json
  2478. msgctxt "retract_at_layer_change label"
  2479. msgid "Retract at Layer Change"
  2480. msgstr "Откат при смене слоя"
  2481. #: fdmprinter.def.json
  2482. msgctxt "retract_at_layer_change description"
  2483. msgid "Retract the filament when the nozzle is moving to the next layer."
  2484. msgstr "Откат нити при перемещении сопла на следующий слой."
  2485. #: fdmprinter.def.json
  2486. msgctxt "retraction_amount label"
  2487. msgid "Retraction Distance"
  2488. msgstr "Величина отката"
  2489. #: fdmprinter.def.json
  2490. msgctxt "retraction_amount description"
  2491. msgid "The length of material retracted during a retraction move."
  2492. msgstr "Длина нити материала, которая будет извлечена по время отката."
  2493. #: fdmprinter.def.json
  2494. msgctxt "retraction_speed label"
  2495. msgid "Retraction Speed"
  2496. msgstr "Скорость отката"
  2497. #: fdmprinter.def.json
  2498. msgctxt "retraction_speed description"
  2499. msgid "The speed at which the filament is retracted and primed during a retraction move."
  2500. msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате."
  2501. #: fdmprinter.def.json
  2502. msgctxt "retraction_retract_speed label"
  2503. msgid "Retraction Retract Speed"
  2504. msgstr "Скорость извлечения при откате"
  2505. #: fdmprinter.def.json
  2506. msgctxt "retraction_retract_speed description"
  2507. msgid "The speed at which the filament is retracted during a retraction move."
  2508. msgstr "Скорость с которой нить будет извлечена при откате."
  2509. #: fdmprinter.def.json
  2510. msgctxt "retraction_prime_speed label"
  2511. msgid "Retraction Prime Speed"
  2512. msgstr "Скорость заправки при откате"
  2513. #: fdmprinter.def.json
  2514. msgctxt "retraction_prime_speed description"
  2515. msgid "The speed at which the filament is primed during a retraction move."
  2516. msgstr "Скорость с которой материал будет возвращён при откате."
  2517. #: fdmprinter.def.json
  2518. msgctxt "retraction_extra_prime_amount label"
  2519. msgid "Retraction Extra Prime Amount"
  2520. msgstr "Дополнительно заполняемый объём при откате"
  2521. #: fdmprinter.def.json
  2522. msgctxt "retraction_extra_prime_amount description"
  2523. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  2524. msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра."
  2525. #: fdmprinter.def.json
  2526. msgctxt "retraction_min_travel label"
  2527. msgid "Retraction Minimum Travel"
  2528. msgstr "Минимальное перемещение при откате"
  2529. #: fdmprinter.def.json
  2530. msgctxt "retraction_min_travel description"
  2531. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  2532. msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати."
  2533. #: fdmprinter.def.json
  2534. msgctxt "retraction_count_max label"
  2535. msgid "Maximum Retraction Count"
  2536. msgstr "Максимальное количество откатов"
  2537. #: fdmprinter.def.json
  2538. msgctxt "retraction_count_max description"
  2539. msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues."
  2540. msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити."
  2541. #: fdmprinter.def.json
  2542. msgctxt "retraction_extrusion_window label"
  2543. msgid "Minimum Extrusion Distance Window"
  2544. msgstr "Окно минимальной расстояния экструзии"
  2545. #: fdmprinter.def.json
  2546. msgctxt "retraction_extrusion_window description"
  2547. msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited."
  2548. msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала."
  2549. #: fdmprinter.def.json
  2550. msgctxt "limit_support_retractions label"
  2551. msgid "Limit Support Retractions"
  2552. msgstr "Ограничить откаты поддержки"
  2553. #: fdmprinter.def.json
  2554. msgctxt "limit_support_retractions description"
  2555. msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excessive stringing within the support structure."
  2556. msgstr "Пропустить откат при переходе от поддержки к поддержке по прямой линии. Включение этого параметра обеспечивает экономию времени печати, но может привести к чрезмерной строчности структуры поддержек."
  2557. #: fdmprinter.def.json
  2558. msgctxt "retraction_combing label"
  2559. msgid "Combing Mode"
  2560. msgstr "Режим комбинга"
  2561. #: fdmprinter.def.json
  2562. msgctxt "retraction_combing description"
  2563. msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill."
  2564. msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения."
  2565. #: fdmprinter.def.json
  2566. msgctxt "retraction_combing option off"
  2567. msgid "Off"
  2568. msgstr "Выключен"
  2569. #: fdmprinter.def.json
  2570. msgctxt "retraction_combing option all"
  2571. msgid "All"
  2572. msgstr "Везде"
  2573. #: fdmprinter.def.json
  2574. msgctxt "retraction_combing option noskin"
  2575. msgid "Not in Skin"
  2576. msgstr "Не в оболочке"
  2577. #: fdmprinter.def.json
  2578. msgctxt "retraction_combing option infill"
  2579. msgid "Within Infill"
  2580. msgstr "В области заполнения"
  2581. #: fdmprinter.def.json
  2582. msgctxt "retraction_combing_max_distance label"
  2583. msgid "Max Comb Distance With No Retract"
  2584. msgstr "Макс. расстояние комб. без отката"
  2585. #: fdmprinter.def.json
  2586. msgctxt "retraction_combing_max_distance description"
  2587. msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction."
  2588. msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката."
  2589. #: fdmprinter.def.json
  2590. msgctxt "travel_retract_before_outer_wall label"
  2591. msgid "Retract Before Outer Wall"
  2592. msgstr "Откат перед внешней стенкой"
  2593. #: fdmprinter.def.json
  2594. msgctxt "travel_retract_before_outer_wall description"
  2595. msgid "Always retract when moving to start an outer wall."
  2596. msgstr "Всегда откатывать материал при движении к началу внешней стенки."
  2597. #: fdmprinter.def.json
  2598. msgctxt "travel_avoid_other_parts label"
  2599. msgid "Avoid Printed Parts When Traveling"
  2600. msgstr "Избегать напечатанных частей при перемещении"
  2601. #: fdmprinter.def.json
  2602. msgctxt "travel_avoid_other_parts description"
  2603. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2604. msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге."
  2605. #: fdmprinter.def.json
  2606. msgctxt "travel_avoid_supports label"
  2607. msgid "Avoid Supports When Traveling"
  2608. msgstr "Избегать поддержек при перемещении"
  2609. #: fdmprinter.def.json
  2610. msgctxt "travel_avoid_supports description"
  2611. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2612. msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге."
  2613. #: fdmprinter.def.json
  2614. msgctxt "travel_avoid_distance label"
  2615. msgid "Travel Avoid Distance"
  2616. msgstr "Дистанция обхода"
  2617. #: fdmprinter.def.json
  2618. msgctxt "travel_avoid_distance description"
  2619. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2620. msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении."
  2621. #: fdmprinter.def.json
  2622. msgctxt "layer_start_x label"
  2623. msgid "Layer Start X"
  2624. msgstr "X координата начала"
  2625. #: fdmprinter.def.json
  2626. msgctxt "layer_start_x description"
  2627. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2628. msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя."
  2629. #: fdmprinter.def.json
  2630. msgctxt "layer_start_y label"
  2631. msgid "Layer Start Y"
  2632. msgstr "Y координата начала"
  2633. #: fdmprinter.def.json
  2634. msgctxt "layer_start_y description"
  2635. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2636. msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя."
  2637. #: fdmprinter.def.json
  2638. msgctxt "retraction_hop_enabled label"
  2639. msgid "Z Hop When Retracted"
  2640. msgstr "Поднятие оси Z при откате"
  2641. #: fdmprinter.def.json
  2642. msgctxt "retraction_hop_enabled description"
  2643. msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  2644. msgstr "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе."
  2645. #: fdmprinter.def.json
  2646. msgctxt "retraction_hop_only_when_collides label"
  2647. msgid "Z Hop Only Over Printed Parts"
  2648. msgstr "Поднятие оси Z только над напечатанными частями"
  2649. #: fdmprinter.def.json
  2650. msgctxt "retraction_hop_only_when_collides description"
  2651. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2652. msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении."
  2653. #: fdmprinter.def.json
  2654. msgctxt "retraction_hop label"
  2655. msgid "Z Hop Height"
  2656. msgstr "Высота поднятия оси Z"
  2657. #: fdmprinter.def.json
  2658. msgctxt "retraction_hop description"
  2659. msgid "The height difference when performing a Z Hop."
  2660. msgstr "Расстояние, на которое приподнимается ось Z."
  2661. #: fdmprinter.def.json
  2662. msgctxt "retraction_hop_after_extruder_switch label"
  2663. msgid "Z Hop After Extruder Switch"
  2664. msgstr "Поднятие оси Z после смены экструдера"
  2665. #: fdmprinter.def.json
  2666. msgctxt "retraction_hop_after_extruder_switch description"
  2667. msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print."
  2668. msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели."
  2669. #: fdmprinter.def.json
  2670. msgctxt "retraction_hop_after_extruder_switch_height label"
  2671. msgid "Z Hop After Extruder Switch Height"
  2672. msgstr "Высота поднятия оси Z после смены экструдера"
  2673. #: fdmprinter.def.json
  2674. msgctxt "retraction_hop_after_extruder_switch_height description"
  2675. msgid "The height difference when performing a Z Hop after extruder switch."
  2676. msgstr "Высота, на которую приподнимается ось Z после смены экструдера."
  2677. #: fdmprinter.def.json
  2678. msgctxt "cooling label"
  2679. msgid "Cooling"
  2680. msgstr "Охлаждение"
  2681. #: fdmprinter.def.json
  2682. msgctxt "cooling description"
  2683. msgid "Cooling"
  2684. msgstr "Охлаждение"
  2685. #: fdmprinter.def.json
  2686. msgctxt "cool_fan_enabled label"
  2687. msgid "Enable Print Cooling"
  2688. msgstr "Включить вентиляторы"
  2689. #: fdmprinter.def.json
  2690. msgctxt "cool_fan_enabled description"
  2691. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2692. msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний."
  2693. #: fdmprinter.def.json
  2694. msgctxt "cool_fan_speed label"
  2695. msgid "Fan Speed"
  2696. msgstr "Скорость вентилятора"
  2697. #: fdmprinter.def.json
  2698. msgctxt "cool_fan_speed description"
  2699. msgid "The speed at which the print cooling fans spin."
  2700. msgstr "Скорость, с которой вращаются вентиляторы."
  2701. #: fdmprinter.def.json
  2702. msgctxt "cool_fan_speed_min label"
  2703. msgid "Regular Fan Speed"
  2704. msgstr "Обычная скорость вентилятора"
  2705. #: fdmprinter.def.json
  2706. msgctxt "cool_fan_speed_min description"
  2707. msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed."
  2708. msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее."
  2709. #: fdmprinter.def.json
  2710. msgctxt "cool_fan_speed_max label"
  2711. msgid "Maximum Fan Speed"
  2712. msgstr "Максимальная скорость вентилятора"
  2713. #: fdmprinter.def.json
  2714. msgctxt "cool_fan_speed_max description"
  2715. msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit."
  2716. msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью."
  2717. #: fdmprinter.def.json
  2718. msgctxt "cool_min_layer_time_fan_speed_max label"
  2719. msgid "Regular/Maximum Fan Speed Threshold"
  2720. msgstr "Порог переключения на повышенную скорость"
  2721. #: fdmprinter.def.json
  2722. msgctxt "cool_min_layer_time_fan_speed_max description"
  2723. msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed."
  2724. msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной."
  2725. #: fdmprinter.def.json
  2726. msgctxt "cool_fan_speed_0 label"
  2727. msgid "Initial Fan Speed"
  2728. msgstr "Начальная скорость вентилятора"
  2729. #: fdmprinter.def.json
  2730. msgctxt "cool_fan_speed_0 description"
  2731. msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height."
  2732. msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте."
  2733. #: fdmprinter.def.json
  2734. msgctxt "cool_fan_full_at_height label"
  2735. msgid "Regular Fan Speed at Height"
  2736. msgstr "Обычная скорость вентилятора на высоте"
  2737. #: fdmprinter.def.json
  2738. msgctxt "cool_fan_full_at_height description"
  2739. msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed."
  2740. msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной."
  2741. #: fdmprinter.def.json
  2742. msgctxt "cool_fan_full_layer label"
  2743. msgid "Regular Fan Speed at Layer"
  2744. msgstr "Обычная скорость вентилятора на слое"
  2745. #: fdmprinter.def.json
  2746. msgctxt "cool_fan_full_layer description"
  2747. msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number."
  2748. msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого."
  2749. #: fdmprinter.def.json
  2750. msgctxt "cool_min_layer_time label"
  2751. msgid "Minimum Layer Time"
  2752. msgstr "Минимальное время слоя"
  2753. #: fdmprinter.def.json
  2754. msgctxt "cool_min_layer_time description"
  2755. msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated."
  2756. msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати."
  2757. #: fdmprinter.def.json
  2758. msgctxt "cool_min_speed label"
  2759. msgid "Minimum Speed"
  2760. msgstr "Минимальная скорость"
  2761. #: fdmprinter.def.json
  2762. msgctxt "cool_min_speed description"
  2763. msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality."
  2764. msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати."
  2765. #: fdmprinter.def.json
  2766. msgctxt "cool_lift_head label"
  2767. msgid "Lift Head"
  2768. msgstr "Подъём головы"
  2769. #: fdmprinter.def.json
  2770. msgctxt "cool_lift_head description"
  2771. msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached."
  2772. msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя."
  2773. #: fdmprinter.def.json
  2774. msgctxt "support label"
  2775. msgid "Support"
  2776. msgstr "Поддержки"
  2777. #: fdmprinter.def.json
  2778. msgctxt "support description"
  2779. msgid "Support"
  2780. msgstr "Поддержки"
  2781. #: fdmprinter.def.json
  2782. msgctxt "support_enable label"
  2783. msgid "Generate Support"
  2784. msgstr "Генерация поддержек"
  2785. #: fdmprinter.def.json
  2786. msgctxt "support_enable description"
  2787. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2788. msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати."
  2789. #: fdmprinter.def.json
  2790. msgctxt "support_extruder_nr label"
  2791. msgid "Support Extruder"
  2792. msgstr "Экструдер поддержек"
  2793. #: fdmprinter.def.json
  2794. msgctxt "support_extruder_nr description"
  2795. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2796. msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров."
  2797. #: fdmprinter.def.json
  2798. msgctxt "support_infill_extruder_nr label"
  2799. msgid "Support Infill Extruder"
  2800. msgstr "Экструдер заполнения поддержек"
  2801. #: fdmprinter.def.json
  2802. msgctxt "support_infill_extruder_nr description"
  2803. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2804. msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров."
  2805. #: fdmprinter.def.json
  2806. msgctxt "support_extruder_nr_layer_0 label"
  2807. msgid "First Layer Support Extruder"
  2808. msgstr "Экструдер первого слоя поддержек"
  2809. #: fdmprinter.def.json
  2810. msgctxt "support_extruder_nr_layer_0 description"
  2811. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2812. msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров."
  2813. #: fdmprinter.def.json
  2814. msgctxt "support_interface_extruder_nr label"
  2815. msgid "Support Interface Extruder"
  2816. msgstr "Экструдер связующего слоя поддержек"
  2817. #: fdmprinter.def.json
  2818. msgctxt "support_interface_extruder_nr description"
  2819. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2820. msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров."
  2821. #: fdmprinter.def.json
  2822. msgctxt "support_roof_extruder_nr label"
  2823. msgid "Support Roof Extruder"
  2824. msgstr "Экструдер крыши поддержек"
  2825. #: fdmprinter.def.json
  2826. msgctxt "support_roof_extruder_nr description"
  2827. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2828. msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров."
  2829. #: fdmprinter.def.json
  2830. msgctxt "support_bottom_extruder_nr label"
  2831. msgid "Support Floor Extruder"
  2832. msgstr "Экструдер низа поддержек"
  2833. #: fdmprinter.def.json
  2834. msgctxt "support_bottom_extruder_nr description"
  2835. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2836. msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров."
  2837. #: fdmprinter.def.json
  2838. msgctxt "support_structure label"
  2839. msgid "Support Structure"
  2840. msgstr "Структура поддержки"
  2841. #: fdmprinter.def.json
  2842. msgctxt "support_structure description"
  2843. msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"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."
  2844. msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины."
  2845. #: fdmprinter.def.json
  2846. msgctxt "support_structure option normal"
  2847. msgid "Normal"
  2848. msgstr "Нормаль"
  2849. #: fdmprinter.def.json
  2850. msgctxt "support_structure option tree"
  2851. msgid "Tree"
  2852. msgstr "Дерево"
  2853. #: fdmprinter.def.json
  2854. msgctxt "support_tree_angle label"
  2855. msgid "Tree Support Branch Angle"
  2856. msgstr "Угол ответвления древовидной поддержки"
  2857. #: fdmprinter.def.json
  2858. msgctxt "support_tree_angle description"
  2859. msgid "The angle of the branches. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach."
  2860. msgstr "Угол ответвлений. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол."
  2861. #: fdmprinter.def.json
  2862. msgctxt "support_tree_branch_distance label"
  2863. msgid "Tree Support Branch Distance"
  2864. msgstr "Расстояние ответвления древовидной поддержки"
  2865. #: fdmprinter.def.json
  2866. msgctxt "support_tree_branch_distance description"
  2867. msgid "How far apart the branches need to be when they touch the model. Making this distance small will cause the tree support to touch the model at more points, causing better overhang but making support harder to remove."
  2868. msgstr "Указывает, насколько далеко должны друг от друга располагаться ответвления при касании модели. Если задать небольшое расстояние, увеличится количество точек, в которых древовидная поддержка касается модели; это улучшает нависание, но при этом усложняет удаление поддержки."
  2869. #: fdmprinter.def.json
  2870. msgctxt "support_tree_branch_diameter label"
  2871. msgid "Tree Support Branch Diameter"
  2872. msgstr "Диаметр ответвления древовидной поддержки"
  2873. #: fdmprinter.def.json
  2874. msgctxt "support_tree_branch_diameter description"
  2875. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  2876. msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение."
  2877. #: fdmprinter.def.json
  2878. msgctxt "support_tree_branch_diameter_angle label"
  2879. msgid "Tree Support Branch Diameter Angle"
  2880. msgstr "Угол диаметра ответвления древовидной поддержки"
  2881. #: fdmprinter.def.json
  2882. msgctxt "support_tree_branch_diameter_angle description"
  2883. msgid "The angle of the branches' diameter as they gradually become thicker towards the bottom. An angle of 0 will cause the branches to have uniform thickness over their length. A bit of an angle can increase stability of the tree support."
  2884. msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки."
  2885. #: fdmprinter.def.json
  2886. msgctxt "support_tree_collision_resolution label"
  2887. msgid "Tree Support Collision Resolution"
  2888. msgstr "Разрешение для расчета столкновений древовидной поддержки"
  2889. #: fdmprinter.def.json
  2890. msgctxt "support_tree_collision_resolution description"
  2891. msgid "Resolution to compute collisions with to avoid hitting the model. Setting this lower will produce more accurate trees that fail less often, but increases slicing time dramatically."
  2892. msgstr "Разрешение, применяемое при расчете столкновений во избежание столкновений с моделью. Если указать меньшее значение, древовидные структуры будут получаться более точными и устойчивыми, однако при этом значительно увеличится время разделения на слои."
  2893. #: fdmprinter.def.json
  2894. msgctxt "support_type label"
  2895. msgid "Support Placement"
  2896. msgstr "Размещение поддержек"
  2897. #: fdmprinter.def.json
  2898. msgctxt "support_type description"
  2899. 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."
  2900. msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели."
  2901. #: fdmprinter.def.json
  2902. msgctxt "support_type option buildplate"
  2903. msgid "Touching Buildplate"
  2904. msgstr "От стола"
  2905. #: fdmprinter.def.json
  2906. msgctxt "support_type option everywhere"
  2907. msgid "Everywhere"
  2908. msgstr "Везде"
  2909. #: fdmprinter.def.json
  2910. msgctxt "support_angle label"
  2911. msgid "Support Overhang Angle"
  2912. msgstr "Угол нависания поддержки"
  2913. #: fdmprinter.def.json
  2914. msgctxt "support_angle description"
  2915. msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support."
  2916. msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек."
  2917. #: fdmprinter.def.json
  2918. msgctxt "support_pattern label"
  2919. msgid "Support Pattern"
  2920. msgstr "Шаблон поддержек"
  2921. #: fdmprinter.def.json
  2922. msgctxt "support_pattern description"
  2923. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2924. msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек."
  2925. #: fdmprinter.def.json
  2926. msgctxt "support_pattern option lines"
  2927. msgid "Lines"
  2928. msgstr "Линии"
  2929. #: fdmprinter.def.json
  2930. msgctxt "support_pattern option grid"
  2931. msgid "Grid"
  2932. msgstr "Сетка"
  2933. #: fdmprinter.def.json
  2934. msgctxt "support_pattern option triangles"
  2935. msgid "Triangles"
  2936. msgstr "Треугольники"
  2937. #: fdmprinter.def.json
  2938. msgctxt "support_pattern option concentric"
  2939. msgid "Concentric"
  2940. msgstr "Концентрические"
  2941. #: fdmprinter.def.json
  2942. msgctxt "support_pattern option zigzag"
  2943. msgid "Zig Zag"
  2944. msgstr "Зигзаг"
  2945. #: fdmprinter.def.json
  2946. msgctxt "support_pattern option cross"
  2947. msgid "Cross"
  2948. msgstr "Крест"
  2949. #: fdmprinter.def.json
  2950. msgctxt "support_pattern option gyroid"
  2951. msgid "Gyroid"
  2952. msgstr "Гироид"
  2953. #: fdmprinter.def.json
  2954. msgctxt "support_wall_count label"
  2955. msgid "Support Wall Line Count"
  2956. msgstr "Количество линий стенки поддержки"
  2957. #: fdmprinter.def.json
  2958. msgctxt "support_wall_count description"
  2959. msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used."
  2960. msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов."
  2961. #: fdmprinter.def.json
  2962. msgctxt "zig_zaggify_support label"
  2963. msgid "Connect Support Lines"
  2964. msgstr "Соединение линий поддержки"
  2965. #: fdmprinter.def.json
  2966. msgctxt "zig_zaggify_support description"
  2967. msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material."
  2968. msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала."
  2969. #: fdmprinter.def.json
  2970. msgctxt "support_connect_zigzags label"
  2971. msgid "Connect Support ZigZags"
  2972. msgstr "Соединённый зигзаг"
  2973. #: fdmprinter.def.json
  2974. msgctxt "support_connect_zigzags description"
  2975. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2976. msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки."
  2977. #: fdmprinter.def.json
  2978. msgctxt "support_infill_rate label"
  2979. msgid "Support Density"
  2980. msgstr "Плотность поддержек"
  2981. #: fdmprinter.def.json
  2982. msgctxt "support_infill_rate description"
  2983. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2984. msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять."
  2985. #: fdmprinter.def.json
  2986. msgctxt "support_line_distance label"
  2987. msgid "Support Line Distance"
  2988. msgstr "Дистанция между линиями поддержки"
  2989. #: fdmprinter.def.json
  2990. msgctxt "support_line_distance description"
  2991. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2992. msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек."
  2993. #: fdmprinter.def.json
  2994. msgctxt "support_initial_layer_line_distance label"
  2995. msgid "Initial Layer Support Line Distance"
  2996. msgstr "Дистанция между линиями поддержки первого слоя"
  2997. #: fdmprinter.def.json
  2998. msgctxt "support_initial_layer_line_distance description"
  2999. msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density."
  3000. msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек."
  3001. #: fdmprinter.def.json
  3002. msgctxt "support_infill_angles label"
  3003. msgid "Support Infill Line Directions"
  3004. msgstr "Направление линии заполнения поддержек"
  3005. #: fdmprinter.def.json
  3006. msgctxt "support_infill_angles description"
  3007. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees."
  3008. msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов."
  3009. #: fdmprinter.def.json
  3010. msgctxt "support_brim_enable label"
  3011. msgid "Enable Support Brim"
  3012. msgstr "Разрешить кайму поддержек"
  3013. #: fdmprinter.def.json
  3014. msgctxt "support_brim_enable description"
  3015. msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate."
  3016. msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу."
  3017. #: fdmprinter.def.json
  3018. msgctxt "support_brim_width label"
  3019. msgid "Support Brim Width"
  3020. msgstr "Ширина каймы поддержки"
  3021. #: fdmprinter.def.json
  3022. msgctxt "support_brim_width description"
  3023. msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material."
  3024. msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала."
  3025. #: fdmprinter.def.json
  3026. msgctxt "support_brim_line_count label"
  3027. msgid "Support Brim Line Count"
  3028. msgstr "Количество линий каймы поддержки"
  3029. #: fdmprinter.def.json
  3030. msgctxt "support_brim_line_count description"
  3031. msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material."
  3032. msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала."
  3033. #: fdmprinter.def.json
  3034. msgctxt "support_z_distance label"
  3035. msgid "Support Z Distance"
  3036. msgstr "Зазор поддержки по оси Z"
  3037. #: fdmprinter.def.json
  3038. msgctxt "support_z_distance description"
  3039. msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded up to a multiple of the layer height."
  3040. msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя."
  3041. #: fdmprinter.def.json
  3042. msgctxt "support_top_distance label"
  3043. msgid "Support Top Distance"
  3044. msgstr "Зазор поддержки сверху"
  3045. #: fdmprinter.def.json
  3046. msgctxt "support_top_distance description"
  3047. msgid "Distance from the top of the support to the print."
  3048. msgstr "Расстояние между верхом поддержек и печатаемой моделью."
  3049. #: fdmprinter.def.json
  3050. msgctxt "support_bottom_distance label"
  3051. msgid "Support Bottom Distance"
  3052. msgstr "Дистанция поддержки снизу"
  3053. #: fdmprinter.def.json
  3054. msgctxt "support_bottom_distance description"
  3055. msgid "Distance from the print to the bottom of the support."
  3056. msgstr "Расстояние между печатаемой моделью и низом поддержки."
  3057. #: fdmprinter.def.json
  3058. msgctxt "support_xy_distance label"
  3059. msgid "Support X/Y Distance"
  3060. msgstr "Зазор поддержки по осям X/Y"
  3061. #: fdmprinter.def.json
  3062. msgctxt "support_xy_distance description"
  3063. msgid "Distance of the support structure from the print in the X/Y directions."
  3064. msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y."
  3065. #: fdmprinter.def.json
  3066. msgctxt "support_xy_overrides_z label"
  3067. msgid "Support Distance Priority"
  3068. msgstr "Приоритет зазоров поддержки"
  3069. #: fdmprinter.def.json
  3070. msgctxt "support_xy_overrides_z description"
  3071. msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs."
  3072. msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний."
  3073. #: fdmprinter.def.json
  3074. msgctxt "support_xy_overrides_z option xy_overrides_z"
  3075. msgid "X/Y overrides Z"
  3076. msgstr "X/Y перекрывает Z"
  3077. #: fdmprinter.def.json
  3078. msgctxt "support_xy_overrides_z option z_overrides_xy"
  3079. msgid "Z overrides X/Y"
  3080. msgstr "Z перекрывает X/Y"
  3081. #: fdmprinter.def.json
  3082. msgctxt "support_xy_distance_overhang label"
  3083. msgid "Minimum Support X/Y Distance"
  3084. msgstr "Минимальный X/Y зазор поддержки"
  3085. #: fdmprinter.def.json
  3086. msgctxt "support_xy_distance_overhang description"
  3087. msgid "Distance of the support structure from the overhang in the X/Y directions."
  3088. msgstr "Зазор между структурами поддержек и нависанием по осям X/Y."
  3089. #: fdmprinter.def.json
  3090. msgctxt "support_bottom_stair_step_height label"
  3091. msgid "Support Stair Step Height"
  3092. msgstr "Высота шага лестничной поддержки"
  3093. #: fdmprinter.def.json
  3094. msgctxt "support_bottom_stair_step_height description"
  3095. msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour."
  3096. msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки."
  3097. #: fdmprinter.def.json
  3098. msgctxt "support_bottom_stair_step_width label"
  3099. msgid "Support Stair Step Maximum Width"
  3100. msgstr "Максимальная ширина шага лестничной поддержки"
  3101. #: fdmprinter.def.json
  3102. msgctxt "support_bottom_stair_step_width description"
  3103. msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  3104. msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной."
  3105. #: fdmprinter.def.json
  3106. msgctxt "support_bottom_stair_step_min_slope label"
  3107. msgid "Support Stair Step Minimum Slope Angle"
  3108. msgstr "Минимальный угол уклона шага лестничной поддержки"
  3109. #: fdmprinter.def.json
  3110. msgctxt "support_bottom_stair_step_min_slope description"
  3111. msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model."
  3112. msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели."
  3113. #: fdmprinter.def.json
  3114. msgctxt "support_join_distance label"
  3115. msgid "Support Join Distance"
  3116. msgstr "Расстояние объединения поддержки"
  3117. #: fdmprinter.def.json
  3118. msgctxt "support_join_distance description"
  3119. msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one."
  3120. msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну."
  3121. #: fdmprinter.def.json
  3122. msgctxt "support_offset label"
  3123. msgid "Support Horizontal Expansion"
  3124. msgstr "Горизонтальное расширение поддержки"
  3125. #: fdmprinter.def.json
  3126. msgctxt "support_offset description"
  3127. msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support."
  3128. msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек."
  3129. #: fdmprinter.def.json
  3130. msgctxt "support_infill_sparse_thickness label"
  3131. msgid "Support Infill Layer Thickness"
  3132. msgstr "Толщина слоя заполнения поддержек"
  3133. #: fdmprinter.def.json
  3134. msgctxt "support_infill_sparse_thickness description"
  3135. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  3136. msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено."
  3137. #: fdmprinter.def.json
  3138. msgctxt "gradual_support_infill_steps label"
  3139. msgid "Gradual Support Infill Steps"
  3140. msgstr "Степень заполнения поддержек"
  3141. #: fdmprinter.def.json
  3142. msgctxt "gradual_support_infill_steps description"
  3143. msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density."
  3144. msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"."
  3145. #: fdmprinter.def.json
  3146. msgctxt "gradual_support_infill_step_height label"
  3147. msgid "Gradual Support Infill Step Height"
  3148. msgstr "Высота шага изменения заполнения поддержек"
  3149. #: fdmprinter.def.json
  3150. msgctxt "gradual_support_infill_step_height description"
  3151. msgid "The height of support infill of a given density before switching to half the density."
  3152. msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности."
  3153. #: fdmprinter.def.json
  3154. msgctxt "minimum_support_area label"
  3155. msgid "Minimum Support Area"
  3156. msgstr "Минимальная зона поддержек"
  3157. #: fdmprinter.def.json
  3158. msgctxt "minimum_support_area description"
  3159. msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated."
  3160. msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться."
  3161. #: fdmprinter.def.json
  3162. msgctxt "support_interface_enable label"
  3163. msgid "Enable Support Interface"
  3164. msgstr "Разрешить связующий слой поддержки"
  3165. #: fdmprinter.def.json
  3166. msgctxt "support_interface_enable description"
  3167. msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model."
  3168. msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели."
  3169. #: fdmprinter.def.json
  3170. msgctxt "support_roof_enable label"
  3171. msgid "Enable Support Roof"
  3172. msgstr "Разрешить крышу поддержек"
  3173. #: fdmprinter.def.json
  3174. msgctxt "support_roof_enable description"
  3175. msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support."
  3176. msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой."
  3177. #: fdmprinter.def.json
  3178. msgctxt "support_bottom_enable label"
  3179. msgid "Enable Support Floor"
  3180. msgstr "Разрешить дно поддержек"
  3181. #: fdmprinter.def.json
  3182. msgctxt "support_bottom_enable description"
  3183. msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support."
  3184. msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой."
  3185. #: fdmprinter.def.json
  3186. msgctxt "support_interface_height label"
  3187. msgid "Support Interface Thickness"
  3188. msgstr "Толщина связующего слоя поддержки"
  3189. #: fdmprinter.def.json
  3190. msgctxt "support_interface_height description"
  3191. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  3192. msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху."
  3193. #: fdmprinter.def.json
  3194. msgctxt "support_roof_height label"
  3195. msgid "Support Roof Thickness"
  3196. msgstr "Толщина крыши"
  3197. #: fdmprinter.def.json
  3198. msgctxt "support_roof_height description"
  3199. msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests."
  3200. msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель."
  3201. #: fdmprinter.def.json
  3202. msgctxt "support_bottom_height label"
  3203. msgid "Support Floor Thickness"
  3204. msgstr "Толщина низа поддержки"
  3205. #: fdmprinter.def.json
  3206. msgctxt "support_bottom_height description"
  3207. msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests."
  3208. msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек."
  3209. #: fdmprinter.def.json
  3210. msgctxt "support_interface_skip_height label"
  3211. msgid "Support Interface Resolution"
  3212. msgstr "Разрешение связующего слоя поддержек"
  3213. #: fdmprinter.def.json
  3214. msgctxt "support_interface_skip_height description"
  3215. msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  3216. msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек."
  3217. #: fdmprinter.def.json
  3218. msgctxt "support_interface_density label"
  3219. msgid "Support Interface Density"
  3220. msgstr "Плотность связующего слоя поддержки"
  3221. #: fdmprinter.def.json
  3222. msgctxt "support_interface_density description"
  3223. msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3224. msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять."
  3225. #: fdmprinter.def.json
  3226. msgctxt "support_roof_density label"
  3227. msgid "Support Roof Density"
  3228. msgstr "Плотность крыши поддержек"
  3229. #: fdmprinter.def.json
  3230. msgctxt "support_roof_density description"
  3231. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  3232. msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять."
  3233. #: fdmprinter.def.json
  3234. msgctxt "support_roof_line_distance label"
  3235. msgid "Support Roof Line Distance"
  3236. msgstr "Дистанция линии крыши поддержек"
  3237. #: fdmprinter.def.json
  3238. msgctxt "support_roof_line_distance description"
  3239. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  3240. msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно."
  3241. #: fdmprinter.def.json
  3242. msgctxt "support_bottom_density label"
  3243. msgid "Support Floor Density"
  3244. msgstr "Плотность низа поддержек"
  3245. #: fdmprinter.def.json
  3246. msgctxt "support_bottom_density description"
  3247. msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model."
  3248. msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели."
  3249. #: fdmprinter.def.json
  3250. msgctxt "support_bottom_line_distance label"
  3251. msgid "Support Floor Line Distance"
  3252. msgstr "Дистанция линии низа поддержек"
  3253. #: fdmprinter.def.json
  3254. msgctxt "support_bottom_line_distance description"
  3255. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  3256. msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно."
  3257. #: fdmprinter.def.json
  3258. msgctxt "support_interface_pattern label"
  3259. msgid "Support Interface Pattern"
  3260. msgstr "Шаблон связующего слоя"
  3261. #: fdmprinter.def.json
  3262. msgctxt "support_interface_pattern description"
  3263. msgid "The pattern with which the interface of the support with the model is printed."
  3264. msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек."
  3265. #: fdmprinter.def.json
  3266. msgctxt "support_interface_pattern option lines"
  3267. msgid "Lines"
  3268. msgstr "Линии"
  3269. #: fdmprinter.def.json
  3270. msgctxt "support_interface_pattern option grid"
  3271. msgid "Grid"
  3272. msgstr "Сетка"
  3273. #: fdmprinter.def.json
  3274. msgctxt "support_interface_pattern option triangles"
  3275. msgid "Triangles"
  3276. msgstr "Треугольники"
  3277. #: fdmprinter.def.json
  3278. msgctxt "support_interface_pattern option concentric"
  3279. msgid "Concentric"
  3280. msgstr "Концентрический"
  3281. #: fdmprinter.def.json
  3282. msgctxt "support_interface_pattern option zigzag"
  3283. msgid "Zig Zag"
  3284. msgstr "Зигзаг"
  3285. #: fdmprinter.def.json
  3286. msgctxt "support_roof_pattern label"
  3287. msgid "Support Roof Pattern"
  3288. msgstr "Шаблон крыши поддержек"
  3289. #: fdmprinter.def.json
  3290. msgctxt "support_roof_pattern description"
  3291. msgid "The pattern with which the roofs of the support are printed."
  3292. msgstr "Шаблон, который будет использоваться для печати верхней части поддержек."
  3293. #: fdmprinter.def.json
  3294. msgctxt "support_roof_pattern option lines"
  3295. msgid "Lines"
  3296. msgstr "Линии"
  3297. #: fdmprinter.def.json
  3298. msgctxt "support_roof_pattern option grid"
  3299. msgid "Grid"
  3300. msgstr "Сетка"
  3301. #: fdmprinter.def.json
  3302. msgctxt "support_roof_pattern option triangles"
  3303. msgid "Triangles"
  3304. msgstr "Треугольники"
  3305. #: fdmprinter.def.json
  3306. msgctxt "support_roof_pattern option concentric"
  3307. msgid "Concentric"
  3308. msgstr "Концентрический"
  3309. #: fdmprinter.def.json
  3310. msgctxt "support_roof_pattern option zigzag"
  3311. msgid "Zig Zag"
  3312. msgstr "Зигзаг"
  3313. #: fdmprinter.def.json
  3314. msgctxt "support_bottom_pattern label"
  3315. msgid "Support Floor Pattern"
  3316. msgstr "Шаблон низа поддержек"
  3317. #: fdmprinter.def.json
  3318. msgctxt "support_bottom_pattern description"
  3319. msgid "The pattern with which the floors of the support are printed."
  3320. msgstr "Шаблон, который будет использоваться для печати нижней части поддержек."
  3321. #: fdmprinter.def.json
  3322. msgctxt "support_bottom_pattern option lines"
  3323. msgid "Lines"
  3324. msgstr "Линии"
  3325. #: fdmprinter.def.json
  3326. msgctxt "support_bottom_pattern option grid"
  3327. msgid "Grid"
  3328. msgstr "Сетка"
  3329. #: fdmprinter.def.json
  3330. msgctxt "support_bottom_pattern option triangles"
  3331. msgid "Triangles"
  3332. msgstr "Треугольники"
  3333. #: fdmprinter.def.json
  3334. msgctxt "support_bottom_pattern option concentric"
  3335. msgid "Concentric"
  3336. msgstr "Концентрический"
  3337. #: fdmprinter.def.json
  3338. msgctxt "support_bottom_pattern option zigzag"
  3339. msgid "Zig Zag"
  3340. msgstr "Зигзаг"
  3341. #: fdmprinter.def.json
  3342. msgctxt "minimum_interface_area label"
  3343. msgid "Minimum Support Interface Area"
  3344. msgstr "Минимальная зона связующего слоя"
  3345. #: fdmprinter.def.json
  3346. msgctxt "minimum_interface_area description"
  3347. msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support."
  3348. msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали."
  3349. #: fdmprinter.def.json
  3350. msgctxt "minimum_roof_area label"
  3351. msgid "Minimum Support Roof Area"
  3352. msgstr "Минимальная зона верхней части поддержек"
  3353. #: fdmprinter.def.json
  3354. msgctxt "minimum_roof_area description"
  3355. msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3356. msgstr "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали."
  3357. #: fdmprinter.def.json
  3358. msgctxt "minimum_bottom_area label"
  3359. msgid "Minimum Support Floor Area"
  3360. msgstr "Минимальная зона нижней части поддержек"
  3361. #: fdmprinter.def.json
  3362. msgctxt "minimum_bottom_area description"
  3363. msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support."
  3364. msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали."
  3365. #: fdmprinter.def.json
  3366. msgctxt "support_interface_offset label"
  3367. msgid "Support Interface Horizontal Expansion"
  3368. msgstr "Горизонтальное расширение связующего слоя"
  3369. #: fdmprinter.def.json
  3370. msgctxt "support_interface_offset description"
  3371. msgid "Amount of offset applied to the support interface polygons."
  3372. msgstr "Величина смещения, применяемая к полигонам связующего слоя."
  3373. #: fdmprinter.def.json
  3374. msgctxt "support_roof_offset label"
  3375. msgid "Support Roof Horizontal Expansion"
  3376. msgstr "Горизонтальное расширение верхней части поддержек"
  3377. #: fdmprinter.def.json
  3378. msgctxt "support_roof_offset description"
  3379. msgid "Amount of offset applied to the roofs of the support."
  3380. msgstr "Величина смещения, применяемая к верхней части поддержек."
  3381. #: fdmprinter.def.json
  3382. msgctxt "support_bottom_offset label"
  3383. msgid "Support Floor Horizontal Expansion"
  3384. msgstr "Горизонтальное расширение нижней части поддержек"
  3385. #: fdmprinter.def.json
  3386. msgctxt "support_bottom_offset description"
  3387. msgid "Amount of offset applied to the floors of the support."
  3388. msgstr "Величина смещения, применяемая к нижней части поддержек."
  3389. #: fdmprinter.def.json
  3390. msgctxt "support_interface_angles label"
  3391. msgid "Support Interface Line Directions"
  3392. msgstr "Направления линии связующего слоя поддержек"
  3393. #: fdmprinter.def.json
  3394. msgctxt "support_interface_angles description"
  3395. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3396. msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)."
  3397. #: fdmprinter.def.json
  3398. msgctxt "support_roof_angles label"
  3399. msgid "Support Roof Line Directions"
  3400. msgstr "Направления линии крыши поддержек"
  3401. #: fdmprinter.def.json
  3402. msgctxt "support_roof_angles description"
  3403. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3404. msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)."
  3405. #: fdmprinter.def.json
  3406. msgctxt "support_bottom_angles label"
  3407. msgid "Support Floor Line Directions"
  3408. msgstr "Направления линии низа поддержек"
  3409. #: fdmprinter.def.json
  3410. msgctxt "support_bottom_angles description"
  3411. msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)."
  3412. msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)."
  3413. #: fdmprinter.def.json
  3414. msgctxt "support_fan_enable label"
  3415. msgid "Fan Speed Override"
  3416. msgstr "Переопределение скорости вентилятора"
  3417. #: fdmprinter.def.json
  3418. msgctxt "support_fan_enable description"
  3419. msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support."
  3420. msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой."
  3421. #: fdmprinter.def.json
  3422. msgctxt "support_supported_skin_fan_speed label"
  3423. msgid "Supported Skin Fan Speed"
  3424. msgstr "Поддерживаемая скорость вентилятора для оболочки"
  3425. #: fdmprinter.def.json
  3426. msgctxt "support_supported_skin_fan_speed description"
  3427. msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove."
  3428. msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки."
  3429. #: fdmprinter.def.json
  3430. msgctxt "support_use_towers label"
  3431. msgid "Use Towers"
  3432. msgstr "Использовать башни"
  3433. #: fdmprinter.def.json
  3434. msgctxt "support_use_towers description"
  3435. msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof."
  3436. msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу."
  3437. #: fdmprinter.def.json
  3438. msgctxt "support_tower_diameter label"
  3439. msgid "Tower Diameter"
  3440. msgstr "Диаметр башен"
  3441. #: fdmprinter.def.json
  3442. msgctxt "support_tower_diameter description"
  3443. msgid "The diameter of a special tower."
  3444. msgstr "Диаметр специальных башен."
  3445. #: fdmprinter.def.json
  3446. msgctxt "support_tower_maximum_supported_diameter label"
  3447. msgid "Maximum Tower-Supported Diameter"
  3448. msgstr "Максимальный диаметр, поддерживаемый башней"
  3449. #: fdmprinter.def.json
  3450. msgctxt "support_tower_maximum_supported_diameter description"
  3451. msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  3452. msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней."
  3453. #: fdmprinter.def.json
  3454. msgctxt "support_tower_roof_angle label"
  3455. msgid "Tower Roof Angle"
  3456. msgstr "Угол крыши башен"
  3457. #: fdmprinter.def.json
  3458. msgctxt "support_tower_roof_angle description"
  3459. msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs."
  3460. msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской."
  3461. #: fdmprinter.def.json
  3462. msgctxt "support_mesh_drop_down label"
  3463. msgid "Drop Down Support Mesh"
  3464. msgstr "Объект поддержки нависаний"
  3465. #: fdmprinter.def.json
  3466. msgctxt "support_mesh_drop_down description"
  3467. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  3468. msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет."
  3469. #: fdmprinter.def.json
  3470. msgctxt "support_meshes_present label"
  3471. msgid "Scene Has Support Meshes"
  3472. msgstr "На сцене есть объекты поддержки"
  3473. #: fdmprinter.def.json
  3474. msgctxt "support_meshes_present description"
  3475. msgid "There are support meshes present in the scene. This setting is controlled by Cura."
  3476. msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura."
  3477. #: fdmprinter.def.json
  3478. msgctxt "platform_adhesion label"
  3479. msgid "Build Plate Adhesion"
  3480. msgstr "Тип прилипания к столу"
  3481. #: fdmprinter.def.json
  3482. msgctxt "platform_adhesion description"
  3483. msgid "Adhesion"
  3484. msgstr "Прилипание"
  3485. #: fdmprinter.def.json
  3486. msgctxt "prime_blob_enable label"
  3487. msgid "Enable Prime Blob"
  3488. msgstr "Разрешить наполнение материалом"
  3489. #: fdmprinter.def.json
  3490. msgctxt "prime_blob_enable description"
  3491. msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time."
  3492. msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время."
  3493. #: fdmprinter.def.json
  3494. msgctxt "extruder_prime_pos_x label"
  3495. msgid "Extruder Prime X Position"
  3496. msgstr "Начальная X позиция экструдера"
  3497. #: fdmprinter.def.json
  3498. msgctxt "extruder_prime_pos_x description"
  3499. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  3500. msgstr "X координата позиции, в которой сопло начинает печать."
  3501. #: fdmprinter.def.json
  3502. msgctxt "extruder_prime_pos_y label"
  3503. msgid "Extruder Prime Y Position"
  3504. msgstr "Начальная Y позиция экструдера"
  3505. #: fdmprinter.def.json
  3506. msgctxt "extruder_prime_pos_y description"
  3507. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  3508. msgstr "Y координата позиции, в которой сопло начинает печать."
  3509. #: fdmprinter.def.json
  3510. msgctxt "adhesion_type label"
  3511. msgid "Build Plate Adhesion Type"
  3512. msgstr "Тип прилипания к столу"
  3513. #: fdmprinter.def.json
  3514. msgctxt "adhesion_type description"
  3515. msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model."
  3516. msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней."
  3517. #: fdmprinter.def.json
  3518. msgctxt "adhesion_type option skirt"
  3519. msgid "Skirt"
  3520. msgstr "Юбка"
  3521. #: fdmprinter.def.json
  3522. msgctxt "adhesion_type option brim"
  3523. msgid "Brim"
  3524. msgstr "Кайма"
  3525. #: fdmprinter.def.json
  3526. msgctxt "adhesion_type option raft"
  3527. msgid "Raft"
  3528. msgstr "Подложка"
  3529. #: fdmprinter.def.json
  3530. msgctxt "adhesion_type option none"
  3531. msgid "None"
  3532. msgstr "Нет"
  3533. #: fdmprinter.def.json
  3534. msgctxt "adhesion_extruder_nr label"
  3535. msgid "Build Plate Adhesion Extruder"
  3536. msgstr "Экструдер первого слоя"
  3537. #: fdmprinter.def.json
  3538. msgctxt "adhesion_extruder_nr description"
  3539. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  3540. msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров."
  3541. #: fdmprinter.def.json
  3542. msgctxt "skirt_line_count label"
  3543. msgid "Skirt Line Count"
  3544. msgstr "Количество линий юбки"
  3545. #: fdmprinter.def.json
  3546. msgctxt "skirt_line_count description"
  3547. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  3548. msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки."
  3549. #: fdmprinter.def.json
  3550. msgctxt "skirt_gap label"
  3551. msgid "Skirt Distance"
  3552. msgstr "Дистанция до юбки"
  3553. #: fdmprinter.def.json
  3554. msgctxt "skirt_gap description"
  3555. msgid ""
  3556. "The horizontal distance between the skirt and the first layer of the print.\n"
  3557. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  3558. msgstr ""
  3559. "Горизонтальное расстояние между юбкой и первым слоем печати.\n"
  3560. "Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния."
  3561. #: fdmprinter.def.json
  3562. msgctxt "skirt_brim_minimal_length label"
  3563. msgid "Skirt/Brim Minimum Length"
  3564. msgstr "Минимальная длина юбки/каймы"
  3565. #: fdmprinter.def.json
  3566. msgctxt "skirt_brim_minimal_length description"
  3567. msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored."
  3568. msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется."
  3569. #: fdmprinter.def.json
  3570. msgctxt "brim_width label"
  3571. msgid "Brim Width"
  3572. msgstr "Ширина каймы"
  3573. #: fdmprinter.def.json
  3574. msgctxt "brim_width description"
  3575. msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area."
  3576. msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати."
  3577. #: fdmprinter.def.json
  3578. msgctxt "brim_line_count label"
  3579. msgid "Brim Line Count"
  3580. msgstr "Количество линий каймы"
  3581. #: fdmprinter.def.json
  3582. msgctxt "brim_line_count description"
  3583. msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area."
  3584. msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати."
  3585. #: fdmprinter.def.json
  3586. msgctxt "brim_gap label"
  3587. msgid "Brim Distance"
  3588. msgstr "Расстояние до каймы"
  3589. #: fdmprinter.def.json
  3590. msgctxt "brim_gap description"
  3591. msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits."
  3592. msgstr "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества."
  3593. #: fdmprinter.def.json
  3594. msgctxt "brim_replaces_support label"
  3595. msgid "Brim Replaces Support"
  3596. msgstr "Кайма заменяет поддержку"
  3597. #: fdmprinter.def.json
  3598. msgctxt "brim_replaces_support description"
  3599. msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions."
  3600. msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы."
  3601. #: fdmprinter.def.json
  3602. msgctxt "brim_outside_only label"
  3603. msgid "Brim Only on Outside"
  3604. msgstr "Кайма только снаружи"
  3605. #: fdmprinter.def.json
  3606. msgctxt "brim_outside_only description"
  3607. msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much."
  3608. msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу."
  3609. #: fdmprinter.def.json
  3610. msgctxt "raft_margin label"
  3611. msgid "Raft Extra Margin"
  3612. msgstr "Дополнительное поле подложки"
  3613. #: fdmprinter.def.json
  3614. msgctxt "raft_margin description"
  3615. msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print."
  3616. msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати."
  3617. #: fdmprinter.def.json
  3618. msgctxt "raft_smoothing label"
  3619. msgid "Raft Smoothing"
  3620. msgstr "Сглаживание подложки"
  3621. #: fdmprinter.def.json
  3622. msgctxt "raft_smoothing description"
  3623. msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  3624. msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга."
  3625. #: fdmprinter.def.json
  3626. msgctxt "raft_airgap label"
  3627. msgid "Raft Air Gap"
  3628. msgstr "Воздушный зазор подложки"
  3629. #: fdmprinter.def.json
  3630. msgctxt "raft_airgap description"
  3631. msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft."
  3632. msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки."
  3633. #: fdmprinter.def.json
  3634. msgctxt "layer_0_z_overlap label"
  3635. msgid "Initial Layer Z Overlap"
  3636. msgstr "Z наложение первого слоя"
  3637. #: fdmprinter.def.json
  3638. msgctxt "layer_0_z_overlap description"
  3639. msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount."
  3640. msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смещены чуть ниже на указанное значение."
  3641. #: fdmprinter.def.json
  3642. msgctxt "raft_surface_layers label"
  3643. msgid "Raft Top Layers"
  3644. msgstr "Верхние слои подложки"
  3645. #: fdmprinter.def.json
  3646. msgctxt "raft_surface_layers description"
  3647. msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1."
  3648. msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один."
  3649. #: fdmprinter.def.json
  3650. msgctxt "raft_surface_thickness label"
  3651. msgid "Raft Top Layer Thickness"
  3652. msgstr "Толщина верхнего слоя подложки"
  3653. #: fdmprinter.def.json
  3654. msgctxt "raft_surface_thickness description"
  3655. msgid "Layer thickness of the top raft layers."
  3656. msgstr "Толщина верхних слоёв поддержки."
  3657. #: fdmprinter.def.json
  3658. msgctxt "raft_surface_line_width label"
  3659. msgid "Raft Top Line Width"
  3660. msgstr "Ширина линий верха подложки"
  3661. #: fdmprinter.def.json
  3662. msgctxt "raft_surface_line_width description"
  3663. msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth."
  3664. msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой."
  3665. #: fdmprinter.def.json
  3666. msgctxt "raft_surface_line_spacing label"
  3667. msgid "Raft Top Spacing"
  3668. msgstr "Дистанция между линиями верха поддержки"
  3669. #: fdmprinter.def.json
  3670. msgctxt "raft_surface_line_spacing description"
  3671. msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid."
  3672. msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной."
  3673. #: fdmprinter.def.json
  3674. msgctxt "raft_interface_thickness label"
  3675. msgid "Raft Middle Thickness"
  3676. msgstr "Толщина середины подложки"
  3677. #: fdmprinter.def.json
  3678. msgctxt "raft_interface_thickness description"
  3679. msgid "Layer thickness of the middle raft layer."
  3680. msgstr "Толщина слоёв середины подложки."
  3681. #: fdmprinter.def.json
  3682. msgctxt "raft_interface_line_width label"
  3683. msgid "Raft Middle Line Width"
  3684. msgstr "Ширина линий середины подложки"
  3685. #: fdmprinter.def.json
  3686. msgctxt "raft_interface_line_width description"
  3687. msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate."
  3688. msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу."
  3689. #: fdmprinter.def.json
  3690. msgctxt "raft_interface_line_spacing label"
  3691. msgid "Raft Middle Spacing"
  3692. msgstr "Дистанция между слоями середины подложки"
  3693. #: fdmprinter.def.json
  3694. msgctxt "raft_interface_line_spacing description"
  3695. msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers."
  3696. msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки."
  3697. #: fdmprinter.def.json
  3698. msgctxt "raft_base_thickness label"
  3699. msgid "Raft Base Thickness"
  3700. msgstr "Толщина нижнего слоя подложки"
  3701. #: fdmprinter.def.json
  3702. msgctxt "raft_base_thickness description"
  3703. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3704. msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу."
  3705. #: fdmprinter.def.json
  3706. msgctxt "raft_base_line_width label"
  3707. msgid "Raft Base Line Width"
  3708. msgstr "Ширина линии нижнего слоя подложки"
  3709. #: fdmprinter.def.json
  3710. msgctxt "raft_base_line_width description"
  3711. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3712. msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу."
  3713. #: fdmprinter.def.json
  3714. msgctxt "raft_base_line_spacing label"
  3715. msgid "Raft Base Line Spacing"
  3716. msgstr "Дистанция между линиями нижнего слоя подложки"
  3717. #: fdmprinter.def.json
  3718. msgctxt "raft_base_line_spacing description"
  3719. msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate."
  3720. msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола."
  3721. #: fdmprinter.def.json
  3722. msgctxt "raft_speed label"
  3723. msgid "Raft Print Speed"
  3724. msgstr "Скорость печати подложки"
  3725. #: fdmprinter.def.json
  3726. msgctxt "raft_speed description"
  3727. msgid "The speed at which the raft is printed."
  3728. msgstr "Скорость, на которой печатается подложка."
  3729. #: fdmprinter.def.json
  3730. msgctxt "raft_surface_speed label"
  3731. msgid "Raft Top Print Speed"
  3732. msgstr "Скорость печати верха подложки"
  3733. #: fdmprinter.def.json
  3734. msgctxt "raft_surface_speed description"
  3735. msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines."
  3736. msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности."
  3737. #: fdmprinter.def.json
  3738. msgctxt "raft_interface_speed label"
  3739. msgid "Raft Middle Print Speed"
  3740. msgstr "Скорость печати середины подложки"
  3741. #: fdmprinter.def.json
  3742. msgctxt "raft_interface_speed description"
  3743. msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3744. msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой."
  3745. #: fdmprinter.def.json
  3746. msgctxt "raft_base_speed label"
  3747. msgid "Raft Base Print Speed"
  3748. msgstr "Скорость печати низа подложки"
  3749. #: fdmprinter.def.json
  3750. msgctxt "raft_base_speed description"
  3751. msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  3752. msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой."
  3753. #: fdmprinter.def.json
  3754. msgctxt "raft_acceleration label"
  3755. msgid "Raft Print Acceleration"
  3756. msgstr "Ускорение печати подложки"
  3757. #: fdmprinter.def.json
  3758. msgctxt "raft_acceleration description"
  3759. msgid "The acceleration with which the raft is printed."
  3760. msgstr "Ускорение, с которым печатается подложка."
  3761. #: fdmprinter.def.json
  3762. msgctxt "raft_surface_acceleration label"
  3763. msgid "Raft Top Print Acceleration"
  3764. msgstr "Ускорение печати верха подложки"
  3765. #: fdmprinter.def.json
  3766. msgctxt "raft_surface_acceleration description"
  3767. msgid "The acceleration with which the top raft layers are printed."
  3768. msgstr "Ускорение, с которым печатаются верхние слои подложки."
  3769. #: fdmprinter.def.json
  3770. msgctxt "raft_interface_acceleration label"
  3771. msgid "Raft Middle Print Acceleration"
  3772. msgstr "Ускорение печати середины подложки"
  3773. #: fdmprinter.def.json
  3774. msgctxt "raft_interface_acceleration description"
  3775. msgid "The acceleration with which the middle raft layer is printed."
  3776. msgstr "Ускорение, с которым печатаются средние слои подложки."
  3777. #: fdmprinter.def.json
  3778. msgctxt "raft_base_acceleration label"
  3779. msgid "Raft Base Print Acceleration"
  3780. msgstr "Ускорение печати низа подложки"
  3781. #: fdmprinter.def.json
  3782. msgctxt "raft_base_acceleration description"
  3783. msgid "The acceleration with which the base raft layer is printed."
  3784. msgstr "Ускорение, с которым печатаются нижние слои подложки."
  3785. #: fdmprinter.def.json
  3786. msgctxt "raft_jerk label"
  3787. msgid "Raft Print Jerk"
  3788. msgstr "Рывок подложки"
  3789. #: fdmprinter.def.json
  3790. msgctxt "raft_jerk description"
  3791. msgid "The jerk with which the raft is printed."
  3792. msgstr "Скорость изменения ускорений при печати подложки."
  3793. #: fdmprinter.def.json
  3794. msgctxt "raft_surface_jerk label"
  3795. msgid "Raft Top Print Jerk"
  3796. msgstr "Рывок печати верха подложки"
  3797. #: fdmprinter.def.json
  3798. msgctxt "raft_surface_jerk description"
  3799. msgid "The jerk with which the top raft layers are printed."
  3800. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки."
  3801. #: fdmprinter.def.json
  3802. msgctxt "raft_interface_jerk label"
  3803. msgid "Raft Middle Print Jerk"
  3804. msgstr "Рывок печати середины подложки"
  3805. #: fdmprinter.def.json
  3806. msgctxt "raft_interface_jerk description"
  3807. msgid "The jerk with which the middle raft layer is printed."
  3808. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки."
  3809. #: fdmprinter.def.json
  3810. msgctxt "raft_base_jerk label"
  3811. msgid "Raft Base Print Jerk"
  3812. msgstr "Рывок печати низа подложки"
  3813. #: fdmprinter.def.json
  3814. msgctxt "raft_base_jerk description"
  3815. msgid "The jerk with which the base raft layer is printed."
  3816. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки."
  3817. #: fdmprinter.def.json
  3818. msgctxt "raft_fan_speed label"
  3819. msgid "Raft Fan Speed"
  3820. msgstr "Скорость вентилятора для подложки"
  3821. #: fdmprinter.def.json
  3822. msgctxt "raft_fan_speed description"
  3823. msgid "The fan speed for the raft."
  3824. msgstr "Скорость вращения вентилятора при печати подложки."
  3825. #: fdmprinter.def.json
  3826. msgctxt "raft_surface_fan_speed label"
  3827. msgid "Raft Top Fan Speed"
  3828. msgstr "Скорость вентилятора для верха подложки"
  3829. #: fdmprinter.def.json
  3830. msgctxt "raft_surface_fan_speed description"
  3831. msgid "The fan speed for the top raft layers."
  3832. msgstr "Скорость вентилятора при печати верхних слоёв подложки."
  3833. #: fdmprinter.def.json
  3834. msgctxt "raft_interface_fan_speed label"
  3835. msgid "Raft Middle Fan Speed"
  3836. msgstr "Скорость вентилятора для середины подложки"
  3837. #: fdmprinter.def.json
  3838. msgctxt "raft_interface_fan_speed description"
  3839. msgid "The fan speed for the middle raft layer."
  3840. msgstr "Скорость вентилятора при печати средних слоёв подложки."
  3841. #: fdmprinter.def.json
  3842. msgctxt "raft_base_fan_speed label"
  3843. msgid "Raft Base Fan Speed"
  3844. msgstr "Скорость вентилятора для низа подложки"
  3845. #: fdmprinter.def.json
  3846. msgctxt "raft_base_fan_speed description"
  3847. msgid "The fan speed for the base raft layer."
  3848. msgstr "Скорость вентилятора при печати нижнего слоя подложки."
  3849. #: fdmprinter.def.json
  3850. msgctxt "dual label"
  3851. msgid "Dual Extrusion"
  3852. msgstr "Два экструдера"
  3853. #: fdmprinter.def.json
  3854. msgctxt "dual description"
  3855. msgid "Settings used for printing with multiple extruders."
  3856. msgstr "Параметры, используемые для печати несколькими экструдерами."
  3857. #: fdmprinter.def.json
  3858. msgctxt "prime_tower_enable label"
  3859. msgid "Enable Prime Tower"
  3860. msgstr "Разрешить черновую башню"
  3861. #: fdmprinter.def.json
  3862. msgctxt "prime_tower_enable description"
  3863. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3864. msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера."
  3865. #: fdmprinter.def.json
  3866. msgctxt "prime_tower_size label"
  3867. msgid "Prime Tower Size"
  3868. msgstr "Размер черновой башни"
  3869. #: fdmprinter.def.json
  3870. msgctxt "prime_tower_size description"
  3871. msgid "The width of the prime tower."
  3872. msgstr "Ширина черновой башни."
  3873. #: fdmprinter.def.json
  3874. msgctxt "prime_tower_min_volume label"
  3875. msgid "Prime Tower Minimum Volume"
  3876. msgstr "Минимальный объём черновой башни"
  3877. #: fdmprinter.def.json
  3878. msgctxt "prime_tower_min_volume description"
  3879. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3880. msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить."
  3881. #: fdmprinter.def.json
  3882. msgctxt "prime_tower_position_x label"
  3883. msgid "Prime Tower X Position"
  3884. msgstr "X позиция черновой башни"
  3885. #: fdmprinter.def.json
  3886. msgctxt "prime_tower_position_x description"
  3887. msgid "The x coordinate of the position of the prime tower."
  3888. msgstr "X координата позиции черновой башни."
  3889. #: fdmprinter.def.json
  3890. msgctxt "prime_tower_position_y label"
  3891. msgid "Prime Tower Y Position"
  3892. msgstr "Y позиция черновой башни"
  3893. #: fdmprinter.def.json
  3894. msgctxt "prime_tower_position_y description"
  3895. msgid "The y coordinate of the position of the prime tower."
  3896. msgstr "Y координата позиции черновой башни."
  3897. #: fdmprinter.def.json
  3898. msgctxt "prime_tower_wipe_enabled label"
  3899. msgid "Wipe Inactive Nozzle on Prime Tower"
  3900. msgstr "Очистка неактивного сопла на черновой башне"
  3901. #: fdmprinter.def.json
  3902. msgctxt "prime_tower_wipe_enabled description"
  3903. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3904. msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню."
  3905. #: fdmprinter.def.json
  3906. msgctxt "prime_tower_brim_enable label"
  3907. msgid "Prime Tower Brim"
  3908. msgstr "Кайма черновой башни"
  3909. #: fdmprinter.def.json
  3910. msgctxt "prime_tower_brim_enable description"
  3911. msgid "Prime-towers might need the extra adhesion afforded by a brim even if the model doesn't. Presently can't be used with the 'Raft' adhesion-type."
  3912. msgstr "Для черновых башен может потребоваться дополнительная адгезия с помощью каймы, даже если для модели это не требуется. В данный момент не может использоваться с типом адгезии с подложкой."
  3913. #: fdmprinter.def.json
  3914. msgctxt "ooze_shield_enabled label"
  3915. msgid "Enable Ooze Shield"
  3916. msgstr "Печатать защиту от капель"
  3917. #: fdmprinter.def.json
  3918. msgctxt "ooze_shield_enabled description"
  3919. msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle."
  3920. msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло."
  3921. #: fdmprinter.def.json
  3922. msgctxt "ooze_shield_angle label"
  3923. msgid "Ooze Shield Angle"
  3924. msgstr "Угол защиты от капель"
  3925. #: fdmprinter.def.json
  3926. msgctxt "ooze_shield_angle description"
  3927. msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material."
  3928. msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала."
  3929. #: fdmprinter.def.json
  3930. msgctxt "ooze_shield_dist label"
  3931. msgid "Ooze Shield Distance"
  3932. msgstr "Дистанция до защиты от капель"
  3933. #: fdmprinter.def.json
  3934. msgctxt "ooze_shield_dist description"
  3935. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3936. msgstr "Дистанция до стенки защиты от модели, по осям X/Y."
  3937. #: fdmprinter.def.json
  3938. msgctxt "switch_extruder_retraction_amount label"
  3939. msgid "Nozzle Switch Retraction Distance"
  3940. msgstr "Величина отката при смене экструдера"
  3941. #: fdmprinter.def.json
  3942. msgctxt "switch_extruder_retraction_amount description"
  3943. msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  3944. msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева."
  3945. #: fdmprinter.def.json
  3946. msgctxt "switch_extruder_retraction_speeds label"
  3947. msgid "Nozzle Switch Retraction Speed"
  3948. msgstr "Скорость отката при смене экструдера"
  3949. #: fdmprinter.def.json
  3950. msgctxt "switch_extruder_retraction_speeds description"
  3951. msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding."
  3952. msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал."
  3953. #: fdmprinter.def.json
  3954. msgctxt "switch_extruder_retraction_speed label"
  3955. msgid "Nozzle Switch Retract Speed"
  3956. msgstr "Скорость отката при смене экструдера"
  3957. #: fdmprinter.def.json
  3958. msgctxt "switch_extruder_retraction_speed description"
  3959. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  3960. msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера."
  3961. #: fdmprinter.def.json
  3962. msgctxt "switch_extruder_prime_speed label"
  3963. msgid "Nozzle Switch Prime Speed"
  3964. msgstr "Скорость наполнения при смене экструдера"
  3965. #: fdmprinter.def.json
  3966. msgctxt "switch_extruder_prime_speed description"
  3967. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  3968. msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера."
  3969. #: fdmprinter.def.json
  3970. msgctxt "switch_extruder_extra_prime_amount label"
  3971. msgid "Nozzle Switch Extra Prime Amount"
  3972. msgstr "Дополнительно заполняемый объем при смене экструдера"
  3973. #: fdmprinter.def.json
  3974. msgctxt "switch_extruder_extra_prime_amount description"
  3975. msgid "Extra material to prime after nozzle switching."
  3976. msgstr "Дополнительный объем материала для заполнения после смены экструдера."
  3977. #: fdmprinter.def.json
  3978. msgctxt "meshfix label"
  3979. msgid "Mesh Fixes"
  3980. msgstr "Ремонт объектов"
  3981. #: fdmprinter.def.json
  3982. msgctxt "meshfix description"
  3983. msgid "Make the meshes more suited for 3D printing."
  3984. msgstr "Сделайте объекты более подходящими для 3D-печати."
  3985. #: fdmprinter.def.json
  3986. msgctxt "meshfix_union_all label"
  3987. msgid "Union Overlapping Volumes"
  3988. msgstr "Объединение перекрывающихся объёмов"
  3989. #: fdmprinter.def.json
  3990. msgctxt "meshfix_union_all description"
  3991. msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear."
  3992. msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей."
  3993. #: fdmprinter.def.json
  3994. msgctxt "meshfix_union_all_remove_holes label"
  3995. msgid "Remove All Holes"
  3996. msgstr "Удаляет все отверстия"
  3997. #: fdmprinter.def.json
  3998. msgctxt "meshfix_union_all_remove_holes description"
  3999. msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below."
  4000. msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу."
  4001. #: fdmprinter.def.json
  4002. msgctxt "meshfix_extensive_stitching label"
  4003. msgid "Extensive Stitching"
  4004. msgstr "Обширное сшивание"
  4005. #: fdmprinter.def.json
  4006. msgctxt "meshfix_extensive_stitching description"
  4007. msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time."
  4008. msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки."
  4009. #: fdmprinter.def.json
  4010. msgctxt "meshfix_keep_open_polygons label"
  4011. msgid "Keep Disconnected Faces"
  4012. msgstr "Сохранить отсоединённые поверхности"
  4013. #: fdmprinter.def.json
  4014. msgctxt "meshfix_keep_open_polygons description"
  4015. msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code."
  4016. msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код."
  4017. #: fdmprinter.def.json
  4018. msgctxt "multiple_mesh_overlap label"
  4019. msgid "Merged Meshes Overlap"
  4020. msgstr "Перекрытие касающихся объектов"
  4021. #: fdmprinter.def.json
  4022. msgctxt "multiple_mesh_overlap description"
  4023. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  4024. msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче."
  4025. #: fdmprinter.def.json
  4026. msgctxt "carve_multiple_volumes label"
  4027. msgid "Remove Mesh Intersection"
  4028. msgstr "Удалить пересечения объектов"
  4029. #: fdmprinter.def.json
  4030. msgctxt "carve_multiple_volumes description"
  4031. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  4032. msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом."
  4033. #: fdmprinter.def.json
  4034. msgctxt "alternate_carve_order label"
  4035. msgid "Alternate Mesh Removal"
  4036. msgstr "Чередование объектов"
  4037. #: fdmprinter.def.json
  4038. msgctxt "alternate_carve_order description"
  4039. msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes."
  4040. msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов."
  4041. #: fdmprinter.def.json
  4042. msgctxt "remove_empty_first_layers label"
  4043. msgid "Remove Empty First Layers"
  4044. msgstr "Удалить первые пустые слои"
  4045. #: fdmprinter.def.json
  4046. msgctxt "remove_empty_first_layers description"
  4047. msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle."
  4048. msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»."
  4049. #: fdmprinter.def.json
  4050. msgctxt "meshfix_maximum_resolution label"
  4051. msgid "Maximum Resolution"
  4052. msgstr "Максимальное разрешение"
  4053. #: fdmprinter.def.json
  4054. msgctxt "meshfix_maximum_resolution description"
  4055. msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway."
  4056. msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать."
  4057. #: fdmprinter.def.json
  4058. msgctxt "meshfix_maximum_travel_resolution label"
  4059. msgid "Maximum Travel Resolution"
  4060. msgstr "Максимальное разрешение перемещения"
  4061. #: fdmprinter.def.json
  4062. msgctxt "meshfix_maximum_travel_resolution description"
  4063. msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate."
  4064. msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей."
  4065. #: fdmprinter.def.json
  4066. msgctxt "meshfix_maximum_deviation label"
  4067. msgid "Maximum Deviation"
  4068. msgstr "Максимальное отклонение"
  4069. #: fdmprinter.def.json
  4070. msgctxt "meshfix_maximum_deviation description"
  4071. msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true."
  4072. msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение."
  4073. #: fdmprinter.def.json
  4074. msgctxt "blackmagic label"
  4075. msgid "Special Modes"
  4076. msgstr "Специальные режимы"
  4077. #: fdmprinter.def.json
  4078. msgctxt "blackmagic description"
  4079. msgid "Non-traditional ways to print your models."
  4080. msgstr "Нетрадиционные способы печати моделей."
  4081. #: fdmprinter.def.json
  4082. msgctxt "print_sequence label"
  4083. msgid "Print Sequence"
  4084. msgstr "Последовательная печать"
  4085. #: fdmprinter.def.json
  4086. msgctxt "print_sequence description"
  4087. msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  4088. msgstr "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y."
  4089. #: fdmprinter.def.json
  4090. msgctxt "print_sequence option all_at_once"
  4091. msgid "All at Once"
  4092. msgstr "Все за раз"
  4093. #: fdmprinter.def.json
  4094. msgctxt "print_sequence option one_at_a_time"
  4095. msgid "One at a Time"
  4096. msgstr "По отдельности"
  4097. #: fdmprinter.def.json
  4098. msgctxt "infill_mesh label"
  4099. msgid "Infill Mesh"
  4100. msgstr "Заполнение объекта"
  4101. #: fdmprinter.def.json
  4102. msgctxt "infill_mesh description"
  4103. msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh."
  4104. msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек."
  4105. #: fdmprinter.def.json
  4106. msgctxt "infill_mesh_order label"
  4107. msgid "Mesh Processing Rank"
  4108. msgstr "Порядок обработки объекта"
  4109. #: fdmprinter.def.json
  4110. msgctxt "infill_mesh_order description"
  4111. msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes."
  4112. msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов."
  4113. #: fdmprinter.def.json
  4114. msgctxt "cutting_mesh label"
  4115. msgid "Cutting Mesh"
  4116. msgstr "Ограничивающий объект"
  4117. #: fdmprinter.def.json
  4118. msgctxt "cutting_mesh description"
  4119. msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder."
  4120. msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер."
  4121. #: fdmprinter.def.json
  4122. msgctxt "mold_enabled label"
  4123. msgid "Mold"
  4124. msgstr "Форма"
  4125. #: fdmprinter.def.json
  4126. msgctxt "mold_enabled description"
  4127. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  4128. msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели."
  4129. #: fdmprinter.def.json
  4130. msgctxt "mold_width label"
  4131. msgid "Minimal Mold Width"
  4132. msgstr "Минимальная ширина формы"
  4133. #: fdmprinter.def.json
  4134. msgctxt "mold_width description"
  4135. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  4136. msgstr "Минимальное расстояние между внешними сторонами формы и модели."
  4137. #: fdmprinter.def.json
  4138. msgctxt "mold_roof_height label"
  4139. msgid "Mold Roof Height"
  4140. msgstr "Высота крыши формы"
  4141. #: fdmprinter.def.json
  4142. msgctxt "mold_roof_height description"
  4143. msgid "The height above horizontal parts in your model which to print mold."
  4144. msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма."
  4145. #: fdmprinter.def.json
  4146. msgctxt "mold_angle label"
  4147. msgid "Mold Angle"
  4148. msgstr "Угол формы"
  4149. #: fdmprinter.def.json
  4150. msgctxt "mold_angle description"
  4151. msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model."
  4152. msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели."
  4153. #: fdmprinter.def.json
  4154. msgctxt "support_mesh label"
  4155. msgid "Support Mesh"
  4156. msgstr "Поддерживающий объект"
  4157. #: fdmprinter.def.json
  4158. msgctxt "support_mesh description"
  4159. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  4160. msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек."
  4161. #: fdmprinter.def.json
  4162. msgctxt "anti_overhang_mesh label"
  4163. msgid "Anti Overhang Mesh"
  4164. msgstr "Блокиратор поддержек"
  4165. #: fdmprinter.def.json
  4166. msgctxt "anti_overhang_mesh description"
  4167. msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure."
  4168. msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки."
  4169. #: fdmprinter.def.json
  4170. msgctxt "magic_mesh_surface_mode label"
  4171. msgid "Surface Mode"
  4172. msgstr "Поверхностный режим"
  4173. #: fdmprinter.def.json
  4174. msgctxt "magic_mesh_surface_mode description"
  4175. msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces."
  4176. msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности."
  4177. #: fdmprinter.def.json
  4178. msgctxt "magic_mesh_surface_mode option normal"
  4179. msgid "Normal"
  4180. msgstr "Нормаль"
  4181. #: fdmprinter.def.json
  4182. msgctxt "magic_mesh_surface_mode option surface"
  4183. msgid "Surface"
  4184. msgstr "Поверхность"
  4185. #: fdmprinter.def.json
  4186. msgctxt "magic_mesh_surface_mode option both"
  4187. msgid "Both"
  4188. msgstr "Оба варианта"
  4189. #: fdmprinter.def.json
  4190. msgctxt "magic_spiralize label"
  4191. msgid "Spiralize Outer Contour"
  4192. msgstr "Спирально печатать внешний контур"
  4193. #: fdmprinter.def.json
  4194. msgctxt "magic_spiralize description"
  4195. msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part."
  4196. msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели."
  4197. #: fdmprinter.def.json
  4198. msgctxt "smooth_spiralized_contours label"
  4199. msgid "Smooth Spiralized Contours"
  4200. msgstr "Сглаживать спиральные контуры"
  4201. #: fdmprinter.def.json
  4202. msgctxt "smooth_spiralized_contours description"
  4203. msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  4204. msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности."
  4205. #: fdmprinter.def.json
  4206. msgctxt "relative_extrusion label"
  4207. msgid "Relative Extrusion"
  4208. msgstr "Относительная экструзия"
  4209. #: fdmprinter.def.json
  4210. msgctxt "relative_extrusion description"
  4211. msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output."
  4212. msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии."
  4213. #: fdmprinter.def.json
  4214. msgctxt "experimental label"
  4215. msgid "Experimental"
  4216. msgstr "Экспериментальное"
  4217. #: fdmprinter.def.json
  4218. msgctxt "experimental description"
  4219. msgid "Features that haven't completely been fleshed out yet."
  4220. msgstr "Функции, еще не раскрытые до конца."
  4221. #: fdmprinter.def.json
  4222. msgctxt "slicing_tolerance label"
  4223. msgid "Slicing Tolerance"
  4224. msgstr "Допуск слайсинга"
  4225. #: fdmprinter.def.json
  4226. msgctxt "slicing_tolerance description"
  4227. msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface."
  4228. msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности."
  4229. #: fdmprinter.def.json
  4230. msgctxt "slicing_tolerance option middle"
  4231. msgid "Middle"
  4232. msgstr "Середина"
  4233. #: fdmprinter.def.json
  4234. msgctxt "slicing_tolerance option exclusive"
  4235. msgid "Exclusive"
  4236. msgstr "Исключение"
  4237. #: fdmprinter.def.json
  4238. msgctxt "slicing_tolerance option inclusive"
  4239. msgid "Inclusive"
  4240. msgstr "Включение"
  4241. #: fdmprinter.def.json
  4242. msgctxt "roofing_line_width label"
  4243. msgid "Top Surface Skin Line Width"
  4244. msgstr "Ширина линии крышки"
  4245. #: fdmprinter.def.json
  4246. msgctxt "roofing_line_width description"
  4247. msgid "Width of a single line of the areas at the top of the print."
  4248. msgstr "Ширина одной линии крышки."
  4249. #: fdmprinter.def.json
  4250. msgctxt "roofing_pattern label"
  4251. msgid "Top Surface Skin Pattern"
  4252. msgstr "Шаблон верхней оболочки"
  4253. #: fdmprinter.def.json
  4254. msgctxt "roofing_pattern description"
  4255. msgid "The pattern of the top most layers."
  4256. msgstr "Шаблон, используемый для верхних слоёв оболочки."
  4257. #: fdmprinter.def.json
  4258. msgctxt "roofing_pattern option lines"
  4259. msgid "Lines"
  4260. msgstr "Линии"
  4261. #: fdmprinter.def.json
  4262. msgctxt "roofing_pattern option concentric"
  4263. msgid "Concentric"
  4264. msgstr "Концентрические"
  4265. #: fdmprinter.def.json
  4266. msgctxt "roofing_pattern option zigzag"
  4267. msgid "Zig Zag"
  4268. msgstr "Зигзаг"
  4269. #: fdmprinter.def.json
  4270. msgctxt "roofing_monotonic label"
  4271. msgid "Monotonic Top Surface Order"
  4272. msgstr "Монотонный порядок верхней оболочки"
  4273. #: fdmprinter.def.json
  4274. msgctxt "roofing_monotonic description"
  4275. msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent."
  4276. msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени,"
  4277. " но плоские поверхности выглядят более единообразными."
  4278. #: fdmprinter.def.json
  4279. msgctxt "roofing_angles label"
  4280. msgid "Top Surface Skin Line Directions"
  4281. msgstr "Направление линий верхней оболочки"
  4282. #: fdmprinter.def.json
  4283. msgctxt "roofing_angles description"
  4284. msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)."
  4285. msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)."
  4286. #: fdmprinter.def.json
  4287. msgctxt "infill_enable_travel_optimization label"
  4288. msgid "Infill Travel Optimization"
  4289. msgstr "Оптимизация перемещения заполнения"
  4290. #: fdmprinter.def.json
  4291. msgctxt "infill_enable_travel_optimization description"
  4292. msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased."
  4293. msgstr "Если включено, заказ, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти."
  4294. #: fdmprinter.def.json
  4295. msgctxt "material_flow_dependent_temperature label"
  4296. msgid "Auto Temperature"
  4297. msgstr "Автоматическая температура"
  4298. #: fdmprinter.def.json
  4299. msgctxt "material_flow_dependent_temperature description"
  4300. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  4301. msgstr "Изменять температуру каждого слоя автоматически в соответствии со средней скоростью потока на этом слое."
  4302. #: fdmprinter.def.json
  4303. msgctxt "material_flow_temp_graph label"
  4304. msgid "Flow Temperature Graph"
  4305. msgstr "График температуры потока"
  4306. #: fdmprinter.def.json
  4307. msgctxt "material_flow_temp_graph description"
  4308. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  4309. msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)."
  4310. #: fdmprinter.def.json
  4311. msgctxt "minimum_polygon_circumference label"
  4312. msgid "Minimum Polygon Circumference"
  4313. msgstr "Минимальная длина окружности полигона"
  4314. #: fdmprinter.def.json
  4315. msgctxt "minimum_polygon_circumference description"
  4316. msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details."
  4317. msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей."
  4318. #: fdmprinter.def.json
  4319. msgctxt "support_skip_some_zags label"
  4320. msgid "Break Up Support In Chunks"
  4321. msgstr "Разбить поддержки на части"
  4322. #: fdmprinter.def.json
  4323. msgctxt "support_skip_some_zags description"
  4324. msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern."
  4325. msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения."
  4326. #: fdmprinter.def.json
  4327. msgctxt "support_skip_zag_per_mm label"
  4328. msgid "Support Chunk Size"
  4329. msgstr "Размер части поддержек"
  4330. #: fdmprinter.def.json
  4331. msgctxt "support_skip_zag_per_mm description"
  4332. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  4333. msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек."
  4334. #: fdmprinter.def.json
  4335. msgctxt "support_zag_skip_count label"
  4336. msgid "Support Chunk Line Count"
  4337. msgstr "Количество частей линий поддержки"
  4338. #: fdmprinter.def.json
  4339. msgctxt "support_zag_skip_count description"
  4340. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  4341. msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек."
  4342. #: fdmprinter.def.json
  4343. msgctxt "draft_shield_enabled label"
  4344. msgid "Enable Draft Shield"
  4345. msgstr "Разрешить печать кожуха"
  4346. #: fdmprinter.def.json
  4347. msgctxt "draft_shield_enabled description"
  4348. msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily."
  4349. msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются."
  4350. #: fdmprinter.def.json
  4351. msgctxt "draft_shield_dist label"
  4352. msgid "Draft Shield X/Y Distance"
  4353. msgstr "Дистанция X/Y до кожуха"
  4354. #: fdmprinter.def.json
  4355. msgctxt "draft_shield_dist description"
  4356. msgid "Distance of the draft shield from the print, in the X/Y directions."
  4357. msgstr "Дистанция до стенки кожуха от модели, по осям X/Y."
  4358. #: fdmprinter.def.json
  4359. msgctxt "draft_shield_height_limitation label"
  4360. msgid "Draft Shield Limitation"
  4361. msgstr "Ограничение кожуха"
  4362. #: fdmprinter.def.json
  4363. msgctxt "draft_shield_height_limitation description"
  4364. msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height."
  4365. msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту."
  4366. #: fdmprinter.def.json
  4367. msgctxt "draft_shield_height_limitation option full"
  4368. msgid "Full"
  4369. msgstr "Полная"
  4370. #: fdmprinter.def.json
  4371. msgctxt "draft_shield_height_limitation option limited"
  4372. msgid "Limited"
  4373. msgstr "Ограниченная"
  4374. #: fdmprinter.def.json
  4375. msgctxt "draft_shield_height label"
  4376. msgid "Draft Shield Height"
  4377. msgstr "Высота кожуха"
  4378. #: fdmprinter.def.json
  4379. msgctxt "draft_shield_height description"
  4380. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  4381. msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет."
  4382. #: fdmprinter.def.json
  4383. msgctxt "conical_overhang_enabled label"
  4384. msgid "Make Overhang Printable"
  4385. msgstr "Сделать нависания печатаемыми"
  4386. #: fdmprinter.def.json
  4387. msgctxt "conical_overhang_enabled description"
  4388. msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical."
  4389. msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными."
  4390. #: fdmprinter.def.json
  4391. msgctxt "conical_overhang_angle label"
  4392. msgid "Maximum Model Angle"
  4393. msgstr "Максимальный угол модели"
  4394. #: fdmprinter.def.json
  4395. msgctxt "conical_overhang_angle description"
  4396. msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way."
  4397. msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений."
  4398. #: fdmprinter.def.json
  4399. msgctxt "conical_overhang_hole_size label"
  4400. msgid "Maximum Overhang Hole Area"
  4401. msgstr "Максимальная площадь отверстия выступа"
  4402. #: fdmprinter.def.json
  4403. msgctxt "conical_overhang_hole_size description"
  4404. msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base."
  4405. msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели."
  4406. #: fdmprinter.def.json
  4407. msgctxt "coasting_enable label"
  4408. msgid "Enable Coasting"
  4409. msgstr "Разрешить накат"
  4410. #: fdmprinter.def.json
  4411. msgctxt "coasting_enable description"
  4412. msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing."
  4413. msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность."
  4414. #: fdmprinter.def.json
  4415. msgctxt "coasting_volume label"
  4416. msgid "Coasting Volume"
  4417. msgstr "Объём наката"
  4418. #: fdmprinter.def.json
  4419. msgctxt "coasting_volume description"
  4420. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  4421. msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла."
  4422. #: fdmprinter.def.json
  4423. msgctxt "coasting_min_volume label"
  4424. msgid "Minimum Volume Before Coasting"
  4425. msgstr "Минимальный объём перед накатом"
  4426. #: fdmprinter.def.json
  4427. msgctxt "coasting_min_volume description"
  4428. msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume."
  4429. msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"."
  4430. #: fdmprinter.def.json
  4431. msgctxt "coasting_speed label"
  4432. msgid "Coasting Speed"
  4433. msgstr "Скорость наката"
  4434. #: fdmprinter.def.json
  4435. msgctxt "coasting_speed description"
  4436. msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops."
  4437. msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается."
  4438. #: fdmprinter.def.json
  4439. msgctxt "cross_infill_pocket_size label"
  4440. msgid "Cross 3D Pocket Size"
  4441. msgstr "Размер карманов креста 3D"
  4442. #: fdmprinter.def.json
  4443. msgctxt "cross_infill_pocket_size description"
  4444. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  4445. msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя."
  4446. #: fdmprinter.def.json
  4447. msgctxt "cross_infill_density_image label"
  4448. msgid "Cross Infill Density Image"
  4449. msgstr "Изображение плотности перекрестного заполнения"
  4450. #: fdmprinter.def.json
  4451. msgctxt "cross_infill_density_image description"
  4452. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print."
  4453. msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати."
  4454. #: fdmprinter.def.json
  4455. msgctxt "cross_support_density_image label"
  4456. msgid "Cross Fill Density Image for Support"
  4457. msgstr "Изображение плотности перекрестного заполнения для поддержки"
  4458. #: fdmprinter.def.json
  4459. msgctxt "cross_support_density_image description"
  4460. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  4461. msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки."
  4462. #: fdmprinter.def.json
  4463. msgctxt "support_conical_enabled label"
  4464. msgid "Enable Conical Support"
  4465. msgstr "Конические поддержки"
  4466. #: fdmprinter.def.json
  4467. msgctxt "support_conical_enabled description"
  4468. msgid "Make support areas smaller at the bottom than at the overhang."
  4469. msgstr "Нижняя часть поддержек становится меньше, чем верхняя."
  4470. #: fdmprinter.def.json
  4471. msgctxt "support_conical_angle label"
  4472. msgid "Conical Support Angle"
  4473. msgstr "Угол конических поддержек"
  4474. #: fdmprinter.def.json
  4475. msgctxt "support_conical_angle description"
  4476. msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top."
  4477. msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью."
  4478. #: fdmprinter.def.json
  4479. msgctxt "support_conical_min_width label"
  4480. msgid "Conical Support Minimum Width"
  4481. msgstr "Минимальная ширина конических поддержек"
  4482. #: fdmprinter.def.json
  4483. msgctxt "support_conical_min_width description"
  4484. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  4485. msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной."
  4486. #: fdmprinter.def.json
  4487. msgctxt "magic_fuzzy_skin_enabled label"
  4488. msgid "Fuzzy Skin"
  4489. msgstr "Нечёткая оболочка"
  4490. #: fdmprinter.def.json
  4491. msgctxt "magic_fuzzy_skin_enabled description"
  4492. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  4493. msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид."
  4494. #: fdmprinter.def.json
  4495. msgctxt "magic_fuzzy_skin_outside_only label"
  4496. msgid "Fuzzy Skin Outside Only"
  4497. msgstr "Только шершавая оболочка снаружи"
  4498. #: fdmprinter.def.json
  4499. msgctxt "magic_fuzzy_skin_outside_only description"
  4500. msgid "Jitter only the parts' outlines and not the parts' holes."
  4501. msgstr "Дрожание только контуров деталей, но не отверстий."
  4502. #: fdmprinter.def.json
  4503. msgctxt "magic_fuzzy_skin_thickness label"
  4504. msgid "Fuzzy Skin Thickness"
  4505. msgstr "Толщина шершавости оболочки"
  4506. #: fdmprinter.def.json
  4507. msgctxt "magic_fuzzy_skin_thickness description"
  4508. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  4509. msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются."
  4510. #: fdmprinter.def.json
  4511. msgctxt "magic_fuzzy_skin_point_density label"
  4512. msgid "Fuzzy Skin Density"
  4513. msgstr "Плотность шершавой оболочки"
  4514. #: fdmprinter.def.json
  4515. msgctxt "magic_fuzzy_skin_point_density description"
  4516. msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution."
  4517. msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения."
  4518. #: fdmprinter.def.json
  4519. msgctxt "magic_fuzzy_skin_point_dist label"
  4520. msgid "Fuzzy Skin Point Distance"
  4521. msgstr "Дистанция между точками шершавой оболочки"
  4522. #: fdmprinter.def.json
  4523. msgctxt "magic_fuzzy_skin_point_dist description"
  4524. msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness."
  4525. msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки."
  4526. #: fdmprinter.def.json
  4527. msgctxt "flow_rate_max_extrusion_offset label"
  4528. msgid "Flow Rate Compensation Max Extrusion Offset"
  4529. msgstr "Макс. смещение экструзии для компенсации расхода"
  4530. #: fdmprinter.def.json
  4531. msgctxt "flow_rate_max_extrusion_offset description"
  4532. msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate."
  4533. msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода."
  4534. #: fdmprinter.def.json
  4535. msgctxt "flow_rate_extrusion_offset_factor label"
  4536. msgid "Flow Rate Compensation Factor"
  4537. msgstr "Коэффициент компенсации расхода"
  4538. #: fdmprinter.def.json
  4539. msgctxt "flow_rate_extrusion_offset_factor description"
  4540. msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion."
  4541. msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии."
  4542. #: fdmprinter.def.json
  4543. msgctxt "wireframe_enabled label"
  4544. msgid "Wire Printing"
  4545. msgstr "Каркасная печать (КП)"
  4546. #: fdmprinter.def.json
  4547. msgctxt "wireframe_enabled description"
  4548. msgid "Print only the outside surface with a sparse webbed structure, printing 'in thin air'. This is realized by horizontally printing the contours of the model at given Z intervals which are connected via upward and diagonally downward lines."
  4549. msgstr "Печатать только внешнюю поверхность с редкой перепончатой структурой, печатаемой \"прямо в воздухе\". Это реализуется горизонтальной печатью контуров модели с заданными Z интервалами, которые соединяются диагональными линиями."
  4550. #: fdmprinter.def.json
  4551. msgctxt "wireframe_height label"
  4552. msgid "WP Connection Height"
  4553. msgstr "Высота соединений (КП)"
  4554. #: fdmprinter.def.json
  4555. msgctxt "wireframe_height description"
  4556. msgid "The height of the upward and diagonally downward lines between two horizontal parts. This determines the overall density of the net structure. Only applies to Wire Printing."
  4557. msgstr "Высота диагональных линий между двумя горизонтальными частями. Она определяет общую плотность сетевой структуры. Применяется только при каркасной печати."
  4558. #: fdmprinter.def.json
  4559. msgctxt "wireframe_roof_inset label"
  4560. msgid "WP Roof Inset Distance"
  4561. msgstr "Расстояние крыши внутрь (КП)"
  4562. #: fdmprinter.def.json
  4563. msgctxt "wireframe_roof_inset description"
  4564. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4565. msgstr "Покрываемое расстояние при создании соединения от внешней части крыши внутрь. Применяется только при каркасной печати."
  4566. #: fdmprinter.def.json
  4567. msgctxt "wireframe_printspeed label"
  4568. msgid "WP Speed"
  4569. msgstr "Скорость каркасной печати"
  4570. #: fdmprinter.def.json
  4571. msgctxt "wireframe_printspeed description"
  4572. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4573. msgstr "Скорость с которой двигается сопло, выдавая материал. Применяется только при каркасной печати."
  4574. #: fdmprinter.def.json
  4575. msgctxt "wireframe_printspeed_bottom label"
  4576. msgid "WP Bottom Printing Speed"
  4577. msgstr "Скорость печати низа (КП)"
  4578. #: fdmprinter.def.json
  4579. msgctxt "wireframe_printspeed_bottom description"
  4580. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4581. msgstr "Скорость, с которой печатается первый слой, касающийся стола. Применяется только при каркасной печати."
  4582. #: fdmprinter.def.json
  4583. msgctxt "wireframe_printspeed_up label"
  4584. msgid "WP Upward Printing Speed"
  4585. msgstr "Скорость печати вверх (КП)"
  4586. #: fdmprinter.def.json
  4587. msgctxt "wireframe_printspeed_up description"
  4588. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4589. msgstr "Скорость печати линии вверх \"в разрежённом воздухе\". Применяется только при каркасной печати."
  4590. #: fdmprinter.def.json
  4591. msgctxt "wireframe_printspeed_down label"
  4592. msgid "WP Downward Printing Speed"
  4593. msgstr "Скорость печати вниз (КП)"
  4594. #: fdmprinter.def.json
  4595. msgctxt "wireframe_printspeed_down description"
  4596. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4597. msgstr "Скорость печати линии диагонально вниз. Применяется только при каркасной печати."
  4598. #: fdmprinter.def.json
  4599. msgctxt "wireframe_printspeed_flat label"
  4600. msgid "WP Horizontal Printing Speed"
  4601. msgstr "Скорость горизонтальной печати (КП)"
  4602. #: fdmprinter.def.json
  4603. msgctxt "wireframe_printspeed_flat description"
  4604. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4605. msgstr "Скорость, с которой печатаются горизонтальные контуры модели. Применяется только при нитевой печати."
  4606. #: fdmprinter.def.json
  4607. msgctxt "wireframe_flow label"
  4608. msgid "WP Flow"
  4609. msgstr "Поток каркасной печати"
  4610. #: fdmprinter.def.json
  4611. msgctxt "wireframe_flow description"
  4612. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4613. msgstr "Компенсация потока: объём выдавленного материала умножается на это значение. Применяется только при каркасной печати."
  4614. #: fdmprinter.def.json
  4615. msgctxt "wireframe_flow_connection label"
  4616. msgid "WP Connection Flow"
  4617. msgstr "Поток соединений (КП)"
  4618. #: fdmprinter.def.json
  4619. msgctxt "wireframe_flow_connection description"
  4620. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4621. msgstr "Компенсация потока при движении вверх и вниз. Применяется только при каркасной печати."
  4622. #: fdmprinter.def.json
  4623. msgctxt "wireframe_flow_flat label"
  4624. msgid "WP Flat Flow"
  4625. msgstr "Поток горизонтальных линий (КП)"
  4626. #: fdmprinter.def.json
  4627. msgctxt "wireframe_flow_flat description"
  4628. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4629. msgstr "Компенсация потока при печати плоских линий. Применяется только при каркасной печати."
  4630. #: fdmprinter.def.json
  4631. msgctxt "wireframe_top_delay label"
  4632. msgid "WP Top Delay"
  4633. msgstr "Верхняя задержка (КП)"
  4634. #: fdmprinter.def.json
  4635. msgctxt "wireframe_top_delay description"
  4636. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4637. msgstr "Задержка после движения вверх, чтобы такие линии были твёрже. Применяется только при каркасной печати."
  4638. #: fdmprinter.def.json
  4639. msgctxt "wireframe_bottom_delay label"
  4640. msgid "WP Bottom Delay"
  4641. msgstr "Нижняя задержка (КП)"
  4642. #: fdmprinter.def.json
  4643. msgctxt "wireframe_bottom_delay description"
  4644. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4645. msgstr "Задержка после движения вниз. Применяется только при каркасной печати."
  4646. #: fdmprinter.def.json
  4647. msgctxt "wireframe_flat_delay label"
  4648. msgid "WP Flat Delay"
  4649. msgstr "Горизонтальная задержка (КП)"
  4650. #: fdmprinter.def.json
  4651. msgctxt "wireframe_flat_delay description"
  4652. msgid "Delay time between two horizontal segments. Introducing such a delay can cause better adhesion to previous layers at the connection points, while too long delays cause sagging. Only applies to Wire Printing."
  4653. msgstr "Задержка между двумя горизонтальными сегментами. Внесение такой задержки может улучшить прилипание к предыдущим слоям в местах соединений, в то время как более длинные задержки могут вызывать провисания. Применяется только при нитевой печати."
  4654. #: fdmprinter.def.json
  4655. msgctxt "wireframe_up_half_speed label"
  4656. msgid "WP Ease Upward"
  4657. msgstr "Ослабление вверх (КП)"
  4658. #: fdmprinter.def.json
  4659. msgctxt "wireframe_up_half_speed description"
  4660. msgid ""
  4661. "Distance of an upward move which is extruded with half speed.\n"
  4662. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4663. msgstr ""
  4664. "Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\n"
  4665. "Это может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при каркасной печати."
  4666. #: fdmprinter.def.json
  4667. msgctxt "wireframe_top_jump label"
  4668. msgid "WP Knot Size"
  4669. msgstr "Размер узла (КП)"
  4670. #: fdmprinter.def.json
  4671. msgctxt "wireframe_top_jump description"
  4672. msgid "Creates a small knot at the top of an upward line, so that the consecutive horizontal layer has a better chance to connect to it. Only applies to Wire Printing."
  4673. msgstr "Создаёт небольшой узел наверху возвышающейся линии так, чтобы последующий горизонтальный слой имел больший шанс к присоединению. Применяется только при каркасной печати."
  4674. #: fdmprinter.def.json
  4675. msgctxt "wireframe_fall_down label"
  4676. msgid "WP Fall Down"
  4677. msgstr "Падение (КП)"
  4678. #: fdmprinter.def.json
  4679. msgctxt "wireframe_fall_down description"
  4680. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4681. msgstr "Расстояние, с которого материал падает вниз после восходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати."
  4682. #: fdmprinter.def.json
  4683. msgctxt "wireframe_drag_along label"
  4684. msgid "WP Drag Along"
  4685. msgstr "Протягивание (КП)"
  4686. #: fdmprinter.def.json
  4687. msgctxt "wireframe_drag_along description"
  4688. msgid "Distance with which the material of an upward extrusion is dragged along with the diagonally downward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4689. msgstr "Расстояние, на которое материал от восходящего выдавливания тянется во время нисходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати."
  4690. #: fdmprinter.def.json
  4691. msgctxt "wireframe_strategy label"
  4692. msgid "WP Strategy"
  4693. msgstr "Стратегия (КП)"
  4694. #: fdmprinter.def.json
  4695. msgctxt "wireframe_strategy description"
  4696. msgid "Strategy for making sure two consecutive layers connect at each connection point. Retraction lets the upward lines harden in the right position, but may cause filament grinding. A knot can be made at the end of an upward line to heighten the chance of connecting to it and to let the line cool; however, it may require slow printing speeds. Another strategy is to compensate for the sagging of the top of an upward line; however, the lines won't always fall down as predicted."
  4697. msgstr "Стратегия проверки соединения двух соседних слоёв в соответствующих точках. Откат укрепляет восходящие линии в нужных местах, но может привести к истиранию нити материала. Узел может быть сделан в конце восходящей линии для повышения шанса соединения с ним и позволить линии охладиться; однако, это может потребовать пониженных скоростей печати. Другая стратегия состоит в том, чтобы компенсировать провисание вершины восходящей линии; однако, строки будут не всегда падать, как предсказано."
  4698. #: fdmprinter.def.json
  4699. msgctxt "wireframe_strategy option compensate"
  4700. msgid "Compensate"
  4701. msgstr "Компенсация"
  4702. #: fdmprinter.def.json
  4703. msgctxt "wireframe_strategy option knot"
  4704. msgid "Knot"
  4705. msgstr "Узел"
  4706. #: fdmprinter.def.json
  4707. msgctxt "wireframe_strategy option retract"
  4708. msgid "Retract"
  4709. msgstr "Откат"
  4710. #: fdmprinter.def.json
  4711. msgctxt "wireframe_straight_before_down label"
  4712. msgid "WP Straighten Downward Lines"
  4713. msgstr "Прямые нисходящие линии (КП)"
  4714. #: fdmprinter.def.json
  4715. msgctxt "wireframe_straight_before_down description"
  4716. msgid "Percentage of a diagonally downward line which is covered by a horizontal line piece. This can prevent sagging of the top most point of upward lines. Only applies to Wire Printing."
  4717. msgstr "Процент диагонально нисходящей линии, которая покрывается куском горизонтальной линии. Это может предотвратить провисание самых верхних точек восходящих линий. Применяется только при каркасной печати."
  4718. #: fdmprinter.def.json
  4719. msgctxt "wireframe_roof_fall_down label"
  4720. msgid "WP Roof Fall Down"
  4721. msgstr "Опадание крыши (КП)"
  4722. #: fdmprinter.def.json
  4723. msgctxt "wireframe_roof_fall_down description"
  4724. msgid "The distance which horizontal roof lines printed 'in thin air' fall down when being printed. This distance is compensated for. Only applies to Wire Printing."
  4725. msgstr "Расстояние, на котором линии горизонтальной крыши печатаемые \"в воздухе\" падают вниз при печати. Это расстояние скомпенсировано. Применяется только при каркасной печати."
  4726. #: fdmprinter.def.json
  4727. msgctxt "wireframe_roof_drag_along label"
  4728. msgid "WP Roof Drag Along"
  4729. msgstr "Протягивание крыши (КП)"
  4730. #: fdmprinter.def.json
  4731. msgctxt "wireframe_roof_drag_along description"
  4732. msgid "The distance of the end piece of an inward line which gets dragged along when going back to the outer outline of the roof. This distance is compensated for. Only applies to Wire Printing."
  4733. msgstr "Расстояние финальной части восходящей линии, которая протягивается при возвращении к внешнему контуру крыши. Это расстояние скомпенсировано. Применяется только при каркасной печати."
  4734. #: fdmprinter.def.json
  4735. msgctxt "wireframe_roof_outer_delay label"
  4736. msgid "WP Roof Outer Delay"
  4737. msgstr "Задержка внешней крыши (КП)"
  4738. #: fdmprinter.def.json
  4739. msgctxt "wireframe_roof_outer_delay description"
  4740. msgid "Time spent at the outer perimeters of hole which is to become a roof. Longer times can ensure a better connection. Only applies to Wire Printing."
  4741. msgstr "Время, потраченное на внешних периметрах отверстия, которое станет крышей. Увеличенное время может придать прочности. Применяется только при каркасной печати."
  4742. #: fdmprinter.def.json
  4743. msgctxt "wireframe_nozzle_clearance label"
  4744. msgid "WP Nozzle Clearance"
  4745. msgstr "Зазор сопла (КП)"
  4746. #: fdmprinter.def.json
  4747. msgctxt "wireframe_nozzle_clearance description"
  4748. msgid "Distance between the nozzle and horizontally downward lines. Larger clearance results in diagonally downward lines with a less steep angle, which in turn results in less upward connections with the next layer. Only applies to Wire Printing."
  4749. msgstr "Зазор между соплом и горизонтально нисходящими линиями. Большее значение уменьшает угол нисхождения, что приводит уменьшению восходящих соединений на следующем слое. Применяется только при каркасной печати."
  4750. #: fdmprinter.def.json
  4751. msgctxt "adaptive_layer_height_enabled label"
  4752. msgid "Use Adaptive Layers"
  4753. msgstr "Использовать адаптивные слои"
  4754. #: fdmprinter.def.json
  4755. msgctxt "adaptive_layer_height_enabled description"
  4756. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4757. msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели."
  4758. #: fdmprinter.def.json
  4759. msgctxt "adaptive_layer_height_variation label"
  4760. msgid "Adaptive Layers Maximum Variation"
  4761. msgstr "Максимальная вариация адаптивных слоев"
  4762. #: fdmprinter.def.json
  4763. msgctxt "adaptive_layer_height_variation description"
  4764. msgid "The maximum allowed height different from the base layer height."
  4765. msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня."
  4766. #: fdmprinter.def.json
  4767. msgctxt "adaptive_layer_height_variation_step label"
  4768. msgid "Adaptive Layers Variation Step Size"
  4769. msgstr "Размер шага вариации адаптивных слоев"
  4770. #: fdmprinter.def.json
  4771. msgctxt "adaptive_layer_height_variation_step description"
  4772. msgid "The difference in height of the next layer height compared to the previous one."
  4773. msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя."
  4774. #: fdmprinter.def.json
  4775. msgctxt "adaptive_layer_height_threshold label"
  4776. msgid "Adaptive Layers Topography Size"
  4777. msgstr "Размер топографии адаптивных слоев"
  4778. #: fdmprinter.def.json
  4779. msgctxt "adaptive_layer_height_threshold description"
  4780. msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together."
  4781. msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу."
  4782. #: fdmprinter.def.json
  4783. msgctxt "wall_overhang_angle label"
  4784. msgid "Overhanging Wall Angle"
  4785. msgstr "Угол нависающей стенки"
  4786. #: fdmprinter.def.json
  4787. msgctxt "wall_overhang_angle description"
  4788. msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either."
  4789. msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими."
  4790. #: fdmprinter.def.json
  4791. msgctxt "wall_overhang_speed_factor label"
  4792. msgid "Overhanging Wall Speed"
  4793. msgstr "Скорость печати нависающей стенки"
  4794. #: fdmprinter.def.json
  4795. msgctxt "wall_overhang_speed_factor description"
  4796. msgid "Overhanging walls will be printed at this percentage of their normal print speed."
  4797. msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати."
  4798. #: fdmprinter.def.json
  4799. msgctxt "bridge_settings_enabled label"
  4800. msgid "Enable Bridge Settings"
  4801. msgstr "Активация настроек мостиков"
  4802. #: fdmprinter.def.json
  4803. msgctxt "bridge_settings_enabled description"
  4804. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4805. msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков."
  4806. #: fdmprinter.def.json
  4807. msgctxt "bridge_wall_min_length label"
  4808. msgid "Minimum Bridge Wall Length"
  4809. msgstr "Минимальная длина стенки мостика"
  4810. #: fdmprinter.def.json
  4811. msgctxt "bridge_wall_min_length description"
  4812. msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings."
  4813. msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика."
  4814. #: fdmprinter.def.json
  4815. msgctxt "bridge_skin_support_threshold label"
  4816. msgid "Bridge Skin Support Threshold"
  4817. msgstr "Пороговое значение поддержки для оболочки мостика"
  4818. #: fdmprinter.def.json
  4819. msgctxt "bridge_skin_support_threshold description"
  4820. msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings."
  4821. msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки."
  4822. #: fdmprinter.def.json
  4823. msgctxt "bridge_sparse_infill_max_density label"
  4824. msgid "Bridge Sparse Infill Max Density"
  4825. msgstr "Максимальная плотность разреженного заполнения мостика"
  4826. #: fdmprinter.def.json
  4827. msgctxt "bridge_sparse_infill_max_density description"
  4828. msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin."
  4829. msgstr "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика."
  4830. #: fdmprinter.def.json
  4831. msgctxt "bridge_wall_coast label"
  4832. msgid "Bridge Wall Coasting"
  4833. msgstr "Накат стенки мостика"
  4834. #: fdmprinter.def.json
  4835. msgctxt "bridge_wall_coast description"
  4836. msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge."
  4837. msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик."
  4838. #: fdmprinter.def.json
  4839. msgctxt "bridge_wall_speed label"
  4840. msgid "Bridge Wall Speed"
  4841. msgstr "Скорость печати стенки мостика"
  4842. #: fdmprinter.def.json
  4843. msgctxt "bridge_wall_speed description"
  4844. msgid "The speed at which the bridge walls are printed."
  4845. msgstr "Скорость, с которой происходит печать стенок мостика."
  4846. #: fdmprinter.def.json
  4847. msgctxt "bridge_wall_material_flow label"
  4848. msgid "Bridge Wall Flow"
  4849. msgstr "Поток для стенки мостика"
  4850. #: fdmprinter.def.json
  4851. msgctxt "bridge_wall_material_flow description"
  4852. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4853. msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение."
  4854. #: fdmprinter.def.json
  4855. msgctxt "bridge_skin_speed label"
  4856. msgid "Bridge Skin Speed"
  4857. msgstr "Скорость печати оболочки мостика"
  4858. #: fdmprinter.def.json
  4859. msgctxt "bridge_skin_speed description"
  4860. msgid "The speed at which bridge skin regions are printed."
  4861. msgstr "Скорость, с которой печатаются области оболочки мостика."
  4862. #: fdmprinter.def.json
  4863. msgctxt "bridge_skin_material_flow label"
  4864. msgid "Bridge Skin Flow"
  4865. msgstr "Поток для оболочки мостика"
  4866. #: fdmprinter.def.json
  4867. msgctxt "bridge_skin_material_flow description"
  4868. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4869. msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение."
  4870. #: fdmprinter.def.json
  4871. msgctxt "bridge_skin_density label"
  4872. msgid "Bridge Skin Density"
  4873. msgstr "Плотность оболочки мостика"
  4874. #: fdmprinter.def.json
  4875. msgctxt "bridge_skin_density description"
  4876. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4877. msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки."
  4878. #: fdmprinter.def.json
  4879. msgctxt "bridge_fan_speed label"
  4880. msgid "Bridge Fan Speed"
  4881. msgstr "Скорость вентилятора для мостика"
  4882. #: fdmprinter.def.json
  4883. msgctxt "bridge_fan_speed description"
  4884. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4885. msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика."
  4886. #: fdmprinter.def.json
  4887. msgctxt "bridge_enable_more_layers label"
  4888. msgid "Bridge Has Multiple Layers"
  4889. msgstr "В мостике несколько слоев"
  4890. #: fdmprinter.def.json
  4891. msgctxt "bridge_enable_more_layers description"
  4892. msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings."
  4893. msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек."
  4894. #: fdmprinter.def.json
  4895. msgctxt "bridge_skin_speed_2 label"
  4896. msgid "Bridge Second Skin Speed"
  4897. msgstr "Скорость печати второй оболочки мостика"
  4898. #: fdmprinter.def.json
  4899. msgctxt "bridge_skin_speed_2 description"
  4900. msgid "Print speed to use when printing the second bridge skin layer."
  4901. msgstr "Скорость, с которой печатается слой второй оболочки мостика."
  4902. #: fdmprinter.def.json
  4903. msgctxt "bridge_skin_material_flow_2 label"
  4904. msgid "Bridge Second Skin Flow"
  4905. msgstr "Поток для второй оболочки мостика"
  4906. #: fdmprinter.def.json
  4907. msgctxt "bridge_skin_material_flow_2 description"
  4908. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4909. msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение."
  4910. #: fdmprinter.def.json
  4911. msgctxt "bridge_skin_density_2 label"
  4912. msgid "Bridge Second Skin Density"
  4913. msgstr "Плотность второй оболочки мостика"
  4914. #: fdmprinter.def.json
  4915. msgctxt "bridge_skin_density_2 description"
  4916. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4917. msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки."
  4918. #: fdmprinter.def.json
  4919. msgctxt "bridge_fan_speed_2 label"
  4920. msgid "Bridge Second Skin Fan Speed"
  4921. msgstr "Скорость вентилятора для второй оболочки мостика"
  4922. #: fdmprinter.def.json
  4923. msgctxt "bridge_fan_speed_2 description"
  4924. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4925. msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика."
  4926. #: fdmprinter.def.json
  4927. msgctxt "bridge_skin_speed_3 label"
  4928. msgid "Bridge Third Skin Speed"
  4929. msgstr "Скорость печати третьей оболочки мостика"
  4930. #: fdmprinter.def.json
  4931. msgctxt "bridge_skin_speed_3 description"
  4932. msgid "Print speed to use when printing the third bridge skin layer."
  4933. msgstr "Скорость, с которой печатается слой третьей оболочки мостика."
  4934. #: fdmprinter.def.json
  4935. msgctxt "bridge_skin_material_flow_3 label"
  4936. msgid "Bridge Third Skin Flow"
  4937. msgstr "Поток для третьей оболочки мостика"
  4938. #: fdmprinter.def.json
  4939. msgctxt "bridge_skin_material_flow_3 description"
  4940. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4941. msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение."
  4942. #: fdmprinter.def.json
  4943. msgctxt "bridge_skin_density_3 label"
  4944. msgid "Bridge Third Skin Density"
  4945. msgstr "Плотность третьей оболочки мостика"
  4946. #: fdmprinter.def.json
  4947. msgctxt "bridge_skin_density_3 description"
  4948. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4949. msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки."
  4950. #: fdmprinter.def.json
  4951. msgctxt "bridge_fan_speed_3 label"
  4952. msgid "Bridge Third Skin Fan Speed"
  4953. msgstr "Скорость вентилятора для третьей оболочки мостика"
  4954. #: fdmprinter.def.json
  4955. msgctxt "bridge_fan_speed_3 description"
  4956. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4957. msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика."
  4958. #: fdmprinter.def.json
  4959. msgctxt "clean_between_layers label"
  4960. msgid "Wipe Nozzle Between Layers"
  4961. msgstr "Очистка сопла между слоями"
  4962. #: fdmprinter.def.json
  4963. msgctxt "clean_between_layers description"
  4964. msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  4965. msgstr "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки."
  4966. #: fdmprinter.def.json
  4967. msgctxt "max_extrusion_before_wipe label"
  4968. msgid "Material Volume Between Wipes"
  4969. msgstr "Объем материала между очистками"
  4970. #: fdmprinter.def.json
  4971. msgctxt "max_extrusion_before_wipe description"
  4972. msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer."
  4973. msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)."
  4974. #: fdmprinter.def.json
  4975. msgctxt "wipe_retraction_enable label"
  4976. msgid "Wipe Retraction Enable"
  4977. msgstr "Включение отката с очисткой"
  4978. #: fdmprinter.def.json
  4979. msgctxt "wipe_retraction_enable description"
  4980. msgid "Retract the filament when the nozzle is moving over a non-printed area."
  4981. msgstr "Откат нити при движении сопла вне зоны печати."
  4982. #: fdmprinter.def.json
  4983. msgctxt "wipe_retraction_amount label"
  4984. msgid "Wipe Retraction Distance"
  4985. msgstr "Расстояние отката с очисткой"
  4986. #: fdmprinter.def.json
  4987. msgctxt "wipe_retraction_amount description"
  4988. msgid "Amount to retract the filament so it does not ooze during the wipe sequence."
  4989. msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки."
  4990. #: fdmprinter.def.json
  4991. msgctxt "wipe_retraction_extra_prime_amount label"
  4992. msgid "Wipe Retraction Extra Prime Amount"
  4993. msgstr "Дополнительно заполняемый объем при откате с очисткой"
  4994. #: fdmprinter.def.json
  4995. msgctxt "wipe_retraction_extra_prime_amount description"
  4996. msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here."
  4997. msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра."
  4998. #: fdmprinter.def.json
  4999. msgctxt "wipe_retraction_speed label"
  5000. msgid "Wipe Retraction Speed"
  5001. msgstr "Скорость отката с очисткой"
  5002. #: fdmprinter.def.json
  5003. msgctxt "wipe_retraction_speed description"
  5004. msgid "The speed at which the filament is retracted and primed during a wipe retraction move."
  5005. msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой."
  5006. #: fdmprinter.def.json
  5007. msgctxt "wipe_retraction_retract_speed label"
  5008. msgid "Wipe Retraction Retract Speed"
  5009. msgstr "Скорость отката при откате с очисткой"
  5010. #: fdmprinter.def.json
  5011. msgctxt "wipe_retraction_retract_speed description"
  5012. msgid "The speed at which the filament is retracted during a wipe retraction move."
  5013. msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой."
  5014. #: fdmprinter.def.json
  5015. msgctxt "wipe_retraction_prime_speed label"
  5016. msgid "Wipe Retraction Prime Speed"
  5017. msgstr "Скорость заправки при откате с очисткой"
  5018. #: fdmprinter.def.json
  5019. msgctxt "wipe_retraction_prime_speed description"
  5020. msgid "The speed at which the filament is primed during a wipe retraction move."
  5021. msgstr "Скорость, с которой нить заправляется при откате с очисткой."
  5022. #: fdmprinter.def.json
  5023. msgctxt "wipe_pause label"
  5024. msgid "Wipe Pause"
  5025. msgstr "Приостановка очистки"
  5026. #: fdmprinter.def.json
  5027. msgctxt "wipe_pause description"
  5028. msgid "Pause after the unretract."
  5029. msgstr "Приостановка после отмены отката."
  5030. #: fdmprinter.def.json
  5031. msgctxt "wipe_hop_enable label"
  5032. msgid "Wipe Z Hop"
  5033. msgstr "Поднятие оси Z при очистке"
  5034. #: fdmprinter.def.json
  5035. msgctxt "wipe_hop_enable description"
  5036. msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5037. msgstr "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе."
  5038. #: fdmprinter.def.json
  5039. msgctxt "wipe_hop_amount label"
  5040. msgid "Wipe Z Hop Height"
  5041. msgstr "Высота поднятия оси Z при очистке"
  5042. #: fdmprinter.def.json
  5043. msgctxt "wipe_hop_amount description"
  5044. msgid "The height difference when performing a Z Hop."
  5045. msgstr "Расстояние, на которое приподнимается ось Z."
  5046. #: fdmprinter.def.json
  5047. msgctxt "wipe_hop_speed label"
  5048. msgid "Wipe Hop Speed"
  5049. msgstr "Скорость поднятия при очистке"
  5050. #: fdmprinter.def.json
  5051. msgctxt "wipe_hop_speed description"
  5052. msgid "Speed to move the z-axis during the hop."
  5053. msgstr "Скорость перемещения оси Z во время поднятия."
  5054. #: fdmprinter.def.json
  5055. msgctxt "wipe_brush_pos_x label"
  5056. msgid "Wipe Brush X Position"
  5057. msgstr "Позиция X очистной щетки"
  5058. #: fdmprinter.def.json
  5059. msgctxt "wipe_brush_pos_x description"
  5060. msgid "X location where wipe script will start."
  5061. msgstr "Расположение X, в котором запустится скрипт очистки."
  5062. #: fdmprinter.def.json
  5063. msgctxt "wipe_repeat_count label"
  5064. msgid "Wipe Repeat Count"
  5065. msgstr "Количество повторов очистки"
  5066. #: fdmprinter.def.json
  5067. msgctxt "wipe_repeat_count description"
  5068. msgid "Number of times to move the nozzle across the brush."
  5069. msgstr "Количество перемещений сопла поперек щетки."
  5070. #: fdmprinter.def.json
  5071. msgctxt "wipe_move_distance label"
  5072. msgid "Wipe Move Distance"
  5073. msgstr "Расстояние перемещения при очистке"
  5074. #: fdmprinter.def.json
  5075. msgctxt "wipe_move_distance description"
  5076. msgid "The distance to move the head back and forth across the brush."
  5077. msgstr "Расстояние перемещения головки назад и вперед поперек щетки."
  5078. #: fdmprinter.def.json
  5079. msgctxt "small_hole_max_size label"
  5080. msgid "Small Hole Max Size"
  5081. msgstr "Максимальный размер малого отверстия"
  5082. #: fdmprinter.def.json
  5083. msgctxt "small_hole_max_size description"
  5084. msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed."
  5085. msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»."
  5086. #: fdmprinter.def.json
  5087. msgctxt "small_feature_max_length label"
  5088. msgid "Small Feature Max Length"
  5089. msgstr "Максимальная длина малого элемента"
  5090. #: fdmprinter.def.json
  5091. msgctxt "small_feature_max_length description"
  5092. msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed."
  5093. msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»."
  5094. #: fdmprinter.def.json
  5095. msgctxt "small_feature_speed_factor label"
  5096. msgid "Small Feature Speed"
  5097. msgstr "Скорость для малых элементов"
  5098. #: fdmprinter.def.json
  5099. msgctxt "small_feature_speed_factor description"
  5100. msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5101. msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
  5102. #: fdmprinter.def.json
  5103. msgctxt "small_feature_speed_factor_0 label"
  5104. msgid "Small Feature Initial Layer Speed"
  5105. msgstr "Скорость первого слоя для небольших объектов"
  5106. #: fdmprinter.def.json
  5107. msgctxt "small_feature_speed_factor_0 description"
  5108. msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy."
  5109. msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
  5110. #: fdmprinter.def.json
  5111. msgctxt "command_line_settings label"
  5112. msgid "Command Line Settings"
  5113. msgstr "Параметры командной строки"
  5114. #: fdmprinter.def.json
  5115. msgctxt "command_line_settings description"
  5116. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  5117. msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую."
  5118. #: fdmprinter.def.json
  5119. msgctxt "center_object label"
  5120. msgid "Center Object"
  5121. msgstr "Центрирование объекта"
  5122. #: fdmprinter.def.json
  5123. msgctxt "center_object description"
  5124. msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved."
  5125. msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект."
  5126. #: fdmprinter.def.json
  5127. msgctxt "mesh_position_x label"
  5128. msgid "Mesh Position X"
  5129. msgstr "X позиция объекта"
  5130. #: fdmprinter.def.json
  5131. msgctxt "mesh_position_x description"
  5132. msgid "Offset applied to the object in the x direction."
  5133. msgstr "Смещение, применяемое к объекту по оси X."
  5134. #: fdmprinter.def.json
  5135. msgctxt "mesh_position_y label"
  5136. msgid "Mesh Position Y"
  5137. msgstr "Y позиция объекта"
  5138. #: fdmprinter.def.json
  5139. msgctxt "mesh_position_y description"
  5140. msgid "Offset applied to the object in the y direction."
  5141. msgstr "Смещение, применяемое к объекту по оси Y."
  5142. #: fdmprinter.def.json
  5143. msgctxt "mesh_position_z label"
  5144. msgid "Mesh Position Z"
  5145. msgstr "Z позиция объекта"
  5146. #: fdmprinter.def.json
  5147. msgctxt "mesh_position_z description"
  5148. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  5149. msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола."
  5150. #: fdmprinter.def.json
  5151. msgctxt "mesh_rotation_matrix label"
  5152. msgid "Mesh Rotation Matrix"
  5153. msgstr "Матрица вращения объекта"
  5154. #: fdmprinter.def.json
  5155. msgctxt "mesh_rotation_matrix description"
  5156. msgid "Transformation matrix to be applied to the model when loading it from file."
  5157. msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла."
  5158. #~ msgctxt "machine_steps_per_mm_e description"
  5159. #~ msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  5160. #~ msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр."
  5161. #~ msgctxt "retraction_combing_max_distance description"
  5162. #~ msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  5163. #~ msgstr "При ненулевом значении перемещения комбинга, превышающие указанное расстояние, будут выполняться с откатом."
  5164. #~ msgctxt "machine_use_extruder_offset_to_offset_coords description"
  5165. #~ msgid "Apply the extruder offset to the coordinate system."
  5166. #~ msgstr "Применить смещение экструдера к системе координат."
  5167. #~ msgctxt "shell label"
  5168. #~ msgid "Shell"
  5169. #~ msgstr "Ограждение"
  5170. #~ msgctxt "max_skin_angle_for_expansion description"
  5171. #~ msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal, while an angle of 90° is vertical."
  5172. #~ msgstr "Верхняя и/или нижняя поверхности вашего объекта с углом больше указанного в данном параметре, не будут иметь расширенные оболочки дна/крышки. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол в 0° является горизонтальным, а в 90° - вертикальным."
  5173. #~ msgctxt "speed_layer_0 description"
  5174. #~ msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  5175. #~ msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу."
  5176. #~ msgctxt "infill_mesh_order description"
  5177. #~ msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the lowest rank. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5178. #~ msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более низкого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов."
  5179. #~ msgctxt "material_bed_temperature description"
  5180. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  5181. #~ msgstr "Температура, задаваемая для разогретого рабочего стола. Если значение равно 0, температура основания не будет регулироваться."
  5182. #~ msgctxt "material_bed_temperature_layer_0 description"
  5183. #~ msgid "The temperature used for the heated build plate at the first layer."
  5184. #~ msgstr "Температура стола, используемая при печати первого слоя."
  5185. #~ msgctxt "material_shrinkage_percentage label"
  5186. #~ msgid "Shrinkage Ratio"
  5187. #~ msgstr "Коэффициент усадки"
  5188. #~ msgctxt "material_shrinkage_percentage description"
  5189. #~ msgid "Shrinkage ratio in percentage."
  5190. #~ msgstr "Коэффициент усадки в процентах."
  5191. #~ msgctxt "infill_mesh_order description"
  5192. #~ msgid "Determines the priority of this mesh when considering overlapping volumes. Areas where multiple meshes reside will be won by the lower rank mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5193. #~ msgstr "Определяет приоритет данного объекта при вычислении перекрывающихся объемов. Области с несколькими объектами будут заполняться объектом с более низким порядком. Заполняющий объект с более высоким порядком будет модифицировать заполнение объектов с более низким порядком и обычных объектов."
  5194. #~ msgctxt "print_sequence description"
  5195. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes. "
  5196. #~ msgstr "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y. "
  5197. #~ msgctxt "infill_mesh_order label"
  5198. #~ msgid "Infill Mesh Order"
  5199. #~ msgstr "Порядок заполнения объекта"
  5200. #~ msgctxt "infill_mesh_order description"
  5201. #~ msgid "Determines which infill mesh is inside the infill of another infill mesh. An infill mesh with a higher order will modify the infill of infill meshes with lower order and normal meshes."
  5202. #~ msgstr "Определяет какой заполняющий объект находится внутри заполнения другого заполняющего объекта. Заполняющий объект с более высоким порядком будет модифицировать заполнение объектов с более низким порядком или обычных объектов."
  5203. #~ msgctxt "support_tree_enable label"
  5204. #~ msgid "Tree Support"
  5205. #~ msgstr "Древовидная поддержка"
  5206. #~ msgctxt "support_tree_enable description"
  5207. #~ msgid "Generate a tree-like support with branches that support your print. This may reduce material usage and print time, but greatly increases slicing time."
  5208. #~ msgstr "Генерирование древовидной поддержки с ответвлениями, поддерживающими вашу печать. Данная опция может сэкономить материал и сократить время печати, однако при этом существенно возрастает время разделения на слои."
  5209. #~ msgctxt "slicing_tolerance description"
  5210. #~ msgid "How to slice layers with diagonal surfaces. The areas of a layer can be generated based on where the middle of the layer intersects the surface (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the height of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Exclusive retains the most details, Inclusive makes for the best fit and Middle takes the least time to process."
  5211. #~ msgstr "Способ выполнения слайсинга слоев диагональными поверхностями. Области слоя можно создать на основе места пересечения середины слоя и поверхности (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по высоте слоя (Исключение), или слой имеет области, попадающие в любое место слоя (Включение). Способ «Исключение» сохраняет больше деталей. Способ «Включение» обеспечивает наилучшую подгонку. Способ «Середина» требует минимального времени для обработки."
  5212. #~ msgctxt "spaghetti_infill_enabled label"
  5213. #~ msgid "Spaghetti Infill"
  5214. #~ msgstr "Спагетти"
  5215. #~ msgctxt "spaghetti_infill_enabled description"
  5216. #~ msgid "Print the infill every so often, so that the filament will curl up chaotically inside the object. This reduces print time, but the behaviour is rather unpredictable."
  5217. #~ msgstr "Печатает заполнение так часто, что филамент хаотически заполняет внутренность объекта. Это сокращает время печати, но выражается в непредсказуемом поведении."
  5218. #~ msgctxt "spaghetti_infill_stepped label"
  5219. #~ msgid "Spaghetti Infill Stepping"
  5220. #~ msgstr "Шаг спагетти заполнения"
  5221. #~ msgctxt "spaghetti_infill_stepped description"
  5222. #~ msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  5223. #~ msgstr "Следует ли пошагово печатать спагетти заполнение или печатать материалом заполнения в конце печати."
  5224. #~ msgctxt "spaghetti_max_infill_angle label"
  5225. #~ msgid "Spaghetti Maximum Infill Angle"
  5226. #~ msgstr "Максимальный угол спагетти заполнения"
  5227. #~ msgctxt "spaghetti_max_infill_angle description"
  5228. #~ msgid "The maximum angle w.r.t. the Z axis of the inside of the print for areas which are to be filled with spaghetti infill afterwards. Lowering this value causes more angled parts in your model to be filled on each layer."
  5229. #~ msgstr "Максимальный угол по отношению к оси Z внутри печатаемого объёма для заполняемых областей. Уменьшение этого значения приводит к тому, что более наклонённые части вашей модели будут заполнены на каждом слое."
  5230. #~ msgctxt "spaghetti_max_height label"
  5231. #~ msgid "Spaghetti Infill Maximum Height"
  5232. #~ msgstr "Максимальная высота спагетти заполнения"
  5233. #~ msgctxt "spaghetti_max_height description"
  5234. #~ msgid "The maximum height of inside space which can be combined and filled from the top."
  5235. #~ msgstr "Максимальная высота внутри пространства которое может быть объединено и заполнено сверху."
  5236. #~ msgctxt "spaghetti_inset label"
  5237. #~ msgid "Spaghetti Inset"
  5238. #~ msgstr "Спагетти вставка"
  5239. #~ msgctxt "spaghetti_inset description"
  5240. #~ msgid "The offset from the walls from where the spaghetti infill will be printed."
  5241. #~ msgstr "Смещение от стенок внутри которых должно быть использовано спагетти заполнение."
  5242. #~ msgctxt "spaghetti_flow label"
  5243. #~ msgid "Spaghetti Flow"
  5244. #~ msgstr "Спагетти поток"
  5245. #~ msgctxt "spaghetti_flow description"
  5246. #~ msgid "Adjusts the density of the spaghetti infill. Note that the Infill Density only controls the line spacing of the filling pattern, not the amount of extrusion for spaghetti infill."
  5247. #~ msgstr "Управляет плотностью спагетти заполнения. Следует отметить, что плотность заполнения только контролирует расстояние между линиями шаблона заполнения, а не объёмом выдавливаемого материала."
  5248. #~ msgctxt "spaghetti_infill_extra_volume label"
  5249. #~ msgid "Spaghetti Infill Extra Volume"
  5250. #~ msgstr "Дополнительный объём спагетти заполнения"
  5251. #~ msgctxt "spaghetti_infill_extra_volume description"
  5252. #~ msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  5253. #~ msgstr "Период исправления для управления общим объёмом выдавленного материала при спагетти заполнении."
  5254. #~ msgctxt "material_guid description"
  5255. #~ msgid "GUID of the material. This is set automatically. "
  5256. #~ msgstr "Идентификатор материала, устанавливается автоматически. "
  5257. #~ msgctxt "machine_filament_park_distance label"
  5258. #~ msgid "Filament Park Distance"
  5259. #~ msgstr "Расстояние парковки материала"
  5260. #~ msgctxt "machine_filament_park_distance description"
  5261. #~ msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  5262. #~ msgstr "Расстояние от кончика сопла до места, где останавливается материал, пока экструдер не используется."
  5263. #~ msgctxt "material_flush_purge_speed description"
  5264. #~ msgid "Material Station internal value"
  5265. #~ msgstr "Внутреннее значение Material Station"
  5266. #~ msgctxt "material_flush_purge_length description"
  5267. #~ msgid "Material Station internal value"
  5268. #~ msgstr "Внутреннее значение Material Station"
  5269. #~ msgctxt "material_end_of_filament_purge_speed label"
  5270. #~ msgid "End Of Filament Purge Speed"
  5271. #~ msgstr "Скорость выдавливания заканчивающегося материала"
  5272. #~ msgctxt "material_end_of_filament_purge_speed description"
  5273. #~ msgid "Material Station internal value"
  5274. #~ msgstr "Внутреннее значение Material Station"
  5275. #~ msgctxt "material_end_of_filament_purge_length label"
  5276. #~ msgid "End Of Filament Purge Length"
  5277. #~ msgstr "Длина выдавливания заканчивающегося материала"
  5278. #~ msgctxt "material_end_of_filament_purge_length description"
  5279. #~ msgid "Material Station internal value"
  5280. #~ msgstr "Внутреннее значение Material Station"
  5281. #~ msgctxt "material_maximum_park_duration description"
  5282. #~ msgid "Material Station internal value"
  5283. #~ msgstr "Внутреннее значение Material Station"
  5284. #~ msgctxt "material_no_load_move_factor description"
  5285. #~ msgid "Material Station internal value"
  5286. #~ msgstr "Внутреннее значение Material Station"
  5287. #~ msgctxt "retraction_enable description"
  5288. #~ msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  5289. #~ msgstr "Откат нити при движении сопла вне зоны печати. "
  5290. #~ msgctxt "support_xy_distance_overhang description"
  5291. #~ msgid "Distance of the support structure from the overhang in the X/Y directions. "
  5292. #~ msgstr "Зазор между структурами поддержек и нависанием по осям X/Y. "
  5293. #~ msgctxt "meshfix description"
  5294. #~ msgid "category_fixes"
  5295. #~ msgstr "category_fixes"
  5296. #~ msgctxt "blackmagic description"
  5297. #~ msgid "category_blackmagic"
  5298. #~ msgstr "category_blackmagic"
  5299. #~ msgctxt "experimental description"
  5300. #~ msgid "experimental!"
  5301. #~ msgstr "экспериментальное!"
  5302. #~ msgctxt "machine_head_polygon label"
  5303. #~ msgid "Machine Head Polygon"
  5304. #~ msgstr "Полигон головки принтера"
  5305. #~ msgctxt "machine_head_polygon description"
  5306. #~ msgid "A 2D silhouette of the print head (fan caps excluded)."
  5307. #~ msgstr "2D контур головы принтера (исключая крышки вентилятора)."
  5308. #~ msgctxt "print_sequence description"
  5309. #~ msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is only possible if all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes."
  5310. #~ msgstr "Печатать ли все модели послойно или каждую модель в отдельности. Отдельная печать возможна в случае, когда все модели разделены так, чтобы между ними могла проходить голова принтера и все модели ниже чем расстояние до осей X/Y."
  5311. #~ msgctxt "support_tree_wall_thickness label"
  5312. #~ msgid "Tree Support Wall Thickness"
  5313. #~ msgstr "Толщина стенки древовидной поддержки"
  5314. #~ msgctxt "support_tree_wall_thickness description"
  5315. #~ msgid "The thickness of the walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5316. #~ msgstr "Толщина стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
  5317. #~ msgctxt "support_tree_wall_count label"
  5318. #~ msgid "Tree Support Wall Line Count"
  5319. #~ msgstr "Количество линий стенки древовидной поддержки"
  5320. #~ msgctxt "support_tree_wall_count description"
  5321. #~ msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  5322. #~ msgstr "Количество стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
  5323. #~ msgctxt "clean_between_layers description"
  5324. #~ msgid "Whether to include nozzle wipe G-Code between layers. Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working."
  5325. #~ msgstr "Следует ли добавлять G-код очистки сопла между слоями. Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки."
  5326. #~ msgctxt "max_extrusion_before_wipe description"
  5327. #~ msgid "Maximum material, that can be extruded before another nozzle wipe is initiated."
  5328. #~ msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла."
  5329. #~ msgctxt "wipe_retraction_prime_speed label"
  5330. #~ msgid "Retraction Prime Speed"
  5331. #~ msgstr "Скорость заправки при откате"
  5332. #~ msgctxt "wipe_hop_enable label"
  5333. #~ msgid "Wipe Z Hop When Retracted"
  5334. #~ msgstr "Поднятие оси Z с очисткой при откате"
  5335. #~ msgctxt "wipe_hop_enable description"
  5336. #~ msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate."
  5337. #~ msgstr "При каждом откате рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе."
  5338. #~ msgctxt "minimum_interface_area description"
  5339. #~ msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will not be generated."
  5340. #~ msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения не будут генерироваться."
  5341. #~ msgctxt "minimum_roof_area description"
  5342. #~ msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will not be generated."
  5343. #~ msgstr "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения не будут генерироваться."
  5344. #~ msgctxt "minimum_bottom_area description"
  5345. #~ msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will not be generated."
  5346. #~ msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения не будут генерироваться."
  5347. #~ msgctxt "skin_alternate_rotation label"
  5348. #~ msgid "Alternate Skin Rotation"
  5349. #~ msgstr "Чередование вращения оболочек"
  5350. #~ msgctxt "skin_alternate_rotation description"
  5351. #~ msgid "Alternate the direction in which the top/bottom layers are printed. Normally they are printed diagonally only. This setting adds the X-only and Y-only directions."
  5352. #~ msgstr "Изменить направление, в котором печатаются слои крышки/дна. Обычно, они печатаются по диагонали. Данный параметр добавляет направления X-только и Y-только."
  5353. #~ msgctxt "flow_rate_max_extrusion_offset label"
  5354. #~ msgid "Flow rate compensation max extrusion offset"
  5355. #~ msgstr "Макс. смещение экструзии для компенсации расхода"
  5356. #~ msgctxt "flow_rate_max_extrusion_offset description"
  5357. #~ msgid "The maximum distance in mm to compensate."
  5358. #~ msgstr "Максимальное компенсируемое расстояние в миллиметрах."
  5359. #~ msgctxt "flow_rate_extrusion_offset_factor label"
  5360. #~ msgid "Flow rate compensation factor"
  5361. #~ msgstr "Коэффициент компенсации расхода"
  5362. #~ msgctxt "flow_rate_extrusion_offset_factor description"
  5363. #~ msgid "The multiplication factor for the flow rate -> distance translation."
  5364. #~ msgstr "Коэффициент перевода расхода в расстояние."
  5365. #~ msgctxt "adaptive_layer_height_threshold label"
  5366. #~ msgid "Adaptive Layers Threshold"
  5367. #~ msgstr "Порог для адаптивных слоев"
  5368. #~ msgctxt "adaptive_layer_height_threshold description"
  5369. #~ msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  5370. #~ msgstr "Пороговое значение, при достижении которого будет использоваться меньший слой. Это число сравнивается с тангенсом наиболее крутого наклона в слое."
  5371. #~ msgctxt "wall_overhang_angle description"
  5372. #~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging."
  5373. #~ msgstr "Стенки, нависающие под углом, который больше указанного, будут напечатаны с использованием настроек нависающей стенки. Если значение составляет 90, стенки не считаются нависающими."
  5374. #~ msgctxt "small_feature_speed_factor description"
  5375. #~ msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5376. #~ msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
  5377. #~ msgctxt "small_feature_speed_factor_0 label"
  5378. #~ msgid "First Layer Speed"
  5379. #~ msgstr "Скорость первого слоя"
  5380. #~ msgctxt "small_feature_speed_factor_0 description"
  5381. #~ msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhestion and accuracy."
  5382. #~ msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность."
  5383. #~ msgctxt "ironing_enabled description"
  5384. #~ msgid "Go over the top surface one additional time, but without extruding material. This is meant to melt the plastic on top further, creating a smoother surface."
  5385. #~ msgstr "Проходить по верхней оболочке ещё раз, но без выдавливания материала. Это приводит к плавлению пластика, что создаёт более гладкую поверхность."
  5386. #~ msgctxt "start_layers_at_same_position label"
  5387. #~ msgid "Start Layers with the Same Part"
  5388. #~ msgstr "Начинать печать в одном месте"
  5389. #~ msgctxt "start_layers_at_same_position description"
  5390. #~ msgid "In each layer start with printing the object near the same point, so that we don't start a new layer with printing the piece which the previous layer ended with. This makes for better overhangs and small parts, but increases printing time."
  5391. #~ msgstr "На каждом слое печать начинается вблизи одной и той же точки, таким образом, мы не начинаем новый слой на том месте, где завершилась печать предыдущего слоя. Это улучшает печать нависаний и мелких частей, но увеличивает длительность процесса."
  5392. #~ msgctxt "support_infill_angles description"
  5393. #~ msgid "Orientation of the infill pattern for supports. The support infill pattern is rotated in the horizontal plane."
  5394. #~ msgstr "Ориентация шаблона заполнения для поддержек. Шаблон заполнения поддержек вращается в горизонтальной плоскости."
  5395. #~ msgctxt "meshfix_maximum_deviation description"
  5396. #~ msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller."
  5397. #~ msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения уменьшит точность печати и значение G-кода."
  5398. #~ msgctxt "machine_gcode_flavor label"
  5399. #~ msgid "G-code Flavour"
  5400. #~ msgstr "Вариант G-кода"
  5401. #~ msgctxt "z_seam_corner description"
  5402. #~ msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner."
  5403. #~ msgstr "Управляет влиянием углов на контуре модели на позицию шва. Нет означает отсутствие влияния. Спрятать шов означает по возможности перенести шов внутрь угла. Показать шов означает по возможности перенести шов наружу. Спрятать или показать означает выбор по ситуации."
  5404. #~ msgctxt "skin_no_small_gaps_heuristic label"
  5405. #~ msgid "Ignore Small Z Gaps"
  5406. #~ msgstr "Игнорирование Z зазоров"
  5407. #~ msgctxt "skin_no_small_gaps_heuristic description"
  5408. #~ msgid "When the model has small vertical gaps, about 5% extra computation time can be spent on generating top and bottom skin in these narrow spaces. In such case, disable the setting."
  5409. #~ msgstr "Когда модель имеет небольшие вертикальные зазоры, около 5% дополнительного времени будет потрачено на вычисления верхних и нижних оболочек в этих узких пространствах. В этом случае, отключите данный параметр."
  5410. #~ msgctxt "build_volume_temperature description"
  5411. #~ msgid "The temperature used for build volume. If this is 0, the build volume temperature will not be adjusted."
  5412. #~ msgstr "Температура, используемая для объема печати. Если значение равно 0, температура для объема печати не будет регулироваться."
  5413. #~ msgctxt "limit_support_retractions description"
  5414. #~ msgid "Omit retraction when moving from support to support in a straight line. Enabling this setting saves print time, but can lead to excesive stringing within the support structure."
  5415. #~ msgstr "Избежание отката при перемещении от поддержки к поддержке по прямой. Активация этой настройки сокращает время печати, однако может привести к излишней строчности в поддерживающей структуре."
  5416. #~ msgctxt "max_feedrate_z_override label"
  5417. #~ msgid "Maximum Z Speed"
  5418. #~ msgstr "Максимальная скорость по оси Z"
  5419. #~ msgctxt "max_feedrate_z_override description"
  5420. #~ msgid "The maximum speed with which the build plate is moved. Setting this to zero causes the print to use the firmware defaults for the maximum z speed."
  5421. #~ msgstr "Максимальная скорость, с которой движется ось Z. Установка нуля в качестве значения, приводит к использованию скорости прописанной в прошивке."
  5422. #~ msgctxt "support_join_distance description"
  5423. #~ msgid "The maximum distance between support structures in the X/Y directions. When seperate structures are closer together than this value, the structures merge into one."
  5424. #~ msgstr "Максимальное расстояние между структурами поддержки по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, то такие структуры объединяются в одну."
  5425. #~ msgctxt "support_minimal_diameter label"
  5426. #~ msgid "Minimum Diameter"
  5427. #~ msgstr "Минимальный диаметр"
  5428. #~ msgctxt "support_minimal_diameter description"
  5429. #~ msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  5430. #~ msgstr "Минимальный диаметр по осям X/Y небольшой области, которая будет поддерживаться с помощью специальных башен."
  5431. #~ msgctxt "prime_tower_circular label"
  5432. #~ msgid "Circular Prime Tower"
  5433. #~ msgstr "Цилиндрическая черновая башня"
  5434. #~ msgctxt "prime_tower_circular description"
  5435. #~ msgid "Make the prime tower as a circular shape."
  5436. #~ msgstr "Делает черновую башню цилиндрической формы."
  5437. #~ msgctxt "prime_tower_flow description"
  5438. #~ msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  5439. #~ msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент."
  5440. #~ msgctxt "smooth_spiralized_contours description"
  5441. #~ msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z-seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details."
  5442. #~ msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но по-прежнему виден при послойном просмотре). Следует отметить, что сглаживание ведёт к размыванию мелких деталей поверхности."
  5443. #~ msgctxt "support_conical_enabled description"
  5444. #~ msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  5445. #~ msgstr "Экспериментальная возможность: Нижняя часть поддержек становится меньше, чем верхняя."
  5446. #~ msgctxt "extruders_enabled_count label"
  5447. #~ msgid "Number of Extruders that are enabled"
  5448. #~ msgstr "Количество включенных экструдеров"
  5449. #~ msgctxt "machine_nozzle_tip_outer_diameter label"
  5450. #~ msgid "Outer nozzle diameter"
  5451. #~ msgstr "Внешний диаметр сопла"
  5452. #~ msgctxt "machine_nozzle_head_distance label"
  5453. #~ msgid "Nozzle length"
  5454. #~ msgstr "Длина сопла"
  5455. #~ msgctxt "machine_nozzle_expansion_angle label"
  5456. #~ msgid "Nozzle angle"
  5457. #~ msgstr "Угол сопла"
  5458. #~ msgctxt "machine_heat_zone_length label"
  5459. #~ msgid "Heat zone length"
  5460. #~ msgstr "Длина зоны нагрева"
  5461. #~ msgctxt "machine_nozzle_heat_up_speed label"
  5462. #~ msgid "Heat up speed"
  5463. #~ msgstr "Скорость нагрева"
  5464. #~ msgctxt "machine_nozzle_cool_down_speed label"
  5465. #~ msgid "Cool down speed"
  5466. #~ msgstr "Скорость охлаждения"
  5467. #~ msgctxt "machine_gcode_flavor label"
  5468. #~ msgid "G-code flavour"
  5469. #~ msgstr "Вариант G-кода"
  5470. #~ msgctxt "machine_disallowed_areas label"
  5471. #~ msgid "Disallowed areas"
  5472. #~ msgstr "Запрещённые области"
  5473. #~ msgctxt "machine_head_polygon label"
  5474. #~ msgid "Machine head polygon"
  5475. #~ msgstr "Полигон головы принтера"
  5476. #~ msgctxt "machine_head_with_fans_polygon label"
  5477. #~ msgid "Machine head & Fan polygon"
  5478. #~ msgstr "Полигон головы принтера и вентилятора"
  5479. #~ msgctxt "gantry_height label"
  5480. #~ msgid "Gantry height"
  5481. #~ msgstr "Высота портала"
  5482. #~ msgctxt "machine_use_extruder_offset_to_offset_coords label"
  5483. #~ msgid "Offset With Extruder"
  5484. #~ msgstr "Смещение экструдера"
  5485. #~ msgctxt "adaptive_layer_height_enabled label"
  5486. #~ msgid "Use adaptive layers"
  5487. #~ msgstr "Использовать адаптивные слои"
  5488. #~ msgctxt "adaptive_layer_height_variation label"
  5489. #~ msgid "Adaptive layers maximum variation"
  5490. #~ msgstr "Максимальная вариация адаптивных слоев"
  5491. #~ msgctxt "adaptive_layer_height_variation_step label"
  5492. #~ msgid "Adaptive layers variation step size"
  5493. #~ msgstr "Размер шага вариации адаптивных слоев"
  5494. #~ msgctxt "adaptive_layer_height_threshold label"
  5495. #~ msgid "Adaptive layers threshold"
  5496. #~ msgstr "Порог для адаптивных слоев"
  5497. #~ msgctxt "skin_overlap description"
  5498. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the skin line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5499. #~ msgstr "Величина перекрытия между оболочкой и стенками в виде процентного отношения от ширины линии оболочки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Это значение является процентным отношением от средней ширины линии оболочки и внутренней стенки."
  5500. #~ msgctxt "skin_overlap_mm description"
  5501. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5502. #~ msgstr "Величина перекрытия между оболочкой и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с оболочкой."
  5503. #~ msgctxt "switch_extruder_retraction_amount description"
  5504. #~ msgid "The amount of retraction: Set at 0 for no retraction at all. This should generally be the same as the length of the heat zone."
  5505. #~ msgstr "Величина отката: Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева."
  5506. #~ msgctxt "retraction_combing description"
  5507. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas and also to only comb within the infill. Note that the 'Within Infill' option behaves exactly like the 'Not in Skin' option in earlier Cura releases."
  5508. #~ msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки, разрешив комбинг только в области заполнения. Обратите внимание, что опция «В области заполнения» предполагает те же действия, что и опция «Не в оболочке» более ранних выпусков Cura."
  5509. #~ msgctxt "connect_skin_polygons description"
  5510. #~ msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happend midway over infill this feature can reduce the top surface quality."
  5511. #~ msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней оболочки."
  5512. #~ msgctxt "infill_pattern description"
  5513. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5514. #~ msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «куб», «четверть куба», «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении."
  5515. #~ msgctxt "infill_pattern option concentric_3d"
  5516. #~ msgid "Concentric 3D"
  5517. #~ msgstr "Концентрическое 3D"
  5518. #~ msgctxt "retraction_combing description"
  5519. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  5520. #~ msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением."
  5521. #~ msgctxt "support_pattern option concentric_3d"
  5522. #~ msgid "Concentric 3D"
  5523. #~ msgstr "Концентрические 3D"
  5524. #~ msgctxt "support_interface_pattern option concentric_3d"
  5525. #~ msgid "Concentric 3D"
  5526. #~ msgstr "Концентрический 3D"
  5527. #~ msgctxt "support_roof_pattern option concentric_3d"
  5528. #~ msgid "Concentric 3D"
  5529. #~ msgstr "Концентрический 3D"
  5530. #~ msgctxt "support_bottom_pattern option concentric_3d"
  5531. #~ msgid "Concentric 3D"
  5532. #~ msgstr "Концентрический 3D"
  5533. #~ msgctxt "raft_base_line_spacing label"
  5534. #~ msgid "Raft Line Spacing"
  5535. #~ msgstr "Дистанция между линиями подложки"
  5536. #~ msgctxt "prime_tower_wall_thickness label"
  5537. #~ msgid "Prime Tower Thickness"
  5538. #~ msgstr "Толщина черновой башни"
  5539. #~ msgctxt "prime_tower_wall_thickness description"
  5540. #~ msgid "The thickness of the hollow prime tower. A thickness larger than half the Prime Tower Minimum Volume will result in a dense prime tower."
  5541. #~ msgstr "Толщина полости черновой башни. Если толщина больше половины минимального объёма черновой башни, то результатом будет увеличение плотности башни."
  5542. #~ msgctxt "dual_pre_wipe label"
  5543. #~ msgid "Wipe Nozzle After Switch"
  5544. #~ msgstr "Очистка сопла после переключения"
  5545. #~ msgctxt "dual_pre_wipe description"
  5546. #~ msgid "After switching extruder, wipe the oozed material off of the nozzle on the first thing printed. This performs a safe slow wipe move at a place where the oozed material causes least harm to the surface quality of your print."
  5547. #~ msgstr "После смены экструдера убираем на первой печатаемой части материал, вытекший из сопла. Выполняется безопасная медленная очистка на месте, где вытекший материал нанесёт наименьший ущерб качеству печатаемой поверхности."
  5548. #~ msgctxt "prime_tower_purge_volume label"
  5549. #~ msgid "Prime Tower Purge Volume"
  5550. #~ msgstr "Объём очистки черновой башни"
  5551. #~ msgctxt "prime_tower_purge_volume description"
  5552. #~ msgid "Amount of filament to be purged when wiping on the prime tower. Purging is useful for compensating the filament lost by oozing during inactivity of the nozzle."
  5553. #~ msgstr "Объём материала, который будет выдавлен при очистке на черновой башне. Очистка полезна для компенсации недостатка материала из-за его вытекания при простое сопла."
  5554. #~ msgctxt "bridge_wall_max_overhang label"
  5555. #~ msgid "Bridge Wall Max Overhang"
  5556. #~ msgstr "Максимальное нависание стенки мостика"
  5557. #~ msgctxt "bridge_wall_max_overhang description"
  5558. #~ msgid "The maximum allowed width of the region of air below a wall line before the wall is printed using bridge settings. Expressed as a percentage of the wall line width. When the air gap is wider than this, the wall line is printed using the bridge settings. Otherwise, the wall line is printed using the normal settings. The lower the value, the more likely it is that overhung wall lines will be printed using bridge settings."
  5559. #~ msgstr "Максимальная разрешенная ширина области воздушного зазора ниже линии стенки перед печатью стенки с использованием настроек мостика. Выражается в процентах от ширины линии стенки. Если ширина воздушного зазора превышает указанное значение, линия стенки печатается с использованием настроек мостика. В противном случае линия стенки печатается с использованием стандартных настроек. Чем меньше это значение, тем вероятнее, что линии стенки с нависанием будут напечатаны с использованием настроек мостика."
  5560. #~ msgctxt "optimize_wall_printing_order description"
  5561. #~ msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization."
  5562. #~ msgstr "Оптимизирует порядок, в котором печатаются стенки для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте печать с оптимизацией и без."
  5563. #~ msgctxt "retraction_combing option noskin"
  5564. #~ msgid "No Skin"
  5565. #~ msgstr "Без поверхности"
  5566. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  5567. #~ msgid "Alternate Cross 3D Pockets"
  5568. #~ msgstr "Смена карманов креста 3D"
  5569. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  5570. #~ msgid "Only apply pockets at half of the four-way crossings in the cross 3D pattern and alternate the location of the pockets between heights where the pattern is touching itself."
  5571. #~ msgstr "Применяется только к карманам на половине шаблона креста 3D и меняет расположение карманов по высоте, когда шаблон касается сам себя."
  5572. #~ msgctxt "infill_hollow label"
  5573. #~ msgid "Hollow Out Objects"
  5574. #~ msgstr "Пустые объекты"
  5575. #~ msgctxt "infill_hollow description"
  5576. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  5577. #~ msgstr "Удаляет всё заполнение и разрешает генерацию поддержек внутри объекта."
  5578. #~ msgctxt "adaptive_layer_height_variation description"
  5579. #~ msgid "The maximum allowed height different from the base layer height in mm."
  5580. #~ msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня (в мм)."
  5581. #~ msgctxt "center_object label"
  5582. #~ msgid "Center object"
  5583. #~ msgstr "Центрирование объекта"
  5584. #~ msgctxt "mesh_position_x label"
  5585. #~ msgid "Mesh position x"
  5586. #~ msgstr "X позиция объекта"
  5587. #~ msgctxt "mesh_position_y label"
  5588. #~ msgid "Mesh position y"
  5589. #~ msgstr "Y позиция объекта"
  5590. #~ msgctxt "mesh_position_z label"
  5591. #~ msgid "Mesh position z"
  5592. #~ msgstr "Z позиция объекта"
  5593. #~ msgctxt "machine_start_gcode label"
  5594. #~ msgid "Start GCode"
  5595. #~ msgstr "Начало G-кода"
  5596. #~ msgctxt "machine_start_gcode description"
  5597. #~ msgid ""
  5598. #~ "Gcode commands to be executed at the very start - separated by \n"
  5599. #~ "."
  5600. #~ msgstr ""
  5601. #~ "Команды в G-коде, которые будут выполнены при старте печати, разделённые \n"
  5602. #~ "."
  5603. #~ msgctxt "machine_end_gcode label"
  5604. #~ msgid "End GCode"
  5605. #~ msgstr "Конец G-кода"
  5606. #~ msgctxt "machine_end_gcode description"
  5607. #~ msgid ""
  5608. #~ "Gcode commands to be executed at the very end - separated by \n"
  5609. #~ "."
  5610. #~ msgstr ""
  5611. #~ "Команды в G-коде, которые будут выполнены в конце печати, разделённые \n"
  5612. #~ "."
  5613. #~ msgctxt "machine_gcode_flavor label"
  5614. #~ msgid "Gcode flavour"
  5615. #~ msgstr "Вариант G-кода"
  5616. #~ msgctxt "machine_gcode_flavor description"
  5617. #~ msgid "The type of gcode to be generated."
  5618. #~ msgstr "Генерируемый вариант G-кода."
  5619. #~ msgctxt "meshfix_keep_open_polygons description"
  5620. #~ msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper GCode."
  5621. #~ msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, что не могут быть сшиты. Этот параметр должен использоваться как последний вариант, когда уже ничего не помогает получить нормальный GCode."
  5622. #~ msgctxt "relative_extrusion description"
  5623. #~ msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the Gcode. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any Gcode script is output."
  5624. #~ msgstr "Использовать относительную, а не абсолютную экструзию. Использование относительной экструзии упрощает пост-обработку G-code. Однако, она не поддерживается всеми принтерами и может приводить к некоторой неточности при выдавливании материала. Независимо от этого параметра, режим экструзии будет всегда абсолютным перед выводом любого G-code скрипта."
  5625. #~ msgctxt "infill_offset_x description"
  5626. #~ msgid "The infill pattern is offset this distance along the X axis."
  5627. #~ msgstr "Расстояние смещения шаблона заполнения по оси X."
  5628. #~ msgctxt "infill_offset_y description"
  5629. #~ msgid "The infill pattern is offset this distance along the Y axis."
  5630. #~ msgstr "Расстояние смещения шаблона заполнения по оси Y."
  5631. #~ msgctxt "infill_overlap description"
  5632. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  5633. #~ msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением."
  5634. #~ msgctxt "skin_overlap description"
  5635. #~ msgid "The amount of overlap between the skin and the walls as a percentage of the line width. A slight overlap allows the walls to connect firmly to the skin. This is a percentage of the average line widths of the skin lines and the innermost wall."
  5636. #~ msgstr "Объём перекрытия между оболочкой и стенами в виде процента от ширины линии. Небольшое перекрытие позволяют стенам нормально соединяться с оболочкой. Это процент от средней ширины линии оболочки и внутренней стенки."
  5637. #~ msgctxt "material_bed_temperature description"
  5638. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  5639. #~ msgstr "Температура, используемая для горячего стола. Если указан 0, то горячий стол не нагревается при печати."
  5640. #~ msgctxt "wall_x_extruder_nr label"
  5641. #~ msgid "Inner Walls Extruder"
  5642. #~ msgstr "Печать внутренних стенок"
  5643. #~ msgctxt "infill_pattern description"
  5644. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, octet, quarter cubic and concentric patterns are fully printed every layer. Cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction."
  5645. #~ msgstr "Шаблон заполнения при печати. Заполнение линиями или зиг-загом меняет направление на соседних слоях, уменьшая стоимость материала. Сетчатый, треугольный, кубический, восьмигранный и концентрический шаблоны полностью печатаются на каждом слое. Кубическое, четверть кубическое и восьмигранное заполнение меняется на каждом слое для получения более равного распределения по каждому направлению."
  5646. #~ msgctxt "zig_zaggify_infill description"
  5647. #~ msgid "Connect the ends where the infill pattern meets the inner wall using a lines which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduces the effects on infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used."
  5648. #~ msgstr "Соединять концы линий заполнения где они соприкасаются со внутренней стенкой, используя линии, которые продолжают форму внутренней стенки. Активация этого параметра поможет крепче связывать заполнение со стенками и уменьшить влияние на качество заполнения вертикальных поверхностей. Отключение этого параметра уменьшает объём используемого материала."
  5649. #~ msgctxt "skirt_gap description"
  5650. #~ msgid ""
  5651. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  5652. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  5653. #~ msgstr ""
  5654. #~ "Расстояние по горизонтали между юбкой и первым слоем печатаемого объекта.\n"
  5655. #~ "Это минимальное расстояние, следующие линии юбки будут печататься наружу."
  5656. #~ msgctxt "z_offset_layer_0 label"
  5657. #~ msgid "Initial Layer Z Offset"
  5658. #~ msgstr "Смещение первого Z слоя"
  5659. #~ msgctxt "z_offset_layer_0 description"
  5660. #~ msgid "The extruder is offset from the normal height of the first layer by this amount. It can be positive (raised) or negative (lowered). Some filament types adhere to the build plate better if the extruder is raised slightly."
  5661. #~ msgstr "Экструдер смещается от стола на указанное значение при печати первого слоя. Значение может быть положительным (выше) или отрицательным (ниже). Некоторые типы материала связываются со столом лучше, когда экструдер чуть приподнят над столом."
  5662. #~ msgctxt "z_offset_taper_layers label"
  5663. #~ msgid "Z Offset Taper Layers"
  5664. #~ msgstr "Компенсация Z смещения"
  5665. #~ msgctxt "z_offset_taper_layers description"
  5666. #~ msgid "When non-zero, the Z offset is reduced to 0 over that many layers. A value of 0 means that the Z offset remains constant for all the layers in the print."
  5667. #~ msgstr "Если не ноль, то Z смещение уменьшается до 0 на указанном слое. Значение 0 указывает, что Z смещение остаётся постоянным на всех слоях печати."
  5668. #~ msgctxt "raft_smoothing description"
  5669. #~ msgid "This setting control how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle."
  5670. #~ msgstr "Данный параметр управляет тем, сколько внутренних углов в контуре будет сглажено. Внутренние углы сглаживаются полукругами с радиусом равным указанному значению. Данный параметр также убирает отверстия в контуре подложки, которые меньше получающегося круга."
  5671. #~ msgctxt "infill_pattern description"
  5672. #~ msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, cubic, tetrahedral and concentric patterns are fully printed every layer. Cubic and tetrahedral infill change with every layer to provide a more equal distribution of strength over each direction."
  5673. #~ msgstr "Шаблон для материала заполнения при печати. Заполнение линиями и зигзагом меняет направление при смене слоя, уменьшая стоимость материала. Сетчатый, треугольный и концентрический шаблоны полностью печатаются на каждом слое. Кубическое и тетраэдральное заполнение меняется на каждом слое для равного распределения прочности по каждому направлению."
  5674. #~ msgctxt "infill_pattern option tetrahedral"
  5675. #~ msgid "Tetrahedral"
  5676. #~ msgstr "Тетраэдр"
  5677. #~ msgctxt "expand_skins_into_infill label"
  5678. #~ msgid "Expand Skins Into Infill"
  5679. #~ msgstr "Расширять оболочку в заполнение"
  5680. #~ msgctxt "expand_skins_into_infill description"
  5681. #~ msgid "Expand skin areas of top and/or bottom skin of flat surfaces. By default, skins stop under the wall lines that surround infill but this can lead to holes appearing when the infill density is low. This setting extends the skins beyond the wall lines so that the infill on the next layer rests on skin."
  5682. #~ msgstr "Расширять области оболочки на верхних и/или нижних обшивках плоских поверхностях. По умолчанию, обшивки завершаются под линиями стенки, которые окружают заполнение, но это может приводить к отверстиям, появляющимся при малой плотности заполнения. Данный параметр расширяет обшивку позади линий стенки таким образом, что заполнение следующего слоя располагается на обшивке."
  5683. #~ msgctxt "expand_upper_skins label"
  5684. #~ msgid "Expand Top Skins Into Infill"
  5685. #~ msgstr "Расширять верхнюю оболочку в заполнение"
  5686. #~ msgctxt "expand_upper_skins description"
  5687. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  5688. #~ msgstr "Расширять области верхней оболочки (над ними будет воздух) так, что они поддерживают заполнение над ними."
  5689. #~ msgctxt "expand_lower_skins label"
  5690. #~ msgid "Expand Bottom Skins Into Infill"
  5691. #~ msgstr "Расширять нижнюю оболочку в заполнение"
  5692. #~ msgctxt "expand_lower_skins description"
  5693. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5694. #~ msgstr "Расширять области нижней оболочки (под ними будет воздух) так, что они сцепляются с слоями заполнения сверху и снизу."
  5695. #~ msgctxt "expand_skins_expand_distance description"
  5696. #~ msgid "The distance the skins are expanded into the infill. The default distance is enough to bridge the gap between the infill lines and will stop holes appearing in the skin where it meets the wall when the infill density is low. A smaller distance will often be sufficient."
  5697. #~ msgstr "Дистанция, на которую расширяется оболочка внутри заполнения. По умолчанию, дистанция достаточна для связывания промежутков между линиями заполнения и предотвращает появление отверстий в оболочке, где она встречается со стенкой когда плотность заполнения низкая. Меньшая дистанция чаще всего будет достаточной."
  5698. #~ msgctxt "support_skip_some_zags label"
  5699. #~ msgid "Skip Some ZigZags Connections"
  5700. #~ msgstr "Пропускать несколько соединений при зигзаге."
  5701. #~ msgctxt "support_skip_some_zags description"
  5702. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  5703. #~ msgstr "Пропускать несколько соединений при зигзаге, чтобы облегчить последующее удаление структуры поддержек."
  5704. #~ msgctxt "support_zag_skip_count label"
  5705. #~ msgid "ZigZag Connection Skip Count"
  5706. #~ msgstr "Количество пропускаемых соединений при зигзаге"
  5707. #~ msgctxt "support_zag_skip_count description"
  5708. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  5709. #~ msgstr "Пропускать одну в каждой N-ой линии соединений для облегчения последующего удаления структуры поддержек."
  5710. #~ msgctxt "machine_show_variants label"
  5711. #~ msgid "Show machine variants"
  5712. #~ msgstr "Показать варианты принтера"
  5713. #~ msgctxt "material_bed_temp_wait label"
  5714. #~ msgid "Wait for build plate heatup"
  5715. #~ msgstr "Ожидать пока прогреется стол"
  5716. #~ msgctxt "material_print_temp_wait label"
  5717. #~ msgid "Wait for nozzle heatup"
  5718. #~ msgstr "Ожидать пока прогреется голова"
  5719. #~ msgctxt "material_print_temp_prepend label"
  5720. #~ msgid "Include material temperatures"
  5721. #~ msgstr "Добавлять температуру из материала"
  5722. #~ msgctxt "material_bed_temp_prepend label"
  5723. #~ msgid "Include build plate temperature"
  5724. #~ msgstr "Добавлять температуру стола"
  5725. #~ msgctxt "machine_width label"
  5726. #~ msgid "Machine width"
  5727. #~ msgstr "Ширина принтера"
  5728. #~ msgctxt "machine_depth label"
  5729. #~ msgid "Machine depth"
  5730. #~ msgstr "Глубина принтера"
  5731. #~ msgctxt "machine_shape label"
  5732. #~ msgid "Build plate shape"
  5733. #~ msgstr "Форма стола"
  5734. #~ msgctxt "machine_height label"
  5735. #~ msgid "Machine height"
  5736. #~ msgstr "Высота принтера"
  5737. #~ msgctxt "machine_heated_bed label"
  5738. #~ msgid "Has heated build plate"
  5739. #~ msgstr "Имеет подогреваемый стол"
  5740. #~ msgctxt "machine_center_is_zero label"
  5741. #~ msgid "Is center origin"
  5742. #~ msgstr "Начало координат в центре"
  5743. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  5744. #~ msgid "RepRap (Marlin/Sprinter)"
  5745. #~ msgstr "RepRap (Marlin/Sprinter)"
  5746. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  5747. #~ msgid "RepRap (Volumetric)"
  5748. #~ msgstr "RepRap (Volumetric)"
  5749. #~ msgctxt "wall_thickness description"
  5750. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  5751. #~ msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество линий стенки."
  5752. #~ msgctxt "skin_overlap description"
  5753. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  5754. #~ msgstr "Величина перекрытия между оболочкой и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с оболочкой."
  5755. #~ msgctxt "support_interface_line_width description"
  5756. #~ msgid "Width of a single support interface line."
  5757. #~ msgstr "Ширина одной линии поддерживающей крыши."
  5758. #~ msgctxt "sub_div_rad_mult label"
  5759. #~ msgid "Cubic Subdivision Radius"
  5760. #~ msgstr "Радиус динамического куба"
  5761. #~ msgctxt "sub_div_rad_mult description"
  5762. #~ msgid "A multiplier on the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to more subdivisions, i.e. more small cubes."
  5763. #~ msgstr "Коэффициент для радиуса от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к увеличению делений, т.е. к более мелким кубам."
  5764. #~ msgctxt "expand_upper_skins label"
  5765. #~ msgid "Expand Upper Skins"
  5766. #~ msgstr "Расширять верхние оболочки"
  5767. #~ msgctxt "expand_upper_skins description"
  5768. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  5769. #~ msgstr "Расширять области верхней оболочки (над ними будет воздух) так, что они поддерживают заполнение над ними."
  5770. #~ msgctxt "expand_lower_skins label"
  5771. #~ msgid "Expand Lower Skins"
  5772. #~ msgstr "Расширять нижние оболочки"
  5773. #~ msgctxt "expand_lower_skins description"
  5774. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  5775. #~ msgstr "Расширять области нижней оболочки (под ними будет воздух) так, что они сцепляются с слоями заполнения сверху и снизу."
  5776. #~ msgctxt "speed_support_interface description"
  5777. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  5778. #~ msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать верха поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  5779. #~ msgctxt "acceleration_support_interface description"
  5780. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  5781. #~ msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей."
  5782. #~ msgctxt "jerk_support_interface description"
  5783. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  5784. #~ msgstr "Изменение максимальной мгновенной скорости, с которой печатается связующие слои поддержек."
  5785. #~ msgctxt "support_enable label"
  5786. #~ msgid "Enable Support"
  5787. #~ msgstr "Разрешить поддержки"
  5788. #~ msgctxt "support_enable description"
  5789. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  5790. #~ msgstr "Разрешить печать поддержек. Такие структуры поддерживают части моделей со значительными навесаниями."
  5791. #~ msgctxt "support_interface_extruder_nr description"
  5792. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  5793. #~ msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров."
  5794. #~ msgctxt "support_bottom_stair_step_height description"
  5795. #~ msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures."
  5796. #~ msgstr "Высота шагов лестнично-подобного низа поддержек, лежащих на модели. Малое значение усложняет последующее удаление поддержек, но слишком большое значение может сделать структуру поддержек нестабильной."
  5797. #~ msgctxt "support_bottom_height label"
  5798. #~ msgid "Support Bottom Thickness"
  5799. #~ msgstr "Толщина низа поддержек"
  5800. #~ msgctxt "support_bottom_height description"
  5801. #~ msgid "The thickness of the support bottoms. This controls the number of dense layers are printed on top of places of a model on which support rests."
  5802. #~ msgstr "Толщина низа поддержек. Управляет количеством плотных слоёв, которые будут напечатаны на верхних частях модели, где располагаются поддержки."
  5803. #~ msgctxt "support_interface_skip_height description"
  5804. #~ msgid "When checking where there's model above the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface."
  5805. #~ msgstr "Если выбрано, то поддержки печатаются с учётом указанной высоты шага. Меньшие значения нарезаются дольше, в то время как большие значения могут привести к печати обычных поддержек в таких местах, где должен быть связующий слой."
  5806. #~ msgctxt "support_interface_density description"
  5807. #~ msgid "Adjusts the density of the roofs and bottoms of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  5808. #~ msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять."
  5809. #~ msgctxt "support_interface_line_distance label"
  5810. #~ msgid "Support Interface Line Distance"
  5811. #~ msgstr "Дистанция между линиями связующего слоя"
  5812. #~ msgctxt "support_interface_line_distance description"
  5813. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  5814. #~ msgstr "Расстояние между линиями связующего слоя поддержки. Этот параметр вычисляется из \"Плотности связующего слоя\", но также может быть указан самостоятельно."
  5815. #~ msgctxt "magic_spiralize description"
  5816. #~ msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature used to be called Joris in older versions."
  5817. #~ msgstr "Спирально сглаживать движение по оси Z, печатая внешний контур. Приводит к постоянному увеличению Z координаты во время печати. Этот параметр превращает сплошной объект в одностенную модель с твёрдым дном. Раньше этот параметр назывался Joris."
  5818. #~ msgctxt "material_print_temperature description"
  5819. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  5820. #~ msgstr "Температура при печати. Установите 0 для предварительного разогрева вручную."
  5821. #~ msgctxt "material_bed_temperature description"
  5822. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  5823. #~ msgstr "Температура стола при печати. Установите 0 для предварительного разогрева вручную."
  5824. #~ msgctxt "support_z_distance description"
  5825. #~ msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. This value is rounded down to a multiple of the layer height."
  5826. #~ msgstr "Расстояние между верхом/низом структуры поддержек и печатаемой моделью. Этот зазор упрощает последующее удаление поддержек. Это значение округляется вниз и кратно высоте слоя."
  5827. #~ msgctxt "machine_extruder_count label"
  5828. #~ msgid "Number extruders"
  5829. #~ msgstr "Количество экструдеров"
  5830. #~ msgctxt "machine_heat_zone_length description"
  5831. #~ msgid "The distance from the tip of the nozzle in which heat from the nozzle is transfered to the filament."
  5832. #~ msgstr "Расстояние от кончика сопла, на котором тепло передаётся материалу."
  5833. #~ msgctxt "z_seam_type description"
  5834. #~ msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these at the back, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker."
  5835. #~ msgstr "Начальная точка для каждого пути в слое. Когда пути в последовательных слоях начинаются в одной и той же точке, то на модели может возникать вертикальный шов. Проще всего удалить шов, выравнивая начало путей позади. Менее заметным шов можно сделать, случайно устанавливая начало путей. Если выбрать самый короткий путь, то печать будет быстрее."
  5836. #~ msgctxt "z_seam_type option back"
  5837. #~ msgid "Back"
  5838. #~ msgstr "Позади"
  5839. #~ msgctxt "retraction_hop_enabled label"
  5840. #~ msgid "Z Hop when Retracted"
  5841. #~ msgstr "Поднятие оси Z при откате"
  5842. #~ msgctxt "speed_travel_layer_0 description"
  5843. #~ msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate."
  5844. #~ msgstr "Скорость перемещений на первом слое. Пониженное значение помогает избежать сдвига уже напечатанных частей со стола."
  5845. #~ msgctxt "retraction_combing description"
  5846. #~ msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only. It is also possible to avoid combing over top/bottom skin areas by combing within the infill only."
  5847. #~ msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это приводит к небольшому увеличению пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением."
  5848. #~ msgctxt "travel_avoid_other_parts label"
  5849. #~ msgid "Avoid Printed Parts when Traveling"
  5850. #~ msgstr "Избегать напечатанное"
  5851. #~ msgctxt "cool_fan_full_at_height description"
  5852. #~ msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from zero to regular fan speed."
  5853. #~ msgstr "Высота, на которой вентилятор должен вращаться с обыкновенной скорость. На более низких слоях вентилятор будет постепенно разгоняться с нуля до обычной скорости."
  5854. #~ msgctxt "cool_min_layer_time description"
  5855. #~ msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer."
  5856. #~ msgstr "Минимальное время, затрачиваемое на печать слоя. Эта величина заставляет принтер замедлиться, чтобы уложиться в указанное время при печати слоя. Это позволяет материалу остыть до нужной температуры перед печатью следующего слоя."
  5857. #~ msgctxt "prime_tower_wipe_enabled label"
  5858. #~ msgid "Wipe Nozzle on Prime Tower"
  5859. #~ msgstr "Вытирать сопло о черновую башню"
  5860. #~ msgctxt "multiple_mesh_overlap label"
  5861. #~ msgid "Dual Extrusion Overlap"
  5862. #~ msgstr "Перекрытие двойной экструзии"
  5863. #~ msgctxt "multiple_mesh_overlap description"
  5864. #~ msgid "Make the models printed with different extruder trains overlap a bit. This makes the different materials bond together better."
  5865. #~ msgstr "Приводит к небольшому перекрытию моделей, напечатанных разными экструдерами. Это приводит к лучшей связи двух материалов друг с другом."
  5866. #~ msgctxt "meshfix_union_all description"
  5867. #~ msgid "Ignore the internal geometry arising from overlapping volumes and print the volumes as one. This may cause internal cavities to disappear."
  5868. #~ msgstr "Игнорирование внутренней геометрии, возникшей при объединении объёмов и печать объёмов как единого целого. Это может привести к исчезновению внутренних поверхностей."
  5869. #~ msgctxt "carve_multiple_volumes description"
  5870. #~ msgid "Remove areas where multiple objecs are overlapping with each other. This is may be used if merged dual material objects overlap with each other."
  5871. #~ msgstr "Удаляет области где несколько объектов перекрываются друг с другом. Можно использовать при пересечении объединённых мультиматериальных объектов."
  5872. #~ msgctxt "remove_overlapping_walls_enabled label"
  5873. #~ msgid "Remove Overlapping Wall Parts"
  5874. #~ msgstr "Удаление перекрывающихся частей стены"
  5875. #~ msgctxt "remove_overlapping_walls_enabled description"
  5876. #~ msgid "Remove parts of a wall which share an overlap which would result in overextrusion in some places. These overlaps occur in thin parts and sharp corners in models."
  5877. #~ msgstr "Удаляет части стены, которые перекрываются. что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей."
  5878. #~ msgctxt "remove_overlapping_walls_0_enabled label"
  5879. #~ msgid "Remove Overlapping Outer Wall Parts"
  5880. #~ msgstr "Удаление перекрывающихся частей внешних стенок"
  5881. #~ msgctxt "remove_overlapping_walls_0_enabled description"
  5882. #~ msgid "Remove parts of an outer wall which share an overlap which would result in overextrusion in some places. These overlaps occur in thin pieces in a model and sharp corners."
  5883. #~ msgstr "Удаляет части внешней стены, которые перекрываются, что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей."
  5884. #~ msgctxt "remove_overlapping_walls_x_enabled label"
  5885. #~ msgid "Remove Overlapping Inner Wall Parts"
  5886. #~ msgstr "Удаление перекрывающихся частей внутренних стенок"
  5887. #~ msgctxt "remove_overlapping_walls_x_enabled description"
  5888. #~ msgid "Remove parts of an inner wall that would otherwise overlap and cause over-extrusion. These overlaps occur in thin pieces in a model and sharp corners."
  5889. #~ msgstr "Удаляет части внутренних стенок, которые в противном случае будут перекрываться и приводить к появлению излишков материала. Такие перекрытия образуются в тонких частях и острых углах моделей."
  5890. #~ msgctxt "fill_perimeter_gaps description"
  5891. #~ msgid "Fills the gaps between walls when overlapping inner wall parts are removed."
  5892. #~ msgstr "Заполняет зазоры между стенами после того, как перекрывающиеся части внутренних стенок были удалены."
  5893. #~ msgctxt "infill_line_distance label"
  5894. #~ msgid "Line Distance"
  5895. #~ msgstr "Дистанция заполнения"
  5896. #~ msgctxt "retraction_combing label"
  5897. #~ msgid "Enable Combing"
  5898. #~ msgstr "Разрешить комбинг"
  5899. #~ msgctxt "support_type label"
  5900. #~ msgid "Placement"
  5901. #~ msgstr "Размещение"
  5902. #~ msgctxt "support_xy_distance label"
  5903. #~ msgid "X/Y Distance"
  5904. #~ msgstr "Дистанция X/Y"
  5905. #~ msgctxt "support_z_distance label"
  5906. #~ msgid "Z Distance"
  5907. #~ msgstr "Z дистанция"
  5908. #~ msgctxt "support_top_distance label"
  5909. #~ msgid "Top Distance"
  5910. #~ msgstr "Дистанция сверху"
  5911. #~ msgctxt "support_join_distance label"
  5912. #~ msgid "Join Distance"
  5913. #~ msgstr "Дистанция объединения"
  5914. #~ msgctxt "support_area_smoothing label"
  5915. #~ msgid "Area Smoothing"
  5916. #~ msgstr "Сглаживание зон"
  5917. #~ msgctxt "support_area_smoothing description"
  5918. #~ msgid "Maximum distance in the X/Y directions of a line segment which is to be smoothed out. Ragged lines are introduced by the join distance and support bridge, which cause the machine to resonate. Smoothing the support areas won't cause them to break with the constraints, except it might change the overhang."
  5919. #~ msgstr "Максимальное расстояние по осям X/Y в сегменте линии, которая подлежит сглаживанию. Неровные линии появляются при дистанции объединения и поддержке в виде моста, что заставляет принтер резонировать. Сглаживание зон поддержек не приводит к нарушению ограничений, кроме возможных изменений в навесаниях."
  5920. #~ msgctxt "support_roof_height description"
  5921. #~ msgid "The thickness of the support roofs."
  5922. #~ msgstr "Толщина поддерживающей крыши."
  5923. #~ msgctxt "support_conical_angle label"
  5924. #~ msgid "Cone Angle"
  5925. #~ msgstr "Угол конуса"
  5926. #~ msgctxt "support_conical_min_width label"
  5927. #~ msgid "Cone Minimal Width"
  5928. #~ msgstr "Минимальная ширина конуса"
  5929. #~ msgctxt "adhesion_type label"
  5930. #~ msgid "Type"
  5931. #~ msgstr "Тип"
  5932. #~ msgctxt "raft_surface_speed label"
  5933. #~ msgid "Raft Surface Print Speed"
  5934. #~ msgstr "Скорость печати поверхности подложки"
  5935. #~ msgctxt "raft_interface_speed label"
  5936. #~ msgid "Raft Interface Print Speed"
  5937. #~ msgstr "Скорость печати связи подложки"
  5938. #~ msgctxt "raft_interface_speed description"
  5939. #~ msgid "The speed at which the interface raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high."
  5940. #~ msgstr "Скорость, на которой печатается связующий слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой."
  5941. #~ msgctxt "raft_surface_fan_speed label"
  5942. #~ msgid "Raft Surface Fan Speed"
  5943. #~ msgstr "Скорость вентилятора для поверхности подложки"
  5944. #~ msgctxt "raft_surface_fan_speed description"
  5945. #~ msgid "The fan speed for the surface raft layers."
  5946. #~ msgstr "Скорость вращения вентилятора при печати поверхности слоёв подложки."
  5947. #~ msgctxt "raft_interface_fan_speed label"
  5948. #~ msgid "Raft Interface Fan Speed"
  5949. #~ msgstr "Скорость вентилятора для связующего слоя"
  5950. #~ msgctxt "magic_mesh_surface_mode description"
  5951. #~ msgid "Print the surface instead of the volume. No infill, no top/bottom skin, just a single wall of which the middle coincides with the surface of the mesh. It's also possible to do both: print the insides of a closed volume as normal, but print all polygons not part of a closed volume as surface."
  5952. #~ msgstr "Печатать только поверхность. Никакого заполнения, никаких верхних нижних поверхностей, просто одна стенка, которая совпадает с поверхностью объекта. Позволяет делать и печать внутренностей закрытого объёма в виде нормалей, и печать всех полигонов, не входящих в закрытый объём, в виде поверхностей."