fdmprinter.def.json.po 347 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097
  1. # Cura
  2. # Copyright (C) 2018 Ultimaker
  3. # This file is distributed under the same license as the Cura package.
  4. # Ruben Dulek <r.dulek@ultimaker.com>, 2018.
  5. #
  6. msgid ""
  7. msgstr ""
  8. "Project-Id-Version: Cura 3.4\n"
  9. "Report-Msgid-Bugs-To: r.dulek@ultimaker.com\n"
  10. "POT-Creation-Date: 2018-03-29 08:36+0200\n"
  11. "PO-Revision-Date: 2018-04-11 14:40+0100\n"
  12. "Last-Translator: Bothof <info@bothof.nl>\n"
  13. "Language-Team: Ruslan Popov <ruslan.popov@gmail.com>, Russian <info@bothof.nl>\n"
  14. "Language: ru_RU\n"
  15. "MIME-Version: 1.0\n"
  16. "Content-Type: text/plain; charset=UTF-8\n"
  17. "Content-Transfer-Encoding: 8bit\n"
  18. "X-Generator: Poedit 2.0.4\n"
  19. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
  20. #: fdmprinter.def.json
  21. msgctxt "machine_settings label"
  22. msgid "Machine"
  23. msgstr "Принтер"
  24. #: fdmprinter.def.json
  25. msgctxt "machine_settings description"
  26. msgid "Machine specific settings"
  27. msgstr "Параметры, относящиеся к принтеру"
  28. #: fdmprinter.def.json
  29. msgctxt "machine_name label"
  30. msgid "Machine Type"
  31. msgstr "Тип принтера"
  32. #: fdmprinter.def.json
  33. msgctxt "machine_name description"
  34. msgid "The name of your 3D printer model."
  35. msgstr "Название модели вашего 3D принтера."
  36. #: fdmprinter.def.json
  37. msgctxt "machine_show_variants label"
  38. msgid "Show Machine Variants"
  39. msgstr "Показать варианты принтера"
  40. #: fdmprinter.def.json
  41. msgctxt "machine_show_variants description"
  42. msgid "Whether to show the different variants of this machine, which are described in separate json files."
  43. msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах."
  44. #: fdmprinter.def.json
  45. msgctxt "machine_start_gcode label"
  46. msgid "Start G-code"
  47. msgstr "Стартовый G-код"
  48. #: fdmprinter.def.json
  49. msgctxt "machine_start_gcode description"
  50. msgid ""
  51. "G-code commands to be executed at the very start - separated by \n"
  52. "."
  53. msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью \n."
  54. #: fdmprinter.def.json
  55. msgctxt "machine_end_gcode label"
  56. msgid "End G-code"
  57. msgstr "Завершающий G-код"
  58. #: fdmprinter.def.json
  59. msgctxt "machine_end_gcode description"
  60. msgid ""
  61. "G-code commands to be executed at the very end - separated by \n"
  62. "."
  63. msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью \n."
  64. #: fdmprinter.def.json
  65. msgctxt "material_guid label"
  66. msgid "Material GUID"
  67. msgstr "GUID материала"
  68. #: fdmprinter.def.json
  69. msgctxt "material_guid description"
  70. msgid "GUID of the material. This is set automatically. "
  71. msgstr "Идентификатор материала, устанавливается автоматически. "
  72. #: fdmprinter.def.json
  73. msgctxt "material_bed_temp_wait label"
  74. msgid "Wait for Build Plate Heatup"
  75. msgstr "Ожидать пока прогреется стол"
  76. #: fdmprinter.def.json
  77. msgctxt "material_bed_temp_wait description"
  78. msgid "Whether to insert a command to wait until the build plate temperature is reached at the start."
  79. msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати."
  80. #: fdmprinter.def.json
  81. msgctxt "material_print_temp_wait label"
  82. msgid "Wait for Nozzle Heatup"
  83. msgstr "Ожидать пока прогреется голова"
  84. #: fdmprinter.def.json
  85. msgctxt "material_print_temp_wait description"
  86. msgid "Whether to wait until the nozzle temperature is reached at the start."
  87. msgstr "Следует ли добавлять команду ожидания прогрева головы перед началом печати."
  88. #: fdmprinter.def.json
  89. msgctxt "material_print_temp_prepend label"
  90. msgid "Include Material Temperatures"
  91. msgstr "Использовать температуру из материала"
  92. #: fdmprinter.def.json
  93. msgctxt "material_print_temp_prepend description"
  94. 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."
  95. msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр."
  96. #: fdmprinter.def.json
  97. msgctxt "material_bed_temp_prepend label"
  98. msgid "Include Build Plate Temperature"
  99. msgstr "Добавлять температуру стола"
  100. #: fdmprinter.def.json
  101. msgctxt "material_bed_temp_prepend description"
  102. 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."
  103. msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр."
  104. #: fdmprinter.def.json
  105. msgctxt "machine_width label"
  106. msgid "Machine Width"
  107. msgstr "Ширина принтера"
  108. #: fdmprinter.def.json
  109. msgctxt "machine_width description"
  110. msgid "The width (X-direction) of the printable area."
  111. msgstr "Ширина (по оси X) области печати."
  112. #: fdmprinter.def.json
  113. msgctxt "machine_depth label"
  114. msgid "Machine Depth"
  115. msgstr "Глубина принтера"
  116. #: fdmprinter.def.json
  117. msgctxt "machine_depth description"
  118. msgid "The depth (Y-direction) of the printable area."
  119. msgstr "Ширина (по оси Y) области печати."
  120. #: fdmprinter.def.json
  121. msgctxt "machine_shape label"
  122. msgid "Build Plate Shape"
  123. msgstr "Форма стола"
  124. #: fdmprinter.def.json
  125. msgctxt "machine_shape description"
  126. msgid "The shape of the build plate without taking unprintable areas into account."
  127. msgstr "Форма стола без учёта непечатаемых областей."
  128. #: fdmprinter.def.json
  129. msgctxt "machine_shape option rectangular"
  130. msgid "Rectangular"
  131. msgstr "Прямоугольная"
  132. #: fdmprinter.def.json
  133. msgctxt "machine_shape option elliptic"
  134. msgid "Elliptic"
  135. msgstr "Эллиптическая"
  136. #: fdmprinter.def.json
  137. msgctxt "machine_buildplate_type label"
  138. msgid "Build Plate Material"
  139. msgstr "Материал рабочего стола"
  140. #: fdmprinter.def.json
  141. msgctxt "machine_buildplate_type description"
  142. msgid "The material of the build plate installed on the printer."
  143. msgstr "Материал рабочего стола, установленного на принтере."
  144. #: fdmprinter.def.json
  145. msgctxt "machine_buildplate_type option glass"
  146. msgid "Glass"
  147. msgstr "Стекло"
  148. #: fdmprinter.def.json
  149. msgctxt "machine_buildplate_type option aluminum"
  150. msgid "Aluminum"
  151. msgstr "Алюминий"
  152. #: fdmprinter.def.json
  153. msgctxt "machine_height label"
  154. msgid "Machine Height"
  155. msgstr "Высота принтера"
  156. #: fdmprinter.def.json
  157. msgctxt "machine_height description"
  158. msgid "The height (Z-direction) of the printable area."
  159. msgstr "Ширина (по оси Z) области печати."
  160. #: fdmprinter.def.json
  161. msgctxt "machine_heated_bed label"
  162. msgid "Has Heated Build Plate"
  163. msgstr "Имеет подогреваемый стол"
  164. #: fdmprinter.def.json
  165. msgctxt "machine_heated_bed description"
  166. msgid "Whether the machine has a heated build plate present."
  167. msgstr "Имеет ли принтер подогреваемый стол."
  168. #: fdmprinter.def.json
  169. msgctxt "machine_center_is_zero label"
  170. msgid "Is Center Origin"
  171. msgstr "Начало координат в центре"
  172. #: fdmprinter.def.json
  173. msgctxt "machine_center_is_zero description"
  174. msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area."
  175. msgstr "Следует ли считать центром координат по осям X/Y в центре области печати."
  176. #: fdmprinter.def.json
  177. msgctxt "machine_extruder_count label"
  178. msgid "Number of Extruders"
  179. msgstr "Количество экструдеров"
  180. #: fdmprinter.def.json
  181. msgctxt "machine_extruder_count description"
  182. msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle."
  183. msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла."
  184. #: fdmprinter.def.json
  185. msgctxt "extruders_enabled_count label"
  186. msgid "Number of Extruders that are enabled"
  187. msgstr "Количество включенных экструдеров"
  188. #: fdmprinter.def.json
  189. msgctxt "extruders_enabled_count description"
  190. msgid "Number of extruder trains that are enabled; automatically set in software"
  191. msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением"
  192. #: fdmprinter.def.json
  193. msgctxt "machine_nozzle_tip_outer_diameter label"
  194. msgid "Outer nozzle diameter"
  195. msgstr "Внешний диаметр сопла"
  196. #: fdmprinter.def.json
  197. msgctxt "machine_nozzle_tip_outer_diameter description"
  198. msgid "The outer diameter of the tip of the nozzle."
  199. msgstr "Внешний диаметр кончика сопла."
  200. #: fdmprinter.def.json
  201. msgctxt "machine_nozzle_head_distance label"
  202. msgid "Nozzle length"
  203. msgstr "Длина сопла"
  204. #: fdmprinter.def.json
  205. msgctxt "machine_nozzle_head_distance description"
  206. msgid "The height difference between the tip of the nozzle and the lowest part of the print head."
  207. msgstr "Высота между кончиком сопла и нижней частью головы."
  208. #: fdmprinter.def.json
  209. msgctxt "machine_nozzle_expansion_angle label"
  210. msgid "Nozzle angle"
  211. msgstr "Угол сопла"
  212. #: fdmprinter.def.json
  213. msgctxt "machine_nozzle_expansion_angle description"
  214. msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle."
  215. msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла."
  216. #: fdmprinter.def.json
  217. msgctxt "machine_heat_zone_length label"
  218. msgid "Heat zone length"
  219. msgstr "Длина зоны нагрева"
  220. #: fdmprinter.def.json
  221. msgctxt "machine_heat_zone_length description"
  222. msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament."
  223. msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу."
  224. #: fdmprinter.def.json
  225. msgctxt "machine_filament_park_distance label"
  226. msgid "Filament Park Distance"
  227. msgstr "Расстояние парковки материала"
  228. #: fdmprinter.def.json
  229. msgctxt "machine_filament_park_distance description"
  230. msgid "The distance from the tip of the nozzle where to park the filament when an extruder is no longer used."
  231. msgstr "Расстояние от кончика сопла до места, где останавливается материал, пока экструдер не используется."
  232. #: fdmprinter.def.json
  233. msgctxt "machine_nozzle_temp_enabled label"
  234. msgid "Enable Nozzle Temperature Control"
  235. msgstr "Разрешить управление температурой сопла"
  236. #: fdmprinter.def.json
  237. msgctxt "machine_nozzle_temp_enabled description"
  238. msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura."
  239. msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura."
  240. #: fdmprinter.def.json
  241. msgctxt "machine_nozzle_heat_up_speed label"
  242. msgid "Heat up speed"
  243. msgstr "Скорость нагрева"
  244. #: fdmprinter.def.json
  245. msgctxt "machine_nozzle_heat_up_speed description"
  246. msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature."
  247. msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания."
  248. #: fdmprinter.def.json
  249. msgctxt "machine_nozzle_cool_down_speed label"
  250. msgid "Cool down speed"
  251. msgstr "Скорость охлаждения"
  252. #: fdmprinter.def.json
  253. msgctxt "machine_nozzle_cool_down_speed description"
  254. msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature."
  255. msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания."
  256. #: fdmprinter.def.json
  257. msgctxt "machine_min_cool_heat_time_window label"
  258. msgid "Minimal Time Standby Temperature"
  259. msgstr "Время перехода в ожидание"
  260. #: fdmprinter.def.json
  261. msgctxt "machine_min_cool_heat_time_window description"
  262. 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."
  263. msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания."
  264. #: fdmprinter.def.json
  265. msgctxt "machine_gcode_flavor label"
  266. msgid "G-code flavour"
  267. msgstr "Вариант G-кода"
  268. #: fdmprinter.def.json
  269. msgctxt "machine_gcode_flavor description"
  270. msgid "The type of g-code to be generated."
  271. msgstr "Генерируемый тип G-кода."
  272. #: fdmprinter.def.json
  273. msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  274. msgid "Marlin"
  275. msgstr "Marlin"
  276. #: fdmprinter.def.json
  277. msgctxt "machine_gcode_flavor option RepRap (Volumetric)"
  278. msgid "Marlin (Volumetric)"
  279. msgstr "Marlin (Volumetric)"
  280. #: fdmprinter.def.json
  281. msgctxt "machine_gcode_flavor option RepRap (RepRap)"
  282. msgid "RepRap"
  283. msgstr "RepRap"
  284. #: fdmprinter.def.json
  285. msgctxt "machine_gcode_flavor option UltiGCode"
  286. msgid "Ultimaker 2"
  287. msgstr "Ultimaker 2"
  288. #: fdmprinter.def.json
  289. msgctxt "machine_gcode_flavor option Griffin"
  290. msgid "Griffin"
  291. msgstr "Griffin"
  292. #: fdmprinter.def.json
  293. msgctxt "machine_gcode_flavor option Makerbot"
  294. msgid "Makerbot"
  295. msgstr "Makerbot"
  296. #: fdmprinter.def.json
  297. msgctxt "machine_gcode_flavor option BFB"
  298. msgid "Bits from Bytes"
  299. msgstr "Bits from Bytes"
  300. #: fdmprinter.def.json
  301. msgctxt "machine_gcode_flavor option MACH3"
  302. msgid "Mach3"
  303. msgstr "Mach3"
  304. #: fdmprinter.def.json
  305. msgctxt "machine_gcode_flavor option Repetier"
  306. msgid "Repetier"
  307. msgstr "Repetier"
  308. #: fdmprinter.def.json
  309. msgctxt "machine_firmware_retract label"
  310. msgid "Firmware Retraction"
  311. msgstr "Откат встроенного программного обеспечения"
  312. #: fdmprinter.def.json
  313. msgctxt "machine_firmware_retract description"
  314. msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material."
  315. msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала."
  316. #: fdmprinter.def.json
  317. msgctxt "machine_disallowed_areas label"
  318. msgid "Disallowed areas"
  319. msgstr "Запрещённые области"
  320. #: fdmprinter.def.json
  321. msgctxt "machine_disallowed_areas description"
  322. msgid "A list of polygons with areas the print head is not allowed to enter."
  323. msgstr "Список полигонов с областями, в которые голове запрещено заходить."
  324. #: fdmprinter.def.json
  325. msgctxt "nozzle_disallowed_areas label"
  326. msgid "Nozzle Disallowed Areas"
  327. msgstr "Запрещённые зоны для сопла"
  328. #: fdmprinter.def.json
  329. msgctxt "nozzle_disallowed_areas description"
  330. msgid "A list of polygons with areas the nozzle is not allowed to enter."
  331. msgstr "Список полигонов с областями, в которые не должно заходить сопло."
  332. #: fdmprinter.def.json
  333. msgctxt "machine_head_polygon label"
  334. msgid "Machine head polygon"
  335. msgstr "Полигон головы принтера"
  336. #: fdmprinter.def.json
  337. msgctxt "machine_head_polygon description"
  338. msgid "A 2D silhouette of the print head (fan caps excluded)."
  339. msgstr "2D контур головы принтера (исключая крышки вентилятора)."
  340. #: fdmprinter.def.json
  341. msgctxt "machine_head_with_fans_polygon label"
  342. msgid "Machine head & Fan polygon"
  343. msgstr "Полигон головы принтера и вентилятора"
  344. #: fdmprinter.def.json
  345. msgctxt "machine_head_with_fans_polygon description"
  346. msgid "A 2D silhouette of the print head (fan caps included)."
  347. msgstr "2D контур головы принтера (включая крышки вентилятора)."
  348. #: fdmprinter.def.json
  349. msgctxt "gantry_height label"
  350. msgid "Gantry height"
  351. msgstr "Высота портала"
  352. #: fdmprinter.def.json
  353. msgctxt "gantry_height description"
  354. msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)."
  355. msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)."
  356. #: fdmprinter.def.json
  357. msgctxt "machine_nozzle_id label"
  358. msgid "Nozzle ID"
  359. msgstr "Идентификатор сопла"
  360. #: fdmprinter.def.json
  361. msgctxt "machine_nozzle_id description"
  362. msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"."
  363. msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"."
  364. #: fdmprinter.def.json
  365. msgctxt "machine_nozzle_size label"
  366. msgid "Nozzle Diameter"
  367. msgstr "Диаметр сопла"
  368. #: fdmprinter.def.json
  369. msgctxt "machine_nozzle_size description"
  370. msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size."
  371. msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера."
  372. #: fdmprinter.def.json
  373. msgctxt "machine_use_extruder_offset_to_offset_coords label"
  374. msgid "Offset With Extruder"
  375. msgstr "Смещение экструдера"
  376. #: fdmprinter.def.json
  377. msgctxt "machine_use_extruder_offset_to_offset_coords description"
  378. msgid "Apply the extruder offset to the coordinate system."
  379. msgstr "Применить смещение экструдера к системе координат."
  380. #: fdmprinter.def.json
  381. msgctxt "extruder_prime_pos_z label"
  382. msgid "Extruder Prime Z Position"
  383. msgstr "Z координата начала печати"
  384. #: fdmprinter.def.json
  385. msgctxt "extruder_prime_pos_z description"
  386. msgid "The Z coordinate of the position where the nozzle primes at the start of printing."
  387. msgstr "Позиция кончика сопла на оси Z при старте печати."
  388. #: fdmprinter.def.json
  389. msgctxt "extruder_prime_pos_abs label"
  390. msgid "Absolute Extruder Prime Position"
  391. msgstr "Абсолютная позиция экструдера при старте"
  392. #: fdmprinter.def.json
  393. msgctxt "extruder_prime_pos_abs description"
  394. msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head."
  395. msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы."
  396. #: fdmprinter.def.json
  397. msgctxt "machine_max_feedrate_x label"
  398. msgid "Maximum Speed X"
  399. msgstr "Максимальная скорость по оси X"
  400. #: fdmprinter.def.json
  401. msgctxt "machine_max_feedrate_x description"
  402. msgid "The maximum speed for the motor of the X-direction."
  403. msgstr "Максимальная скорость для мотора оси X."
  404. #: fdmprinter.def.json
  405. msgctxt "machine_max_feedrate_y label"
  406. msgid "Maximum Speed Y"
  407. msgstr "Максимальная скорость по оси Y"
  408. #: fdmprinter.def.json
  409. msgctxt "machine_max_feedrate_y description"
  410. msgid "The maximum speed for the motor of the Y-direction."
  411. msgstr "Максимальная скорость для мотора оси Y."
  412. #: fdmprinter.def.json
  413. msgctxt "machine_max_feedrate_z label"
  414. msgid "Maximum Speed Z"
  415. msgstr "Максимальная скорость по оси Z"
  416. #: fdmprinter.def.json
  417. msgctxt "machine_max_feedrate_z description"
  418. msgid "The maximum speed for the motor of the Z-direction."
  419. msgstr "Максимальная скорость для мотора оси Z."
  420. #: fdmprinter.def.json
  421. msgctxt "machine_max_feedrate_e label"
  422. msgid "Maximum Feedrate"
  423. msgstr "Максимальная подача"
  424. #: fdmprinter.def.json
  425. msgctxt "machine_max_feedrate_e description"
  426. msgid "The maximum speed of the filament."
  427. msgstr "Максимальная скорость подачи материала."
  428. #: fdmprinter.def.json
  429. msgctxt "machine_max_acceleration_x label"
  430. msgid "Maximum Acceleration X"
  431. msgstr "Максимальное ускорение по оси X"
  432. #: fdmprinter.def.json
  433. msgctxt "machine_max_acceleration_x description"
  434. msgid "Maximum acceleration for the motor of the X-direction"
  435. msgstr "Максимальное ускорение для мотора оси X"
  436. #: fdmprinter.def.json
  437. msgctxt "machine_max_acceleration_y label"
  438. msgid "Maximum Acceleration Y"
  439. msgstr "Максимальное ускорение по оси Y"
  440. #: fdmprinter.def.json
  441. msgctxt "machine_max_acceleration_y description"
  442. msgid "Maximum acceleration for the motor of the Y-direction."
  443. msgstr "Максимальное ускорение для мотора оси Y."
  444. #: fdmprinter.def.json
  445. msgctxt "machine_max_acceleration_z label"
  446. msgid "Maximum Acceleration Z"
  447. msgstr "Максимальное ускорение по оси Z"
  448. #: fdmprinter.def.json
  449. msgctxt "machine_max_acceleration_z description"
  450. msgid "Maximum acceleration for the motor of the Z-direction."
  451. msgstr "Максимальное ускорение для мотора оси Z."
  452. #: fdmprinter.def.json
  453. msgctxt "machine_max_acceleration_e label"
  454. msgid "Maximum Filament Acceleration"
  455. msgstr "Максимальное ускорение материала"
  456. #: fdmprinter.def.json
  457. msgctxt "machine_max_acceleration_e description"
  458. msgid "Maximum acceleration for the motor of the filament."
  459. msgstr "Максимальное ускорение мотора подачи материала."
  460. #: fdmprinter.def.json
  461. msgctxt "machine_acceleration label"
  462. msgid "Default Acceleration"
  463. msgstr "Стандартное ускорение"
  464. #: fdmprinter.def.json
  465. msgctxt "machine_acceleration description"
  466. msgid "The default acceleration of print head movement."
  467. msgstr "Стандартное ускорение для движений головы."
  468. #: fdmprinter.def.json
  469. msgctxt "machine_max_jerk_xy label"
  470. msgid "Default X-Y Jerk"
  471. msgstr "Обычный X-Y рывок"
  472. #: fdmprinter.def.json
  473. msgctxt "machine_max_jerk_xy description"
  474. msgid "Default jerk for movement in the horizontal plane."
  475. msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости."
  476. #: fdmprinter.def.json
  477. msgctxt "machine_max_jerk_z label"
  478. msgid "Default Z Jerk"
  479. msgstr "Обычный Z рывок"
  480. #: fdmprinter.def.json
  481. msgctxt "machine_max_jerk_z description"
  482. msgid "Default jerk for the motor of the Z-direction."
  483. msgstr "Стандартное изменение ускорения для мотора по оси Z."
  484. #: fdmprinter.def.json
  485. msgctxt "machine_max_jerk_e label"
  486. msgid "Default Filament Jerk"
  487. msgstr "Обычный рывок материала"
  488. #: fdmprinter.def.json
  489. msgctxt "machine_max_jerk_e description"
  490. msgid "Default jerk for the motor of the filament."
  491. msgstr "Стандартное изменение ускорения для мотора, подающего материал."
  492. #: fdmprinter.def.json
  493. msgctxt "machine_steps_per_mm_x label"
  494. msgid "Steps per Millimeter (X)"
  495. msgstr "Количество шагов на миллиметр (X)"
  496. #: fdmprinter.def.json
  497. msgctxt "machine_steps_per_mm_x description"
  498. msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction."
  499. msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X."
  500. #: fdmprinter.def.json
  501. msgctxt "machine_steps_per_mm_y label"
  502. msgid "Steps per Millimeter (Y)"
  503. msgstr "Количество шагов на миллиметр (Y)"
  504. #: fdmprinter.def.json
  505. msgctxt "machine_steps_per_mm_y description"
  506. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction."
  507. msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y."
  508. #: fdmprinter.def.json
  509. msgctxt "machine_steps_per_mm_z label"
  510. msgid "Steps per Millimeter (Z)"
  511. msgstr "Количество шагов на миллиметр (Z)"
  512. #: fdmprinter.def.json
  513. msgctxt "machine_steps_per_mm_z description"
  514. msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction."
  515. msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z."
  516. #: fdmprinter.def.json
  517. msgctxt "machine_steps_per_mm_e label"
  518. msgid "Steps per Millimeter (E)"
  519. msgstr "Количество шагов на миллиметр (E)"
  520. #: fdmprinter.def.json
  521. msgctxt "machine_steps_per_mm_e description"
  522. msgid "How many steps of the stepper motors will result in one millimeter of extrusion."
  523. msgstr "Количество шагов шаговых двигателей, приводящее к экструзии на один миллиметр."
  524. #: fdmprinter.def.json
  525. msgctxt "machine_endstop_positive_direction_x label"
  526. msgid "X Endstop in Positive Direction"
  527. msgstr "Ограничитель хода на оси X в прямом направлении"
  528. #: fdmprinter.def.json
  529. msgctxt "machine_endstop_positive_direction_x description"
  530. msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)."
  531. msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)."
  532. #: fdmprinter.def.json
  533. msgctxt "machine_endstop_positive_direction_y label"
  534. msgid "Y Endstop in Positive Direction"
  535. msgstr "Ограничитель хода на оси Y в прямом направлении"
  536. #: fdmprinter.def.json
  537. msgctxt "machine_endstop_positive_direction_y description"
  538. msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)."
  539. msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)."
  540. #: fdmprinter.def.json
  541. msgctxt "machine_endstop_positive_direction_z label"
  542. msgid "Z Endstop in Positive Direction"
  543. msgstr "Ограничитель хода на оси Z в прямом направлении"
  544. #: fdmprinter.def.json
  545. msgctxt "machine_endstop_positive_direction_z description"
  546. msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)."
  547. msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)."
  548. #: fdmprinter.def.json
  549. msgctxt "machine_minimum_feedrate label"
  550. msgid "Minimum Feedrate"
  551. msgstr "Минимальная подача"
  552. #: fdmprinter.def.json
  553. msgctxt "machine_minimum_feedrate description"
  554. msgid "The minimal movement speed of the print head."
  555. msgstr "Минимальная скорость движения головы."
  556. #: fdmprinter.def.json
  557. msgctxt "machine_feeder_wheel_diameter label"
  558. msgid "Feeder Wheel Diameter"
  559. msgstr "Диаметр колесика питателя"
  560. #: fdmprinter.def.json
  561. msgctxt "machine_feeder_wheel_diameter description"
  562. msgid "The diameter of the wheel that drives the material in the feeder."
  563. msgstr "Диаметр колесика, перемещающего материал в питатель."
  564. #: fdmprinter.def.json
  565. msgctxt "resolution label"
  566. msgid "Quality"
  567. msgstr "Качество"
  568. #: fdmprinter.def.json
  569. msgctxt "resolution description"
  570. msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)"
  571. msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)"
  572. #: fdmprinter.def.json
  573. msgctxt "layer_height label"
  574. msgid "Layer Height"
  575. msgstr "Высота слоя"
  576. #: fdmprinter.def.json
  577. msgctxt "layer_height description"
  578. msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution."
  579. msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением."
  580. #: fdmprinter.def.json
  581. msgctxt "layer_height_0 label"
  582. msgid "Initial Layer Height"
  583. msgstr "Высота первого слоя"
  584. #: fdmprinter.def.json
  585. msgctxt "layer_height_0 description"
  586. msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier."
  587. msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу."
  588. #: fdmprinter.def.json
  589. msgctxt "line_width label"
  590. msgid "Line Width"
  591. msgstr "Ширина линии"
  592. #: fdmprinter.def.json
  593. msgctxt "line_width description"
  594. 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."
  595. msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати."
  596. #: fdmprinter.def.json
  597. msgctxt "wall_line_width label"
  598. msgid "Wall Line Width"
  599. msgstr "Ширина линии стенки"
  600. #: fdmprinter.def.json
  601. msgctxt "wall_line_width description"
  602. msgid "Width of a single wall line."
  603. msgstr "Ширина одной линии стенки."
  604. #: fdmprinter.def.json
  605. msgctxt "wall_line_width_0 label"
  606. msgid "Outer Wall Line Width"
  607. msgstr "Ширина линии внешней стенки"
  608. #: fdmprinter.def.json
  609. msgctxt "wall_line_width_0 description"
  610. msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed."
  611. msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали."
  612. #: fdmprinter.def.json
  613. msgctxt "wall_line_width_x label"
  614. msgid "Inner Wall(s) Line Width"
  615. msgstr "Ширина линии внутренней стенки"
  616. #: fdmprinter.def.json
  617. msgctxt "wall_line_width_x description"
  618. msgid "Width of a single wall line for all wall lines except the outermost one."
  619. msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней."
  620. #: fdmprinter.def.json
  621. msgctxt "skin_line_width label"
  622. msgid "Top/Bottom Line Width"
  623. msgstr "Ширина линии дна/крышки"
  624. #: fdmprinter.def.json
  625. msgctxt "skin_line_width description"
  626. msgid "Width of a single top/bottom line."
  627. msgstr "Ширина одной линии дна/крышки."
  628. #: fdmprinter.def.json
  629. msgctxt "infill_line_width label"
  630. msgid "Infill Line Width"
  631. msgstr "Ширина линии заполнения"
  632. #: fdmprinter.def.json
  633. msgctxt "infill_line_width description"
  634. msgid "Width of a single infill line."
  635. msgstr "Ширина одной линии заполнения."
  636. #: fdmprinter.def.json
  637. msgctxt "skirt_brim_line_width label"
  638. msgid "Skirt/Brim Line Width"
  639. msgstr "Ширина линии юбки/каймы"
  640. #: fdmprinter.def.json
  641. msgctxt "skirt_brim_line_width description"
  642. msgid "Width of a single skirt or brim line."
  643. msgstr "Ширина одной линии юбки или каймы."
  644. #: fdmprinter.def.json
  645. msgctxt "support_line_width label"
  646. msgid "Support Line Width"
  647. msgstr "Ширина линии поддержки"
  648. #: fdmprinter.def.json
  649. msgctxt "support_line_width description"
  650. msgid "Width of a single support structure line."
  651. msgstr "Ширина одной линии поддержки."
  652. #: fdmprinter.def.json
  653. msgctxt "support_interface_line_width label"
  654. msgid "Support Interface Line Width"
  655. msgstr "Ширина линии поддерживающей крыши"
  656. #: fdmprinter.def.json
  657. msgctxt "support_interface_line_width description"
  658. msgid "Width of a single line of support roof or floor."
  659. msgstr "Ширина одной линии поддержки крышки или дна."
  660. #: fdmprinter.def.json
  661. msgctxt "support_roof_line_width label"
  662. msgid "Support Roof Line Width"
  663. msgstr "Ширина линии крыши поддержки"
  664. #: fdmprinter.def.json
  665. msgctxt "support_roof_line_width description"
  666. msgid "Width of a single support roof line."
  667. msgstr "Ширина одной линии крыши поддержки."
  668. #: fdmprinter.def.json
  669. msgctxt "support_bottom_line_width label"
  670. msgid "Support Floor Line Width"
  671. msgstr "Ширина линии дна поддержки"
  672. #: fdmprinter.def.json
  673. msgctxt "support_bottom_line_width description"
  674. msgid "Width of a single support floor line."
  675. msgstr "Ширина одной линии дна поддержки."
  676. #: fdmprinter.def.json
  677. msgctxt "prime_tower_line_width label"
  678. msgid "Prime Tower Line Width"
  679. msgstr "Ширина линии черновой башни"
  680. #: fdmprinter.def.json
  681. msgctxt "prime_tower_line_width description"
  682. msgid "Width of a single prime tower line."
  683. msgstr "Ширина отдельной линии черновой башни."
  684. #: fdmprinter.def.json
  685. msgctxt "initial_layer_line_width_factor label"
  686. msgid "Initial Layer Line Width"
  687. msgstr "Ширина линии первого слоя"
  688. #: fdmprinter.def.json
  689. msgctxt "initial_layer_line_width_factor description"
  690. msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion."
  691. msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу."
  692. #: fdmprinter.def.json
  693. msgctxt "shell label"
  694. msgid "Shell"
  695. msgstr "Ограждение"
  696. #: fdmprinter.def.json
  697. msgctxt "shell description"
  698. msgid "Shell"
  699. msgstr "Ограждение"
  700. #: fdmprinter.def.json
  701. msgctxt "wall_extruder_nr label"
  702. msgid "Wall Extruder"
  703. msgstr "Экструдер стенок"
  704. #: fdmprinter.def.json
  705. msgctxt "wall_extruder_nr description"
  706. msgid "The extruder train used for printing the walls. This is used in multi-extrusion."
  707. msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров."
  708. #: fdmprinter.def.json
  709. msgctxt "wall_0_extruder_nr label"
  710. msgid "Outer Wall Extruder"
  711. msgstr "Экструдер внешних стенок"
  712. #: fdmprinter.def.json
  713. msgctxt "wall_0_extruder_nr description"
  714. msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion."
  715. msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров."
  716. #: fdmprinter.def.json
  717. msgctxt "wall_x_extruder_nr label"
  718. msgid "Inner Wall Extruder"
  719. msgstr "Экструдер внутренней стенки"
  720. #: fdmprinter.def.json
  721. msgctxt "wall_x_extruder_nr description"
  722. msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion."
  723. msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров."
  724. #: fdmprinter.def.json
  725. msgctxt "wall_thickness label"
  726. msgid "Wall Thickness"
  727. msgstr "Толщина стенки"
  728. #: fdmprinter.def.json
  729. msgctxt "wall_thickness description"
  730. msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  731. msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок."
  732. #: fdmprinter.def.json
  733. msgctxt "wall_line_count label"
  734. msgid "Wall Line Count"
  735. msgstr "Количество линий стенки"
  736. #: fdmprinter.def.json
  737. msgctxt "wall_line_count description"
  738. msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number."
  739. msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого."
  740. #: fdmprinter.def.json
  741. msgctxt "wall_0_wipe_dist label"
  742. msgid "Outer Wall Wipe Distance"
  743. msgstr "Расстояние очистки внешней стенки"
  744. #: fdmprinter.def.json
  745. msgctxt "wall_0_wipe_dist description"
  746. msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better."
  747. msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов."
  748. #: fdmprinter.def.json
  749. msgctxt "roofing_extruder_nr label"
  750. msgid "Top Surface Skin Extruder"
  751. msgstr "Экструдер для печати крышки"
  752. #: fdmprinter.def.json
  753. msgctxt "roofing_extruder_nr description"
  754. msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion."
  755. msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров."
  756. #: fdmprinter.def.json
  757. msgctxt "roofing_layer_count label"
  758. msgid "Top Surface Skin Layers"
  759. msgstr "Слои верхней оболочки"
  760. #: fdmprinter.def.json
  761. msgctxt "roofing_layer_count description"
  762. msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces."
  763. msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве."
  764. #: fdmprinter.def.json
  765. msgctxt "top_bottom_extruder_nr label"
  766. msgid "Top/Bottom Extruder"
  767. msgstr "Экструдер дна/крышки"
  768. #: fdmprinter.def.json
  769. msgctxt "top_bottom_extruder_nr description"
  770. msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion."
  771. msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров."
  772. #: fdmprinter.def.json
  773. msgctxt "top_bottom_thickness label"
  774. msgid "Top/Bottom Thickness"
  775. msgstr "Толщина дна/крышки"
  776. #: fdmprinter.def.json
  777. msgctxt "top_bottom_thickness description"
  778. 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."
  779. msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке."
  780. #: fdmprinter.def.json
  781. msgctxt "top_thickness label"
  782. msgid "Top Thickness"
  783. msgstr "Толщина крышки"
  784. #: fdmprinter.def.json
  785. msgctxt "top_thickness description"
  786. msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers."
  787. msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке."
  788. #: fdmprinter.def.json
  789. msgctxt "top_layers label"
  790. msgid "Top Layers"
  791. msgstr "Слои крышки"
  792. #: fdmprinter.def.json
  793. msgctxt "top_layers description"
  794. msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number."
  795. msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого."
  796. #: fdmprinter.def.json
  797. msgctxt "bottom_thickness label"
  798. msgid "Bottom Thickness"
  799. msgstr "Толщина дна"
  800. #: fdmprinter.def.json
  801. msgctxt "bottom_thickness description"
  802. msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers."
  803. msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне."
  804. #: fdmprinter.def.json
  805. msgctxt "bottom_layers label"
  806. msgid "Bottom Layers"
  807. msgstr "Слои дна"
  808. #: fdmprinter.def.json
  809. msgctxt "bottom_layers description"
  810. msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number."
  811. msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого."
  812. #: fdmprinter.def.json
  813. msgctxt "top_bottom_pattern label"
  814. msgid "Top/Bottom Pattern"
  815. msgstr "Шаблон для крышки/дна"
  816. #: fdmprinter.def.json
  817. msgctxt "top_bottom_pattern description"
  818. msgid "The pattern of the top/bottom layers."
  819. msgstr "Шаблон слоёв для крышки/дна."
  820. #: fdmprinter.def.json
  821. msgctxt "top_bottom_pattern option lines"
  822. msgid "Lines"
  823. msgstr "Линии"
  824. #: fdmprinter.def.json
  825. msgctxt "top_bottom_pattern option concentric"
  826. msgid "Concentric"
  827. msgstr "Концентрический"
  828. #: fdmprinter.def.json
  829. msgctxt "top_bottom_pattern option zigzag"
  830. msgid "Zig Zag"
  831. msgstr "Зигзаг"
  832. #: fdmprinter.def.json
  833. msgctxt "top_bottom_pattern_0 label"
  834. msgid "Bottom Pattern Initial Layer"
  835. msgstr "Нижний шаблон начального слоя"
  836. #: fdmprinter.def.json
  837. msgctxt "top_bottom_pattern_0 description"
  838. msgid "The pattern on the bottom of the print on the first layer."
  839. msgstr "Шаблон низа печати на первом слое."
  840. #: fdmprinter.def.json
  841. msgctxt "top_bottom_pattern_0 option lines"
  842. msgid "Lines"
  843. msgstr "Линии"
  844. #: fdmprinter.def.json
  845. msgctxt "top_bottom_pattern_0 option concentric"
  846. msgid "Concentric"
  847. msgstr "Концентрический"
  848. #: fdmprinter.def.json
  849. msgctxt "top_bottom_pattern_0 option zigzag"
  850. msgid "Zig Zag"
  851. msgstr "Зигзаг"
  852. #: fdmprinter.def.json
  853. msgctxt "skin_angles label"
  854. msgid "Top/Bottom Line Directions"
  855. msgstr "Направление линии дна/крышки"
  856. #: fdmprinter.def.json
  857. msgctxt "skin_angles description"
  858. 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)."
  859. msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)."
  860. #: fdmprinter.def.json
  861. msgctxt "wall_0_inset label"
  862. msgid "Outer Wall Inset"
  863. msgstr "Вставка внешней стенки"
  864. #: fdmprinter.def.json
  865. msgctxt "wall_0_inset description"
  866. 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."
  867. msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель."
  868. #: fdmprinter.def.json
  869. msgctxt "optimize_wall_printing_order label"
  870. msgid "Optimize Wall Printing Order"
  871. msgstr "Оптимизация порядка печати стенок"
  872. #: fdmprinter.def.json
  873. msgctxt "optimize_wall_printing_order description"
  874. 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."
  875. msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется."
  876. #: fdmprinter.def.json
  877. msgctxt "outer_inset_first label"
  878. msgid "Outer Before Inner Walls"
  879. msgstr "Печать внешних стенок"
  880. #: fdmprinter.def.json
  881. msgctxt "outer_inset_first description"
  882. 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."
  883. msgstr "Указывает печатать стенки снаружи внутрь. Это помогает улучшить аккуратность печати по осям X и Y, при использовании вязких пластиков подобно ABS. Однако это может отрицательно повлиять на качество печати внешних поверхностей, особенно нависающих."
  884. #: fdmprinter.def.json
  885. msgctxt "alternate_extra_perimeter label"
  886. msgid "Alternate Extra Wall"
  887. msgstr "Чередующаяся стенка"
  888. #: fdmprinter.def.json
  889. msgctxt "alternate_extra_perimeter description"
  890. msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints."
  891. msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати."
  892. #: fdmprinter.def.json
  893. msgctxt "travel_compensate_overlapping_walls_enabled label"
  894. msgid "Compensate Wall Overlaps"
  895. msgstr "Компенсация перекрытия стен"
  896. #: fdmprinter.def.json
  897. msgctxt "travel_compensate_overlapping_walls_enabled description"
  898. msgid "Compensate the flow for parts of a wall being printed where there is already a wall in place."
  899. msgstr "Компенсирует поток для печатаемых частей стен в местах, где уже напечатана стена."
  900. #: fdmprinter.def.json
  901. msgctxt "travel_compensate_overlapping_walls_0_enabled label"
  902. msgid "Compensate Outer Wall Overlaps"
  903. msgstr "Компенсация перекрытия внешних стен"
  904. #: fdmprinter.def.json
  905. msgctxt "travel_compensate_overlapping_walls_0_enabled description"
  906. msgid "Compensate the flow for parts of an outer wall being printed where there is already a wall in place."
  907. msgstr "Компенсирует поток для печатаемых частей внешних стен в местах, где уже напечатана стена."
  908. #: fdmprinter.def.json
  909. msgctxt "travel_compensate_overlapping_walls_x_enabled label"
  910. msgid "Compensate Inner Wall Overlaps"
  911. msgstr "Компенсация перекрытия внутренних стен"
  912. #: fdmprinter.def.json
  913. msgctxt "travel_compensate_overlapping_walls_x_enabled description"
  914. msgid "Compensate the flow for parts of an inner wall being printed where there is already a wall in place."
  915. msgstr "Компенсирует поток для печатаемых частей внутренних стен в местах, где уже напечатана стена."
  916. #: fdmprinter.def.json
  917. msgctxt "fill_perimeter_gaps label"
  918. msgid "Fill Gaps Between Walls"
  919. msgstr "Заполнение зазоров между стенками"
  920. #: fdmprinter.def.json
  921. msgctxt "fill_perimeter_gaps description"
  922. msgid "Fills the gaps between walls where no walls fit."
  923. msgstr "Заполняет зазоры между стенками, когда это необходимо."
  924. #: fdmprinter.def.json
  925. msgctxt "fill_perimeter_gaps option nowhere"
  926. msgid "Nowhere"
  927. msgstr "Нигде"
  928. #: fdmprinter.def.json
  929. msgctxt "fill_perimeter_gaps option everywhere"
  930. msgid "Everywhere"
  931. msgstr "Везде"
  932. #: fdmprinter.def.json
  933. msgctxt "filter_out_tiny_gaps label"
  934. msgid "Filter Out Tiny Gaps"
  935. msgstr "Фильтровать только небольшие зазоры"
  936. #: fdmprinter.def.json
  937. msgctxt "filter_out_tiny_gaps description"
  938. msgid "Filter out tiny gaps to reduce blobs on outside of model."
  939. msgstr "Фильтровать только небольшие зазоры для сокращения пузырей за пределами модели."
  940. #: fdmprinter.def.json
  941. msgctxt "fill_outline_gaps label"
  942. msgid "Print Thin Walls"
  943. msgstr "Печать тонких стенок"
  944. #: fdmprinter.def.json
  945. msgctxt "fill_outline_gaps description"
  946. msgid "Print pieces of the model which are horizontally thinner than the nozzle size."
  947. msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла."
  948. #: fdmprinter.def.json
  949. msgctxt "xy_offset label"
  950. msgid "Horizontal Expansion"
  951. msgstr "Горизонтальное расширение"
  952. #: fdmprinter.def.json
  953. msgctxt "xy_offset description"
  954. 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."
  955. msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий."
  956. #: fdmprinter.def.json
  957. msgctxt "xy_offset_layer_0 label"
  958. msgid "Initial Layer Horizontal Expansion"
  959. msgstr "Горизонтальное расширение первого слоя"
  960. #: fdmprinter.def.json
  961. msgctxt "xy_offset_layer_0 description"
  962. 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\"."
  963. msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"."
  964. #: fdmprinter.def.json
  965. msgctxt "z_seam_type label"
  966. msgid "Z Seam Alignment"
  967. msgstr "Выравнивание шва по оси Z"
  968. #: fdmprinter.def.json
  969. msgctxt "z_seam_type description"
  970. 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."
  971. msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее."
  972. #: fdmprinter.def.json
  973. msgctxt "z_seam_type option back"
  974. msgid "User Specified"
  975. msgstr "Пользовательский"
  976. #: fdmprinter.def.json
  977. msgctxt "z_seam_type option shortest"
  978. msgid "Shortest"
  979. msgstr "Короткий путь"
  980. #: fdmprinter.def.json
  981. msgctxt "z_seam_type option random"
  982. msgid "Random"
  983. msgstr "Случайно"
  984. #: fdmprinter.def.json
  985. msgctxt "z_seam_type option sharpest_corner"
  986. msgid "Sharpest Corner"
  987. msgstr "Острейший угол"
  988. #: fdmprinter.def.json
  989. msgctxt "z_seam_x label"
  990. msgid "Z Seam X"
  991. msgstr "X координата для Z шва"
  992. #: fdmprinter.def.json
  993. msgctxt "z_seam_x description"
  994. msgid "The X coordinate of the position near where to start printing each part in a layer."
  995. msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое."
  996. #: fdmprinter.def.json
  997. msgctxt "z_seam_y label"
  998. msgid "Z Seam Y"
  999. msgstr "Y координата для Z шва"
  1000. #: fdmprinter.def.json
  1001. msgctxt "z_seam_y description"
  1002. msgid "The Y coordinate of the position near where to start printing each part in a layer."
  1003. msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое."
  1004. #: fdmprinter.def.json
  1005. msgctxt "z_seam_corner label"
  1006. msgid "Seam Corner Preference"
  1007. msgstr "Настройки угла шва"
  1008. #: fdmprinter.def.json
  1009. msgctxt "z_seam_corner description"
  1010. 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."
  1011. msgstr "Управляет влиянием углов на контуре модели на позицию шва. Нет означает отсутствие влияния. Спрятать шов означает по возможности перенести шов внутрь угла. Показать шов означает по возможности перенести шов наружу. Спрятать или показать означает выбор по ситуации."
  1012. #: fdmprinter.def.json
  1013. msgctxt "z_seam_corner option z_seam_corner_none"
  1014. msgid "None"
  1015. msgstr "Нет"
  1016. #: fdmprinter.def.json
  1017. msgctxt "z_seam_corner option z_seam_corner_inner"
  1018. msgid "Hide Seam"
  1019. msgstr "Спрятать шов"
  1020. #: fdmprinter.def.json
  1021. msgctxt "z_seam_corner option z_seam_corner_outer"
  1022. msgid "Expose Seam"
  1023. msgstr "Показать шов"
  1024. #: fdmprinter.def.json
  1025. msgctxt "z_seam_corner option z_seam_corner_any"
  1026. msgid "Hide or Expose Seam"
  1027. msgstr "Спрятать или показать"
  1028. #: fdmprinter.def.json
  1029. msgctxt "z_seam_relative label"
  1030. msgid "Z Seam Relative"
  1031. msgstr "Привязка Z шва"
  1032. #: fdmprinter.def.json
  1033. msgctxt "z_seam_relative description"
  1034. 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."
  1035. msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе."
  1036. #: fdmprinter.def.json
  1037. msgctxt "skin_no_small_gaps_heuristic label"
  1038. msgid "Ignore Small Z Gaps"
  1039. msgstr "Игнорирование Z зазоров"
  1040. #: fdmprinter.def.json
  1041. msgctxt "skin_no_small_gaps_heuristic description"
  1042. 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."
  1043. msgstr "Когда модель имеет небольшие вертикальные зазоры, около 5% дополнительного времени будет потрачено на вычисления верхних и нижних оболочек в этих узких пространствах. В этом случае, отключите данный параметр."
  1044. #: fdmprinter.def.json
  1045. msgctxt "skin_outline_count label"
  1046. msgid "Extra Skin Wall Count"
  1047. msgstr "Количество внешних дополнительных оболочек"
  1048. #: fdmprinter.def.json
  1049. msgctxt "skin_outline_count description"
  1050. 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."
  1051. msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения."
  1052. #: fdmprinter.def.json
  1053. msgctxt "ironing_enabled label"
  1054. msgid "Enable Ironing"
  1055. msgstr "Разрешить разглаживание"
  1056. #: fdmprinter.def.json
  1057. msgctxt "ironing_enabled description"
  1058. 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."
  1059. msgstr "Проходить по верхней оболочке ещё раз, но без выдавливания материала. Это приводит к плавлению пластика, что создаёт более гладкую поверхность."
  1060. #: fdmprinter.def.json
  1061. msgctxt "ironing_only_highest_layer label"
  1062. msgid "Iron Only Highest Layer"
  1063. msgstr "Самый высокий слой разглаживания"
  1064. #: fdmprinter.def.json
  1065. msgctxt "ironing_only_highest_layer description"
  1066. 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."
  1067. msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности."
  1068. #: fdmprinter.def.json
  1069. msgctxt "ironing_pattern label"
  1070. msgid "Ironing Pattern"
  1071. msgstr "Шаблон разглаживания"
  1072. #: fdmprinter.def.json
  1073. msgctxt "ironing_pattern description"
  1074. msgid "The pattern to use for ironing top surfaces."
  1075. msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки."
  1076. #: fdmprinter.def.json
  1077. msgctxt "ironing_pattern option concentric"
  1078. msgid "Concentric"
  1079. msgstr "Концентрический"
  1080. #: fdmprinter.def.json
  1081. msgctxt "ironing_pattern option zigzag"
  1082. msgid "Zig Zag"
  1083. msgstr "Зигзаг"
  1084. #: fdmprinter.def.json
  1085. msgctxt "ironing_line_spacing label"
  1086. msgid "Ironing Line Spacing"
  1087. msgstr "Расстояние между линиями разглаживания"
  1088. #: fdmprinter.def.json
  1089. msgctxt "ironing_line_spacing description"
  1090. msgid "The distance between the lines of ironing."
  1091. msgstr "Расстояние между линиями разглаживания."
  1092. #: fdmprinter.def.json
  1093. msgctxt "ironing_flow label"
  1094. msgid "Ironing Flow"
  1095. msgstr "Поток разглаживания"
  1096. #: fdmprinter.def.json
  1097. msgctxt "ironing_flow description"
  1098. 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."
  1099. msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки."
  1100. #: fdmprinter.def.json
  1101. msgctxt "ironing_inset label"
  1102. msgid "Ironing Inset"
  1103. msgstr "Границы разглаживания"
  1104. #: fdmprinter.def.json
  1105. msgctxt "ironing_inset description"
  1106. 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."
  1107. msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразится в загибании краёв при печати."
  1108. #: fdmprinter.def.json
  1109. msgctxt "speed_ironing label"
  1110. msgid "Ironing Speed"
  1111. msgstr "Скорость разглаживания"
  1112. #: fdmprinter.def.json
  1113. msgctxt "speed_ironing description"
  1114. msgid "The speed at which to pass over the top surface."
  1115. msgstr "Скорость, на которой голова проходит над верхней оболочкой."
  1116. #: fdmprinter.def.json
  1117. msgctxt "acceleration_ironing label"
  1118. msgid "Ironing Acceleration"
  1119. msgstr "Ускорение разглаживания"
  1120. #: fdmprinter.def.json
  1121. msgctxt "acceleration_ironing description"
  1122. msgid "The acceleration with which ironing is performed."
  1123. msgstr "Ускорение, с которым производится разглаживание."
  1124. #: fdmprinter.def.json
  1125. msgctxt "jerk_ironing label"
  1126. msgid "Ironing Jerk"
  1127. msgstr "Рывок разглаживания"
  1128. #: fdmprinter.def.json
  1129. msgctxt "jerk_ironing description"
  1130. msgid "The maximum instantaneous velocity change while performing ironing."
  1131. msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание."
  1132. #: fdmprinter.def.json
  1133. msgctxt "infill label"
  1134. msgid "Infill"
  1135. msgstr "Заполнение"
  1136. #: fdmprinter.def.json
  1137. msgctxt "infill description"
  1138. msgid "Infill"
  1139. msgstr "Заполнение"
  1140. #: fdmprinter.def.json
  1141. msgctxt "infill_extruder_nr label"
  1142. msgid "Infill Extruder"
  1143. msgstr "Экструдер для заполнения"
  1144. #: fdmprinter.def.json
  1145. msgctxt "infill_extruder_nr description"
  1146. msgid "The extruder train used for printing infill. This is used in multi-extrusion."
  1147. msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров."
  1148. #: fdmprinter.def.json
  1149. msgctxt "infill_sparse_density label"
  1150. msgid "Infill Density"
  1151. msgstr "Плотность заполнения"
  1152. #: fdmprinter.def.json
  1153. msgctxt "infill_sparse_density description"
  1154. msgid "Adjusts the density of infill of the print."
  1155. msgstr "Отрегулируйте плотность заполнения при печати."
  1156. #: fdmprinter.def.json
  1157. msgctxt "infill_line_distance label"
  1158. msgid "Infill Line Distance"
  1159. msgstr "Дистанция линий заполнения"
  1160. #: fdmprinter.def.json
  1161. msgctxt "infill_line_distance description"
  1162. msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width."
  1163. msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения."
  1164. #: fdmprinter.def.json
  1165. msgctxt "infill_pattern label"
  1166. msgid "Infill Pattern"
  1167. msgstr "Шаблон заполнения"
  1168. #: fdmprinter.def.json
  1169. msgctxt "infill_pattern description"
  1170. 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."
  1171. msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «куб», «четверть куба», «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении."
  1172. #: fdmprinter.def.json
  1173. msgctxt "infill_pattern option grid"
  1174. msgid "Grid"
  1175. msgstr "Сетка"
  1176. #: fdmprinter.def.json
  1177. msgctxt "infill_pattern option lines"
  1178. msgid "Lines"
  1179. msgstr "Линии"
  1180. #: fdmprinter.def.json
  1181. msgctxt "infill_pattern option triangles"
  1182. msgid "Triangles"
  1183. msgstr "Треугольник"
  1184. #: fdmprinter.def.json
  1185. msgctxt "infill_pattern option trihexagon"
  1186. msgid "Tri-Hexagon"
  1187. msgstr "Шестигранник из треугольников"
  1188. #: fdmprinter.def.json
  1189. msgctxt "infill_pattern option cubic"
  1190. msgid "Cubic"
  1191. msgstr "Куб"
  1192. #: fdmprinter.def.json
  1193. msgctxt "infill_pattern option cubicsubdiv"
  1194. msgid "Cubic Subdivision"
  1195. msgstr "Динамический куб"
  1196. #: fdmprinter.def.json
  1197. msgctxt "infill_pattern option tetrahedral"
  1198. msgid "Octet"
  1199. msgstr "Восьмигранник"
  1200. #: fdmprinter.def.json
  1201. msgctxt "infill_pattern option quarter_cubic"
  1202. msgid "Quarter Cubic"
  1203. msgstr "Четверть куба"
  1204. #: fdmprinter.def.json
  1205. msgctxt "infill_pattern option concentric"
  1206. msgid "Concentric"
  1207. msgstr "Концентрическое"
  1208. #: fdmprinter.def.json
  1209. msgctxt "infill_pattern option concentric_3d"
  1210. msgid "Concentric 3D"
  1211. msgstr "Концентрическое 3D"
  1212. #: fdmprinter.def.json
  1213. msgctxt "infill_pattern option zigzag"
  1214. msgid "Zig Zag"
  1215. msgstr "Зигзаг"
  1216. #: fdmprinter.def.json
  1217. msgctxt "infill_pattern option cross"
  1218. msgid "Cross"
  1219. msgstr "Крестовое"
  1220. #: fdmprinter.def.json
  1221. msgctxt "infill_pattern option cross_3d"
  1222. msgid "Cross 3D"
  1223. msgstr "Крестовое 3D"
  1224. #: fdmprinter.def.json
  1225. msgctxt "zig_zaggify_infill label"
  1226. msgid "Connect Infill Lines"
  1227. msgstr "Соединять линии заполнения"
  1228. #: fdmprinter.def.json
  1229. msgctxt "zig_zaggify_infill description"
  1230. 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."
  1231. msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала."
  1232. #: fdmprinter.def.json
  1233. msgctxt "infill_angles label"
  1234. msgid "Infill Line Directions"
  1235. msgstr "Направления линии заполнения"
  1236. #: fdmprinter.def.json
  1237. msgctxt "infill_angles description"
  1238. 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)."
  1239. msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)."
  1240. #: fdmprinter.def.json
  1241. msgctxt "infill_offset_x label"
  1242. msgid "Infill X Offset"
  1243. msgstr "Смещение заполнения по X"
  1244. #: fdmprinter.def.json
  1245. msgctxt "infill_offset_x description"
  1246. msgid "The infill pattern is moved this distance along the X axis."
  1247. msgstr "Расстояние перемещения шаблона заполнения по оси X."
  1248. #: fdmprinter.def.json
  1249. msgctxt "infill_offset_y label"
  1250. msgid "Infill Y Offset"
  1251. msgstr "Смещение заполнения по Y"
  1252. #: fdmprinter.def.json
  1253. msgctxt "infill_offset_y description"
  1254. msgid "The infill pattern is moved this distance along the Y axis."
  1255. msgstr "Расстояние перемещения шаблона заполнения по оси Y."
  1256. #: fdmprinter.def.json
  1257. msgctxt "sub_div_rad_add label"
  1258. msgid "Cubic Subdivision Shell"
  1259. msgstr "Стенка динамического куба"
  1260. #: fdmprinter.def.json
  1261. msgctxt "sub_div_rad_add description"
  1262. 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."
  1263. msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели."
  1264. #: fdmprinter.def.json
  1265. msgctxt "infill_overlap label"
  1266. msgid "Infill Overlap Percentage"
  1267. msgstr "Процент перекрытие заполнения"
  1268. #: fdmprinter.def.json
  1269. msgctxt "infill_overlap description"
  1270. 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."
  1271. msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением."
  1272. #: fdmprinter.def.json
  1273. msgctxt "infill_overlap_mm label"
  1274. msgid "Infill Overlap"
  1275. msgstr "Перекрытие заполнения"
  1276. #: fdmprinter.def.json
  1277. msgctxt "infill_overlap_mm description"
  1278. msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  1279. msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением."
  1280. #: fdmprinter.def.json
  1281. msgctxt "skin_overlap label"
  1282. msgid "Skin Overlap Percentage"
  1283. msgstr "Процент перекрытия оболочек"
  1284. #: fdmprinter.def.json
  1285. msgctxt "skin_overlap description"
  1286. 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."
  1287. msgstr "Величина перекрытия между оболочкой и стенками в виде процентного отношения от ширины линии оболочки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Это значение является процентным отношением от средней ширины линии оболочки и внутренней стенки."
  1288. #: fdmprinter.def.json
  1289. msgctxt "skin_overlap_mm label"
  1290. msgid "Skin Overlap"
  1291. msgstr "Перекрытие оболочек"
  1292. #: fdmprinter.def.json
  1293. msgctxt "skin_overlap_mm description"
  1294. msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  1295. msgstr "Величина перекрытия между оболочкой и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с оболочкой."
  1296. #: fdmprinter.def.json
  1297. msgctxt "infill_wipe_dist label"
  1298. msgid "Infill Wipe Distance"
  1299. msgstr "Дистанция окончания заполнения"
  1300. #: fdmprinter.def.json
  1301. msgctxt "infill_wipe_dist description"
  1302. 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."
  1303. msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения."
  1304. #: fdmprinter.def.json
  1305. msgctxt "infill_sparse_thickness label"
  1306. msgid "Infill Layer Thickness"
  1307. msgstr "Толщина слоя заполнения"
  1308. #: fdmprinter.def.json
  1309. msgctxt "infill_sparse_thickness description"
  1310. msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  1311. msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется."
  1312. #: fdmprinter.def.json
  1313. msgctxt "gradual_infill_steps label"
  1314. msgid "Gradual Infill Steps"
  1315. msgstr "Изменение шага заполнения"
  1316. #: fdmprinter.def.json
  1317. msgctxt "gradual_infill_steps description"
  1318. 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."
  1319. msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения.\""
  1320. #: fdmprinter.def.json
  1321. msgctxt "gradual_infill_step_height label"
  1322. msgid "Gradual Infill Step Height"
  1323. msgstr "Высота изменения шага заполнения"
  1324. #: fdmprinter.def.json
  1325. msgctxt "gradual_infill_step_height description"
  1326. msgid "The height of infill of a given density before switching to half the density."
  1327. msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности."
  1328. #: fdmprinter.def.json
  1329. msgctxt "infill_before_walls label"
  1330. msgid "Infill Before Walls"
  1331. msgstr "Заполнение перед печатью стенок"
  1332. #: fdmprinter.def.json
  1333. msgctxt "infill_before_walls description"
  1334. 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."
  1335. msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки."
  1336. #: fdmprinter.def.json
  1337. msgctxt "min_infill_area label"
  1338. msgid "Minimum Infill Area"
  1339. msgstr "Минимальная область заполнения"
  1340. #: fdmprinter.def.json
  1341. msgctxt "min_infill_area description"
  1342. msgid "Don't generate areas of infill smaller than this (use skin instead)."
  1343. msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)."
  1344. #: fdmprinter.def.json
  1345. msgctxt "infill_support_enabled label"
  1346. msgid "Infill Support"
  1347. msgstr "Поддержка заполнения"
  1348. #: fdmprinter.def.json
  1349. msgctxt "infill_support_enabled description"
  1350. 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."
  1351. msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности."
  1352. #: fdmprinter.def.json
  1353. msgctxt "infill_support_angle label"
  1354. msgid "Infill Overhang Angle"
  1355. msgstr "Угол нависания при заполнении"
  1356. #: fdmprinter.def.json
  1357. msgctxt "infill_support_angle description"
  1358. 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."
  1359. msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует."
  1360. #: fdmprinter.def.json
  1361. msgctxt "skin_preshrink label"
  1362. msgid "Skin Removal Width"
  1363. msgstr "Ширина удаляемой оболочки"
  1364. #: fdmprinter.def.json
  1365. msgctxt "skin_preshrink description"
  1366. 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."
  1367. msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели."
  1368. #: fdmprinter.def.json
  1369. msgctxt "top_skin_preshrink label"
  1370. msgid "Top Skin Removal Width"
  1371. msgstr "Ширина удаляемой оболочки сверху"
  1372. #: fdmprinter.def.json
  1373. msgctxt "top_skin_preshrink description"
  1374. 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."
  1375. msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели."
  1376. #: fdmprinter.def.json
  1377. msgctxt "bottom_skin_preshrink label"
  1378. msgid "Bottom Skin Removal Width"
  1379. msgstr "Ширина удаляемой оболочки снизу"
  1380. #: fdmprinter.def.json
  1381. msgctxt "bottom_skin_preshrink description"
  1382. 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."
  1383. msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели."
  1384. #: fdmprinter.def.json
  1385. msgctxt "expand_skins_expand_distance label"
  1386. msgid "Skin Expand Distance"
  1387. msgstr "Дистанция расширения оболочки"
  1388. #: fdmprinter.def.json
  1389. msgctxt "expand_skins_expand_distance description"
  1390. 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."
  1391. msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал."
  1392. #: fdmprinter.def.json
  1393. msgctxt "top_skin_expand_distance label"
  1394. msgid "Top Skin Expand Distance"
  1395. msgstr "Дистанция расширения оболочки сверху"
  1396. #: fdmprinter.def.json
  1397. msgctxt "top_skin_expand_distance description"
  1398. 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."
  1399. msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал."
  1400. #: fdmprinter.def.json
  1401. msgctxt "bottom_skin_expand_distance label"
  1402. msgid "Bottom Skin Expand Distance"
  1403. msgstr "Расстояние расширения оболочки снизу"
  1404. #: fdmprinter.def.json
  1405. msgctxt "bottom_skin_expand_distance description"
  1406. 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."
  1407. msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал."
  1408. #: fdmprinter.def.json
  1409. msgctxt "max_skin_angle_for_expansion label"
  1410. msgid "Maximum Skin Angle for Expansion"
  1411. msgstr "Максимальный угол оболочки при расширении"
  1412. #: fdmprinter.def.json
  1413. msgctxt "max_skin_angle_for_expansion description"
  1414. 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."
  1415. msgstr "Верхняя и/или нижняя поверхности вашего объекта с углом больше указанного в данном параметре, не будут иметь расширенные оболочки дна/крышки. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол в 0° является горизонтальным, а в 90° - вертикальным."
  1416. #: fdmprinter.def.json
  1417. msgctxt "min_skin_width_for_expansion label"
  1418. msgid "Minimum Skin Width for Expansion"
  1419. msgstr "Минимальная ширина оболочки при расширении"
  1420. #: fdmprinter.def.json
  1421. msgctxt "min_skin_width_for_expansion description"
  1422. 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."
  1423. msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному."
  1424. #: fdmprinter.def.json
  1425. msgctxt "material label"
  1426. msgid "Material"
  1427. msgstr "Материал"
  1428. #: fdmprinter.def.json
  1429. msgctxt "material description"
  1430. msgid "Material"
  1431. msgstr "Материал"
  1432. #: fdmprinter.def.json
  1433. msgctxt "default_material_print_temperature label"
  1434. msgid "Default Printing Temperature"
  1435. msgstr "Температура сопла"
  1436. #: fdmprinter.def.json
  1437. msgctxt "default_material_print_temperature description"
  1438. 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"
  1439. msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения."
  1440. #: fdmprinter.def.json
  1441. msgctxt "material_print_temperature label"
  1442. msgid "Printing Temperature"
  1443. msgstr "Температура сопла"
  1444. #: fdmprinter.def.json
  1445. msgctxt "material_print_temperature description"
  1446. msgid "The temperature used for printing."
  1447. msgstr "Температура, используемая при печати."
  1448. #: fdmprinter.def.json
  1449. msgctxt "material_print_temperature_layer_0 label"
  1450. msgid "Printing Temperature Initial Layer"
  1451. msgstr "Температура печати первого слоя"
  1452. #: fdmprinter.def.json
  1453. msgctxt "material_print_temperature_layer_0 description"
  1454. msgid "The temperature used for printing the first layer. Set at 0 to disable special handling of the initial layer."
  1455. msgstr "Температура при печати первого слоя. Установите в 0 для отключения специального поведения на первом слое."
  1456. #: fdmprinter.def.json
  1457. msgctxt "material_initial_print_temperature label"
  1458. msgid "Initial Printing Temperature"
  1459. msgstr "Начальная температура печати"
  1460. #: fdmprinter.def.json
  1461. msgctxt "material_initial_print_temperature description"
  1462. msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start."
  1463. msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати."
  1464. #: fdmprinter.def.json
  1465. msgctxt "material_final_print_temperature label"
  1466. msgid "Final Printing Temperature"
  1467. msgstr "Конечная температура печати"
  1468. #: fdmprinter.def.json
  1469. msgctxt "material_final_print_temperature description"
  1470. msgid "The temperature to which to already start cooling down just before the end of printing."
  1471. msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати."
  1472. #: fdmprinter.def.json
  1473. msgctxt "material_extrusion_cool_down_speed label"
  1474. msgid "Extrusion Cool Down Speed Modifier"
  1475. msgstr "Модификатор скорости охлаждения экструзии"
  1476. #: fdmprinter.def.json
  1477. msgctxt "material_extrusion_cool_down_speed description"
  1478. 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."
  1479. msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии."
  1480. #: fdmprinter.def.json
  1481. msgctxt "default_material_bed_temperature label"
  1482. msgid "Default Build Plate Temperature"
  1483. msgstr "Температура рабочего стола по умолчанию"
  1484. #: fdmprinter.def.json
  1485. msgctxt "default_material_bed_temperature description"
  1486. 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"
  1487. msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения"
  1488. #: fdmprinter.def.json
  1489. msgctxt "material_bed_temperature label"
  1490. msgid "Build Plate Temperature"
  1491. msgstr "Температура стола"
  1492. #: fdmprinter.def.json
  1493. msgctxt "material_bed_temperature description"
  1494. msgid "The temperature used for the heated build plate. If this is 0, the bed temperature will not be adjusted."
  1495. msgstr "Температура, задаваемая для разогретого рабочего стола. Если значение равно 0, температура основания не будет регулироваться."
  1496. #: fdmprinter.def.json
  1497. msgctxt "material_bed_temperature_layer_0 label"
  1498. msgid "Build Plate Temperature Initial Layer"
  1499. msgstr "Температура стола для первого слоя"
  1500. #: fdmprinter.def.json
  1501. msgctxt "material_bed_temperature_layer_0 description"
  1502. msgid "The temperature used for the heated build plate at the first layer."
  1503. msgstr "Температура стола, используемая при печати первого слоя."
  1504. #: fdmprinter.def.json
  1505. msgctxt "material_diameter label"
  1506. msgid "Diameter"
  1507. msgstr "Диаметр"
  1508. #: fdmprinter.def.json
  1509. msgctxt "material_diameter description"
  1510. msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament."
  1511. msgstr "Укажите диаметр используемой нити."
  1512. #: fdmprinter.def.json
  1513. msgctxt "material_adhesion_tendency label"
  1514. msgid "Adhesion Tendency"
  1515. msgstr "Тенденция к прилипанию"
  1516. #: fdmprinter.def.json
  1517. msgctxt "material_adhesion_tendency description"
  1518. msgid "Surface adhesion tendency."
  1519. msgstr "Тенденция к прилипанию к поверхности."
  1520. #: fdmprinter.def.json
  1521. msgctxt "material_surface_energy label"
  1522. msgid "Surface Energy"
  1523. msgstr "Поверхностная энергия"
  1524. #: fdmprinter.def.json
  1525. msgctxt "material_surface_energy description"
  1526. msgid "Surface energy."
  1527. msgstr "Поверхностная энергия."
  1528. #: fdmprinter.def.json
  1529. msgctxt "material_shrinkage_percentage label"
  1530. msgid "Shrinkage Ratio"
  1531. msgstr "Коэффициент усадки"
  1532. #: fdmprinter.def.json
  1533. msgctxt "material_shrinkage_percentage description"
  1534. msgid "Shrinkage ratio in percentage."
  1535. msgstr "Коэффициент усадки в процентах."
  1536. #: fdmprinter.def.json
  1537. msgctxt "material_flow label"
  1538. msgid "Flow"
  1539. msgstr "Поток"
  1540. #: fdmprinter.def.json
  1541. msgctxt "material_flow description"
  1542. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  1543. msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент."
  1544. #: fdmprinter.def.json
  1545. msgctxt "material_flow_layer_0 label"
  1546. msgid "Initial Layer Flow"
  1547. msgstr "Поток для первого слоя"
  1548. #: fdmprinter.def.json
  1549. msgctxt "material_flow_layer_0 description"
  1550. msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value."
  1551. msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент."
  1552. #: fdmprinter.def.json
  1553. msgctxt "retraction_enable label"
  1554. msgid "Enable Retraction"
  1555. msgstr "Разрешить откат"
  1556. #: fdmprinter.def.json
  1557. msgctxt "retraction_enable description"
  1558. msgid "Retract the filament when the nozzle is moving over a non-printed area. "
  1559. msgstr "Откат нити при движении сопла вне зоны печати. "
  1560. #: fdmprinter.def.json
  1561. msgctxt "retract_at_layer_change label"
  1562. msgid "Retract at Layer Change"
  1563. msgstr "Откат при смене слоя"
  1564. #: fdmprinter.def.json
  1565. msgctxt "retract_at_layer_change description"
  1566. msgid "Retract the filament when the nozzle is moving to the next layer."
  1567. msgstr "Откат нити при перемещении сопла на следующий слой."
  1568. #: fdmprinter.def.json
  1569. msgctxt "retraction_amount label"
  1570. msgid "Retraction Distance"
  1571. msgstr "Величина отката"
  1572. #: fdmprinter.def.json
  1573. msgctxt "retraction_amount description"
  1574. msgid "The length of material retracted during a retraction move."
  1575. msgstr "Длина нити материала, которая будет извлечена по время отката."
  1576. #: fdmprinter.def.json
  1577. msgctxt "retraction_speed label"
  1578. msgid "Retraction Speed"
  1579. msgstr "Скорость отката"
  1580. #: fdmprinter.def.json
  1581. msgctxt "retraction_speed description"
  1582. msgid "The speed at which the filament is retracted and primed during a retraction move."
  1583. msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате."
  1584. #: fdmprinter.def.json
  1585. msgctxt "retraction_retract_speed label"
  1586. msgid "Retraction Retract Speed"
  1587. msgstr "Скорость извлечения при откате"
  1588. #: fdmprinter.def.json
  1589. msgctxt "retraction_retract_speed description"
  1590. msgid "The speed at which the filament is retracted during a retraction move."
  1591. msgstr "Скорость с которой нить будет извлечена при откате."
  1592. #: fdmprinter.def.json
  1593. msgctxt "retraction_prime_speed label"
  1594. msgid "Retraction Prime Speed"
  1595. msgstr "Скорость возврата в начале печати"
  1596. #: fdmprinter.def.json
  1597. msgctxt "retraction_prime_speed description"
  1598. msgid "The speed at which the filament is primed during a retraction move."
  1599. msgstr "Скорость с которой материал будет возвращён при откате."
  1600. #: fdmprinter.def.json
  1601. msgctxt "retraction_extra_prime_amount label"
  1602. msgid "Retraction Extra Prime Amount"
  1603. msgstr "Дополнительно заполняемый объём при откате"
  1604. #: fdmprinter.def.json
  1605. msgctxt "retraction_extra_prime_amount description"
  1606. msgid "Some material can ooze away during a travel move, which can be compensated for here."
  1607. msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра."
  1608. #: fdmprinter.def.json
  1609. msgctxt "retraction_min_travel label"
  1610. msgid "Retraction Minimum Travel"
  1611. msgstr "Минимальное перемещение при откате"
  1612. #: fdmprinter.def.json
  1613. msgctxt "retraction_min_travel description"
  1614. msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area."
  1615. msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати."
  1616. #: fdmprinter.def.json
  1617. msgctxt "retraction_count_max label"
  1618. msgid "Maximum Retraction Count"
  1619. msgstr "Максимальное количество откатов"
  1620. #: fdmprinter.def.json
  1621. msgctxt "retraction_count_max description"
  1622. 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."
  1623. msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити."
  1624. #: fdmprinter.def.json
  1625. msgctxt "retraction_extrusion_window label"
  1626. msgid "Minimum Extrusion Distance Window"
  1627. msgstr "Окно минимальной расстояния экструзии"
  1628. #: fdmprinter.def.json
  1629. msgctxt "retraction_extrusion_window description"
  1630. 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."
  1631. msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала."
  1632. #: fdmprinter.def.json
  1633. msgctxt "limit_support_retractions label"
  1634. msgid "Limit Support Retractions"
  1635. msgstr "Ограничить откаты поддержки"
  1636. #: fdmprinter.def.json
  1637. msgctxt "limit_support_retractions description"
  1638. 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."
  1639. msgstr "Избежание отката при перемещении от поддержки к поддержке по прямой. Активация этой настройки сокращает время печати, однако может привести к излишней строчности в поддерживающей структуре."
  1640. #: fdmprinter.def.json
  1641. msgctxt "material_standby_temperature label"
  1642. msgid "Standby Temperature"
  1643. msgstr "Температура ожидания"
  1644. #: fdmprinter.def.json
  1645. msgctxt "material_standby_temperature description"
  1646. msgid "The temperature of the nozzle when another nozzle is currently used for printing."
  1647. msgstr "Температура сопла в момент, когда для печати используется другое сопло."
  1648. #: fdmprinter.def.json
  1649. msgctxt "switch_extruder_retraction_amount label"
  1650. msgid "Nozzle Switch Retraction Distance"
  1651. msgstr "Величина отката при смене экструдера"
  1652. #: fdmprinter.def.json
  1653. msgctxt "switch_extruder_retraction_amount description"
  1654. 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."
  1655. msgstr "Величина отката: Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева."
  1656. #: fdmprinter.def.json
  1657. msgctxt "switch_extruder_retraction_speeds label"
  1658. msgid "Nozzle Switch Retraction Speed"
  1659. msgstr "Скорость отката при смене экструдера"
  1660. #: fdmprinter.def.json
  1661. msgctxt "switch_extruder_retraction_speeds description"
  1662. 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."
  1663. msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал."
  1664. #: fdmprinter.def.json
  1665. msgctxt "switch_extruder_retraction_speed label"
  1666. msgid "Nozzle Switch Retract Speed"
  1667. msgstr "Скорость отката при смене экструдера"
  1668. #: fdmprinter.def.json
  1669. msgctxt "switch_extruder_retraction_speed description"
  1670. msgid "The speed at which the filament is retracted during a nozzle switch retract."
  1671. msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера."
  1672. #: fdmprinter.def.json
  1673. msgctxt "switch_extruder_prime_speed label"
  1674. msgid "Nozzle Switch Prime Speed"
  1675. msgstr "Скорость наполнения при смене экструдера"
  1676. #: fdmprinter.def.json
  1677. msgctxt "switch_extruder_prime_speed description"
  1678. msgid "The speed at which the filament is pushed back after a nozzle switch retraction."
  1679. msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера."
  1680. #: fdmprinter.def.json
  1681. msgctxt "speed label"
  1682. msgid "Speed"
  1683. msgstr "Скорость"
  1684. #: fdmprinter.def.json
  1685. msgctxt "speed description"
  1686. msgid "Speed"
  1687. msgstr "Скорость"
  1688. #: fdmprinter.def.json
  1689. msgctxt "speed_print label"
  1690. msgid "Print Speed"
  1691. msgstr "Скорость печати"
  1692. #: fdmprinter.def.json
  1693. msgctxt "speed_print description"
  1694. msgid "The speed at which printing happens."
  1695. msgstr "Скорость, на которой происходит печать."
  1696. #: fdmprinter.def.json
  1697. msgctxt "speed_infill label"
  1698. msgid "Infill Speed"
  1699. msgstr "Скорость заполнения"
  1700. #: fdmprinter.def.json
  1701. msgctxt "speed_infill description"
  1702. msgid "The speed at which infill is printed."
  1703. msgstr "Скорость, на которой печатается заполнение."
  1704. #: fdmprinter.def.json
  1705. msgctxt "speed_wall label"
  1706. msgid "Wall Speed"
  1707. msgstr "Скорость печати стенок"
  1708. #: fdmprinter.def.json
  1709. msgctxt "speed_wall description"
  1710. msgid "The speed at which the walls are printed."
  1711. msgstr "Скорость, на которой происходит печать стенок."
  1712. #: fdmprinter.def.json
  1713. msgctxt "speed_wall_0 label"
  1714. msgid "Outer Wall Speed"
  1715. msgstr "Скорость печати внешней стенки"
  1716. #: fdmprinter.def.json
  1717. msgctxt "speed_wall_0 description"
  1718. 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."
  1719. msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество."
  1720. #: fdmprinter.def.json
  1721. msgctxt "speed_wall_x label"
  1722. msgid "Inner Wall Speed"
  1723. msgstr "Скорость печати внутренних стенок"
  1724. #: fdmprinter.def.json
  1725. msgctxt "speed_wall_x description"
  1726. 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."
  1727. msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения."
  1728. #: fdmprinter.def.json
  1729. msgctxt "speed_roofing label"
  1730. msgid "Top Surface Skin Speed"
  1731. msgstr "Скорость верхней оболочки"
  1732. #: fdmprinter.def.json
  1733. msgctxt "speed_roofing description"
  1734. msgid "The speed at which top surface skin layers are printed."
  1735. msgstr "Скорость, на которой печатаются слои верхней оболочки."
  1736. #: fdmprinter.def.json
  1737. msgctxt "speed_topbottom label"
  1738. msgid "Top/Bottom Speed"
  1739. msgstr "Скорость крышки/дна"
  1740. #: fdmprinter.def.json
  1741. msgctxt "speed_topbottom description"
  1742. msgid "The speed at which top/bottom layers are printed."
  1743. msgstr "Скорость, на которой печатаются слои крышки/дна."
  1744. #: fdmprinter.def.json
  1745. msgctxt "speed_support label"
  1746. msgid "Support Speed"
  1747. msgstr "Скорость печати поддержек"
  1748. #: fdmprinter.def.json
  1749. msgctxt "speed_support description"
  1750. 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."
  1751. msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати."
  1752. #: fdmprinter.def.json
  1753. msgctxt "speed_support_infill label"
  1754. msgid "Support Infill Speed"
  1755. msgstr "Скорость заполнения поддержек"
  1756. #: fdmprinter.def.json
  1757. msgctxt "speed_support_infill description"
  1758. msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability."
  1759. msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность."
  1760. #: fdmprinter.def.json
  1761. msgctxt "speed_support_interface label"
  1762. msgid "Support Interface Speed"
  1763. msgstr "Скорость границы поддержек"
  1764. #: fdmprinter.def.json
  1765. msgctxt "speed_support_interface description"
  1766. msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality."
  1767. msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  1768. #: fdmprinter.def.json
  1769. msgctxt "speed_support_roof label"
  1770. msgid "Support Roof Speed"
  1771. msgstr "Скорость печати крыши поддержек"
  1772. #: fdmprinter.def.json
  1773. msgctxt "speed_support_roof description"
  1774. msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality."
  1775. msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  1776. #: fdmprinter.def.json
  1777. msgctxt "speed_support_bottom label"
  1778. msgid "Support Floor Speed"
  1779. msgstr "Скорость печати низа поддержек"
  1780. #: fdmprinter.def.json
  1781. msgctxt "speed_support_bottom description"
  1782. 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."
  1783. msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  1784. #: fdmprinter.def.json
  1785. msgctxt "speed_prime_tower label"
  1786. msgid "Prime Tower Speed"
  1787. msgstr "Скорость черновых башен"
  1788. #: fdmprinter.def.json
  1789. msgctxt "speed_prime_tower description"
  1790. 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."
  1791. msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов."
  1792. #: fdmprinter.def.json
  1793. msgctxt "speed_travel label"
  1794. msgid "Travel Speed"
  1795. msgstr "Скорость перемещения"
  1796. #: fdmprinter.def.json
  1797. msgctxt "speed_travel description"
  1798. msgid "The speed at which travel moves are made."
  1799. msgstr "Скорость, с которой выполняется перемещение."
  1800. #: fdmprinter.def.json
  1801. msgctxt "speed_layer_0 label"
  1802. msgid "Initial Layer Speed"
  1803. msgstr "Скорость первого слоя"
  1804. #: fdmprinter.def.json
  1805. msgctxt "speed_layer_0 description"
  1806. msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1807. msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу."
  1808. #: fdmprinter.def.json
  1809. msgctxt "speed_print_layer_0 label"
  1810. msgid "Initial Layer Print Speed"
  1811. msgstr "Скорость первого слоя"
  1812. #: fdmprinter.def.json
  1813. msgctxt "speed_print_layer_0 description"
  1814. msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate."
  1815. msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу."
  1816. #: fdmprinter.def.json
  1817. msgctxt "speed_travel_layer_0 label"
  1818. msgid "Initial Layer Travel Speed"
  1819. msgstr "Скорость перемещений на первом слое"
  1820. #: fdmprinter.def.json
  1821. msgctxt "speed_travel_layer_0 description"
  1822. 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."
  1823. msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати."
  1824. #: fdmprinter.def.json
  1825. msgctxt "skirt_brim_speed label"
  1826. msgid "Skirt/Brim Speed"
  1827. msgstr "Скорость юбки/каймы"
  1828. #: fdmprinter.def.json
  1829. msgctxt "skirt_brim_speed description"
  1830. 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."
  1831. msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости."
  1832. #: fdmprinter.def.json
  1833. msgctxt "max_feedrate_z_override label"
  1834. msgid "Maximum Z Speed"
  1835. msgstr "Максимальная скорость по оси Z"
  1836. #: fdmprinter.def.json
  1837. msgctxt "max_feedrate_z_override description"
  1838. 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."
  1839. msgstr "Максимальная скорость, с которой движется ось Z. Установка нуля в качестве значения, приводит к использованию скорости прописанной в прошивке."
  1840. #: fdmprinter.def.json
  1841. msgctxt "speed_slowdown_layers label"
  1842. msgid "Number of Slower Layers"
  1843. msgstr "Количество медленных слоёв"
  1844. #: fdmprinter.def.json
  1845. msgctxt "speed_slowdown_layers description"
  1846. 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."
  1847. msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв."
  1848. #: fdmprinter.def.json
  1849. msgctxt "speed_equalize_flow_enabled label"
  1850. msgid "Equalize Filament Flow"
  1851. msgstr "Выравнивание потока материала"
  1852. #: fdmprinter.def.json
  1853. msgctxt "speed_equalize_flow_enabled description"
  1854. 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."
  1855. msgstr "Печатать более тонкие чем обычно линии быстрее, чтобы объём выдавленного материала в секунду оставался постоянным. Тонкие части в вашей модели могут требовать, чтобы линии были напечатаны с меньшей шириной, чем разрешено настройками. Этот параметр управляет скоростью изменения таких линий."
  1856. #: fdmprinter.def.json
  1857. msgctxt "speed_equalize_flow_max label"
  1858. msgid "Maximum Speed for Flow Equalization"
  1859. msgstr "Максимальная скорость выравнивания потока"
  1860. #: fdmprinter.def.json
  1861. msgctxt "speed_equalize_flow_max description"
  1862. msgid "Maximum print speed when adjusting the print speed in order to equalize flow."
  1863. msgstr "Максимальная скорость печати до которой может увеличиваться скорость печати при выравнивании потока."
  1864. #: fdmprinter.def.json
  1865. msgctxt "acceleration_enabled label"
  1866. msgid "Enable Acceleration Control"
  1867. msgstr "Разрешить управление ускорением"
  1868. #: fdmprinter.def.json
  1869. msgctxt "acceleration_enabled description"
  1870. msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality."
  1871. msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати."
  1872. #: fdmprinter.def.json
  1873. msgctxt "acceleration_print label"
  1874. msgid "Print Acceleration"
  1875. msgstr "Ускорение печати"
  1876. #: fdmprinter.def.json
  1877. msgctxt "acceleration_print description"
  1878. msgid "The acceleration with which printing happens."
  1879. msgstr "Ускорение, с которым происходит печать."
  1880. #: fdmprinter.def.json
  1881. msgctxt "acceleration_infill label"
  1882. msgid "Infill Acceleration"
  1883. msgstr "Ускорение заполнения"
  1884. #: fdmprinter.def.json
  1885. msgctxt "acceleration_infill description"
  1886. msgid "The acceleration with which infill is printed."
  1887. msgstr "Ускорение, с которым печатается заполнение."
  1888. #: fdmprinter.def.json
  1889. msgctxt "acceleration_wall label"
  1890. msgid "Wall Acceleration"
  1891. msgstr "Ускорение стенок"
  1892. #: fdmprinter.def.json
  1893. msgctxt "acceleration_wall description"
  1894. msgid "The acceleration with which the walls are printed."
  1895. msgstr "Ускорение, с которым происходит печать стенок."
  1896. #: fdmprinter.def.json
  1897. msgctxt "acceleration_wall_0 label"
  1898. msgid "Outer Wall Acceleration"
  1899. msgstr "Ускорение внешней стенки"
  1900. #: fdmprinter.def.json
  1901. msgctxt "acceleration_wall_0 description"
  1902. msgid "The acceleration with which the outermost walls are printed."
  1903. msgstr "Ускорение, с которым происходит печать внешних стенок."
  1904. #: fdmprinter.def.json
  1905. msgctxt "acceleration_wall_x label"
  1906. msgid "Inner Wall Acceleration"
  1907. msgstr "Ускорение внутренней стенки"
  1908. #: fdmprinter.def.json
  1909. msgctxt "acceleration_wall_x description"
  1910. msgid "The acceleration with which all inner walls are printed."
  1911. msgstr "Ускорение, с которым происходит печать внутренних стенок."
  1912. #: fdmprinter.def.json
  1913. msgctxt "acceleration_roofing label"
  1914. msgid "Top Surface Skin Acceleration"
  1915. msgstr "Ускорение верхней оболочки"
  1916. #: fdmprinter.def.json
  1917. msgctxt "acceleration_roofing description"
  1918. msgid "The acceleration with which top surface skin layers are printed."
  1919. msgstr "Ускорение, с которым печатаются слои верхней оболочки."
  1920. #: fdmprinter.def.json
  1921. msgctxt "acceleration_topbottom label"
  1922. msgid "Top/Bottom Acceleration"
  1923. msgstr "Ускорение крышки/дна"
  1924. #: fdmprinter.def.json
  1925. msgctxt "acceleration_topbottom description"
  1926. msgid "The acceleration with which top/bottom layers are printed."
  1927. msgstr "Ускорение, с которым печатаются слои крышки/дна."
  1928. #: fdmprinter.def.json
  1929. msgctxt "acceleration_support label"
  1930. msgid "Support Acceleration"
  1931. msgstr "Ускорение поддержек"
  1932. #: fdmprinter.def.json
  1933. msgctxt "acceleration_support description"
  1934. msgid "The acceleration with which the support structure is printed."
  1935. msgstr "Ускорение, с которым печатаются структуры поддержки."
  1936. #: fdmprinter.def.json
  1937. msgctxt "acceleration_support_infill label"
  1938. msgid "Support Infill Acceleration"
  1939. msgstr "Ускорение заполнение поддержек"
  1940. #: fdmprinter.def.json
  1941. msgctxt "acceleration_support_infill description"
  1942. msgid "The acceleration with which the infill of support is printed."
  1943. msgstr "Ускорение, с которым печатается заполнение поддержек."
  1944. #: fdmprinter.def.json
  1945. msgctxt "acceleration_support_interface label"
  1946. msgid "Support Interface Acceleration"
  1947. msgstr "Ускорение края поддержек"
  1948. #: fdmprinter.def.json
  1949. msgctxt "acceleration_support_interface description"
  1950. msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality."
  1951. msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей."
  1952. #: fdmprinter.def.json
  1953. msgctxt "acceleration_support_roof label"
  1954. msgid "Support Roof Acceleration"
  1955. msgstr "Ускорение крыши поддержек"
  1956. #: fdmprinter.def.json
  1957. msgctxt "acceleration_support_roof description"
  1958. msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality."
  1959. msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели."
  1960. #: fdmprinter.def.json
  1961. msgctxt "acceleration_support_bottom label"
  1962. msgid "Support Floor Acceleration"
  1963. msgstr "Ускорение низа поддержек"
  1964. #: fdmprinter.def.json
  1965. msgctxt "acceleration_support_bottom description"
  1966. 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."
  1967. msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели."
  1968. #: fdmprinter.def.json
  1969. msgctxt "acceleration_prime_tower label"
  1970. msgid "Prime Tower Acceleration"
  1971. msgstr "Ускорение черновой башни"
  1972. #: fdmprinter.def.json
  1973. msgctxt "acceleration_prime_tower description"
  1974. msgid "The acceleration with which the prime tower is printed."
  1975. msgstr "Ускорение, с которым печатается черновая башня."
  1976. #: fdmprinter.def.json
  1977. msgctxt "acceleration_travel label"
  1978. msgid "Travel Acceleration"
  1979. msgstr "Ускорение перемещения"
  1980. #: fdmprinter.def.json
  1981. msgctxt "acceleration_travel description"
  1982. msgid "The acceleration with which travel moves are made."
  1983. msgstr "Ускорение, с которым выполняется перемещение."
  1984. #: fdmprinter.def.json
  1985. msgctxt "acceleration_layer_0 label"
  1986. msgid "Initial Layer Acceleration"
  1987. msgstr "Ускорение первого слоя"
  1988. #: fdmprinter.def.json
  1989. msgctxt "acceleration_layer_0 description"
  1990. msgid "The acceleration for the initial layer."
  1991. msgstr "Ускорение для первого слоя."
  1992. #: fdmprinter.def.json
  1993. msgctxt "acceleration_print_layer_0 label"
  1994. msgid "Initial Layer Print Acceleration"
  1995. msgstr "Ускорение печати первого слоя"
  1996. #: fdmprinter.def.json
  1997. msgctxt "acceleration_print_layer_0 description"
  1998. msgid "The acceleration during the printing of the initial layer."
  1999. msgstr "Ускорение при печати первого слоя."
  2000. #: fdmprinter.def.json
  2001. msgctxt "acceleration_travel_layer_0 label"
  2002. msgid "Initial Layer Travel Acceleration"
  2003. msgstr "Ускорение перемещений первого слоя"
  2004. #: fdmprinter.def.json
  2005. msgctxt "acceleration_travel_layer_0 description"
  2006. msgid "The acceleration for travel moves in the initial layer."
  2007. msgstr "Ускорение для перемещения на первом слое."
  2008. #: fdmprinter.def.json
  2009. msgctxt "acceleration_skirt_brim label"
  2010. msgid "Skirt/Brim Acceleration"
  2011. msgstr "Ускорение юбки/каймы"
  2012. #: fdmprinter.def.json
  2013. msgctxt "acceleration_skirt_brim description"
  2014. 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."
  2015. msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями."
  2016. #: fdmprinter.def.json
  2017. msgctxt "jerk_enabled label"
  2018. msgid "Enable Jerk Control"
  2019. msgstr "Включить управление рывком"
  2020. #: fdmprinter.def.json
  2021. msgctxt "jerk_enabled description"
  2022. 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."
  2023. msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества."
  2024. #: fdmprinter.def.json
  2025. msgctxt "jerk_print label"
  2026. msgid "Print Jerk"
  2027. msgstr "Рывок печати"
  2028. #: fdmprinter.def.json
  2029. msgctxt "jerk_print description"
  2030. msgid "The maximum instantaneous velocity change of the print head."
  2031. msgstr "Изменение максимальной мгновенной скорости печатающей головки."
  2032. #: fdmprinter.def.json
  2033. msgctxt "jerk_infill label"
  2034. msgid "Infill Jerk"
  2035. msgstr "Рывок заполнения"
  2036. #: fdmprinter.def.json
  2037. msgctxt "jerk_infill description"
  2038. msgid "The maximum instantaneous velocity change with which infill is printed."
  2039. msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение."
  2040. #: fdmprinter.def.json
  2041. msgctxt "jerk_wall label"
  2042. msgid "Wall Jerk"
  2043. msgstr "Рывок стены"
  2044. #: fdmprinter.def.json
  2045. msgctxt "jerk_wall description"
  2046. msgid "The maximum instantaneous velocity change with which the walls are printed."
  2047. msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены."
  2048. #: fdmprinter.def.json
  2049. msgctxt "jerk_wall_0 label"
  2050. msgid "Outer Wall Jerk"
  2051. msgstr "Рывок внешних стен"
  2052. #: fdmprinter.def.json
  2053. msgctxt "jerk_wall_0 description"
  2054. msgid "The maximum instantaneous velocity change with which the outermost walls are printed."
  2055. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки."
  2056. #: fdmprinter.def.json
  2057. msgctxt "jerk_wall_x label"
  2058. msgid "Inner Wall Jerk"
  2059. msgstr "Рывок внутренних стен"
  2060. #: fdmprinter.def.json
  2061. msgctxt "jerk_wall_x description"
  2062. msgid "The maximum instantaneous velocity change with which all inner walls are printed."
  2063. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки."
  2064. #: fdmprinter.def.json
  2065. msgctxt "jerk_roofing label"
  2066. msgid "Top Surface Skin Jerk"
  2067. msgstr "Рывок верхней оболочки"
  2068. #: fdmprinter.def.json
  2069. msgctxt "jerk_roofing description"
  2070. msgid "The maximum instantaneous velocity change with which top surface skin layers are printed."
  2071. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки."
  2072. #: fdmprinter.def.json
  2073. msgctxt "jerk_topbottom label"
  2074. msgid "Top/Bottom Jerk"
  2075. msgstr "Рывок крышки/дна"
  2076. #: fdmprinter.def.json
  2077. msgctxt "jerk_topbottom description"
  2078. msgid "The maximum instantaneous velocity change with which top/bottom layers are printed."
  2079. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои."
  2080. #: fdmprinter.def.json
  2081. msgctxt "jerk_support label"
  2082. msgid "Support Jerk"
  2083. msgstr "Рывок поддержек"
  2084. #: fdmprinter.def.json
  2085. msgctxt "jerk_support description"
  2086. msgid "The maximum instantaneous velocity change with which the support structure is printed."
  2087. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки."
  2088. #: fdmprinter.def.json
  2089. msgctxt "jerk_support_infill label"
  2090. msgid "Support Infill Jerk"
  2091. msgstr "Рывок заполнение поддержек"
  2092. #: fdmprinter.def.json
  2093. msgctxt "jerk_support_infill description"
  2094. msgid "The maximum instantaneous velocity change with which the infill of support is printed."
  2095. msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек."
  2096. #: fdmprinter.def.json
  2097. msgctxt "jerk_support_interface label"
  2098. msgid "Support Interface Jerk"
  2099. msgstr "Рывок связи поддержек"
  2100. #: fdmprinter.def.json
  2101. msgctxt "jerk_support_interface description"
  2102. msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed."
  2103. msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек."
  2104. #: fdmprinter.def.json
  2105. msgctxt "jerk_support_roof label"
  2106. msgid "Support Roof Jerk"
  2107. msgstr "Рывок крыши поддержек"
  2108. #: fdmprinter.def.json
  2109. msgctxt "jerk_support_roof description"
  2110. msgid "The maximum instantaneous velocity change with which the roofs of support are printed."
  2111. msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек."
  2112. #: fdmprinter.def.json
  2113. msgctxt "jerk_support_bottom label"
  2114. msgid "Support Floor Jerk"
  2115. msgstr "Рывок низа поддержек"
  2116. #: fdmprinter.def.json
  2117. msgctxt "jerk_support_bottom description"
  2118. msgid "The maximum instantaneous velocity change with which the floors of support are printed."
  2119. msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек."
  2120. #: fdmprinter.def.json
  2121. msgctxt "jerk_prime_tower label"
  2122. msgid "Prime Tower Jerk"
  2123. msgstr "Рывок черновых башен"
  2124. #: fdmprinter.def.json
  2125. msgctxt "jerk_prime_tower description"
  2126. msgid "The maximum instantaneous velocity change with which the prime tower is printed."
  2127. msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня."
  2128. #: fdmprinter.def.json
  2129. msgctxt "jerk_travel label"
  2130. msgid "Travel Jerk"
  2131. msgstr "Рывок перемещения"
  2132. #: fdmprinter.def.json
  2133. msgctxt "jerk_travel description"
  2134. msgid "The maximum instantaneous velocity change with which travel moves are made."
  2135. msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения."
  2136. #: fdmprinter.def.json
  2137. msgctxt "jerk_layer_0 label"
  2138. msgid "Initial Layer Jerk"
  2139. msgstr "Рывок первого слоя"
  2140. #: fdmprinter.def.json
  2141. msgctxt "jerk_layer_0 description"
  2142. msgid "The print maximum instantaneous velocity change for the initial layer."
  2143. msgstr "Изменение максимальной мгновенной скорости на первом слое."
  2144. #: fdmprinter.def.json
  2145. msgctxt "jerk_print_layer_0 label"
  2146. msgid "Initial Layer Print Jerk"
  2147. msgstr "Рывок печати первого слоя"
  2148. #: fdmprinter.def.json
  2149. msgctxt "jerk_print_layer_0 description"
  2150. msgid "The maximum instantaneous velocity change during the printing of the initial layer."
  2151. msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой."
  2152. #: fdmprinter.def.json
  2153. msgctxt "jerk_travel_layer_0 label"
  2154. msgid "Initial Layer Travel Jerk"
  2155. msgstr "Рывок перемещения первого слоя"
  2156. #: fdmprinter.def.json
  2157. msgctxt "jerk_travel_layer_0 description"
  2158. msgid "The acceleration for travel moves in the initial layer."
  2159. msgstr "Изменение максимальной мгновенной скорости, с которой происходят перемещения на первом слое."
  2160. #: fdmprinter.def.json
  2161. msgctxt "jerk_skirt_brim label"
  2162. msgid "Skirt/Brim Jerk"
  2163. msgstr "Рывок юбки/каймы"
  2164. #: fdmprinter.def.json
  2165. msgctxt "jerk_skirt_brim description"
  2166. msgid "The maximum instantaneous velocity change with which the skirt and brim are printed."
  2167. msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма."
  2168. #: fdmprinter.def.json
  2169. msgctxt "travel label"
  2170. msgid "Travel"
  2171. msgstr "Перемещение"
  2172. #: fdmprinter.def.json
  2173. msgctxt "travel description"
  2174. msgid "travel"
  2175. msgstr "перемещение"
  2176. #: fdmprinter.def.json
  2177. msgctxt "retraction_combing label"
  2178. msgid "Combing Mode"
  2179. msgstr "Режим комбинга"
  2180. #: fdmprinter.def.json
  2181. msgctxt "retraction_combing description"
  2182. 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."
  2183. msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением."
  2184. #: fdmprinter.def.json
  2185. msgctxt "retraction_combing option off"
  2186. msgid "Off"
  2187. msgstr "Выключен"
  2188. #: fdmprinter.def.json
  2189. msgctxt "retraction_combing option all"
  2190. msgid "All"
  2191. msgstr "Везде"
  2192. #: fdmprinter.def.json
  2193. msgctxt "retraction_combing option noskin"
  2194. msgid "Not in Skin"
  2195. msgstr "Не в оболочке"
  2196. #: fdmprinter.def.json
  2197. msgctxt "retraction_combing_max_distance label"
  2198. msgid "Max Comb Distance With No Retract"
  2199. msgstr "Макс. расстояние комб. без отката"
  2200. #: fdmprinter.def.json
  2201. msgctxt "retraction_combing_max_distance description"
  2202. msgid "When non-zero, combing travel moves that are longer than this distance will use retraction."
  2203. msgstr "При ненулевом значении перемещения комбинга, превышающие указанное расстояние, будут выполняться с откатом."
  2204. #: fdmprinter.def.json
  2205. msgctxt "travel_retract_before_outer_wall label"
  2206. msgid "Retract Before Outer Wall"
  2207. msgstr "Откат перед внешней стенкой"
  2208. #: fdmprinter.def.json
  2209. msgctxt "travel_retract_before_outer_wall description"
  2210. msgid "Always retract when moving to start an outer wall."
  2211. msgstr "Всегда откатывать материал при движении к началу внешней стенки."
  2212. #: fdmprinter.def.json
  2213. msgctxt "travel_avoid_other_parts label"
  2214. msgid "Avoid Printed Parts When Traveling"
  2215. msgstr "Избегать напечатанных частей при перемещении"
  2216. #: fdmprinter.def.json
  2217. msgctxt "travel_avoid_other_parts description"
  2218. msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled."
  2219. msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге."
  2220. #: fdmprinter.def.json
  2221. msgctxt "travel_avoid_supports label"
  2222. msgid "Avoid Supports When Traveling"
  2223. msgstr "Избегать поддержек при перемещении"
  2224. #: fdmprinter.def.json
  2225. msgctxt "travel_avoid_supports description"
  2226. msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled."
  2227. msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге."
  2228. #: fdmprinter.def.json
  2229. msgctxt "travel_avoid_distance label"
  2230. msgid "Travel Avoid Distance"
  2231. msgstr "Дистанция обхода"
  2232. #: fdmprinter.def.json
  2233. msgctxt "travel_avoid_distance description"
  2234. msgid "The distance between the nozzle and already printed parts when avoiding during travel moves."
  2235. msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении."
  2236. #: fdmprinter.def.json
  2237. msgctxt "start_layers_at_same_position label"
  2238. msgid "Start Layers with the Same Part"
  2239. msgstr "Начинать печать в одном месте"
  2240. #: fdmprinter.def.json
  2241. msgctxt "start_layers_at_same_position description"
  2242. 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."
  2243. msgstr "На каждом слое печать начинается вблизи одной и той же точки, таким образом, мы не начинаем новый слой на том месте, где завершилась печать предыдущего слоя. Это улучшает печать нависаний и мелких частей, но увеличивает длительность процесса."
  2244. #: fdmprinter.def.json
  2245. msgctxt "layer_start_x label"
  2246. msgid "Layer Start X"
  2247. msgstr "X координата начала"
  2248. #: fdmprinter.def.json
  2249. msgctxt "layer_start_x description"
  2250. msgid "The X coordinate of the position near where to find the part to start printing each layer."
  2251. msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя."
  2252. #: fdmprinter.def.json
  2253. msgctxt "layer_start_y label"
  2254. msgid "Layer Start Y"
  2255. msgstr "Y координата начала"
  2256. #: fdmprinter.def.json
  2257. msgctxt "layer_start_y description"
  2258. msgid "The Y coordinate of the position near where to find the part to start printing each layer."
  2259. msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя."
  2260. #: fdmprinter.def.json
  2261. msgctxt "retraction_hop_enabled label"
  2262. msgid "Z Hop When Retracted"
  2263. msgstr "Поднятие оси Z при откате"
  2264. #: fdmprinter.def.json
  2265. msgctxt "retraction_hop_enabled description"
  2266. 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."
  2267. msgstr "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе."
  2268. #: fdmprinter.def.json
  2269. msgctxt "retraction_hop_only_when_collides label"
  2270. msgid "Z Hop Only Over Printed Parts"
  2271. msgstr "Поднятие оси Z только над напечатанными частями"
  2272. #: fdmprinter.def.json
  2273. msgctxt "retraction_hop_only_when_collides description"
  2274. msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling."
  2275. msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении."
  2276. #: fdmprinter.def.json
  2277. msgctxt "retraction_hop label"
  2278. msgid "Z Hop Height"
  2279. msgstr "Высота поднятия оси Z"
  2280. #: fdmprinter.def.json
  2281. msgctxt "retraction_hop description"
  2282. msgid "The height difference when performing a Z Hop."
  2283. msgstr "Расстояние, на которое приподнимается ось Z."
  2284. #: fdmprinter.def.json
  2285. msgctxt "retraction_hop_after_extruder_switch label"
  2286. msgid "Z Hop After Extruder Switch"
  2287. msgstr "Поднятие оси Z после смены экструдера"
  2288. #: fdmprinter.def.json
  2289. msgctxt "retraction_hop_after_extruder_switch description"
  2290. 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."
  2291. msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели."
  2292. #: fdmprinter.def.json
  2293. msgctxt "cooling label"
  2294. msgid "Cooling"
  2295. msgstr "Охлаждение"
  2296. #: fdmprinter.def.json
  2297. msgctxt "cooling description"
  2298. msgid "Cooling"
  2299. msgstr "Охлаждение"
  2300. #: fdmprinter.def.json
  2301. msgctxt "cool_fan_enabled label"
  2302. msgid "Enable Print Cooling"
  2303. msgstr "Включить вентиляторы"
  2304. #: fdmprinter.def.json
  2305. msgctxt "cool_fan_enabled description"
  2306. msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs."
  2307. msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний."
  2308. #: fdmprinter.def.json
  2309. msgctxt "cool_fan_speed label"
  2310. msgid "Fan Speed"
  2311. msgstr "Скорость вентилятора"
  2312. #: fdmprinter.def.json
  2313. msgctxt "cool_fan_speed description"
  2314. msgid "The speed at which the print cooling fans spin."
  2315. msgstr "Скорость, с которой вращаются вентиляторы."
  2316. #: fdmprinter.def.json
  2317. msgctxt "cool_fan_speed_min label"
  2318. msgid "Regular Fan Speed"
  2319. msgstr "Обычная скорость вентилятора"
  2320. #: fdmprinter.def.json
  2321. msgctxt "cool_fan_speed_min description"
  2322. 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."
  2323. msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее."
  2324. #: fdmprinter.def.json
  2325. msgctxt "cool_fan_speed_max label"
  2326. msgid "Maximum Fan Speed"
  2327. msgstr "Максимальная скорость вентилятора"
  2328. #: fdmprinter.def.json
  2329. msgctxt "cool_fan_speed_max description"
  2330. 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."
  2331. msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью."
  2332. #: fdmprinter.def.json
  2333. msgctxt "cool_min_layer_time_fan_speed_max label"
  2334. msgid "Regular/Maximum Fan Speed Threshold"
  2335. msgstr "Порог переключения на повышенную скорость"
  2336. #: fdmprinter.def.json
  2337. msgctxt "cool_min_layer_time_fan_speed_max description"
  2338. 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."
  2339. msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной."
  2340. #: fdmprinter.def.json
  2341. msgctxt "cool_fan_speed_0 label"
  2342. msgid "Initial Fan Speed"
  2343. msgstr "Начальная скорость вентилятора"
  2344. #: fdmprinter.def.json
  2345. msgctxt "cool_fan_speed_0 description"
  2346. 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."
  2347. msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте."
  2348. #: fdmprinter.def.json
  2349. msgctxt "cool_fan_full_at_height label"
  2350. msgid "Regular Fan Speed at Height"
  2351. msgstr "Обычная скорость вентилятора на высоте"
  2352. #: fdmprinter.def.json
  2353. msgctxt "cool_fan_full_at_height description"
  2354. 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."
  2355. msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной."
  2356. #: fdmprinter.def.json
  2357. msgctxt "cool_fan_full_layer label"
  2358. msgid "Regular Fan Speed at Layer"
  2359. msgstr "Обычная скорость вентилятора на слое"
  2360. #: fdmprinter.def.json
  2361. msgctxt "cool_fan_full_layer description"
  2362. 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."
  2363. msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скорость. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого."
  2364. #: fdmprinter.def.json
  2365. msgctxt "cool_min_layer_time label"
  2366. msgid "Minimum Layer Time"
  2367. msgstr "Минимальное время слоя"
  2368. #: fdmprinter.def.json
  2369. msgctxt "cool_min_layer_time description"
  2370. 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."
  2371. msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати."
  2372. #: fdmprinter.def.json
  2373. msgctxt "cool_min_speed label"
  2374. msgid "Minimum Speed"
  2375. msgstr "Минимальная скорость"
  2376. #: fdmprinter.def.json
  2377. msgctxt "cool_min_speed description"
  2378. 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."
  2379. msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати."
  2380. #: fdmprinter.def.json
  2381. msgctxt "cool_lift_head label"
  2382. msgid "Lift Head"
  2383. msgstr "Подъём головы"
  2384. #: fdmprinter.def.json
  2385. msgctxt "cool_lift_head description"
  2386. 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."
  2387. msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя."
  2388. #: fdmprinter.def.json
  2389. msgctxt "support label"
  2390. msgid "Support"
  2391. msgstr "Поддержки"
  2392. #: fdmprinter.def.json
  2393. msgctxt "support description"
  2394. msgid "Support"
  2395. msgstr "Поддержки"
  2396. #: fdmprinter.def.json
  2397. msgctxt "support_enable label"
  2398. msgid "Generate Support"
  2399. msgstr "Генерация поддержек"
  2400. #: fdmprinter.def.json
  2401. msgctxt "support_enable description"
  2402. msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing."
  2403. msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати."
  2404. #: fdmprinter.def.json
  2405. msgctxt "support_extruder_nr label"
  2406. msgid "Support Extruder"
  2407. msgstr "Экструдер поддержек"
  2408. #: fdmprinter.def.json
  2409. msgctxt "support_extruder_nr description"
  2410. msgid "The extruder train to use for printing the support. This is used in multi-extrusion."
  2411. msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров."
  2412. #: fdmprinter.def.json
  2413. msgctxt "support_infill_extruder_nr label"
  2414. msgid "Support Infill Extruder"
  2415. msgstr "Экструдер заполнения поддержек"
  2416. #: fdmprinter.def.json
  2417. msgctxt "support_infill_extruder_nr description"
  2418. msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion."
  2419. msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров."
  2420. #: fdmprinter.def.json
  2421. msgctxt "support_extruder_nr_layer_0 label"
  2422. msgid "First Layer Support Extruder"
  2423. msgstr "Экструдер первого слоя поддержек"
  2424. #: fdmprinter.def.json
  2425. msgctxt "support_extruder_nr_layer_0 description"
  2426. msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion."
  2427. msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров."
  2428. #: fdmprinter.def.json
  2429. msgctxt "support_interface_extruder_nr label"
  2430. msgid "Support Interface Extruder"
  2431. msgstr "Экструдер связующего слоя поддержек"
  2432. #: fdmprinter.def.json
  2433. msgctxt "support_interface_extruder_nr description"
  2434. msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion."
  2435. msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров."
  2436. #: fdmprinter.def.json
  2437. msgctxt "support_roof_extruder_nr label"
  2438. msgid "Support Roof Extruder"
  2439. msgstr "Экструдер крыши поддержек"
  2440. #: fdmprinter.def.json
  2441. msgctxt "support_roof_extruder_nr description"
  2442. msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion."
  2443. msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров."
  2444. #: fdmprinter.def.json
  2445. msgctxt "support_bottom_extruder_nr label"
  2446. msgid "Support Floor Extruder"
  2447. msgstr "Экструдер низа поддержек"
  2448. #: fdmprinter.def.json
  2449. msgctxt "support_bottom_extruder_nr description"
  2450. msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion."
  2451. msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров."
  2452. #: fdmprinter.def.json
  2453. msgctxt "support_type label"
  2454. msgid "Support Placement"
  2455. msgstr "Размещение поддержек"
  2456. #: fdmprinter.def.json
  2457. msgctxt "support_type description"
  2458. 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."
  2459. msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели."
  2460. #: fdmprinter.def.json
  2461. msgctxt "support_type option buildplate"
  2462. msgid "Touching Buildplate"
  2463. msgstr "От стола"
  2464. #: fdmprinter.def.json
  2465. msgctxt "support_type option everywhere"
  2466. msgid "Everywhere"
  2467. msgstr "Везде"
  2468. #: fdmprinter.def.json
  2469. msgctxt "support_angle label"
  2470. msgid "Support Overhang Angle"
  2471. msgstr "Угол нависания поддержки"
  2472. #: fdmprinter.def.json
  2473. msgctxt "support_angle description"
  2474. 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."
  2475. msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек."
  2476. #: fdmprinter.def.json
  2477. msgctxt "support_pattern label"
  2478. msgid "Support Pattern"
  2479. msgstr "Шаблон поддержек"
  2480. #: fdmprinter.def.json
  2481. msgctxt "support_pattern description"
  2482. msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support."
  2483. msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек."
  2484. #: fdmprinter.def.json
  2485. msgctxt "support_pattern option lines"
  2486. msgid "Lines"
  2487. msgstr "Линии"
  2488. #: fdmprinter.def.json
  2489. msgctxt "support_pattern option grid"
  2490. msgid "Grid"
  2491. msgstr "Сетка"
  2492. #: fdmprinter.def.json
  2493. msgctxt "support_pattern option triangles"
  2494. msgid "Triangles"
  2495. msgstr "Треугольники"
  2496. #: fdmprinter.def.json
  2497. msgctxt "support_pattern option concentric"
  2498. msgid "Concentric"
  2499. msgstr "Концентрические"
  2500. #: fdmprinter.def.json
  2501. msgctxt "support_pattern option concentric_3d"
  2502. msgid "Concentric 3D"
  2503. msgstr "Концентрические 3D"
  2504. #: fdmprinter.def.json
  2505. msgctxt "support_pattern option zigzag"
  2506. msgid "Zig Zag"
  2507. msgstr "Зигзаг"
  2508. #: fdmprinter.def.json
  2509. msgctxt "support_pattern option cross"
  2510. msgid "Cross"
  2511. msgstr "Крест"
  2512. #: fdmprinter.def.json
  2513. msgctxt "support_wall_count label"
  2514. msgid "Support Wall Line Count"
  2515. msgstr "Количество линий стенки поддержки"
  2516. #: fdmprinter.def.json
  2517. msgctxt "support_wall_count description"
  2518. 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."
  2519. msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов."
  2520. #: fdmprinter.def.json
  2521. msgctxt "zig_zaggify_support label"
  2522. msgid "Connect Support Lines"
  2523. msgstr "Соединение линий поддержки"
  2524. #: fdmprinter.def.json
  2525. msgctxt "zig_zaggify_support description"
  2526. 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."
  2527. msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала."
  2528. #: fdmprinter.def.json
  2529. msgctxt "support_connect_zigzags label"
  2530. msgid "Connect Support ZigZags"
  2531. msgstr "Соединённый зигзаг"
  2532. #: fdmprinter.def.json
  2533. msgctxt "support_connect_zigzags description"
  2534. msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure."
  2535. msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки."
  2536. #: fdmprinter.def.json
  2537. msgctxt "support_infill_rate label"
  2538. msgid "Support Density"
  2539. msgstr "Плотность поддержек"
  2540. #: fdmprinter.def.json
  2541. msgctxt "support_infill_rate description"
  2542. msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2543. msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять."
  2544. #: fdmprinter.def.json
  2545. msgctxt "support_line_distance label"
  2546. msgid "Support Line Distance"
  2547. msgstr "Дистанция между линиями поддержки"
  2548. #: fdmprinter.def.json
  2549. msgctxt "support_line_distance description"
  2550. msgid "Distance between the printed support structure lines. This setting is calculated by the support density."
  2551. msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек."
  2552. #: fdmprinter.def.json
  2553. msgctxt "support_z_distance label"
  2554. msgid "Support Z Distance"
  2555. msgstr "Зазор поддержки по оси Z"
  2556. #: fdmprinter.def.json
  2557. msgctxt "support_z_distance description"
  2558. 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."
  2559. msgstr "Дистанция от дна/крышки структуры поддержек до печати. Этот зазор упрощает извлечение поддержек после окончания печати модели. Это значение округляется до числа, кратного высоте слоя."
  2560. #: fdmprinter.def.json
  2561. msgctxt "support_top_distance label"
  2562. msgid "Support Top Distance"
  2563. msgstr "Зазор поддержки сверху"
  2564. #: fdmprinter.def.json
  2565. msgctxt "support_top_distance description"
  2566. msgid "Distance from the top of the support to the print."
  2567. msgstr "Расстояние между верхом поддержек и печатаемой моделью."
  2568. #: fdmprinter.def.json
  2569. msgctxt "support_bottom_distance label"
  2570. msgid "Support Bottom Distance"
  2571. msgstr "Дистанция поддержки снизу"
  2572. #: fdmprinter.def.json
  2573. msgctxt "support_bottom_distance description"
  2574. msgid "Distance from the print to the bottom of the support."
  2575. msgstr "Расстояние между печатаемой моделью и низом поддержки."
  2576. #: fdmprinter.def.json
  2577. msgctxt "support_xy_distance label"
  2578. msgid "Support X/Y Distance"
  2579. msgstr "Зазор поддержки по осям X/Y"
  2580. #: fdmprinter.def.json
  2581. msgctxt "support_xy_distance description"
  2582. msgid "Distance of the support structure from the print in the X/Y directions."
  2583. msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y."
  2584. #: fdmprinter.def.json
  2585. msgctxt "support_xy_overrides_z label"
  2586. msgid "Support Distance Priority"
  2587. msgstr "Приоритет зазоров поддержки"
  2588. #: fdmprinter.def.json
  2589. msgctxt "support_xy_overrides_z description"
  2590. 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."
  2591. msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний."
  2592. #: fdmprinter.def.json
  2593. msgctxt "support_xy_overrides_z option xy_overrides_z"
  2594. msgid "X/Y overrides Z"
  2595. msgstr "X/Y перекрывает Z"
  2596. #: fdmprinter.def.json
  2597. msgctxt "support_xy_overrides_z option z_overrides_xy"
  2598. msgid "Z overrides X/Y"
  2599. msgstr "Z перекрывает X/Y"
  2600. #: fdmprinter.def.json
  2601. msgctxt "support_xy_distance_overhang label"
  2602. msgid "Minimum Support X/Y Distance"
  2603. msgstr "Минимальный X/Y зазор поддержки"
  2604. #: fdmprinter.def.json
  2605. msgctxt "support_xy_distance_overhang description"
  2606. msgid "Distance of the support structure from the overhang in the X/Y directions. "
  2607. msgstr "Зазор между структурами поддержек и нависанием по осям X/Y. "
  2608. #: fdmprinter.def.json
  2609. msgctxt "support_bottom_stair_step_height label"
  2610. msgid "Support Stair Step Height"
  2611. msgstr "Высота шага лестничной поддержки"
  2612. #: fdmprinter.def.json
  2613. msgctxt "support_bottom_stair_step_height description"
  2614. 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."
  2615. msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки."
  2616. #: fdmprinter.def.json
  2617. msgctxt "support_bottom_stair_step_width label"
  2618. msgid "Support Stair Step Maximum Width"
  2619. msgstr "Максимальная ширина шага лестничной поддержки"
  2620. #: fdmprinter.def.json
  2621. msgctxt "support_bottom_stair_step_width description"
  2622. 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."
  2623. msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной."
  2624. #: fdmprinter.def.json
  2625. msgctxt "support_join_distance label"
  2626. msgid "Support Join Distance"
  2627. msgstr "Расстояние объединения поддержки"
  2628. #: fdmprinter.def.json
  2629. msgctxt "support_join_distance description"
  2630. 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."
  2631. msgstr "Максимальное расстояние между структурами поддержки по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, то такие структуры объединяются в одну."
  2632. #: fdmprinter.def.json
  2633. msgctxt "support_offset label"
  2634. msgid "Support Horizontal Expansion"
  2635. msgstr "Горизонтальное расширение поддержки"
  2636. #: fdmprinter.def.json
  2637. msgctxt "support_offset description"
  2638. 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."
  2639. msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек."
  2640. #: fdmprinter.def.json
  2641. msgctxt "support_infill_sparse_thickness label"
  2642. msgid "Support Infill Layer Thickness"
  2643. msgstr "Толщина слоя заполнения поддержек"
  2644. #: fdmprinter.def.json
  2645. msgctxt "support_infill_sparse_thickness description"
  2646. msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded."
  2647. msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено."
  2648. #: fdmprinter.def.json
  2649. msgctxt "gradual_support_infill_steps label"
  2650. msgid "Gradual Support Infill Steps"
  2651. msgstr "Степень заполнения поддержек"
  2652. #: fdmprinter.def.json
  2653. msgctxt "gradual_support_infill_steps description"
  2654. 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."
  2655. msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при прохоже вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"."
  2656. #: fdmprinter.def.json
  2657. msgctxt "gradual_support_infill_step_height label"
  2658. msgid "Gradual Support Infill Step Height"
  2659. msgstr "Высота шага изменения заполнения поддержек"
  2660. #: fdmprinter.def.json
  2661. msgctxt "gradual_support_infill_step_height description"
  2662. msgid "The height of support infill of a given density before switching to half the density."
  2663. msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности."
  2664. #: fdmprinter.def.json
  2665. msgctxt "support_interface_enable label"
  2666. msgid "Enable Support Interface"
  2667. msgstr "Разрешить связующий слой поддержки"
  2668. #: fdmprinter.def.json
  2669. msgctxt "support_interface_enable description"
  2670. 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."
  2671. msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели."
  2672. #: fdmprinter.def.json
  2673. msgctxt "support_roof_enable label"
  2674. msgid "Enable Support Roof"
  2675. msgstr "Разрешить крышу поддержек"
  2676. #: fdmprinter.def.json
  2677. msgctxt "support_roof_enable description"
  2678. 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."
  2679. msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой."
  2680. #: fdmprinter.def.json
  2681. msgctxt "support_bottom_enable label"
  2682. msgid "Enable Support Floor"
  2683. msgstr "Разрешить дно поддержек"
  2684. #: fdmprinter.def.json
  2685. msgctxt "support_bottom_enable description"
  2686. 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."
  2687. msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой."
  2688. #: fdmprinter.def.json
  2689. msgctxt "support_interface_height label"
  2690. msgid "Support Interface Thickness"
  2691. msgstr "Толщина связующего слоя поддержки"
  2692. #: fdmprinter.def.json
  2693. msgctxt "support_interface_height description"
  2694. msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top."
  2695. msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху."
  2696. #: fdmprinter.def.json
  2697. msgctxt "support_roof_height label"
  2698. msgid "Support Roof Thickness"
  2699. msgstr "Толщина крыши"
  2700. #: fdmprinter.def.json
  2701. msgctxt "support_roof_height description"
  2702. 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."
  2703. msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель."
  2704. #: fdmprinter.def.json
  2705. msgctxt "support_bottom_height label"
  2706. msgid "Support Floor Thickness"
  2707. msgstr "Толщина низа поддержки"
  2708. #: fdmprinter.def.json
  2709. msgctxt "support_bottom_height description"
  2710. 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."
  2711. msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек."
  2712. #: fdmprinter.def.json
  2713. msgctxt "support_interface_skip_height label"
  2714. msgid "Support Interface Resolution"
  2715. msgstr "Разрешение связующего слоя поддержек"
  2716. #: fdmprinter.def.json
  2717. msgctxt "support_interface_skip_height description"
  2718. 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."
  2719. msgstr "Если выбрано в случае, когда модель находится под и над поддержкой, принимает шаги данной высоты. Малые значения замедляют просчёт, а большие - могут привести к генерации поддержек в некоторых местах, где лучше бы печатать интерфейс поддержек."
  2720. #: fdmprinter.def.json
  2721. msgctxt "support_interface_density label"
  2722. msgid "Support Interface Density"
  2723. msgstr "Плотность связующего слоя поддержки"
  2724. #: fdmprinter.def.json
  2725. msgctxt "support_interface_density description"
  2726. 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."
  2727. msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять."
  2728. #: fdmprinter.def.json
  2729. msgctxt "support_roof_density label"
  2730. msgid "Support Roof Density"
  2731. msgstr "Плотность крыши поддержек"
  2732. #: fdmprinter.def.json
  2733. msgctxt "support_roof_density description"
  2734. msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove."
  2735. msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять."
  2736. #: fdmprinter.def.json
  2737. msgctxt "support_roof_line_distance label"
  2738. msgid "Support Roof Line Distance"
  2739. msgstr "Дистанция линии крыши поддержек"
  2740. #: fdmprinter.def.json
  2741. msgctxt "support_roof_line_distance description"
  2742. msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately."
  2743. msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно."
  2744. #: fdmprinter.def.json
  2745. msgctxt "support_bottom_density label"
  2746. msgid "Support Floor Density"
  2747. msgstr "Плотность низа поддержек"
  2748. #: fdmprinter.def.json
  2749. msgctxt "support_bottom_density description"
  2750. 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."
  2751. msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели."
  2752. #: fdmprinter.def.json
  2753. msgctxt "support_bottom_line_distance label"
  2754. msgid "Support Floor Line Distance"
  2755. msgstr "Дистанция линии низа поддержек"
  2756. #: fdmprinter.def.json
  2757. msgctxt "support_bottom_line_distance description"
  2758. msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately."
  2759. msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно."
  2760. #: fdmprinter.def.json
  2761. msgctxt "support_interface_pattern label"
  2762. msgid "Support Interface Pattern"
  2763. msgstr "Шаблон связующего слоя"
  2764. #: fdmprinter.def.json
  2765. msgctxt "support_interface_pattern description"
  2766. msgid "The pattern with which the interface of the support with the model is printed."
  2767. msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек."
  2768. #: fdmprinter.def.json
  2769. msgctxt "support_interface_pattern option lines"
  2770. msgid "Lines"
  2771. msgstr "Линии"
  2772. #: fdmprinter.def.json
  2773. msgctxt "support_interface_pattern option grid"
  2774. msgid "Grid"
  2775. msgstr "Сетка"
  2776. #: fdmprinter.def.json
  2777. msgctxt "support_interface_pattern option triangles"
  2778. msgid "Triangles"
  2779. msgstr "Треугольники"
  2780. #: fdmprinter.def.json
  2781. msgctxt "support_interface_pattern option concentric"
  2782. msgid "Concentric"
  2783. msgstr "Концентрический"
  2784. #: fdmprinter.def.json
  2785. msgctxt "support_interface_pattern option concentric_3d"
  2786. msgid "Concentric 3D"
  2787. msgstr "Концентрический 3D"
  2788. #: fdmprinter.def.json
  2789. msgctxt "support_interface_pattern option zigzag"
  2790. msgid "Zig Zag"
  2791. msgstr "Зигзаг"
  2792. #: fdmprinter.def.json
  2793. msgctxt "support_roof_pattern label"
  2794. msgid "Support Roof Pattern"
  2795. msgstr "Шаблон крыши поддержек"
  2796. #: fdmprinter.def.json
  2797. msgctxt "support_roof_pattern description"
  2798. msgid "The pattern with which the roofs of the support are printed."
  2799. msgstr "Шаблон, который будет использоваться для печати верхней части поддержек."
  2800. #: fdmprinter.def.json
  2801. msgctxt "support_roof_pattern option lines"
  2802. msgid "Lines"
  2803. msgstr "Линии"
  2804. #: fdmprinter.def.json
  2805. msgctxt "support_roof_pattern option grid"
  2806. msgid "Grid"
  2807. msgstr "Сетка"
  2808. #: fdmprinter.def.json
  2809. msgctxt "support_roof_pattern option triangles"
  2810. msgid "Triangles"
  2811. msgstr "Треугольники"
  2812. #: fdmprinter.def.json
  2813. msgctxt "support_roof_pattern option concentric"
  2814. msgid "Concentric"
  2815. msgstr "Концентрический"
  2816. #: fdmprinter.def.json
  2817. msgctxt "support_roof_pattern option concentric_3d"
  2818. msgid "Concentric 3D"
  2819. msgstr "Концентрический 3D"
  2820. #: fdmprinter.def.json
  2821. msgctxt "support_roof_pattern option zigzag"
  2822. msgid "Zig Zag"
  2823. msgstr "Зигзаг"
  2824. #: fdmprinter.def.json
  2825. msgctxt "support_bottom_pattern label"
  2826. msgid "Support Floor Pattern"
  2827. msgstr "Шаблон низа поддержек"
  2828. #: fdmprinter.def.json
  2829. msgctxt "support_bottom_pattern description"
  2830. msgid "The pattern with which the floors of the support are printed."
  2831. msgstr "Шаблон, который будет использоваться для печати нижней части поддержек."
  2832. #: fdmprinter.def.json
  2833. msgctxt "support_bottom_pattern option lines"
  2834. msgid "Lines"
  2835. msgstr "Линии"
  2836. #: fdmprinter.def.json
  2837. msgctxt "support_bottom_pattern option grid"
  2838. msgid "Grid"
  2839. msgstr "Сетка"
  2840. #: fdmprinter.def.json
  2841. msgctxt "support_bottom_pattern option triangles"
  2842. msgid "Triangles"
  2843. msgstr "Треугольники"
  2844. #: fdmprinter.def.json
  2845. msgctxt "support_bottom_pattern option concentric"
  2846. msgid "Concentric"
  2847. msgstr "Концентрический"
  2848. #: fdmprinter.def.json
  2849. msgctxt "support_bottom_pattern option concentric_3d"
  2850. msgid "Concentric 3D"
  2851. msgstr "Концентрический 3D"
  2852. #: fdmprinter.def.json
  2853. msgctxt "support_bottom_pattern option zigzag"
  2854. msgid "Zig Zag"
  2855. msgstr "Зигзаг"
  2856. #: fdmprinter.def.json
  2857. msgctxt "support_use_towers label"
  2858. msgid "Use Towers"
  2859. msgstr "Использовать башни"
  2860. #: fdmprinter.def.json
  2861. msgctxt "support_use_towers description"
  2862. 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."
  2863. msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу."
  2864. #: fdmprinter.def.json
  2865. msgctxt "support_tower_diameter label"
  2866. msgid "Tower Diameter"
  2867. msgstr "Диаметр башен"
  2868. #: fdmprinter.def.json
  2869. msgctxt "support_tower_diameter description"
  2870. msgid "The diameter of a special tower."
  2871. msgstr "Диаметр специальных башен."
  2872. #: fdmprinter.def.json
  2873. msgctxt "support_minimal_diameter label"
  2874. msgid "Minimum Diameter"
  2875. msgstr "Минимальный диаметр"
  2876. #: fdmprinter.def.json
  2877. msgctxt "support_minimal_diameter description"
  2878. msgid "Minimum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower."
  2879. msgstr "Минимальный диаметр по осям X/Y небольшой области, которая будет поддерживаться с помощью специальных башен."
  2880. #: fdmprinter.def.json
  2881. msgctxt "support_tower_roof_angle label"
  2882. msgid "Tower Roof Angle"
  2883. msgstr "Угол крыши башен"
  2884. #: fdmprinter.def.json
  2885. msgctxt "support_tower_roof_angle description"
  2886. 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."
  2887. msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской."
  2888. #: fdmprinter.def.json
  2889. msgctxt "support_mesh_drop_down label"
  2890. msgid "Drop Down Support Mesh"
  2891. msgstr "Объект поддержки нависаний"
  2892. #: fdmprinter.def.json
  2893. msgctxt "support_mesh_drop_down description"
  2894. msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh."
  2895. msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет."
  2896. #: fdmprinter.def.json
  2897. msgctxt "platform_adhesion label"
  2898. msgid "Build Plate Adhesion"
  2899. msgstr "Прилипание к столу"
  2900. #: fdmprinter.def.json
  2901. msgctxt "platform_adhesion description"
  2902. msgid "Adhesion"
  2903. msgstr "Прилипание"
  2904. #: fdmprinter.def.json
  2905. msgctxt "prime_blob_enable label"
  2906. msgid "Enable Prime Blob"
  2907. msgstr "Разрешить наполнение материалом"
  2908. #: fdmprinter.def.json
  2909. msgctxt "prime_blob_enable description"
  2910. 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."
  2911. msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время."
  2912. #: fdmprinter.def.json
  2913. msgctxt "extruder_prime_pos_x label"
  2914. msgid "Extruder Prime X Position"
  2915. msgstr "Начальная X позиция экструдера"
  2916. #: fdmprinter.def.json
  2917. msgctxt "extruder_prime_pos_x description"
  2918. msgid "The X coordinate of the position where the nozzle primes at the start of printing."
  2919. msgstr "X координата позиции, в которой сопло начинает печать."
  2920. #: fdmprinter.def.json
  2921. msgctxt "extruder_prime_pos_y label"
  2922. msgid "Extruder Prime Y Position"
  2923. msgstr "Начальная Y позиция экструдера"
  2924. #: fdmprinter.def.json
  2925. msgctxt "extruder_prime_pos_y description"
  2926. msgid "The Y coordinate of the position where the nozzle primes at the start of printing."
  2927. msgstr "Y координата позиции, в которой сопло начинает печать."
  2928. #: fdmprinter.def.json
  2929. msgctxt "adhesion_type label"
  2930. msgid "Build Plate Adhesion Type"
  2931. msgstr "Тип прилипания к столу"
  2932. #: fdmprinter.def.json
  2933. msgctxt "adhesion_type description"
  2934. 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."
  2935. msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней."
  2936. #: fdmprinter.def.json
  2937. msgctxt "adhesion_type option skirt"
  2938. msgid "Skirt"
  2939. msgstr "Юбка"
  2940. #: fdmprinter.def.json
  2941. msgctxt "adhesion_type option brim"
  2942. msgid "Brim"
  2943. msgstr "Кайма"
  2944. #: fdmprinter.def.json
  2945. msgctxt "adhesion_type option raft"
  2946. msgid "Raft"
  2947. msgstr "Подложка"
  2948. #: fdmprinter.def.json
  2949. msgctxt "adhesion_type option none"
  2950. msgid "None"
  2951. msgstr "Отсутствует"
  2952. #: fdmprinter.def.json
  2953. msgctxt "adhesion_extruder_nr label"
  2954. msgid "Build Plate Adhesion Extruder"
  2955. msgstr "Экструдер первого слоя"
  2956. #: fdmprinter.def.json
  2957. msgctxt "adhesion_extruder_nr description"
  2958. msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion."
  2959. msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров."
  2960. #: fdmprinter.def.json
  2961. msgctxt "skirt_line_count label"
  2962. msgid "Skirt Line Count"
  2963. msgstr "Количество линий юбки"
  2964. #: fdmprinter.def.json
  2965. msgctxt "skirt_line_count description"
  2966. msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt."
  2967. msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки."
  2968. #: fdmprinter.def.json
  2969. msgctxt "skirt_gap label"
  2970. msgid "Skirt Distance"
  2971. msgstr "Дистанция до юбки"
  2972. #: fdmprinter.def.json
  2973. msgctxt "skirt_gap description"
  2974. msgid ""
  2975. "The horizontal distance between the skirt and the first layer of the print.\n"
  2976. "This is the minimum distance. Multiple skirt lines will extend outwards from this distance."
  2977. msgstr "Горизонтальное расстояние между юбкой и первым слоем печати.\nМинимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния."
  2978. #: fdmprinter.def.json
  2979. msgctxt "skirt_brim_minimal_length label"
  2980. msgid "Skirt/Brim Minimum Length"
  2981. msgstr "Минимальная длина юбки/каймы"
  2982. #: fdmprinter.def.json
  2983. msgctxt "skirt_brim_minimal_length description"
  2984. 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."
  2985. msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется."
  2986. #: fdmprinter.def.json
  2987. msgctxt "brim_width label"
  2988. msgid "Brim Width"
  2989. msgstr "Ширина каймы"
  2990. #: fdmprinter.def.json
  2991. msgctxt "brim_width description"
  2992. 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."
  2993. msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати."
  2994. #: fdmprinter.def.json
  2995. msgctxt "brim_line_count label"
  2996. msgid "Brim Line Count"
  2997. msgstr "Количество линий каймы"
  2998. #: fdmprinter.def.json
  2999. msgctxt "brim_line_count description"
  3000. 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."
  3001. msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати."
  3002. #: fdmprinter.def.json
  3003. msgctxt "brim_outside_only label"
  3004. msgid "Brim Only on Outside"
  3005. msgstr "Кайма только снаружи"
  3006. #: fdmprinter.def.json
  3007. msgctxt "brim_outside_only description"
  3008. 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."
  3009. msgstr "Печатать кайму только на внешней стороне модели. Это сокращает объём каймы, которую вам потребуется удалить в дальнейшем, и не снижает качество прилипания к столу."
  3010. #: fdmprinter.def.json
  3011. msgctxt "raft_margin label"
  3012. msgid "Raft Extra Margin"
  3013. msgstr "Дополнительное поле подложки"
  3014. #: fdmprinter.def.json
  3015. msgctxt "raft_margin description"
  3016. 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."
  3017. msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати."
  3018. #: fdmprinter.def.json
  3019. msgctxt "raft_smoothing label"
  3020. msgid "Raft Smoothing"
  3021. msgstr "Сглаживание подложки"
  3022. #: fdmprinter.def.json
  3023. msgctxt "raft_smoothing description"
  3024. 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."
  3025. msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга."
  3026. #: fdmprinter.def.json
  3027. msgctxt "raft_airgap label"
  3028. msgid "Raft Air Gap"
  3029. msgstr "Воздушный зазор подложки"
  3030. #: fdmprinter.def.json
  3031. msgctxt "raft_airgap description"
  3032. 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."
  3033. msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки."
  3034. #: fdmprinter.def.json
  3035. msgctxt "layer_0_z_overlap label"
  3036. msgid "Initial Layer Z Overlap"
  3037. msgstr "Z наложение первого слоя"
  3038. #: fdmprinter.def.json
  3039. msgctxt "layer_0_z_overlap description"
  3040. 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."
  3041. msgstr "Приводит к наложению первого и второго слоёв модели по оси Z для компенсации потерь материала в воздушном зазоре. Все слои модели выше первого будут смешены чуть ниже на указанное значение."
  3042. #: fdmprinter.def.json
  3043. msgctxt "raft_surface_layers label"
  3044. msgid "Raft Top Layers"
  3045. msgstr "Верхние слои подложки"
  3046. #: fdmprinter.def.json
  3047. msgctxt "raft_surface_layers description"
  3048. 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."
  3049. msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один."
  3050. #: fdmprinter.def.json
  3051. msgctxt "raft_surface_thickness label"
  3052. msgid "Raft Top Layer Thickness"
  3053. msgstr "Толщина верхнего слоя подложки"
  3054. #: fdmprinter.def.json
  3055. msgctxt "raft_surface_thickness description"
  3056. msgid "Layer thickness of the top raft layers."
  3057. msgstr "Толщина верхних слоёв поддержки."
  3058. #: fdmprinter.def.json
  3059. msgctxt "raft_surface_line_width label"
  3060. msgid "Raft Top Line Width"
  3061. msgstr "Ширина линий верха подложки"
  3062. #: fdmprinter.def.json
  3063. msgctxt "raft_surface_line_width description"
  3064. 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."
  3065. msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой."
  3066. #: fdmprinter.def.json
  3067. msgctxt "raft_surface_line_spacing label"
  3068. msgid "Raft Top Spacing"
  3069. msgstr "Дистанция между линиями верха поддержки"
  3070. #: fdmprinter.def.json
  3071. msgctxt "raft_surface_line_spacing description"
  3072. 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."
  3073. msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной."
  3074. #: fdmprinter.def.json
  3075. msgctxt "raft_interface_thickness label"
  3076. msgid "Raft Middle Thickness"
  3077. msgstr "Толщина середины подложки"
  3078. #: fdmprinter.def.json
  3079. msgctxt "raft_interface_thickness description"
  3080. msgid "Layer thickness of the middle raft layer."
  3081. msgstr "Толщина слоёв середины подложки."
  3082. #: fdmprinter.def.json
  3083. msgctxt "raft_interface_line_width label"
  3084. msgid "Raft Middle Line Width"
  3085. msgstr "Ширина линий середины подложки"
  3086. #: fdmprinter.def.json
  3087. msgctxt "raft_interface_line_width description"
  3088. 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."
  3089. msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу."
  3090. #: fdmprinter.def.json
  3091. msgctxt "raft_interface_line_spacing label"
  3092. msgid "Raft Middle Spacing"
  3093. msgstr "Дистанция между слоями середины подложки"
  3094. #: fdmprinter.def.json
  3095. msgctxt "raft_interface_line_spacing description"
  3096. 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."
  3097. msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки."
  3098. #: fdmprinter.def.json
  3099. msgctxt "raft_base_thickness label"
  3100. msgid "Raft Base Thickness"
  3101. msgstr "Толщина нижнего слоя подложки"
  3102. #: fdmprinter.def.json
  3103. msgctxt "raft_base_thickness description"
  3104. msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate."
  3105. msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу."
  3106. #: fdmprinter.def.json
  3107. msgctxt "raft_base_line_width label"
  3108. msgid "Raft Base Line Width"
  3109. msgstr "Ширина линии нижнего слоя подложки"
  3110. #: fdmprinter.def.json
  3111. msgctxt "raft_base_line_width description"
  3112. msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion."
  3113. msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу."
  3114. #: fdmprinter.def.json
  3115. msgctxt "raft_base_line_spacing label"
  3116. msgid "Raft Line Spacing"
  3117. msgstr "Дистанция между линиями подложки"
  3118. #: fdmprinter.def.json
  3119. msgctxt "raft_base_line_spacing description"
  3120. 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."
  3121. msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола."
  3122. #: fdmprinter.def.json
  3123. msgctxt "raft_speed label"
  3124. msgid "Raft Print Speed"
  3125. msgstr "Скорость печати подложки"
  3126. #: fdmprinter.def.json
  3127. msgctxt "raft_speed description"
  3128. msgid "The speed at which the raft is printed."
  3129. msgstr "Скорость, на которой печатается подложка."
  3130. #: fdmprinter.def.json
  3131. msgctxt "raft_surface_speed label"
  3132. msgid "Raft Top Print Speed"
  3133. msgstr "Скорость печати верха подложки"
  3134. #: fdmprinter.def.json
  3135. msgctxt "raft_surface_speed description"
  3136. 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."
  3137. msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности."
  3138. #: fdmprinter.def.json
  3139. msgctxt "raft_interface_speed label"
  3140. msgid "Raft Middle Print Speed"
  3141. msgstr "Скорость печати середины подложки"
  3142. #: fdmprinter.def.json
  3143. msgctxt "raft_interface_speed description"
  3144. 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."
  3145. msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой."
  3146. #: fdmprinter.def.json
  3147. msgctxt "raft_base_speed label"
  3148. msgid "Raft Base Print Speed"
  3149. msgstr "Скорость печати низа подложки"
  3150. #: fdmprinter.def.json
  3151. msgctxt "raft_base_speed description"
  3152. 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."
  3153. msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой."
  3154. #: fdmprinter.def.json
  3155. msgctxt "raft_acceleration label"
  3156. msgid "Raft Print Acceleration"
  3157. msgstr "Ускорение печати подложки"
  3158. #: fdmprinter.def.json
  3159. msgctxt "raft_acceleration description"
  3160. msgid "The acceleration with which the raft is printed."
  3161. msgstr "Ускорение, с которым печатается подложка."
  3162. #: fdmprinter.def.json
  3163. msgctxt "raft_surface_acceleration label"
  3164. msgid "Raft Top Print Acceleration"
  3165. msgstr "Ускорение печати верха подложки"
  3166. #: fdmprinter.def.json
  3167. msgctxt "raft_surface_acceleration description"
  3168. msgid "The acceleration with which the top raft layers are printed."
  3169. msgstr "Ускорение, с которым печатаются верхние слои подложки."
  3170. #: fdmprinter.def.json
  3171. msgctxt "raft_interface_acceleration label"
  3172. msgid "Raft Middle Print Acceleration"
  3173. msgstr "Ускорение печати середины подложки"
  3174. #: fdmprinter.def.json
  3175. msgctxt "raft_interface_acceleration description"
  3176. msgid "The acceleration with which the middle raft layer is printed."
  3177. msgstr "Ускорение, с которым печатаются средние слои подложки."
  3178. #: fdmprinter.def.json
  3179. msgctxt "raft_base_acceleration label"
  3180. msgid "Raft Base Print Acceleration"
  3181. msgstr "Ускорение печати низа подложки"
  3182. #: fdmprinter.def.json
  3183. msgctxt "raft_base_acceleration description"
  3184. msgid "The acceleration with which the base raft layer is printed."
  3185. msgstr "Ускорение, с которым печатаются нижние слои подложки."
  3186. #: fdmprinter.def.json
  3187. msgctxt "raft_jerk label"
  3188. msgid "Raft Print Jerk"
  3189. msgstr "Рывок подложки"
  3190. #: fdmprinter.def.json
  3191. msgctxt "raft_jerk description"
  3192. msgid "The jerk with which the raft is printed."
  3193. msgstr "Скорость изменения ускорений при печати подложки."
  3194. #: fdmprinter.def.json
  3195. msgctxt "raft_surface_jerk label"
  3196. msgid "Raft Top Print Jerk"
  3197. msgstr "Рывок печати верха подложки"
  3198. #: fdmprinter.def.json
  3199. msgctxt "raft_surface_jerk description"
  3200. msgid "The jerk with which the top raft layers are printed."
  3201. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки."
  3202. #: fdmprinter.def.json
  3203. msgctxt "raft_interface_jerk label"
  3204. msgid "Raft Middle Print Jerk"
  3205. msgstr "Рывок печати середины подложки"
  3206. #: fdmprinter.def.json
  3207. msgctxt "raft_interface_jerk description"
  3208. msgid "The jerk with which the middle raft layer is printed."
  3209. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки."
  3210. #: fdmprinter.def.json
  3211. msgctxt "raft_base_jerk label"
  3212. msgid "Raft Base Print Jerk"
  3213. msgstr "Рывок печати низа подложки"
  3214. #: fdmprinter.def.json
  3215. msgctxt "raft_base_jerk description"
  3216. msgid "The jerk with which the base raft layer is printed."
  3217. msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки."
  3218. #: fdmprinter.def.json
  3219. msgctxt "raft_fan_speed label"
  3220. msgid "Raft Fan Speed"
  3221. msgstr "Скорость вентилятора для подложки"
  3222. #: fdmprinter.def.json
  3223. msgctxt "raft_fan_speed description"
  3224. msgid "The fan speed for the raft."
  3225. msgstr "Скорость вращения вентилятора при печати подложки."
  3226. #: fdmprinter.def.json
  3227. msgctxt "raft_surface_fan_speed label"
  3228. msgid "Raft Top Fan Speed"
  3229. msgstr "Скорость вентилятора для верха подложки"
  3230. #: fdmprinter.def.json
  3231. msgctxt "raft_surface_fan_speed description"
  3232. msgid "The fan speed for the top raft layers."
  3233. msgstr "Скорость вентилятора при печати верхних слоёв подложки."
  3234. #: fdmprinter.def.json
  3235. msgctxt "raft_interface_fan_speed label"
  3236. msgid "Raft Middle Fan Speed"
  3237. msgstr "Скорость вентилятора для середины подложки"
  3238. #: fdmprinter.def.json
  3239. msgctxt "raft_interface_fan_speed description"
  3240. msgid "The fan speed for the middle raft layer."
  3241. msgstr "Скорость вентилятора при печати средних слоёв подложки."
  3242. #: fdmprinter.def.json
  3243. msgctxt "raft_base_fan_speed label"
  3244. msgid "Raft Base Fan Speed"
  3245. msgstr "Скорость вентилятора для низа подложки"
  3246. #: fdmprinter.def.json
  3247. msgctxt "raft_base_fan_speed description"
  3248. msgid "The fan speed for the base raft layer."
  3249. msgstr "Скорость вентилятора при печати нижнего слоя подложки."
  3250. #: fdmprinter.def.json
  3251. msgctxt "dual label"
  3252. msgid "Dual Extrusion"
  3253. msgstr "Два экструдера"
  3254. #: fdmprinter.def.json
  3255. msgctxt "dual description"
  3256. msgid "Settings used for printing with multiple extruders."
  3257. msgstr "Параметры, используемые для печати несколькими экструдерами."
  3258. #: fdmprinter.def.json
  3259. msgctxt "prime_tower_enable label"
  3260. msgid "Enable Prime Tower"
  3261. msgstr "Разрешить черновую башню"
  3262. #: fdmprinter.def.json
  3263. msgctxt "prime_tower_enable description"
  3264. msgid "Print a tower next to the print which serves to prime the material after each nozzle switch."
  3265. msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера."
  3266. #: fdmprinter.def.json
  3267. msgctxt "prime_tower_circular label"
  3268. msgid "Circular Prime Tower"
  3269. msgstr "Цилиндрическая черновая башня"
  3270. #: fdmprinter.def.json
  3271. msgctxt "prime_tower_circular description"
  3272. msgid "Make the prime tower as a circular shape."
  3273. msgstr "Делает черновую башню цилиндрической формы."
  3274. #: fdmprinter.def.json
  3275. msgctxt "prime_tower_size label"
  3276. msgid "Prime Tower Size"
  3277. msgstr "Размер черновой башни"
  3278. #: fdmprinter.def.json
  3279. msgctxt "prime_tower_size description"
  3280. msgid "The width of the prime tower."
  3281. msgstr "Ширина черновой башни."
  3282. #: fdmprinter.def.json
  3283. msgctxt "prime_tower_min_volume label"
  3284. msgid "Prime Tower Minimum Volume"
  3285. msgstr "Минимальный объём черновой башни"
  3286. #: fdmprinter.def.json
  3287. msgctxt "prime_tower_min_volume description"
  3288. msgid "The minimum volume for each layer of the prime tower in order to purge enough material."
  3289. msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить."
  3290. #: fdmprinter.def.json
  3291. msgctxt "prime_tower_wall_thickness label"
  3292. msgid "Prime Tower Thickness"
  3293. msgstr "Толщина черновой башни"
  3294. #: fdmprinter.def.json
  3295. msgctxt "prime_tower_wall_thickness description"
  3296. 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."
  3297. msgstr "Толщина полости черновой башни. Если толщина больше половины минимального объёма черновой башни, то результатом будет увеличение плотности башни."
  3298. #: fdmprinter.def.json
  3299. msgctxt "prime_tower_position_x label"
  3300. msgid "Prime Tower X Position"
  3301. msgstr "X позиция черновой башни"
  3302. #: fdmprinter.def.json
  3303. msgctxt "prime_tower_position_x description"
  3304. msgid "The x coordinate of the position of the prime tower."
  3305. msgstr "X координата позиции черновой башни."
  3306. #: fdmprinter.def.json
  3307. msgctxt "prime_tower_position_y label"
  3308. msgid "Prime Tower Y Position"
  3309. msgstr "Y позиция черновой башни"
  3310. #: fdmprinter.def.json
  3311. msgctxt "prime_tower_position_y description"
  3312. msgid "The y coordinate of the position of the prime tower."
  3313. msgstr "Y координата позиции черновой башни."
  3314. #: fdmprinter.def.json
  3315. msgctxt "prime_tower_flow label"
  3316. msgid "Prime Tower Flow"
  3317. msgstr "Поток черновой башни"
  3318. #: fdmprinter.def.json
  3319. msgctxt "prime_tower_flow description"
  3320. msgid "Flow compensation: the amount of material extruded is multiplied by this value."
  3321. msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент."
  3322. #: fdmprinter.def.json
  3323. msgctxt "prime_tower_wipe_enabled label"
  3324. msgid "Wipe Inactive Nozzle on Prime Tower"
  3325. msgstr "Очистка неактивного сопла на черновой башне"
  3326. #: fdmprinter.def.json
  3327. msgctxt "prime_tower_wipe_enabled description"
  3328. msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower."
  3329. msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню."
  3330. #: fdmprinter.def.json
  3331. msgctxt "dual_pre_wipe label"
  3332. msgid "Wipe Nozzle After Switch"
  3333. msgstr "Очистка сопла после переключения"
  3334. #: fdmprinter.def.json
  3335. msgctxt "dual_pre_wipe description"
  3336. 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."
  3337. msgstr "После смены экструдера убираем на первой печатаемой части материал, вытекший из сопла. Выполняется безопасная медленная очистка на месте, где вытекший материал нанесёт наименьший ущерб качеству печатаемой поверхности."
  3338. #: fdmprinter.def.json
  3339. msgctxt "prime_tower_purge_volume label"
  3340. msgid "Prime Tower Purge Volume"
  3341. msgstr "Объём очистки черновой башни"
  3342. #: fdmprinter.def.json
  3343. msgctxt "prime_tower_purge_volume description"
  3344. 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."
  3345. msgstr "Объём материала, который будет выдавлен при очистке на черновой башне. Очистка полезна для компенсации недостатка материала из-за его вытекания при простое сопла."
  3346. #: fdmprinter.def.json
  3347. msgctxt "ooze_shield_enabled label"
  3348. msgid "Enable Ooze Shield"
  3349. msgstr "Печатать защиту от капель"
  3350. #: fdmprinter.def.json
  3351. msgctxt "ooze_shield_enabled description"
  3352. 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."
  3353. msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло."
  3354. #: fdmprinter.def.json
  3355. msgctxt "ooze_shield_angle label"
  3356. msgid "Ooze Shield Angle"
  3357. msgstr "Угол защиты от капель"
  3358. #: fdmprinter.def.json
  3359. msgctxt "ooze_shield_angle description"
  3360. 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."
  3361. msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала."
  3362. #: fdmprinter.def.json
  3363. msgctxt "ooze_shield_dist label"
  3364. msgid "Ooze Shield Distance"
  3365. msgstr "Дистанция до защиты от капель"
  3366. #: fdmprinter.def.json
  3367. msgctxt "ooze_shield_dist description"
  3368. msgid "Distance of the ooze shield from the print, in the X/Y directions."
  3369. msgstr "Дистанция до стенки защиты от модели, по осям X/Y."
  3370. #: fdmprinter.def.json
  3371. msgctxt "meshfix label"
  3372. msgid "Mesh Fixes"
  3373. msgstr "Ремонт объектов"
  3374. #: fdmprinter.def.json
  3375. msgctxt "meshfix description"
  3376. msgid "category_fixes"
  3377. msgstr "category_fixes"
  3378. #: fdmprinter.def.json
  3379. msgctxt "meshfix_union_all label"
  3380. msgid "Union Overlapping Volumes"
  3381. msgstr "Объединение перекрывающихся объёмов"
  3382. #: fdmprinter.def.json
  3383. msgctxt "meshfix_union_all description"
  3384. 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."
  3385. msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей."
  3386. #: fdmprinter.def.json
  3387. msgctxt "meshfix_union_all_remove_holes label"
  3388. msgid "Remove All Holes"
  3389. msgstr "Удаляет все отверстия"
  3390. #: fdmprinter.def.json
  3391. msgctxt "meshfix_union_all_remove_holes description"
  3392. 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."
  3393. msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу."
  3394. #: fdmprinter.def.json
  3395. msgctxt "meshfix_extensive_stitching label"
  3396. msgid "Extensive Stitching"
  3397. msgstr "Обширное сшивание"
  3398. #: fdmprinter.def.json
  3399. msgctxt "meshfix_extensive_stitching description"
  3400. 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."
  3401. msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки."
  3402. #: fdmprinter.def.json
  3403. msgctxt "meshfix_keep_open_polygons label"
  3404. msgid "Keep Disconnected Faces"
  3405. msgstr "Сохранить отсоединённые поверхности"
  3406. #: fdmprinter.def.json
  3407. msgctxt "meshfix_keep_open_polygons description"
  3408. 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."
  3409. msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код."
  3410. #: fdmprinter.def.json
  3411. msgctxt "multiple_mesh_overlap label"
  3412. msgid "Merged Meshes Overlap"
  3413. msgstr "Перекрытие касающихся объектов"
  3414. #: fdmprinter.def.json
  3415. msgctxt "multiple_mesh_overlap description"
  3416. msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better."
  3417. msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче."
  3418. #: fdmprinter.def.json
  3419. msgctxt "carve_multiple_volumes label"
  3420. msgid "Remove Mesh Intersection"
  3421. msgstr "Удалить пересечения объектов"
  3422. #: fdmprinter.def.json
  3423. msgctxt "carve_multiple_volumes description"
  3424. msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other."
  3425. msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом."
  3426. #: fdmprinter.def.json
  3427. msgctxt "alternate_carve_order label"
  3428. msgid "Alternate Mesh Removal"
  3429. msgstr "Чередование объектов"
  3430. #: fdmprinter.def.json
  3431. msgctxt "alternate_carve_order description"
  3432. 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."
  3433. msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов."
  3434. #: fdmprinter.def.json
  3435. msgctxt "remove_empty_first_layers label"
  3436. msgid "Remove Empty First Layers"
  3437. msgstr "Удалить первые пустые слои"
  3438. #: fdmprinter.def.json
  3439. msgctxt "remove_empty_first_layers description"
  3440. 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."
  3441. msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»."
  3442. #: fdmprinter.def.json
  3443. msgctxt "blackmagic label"
  3444. msgid "Special Modes"
  3445. msgstr "Специальные режимы"
  3446. #: fdmprinter.def.json
  3447. msgctxt "blackmagic description"
  3448. msgid "category_blackmagic"
  3449. msgstr "category_blackmagic"
  3450. #: fdmprinter.def.json
  3451. msgctxt "print_sequence label"
  3452. msgid "Print Sequence"
  3453. msgstr "Последовательная печать"
  3454. #: fdmprinter.def.json
  3455. msgctxt "print_sequence description"
  3456. 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."
  3457. msgstr "Печатать ли все модели послойно или каждую модель в отдельности. Отдельная печать возможна в случае, когда все модели разделены так, чтобы между ними могла проходить голова принтера и все модели ниже чем расстояние до осей X/Y."
  3458. #: fdmprinter.def.json
  3459. msgctxt "print_sequence option all_at_once"
  3460. msgid "All at Once"
  3461. msgstr "Все за раз"
  3462. #: fdmprinter.def.json
  3463. msgctxt "print_sequence option one_at_a_time"
  3464. msgid "One at a Time"
  3465. msgstr "По отдельности"
  3466. #: fdmprinter.def.json
  3467. msgctxt "infill_mesh label"
  3468. msgid "Infill Mesh"
  3469. msgstr "Заполнение объекта"
  3470. #: fdmprinter.def.json
  3471. msgctxt "infill_mesh description"
  3472. 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."
  3473. msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек."
  3474. #: fdmprinter.def.json
  3475. msgctxt "infill_mesh_order label"
  3476. msgid "Infill Mesh Order"
  3477. msgstr "Порядок заполнения объекта"
  3478. #: fdmprinter.def.json
  3479. msgctxt "infill_mesh_order description"
  3480. 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."
  3481. msgstr "Определяет какой заполняющий объект находится внутри заполнения другого заполняющего объекта. Заполняющий объект с более высоким порядком будет модифицировать заполнение объектов с более низким порядком или обычных объектов."
  3482. #: fdmprinter.def.json
  3483. msgctxt "cutting_mesh label"
  3484. msgid "Cutting Mesh"
  3485. msgstr "Ограничивающий объект"
  3486. #: fdmprinter.def.json
  3487. msgctxt "cutting_mesh description"
  3488. 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."
  3489. msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер."
  3490. #: fdmprinter.def.json
  3491. msgctxt "mold_enabled label"
  3492. msgid "Mold"
  3493. msgstr "Форма"
  3494. #: fdmprinter.def.json
  3495. msgctxt "mold_enabled description"
  3496. msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate."
  3497. msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели."
  3498. #: fdmprinter.def.json
  3499. msgctxt "mold_width label"
  3500. msgid "Minimal Mold Width"
  3501. msgstr "Минимальная ширина формы"
  3502. #: fdmprinter.def.json
  3503. msgctxt "mold_width description"
  3504. msgid "The minimal distance between the ouside of the mold and the outside of the model."
  3505. msgstr "Минимальное расстояние между внешними сторонами формы и модели."
  3506. #: fdmprinter.def.json
  3507. msgctxt "mold_roof_height label"
  3508. msgid "Mold Roof Height"
  3509. msgstr "Высота крыши формы"
  3510. #: fdmprinter.def.json
  3511. msgctxt "mold_roof_height description"
  3512. msgid "The height above horizontal parts in your model which to print mold."
  3513. msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма."
  3514. #: fdmprinter.def.json
  3515. msgctxt "mold_angle label"
  3516. msgid "Mold Angle"
  3517. msgstr "Угол формы"
  3518. #: fdmprinter.def.json
  3519. msgctxt "mold_angle description"
  3520. 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."
  3521. msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели."
  3522. #: fdmprinter.def.json
  3523. msgctxt "support_mesh label"
  3524. msgid "Support Mesh"
  3525. msgstr "Поддерживающий объект"
  3526. #: fdmprinter.def.json
  3527. msgctxt "support_mesh description"
  3528. msgid "Use this mesh to specify support areas. This can be used to generate support structure."
  3529. msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек."
  3530. #: fdmprinter.def.json
  3531. msgctxt "anti_overhang_mesh label"
  3532. msgid "Anti Overhang Mesh"
  3533. msgstr "Блокиратор поддержек"
  3534. #: fdmprinter.def.json
  3535. msgctxt "anti_overhang_mesh description"
  3536. 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."
  3537. msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки."
  3538. #: fdmprinter.def.json
  3539. msgctxt "magic_mesh_surface_mode label"
  3540. msgid "Surface Mode"
  3541. msgstr "Поверхностный режим"
  3542. #: fdmprinter.def.json
  3543. msgctxt "magic_mesh_surface_mode description"
  3544. 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."
  3545. msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности."
  3546. #: fdmprinter.def.json
  3547. msgctxt "magic_mesh_surface_mode option normal"
  3548. msgid "Normal"
  3549. msgstr "Нормаль"
  3550. #: fdmprinter.def.json
  3551. msgctxt "magic_mesh_surface_mode option surface"
  3552. msgid "Surface"
  3553. msgstr "Поверхность"
  3554. #: fdmprinter.def.json
  3555. msgctxt "magic_mesh_surface_mode option both"
  3556. msgid "Both"
  3557. msgstr "Оба варианта"
  3558. #: fdmprinter.def.json
  3559. msgctxt "magic_spiralize label"
  3560. msgid "Spiralize Outer Contour"
  3561. msgstr "Спирально печатать внешний контур"
  3562. #: fdmprinter.def.json
  3563. msgctxt "magic_spiralize description"
  3564. 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."
  3565. msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели."
  3566. #: fdmprinter.def.json
  3567. msgctxt "smooth_spiralized_contours label"
  3568. msgid "Smooth Spiralized Contours"
  3569. msgstr "Сглаживать спиральные контуры"
  3570. #: fdmprinter.def.json
  3571. msgctxt "smooth_spiralized_contours description"
  3572. 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."
  3573. msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но по-прежнему виден при послойном просмотре). Следует отметить, что сглаживание ведёт к размыванию мелких деталей поверхности."
  3574. #: fdmprinter.def.json
  3575. msgctxt "relative_extrusion label"
  3576. msgid "Relative Extrusion"
  3577. msgstr "Отностительная экструзия"
  3578. #: fdmprinter.def.json
  3579. msgctxt "relative_extrusion description"
  3580. 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."
  3581. msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии."
  3582. #: fdmprinter.def.json
  3583. msgctxt "experimental label"
  3584. msgid "Experimental"
  3585. msgstr "Экспериментальное"
  3586. #: fdmprinter.def.json
  3587. msgctxt "experimental description"
  3588. msgid "experimental!"
  3589. msgstr "экспериментальное!"
  3590. #: fdmprinter.def.json
  3591. msgctxt "support_tree_enable label"
  3592. msgid "Tree Support"
  3593. msgstr "Древовидная поддержка"
  3594. #: fdmprinter.def.json
  3595. msgctxt "support_tree_enable description"
  3596. 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."
  3597. msgstr "Генерирование древовидной поддержки с ответвлениями, поддерживающими вашу печать. Данная опция может сэкономить материал и сократить время печати, однако при этом существенно возрастает время разделения на слои."
  3598. #: fdmprinter.def.json
  3599. msgctxt "support_tree_angle label"
  3600. msgid "Tree Support Branch Angle"
  3601. msgstr "Угол ответвления древовидной поддержки"
  3602. #: fdmprinter.def.json
  3603. msgctxt "support_tree_angle description"
  3604. 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."
  3605. msgstr "Угол ответвлений. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол."
  3606. #: fdmprinter.def.json
  3607. msgctxt "support_tree_branch_distance label"
  3608. msgid "Tree Support Branch Distance"
  3609. msgstr "Расстояние ответвления древовидной поддержки"
  3610. #: fdmprinter.def.json
  3611. msgctxt "support_tree_branch_distance description"
  3612. 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."
  3613. msgstr "Указывает, насколько далеко должны друг от друга располагаться ответвления при касании модели. Если задать небольшое расстояние, увеличится количество точек, в которых древовидная поддержка касается модели; это улучшает нависание, но при этом усложняет удаление поддержки."
  3614. #: fdmprinter.def.json
  3615. msgctxt "support_tree_branch_diameter label"
  3616. msgid "Tree Support Branch Diameter"
  3617. msgstr "Диаметр ответвления древовидной поддержки"
  3618. #: fdmprinter.def.json
  3619. msgctxt "support_tree_branch_diameter description"
  3620. msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this."
  3621. msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение."
  3622. #: fdmprinter.def.json
  3623. msgctxt "support_tree_branch_diameter_angle label"
  3624. msgid "Tree Support Branch Diameter Angle"
  3625. msgstr "Угол диаметра ответвления древовидной поддержки"
  3626. #: fdmprinter.def.json
  3627. msgctxt "support_tree_branch_diameter_angle description"
  3628. 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."
  3629. msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки."
  3630. #: fdmprinter.def.json
  3631. msgctxt "support_tree_collision_resolution label"
  3632. msgid "Tree Support Collision Resolution"
  3633. msgstr "Разрешение для расчета столкновений древовидной поддержки"
  3634. #: fdmprinter.def.json
  3635. msgctxt "support_tree_collision_resolution description"
  3636. 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."
  3637. msgstr "Разрешение, применяемое при расчете столкновений во избежание столкновений с моделью. Если указать меньшее значение, древовидные структуры будут получаться более точными и устойчивыми, однако при этом значительно увеличится время разделения на слои."
  3638. #: fdmprinter.def.json
  3639. msgctxt "support_tree_wall_thickness label"
  3640. msgid "Tree Support Wall Thickness"
  3641. msgstr "Толщина стенки древовидной поддержки"
  3642. #: fdmprinter.def.json
  3643. msgctxt "support_tree_wall_thickness description"
  3644. 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."
  3645. msgstr "Толщина стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
  3646. #: fdmprinter.def.json
  3647. msgctxt "support_tree_wall_count label"
  3648. msgid "Tree Support Wall Line Count"
  3649. msgstr "Количество линий стенки древовидной поддержки"
  3650. #: fdmprinter.def.json
  3651. msgctxt "support_tree_wall_count description"
  3652. msgid "The number of walls of the branches of tree support. Thicker walls take longer to print but don't fall over as easily."
  3653. msgstr "Количество стенок ответвлений древовидной поддержки. Для печати утолщенных стенок требуется больше времени, однако при этом возрастает устойчивость поддержки."
  3654. #: fdmprinter.def.json
  3655. msgctxt "slicing_tolerance label"
  3656. msgid "Slicing Tolerance"
  3657. msgstr "Допуск слайсинга"
  3658. #: fdmprinter.def.json
  3659. msgctxt "slicing_tolerance description"
  3660. 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."
  3661. msgstr "Способ выполнения слайсинга слоев диагональными поверхностями. Области слоя можно создать на основе места пересечения середины слоя и поверхности (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по высоте слоя (Исключение), или слой имеет области, попадающие в любое место слоя (Включение). Способ «Исключение» сохраняет больше деталей. Способ «Включение» обеспечивает наилучшую подгонку. Способ «Середина» требует минимального времени для обработки."
  3662. #: fdmprinter.def.json
  3663. msgctxt "slicing_tolerance option middle"
  3664. msgid "Middle"
  3665. msgstr "Середина"
  3666. #: fdmprinter.def.json
  3667. msgctxt "slicing_tolerance option exclusive"
  3668. msgid "Exclusive"
  3669. msgstr "Исключение"
  3670. #: fdmprinter.def.json
  3671. msgctxt "slicing_tolerance option inclusive"
  3672. msgid "Inclusive"
  3673. msgstr "Включение"
  3674. #: fdmprinter.def.json
  3675. msgctxt "roofing_line_width label"
  3676. msgid "Top Surface Skin Line Width"
  3677. msgstr "Ширина линии крышки"
  3678. #: fdmprinter.def.json
  3679. msgctxt "roofing_line_width description"
  3680. msgid "Width of a single line of the areas at the top of the print."
  3681. msgstr "Ширина одной линии крышки."
  3682. #: fdmprinter.def.json
  3683. msgctxt "roofing_pattern label"
  3684. msgid "Top Surface Skin Pattern"
  3685. msgstr "Шаблон верхней оболочки"
  3686. #: fdmprinter.def.json
  3687. msgctxt "roofing_pattern description"
  3688. msgid "The pattern of the top most layers."
  3689. msgstr "Шаблон, используемый для верхних слоёв оболочки."
  3690. #: fdmprinter.def.json
  3691. msgctxt "roofing_pattern option lines"
  3692. msgid "Lines"
  3693. msgstr "Линии"
  3694. #: fdmprinter.def.json
  3695. msgctxt "roofing_pattern option concentric"
  3696. msgid "Concentric"
  3697. msgstr "Концентрические"
  3698. #: fdmprinter.def.json
  3699. msgctxt "roofing_pattern option zigzag"
  3700. msgid "Zig Zag"
  3701. msgstr "Зигзаг"
  3702. #: fdmprinter.def.json
  3703. msgctxt "roofing_angles label"
  3704. msgid "Top Surface Skin Line Directions"
  3705. msgstr "Направление линий верхней оболочки"
  3706. #: fdmprinter.def.json
  3707. msgctxt "roofing_angles description"
  3708. 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)."
  3709. msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)."
  3710. #: fdmprinter.def.json
  3711. msgctxt "infill_enable_travel_optimization label"
  3712. msgid "Infill Travel Optimization"
  3713. msgstr "Оптимизация перемещения заполнения"
  3714. #: fdmprinter.def.json
  3715. msgctxt "infill_enable_travel_optimization description"
  3716. 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."
  3717. msgstr "Если включено, заказ, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти."
  3718. #: fdmprinter.def.json
  3719. msgctxt "material_flow_dependent_temperature label"
  3720. msgid "Auto Temperature"
  3721. msgstr "Автоматическая температура"
  3722. #: fdmprinter.def.json
  3723. msgctxt "material_flow_dependent_temperature description"
  3724. msgid "Change the temperature for each layer automatically with the average flow speed of that layer."
  3725. msgstr "Изменять температуру каждого слоя автоматически в соответствии со средней скоростью потока на этом слое."
  3726. #: fdmprinter.def.json
  3727. msgctxt "material_flow_temp_graph label"
  3728. msgid "Flow Temperature Graph"
  3729. msgstr "График температуры потока"
  3730. #: fdmprinter.def.json
  3731. msgctxt "material_flow_temp_graph description"
  3732. msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)."
  3733. msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)."
  3734. #: fdmprinter.def.json
  3735. msgctxt "meshfix_maximum_resolution label"
  3736. msgid "Maximum Resolution"
  3737. msgstr "Максимальное разрешение"
  3738. #: fdmprinter.def.json
  3739. msgctxt "meshfix_maximum_resolution description"
  3740. 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."
  3741. msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать."
  3742. #: fdmprinter.def.json
  3743. msgctxt "meshfix_maximum_travel_resolution label"
  3744. msgid "Maximum Travel Resolution"
  3745. msgstr "Максимальное разрешение перемещения"
  3746. #: fdmprinter.def.json
  3747. msgctxt "meshfix_maximum_travel_resolution description"
  3748. 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."
  3749. msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей."
  3750. #: fdmprinter.def.json
  3751. msgctxt "support_skip_some_zags label"
  3752. msgid "Break Up Support In Chunks"
  3753. msgstr "Разбить поддержки на части"
  3754. #: fdmprinter.def.json
  3755. msgctxt "support_skip_some_zags description"
  3756. 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."
  3757. msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения."
  3758. #: fdmprinter.def.json
  3759. msgctxt "support_skip_zag_per_mm label"
  3760. msgid "Support Chunk Size"
  3761. msgstr "Размер части поддержек"
  3762. #: fdmprinter.def.json
  3763. msgctxt "support_skip_zag_per_mm description"
  3764. msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away."
  3765. msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек."
  3766. #: fdmprinter.def.json
  3767. msgctxt "support_zag_skip_count label"
  3768. msgid "Support Chunk Line Count"
  3769. msgstr "Количество частей линий поддержки"
  3770. #: fdmprinter.def.json
  3771. msgctxt "support_zag_skip_count description"
  3772. msgid "Skip one in every N connection lines to make the support structure easier to break away."
  3773. msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек."
  3774. #: fdmprinter.def.json
  3775. msgctxt "draft_shield_enabled label"
  3776. msgid "Enable Draft Shield"
  3777. msgstr "Разрешить печать кожуха"
  3778. #: fdmprinter.def.json
  3779. msgctxt "draft_shield_enabled description"
  3780. 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."
  3781. msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются."
  3782. #: fdmprinter.def.json
  3783. msgctxt "draft_shield_dist label"
  3784. msgid "Draft Shield X/Y Distance"
  3785. msgstr "Дистанция X/Y до кожуха"
  3786. #: fdmprinter.def.json
  3787. msgctxt "draft_shield_dist description"
  3788. msgid "Distance of the draft shield from the print, in the X/Y directions."
  3789. msgstr "Дистанция до стенки кожуха от модели, по осям X/Y."
  3790. #: fdmprinter.def.json
  3791. msgctxt "draft_shield_height_limitation label"
  3792. msgid "Draft Shield Limitation"
  3793. msgstr "Ограничение кожуха"
  3794. #: fdmprinter.def.json
  3795. msgctxt "draft_shield_height_limitation description"
  3796. 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."
  3797. msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту."
  3798. #: fdmprinter.def.json
  3799. msgctxt "draft_shield_height_limitation option full"
  3800. msgid "Full"
  3801. msgstr "Полная"
  3802. #: fdmprinter.def.json
  3803. msgctxt "draft_shield_height_limitation option limited"
  3804. msgid "Limited"
  3805. msgstr "Ограниченная"
  3806. #: fdmprinter.def.json
  3807. msgctxt "draft_shield_height label"
  3808. msgid "Draft Shield Height"
  3809. msgstr "Высота кожуха"
  3810. #: fdmprinter.def.json
  3811. msgctxt "draft_shield_height description"
  3812. msgid "Height limitation of the draft shield. Above this height no draft shield will be printed."
  3813. msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет."
  3814. #: fdmprinter.def.json
  3815. msgctxt "conical_overhang_enabled label"
  3816. msgid "Make Overhang Printable"
  3817. msgstr "Сделать нависания печатаемыми"
  3818. #: fdmprinter.def.json
  3819. msgctxt "conical_overhang_enabled description"
  3820. 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."
  3821. msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными."
  3822. #: fdmprinter.def.json
  3823. msgctxt "conical_overhang_angle label"
  3824. msgid "Maximum Model Angle"
  3825. msgstr "Максимальный угол модели"
  3826. #: fdmprinter.def.json
  3827. msgctxt "conical_overhang_angle description"
  3828. 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."
  3829. msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений."
  3830. #: fdmprinter.def.json
  3831. msgctxt "coasting_enable label"
  3832. msgid "Enable Coasting"
  3833. msgstr "Разрешить накат"
  3834. #: fdmprinter.def.json
  3835. msgctxt "coasting_enable description"
  3836. 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."
  3837. msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность."
  3838. #: fdmprinter.def.json
  3839. msgctxt "coasting_volume label"
  3840. msgid "Coasting Volume"
  3841. msgstr "Объём наката"
  3842. #: fdmprinter.def.json
  3843. msgctxt "coasting_volume description"
  3844. msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed."
  3845. msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла."
  3846. #: fdmprinter.def.json
  3847. msgctxt "coasting_min_volume label"
  3848. msgid "Minimum Volume Before Coasting"
  3849. msgstr "Минимальный объём перед накатом"
  3850. #: fdmprinter.def.json
  3851. msgctxt "coasting_min_volume description"
  3852. 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."
  3853. msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"."
  3854. #: fdmprinter.def.json
  3855. msgctxt "coasting_speed label"
  3856. msgid "Coasting Speed"
  3857. msgstr "Скорость наката"
  3858. #: fdmprinter.def.json
  3859. msgctxt "coasting_speed description"
  3860. 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."
  3861. msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается."
  3862. #: fdmprinter.def.json
  3863. msgctxt "skin_alternate_rotation label"
  3864. msgid "Alternate Skin Rotation"
  3865. msgstr "Чередование вращения оболочек"
  3866. #: fdmprinter.def.json
  3867. msgctxt "skin_alternate_rotation description"
  3868. 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."
  3869. msgstr "Изменить направление, в котором печатаются слои крышки/дна. Обычно, они печатаются по диагонали. Данный параметр добавляет направления X-только и Y-только."
  3870. #: fdmprinter.def.json
  3871. msgctxt "cross_infill_pocket_size label"
  3872. msgid "Cross 3D Pocket Size"
  3873. msgstr "Размер карманов креста 3D"
  3874. #: fdmprinter.def.json
  3875. msgctxt "cross_infill_pocket_size description"
  3876. msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself."
  3877. msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя."
  3878. #: fdmprinter.def.json
  3879. msgctxt "cross_infill_density_image label"
  3880. msgid "Cross Infill Density Image"
  3881. msgstr "Изображение плотности перекрестного заполнения"
  3882. #: fdmprinter.def.json
  3883. msgctxt "cross_infill_density_image description"
  3884. 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."
  3885. msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати."
  3886. #: fdmprinter.def.json
  3887. msgctxt "cross_support_density_image label"
  3888. msgid "Cross Fill Density Image for Support"
  3889. msgstr "Изображение плотности перекрестного заполнения для поддержки"
  3890. #: fdmprinter.def.json
  3891. msgctxt "cross_support_density_image description"
  3892. msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support."
  3893. msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки."
  3894. #: fdmprinter.def.json
  3895. msgctxt "spaghetti_infill_enabled label"
  3896. msgid "Spaghetti Infill"
  3897. msgstr "Спагетти"
  3898. #: fdmprinter.def.json
  3899. msgctxt "spaghetti_infill_enabled description"
  3900. 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."
  3901. msgstr "Печатает заполнение так часто, что филамент хаотически заполняет внутренность объекта. Это сокращает время печати, но выражается в непредсказуемом поведении."
  3902. #: fdmprinter.def.json
  3903. msgctxt "spaghetti_infill_stepped label"
  3904. msgid "Spaghetti Infill Stepping"
  3905. msgstr "Шаг спагетти заполнения"
  3906. #: fdmprinter.def.json
  3907. msgctxt "spaghetti_infill_stepped description"
  3908. msgid "Whether to print spaghetti infill in steps or extrude all the infill filament at the end of the print."
  3909. msgstr "Следует ли пошагово печатать спагетти заполнение или печатать материалом заполнения в конце печати."
  3910. #: fdmprinter.def.json
  3911. msgctxt "spaghetti_max_infill_angle label"
  3912. msgid "Spaghetti Maximum Infill Angle"
  3913. msgstr "Максимальный угол спагетти заполнения"
  3914. #: fdmprinter.def.json
  3915. msgctxt "spaghetti_max_infill_angle description"
  3916. 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."
  3917. msgstr "Максимальный угол по отношению к оси Z внутри печатаемого объёма для заполняемых областей. Уменьшение этого значения приводит к тому, что более наклонённый части вашей модели будут заполнены на каждом слое."
  3918. #: fdmprinter.def.json
  3919. msgctxt "spaghetti_max_height label"
  3920. msgid "Spaghetti Infill Maximum Height"
  3921. msgstr "Максимальная высота спагетти заполнения"
  3922. #: fdmprinter.def.json
  3923. msgctxt "spaghetti_max_height description"
  3924. msgid "The maximum height of inside space which can be combined and filled from the top."
  3925. msgstr "Максимальная высота внутри пространства которое может быть объединено и заполнено сверху."
  3926. #: fdmprinter.def.json
  3927. msgctxt "spaghetti_inset label"
  3928. msgid "Spaghetti Inset"
  3929. msgstr "Спагетти вставка"
  3930. #: fdmprinter.def.json
  3931. msgctxt "spaghetti_inset description"
  3932. msgid "The offset from the walls from where the spaghetti infill will be printed."
  3933. msgstr "Смещение от стенок внутри которых должно быть использовано спагетти заполнение."
  3934. #: fdmprinter.def.json
  3935. msgctxt "spaghetti_flow label"
  3936. msgid "Spaghetti Flow"
  3937. msgstr "Спагетти поток"
  3938. #: fdmprinter.def.json
  3939. msgctxt "spaghetti_flow description"
  3940. 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."
  3941. msgstr "Управляет плотностью спагетти заполнения. Следует отметить, что плотность заполнения только контролирует расстояние между линиями шаблона заполнения, а не объёмом выдавливаемого материала."
  3942. #: fdmprinter.def.json
  3943. msgctxt "spaghetti_infill_extra_volume label"
  3944. msgid "Spaghetti Infill Extra Volume"
  3945. msgstr "Дополнительный объём спагетти заполнения"
  3946. #: fdmprinter.def.json
  3947. msgctxt "spaghetti_infill_extra_volume description"
  3948. msgid "A correction term to adjust the total volume being extruded each time when filling spaghetti."
  3949. msgstr "Период исправления для управления общим объёмом выдавленного материала при спагетти заполнении."
  3950. #: fdmprinter.def.json
  3951. msgctxt "support_conical_enabled label"
  3952. msgid "Enable Conical Support"
  3953. msgstr "Конические поддержки"
  3954. #: fdmprinter.def.json
  3955. msgctxt "support_conical_enabled description"
  3956. msgid "Experimental feature: Make support areas smaller at the bottom than at the overhang."
  3957. msgstr "Экспериментальная возможность: Нижняя часть поддержек становится меньше, чем верхняя."
  3958. #: fdmprinter.def.json
  3959. msgctxt "support_conical_angle label"
  3960. msgid "Conical Support Angle"
  3961. msgstr "Угол конических поддержек"
  3962. #: fdmprinter.def.json
  3963. msgctxt "support_conical_angle description"
  3964. 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."
  3965. msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью."
  3966. #: fdmprinter.def.json
  3967. msgctxt "support_conical_min_width label"
  3968. msgid "Conical Support Minimum Width"
  3969. msgstr "Минимальная ширина конических поддержек"
  3970. #: fdmprinter.def.json
  3971. msgctxt "support_conical_min_width description"
  3972. msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures."
  3973. msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной."
  3974. #: fdmprinter.def.json
  3975. msgctxt "magic_fuzzy_skin_enabled label"
  3976. msgid "Fuzzy Skin"
  3977. msgstr "Нечёткая оболочка"
  3978. #: fdmprinter.def.json
  3979. msgctxt "magic_fuzzy_skin_enabled description"
  3980. msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look."
  3981. msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид."
  3982. #: fdmprinter.def.json
  3983. msgctxt "magic_fuzzy_skin_thickness label"
  3984. msgid "Fuzzy Skin Thickness"
  3985. msgstr "Толщина шершавости оболочки"
  3986. #: fdmprinter.def.json
  3987. msgctxt "magic_fuzzy_skin_thickness description"
  3988. msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered."
  3989. msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются."
  3990. #: fdmprinter.def.json
  3991. msgctxt "magic_fuzzy_skin_point_density label"
  3992. msgid "Fuzzy Skin Density"
  3993. msgstr "Плотность шершавой оболочки"
  3994. #: fdmprinter.def.json
  3995. msgctxt "magic_fuzzy_skin_point_density description"
  3996. 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."
  3997. msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения."
  3998. #: fdmprinter.def.json
  3999. msgctxt "magic_fuzzy_skin_point_dist label"
  4000. msgid "Fuzzy Skin Point Distance"
  4001. msgstr "Дистанция между точками шершавой оболочки"
  4002. #: fdmprinter.def.json
  4003. msgctxt "magic_fuzzy_skin_point_dist description"
  4004. 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."
  4005. msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки."
  4006. #: fdmprinter.def.json
  4007. msgctxt "flow_rate_max_extrusion_offset label"
  4008. msgid "Flow rate compensation max extrusion offset"
  4009. msgstr "Макс. смещение экструзии для компенсации расхода"
  4010. #: fdmprinter.def.json
  4011. msgctxt "flow_rate_max_extrusion_offset description"
  4012. msgid "The maximum distance in mm to compensate."
  4013. msgstr "Максимальное компенсируемое расстояние в миллиметрах."
  4014. #: fdmprinter.def.json
  4015. msgctxt "flow_rate_extrusion_offset_factor label"
  4016. msgid "Flow rate compensation factor"
  4017. msgstr "Коэффициент компенсации расхода"
  4018. #: fdmprinter.def.json
  4019. msgctxt "flow_rate_extrusion_offset_factor description"
  4020. msgid "The multiplication factor for the flow rate -> distance translation."
  4021. msgstr "Коэффициент перевода расхода в расстояние."
  4022. #: fdmprinter.def.json
  4023. msgctxt "wireframe_enabled label"
  4024. msgid "Wire Printing"
  4025. msgstr "Каркасная печать (КП)"
  4026. #: fdmprinter.def.json
  4027. msgctxt "wireframe_enabled description"
  4028. 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."
  4029. msgstr "Печатать только внешнюю поверхность с редкой перепончатой структурой, печатаемой \"прямо в воздухе\". Это реализуется горизонтальной печатью контуров модели с заданными Z интервалами, которые соединяются диагональными линиями."
  4030. #: fdmprinter.def.json
  4031. msgctxt "wireframe_height label"
  4032. msgid "WP Connection Height"
  4033. msgstr "Высота соединений (КП)"
  4034. #: fdmprinter.def.json
  4035. msgctxt "wireframe_height description"
  4036. 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."
  4037. msgstr "Высота диагональных линий между двумя горизонтальными частями. Она определяет общую плотность сетевой структуры. Применяется только при каркасной печати."
  4038. #: fdmprinter.def.json
  4039. msgctxt "wireframe_roof_inset label"
  4040. msgid "WP Roof Inset Distance"
  4041. msgstr "Расстояние крыши внутрь (КП)"
  4042. #: fdmprinter.def.json
  4043. msgctxt "wireframe_roof_inset description"
  4044. msgid "The distance covered when making a connection from a roof outline inward. Only applies to Wire Printing."
  4045. msgstr "Покрываемое расстояние при создании соединения от внешней части крыши внутрь. Применяется только при каркасной печати."
  4046. #: fdmprinter.def.json
  4047. msgctxt "wireframe_printspeed label"
  4048. msgid "WP Speed"
  4049. msgstr "Скорость каркасной печати"
  4050. #: fdmprinter.def.json
  4051. msgctxt "wireframe_printspeed description"
  4052. msgid "Speed at which the nozzle moves when extruding material. Only applies to Wire Printing."
  4053. msgstr "Скорость с которой двигается сопло, выдавая материал. Применяется только при каркасной печати."
  4054. #: fdmprinter.def.json
  4055. msgctxt "wireframe_printspeed_bottom label"
  4056. msgid "WP Bottom Printing Speed"
  4057. msgstr "Скорость печати низа (КП)"
  4058. #: fdmprinter.def.json
  4059. msgctxt "wireframe_printspeed_bottom description"
  4060. msgid "Speed of printing the first layer, which is the only layer touching the build platform. Only applies to Wire Printing."
  4061. msgstr "Скорость, с которой печатается первый слой, касающийся стола. Применяется только при каркасной печати."
  4062. #: fdmprinter.def.json
  4063. msgctxt "wireframe_printspeed_up label"
  4064. msgid "WP Upward Printing Speed"
  4065. msgstr "Скорость печати вверх (КП)"
  4066. #: fdmprinter.def.json
  4067. msgctxt "wireframe_printspeed_up description"
  4068. msgid "Speed of printing a line upward 'in thin air'. Only applies to Wire Printing."
  4069. msgstr "Скорость печати линии вверх \"в разрежённом воздухе\". Применяется только при каркасной печати."
  4070. #: fdmprinter.def.json
  4071. msgctxt "wireframe_printspeed_down label"
  4072. msgid "WP Downward Printing Speed"
  4073. msgstr "Скорость печати вниз (КП)"
  4074. #: fdmprinter.def.json
  4075. msgctxt "wireframe_printspeed_down description"
  4076. msgid "Speed of printing a line diagonally downward. Only applies to Wire Printing."
  4077. msgstr "Скорость печати линии диагонально вниз. Применяется только при каркасной печати."
  4078. #: fdmprinter.def.json
  4079. msgctxt "wireframe_printspeed_flat label"
  4080. msgid "WP Horizontal Printing Speed"
  4081. msgstr "Скорость горизонтальной печати (КП)"
  4082. #: fdmprinter.def.json
  4083. msgctxt "wireframe_printspeed_flat description"
  4084. msgid "Speed of printing the horizontal contours of the model. Only applies to Wire Printing."
  4085. msgstr "Скорость, с которой печатаются горизонтальные контуры модели. Применяется только при нитевой печати."
  4086. #: fdmprinter.def.json
  4087. msgctxt "wireframe_flow label"
  4088. msgid "WP Flow"
  4089. msgstr "Поток каркасной печати"
  4090. #: fdmprinter.def.json
  4091. msgctxt "wireframe_flow description"
  4092. msgid "Flow compensation: the amount of material extruded is multiplied by this value. Only applies to Wire Printing."
  4093. msgstr "Компенсация потока: объём выдавленного материала умножается на это значение. Применяется только при каркасной печати."
  4094. #: fdmprinter.def.json
  4095. msgctxt "wireframe_flow_connection label"
  4096. msgid "WP Connection Flow"
  4097. msgstr "Поток соединений (КП)"
  4098. #: fdmprinter.def.json
  4099. msgctxt "wireframe_flow_connection description"
  4100. msgid "Flow compensation when going up or down. Only applies to Wire Printing."
  4101. msgstr "Компенсация потока при движении вверх и вниз. Применяется только при каркасной печати."
  4102. #: fdmprinter.def.json
  4103. msgctxt "wireframe_flow_flat label"
  4104. msgid "WP Flat Flow"
  4105. msgstr "Поток горизонтальных линий (КП)"
  4106. #: fdmprinter.def.json
  4107. msgctxt "wireframe_flow_flat description"
  4108. msgid "Flow compensation when printing flat lines. Only applies to Wire Printing."
  4109. msgstr "Компенсация потока при печати плоских линий. Применяется только при каркасной печати."
  4110. #: fdmprinter.def.json
  4111. msgctxt "wireframe_top_delay label"
  4112. msgid "WP Top Delay"
  4113. msgstr "Верхняя задержка (КП)"
  4114. #: fdmprinter.def.json
  4115. msgctxt "wireframe_top_delay description"
  4116. msgid "Delay time after an upward move, so that the upward line can harden. Only applies to Wire Printing."
  4117. msgstr "Задержка после движения вверх, чтобы такие линии были твёрже. Применяется только при каркасной печати."
  4118. #: fdmprinter.def.json
  4119. msgctxt "wireframe_bottom_delay label"
  4120. msgid "WP Bottom Delay"
  4121. msgstr "Нижняя задержка (КП)"
  4122. #: fdmprinter.def.json
  4123. msgctxt "wireframe_bottom_delay description"
  4124. msgid "Delay time after a downward move. Only applies to Wire Printing."
  4125. msgstr "Задержка после движения вниз. Применяется только при каркасной печати."
  4126. #: fdmprinter.def.json
  4127. msgctxt "wireframe_flat_delay label"
  4128. msgid "WP Flat Delay"
  4129. msgstr "Горизонтальная задержка (КП)"
  4130. #: fdmprinter.def.json
  4131. msgctxt "wireframe_flat_delay description"
  4132. 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."
  4133. msgstr "Задержка между двумя горизонтальными сегментами. Внесение такой задержки может улучшить прилипание к предыдущим слоям в местах соединений, в то время как более длинные задержки могут вызывать провисания. Применяется только при нитевой печати."
  4134. #: fdmprinter.def.json
  4135. msgctxt "wireframe_up_half_speed label"
  4136. msgid "WP Ease Upward"
  4137. msgstr "Ослабление вверх (КП)"
  4138. #: fdmprinter.def.json
  4139. msgctxt "wireframe_up_half_speed description"
  4140. msgid ""
  4141. "Distance of an upward move which is extruded with half speed.\n"
  4142. "This can cause better adhesion to previous layers, while not heating the material in those layers too much. Only applies to Wire Printing."
  4143. msgstr "Расстояние движения вверх, при котором выдавливание идёт на половине скорости.\nЭто может улучшить прилипание к предыдущим слоям, не перегревая материал тех слоёв. Применяется только при каркасной печати."
  4144. #: fdmprinter.def.json
  4145. msgctxt "wireframe_top_jump label"
  4146. msgid "WP Knot Size"
  4147. msgstr "Размер узла (КП)"
  4148. #: fdmprinter.def.json
  4149. msgctxt "wireframe_top_jump description"
  4150. 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."
  4151. msgstr "Создаёт небольшой узел наверху возвышающейся линии так, чтобы последующий горизонтальный слой имел больший шанс к присоединению. Применяется только при каркасной печати."
  4152. #: fdmprinter.def.json
  4153. msgctxt "wireframe_fall_down label"
  4154. msgid "WP Fall Down"
  4155. msgstr "Падение (КП)"
  4156. #: fdmprinter.def.json
  4157. msgctxt "wireframe_fall_down description"
  4158. msgid "Distance with which the material falls down after an upward extrusion. This distance is compensated for. Only applies to Wire Printing."
  4159. msgstr "Расстояние с которой материал падает вниз после восходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати."
  4160. #: fdmprinter.def.json
  4161. msgctxt "wireframe_drag_along label"
  4162. msgid "WP Drag Along"
  4163. msgstr "Протягивание (КП)"
  4164. #: fdmprinter.def.json
  4165. msgctxt "wireframe_drag_along description"
  4166. 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."
  4167. msgstr "Расстояние, на которое материал от восходящего выдавливания тянется во время нисходящего выдавливания. Расстояние компенсируется. Применяется только при каркасной печати."
  4168. #: fdmprinter.def.json
  4169. msgctxt "wireframe_strategy label"
  4170. msgid "WP Strategy"
  4171. msgstr "Стратегия (КП)"
  4172. #: fdmprinter.def.json
  4173. msgctxt "wireframe_strategy description"
  4174. 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."
  4175. msgstr "Стратегия проверки соединения двух соседних слоёв в соответствующих точках. Откат укрепляет восходящие линии в нужных местах, но может привести к истиранию нити материала. Узел может быть сделан в конце восходящей линии для повышения шанса соединения с ним и позволить линии охладиться; однако, это может потребовать пониженных скоростей печати. Другая стратегия состоит в том, чтобы компенсировать провисание вершины восходящей линии; однако, строки будут не всегда падать, как предсказано."
  4176. #: fdmprinter.def.json
  4177. msgctxt "wireframe_strategy option compensate"
  4178. msgid "Compensate"
  4179. msgstr "Компенсация"
  4180. #: fdmprinter.def.json
  4181. msgctxt "wireframe_strategy option knot"
  4182. msgid "Knot"
  4183. msgstr "Узел"
  4184. #: fdmprinter.def.json
  4185. msgctxt "wireframe_strategy option retract"
  4186. msgid "Retract"
  4187. msgstr "Откат"
  4188. #: fdmprinter.def.json
  4189. msgctxt "wireframe_straight_before_down label"
  4190. msgid "WP Straighten Downward Lines"
  4191. msgstr "Прямые нисходящие линии (КП)"
  4192. #: fdmprinter.def.json
  4193. msgctxt "wireframe_straight_before_down description"
  4194. 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."
  4195. msgstr "Процент диагонально нисходящей линии, которая покрывается куском горизонтальной линии. Это может предотвратить провисание самых верхних точек восходящих линий. Применяется только при каркасной печати."
  4196. #: fdmprinter.def.json
  4197. msgctxt "wireframe_roof_fall_down label"
  4198. msgid "WP Roof Fall Down"
  4199. msgstr "Опадание крыши (КП)"
  4200. #: fdmprinter.def.json
  4201. msgctxt "wireframe_roof_fall_down description"
  4202. 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."
  4203. msgstr "Расстояние, на котором линии горизонтальной крыши печатаемые \"в воздухе\" падают вниз при печати. Это расстояние скомпенсировано. Применяется только при каркасной печати."
  4204. #: fdmprinter.def.json
  4205. msgctxt "wireframe_roof_drag_along label"
  4206. msgid "WP Roof Drag Along"
  4207. msgstr "Протягивание крыши (КП)"
  4208. #: fdmprinter.def.json
  4209. msgctxt "wireframe_roof_drag_along description"
  4210. 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."
  4211. msgstr "Расстояние финальной части восходящей линии, которая протягивается при возвращении к внешнему контуру крыши. Это расстояние скомпенсировано. Применяется только при каркасной печати."
  4212. #: fdmprinter.def.json
  4213. msgctxt "wireframe_roof_outer_delay label"
  4214. msgid "WP Roof Outer Delay"
  4215. msgstr "Задержка внешней крыши (КП)"
  4216. #: fdmprinter.def.json
  4217. msgctxt "wireframe_roof_outer_delay description"
  4218. 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."
  4219. msgstr "Время, потраченное на внешних периметрах отверстия, которое станет крышей. Увеличенное время может придать прочности. Применяется только при каркасной печати."
  4220. #: fdmprinter.def.json
  4221. msgctxt "wireframe_nozzle_clearance label"
  4222. msgid "WP Nozzle Clearance"
  4223. msgstr "Зазор сопла (КП)"
  4224. #: fdmprinter.def.json
  4225. msgctxt "wireframe_nozzle_clearance description"
  4226. 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."
  4227. msgstr "Зазор между соплом и горизонтально нисходящими линиями. Большее значение уменьшает угол нисхождения, что приводит уменьшению восходящих соединений на следующем слое. Применяется только при каркасной печати."
  4228. #: fdmprinter.def.json
  4229. msgctxt "adaptive_layer_height_enabled label"
  4230. msgid "Use adaptive layers"
  4231. msgstr "Использовать адаптивные слои"
  4232. #: fdmprinter.def.json
  4233. msgctxt "adaptive_layer_height_enabled description"
  4234. msgid "Adaptive layers computes the layer heights depending on the shape of the model."
  4235. msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели."
  4236. #: fdmprinter.def.json
  4237. msgctxt "adaptive_layer_height_variation label"
  4238. msgid "Adaptive layers maximum variation"
  4239. msgstr "Максимальная вариация адаптивных слоев"
  4240. #: fdmprinter.def.json
  4241. msgctxt "adaptive_layer_height_variation description"
  4242. msgid "The maximum allowed height different from the base layer height."
  4243. msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня."
  4244. #: fdmprinter.def.json
  4245. msgctxt "adaptive_layer_height_variation_step label"
  4246. msgid "Adaptive layers variation step size"
  4247. msgstr "Размер шага вариации адаптивных слоев"
  4248. #: fdmprinter.def.json
  4249. msgctxt "adaptive_layer_height_variation_step description"
  4250. msgid "The difference in height of the next layer height compared to the previous one."
  4251. msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя."
  4252. #: fdmprinter.def.json
  4253. msgctxt "adaptive_layer_height_threshold label"
  4254. msgid "Adaptive layers threshold"
  4255. msgstr "Порог для адаптивных слове"
  4256. #: fdmprinter.def.json
  4257. msgctxt "adaptive_layer_height_threshold description"
  4258. msgid "Threshold whether to use a smaller layer or not. This number is compared to the tan of the steepest slope in a layer."
  4259. msgstr "Пороговое значение, при достижении которого будет использоваться меньший слой. Это число сравнивается с тангенсом наиболее крутого наклона в слое."
  4260. #: fdmprinter.def.json
  4261. msgctxt "bridge_settings_enabled label"
  4262. msgid "Enable Bridge Settings"
  4263. msgstr "Активация настроек мостиков"
  4264. #: fdmprinter.def.json
  4265. msgctxt "bridge_settings_enabled description"
  4266. msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed."
  4267. msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков."
  4268. #: fdmprinter.def.json
  4269. msgctxt "bridge_wall_min_length label"
  4270. msgid "Minimum Bridge Wall Length"
  4271. msgstr "Минимальная длина стенки мостика"
  4272. #: fdmprinter.def.json
  4273. msgctxt "bridge_wall_min_length description"
  4274. 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."
  4275. msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика."
  4276. #: fdmprinter.def.json
  4277. msgctxt "bridge_skin_support_threshold label"
  4278. msgid "Bridge Skin Support Threshold"
  4279. msgstr "Пороговое значение поддержки для оболочки мостика"
  4280. #: fdmprinter.def.json
  4281. msgctxt "bridge_skin_support_threshold description"
  4282. 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."
  4283. msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки."
  4284. #: fdmprinter.def.json
  4285. msgctxt "bridge_wall_max_overhang label"
  4286. msgid "Bridge Wall Max Overhang"
  4287. msgstr "Максимальное нависание стенки мостика"
  4288. #: fdmprinter.def.json
  4289. msgctxt "bridge_wall_max_overhang description"
  4290. 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."
  4291. msgstr "Максимальная разрешенная ширина области воздушного зазора ниже линии стенки перед печатью стенки с использованием настроек мостика. Выражается в процентах от ширины линии стенки. Если ширина воздушного зазора превышает указанное значение, линия стенки печатается с использованием настроек мостика. В противном случае линия стенки печатается с использованием стандартных настроек. Чем меньше это значение, тем вероятнее, что линии стенки с нависанием будут напечатаны с использованием настроек мостика."
  4292. #: fdmprinter.def.json
  4293. msgctxt "bridge_wall_coast label"
  4294. msgid "Bridge Wall Coasting"
  4295. msgstr "Накат стенки мостика"
  4296. #: fdmprinter.def.json
  4297. msgctxt "bridge_wall_coast description"
  4298. 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."
  4299. msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик."
  4300. #: fdmprinter.def.json
  4301. msgctxt "bridge_wall_speed label"
  4302. msgid "Bridge Wall Speed"
  4303. msgstr "Скорость печати стенки мостика"
  4304. #: fdmprinter.def.json
  4305. msgctxt "bridge_wall_speed description"
  4306. msgid "The speed at which the bridge walls are printed."
  4307. msgstr "Скорость, с которой происходит печать стенок мостика."
  4308. #: fdmprinter.def.json
  4309. msgctxt "bridge_wall_material_flow label"
  4310. msgid "Bridge Wall Flow"
  4311. msgstr "Поток для стенки мостика"
  4312. #: fdmprinter.def.json
  4313. msgctxt "bridge_wall_material_flow description"
  4314. msgid "When printing bridge walls, the amount of material extruded is multiplied by this value."
  4315. msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение."
  4316. #: fdmprinter.def.json
  4317. msgctxt "bridge_skin_speed label"
  4318. msgid "Bridge Skin Speed"
  4319. msgstr "Скорость печати оболочки мостика"
  4320. #: fdmprinter.def.json
  4321. msgctxt "bridge_skin_speed description"
  4322. msgid "The speed at which bridge skin regions are printed."
  4323. msgstr "Скорость, с которой печатаются области оболочки мостика."
  4324. #: fdmprinter.def.json
  4325. msgctxt "bridge_skin_material_flow label"
  4326. msgid "Bridge Skin Flow"
  4327. msgstr "Поток для оболочки мостика"
  4328. #: fdmprinter.def.json
  4329. msgctxt "bridge_skin_material_flow description"
  4330. msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value."
  4331. msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение."
  4332. #: fdmprinter.def.json
  4333. msgctxt "bridge_skin_density label"
  4334. msgid "Bridge Skin Density"
  4335. msgstr "Плотность оболочки мостика"
  4336. #: fdmprinter.def.json
  4337. msgctxt "bridge_skin_density description"
  4338. msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4339. msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки."
  4340. #: fdmprinter.def.json
  4341. msgctxt "bridge_fan_speed label"
  4342. msgid "Bridge Fan Speed"
  4343. msgstr "Скорость вентилятора для мостика"
  4344. #: fdmprinter.def.json
  4345. msgctxt "bridge_fan_speed description"
  4346. msgid "Percentage fan speed to use when printing bridge walls and skin."
  4347. msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика."
  4348. #: fdmprinter.def.json
  4349. msgctxt "bridge_enable_more_layers label"
  4350. msgid "Bridge Has Multiple Layers"
  4351. msgstr "В мостике несколько слоев"
  4352. #: fdmprinter.def.json
  4353. msgctxt "bridge_enable_more_layers description"
  4354. 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."
  4355. msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек."
  4356. #: fdmprinter.def.json
  4357. msgctxt "bridge_skin_speed_2 label"
  4358. msgid "Bridge Second Skin Speed"
  4359. msgstr "Скорость печати второй оболочки мостика"
  4360. #: fdmprinter.def.json
  4361. msgctxt "bridge_skin_speed_2 description"
  4362. msgid "Print speed to use when printing the second bridge skin layer."
  4363. msgstr "Скорость, с которой печатается слой второй оболочки мостика."
  4364. #: fdmprinter.def.json
  4365. msgctxt "bridge_skin_material_flow_2 label"
  4366. msgid "Bridge Second Skin Flow"
  4367. msgstr "Поток для второй оболочки мостика"
  4368. #: fdmprinter.def.json
  4369. msgctxt "bridge_skin_material_flow_2 description"
  4370. msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value."
  4371. msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение."
  4372. #: fdmprinter.def.json
  4373. msgctxt "bridge_skin_density_2 label"
  4374. msgid "Bridge Second Skin Density"
  4375. msgstr "Плотность второй оболочки мостика"
  4376. #: fdmprinter.def.json
  4377. msgctxt "bridge_skin_density_2 description"
  4378. msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4379. msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки."
  4380. #: fdmprinter.def.json
  4381. msgctxt "bridge_fan_speed_2 label"
  4382. msgid "Bridge Second Skin Fan Speed"
  4383. msgstr "Скорость вентилятора для второй оболочки мостика"
  4384. #: fdmprinter.def.json
  4385. msgctxt "bridge_fan_speed_2 description"
  4386. msgid "Percentage fan speed to use when printing the second bridge skin layer."
  4387. msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика."
  4388. #: fdmprinter.def.json
  4389. msgctxt "bridge_skin_speed_3 label"
  4390. msgid "Bridge Third Skin Speed"
  4391. msgstr "Скорость печати третьей оболочки мостика"
  4392. #: fdmprinter.def.json
  4393. msgctxt "bridge_skin_speed_3 description"
  4394. msgid "Print speed to use when printing the third bridge skin layer."
  4395. msgstr "Скорость, с которой печатается слой третьей оболочки мостика."
  4396. #: fdmprinter.def.json
  4397. msgctxt "bridge_skin_material_flow_3 label"
  4398. msgid "Bridge Third Skin Flow"
  4399. msgstr "Поток для третьей оболочки мостика"
  4400. #: fdmprinter.def.json
  4401. msgctxt "bridge_skin_material_flow_3 description"
  4402. msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value."
  4403. msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение."
  4404. #: fdmprinter.def.json
  4405. msgctxt "bridge_skin_density_3 label"
  4406. msgid "Bridge Third Skin Density"
  4407. msgstr "Плотность третьей оболочки мостика"
  4408. #: fdmprinter.def.json
  4409. msgctxt "bridge_skin_density_3 description"
  4410. msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines."
  4411. msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки."
  4412. #: fdmprinter.def.json
  4413. msgctxt "bridge_fan_speed_3 label"
  4414. msgid "Bridge Third Skin Fan Speed"
  4415. msgstr "Скорость вентилятора для третьей оболочки мостика"
  4416. #: fdmprinter.def.json
  4417. msgctxt "bridge_fan_speed_3 description"
  4418. msgid "Percentage fan speed to use when printing the third bridge skin layer."
  4419. msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика."
  4420. #: fdmprinter.def.json
  4421. msgctxt "command_line_settings label"
  4422. msgid "Command Line Settings"
  4423. msgstr "Параметры командной строки"
  4424. #: fdmprinter.def.json
  4425. msgctxt "command_line_settings description"
  4426. msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend."
  4427. msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую."
  4428. #: fdmprinter.def.json
  4429. msgctxt "center_object label"
  4430. msgid "Center Object"
  4431. msgstr "Центрирование объекта"
  4432. #: fdmprinter.def.json
  4433. msgctxt "center_object description"
  4434. 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."
  4435. msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект."
  4436. #: fdmprinter.def.json
  4437. msgctxt "mesh_position_x label"
  4438. msgid "Mesh Position X"
  4439. msgstr "X позиция объекта"
  4440. #: fdmprinter.def.json
  4441. msgctxt "mesh_position_x description"
  4442. msgid "Offset applied to the object in the x direction."
  4443. msgstr "Смещение, применяемое к объект по оси X."
  4444. #: fdmprinter.def.json
  4445. msgctxt "mesh_position_y label"
  4446. msgid "Mesh Position Y"
  4447. msgstr "Y позиция объекта"
  4448. #: fdmprinter.def.json
  4449. msgctxt "mesh_position_y description"
  4450. msgid "Offset applied to the object in the y direction."
  4451. msgstr "Смещение, применяемое к объект по оси Y."
  4452. #: fdmprinter.def.json
  4453. msgctxt "mesh_position_z label"
  4454. msgid "Mesh Position Z"
  4455. msgstr "Z позиция объекта"
  4456. #: fdmprinter.def.json
  4457. msgctxt "mesh_position_z description"
  4458. msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'."
  4459. msgstr "Смещение, применяемое к объект по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола."
  4460. #: fdmprinter.def.json
  4461. msgctxt "mesh_rotation_matrix label"
  4462. msgid "Mesh Rotation Matrix"
  4463. msgstr "Матрица вращения объекта"
  4464. #: fdmprinter.def.json
  4465. msgctxt "mesh_rotation_matrix description"
  4466. msgid "Transformation matrix to be applied to the model when loading it from file."
  4467. msgstr "Матрица преобразования, применяемая к модели при её загрузки из файла."
  4468. #~ msgctxt "optimize_wall_printing_order description"
  4469. #~ 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."
  4470. #~ msgstr "Оптимизирует порядок, в котором печатаются стенки для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте печать с оптимизацией и без."
  4471. #~ msgctxt "retraction_combing option noskin"
  4472. #~ msgid "No Skin"
  4473. #~ msgstr "Без поверхности"
  4474. #~ msgctxt "cross_infill_apply_pockets_alternatingly label"
  4475. #~ msgid "Alternate Cross 3D Pockets"
  4476. #~ msgstr "Смена карманов креста 3D"
  4477. #~ msgctxt "cross_infill_apply_pockets_alternatingly description"
  4478. #~ 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."
  4479. #~ msgstr "Применяется только к карманам на половине шаблона креста 3D и меняет расположение карманов по высоте, когда шаблон касается сам себя."
  4480. #~ msgctxt "infill_hollow label"
  4481. #~ msgid "Hollow Out Objects"
  4482. #~ msgstr "Пустые объекты"
  4483. #~ msgctxt "infill_hollow description"
  4484. #~ msgid "Remove all infill and make the inside of the object eligible for support."
  4485. #~ msgstr "Удаляет всё заполнение и разрешает генерацию поддержек внутри объекта."
  4486. #~ msgctxt "adaptive_layer_height_variation description"
  4487. #~ msgid "The maximum allowed height different from the base layer height in mm."
  4488. #~ msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня (в мм)."
  4489. #~ msgctxt "center_object label"
  4490. #~ msgid "Center object"
  4491. #~ msgstr "Центрирование объекта"
  4492. #~ msgctxt "mesh_position_x label"
  4493. #~ msgid "Mesh position x"
  4494. #~ msgstr "X позиция объекта"
  4495. #~ msgctxt "mesh_position_y label"
  4496. #~ msgid "Mesh position y"
  4497. #~ msgstr "Y позиция объекта"
  4498. #~ msgctxt "mesh_position_z label"
  4499. #~ msgid "Mesh position z"
  4500. #~ msgstr "Z позиция объекта"
  4501. #~ msgctxt "machine_start_gcode label"
  4502. #~ msgid "Start GCode"
  4503. #~ msgstr "Начало G-кода"
  4504. #~ msgctxt "machine_start_gcode description"
  4505. #~ msgid ""
  4506. #~ "Gcode commands to be executed at the very start - separated by \n"
  4507. #~ "."
  4508. #~ msgstr ""
  4509. #~ "Команды в G-коде, которые будут выполнены при старте печати, разделённые \n"
  4510. #~ "."
  4511. #~ msgctxt "machine_end_gcode label"
  4512. #~ msgid "End GCode"
  4513. #~ msgstr "Конец G-кода"
  4514. #~ msgctxt "machine_end_gcode description"
  4515. #~ msgid ""
  4516. #~ "Gcode commands to be executed at the very end - separated by \n"
  4517. #~ "."
  4518. #~ msgstr ""
  4519. #~ "Команды в G-коде, которые будут выполнены в конце печати, разделённые \n"
  4520. #~ "."
  4521. #~ msgctxt "machine_gcode_flavor label"
  4522. #~ msgid "Gcode flavour"
  4523. #~ msgstr "Вариант G-кода"
  4524. #~ msgctxt "machine_gcode_flavor description"
  4525. #~ msgid "The type of gcode to be generated."
  4526. #~ msgstr "Генерируемый вариант G-кода."
  4527. #~ msgctxt "meshfix_keep_open_polygons description"
  4528. #~ 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."
  4529. #~ msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, что не могут быть сшиты. Этот параметр должен использоваться как последний вариант, когда уже ничего не помогает получить нормальный GCode."
  4530. #~ msgctxt "relative_extrusion description"
  4531. #~ 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."
  4532. #~ msgstr "Использовать относительную, а не абсолютную экструзию. Использование относительной экструзии упрощает пост-обработку G-code. Однако, она не поддерживается всеми принтерами и может приводить к некоторой неточности при выдавливании материала. Независимо от этого параметра, режим экструзии будет всегда абсолютным перед выводом любого G-code скрипта."
  4533. #~ msgctxt "infill_offset_x description"
  4534. #~ msgid "The infill pattern is offset this distance along the X axis."
  4535. #~ msgstr "Расстояние смещения шаблона заполнения по оси X."
  4536. #~ msgctxt "infill_offset_y description"
  4537. #~ msgid "The infill pattern is offset this distance along the Y axis."
  4538. #~ msgstr "Расстояние смещения шаблона заполнения по оси Y."
  4539. #~ msgctxt "infill_overlap description"
  4540. #~ msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill."
  4541. #~ msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением."
  4542. #~ msgctxt "skin_overlap description"
  4543. #~ 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."
  4544. #~ msgstr "Объём перекрытия между оболочкой и стенами в виде процента от ширины линии. Небольшое перекрытие позволяют стенам нормально соединяться с оболочкой. Это процент от средней ширины линии оболочки и внутренней стенки."
  4545. #~ msgctxt "material_bed_temperature description"
  4546. #~ msgid "The temperature used for the heated build plate. If this is 0, the bed will not heat up for this print."
  4547. #~ msgstr "Температура, используемая для горячего стола. Если указан 0, то горячий стол не нагревается при печати."
  4548. #~ msgctxt "wall_x_extruder_nr label"
  4549. #~ msgid "Inner Walls Extruder"
  4550. #~ msgstr "Печать внутренних стенок"
  4551. #~ msgctxt "infill_pattern description"
  4552. #~ 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."
  4553. #~ msgstr "Шаблон заполнения при печати. Заполнение линиями или зиг-загом меняет направление на соседних слоях, уменьшая стоимость материала. Сетчатый, треугольный, кубический, восьмигранный и концентрический шаблоны полностью печатаются на каждом слое. Кубическое, четверть кубическое и восьмигранное заполнение меняется на каждом слое для получения более равного распределения по каждому направлению."
  4554. #~ msgctxt "zig_zaggify_infill description"
  4555. #~ 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."
  4556. #~ msgstr "Соединять концы линий заполнения где они соприкасаются со внутренней стенкой, используя линии, которые продолжают форму внутренней стенки. Активация этого параметра поможет крепче связывать заполнение со стенками и уменьшить влияние на качество заполнения вертикальных поверхностей. Отключение этого параметра уменьшает объём используемого материала."
  4557. #~ msgctxt "skirt_gap description"
  4558. #~ msgid ""
  4559. #~ "The horizontal distance between the skirt and the first layer of the print.\n"
  4560. #~ "This is the minimum distance, multiple skirt lines will extend outwards from this distance."
  4561. #~ msgstr ""
  4562. #~ "Расстояние по горизонтали между юбкой и первым слоем печатаемого объекта.\n"
  4563. #~ "Это минимальное расстояние, следующие линии юбки будут печататься наружу."
  4564. #~ msgctxt "z_offset_layer_0 label"
  4565. #~ msgid "Initial Layer Z Offset"
  4566. #~ msgstr "Смещение первого Z слоя"
  4567. #~ msgctxt "z_offset_layer_0 description"
  4568. #~ 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."
  4569. #~ msgstr "Экструдер смещается от стола на указанное значение при печати первого слоя. Значение может быть положительным (выше) или отрицательным (ниже). Некоторые типы материала связываются со столом лучше, когда экструдер чуть приподнят над столом."
  4570. #~ msgctxt "z_offset_taper_layers label"
  4571. #~ msgid "Z Offset Taper Layers"
  4572. #~ msgstr "Компенсация Z смещения"
  4573. #~ msgctxt "z_offset_taper_layers description"
  4574. #~ 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."
  4575. #~ msgstr "Если не ноль, то Z смещение уменьшается до 0 на указанном слое. Значение 0 указывает, что Z смещение остаётся постоянным на всех слоях печати."
  4576. #~ msgctxt "raft_smoothing description"
  4577. #~ 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."
  4578. #~ msgstr "Данный параметр управляет тем, сколько внутренних углов в контуре будет сглажено. Внутренние углы сглаживаются полукругами с радиусом равным указанному значению. Данный параметр также убирает отверстия в контуре подложки, которые меньше получающегося круга."
  4579. #~ msgctxt "infill_pattern description"
  4580. #~ 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."
  4581. #~ msgstr "Шаблон для материала заполнения при печати. Заполнение линиями и зигзагом меняет направление при смене слоя, уменьшая стоимость материала. Сетчатый, треугольный и концентрический шаблоны полностью печатаются на каждом слое. Кубическое и тетраэдральное заполнение меняется на каждом слое для равного распределения прочности по каждому направлению."
  4582. #~ msgctxt "infill_pattern option tetrahedral"
  4583. #~ msgid "Tetrahedral"
  4584. #~ msgstr "Тетраэдр"
  4585. #~ msgctxt "expand_skins_into_infill label"
  4586. #~ msgid "Expand Skins Into Infill"
  4587. #~ msgstr "Расширять оболочку в заполнение"
  4588. #~ msgctxt "expand_skins_into_infill description"
  4589. #~ 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."
  4590. #~ msgstr "Расширять области оболочки на верхних и/или нижних обшивках плоских поверхностях. По умолчанию, обшивки завершаются под линиями стенки, которые окружают заполнение, но это может приводить к отверстиям, появляющимся при малой плотности заполнения. Данный параметр расширяет обшивку позади линий стенки таким образом, что заполнение следующего слоя располагается на обшивке."
  4591. #~ msgctxt "expand_upper_skins label"
  4592. #~ msgid "Expand Top Skins Into Infill"
  4593. #~ msgstr "Расширять верхнюю оболочку в заполнение"
  4594. #~ msgctxt "expand_upper_skins description"
  4595. #~ msgid "Expand the top skin areas (areas with air above) so that they support infill above."
  4596. #~ msgstr "Расширять области верхней оболочки (над ними будет воздух) так, что они поддерживают заполнение над ними."
  4597. #~ msgctxt "expand_lower_skins label"
  4598. #~ msgid "Expand Bottom Skins Into Infill"
  4599. #~ msgstr "Расширять нижнюю оболочку в заполнение"
  4600. #~ msgctxt "expand_lower_skins description"
  4601. #~ msgid "Expand the bottom skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4602. #~ msgstr "Расширять области нижней оболочки (под ними будет воздух) так, что они сцепляются с слоями заполнения сверху и снизу."
  4603. #~ msgctxt "expand_skins_expand_distance description"
  4604. #~ 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."
  4605. #~ msgstr "Дистанция, на которую расширяется оболочка внутри заполнения. По умолчанию, дистанция достаточна для связывания промежутков между линиями заполнения и предотвращает появление отверстий в оболочке, где она встречается со стенкой когда плотность заполнения низкая. Меньшая дистанция чаще всего будет достаточной."
  4606. #~ msgctxt "support_skip_some_zags label"
  4607. #~ msgid "Skip Some ZigZags Connections"
  4608. #~ msgstr "Пропускать несколько соединений при зигзаге."
  4609. #~ msgctxt "support_skip_some_zags description"
  4610. #~ msgid "Skip some ZigZags connections to make the support structure easier to break."
  4611. #~ msgstr "Пропускать несколько соединений при зигзаге, чтобы облегчить последующее удаление структуры поддержек."
  4612. #~ msgctxt "support_zag_skip_count label"
  4613. #~ msgid "ZigZag Connection Skip Count"
  4614. #~ msgstr "Количество пропускаемых соединений при зигзаге"
  4615. #~ msgctxt "support_zag_skip_count description"
  4616. #~ msgid "Skip one in every N connection lines to make the support structure easier to break."
  4617. #~ msgstr "Пропускать одну в каждой N-ой линии соединений для облегчения последующего удаления структуры поддержек."
  4618. #~ msgctxt "machine_show_variants label"
  4619. #~ msgid "Show machine variants"
  4620. #~ msgstr "Показать варианты принтера"
  4621. #~ msgctxt "material_bed_temp_wait label"
  4622. #~ msgid "Wait for build plate heatup"
  4623. #~ msgstr "Ожидать пока прогреется стол"
  4624. #~ msgctxt "material_print_temp_wait label"
  4625. #~ msgid "Wait for nozzle heatup"
  4626. #~ msgstr "Ожидать пока прогреется голова"
  4627. #~ msgctxt "material_print_temp_prepend label"
  4628. #~ msgid "Include material temperatures"
  4629. #~ msgstr "Добавлять температуру из материала"
  4630. #~ msgctxt "material_bed_temp_prepend label"
  4631. #~ msgid "Include build plate temperature"
  4632. #~ msgstr "Добавлять температуру стола"
  4633. #~ msgctxt "machine_width label"
  4634. #~ msgid "Machine width"
  4635. #~ msgstr "Ширина принтера"
  4636. #~ msgctxt "machine_depth label"
  4637. #~ msgid "Machine depth"
  4638. #~ msgstr "Глубина принтера"
  4639. #~ msgctxt "machine_shape label"
  4640. #~ msgid "Build plate shape"
  4641. #~ msgstr "Форма стола"
  4642. #~ msgctxt "machine_height label"
  4643. #~ msgid "Machine height"
  4644. #~ msgstr "Высота принтера"
  4645. #~ msgctxt "machine_heated_bed label"
  4646. #~ msgid "Has heated build plate"
  4647. #~ msgstr "Имеет подогреваемый стол"
  4648. #~ msgctxt "machine_center_is_zero label"
  4649. #~ msgid "Is center origin"
  4650. #~ msgstr "Начало координат в центре"
  4651. #~ msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)"
  4652. #~ msgid "RepRap (Marlin/Sprinter)"
  4653. #~ msgstr "RepRap (Marlin/Sprinter)"
  4654. #~ msgctxt "machine_gcode_flavor option RepRap (Volumatric)"
  4655. #~ msgid "RepRap (Volumetric)"
  4656. #~ msgstr "RepRap (Volumetric)"
  4657. #~ msgctxt "wall_thickness description"
  4658. #~ msgid "The thickness of the outside walls in the horizontal direction. This value divided by the wall line width defines the number of walls."
  4659. #~ msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество линий стенки."
  4660. #~ msgctxt "skin_overlap description"
  4661. #~ msgid "The amount of overlap between the skin and the walls. A slight overlap allows the walls to connect firmly to the skin."
  4662. #~ msgstr "Величина перекрытия между оболочкой и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с оболочкой."
  4663. #~ msgctxt "support_interface_line_width description"
  4664. #~ msgid "Width of a single support interface line."
  4665. #~ msgstr "Ширина одной линии поддерживающей крыши."
  4666. #~ msgctxt "sub_div_rad_mult label"
  4667. #~ msgid "Cubic Subdivision Radius"
  4668. #~ msgstr "Радиус динамического куба"
  4669. #~ msgctxt "sub_div_rad_mult description"
  4670. #~ 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."
  4671. #~ msgstr "Коэффициент для радиуса от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к увеличению делений, т.е. к более мелким кубам."
  4672. #~ msgctxt "expand_upper_skins label"
  4673. #~ msgid "Expand Upper Skins"
  4674. #~ msgstr "Расширять верхние оболочки"
  4675. #~ msgctxt "expand_upper_skins description"
  4676. #~ msgid "Expand upper skin areas (areas with air above) so that they support infill above."
  4677. #~ msgstr "Расширять области верхней оболочки (над ними будет воздух) так, что они поддерживают заполнение над ними."
  4678. #~ msgctxt "expand_lower_skins label"
  4679. #~ msgid "Expand Lower Skins"
  4680. #~ msgstr "Расширять нижние оболочки"
  4681. #~ msgctxt "expand_lower_skins description"
  4682. #~ msgid "Expand lower skin areas (areas with air below) so that they are anchored by the infill layers above and below."
  4683. #~ msgstr "Расширять области нижней оболочки (под ними будет воздух) так, что они сцепляются с слоями заполнения сверху и снизу."
  4684. #~ msgctxt "speed_support_interface description"
  4685. #~ msgid "The speed at which the roofs and bottoms of support are printed. Printing the them at lower speeds can improve overhang quality."
  4686. #~ msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать верха поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели."
  4687. #~ msgctxt "acceleration_support_interface description"
  4688. #~ msgid "The acceleration with which the roofs and bottoms of support are printed. Printing them at lower accelerations can improve overhang quality."
  4689. #~ msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей."
  4690. #~ msgctxt "jerk_support_interface description"
  4691. #~ msgid "The maximum instantaneous velocity change with which the roofs and bottoms of support are printed."
  4692. #~ msgstr "Изменение максимальной мгновенной скорости, с которой печатается связующие слои поддержек."
  4693. #~ msgctxt "support_enable label"
  4694. #~ msgid "Enable Support"
  4695. #~ msgstr "Разрешить поддержки"
  4696. #~ msgctxt "support_enable description"
  4697. #~ msgid "Enable support structures. These structures support parts of the model with severe overhangs."
  4698. #~ msgstr "Разрешить печать поддержек. Такие структуры поддерживают части моделей со значительными навесаниями."
  4699. #~ msgctxt "support_interface_extruder_nr description"
  4700. #~ msgid "The extruder train to use for printing the roofs and bottoms of the support. This is used in multi-extrusion."
  4701. #~ msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров."
  4702. #~ msgctxt "support_bottom_stair_step_height description"
  4703. #~ 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."
  4704. #~ msgstr "Высота шагов лестнично-подобного низа поддержек, лежащих на модели. Малое значение усложняет последующее удаление поддержек, но слишком большое значение может сделать структуру поддержек нестабильной."
  4705. #~ msgctxt "support_bottom_height label"
  4706. #~ msgid "Support Bottom Thickness"
  4707. #~ msgstr "Толщина низа поддержек"
  4708. #~ msgctxt "support_bottom_height description"
  4709. #~ 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."
  4710. #~ msgstr "Толщина низа поддержек. Управляет количеством плотных слоёв, которые будут напечатаны на верхних частях модели, где располагаются поддержки."
  4711. #~ msgctxt "support_interface_skip_height description"
  4712. #~ 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."
  4713. #~ msgstr "Если выбрано, то поддержки печатаются с учётом указанной высоты шага. Меньшие значения нарезаются дольше, в то время как большие значения могут привести к печати обычных поддержек в таких местах, где должен быть связующий слой."
  4714. #~ msgctxt "support_interface_density description"
  4715. #~ 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."
  4716. #~ msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять."
  4717. #~ msgctxt "support_interface_line_distance label"
  4718. #~ msgid "Support Interface Line Distance"
  4719. #~ msgstr "Дистанция между линиями связующего слоя"
  4720. #~ msgctxt "support_interface_line_distance description"
  4721. #~ msgid "Distance between the printed support interface lines. This setting is calculated by the Support Interface Density, but can be adjusted separately."
  4722. #~ msgstr "Расстояние между линиями связующего слоя поддержки. Этот параметр вычисляется из \"Плотности связующего слоя\", но также может быть указан самостоятельно."
  4723. #~ msgctxt "magic_spiralize description"
  4724. #~ 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."
  4725. #~ msgstr "Спирально сглаживать движение по оси Z, печатая внешний контур. Приводит к постоянному увеличению Z координаты во время печати. Этот параметр превращает сплошной объект в одностенную модель с твёрдым дном. Раньше этот параметр назывался Joris."
  4726. #~ msgctxt "material_print_temperature description"
  4727. #~ msgid "The temperature used for printing. Set at 0 to pre-heat the printer manually."
  4728. #~ msgstr "Температура при печати. Установите 0 для предварительного разогрева вручную."
  4729. #~ msgctxt "material_bed_temperature description"
  4730. #~ msgid "The temperature used for the heated build plate. Set at 0 to pre-heat the printer manually."
  4731. #~ msgstr "Температура стола при печати. Установите 0 для предварительного разогрева вручную."
  4732. #~ msgctxt "support_z_distance description"
  4733. #~ 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."
  4734. #~ msgstr "Расстояние между верхом/низом структуры поддержек и печатаемой моделью. Этот зазор упрощает последующее удаление поддержек. Это значение округляется вниз и кратно высоте слоя."
  4735. #~ msgctxt "machine_extruder_count label"
  4736. #~ msgid "Number extruders"
  4737. #~ msgstr "Количество экструдеров"
  4738. #~ msgctxt "machine_heat_zone_length description"
  4739. #~ msgid "The distance from the tip of the nozzle in which heat from the nozzle is transfered to the filament."
  4740. #~ msgstr "Расстояние от кончика сопла, на котором тепло передаётся материалу."
  4741. #~ msgctxt "z_seam_type description"
  4742. #~ 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."
  4743. #~ msgstr "Начальная точка для каждого пути в слое. Когда пути в последовательных слоях начинаются в одной и той же точке, то на модели может возникать вертикальный шов. Проще всего удалить шов, выравнивая начало путей позади. Менее заметным шов можно сделать, случайно устанавливая начало путей. Если выбрать самый короткий путь, то печать будет быстрее."
  4744. #~ msgctxt "z_seam_type option back"
  4745. #~ msgid "Back"
  4746. #~ msgstr "Позади"
  4747. #~ msgctxt "retraction_hop_enabled label"
  4748. #~ msgid "Z Hop when Retracted"
  4749. #~ msgstr "Поднятие оси Z при откате"
  4750. #~ msgctxt "speed_travel_layer_0 description"
  4751. #~ 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."
  4752. #~ msgstr "Скорость перемещений на первом слое. Пониженное значение помогает избежать сдвига уже напечатанных частей со стола."
  4753. #~ msgctxt "retraction_combing description"
  4754. #~ 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."
  4755. #~ msgstr "Комбинг удерживает сопло при перемещении внутри уже напечатанных зон. Это приводит к небольшому увеличению пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат и сопло передвигается в следующую точку по прямой. Также есть возможность не применять комбинг над областями поверхностей крышки/дна, разрешив комбинг только над заполнением."
  4756. #~ msgctxt "travel_avoid_other_parts label"
  4757. #~ msgid "Avoid Printed Parts when Traveling"
  4758. #~ msgstr "Избегать напечатанное"
  4759. #~ msgctxt "cool_fan_full_at_height description"
  4760. #~ 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."
  4761. #~ msgstr "Высота, на которой вентилятор должен вращаться с обыкновенной скорость. На более низких слоях вентилятор будет постепенно разгоняться с нуля до обычной скорости."
  4762. #~ msgctxt "cool_min_layer_time description"
  4763. #~ 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."
  4764. #~ msgstr "Минимальное время, затрачиваемое на печать слоя. Эта величина заставляет принтер замедлиться, чтобы уложиться в указанное время при печати слоя. Это позволяет материалу остыть до нужной температуры перед печатью следующего слоя."
  4765. #~ msgctxt "prime_tower_wipe_enabled label"
  4766. #~ msgid "Wipe Nozzle on Prime Tower"
  4767. #~ msgstr "Вытирать сопло о черновую башню"
  4768. #~ msgctxt "multiple_mesh_overlap label"
  4769. #~ msgid "Dual Extrusion Overlap"
  4770. #~ msgstr "Перекрытие двойной экструзии"
  4771. #~ msgctxt "multiple_mesh_overlap description"
  4772. #~ msgid "Make the models printed with different extruder trains overlap a bit. This makes the different materials bond together better."
  4773. #~ msgstr "Приводит к небольшому перекрытию моделей, напечатанных разными экструдерами. Это приводит к лучшей связи двух материалов друг с другом."
  4774. #~ msgctxt "meshfix_union_all description"
  4775. #~ msgid "Ignore the internal geometry arising from overlapping volumes and print the volumes as one. This may cause internal cavities to disappear."
  4776. #~ msgstr "Игнорирование внутренней геометрии, возникшей при объединении объёмов и печать объёмов как единого целого. Это может привести к исчезновению внутренних поверхностей."
  4777. #~ msgctxt "carve_multiple_volumes description"
  4778. #~ 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."
  4779. #~ msgstr "Удаляет области где несколько объектов перекрываются друг с другом. Можно использовать при пересечении объединённых мультиматериальных объектов."
  4780. #~ msgctxt "remove_overlapping_walls_enabled label"
  4781. #~ msgid "Remove Overlapping Wall Parts"
  4782. #~ msgstr "Удаление перекрывающихся частей стены"
  4783. #~ msgctxt "remove_overlapping_walls_enabled description"
  4784. #~ 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."
  4785. #~ msgstr "Удаляет части стены, которые перекрываются. что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей."
  4786. #~ msgctxt "remove_overlapping_walls_0_enabled label"
  4787. #~ msgid "Remove Overlapping Outer Wall Parts"
  4788. #~ msgstr "Удаление перекрывающихся частей внешних стенок"
  4789. #~ msgctxt "remove_overlapping_walls_0_enabled description"
  4790. #~ 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."
  4791. #~ msgstr "Удаляет части внешней стены, которые перекрываются, что приводит к появлению излишков материала в некоторых местах. Такие перекрытия образуются в тонких частях и острых углах моделей."
  4792. #~ msgctxt "remove_overlapping_walls_x_enabled label"
  4793. #~ msgid "Remove Overlapping Inner Wall Parts"
  4794. #~ msgstr "Удаление перекрывающихся частей внутренних стенок"
  4795. #~ msgctxt "remove_overlapping_walls_x_enabled description"
  4796. #~ 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."
  4797. #~ msgstr "Удаляет части внутренних стенок, которые в противном случае будут перекрываться и приводить к появлению излишков материала. Такие перекрытия образуются в тонких частях и острых углах моделей."
  4798. #~ msgctxt "fill_perimeter_gaps description"
  4799. #~ msgid "Fills the gaps between walls when overlapping inner wall parts are removed."
  4800. #~ msgstr "Заполняет зазоры между стенами после того, как перекрывающиеся части внутренних стенок были удалены."
  4801. #~ msgctxt "infill_line_distance label"
  4802. #~ msgid "Line Distance"
  4803. #~ msgstr "Дистанция заполнения"
  4804. #~ msgctxt "retraction_combing label"
  4805. #~ msgid "Enable Combing"
  4806. #~ msgstr "Разрешить комбинг"
  4807. #~ msgctxt "support_type label"
  4808. #~ msgid "Placement"
  4809. #~ msgstr "Размещение"
  4810. #~ msgctxt "support_xy_distance label"
  4811. #~ msgid "X/Y Distance"
  4812. #~ msgstr "Дистанция X/Y"
  4813. #~ msgctxt "support_z_distance label"
  4814. #~ msgid "Z Distance"
  4815. #~ msgstr "Z дистанция"
  4816. #~ msgctxt "support_top_distance label"
  4817. #~ msgid "Top Distance"
  4818. #~ msgstr "Дистанция сверху"
  4819. #~ msgctxt "support_join_distance label"
  4820. #~ msgid "Join Distance"
  4821. #~ msgstr "Дистанция объединения"
  4822. #~ msgctxt "support_area_smoothing label"
  4823. #~ msgid "Area Smoothing"
  4824. #~ msgstr "Сглаживание зон"
  4825. #~ msgctxt "support_area_smoothing description"
  4826. #~ 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."
  4827. #~ msgstr "Максимальное расстояние по осям X/Y в сегменте линии, которая подлежит сглаживанию. Неровные линии появляются при дистанции объединения и поддержке в виде моста, что заставляет принтер резонировать. Сглаживание зон поддержек не приводит к нарушению ограничений, кроме возможных изменений в навесаниях."
  4828. #~ msgctxt "support_roof_height description"
  4829. #~ msgid "The thickness of the support roofs."
  4830. #~ msgstr "Толщина поддерживающей крыши."
  4831. #~ msgctxt "support_conical_angle label"
  4832. #~ msgid "Cone Angle"
  4833. #~ msgstr "Угол конуса"
  4834. #~ msgctxt "support_conical_min_width label"
  4835. #~ msgid "Cone Minimal Width"
  4836. #~ msgstr "Минимальная ширина конуса"
  4837. #~ msgctxt "adhesion_type label"
  4838. #~ msgid "Type"
  4839. #~ msgstr "Тип"
  4840. #~ msgctxt "raft_surface_speed label"
  4841. #~ msgid "Raft Surface Print Speed"
  4842. #~ msgstr "Скорость печати поверхности подложки"
  4843. #~ msgctxt "raft_interface_speed label"
  4844. #~ msgid "Raft Interface Print Speed"
  4845. #~ msgstr "Скорость печати связи подложки"
  4846. #~ msgctxt "raft_interface_speed description"
  4847. #~ 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."
  4848. #~ msgstr "Скорость, на которой печатается связующий слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой."
  4849. #~ msgctxt "raft_surface_fan_speed label"
  4850. #~ msgid "Raft Surface Fan Speed"
  4851. #~ msgstr "Скорость вентилятора для поверхности подложки"
  4852. #~ msgctxt "raft_surface_fan_speed description"
  4853. #~ msgid "The fan speed for the surface raft layers."
  4854. #~ msgstr "Скорость вращения вентилятора при печати поверхности слоёв подложки."
  4855. #~ msgctxt "raft_interface_fan_speed label"
  4856. #~ msgid "Raft Interface Fan Speed"
  4857. #~ msgstr "Скорость вентилятора для связующего слоя"
  4858. #~ msgctxt "magic_mesh_surface_mode description"
  4859. #~ 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."
  4860. #~ msgstr "Печатать только поверхность. Никакого заполнения, никаких верхних нижних поверхностей, просто одна стенка, которая совпадает с поверхностью объекта. Позволяет делать и печать внутренностей закрытого объёма в виде нормалей, и печать всех полигонов, не входящих в закрытый объём, в виде поверхностей."