cura.po 267 KB

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