cura.po 273 KB

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