strings.po 397 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR ORGANIZATION
  3. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: \n"
  8. "POT-Creation-Date: 2019-07-30 13:13+0300\n"
  9. "PO-Revision-Date: \n"
  10. "Last-Translator: Andrey Kultyapov <camellan@yandex.ru>\n"
  11. "Language-Team: \n"
  12. "Language: ru\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "X-Generator: Poedit 2.2.3\n"
  17. "X-Poedit-Basepath: ../../..\n"
  18. "X-Poedit-SearchPath-0: .\n"
  19. "X-Poedit-SearchPathExcluded-0: build\n"
  20. "X-Poedit-SearchPathExcluded-1: doc\n"
  21. "X-Poedit-SearchPathExcluded-2: tests\n"
  22. #: FlatCAMApp.py:928
  23. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  24. msgstr ""
  25. "[ERROR] Не удалось найти языковые файлы. Строки приложения отсутствуют."
  26. #: FlatCAMApp.py:1841
  27. msgid ""
  28. "(Type help to get started)\n"
  29. "\n"
  30. msgstr ""
  31. "(Введите help для начала работы.)\n"
  32. "\n"
  33. #: FlatCAMApp.py:2026 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  34. #: flatcamTools/ToolPcbWizard.py:296 flatcamTools/ToolPcbWizard.py:319
  35. msgid "Open cancelled."
  36. msgstr "Открытие отменено."
  37. #: FlatCAMApp.py:2040
  38. msgid "Open Config file failed."
  39. msgstr "Не удалось открыть файл конфигурации."
  40. #: FlatCAMApp.py:2054
  41. msgid "Open Script file failed."
  42. msgstr "Ошибка открытия файла сценария."
  43. #: FlatCAMApp.py:2252
  44. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  45. msgstr ""
  46. "[WARNING_NOTCL] Выберите объект Geometry, Gerber или Excellon для "
  47. "редактирования."
  48. #: FlatCAMApp.py:2262
  49. msgid ""
  50. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  51. "Geometry is not possible.\n"
  52. "Edit only one geometry at a time."
  53. msgstr ""
  54. "[WARNING_NOTCL] Одновременное редактирование геометрии в MultiGeo Geometry "
  55. "невозможно.\n"
  56. "Редактируйте только одну геометрию за раз."
  57. #: FlatCAMApp.py:2317
  58. msgid "[WARNING_NOTCL] Editor is activated ..."
  59. msgstr "[WARNING_NOTCL] Редактор активирован ..."
  60. #: FlatCAMApp.py:2335
  61. msgid "Do you want to save the edited object?"
  62. msgstr "Вы хотите сохранить редактируемый объект?"
  63. #: FlatCAMApp.py:2336 flatcamGUI/FlatCAMGUI.py:1629
  64. msgid "Close Editor"
  65. msgstr "Закрыть редактор"
  66. #: FlatCAMApp.py:2339 FlatCAMApp.py:3431 FlatCAMApp.py:6027
  67. #: FlatCAMTranslation.py:96 flatcamGUI/FlatCAMGUI.py:3749
  68. msgid "Yes"
  69. msgstr "Да"
  70. #: FlatCAMApp.py:2340 FlatCAMApp.py:3432 FlatCAMApp.py:6028
  71. #: FlatCAMTranslation.py:97 flatcamGUI/FlatCAMGUI.py:3750
  72. msgid "No"
  73. msgstr "Нет"
  74. #: FlatCAMApp.py:2341 FlatCAMApp.py:3433 FlatCAMApp.py:3864 FlatCAMApp.py:6029
  75. msgid "Cancel"
  76. msgstr "Отмена"
  77. #: FlatCAMApp.py:2368
  78. msgid "[WARNING] Object empty after edit."
  79. msgstr "[WARNING] Объект пуст после редактирования."
  80. #: FlatCAMApp.py:2390 FlatCAMApp.py:2409 FlatCAMApp.py:2421
  81. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  82. msgstr ""
  83. "[WARNING_NOTCL] Выберите объект Gerber, Geometry или Excellon для обновления."
  84. #: FlatCAMApp.py:2393
  85. #, python-format
  86. msgid "[selected] %s is updated, returning to App..."
  87. msgstr "[selected] %s обновлён, возврат в приложение ..."
  88. #: FlatCAMApp.py:2758
  89. msgid "[ERROR] Could not load defaults file."
  90. msgstr "[ERROR] Не удаётся загрузить файл настроек."
  91. #: FlatCAMApp.py:2770
  92. msgid "[ERROR] Failed to parse defaults file."
  93. msgstr "[ERROR] Не удаётся прочитать файл настроек."
  94. #: FlatCAMApp.py:2791 FlatCAMApp.py:2795
  95. msgid "Import FlatCAM Preferences"
  96. msgstr "Импорт настроек FlatCAM"
  97. #: FlatCAMApp.py:2801
  98. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  99. msgstr "[WARNING_NOTCL] Импорт настроек FlatCAM отменен."
  100. #: FlatCAMApp.py:2809 FlatCAMApp.py:2863 FlatCAMApp.py:3310
  101. msgid "[ERROR_NOTCL] Could not load defaults file."
  102. msgstr "[ERROR_NOTCL] Не удалось загрузить файл значений по умолчанию."
  103. #: FlatCAMApp.py:2817 FlatCAMApp.py:3319
  104. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  105. msgstr "[ERROR_NOTCL] Не удалось прочитать файл значений по умолчанию."
  106. #: FlatCAMApp.py:2820
  107. #, python-format
  108. msgid "[success] Imported Defaults from %s"
  109. msgstr "[success] Значения по умолчанию импортированы из %s"
  110. #: FlatCAMApp.py:2835 FlatCAMApp.py:2840
  111. msgid "Export FlatCAM Preferences"
  112. msgstr "Экспорт настроек FlatCAM"
  113. #: FlatCAMApp.py:2847
  114. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  115. msgstr "[WARNING_NOTCL] Экспорт настроек FlatCAM отменён."
  116. #: FlatCAMApp.py:2882 FlatCAMApp.py:3364
  117. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  118. msgstr "[ERROR_NOTCL] Не удалось записать значения по умолчанию в файл."
  119. #: FlatCAMApp.py:2935
  120. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  121. msgstr "[ERROR_NOTCL] Не удалось открыть файл истории файлов для записи."
  122. #: FlatCAMApp.py:3012 camlib.py:4458
  123. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  124. msgstr ""
  125. "[ERROR_NOTCL] Произошла внутренняя ошибка. Посмотрите в командную строку.\n"
  126. #: FlatCAMApp.py:3013
  127. #, python-brace-format
  128. msgid ""
  129. "Object ({kind}) failed because: {error} \n"
  130. "\n"
  131. msgstr ""
  132. "Объект ({kind}) не выполнен, потому что: {error} \n"
  133. "\n"
  134. #: FlatCAMApp.py:3033
  135. msgid "Converting units to "
  136. msgstr "Конвертирование единиц в "
  137. #: FlatCAMApp.py:3112 FlatCAMApp.py:3115 FlatCAMApp.py:3118 FlatCAMApp.py:3121
  138. #, python-brace-format
  139. msgid ""
  140. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  141. "span>"
  142. msgstr ""
  143. "[selected] {kind} создан/выбран: <span style=\"color:{color};\">{name}</span>"
  144. #: FlatCAMApp.py:3215
  145. #, python-brace-format
  146. msgid ""
  147. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  148. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  149. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  150. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  151. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  152. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  153. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  154. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  155. "downloads/\">here.</a><BR>"
  156. msgstr ""
  157. "<font size=8><B>FlatCAM</B></font><BR>Версия {version} {beta} ({date}) - "
  158. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  159. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Основные участники:"
  160. "</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  161. "Berthomé<BR>и многие другие найдутся <a href = \"https://bitbucket.org/jpcgt/"
  162. "flatcam/pull-requests/?state=MERGED\">тут.</a><BR><BR>Разработка идёт <a "
  163. "href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">здесь.</"
  164. "a><BR>ЗАГРУЗИТЬ можно <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  165. "downloads/\">отсюда.</a><BR>"
  166. #: FlatCAMApp.py:3368
  167. msgid "[success] Defaults saved."
  168. msgstr "[success] Значения по умолчанию сохранены."
  169. #: FlatCAMApp.py:3389
  170. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  171. msgstr "[ERROR_NOTCL] Не удалось загрузить файл с исходными значениями."
  172. #: FlatCAMApp.py:3398
  173. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  174. msgstr "[ERROR_NOTCL] Не удалось прочитать файл с исходными значениями."
  175. #: FlatCAMApp.py:3412
  176. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  177. msgstr "[ERROR_NOTCL] Не удалось записать исходные значения в файл."
  178. #: FlatCAMApp.py:3416
  179. msgid "Factory defaults saved."
  180. msgstr "Исходные значения сохранены."
  181. #: FlatCAMApp.py:3421 flatcamGUI/FlatCAMGUI.py:3125
  182. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  183. msgstr "[WARNING_NOTCL] Приложение сохраняет проект. Пожалуйста, подождите ..."
  184. #: FlatCAMApp.py:3426
  185. msgid ""
  186. "There are files/objects modified in FlatCAM. \n"
  187. "Do you want to Save the project?"
  188. msgstr ""
  189. "Есть файлы/объекты, измененные в FlatCAM.\n"
  190. "Вы хотите сохранить проект?"
  191. #: FlatCAMApp.py:3429 FlatCAMApp.py:6025
  192. msgid "Save changes"
  193. msgstr "Сохранить изменения"
  194. #: FlatCAMApp.py:3496
  195. msgid ""
  196. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  197. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  198. "is to convert from one to another and retry joining \n"
  199. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  200. "be lost and the result may not be what was expected. \n"
  201. "Check the generated GCODE."
  202. msgstr ""
  203. "[ERROR] Не удалось объединить. Объекты Geometry бывают разных типов.\n"
  204. "По крайней мере, один тип MultiGeo, а другой тип SingleGeo. Возможно "
  205. "преобразование из одного в другое и повторное присоединение ,\n"
  206. "но в случае преобразования из MultiGeo в SingleGeo информация может быть "
  207. "потеряна, и результат может не соответствовать ожидаемому. \n"
  208. "Проверьте сгенерированный GCODE."
  209. #: FlatCAMApp.py:3537
  210. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  211. msgstr ""
  212. "[ERROR_NOTCL] Неудача. Присоединение Excellon работает только на объектах "
  213. "Excellon."
  214. #: FlatCAMApp.py:3559
  215. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  216. msgstr ""
  217. "[ERROR_NOTCL] Неудача. Объединение Gerber работает только на объектах Gerber."
  218. #: FlatCAMApp.py:3574 FlatCAMApp.py:3599
  219. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  220. msgstr "[ERROR_NOTCL] Неудалось. Выберите объект Geometry и попробуйте снова."
  221. #: FlatCAMApp.py:3578 FlatCAMApp.py:3603
  222. #, python-format
  223. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  224. msgstr "[ERROR_NOTCL] Ожидается FlatCAMGeometry, получено %s"
  225. #: FlatCAMApp.py:3591
  226. msgid "[success] A Geometry object was converted to MultiGeo type."
  227. msgstr "[success] Объект Geometry был преобразован в тип MultiGeo."
  228. #: FlatCAMApp.py:3617
  229. msgid "[success] A Geometry object was converted to SingleGeo type."
  230. msgstr "[success] Объект Geometry был преобразован в тип SingleGeo."
  231. #: FlatCAMApp.py:3858
  232. msgid "Toggle Units"
  233. msgstr "Единицы измерения"
  234. #: FlatCAMApp.py:3860
  235. msgid "<B>Change project units ...</B>"
  236. msgstr "<B>изменение единиц проекта ...</B>>"
  237. #: FlatCAMApp.py:3861
  238. msgid ""
  239. "Changing the units of the project causes all geometrical properties of all "
  240. "objects to be scaled accordingly.\n"
  241. "Continue?"
  242. msgstr ""
  243. "Изменение единиц измерения проекта приводит к соответствующему "
  244. "масштабированию всех геометрических свойств всех объектов.\n"
  245. "Продолжать?"
  246. #: FlatCAMApp.py:3863 FlatCAMApp.py:4712 FlatCAMApp.py:6301 FlatCAMApp.py:6312
  247. #: FlatCAMApp.py:6552 FlatCAMApp.py:6562
  248. msgid "Ok"
  249. msgstr "Да"
  250. #: FlatCAMApp.py:3911
  251. #, python-format
  252. msgid "[success] Converted units to %s"
  253. msgstr "[success] Конвертирование единиц в %s"
  254. #: FlatCAMApp.py:3922
  255. msgid "[WARNING_NOTCL] Units conversion cancelled."
  256. msgstr "[WARNING_NOTCL] Преобразование единиц отменено."
  257. #: FlatCAMApp.py:4581
  258. msgid "Open file"
  259. msgstr "Открыть файл"
  260. #: FlatCAMApp.py:4612 FlatCAMApp.py:4617
  261. msgid "Export G-Code ..."
  262. msgstr "Экспорт G-Code …"
  263. #: FlatCAMApp.py:4620
  264. msgid "[WARNING_NOTCL] Export Code cancelled."
  265. msgstr "[WARNING_NOTCL] Экспорт Code отменён."
  266. #: FlatCAMApp.py:4630
  267. msgid "[WARNING] No such file or directory"
  268. msgstr "[WARNING] Нет такого файла или каталога"
  269. #: FlatCAMApp.py:4637
  270. #, python-format
  271. msgid "Saved to: %s"
  272. msgstr "Сохранёно в: %s"
  273. #: FlatCAMApp.py:4700 FlatCAMApp.py:4733 FlatCAMApp.py:4744 FlatCAMApp.py:4755
  274. #: flatcamTools/ToolNonCopperClear.py:490 flatcamTools/ToolSolderPaste.py:767
  275. msgid ""
  276. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  277. "format."
  278. msgstr ""
  279. "[WARNING_NOTCL] Пожалуйста, введите диаметр инструмента с ненулевым "
  280. "значением в float формате."
  281. #: FlatCAMApp.py:4705 FlatCAMApp.py:4738 FlatCAMApp.py:4749 FlatCAMApp.py:4760
  282. #: flatcamGUI/FlatCAMGUI.py:3020
  283. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  284. msgstr "[WARNING_NOTCL] Добавление инструмента отменено ..."
  285. #: FlatCAMApp.py:4708
  286. msgid ""
  287. "Adding Tool works only when Advanced is checked.\n"
  288. "Go to Preferences -> General - Show Advanced Options."
  289. msgstr ""
  290. "Добавление инструмента работает только тогда, когда установлен флажок "
  291. "«Дополнительно».\n"
  292. "Перейдите в Настройки -> Основные парам. - Показать дополнительные параметры."
  293. #: FlatCAMApp.py:4821
  294. msgid "Object(s) deleted ..."
  295. msgstr "Объект(ы) удален ..."
  296. #: FlatCAMApp.py:4825
  297. msgid "Failed. No object(s) selected..."
  298. msgstr "Нудача. Объекты не выбраны ..."
  299. #: FlatCAMApp.py:4827
  300. msgid "Save the work in Editor and try again ..."
  301. msgstr "Сохраните работу в редакторе и попробуйте снова ..."
  302. #: FlatCAMApp.py:4840
  303. msgid "Click to set the origin ..."
  304. msgstr "Кликните, чтобы указать начало координат ..."
  305. #: FlatCAMApp.py:4852
  306. msgid "Jump to ..."
  307. msgstr "Перейти к ..."
  308. #: FlatCAMApp.py:4853
  309. msgid "Enter the coordinates in format X,Y:"
  310. msgstr "Введите координаты в формате X, Y:"
  311. #: FlatCAMApp.py:4860
  312. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  313. msgstr "Неверные координаты. Введите координаты в формате: X, Y"
  314. #: FlatCAMApp.py:4878 flatcamEditors/FlatCAMExcEditor.py:2321
  315. #: flatcamEditors/FlatCAMExcEditor.py:2328
  316. #: flatcamEditors/FlatCAMGeoEditor.py:3648
  317. #: flatcamEditors/FlatCAMGeoEditor.py:3662
  318. #: flatcamEditors/FlatCAMGrbEditor.py:1040
  319. #: flatcamEditors/FlatCAMGrbEditor.py:1141
  320. #: flatcamEditors/FlatCAMGrbEditor.py:1409
  321. #: flatcamEditors/FlatCAMGrbEditor.py:1666
  322. #: flatcamEditors/FlatCAMGrbEditor.py:4071
  323. #: flatcamEditors/FlatCAMGrbEditor.py:4085 flatcamGUI/FlatCAMGUI.py:2424
  324. #: flatcamGUI/FlatCAMGUI.py:2436
  325. msgid "[success] Done."
  326. msgstr "[success] Готово."
  327. #: FlatCAMApp.py:5010 FlatCAMApp.py:5077
  328. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  329. msgstr "[WARNING_NOTCL] Объект не выбран. Выберите объект и попробуйте снова."
  330. #: FlatCAMApp.py:5118
  331. msgid "[success] Origin set ..."
  332. msgstr "[success] Начало координат установлено ..."
  333. #: FlatCAMApp.py:5138
  334. msgid "Preferences"
  335. msgstr "Настройки"
  336. #: FlatCAMApp.py:5158
  337. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  338. msgstr "[WARNING_NOTCL] Не выбран объект для отражения по оси Y."
  339. #: FlatCAMApp.py:5183
  340. msgid "[success] Flip on Y axis done."
  341. msgstr "[success] Отражение по оси Y завершено."
  342. #: FlatCAMApp.py:5185 FlatCAMApp.py:5225
  343. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  344. #: flatcamEditors/FlatCAMGrbEditor.py:5498 flatcamTools/ToolTransform.py:747
  345. #, python-format
  346. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  347. msgstr "[ERROR_NOTCL] Из-за %s, операция переворота не была выполнена."
  348. #: FlatCAMApp.py:5198
  349. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  350. msgstr "[WARNING_NOTCL] Не выбран объект для отражения по оси Х."
  351. #: FlatCAMApp.py:5223
  352. msgid "[success] Flip on X axis done."
  353. msgstr "[success] Отражение по оси Х завершено."
  354. #: FlatCAMApp.py:5238
  355. msgid "[WARNING_NOTCL] No object selected to Rotate."
  356. msgstr "[WARNING_NOTCL] Не выбран ни один объект для вращения."
  357. #: FlatCAMApp.py:5241 FlatCAMApp.py:5286 FlatCAMApp.py:5317
  358. msgid "Transform"
  359. msgstr "Трансформация"
  360. #: FlatCAMApp.py:5241 FlatCAMApp.py:5286 FlatCAMApp.py:5317
  361. msgid "Enter the Angle value:"
  362. msgstr "Введите значение угла:"
  363. #: FlatCAMApp.py:5271
  364. msgid "[success] Rotation done."
  365. msgstr "[success] Вращение завершено."
  366. #: FlatCAMApp.py:5273 flatcamEditors/FlatCAMGeoEditor.py:1298
  367. #: flatcamEditors/FlatCAMGrbEditor.py:5427 flatcamTools/ToolTransform.py:676
  368. #, python-format
  369. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  370. msgstr "[ERROR_NOTCL] Из-за %s вращение не было выполнено."
  371. #: FlatCAMApp.py:5284
  372. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  373. msgstr "[WARNING_NOTCL] Не выбран ни один объект для наклона/сдвига по оси X."
  374. #: FlatCAMApp.py:5305
  375. msgid "[success] Skew on X axis done."
  376. msgstr "[success] Наклон по оси X выполнен."
  377. #: FlatCAMApp.py:5315
  378. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  379. msgstr "[WARNING_NOTCL] Нет объекта, выбранного для наклона/сдвига по оси Y."
  380. #: FlatCAMApp.py:5336
  381. msgid "[success] Skew on Y axis done."
  382. msgstr "[success] Наклон по оси Y выполнен."
  383. #: FlatCAMApp.py:5406
  384. msgid "Grid On/Off"
  385. msgstr "Сетка вкл/откл"
  386. #: FlatCAMApp.py:5419 flatcamEditors/FlatCAMGeoEditor.py:937
  387. #: flatcamEditors/FlatCAMGrbEditor.py:2424
  388. #: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:989
  389. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  390. #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131
  391. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  392. #: flatcamTools/ToolTransform.py:337
  393. msgid "Add"
  394. msgstr "Добавить"
  395. #: FlatCAMApp.py:5420 FlatCAMObj.py:3350
  396. #: flatcamEditors/FlatCAMGrbEditor.py:2429 flatcamGUI/FlatCAMGUI.py:523
  397. #: flatcamGUI/FlatCAMGUI.py:723 flatcamGUI/FlatCAMGUI.py:1627
  398. #: flatcamGUI/FlatCAMGUI.py:1963 flatcamGUI/ObjectUI.py:1005
  399. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143
  400. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  401. msgid "Delete"
  402. msgstr "Удалить"
  403. #: FlatCAMApp.py:5433
  404. msgid "New Grid ..."
  405. msgstr "Новая сетка ..."
  406. #: FlatCAMApp.py:5434
  407. msgid "Enter a Grid Value:"
  408. msgstr "Введите размер сетки:"
  409. #: FlatCAMApp.py:5442 FlatCAMApp.py:5469
  410. msgid ""
  411. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  412. "format."
  413. msgstr ""
  414. "[WARNING_NOTCL] Пожалуйста, введите значение сетки с ненулевым значением в "
  415. "float формате."
  416. #: FlatCAMApp.py:5448
  417. msgid "[success] New Grid added ..."
  418. msgstr "[success] Новая сетка добавлена ..."
  419. #: FlatCAMApp.py:5451
  420. msgid "[WARNING_NOTCL] Grid already exists ..."
  421. msgstr "[WARNING_NOTCL] Сетка уже существует ..."
  422. #: FlatCAMApp.py:5454
  423. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  424. msgstr "[WARNING_NOTCL] Добавление новой сетки отменено ..."
  425. #: FlatCAMApp.py:5476
  426. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  427. msgstr "[ERROR_NOTCL] Значение сетки не существует ..."
  428. #: FlatCAMApp.py:5479
  429. msgid "[success] Grid Value deleted ..."
  430. msgstr "[success] Значение сетки удалено ..."
  431. #: FlatCAMApp.py:5482
  432. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  433. msgstr "[WARNING_NOTCL] Удаление значения сетки отменено ..."
  434. #: FlatCAMApp.py:5488
  435. msgid "Key Shortcut List"
  436. msgstr "Список быстрых клавиш"
  437. #: FlatCAMApp.py:5521
  438. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  439. msgstr "[WARNING_NOTCL] Нет объекта, выбранного для копирования его имени"
  440. #: FlatCAMApp.py:5525
  441. msgid "Name copied on clipboard ..."
  442. msgstr "Имя скопировано в буфер обмена ..."
  443. #: FlatCAMApp.py:5567 flatcamEditors/FlatCAMGrbEditor.py:4012
  444. msgid "[success] Coordinates copied to clipboard."
  445. msgstr "[success] Координаты скопированы в буфер обмена."
  446. #: FlatCAMApp.py:5823 FlatCAMApp.py:5826 FlatCAMApp.py:5829 FlatCAMApp.py:5832
  447. #: FlatCAMApp.py:5847 FlatCAMApp.py:5850 FlatCAMApp.py:5853 FlatCAMApp.py:5856
  448. #: FlatCAMApp.py:5896 FlatCAMApp.py:5899 FlatCAMApp.py:5902 FlatCAMApp.py:5905
  449. #: ObjectCollection.py:719 ObjectCollection.py:722 ObjectCollection.py:725
  450. #: ObjectCollection.py:728
  451. #, python-brace-format
  452. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  453. msgstr "[selected]<span style=\"color:{color};\">{name}</span> выбран"
  454. #: FlatCAMApp.py:6022
  455. msgid ""
  456. "There are files/objects opened in FlatCAM.\n"
  457. "Creating a New project will delete them.\n"
  458. "Do you want to Save the project?"
  459. msgstr ""
  460. "В FlatCAM открыты файлы/объекты.\n"
  461. "Создание нового проекта удалит их.\n"
  462. "Вы хотите сохранить проект?"
  463. #: FlatCAMApp.py:6043
  464. msgid "[success] New Project created..."
  465. msgstr "[success] Новый проект создан ..."
  466. #: FlatCAMApp.py:6160 FlatCAMApp.py:6163 flatcamGUI/FlatCAMGUI.py:604
  467. #: flatcamGUI/FlatCAMGUI.py:1842
  468. msgid "Open Gerber"
  469. msgstr "Открыть Gerber"
  470. #: FlatCAMApp.py:6168
  471. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  472. msgstr "[WARNING_NOTCL] Открытие Gerber отменено."
  473. #: FlatCAMApp.py:6189 FlatCAMApp.py:6192 flatcamGUI/FlatCAMGUI.py:605
  474. #: flatcamGUI/FlatCAMGUI.py:1843
  475. msgid "Open Excellon"
  476. msgstr "Открыть Excellon"
  477. #: FlatCAMApp.py:6197
  478. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  479. msgstr "[WARNING_NOTCL] Открытие Excellon отменено."
  480. #: FlatCAMApp.py:6219 FlatCAMApp.py:6222
  481. msgid "Open G-Code"
  482. msgstr "Открыть G-Code"
  483. #: FlatCAMApp.py:6227
  484. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  485. msgstr "[WARNING_NOTCL] Открытие G-Code отменено."
  486. #: FlatCAMApp.py:6245 FlatCAMApp.py:6248
  487. msgid "Open Project"
  488. msgstr "Открыть проект"
  489. #: FlatCAMApp.py:6256
  490. msgid "[WARNING_NOTCL] Open Project cancelled."
  491. msgstr "[WARNING_NOTCL] Открытие проекта отменено."
  492. #: FlatCAMApp.py:6275 FlatCAMApp.py:6278
  493. msgid "Open Configuration File"
  494. msgstr "Открыть файл конфигурации"
  495. #: FlatCAMApp.py:6282
  496. msgid "[WARNING_NOTCL] Open Config cancelled."
  497. msgstr "[WARNING_NOTCL] Открытие конфигурации отменено."
  498. #: FlatCAMApp.py:6297 FlatCAMApp.py:6548 FlatCAMApp.py:8701 FlatCAMApp.py:8721
  499. #: FlatCAMApp.py:8742 FlatCAMApp.py:8764
  500. msgid "[WARNING_NOTCL] No object selected."
  501. msgstr "[WARNING_NOTCL] Нет выбранных объектов."
  502. #: FlatCAMApp.py:6298 FlatCAMApp.py:6549
  503. msgid "Please Select a Geometry object to export"
  504. msgstr "Выберите объект Geometry для экспорта"
  505. #: FlatCAMApp.py:6309
  506. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  507. msgstr ""
  508. "[ERROR_NOTCL] Можно использовать только объекты Geometry, Gerber и CNCJob."
  509. #: FlatCAMApp.py:6322 FlatCAMApp.py:6326
  510. msgid "Export SVG"
  511. msgstr "Экспорт SVG"
  512. #: FlatCAMApp.py:6331
  513. msgid "[WARNING_NOTCL] Export SVG cancelled."
  514. msgstr "[WARNING_NOTCL] Экспорт SVG отменён."
  515. #: FlatCAMApp.py:6350
  516. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  517. msgstr ""
  518. "[WARNING_NOTCL] Данные должны быть 3D массивом с последним размером 3 или 4"
  519. #: FlatCAMApp.py:6356 FlatCAMApp.py:6360
  520. msgid "Export PNG Image"
  521. msgstr "Экспорт PNG изображения"
  522. #: FlatCAMApp.py:6365
  523. msgid "Export PNG cancelled."
  524. msgstr "Экспорт PNG отменён."
  525. #: FlatCAMApp.py:6384
  526. msgid ""
  527. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  528. msgstr ""
  529. "[WARNING_NOTCL] Нет выбранных объектов. Пожалуйста, выберите Gerber объект "
  530. "для экспорта."
  531. #: FlatCAMApp.py:6389 FlatCAMApp.py:6512
  532. msgid ""
  533. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  534. msgstr ""
  535. "[ERROR_NOTCL] Ошибка. Только объекты Gerber могут быть сохранены как файлы "
  536. "Gerber..."
  537. #: FlatCAMApp.py:6401
  538. msgid "Save Gerber source file"
  539. msgstr "Сохранить исходный файл Gerber"
  540. #: FlatCAMApp.py:6406
  541. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  542. msgstr "[WARNING_NOTCL] Сохранение исходного кода файла Gerber отменено."
  543. #: FlatCAMApp.py:6425
  544. msgid ""
  545. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  546. "export."
  547. msgstr ""
  548. "[WARNING_NOTCL] Объект не выбран. Пожалуйста, выберите Excellon объект для "
  549. "экспорта."
  550. #: FlatCAMApp.py:6430 FlatCAMApp.py:6471
  551. msgid ""
  552. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  553. msgstr ""
  554. "[ERROR_NOTCL] Ошибка. Только объекты Excellon могут быть сохранены как файлы "
  555. "Excellon..."
  556. #: FlatCAMApp.py:6438 FlatCAMApp.py:6442
  557. msgid "Save Excellon source file"
  558. msgstr "Сохранить исходный файл Excellon"
  559. #: FlatCAMApp.py:6447
  560. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  561. msgstr "[WARNING_NOTCL] Сохранение исходного кода файла Excellon отменено."
  562. #: FlatCAMApp.py:6466
  563. msgid ""
  564. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  565. "export."
  566. msgstr ""
  567. "[WARNING_NOTCL] Объект не выбран. Пожалуйста, выберите отличный объект для "
  568. "экспорта."
  569. #: FlatCAMApp.py:6479 FlatCAMApp.py:6483
  570. msgid "Export Excellon"
  571. msgstr "Экспорт Excellon"
  572. #: FlatCAMApp.py:6488
  573. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  574. msgstr "[WARNING_NOTCL] Экспорт Excellon отменен."
  575. #: FlatCAMApp.py:6507
  576. msgid ""
  577. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  578. msgstr ""
  579. "[WARNING_NOTCL] Нет выбранных объектов. Пожалуйста, выберите Gerber объект "
  580. "для экспорта."
  581. #: FlatCAMApp.py:6520 FlatCAMApp.py:6524
  582. msgid "Export Gerber"
  583. msgstr "Экспорт Gerber"
  584. #: FlatCAMApp.py:6529
  585. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  586. msgstr "[WARNING_NOTCL] Экспорт Gerber отменен."
  587. #: FlatCAMApp.py:6559
  588. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  589. msgstr "[ERROR_NOTCL] Можно использовать только объекты Geometry."
  590. #: FlatCAMApp.py:6573 FlatCAMApp.py:6577
  591. msgid "Export DXF"
  592. msgstr "Экспорт DXF"
  593. #: FlatCAMApp.py:6583
  594. msgid "[WARNING_NOTCL] Export DXF cancelled."
  595. msgstr "[WARNING_NOTCL] Экспорт DXF отменен."
  596. #: FlatCAMApp.py:6603 FlatCAMApp.py:6606
  597. msgid "Import SVG"
  598. msgstr "Импорт SVG"
  599. #: FlatCAMApp.py:6615
  600. msgid "[WARNING_NOTCL] Open SVG cancelled."
  601. msgstr "[WARNING_NOTCL] Открытие SVG отменено."
  602. #: FlatCAMApp.py:6634 FlatCAMApp.py:6638
  603. msgid "Import DXF"
  604. msgstr "Импорт DXF"
  605. #: FlatCAMApp.py:6647
  606. msgid "[WARNING_NOTCL] Open DXF cancelled."
  607. msgstr "[WARNING_NOTCL] Открытие DXF отменено."
  608. #: FlatCAMApp.py:6665
  609. #, python-format
  610. msgid "%s"
  611. msgstr "%s"
  612. #: FlatCAMApp.py:6685
  613. msgid ""
  614. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  615. msgstr ""
  616. "[WARNING_NOTCL] Выберите файл Gerber или Excellon для просмотра исходного "
  617. "кода."
  618. #: FlatCAMApp.py:6692
  619. msgid ""
  620. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  621. "file code."
  622. msgstr ""
  623. "[WARNING_NOTCL] Нет выбранного объекта, для просмотра исходного кода файла."
  624. #: FlatCAMApp.py:6700
  625. msgid "Source Editor"
  626. msgstr "Редактор исходного кода"
  627. #: FlatCAMApp.py:6710
  628. #, python-format
  629. msgid "[ERROR]App.on_view_source() -->%s"
  630. msgstr "[ERROR]App.on_view_source() -->%s"
  631. #: FlatCAMApp.py:6722 FlatCAMApp.py:7864 FlatCAMObj.py:5662
  632. #: flatcamTools/ToolSolderPaste.py:1284
  633. msgid "Code Editor"
  634. msgstr "Редактор кода"
  635. #: FlatCAMApp.py:6734
  636. msgid "Script Editor"
  637. msgstr "Редактор сценариев"
  638. #: FlatCAMApp.py:6737
  639. msgid ""
  640. "#\n"
  641. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  642. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  643. "html\n"
  644. "#\n"
  645. "\n"
  646. "# FlatCAM commands list:\n"
  647. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  648. "AlignDrillGrid, ClearShell, Cncjob,\n"
  649. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  650. "GeoUnion, GetNames, GetSys,\n"
  651. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  652. "ListSys, MillHoles, Mirror, New,\n"
  653. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  654. "Options, Paint, Panelize,\n"
  655. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  656. "SubtractRectangle, Version,\n"
  657. "# WriteGCode\n"
  658. "#\n"
  659. "\n"
  660. msgstr ""
  661. "#\n"
  662. "# СОЗДАЙТЕ НОВЫЙ СЦЕНАРИЙ FLATCAM TCL \n"
  663. "# Учебное пособие по TCL здесь: : https://www.tcl.tk/man/tcl8.5/tutorial/"
  664. "tcltutorial.html\n"
  665. "#\n"
  666. "\n"
  667. "# Список команд FlatCAM: \n"
  668. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  669. "AlignDrillGrid, ClearShell, Cncjob,\n"
  670. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  671. "GeoUnion, GetNames, GetSys,\n"
  672. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  673. "ListSys, MillHoles, Mirror, New,\n"
  674. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  675. "Options, Paint, Panelize,\n"
  676. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  677. "SubtractRectangle, Version,\n"
  678. "# WriteGCode\n"
  679. "#\n"
  680. "\n"
  681. #: FlatCAMApp.py:6760 FlatCAMApp.py:6763
  682. msgid "Open TCL script"
  683. msgstr "Открыть сценарий TCL"
  684. #: FlatCAMApp.py:6771
  685. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  686. msgstr "[WARNING_NOTCL] Открытие сценария отменено."
  687. #: FlatCAMApp.py:6783
  688. #, python-format
  689. msgid "[ERROR]App.on_fileopenscript() -->%s"
  690. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  691. #: FlatCAMApp.py:6809 FlatCAMApp.py:6812
  692. msgid "Run TCL script"
  693. msgstr "Запустить сценарий TCL"
  694. #: FlatCAMApp.py:6820
  695. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  696. msgstr "[WARNING_NOTCL] Запуск сценария отменен."
  697. #: FlatCAMApp.py:6870 FlatCAMApp.py:6874
  698. msgid "Save Project As ..."
  699. msgstr "Сохранить проект как..."
  700. #: FlatCAMApp.py:6871
  701. #, python-brace-format
  702. msgid "{l_save}/Project_{date}"
  703. msgstr "{l_save}/Project_{date}"
  704. #: FlatCAMApp.py:6879
  705. msgid "[WARNING_NOTCL] Save Project cancelled."
  706. msgstr "[WARNING_NOTCL] Сохранение проекта отменено."
  707. #: FlatCAMApp.py:6923
  708. msgid "Exporting SVG"
  709. msgstr "Экспортирование SVG"
  710. #: FlatCAMApp.py:6957 FlatCAMApp.py:7063 FlatCAMApp.py:7178
  711. #, python-format
  712. msgid "[success] SVG file exported to %s"
  713. msgstr "[success] Файл SVG экспортируется в %s"
  714. #: FlatCAMApp.py:6988 FlatCAMApp.py:7109
  715. #, python-format
  716. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  717. msgstr "[WARNING_NOTCL] Нет объекта Box. Используйте взамен %s"
  718. #: FlatCAMApp.py:7066 FlatCAMApp.py:7181
  719. msgid "Generating Film ... Please wait."
  720. msgstr "Создание фильма ... Пожалуйста, подождите."
  721. #: FlatCAMApp.py:7329
  722. #, python-format
  723. msgid "[success] Excellon file exported to %s"
  724. msgstr "[success] Файл Excellon экспортируется в %s"
  725. #: FlatCAMApp.py:7336
  726. msgid "Exporting Excellon"
  727. msgstr "Экспорт Excellon"
  728. #: FlatCAMApp.py:7341 FlatCAMApp.py:7348
  729. msgid "[ERROR_NOTCL] Could not export Excellon file."
  730. msgstr "[ERROR_NOTCL] Не удалось экспортировать файл Excellon."
  731. #: FlatCAMApp.py:7446
  732. #, python-format
  733. msgid "[success] Gerber file exported to %s"
  734. msgstr "[success] Файл Gerber экспортируется в %s"
  735. #: FlatCAMApp.py:7453
  736. msgid "Exporting Gerber"
  737. msgstr "Экспортирование Gerber"
  738. #: FlatCAMApp.py:7458 FlatCAMApp.py:7465
  739. msgid "[ERROR_NOTCL] Could not export Gerber file."
  740. msgstr "[ERROR_NOTCL] Не удалось экспортировать файл Gerber."
  741. #: FlatCAMApp.py:7505
  742. #, python-format
  743. msgid "[success] DXF file exported to %s"
  744. msgstr "[success] Файл DXF экспортируется в %s"
  745. #: FlatCAMApp.py:7511
  746. msgid "Exporting DXF"
  747. msgstr "Экспорт DXF"
  748. #: FlatCAMApp.py:7516 FlatCAMApp.py:7523
  749. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  750. msgstr "[WARNING_NOTCL] Не удалось экспортировать файл DXF."
  751. #: FlatCAMApp.py:7543 FlatCAMApp.py:7585 FlatCAMApp.py:7629
  752. msgid ""
  753. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  754. "Gerber are supported"
  755. msgstr ""
  756. "[ERROR_NOTCL] В качестве параметра выбран не поддерживаемый тип. "
  757. "Поддерживаются только Geometry и Gerber"
  758. #: FlatCAMApp.py:7553
  759. msgid "Importing SVG"
  760. msgstr "Импортирование SVG"
  761. #: FlatCAMApp.py:7564 FlatCAMApp.py:7606 FlatCAMApp.py:7649 FlatCAMApp.py:7726
  762. #: FlatCAMApp.py:7787 FlatCAMApp.py:7850 flatcamTools/ToolPDF.py:212
  763. #, python-format
  764. msgid "[success] Opened: %s"
  765. msgstr "[success] Открыт: %s"
  766. #: FlatCAMApp.py:7595
  767. msgid "Importing DXF"
  768. msgstr "Импорт DXF"
  769. #: FlatCAMApp.py:7637
  770. msgid "Importing Image"
  771. msgstr "Импорт изображения"
  772. #: FlatCAMApp.py:7678 FlatCAMApp.py:7680
  773. #, python-format
  774. msgid "[ERROR_NOTCL] Failed to open file: %s"
  775. msgstr "[ERROR_NOTCL] Не удалось открыть файл: %s"
  776. #: FlatCAMApp.py:7683
  777. #, python-brace-format
  778. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  779. msgstr "[ERROR_NOTCL] Не удалось проанализировать файл: {name}. {error}"
  780. #: FlatCAMApp.py:7690 flatcamEditors/FlatCAMGrbEditor.py:3832
  781. msgid "[ERROR] An internal error has occurred. See shell.\n"
  782. msgstr "[ERROR] Произошла внутренняя ошибка. Смотрите коммандную строку.\n"
  783. #: FlatCAMApp.py:7699
  784. msgid ""
  785. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  786. msgstr ""
  787. "[ERROR_NOTCL] Объект не является файлом Gerber или пустым. Прерывание "
  788. "создания объекта."
  789. #: FlatCAMApp.py:7707
  790. msgid "Opening Gerber"
  791. msgstr "Открытие Gerber"
  792. #: FlatCAMApp.py:7717
  793. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  794. msgstr "[ERROR_NOTCL] Открыть Gerber не удалось. Вероятно это не Gerber файл."
  795. #: FlatCAMApp.py:7750 flatcamTools/ToolPcbWizard.py:418
  796. msgid "[ERROR_NOTCL] This is not Excellon file."
  797. msgstr "[ERROR_NOTCL] Это не Excellon файл."
  798. #: FlatCAMApp.py:7753
  799. #, python-format
  800. msgid "[ERROR_NOTCL] Cannot open file: %s"
  801. msgstr "[ERROR_NOTCL] Не удается открыть файл: %s"
  802. #: FlatCAMApp.py:7758 flatcamTools/ToolPcbWizard.py:427
  803. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  804. msgstr ""
  805. "[ERROR_NOTCL] Произошла внутренняя ошибка. Смотрите коммандную строку.\n"
  806. #: FlatCAMApp.py:7771 flatcamTools/ToolPDF.py:262
  807. #: flatcamTools/ToolPcbWizard.py:440
  808. #, python-format
  809. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  810. msgstr "[ERROR_NOTCL] Геометрия не найдена в файле: %s"
  811. #: FlatCAMApp.py:7774
  812. msgid "Opening Excellon."
  813. msgstr "Открытие Excellon."
  814. #: FlatCAMApp.py:7780
  815. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  816. msgstr ""
  817. "[ERROR_NOTCL] Не удалось открыть файл Excellon. Вероятно это не файл "
  818. "Excellon."
  819. #: FlatCAMApp.py:7817
  820. #, python-format
  821. msgid "[ERROR_NOTCL] Failed to open %s"
  822. msgstr "[ERROR_NOTCL] Не удалось открыть %s"
  823. #: FlatCAMApp.py:7827
  824. msgid "[ERROR_NOTCL] This is not GCODE"
  825. msgstr "[ERROR_NOTCL] Это не GCODE"
  826. #: FlatCAMApp.py:7833
  827. msgid "Opening G-Code."
  828. msgstr "Открытие G-Code."
  829. #: FlatCAMApp.py:7841
  830. msgid ""
  831. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  832. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  833. "processing"
  834. msgstr ""
  835. "[ERROR_NOTCL] Не удалось создать объект CNCJob. Вероятно это не файл GCode.\n"
  836. " Попытка создать объект Flatcam CNCJob из файла G-кода не удалась во время "
  837. "обработки"
  838. #: FlatCAMApp.py:7881
  839. #, python-format
  840. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  841. msgstr "[ERROR_NOTCL] Не удалось открыть файл конфигурации: %s"
  842. #: FlatCAMApp.py:7907 FlatCAMApp.py:7924
  843. #, python-format
  844. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  845. msgstr "[ERROR_NOTCL] Не удалось открыть файл проекта: %s"
  846. #: FlatCAMApp.py:7947
  847. #, python-format
  848. msgid "[success] Project loaded from: %s"
  849. msgstr "[success] Проект загружен из: %s"
  850. #: FlatCAMApp.py:8052
  851. msgid "Available commands:\n"
  852. msgstr "Доступные команды:\n"
  853. #: FlatCAMApp.py:8054
  854. msgid ""
  855. "\n"
  856. "\n"
  857. "Type help <command_name> for usage.\n"
  858. " Example: help open_gerber"
  859. msgstr ""
  860. "\n"
  861. "\n"
  862. "Для дополнительной информации ведите help <имя_команды> .\n"
  863. "Пример: help open_gerber"
  864. #: FlatCAMApp.py:8204
  865. msgid "Shows list of commands."
  866. msgstr "Показывает список команд."
  867. #: FlatCAMApp.py:8261
  868. msgid "[ERROR_NOTCL] Failed to load recent item list."
  869. msgstr "[ERROR_NOTCL] Не удалось загрузить список недавних файлов."
  870. #: FlatCAMApp.py:8268
  871. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  872. msgstr "[ERROR_NOTCL] Не удалось прочитать список недавних файлов."
  873. #: FlatCAMApp.py:8312
  874. msgid "Clear Recent files"
  875. msgstr "Очистить список"
  876. #: FlatCAMApp.py:8329 flatcamGUI/FlatCAMGUI.py:967
  877. msgid "<b>Shortcut Key List</b>"
  878. msgstr "<b>Список сочетаний клавиш</b>"
  879. #: FlatCAMApp.py:8336
  880. msgid ""
  881. "\n"
  882. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  883. "Project Tab</strong></span></p>\n"
  884. "\n"
  885. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  886. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  887. "\n"
  888. "<ol>\n"
  889. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  890. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  891. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  892. "<br />\n"
  893. "\t<br />\n"
  894. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  895. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  896. "through the menu/toolbar links offered within the app.</span><br />\n"
  897. "\t&nbsp;</li>\n"
  898. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  899. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  900. "strong>(more simpler is to double click the object name in the Project Tab), "
  901. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  902. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  903. ">\n"
  904. "\t<br />\n"
  905. "\tIf the selection of the object is done on the canvas by single click "
  906. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  907. "properties will be displayed into the Selected Tab. Alternatively, double "
  908. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  909. "strong> and populate it even if it was out of focus.<br />\n"
  910. "\t<br />\n"
  911. "\tYou can change the parameters in this screen and the flow direction is "
  912. "like this:<br />\n"
  913. "\t<br />\n"
  914. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  915. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  916. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  917. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  918. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  919. "span></li>\n"
  920. "</ol>\n"
  921. "\n"
  922. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  923. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  924. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  925. "\n"
  926. " "
  927. msgstr ""
  928. "\n"
  929. "<p><span style=\"font-size:14px\"><strong>Вкладка \"Выбранное\" - выбранный "
  930. "элемент на вкладке \"Проект\"</strong></span></p>\n"
  931. "\n"
  932. "<p><span style=\"font-size:10px\"><strong>Детали</strong>:<br />\n"
  933. "Нормальный порядок при работе в FlatCAM заключается в следующем:</span></p>\n"
  934. "\n"
  935. "<ol>\n"
  936. "\t<li><span style=\"font-size:10px\">Загрузите/импортируйте файл Gerber, "
  937. "Excellon, Gcode, DXF, растровое изображение или SVG в FlatCAM, используя "
  938. "меню, панели инструментов, сочетания клавиш или просто перетаскивая файлы в "
  939. "окно программы.<br />\n"
  940. "\t<br />\n"
  941. "\tВы также можете загрузить <strong>FlatCAM проект</strong> дважды щелкнув "
  942. "файл проекта, перетащив его в окно программы или через ссылки меню/панелей "
  943. "инструментов, предлагаемых в приложении.</span><br />\n"
  944. "\t&nbsp;</li>\n"
  945. "\t<li><span style=\"font-size:10px\">После того, как объект стал доступен на "
  946. "вкладке \"Проект\", выберите его, а затем сосредоточьте внимание на "
  947. "<strong>вкладке \"Выбранное\" </strong>(еще проще-дважды щелкнуть мышью на "
  948. "имени объекта на вкладке \"Проект\" ), <strong>во вкладке \"Выбранное\" </"
  949. "strong>будут обновлены свойства объекта в соответствии с его видом: Gerber, "
  950. "Excellon, Geometry или объект CNCJob.<br />\n"
  951. "\t<br />\n"
  952. "\tЕсли выбор объекта выполняется на холсте одним щелчком мыши, а "
  953. "<strong>вкладка \"Выбранное\"</strong>находится в фокусе, свойства объекта "
  954. "снова будут отображаться на вкладке \"Выбранное\". Кроме того, двойной "
  955. "щелчок по объекту на холсте откроет <strong>вкладку \"Выбранное\"</strong> и "
  956. "заполнит ее, даже если она была не в фокусе.<br />\n"
  957. "\t<br />\n"
  958. "\tВы можете изменить параметры на этом экране, и порядок будет таким:<br />\n"
  959. "\t<br />\n"
  960. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  961. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  962. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  963. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  964. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  965. "span></li>\n"
  966. "</ol>\n"
  967. "\n"
  968. "<p><span style=\"font-size:10px\">Список сочетаний клавиш доступен через "
  969. "пункт меню <strong>Помощь -&gt; Список быстрых клавиш</strong>&nbsp;или "
  970. "через клавишу: <strng>F3</strong>.</span></p>\n"
  971. "\n"
  972. " "
  973. #: FlatCAMApp.py:8443
  974. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  975. msgstr ""
  976. "[WARNING_NOTCL] Не удалось проверить обновление программы. Отсутствует "
  977. "интернет подключение ."
  978. #: FlatCAMApp.py:8450
  979. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  980. msgstr "[ERROR_NOTCL] Не удается обработать информацию о последней версии."
  981. #: FlatCAMApp.py:8460
  982. msgid "[success] FlatCAM is up to date!"
  983. msgstr "[success] FlatCAM в актуальном состоянии!"
  984. #: FlatCAMApp.py:8465
  985. msgid "Newer Version Available"
  986. msgstr "Доступна новая версия"
  987. #: FlatCAMApp.py:8466
  988. msgid ""
  989. "There is a newer version of FlatCAM available for download:\n"
  990. "\n"
  991. msgstr ""
  992. "Новая версия FlatCAM доступна для загрузки:\n"
  993. "\n"
  994. #: FlatCAMApp.py:8468
  995. msgid "info"
  996. msgstr "инфо"
  997. #: FlatCAMApp.py:8487
  998. msgid "[success] All plots disabled."
  999. msgstr "[success] Все участки отключены."
  1000. #: FlatCAMApp.py:8493
  1001. msgid "[success] All non selected plots disabled."
  1002. msgstr "[success] Все невыбранные участки отключены."
  1003. #: FlatCAMApp.py:8499
  1004. msgid "[success] All plots enabled."
  1005. msgstr "[success] Все участки включены."
  1006. #: FlatCAMApp.py:8505
  1007. msgid "[success] Selected plots enabled..."
  1008. msgstr "[success] Выбранные участки включены..."
  1009. #: FlatCAMApp.py:8513
  1010. msgid "[success] Selected plots disabled..."
  1011. msgstr "[success] Выбранные участки отключены..."
  1012. #: FlatCAMApp.py:8523 FlatCAMApp.py:8536
  1013. msgid "Working ..."
  1014. msgstr "Обработка…"
  1015. #: FlatCAMApp.py:8570
  1016. msgid "Saving FlatCAM Project"
  1017. msgstr "Сохранение проекта FlatCAM"
  1018. #: FlatCAMApp.py:8591 FlatCAMApp.py:8622
  1019. #, python-format
  1020. msgid "[success] Project saved to: %s"
  1021. msgstr "[success] Проект сохранён в: %s"
  1022. #: FlatCAMApp.py:8609
  1023. #, python-format
  1024. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1025. msgstr ""
  1026. "[ERROR_NOTCL] Не удалось проверить файл проекта: %s. Повторите попытку."
  1027. #: FlatCAMApp.py:8616
  1028. #, python-format
  1029. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1030. msgstr ""
  1031. "[ERROR_NOTCL] Не удалось проанализировать сохраняемый файл проекта: %s. "
  1032. "Повторите попытку сохранения."
  1033. #: FlatCAMApp.py:8624
  1034. #, python-format
  1035. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1036. msgstr ""
  1037. "[ERROR_NOTCL] Не удалось сохранить файл проекта: %s. Повторите попытку."
  1038. #: FlatCAMObj.py:208
  1039. #, python-brace-format
  1040. msgid "[success] Name changed from {old} to {new}"
  1041. msgstr "[success] Имя изменено с {old} на {new}"
  1042. #: FlatCAMObj.py:554 FlatCAMObj.py:2084 FlatCAMObj.py:3355 FlatCAMObj.py:5559
  1043. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1044. msgstr "<span style=\"color:green;\"><b>Базовый</b></span>"
  1045. #: FlatCAMObj.py:566 FlatCAMObj.py:2100 FlatCAMObj.py:3377 FlatCAMObj.py:5565
  1046. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1047. msgstr "<span style=\"color:red;\"><b>Расширенный</b></span>"
  1048. #: FlatCAMObj.py:949 FlatCAMObj.py:3050 FlatCAMObj.py:3312 FlatCAMObj.py:3621
  1049. msgid "Rough"
  1050. msgstr "Грубый"
  1051. #: FlatCAMObj.py:967 FlatCAMObj.py:1023
  1052. #, python-format
  1053. msgid "[success] Isolation geometry created: %s"
  1054. msgstr "[success] Создана геометрия изоляции: %s"
  1055. #: FlatCAMObj.py:1202
  1056. msgid "Plotting Apertures"
  1057. msgstr "Создание отверстия"
  1058. #: FlatCAMObj.py:1925 flatcamEditors/FlatCAMExcEditor.py:1369
  1059. msgid "Total Drills"
  1060. msgstr "Всего отверстий"
  1061. #: FlatCAMObj.py:1951 flatcamEditors/FlatCAMExcEditor.py:1401
  1062. msgid "Total Slots"
  1063. msgstr "Всего пазов"
  1064. #: FlatCAMObj.py:2158 FlatCAMObj.py:3429 FlatCAMObj.py:3760 FlatCAMObj.py:3951
  1065. #: FlatCAMObj.py:3964 FlatCAMObj.py:4084 FlatCAMObj.py:4500 FlatCAMObj.py:4736
  1066. #: FlatCAMObj.py:5140 flatcamEditors/FlatCAMExcEditor.py:1475
  1067. #: flatcamTools/ToolCalculators.py:304 flatcamTools/ToolCalculators.py:315
  1068. #: flatcamTools/ToolCalculators.py:327 flatcamTools/ToolCalculators.py:342
  1069. #: flatcamTools/ToolCalculators.py:355 flatcamTools/ToolCalculators.py:369
  1070. #: flatcamTools/ToolCalculators.py:380 flatcamTools/ToolCalculators.py:391
  1071. #: flatcamTools/ToolCalculators.py:402 flatcamTools/ToolFilm.py:241
  1072. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:481
  1073. #: flatcamTools/ToolNonCopperClear.py:553
  1074. #: flatcamTools/ToolNonCopperClear.py:630
  1075. #: flatcamTools/ToolNonCopperClear.py:647 flatcamTools/ToolPaint.py:537
  1076. #: flatcamTools/ToolPaint.py:609 flatcamTools/ToolPaint.py:746
  1077. #: flatcamTools/ToolPaint.py:846 flatcamTools/ToolPaint.py:1000
  1078. #: flatcamTools/ToolPanelize.py:387 flatcamTools/ToolPanelize.py:399
  1079. #: flatcamTools/ToolPanelize.py:412 flatcamTools/ToolPanelize.py:425
  1080. #: flatcamTools/ToolPanelize.py:437 flatcamTools/ToolPanelize.py:448
  1081. #: flatcamTools/ToolSolderPaste.py:758 flatcamTools/ToolSolderPaste.py:830
  1082. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1083. msgstr "[ERROR_NOTCL] Неправильно введен формат значения, используйте числа."
  1084. #: FlatCAMObj.py:2382 FlatCAMObj.py:2474 FlatCAMObj.py:2597
  1085. msgid ""
  1086. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1087. msgstr ""
  1088. "[ERROR_NOTCL] Пожалуйста, выберите один или несколько инструментов из списка "
  1089. "и попробуйте еще раз."
  1090. #: FlatCAMObj.py:2389
  1091. msgid ""
  1092. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1093. msgstr "[ERROR_NOTCL] Сверло больше, чем размер отверстия. Отмена."
  1094. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1095. msgid "Tool_nr"
  1096. msgstr "№ инструмента"
  1097. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1098. #: flatcamEditors/FlatCAMExcEditor.py:820
  1099. #: flatcamEditors/FlatCAMExcEditor.py:2021 flatcamGUI/ObjectUI.py:553
  1100. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  1101. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1102. msgid "Diameter"
  1103. msgstr "Диаметр"
  1104. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1105. msgid "Drills_Nr"
  1106. msgstr "№ отверстия"
  1107. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1108. msgid "Slots_Nr"
  1109. msgstr "№ паза"
  1110. #: FlatCAMObj.py:2484
  1111. msgid ""
  1112. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1113. msgstr ""
  1114. "[ERROR_NOTCL] Инструмент для прорезания пазов больше, чем размер отверстия. "
  1115. "Отмена."
  1116. #: FlatCAMObj.py:2659 FlatCAMObj.py:4389 FlatCAMObj.py:4604 FlatCAMObj.py:4915
  1117. msgid ""
  1118. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1119. "options[\"z_pdepth\"]"
  1120. msgstr ""
  1121. "[ERROR_NOTCL] Неправильный формат значения для self.defaults[\"z_pdepth\"] "
  1122. "или self.options[\"z_pdepth\"]"
  1123. #: FlatCAMObj.py:2671 FlatCAMObj.py:4401 FlatCAMObj.py:4616 FlatCAMObj.py:4927
  1124. msgid ""
  1125. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1126. "self.options[\"feedrate_probe\"]"
  1127. msgstr ""
  1128. "[ERROR_NOTCL] Неправильный формат значения для self.defaults[\"feedrate_probe"
  1129. "\"] или self.options[\"feedrate_probe\"]"
  1130. #: FlatCAMObj.py:2703 FlatCAMObj.py:4803 FlatCAMObj.py:4808 FlatCAMObj.py:4958
  1131. msgid "Generating CNC Code"
  1132. msgstr "Генерация кода ЧПУ"
  1133. #: FlatCAMObj.py:2729 FlatCAMObj.py:5100 camlib.py:5168 camlib.py:5627
  1134. #: camlib.py:5890
  1135. msgid ""
  1136. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1137. "format (x, y) \n"
  1138. "but now there is only one value, not two. "
  1139. msgstr ""
  1140. "[ERROR] Поле X, Y смены инструмента в Правка - > Параметры должно быть в "
  1141. "формате (x, y)\n"
  1142. "но теперь есть только одно значение, а не два. "
  1143. #: FlatCAMObj.py:3050 FlatCAMObj.py:4006 FlatCAMObj.py:4007 FlatCAMObj.py:4016
  1144. msgid "Iso"
  1145. msgstr "Iso"
  1146. #: FlatCAMObj.py:3050
  1147. msgid "Finish"
  1148. msgstr "Конец"
  1149. #: FlatCAMObj.py:3348 flatcamGUI/FlatCAMGUI.py:522 flatcamGUI/FlatCAMGUI.py:721
  1150. #: flatcamGUI/FlatCAMGUI.py:1626 flatcamGUI/FlatCAMGUI.py:1961
  1151. #: flatcamGUI/ObjectUI.py:997
  1152. msgid "Copy"
  1153. msgstr "Копировать"
  1154. #: FlatCAMObj.py:3591
  1155. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1156. msgstr ""
  1157. "[ERROR_NOTCL] Пожалуйста, введите нужный диаметр инструмента в формате числа "
  1158. "с плавающей точкой."
  1159. #: FlatCAMObj.py:3666
  1160. msgid "[success] Tool added in Tool Table."
  1161. msgstr "[success] Инструмент добавлен в таблицу инструментов."
  1162. #: FlatCAMObj.py:3671
  1163. #, fuzzy
  1164. #| msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1165. msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
  1166. msgstr ""
  1167. "[ERROR_NOTCL] Добавлен инструмент по умолчанию. Введен неправильный формат "
  1168. "значения."
  1169. #: FlatCAMObj.py:3705 FlatCAMObj.py:3715
  1170. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1171. msgstr "[WARNING_NOTCL] Ошибка. Выберите инструмент для копирования."
  1172. #: FlatCAMObj.py:3744
  1173. msgid "[success] Tool was copied in Tool Table."
  1174. msgstr "[success] Инструмент скопирован в таблицу инструментов."
  1175. #: FlatCAMObj.py:3777
  1176. msgid "[success] Tool was edited in Tool Table."
  1177. msgstr "[success] Инструмент был изменён в таблице инструментов."
  1178. #: FlatCAMObj.py:3806 FlatCAMObj.py:3814
  1179. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1180. msgstr "[WARNING_NOTCL] Ошибка. Выберите инструмент для удаления."
  1181. #: FlatCAMObj.py:3836
  1182. msgid "[success] Tool was deleted in Tool Table."
  1183. msgstr "[success] Инструмент был удален из таблицы инструментов."
  1184. #: FlatCAMObj.py:4270
  1185. #, python-format
  1186. msgid ""
  1187. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1188. msgstr ""
  1189. "[WARNING_NOTCL] Эта Geometry не может быть обработана, так как это %s "
  1190. "геометрия."
  1191. #: FlatCAMObj.py:4287
  1192. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1193. msgstr ""
  1194. "[ERROR_NOTCL] Неверный формат ввода диаметра инструмента, используйте цифры."
  1195. #: FlatCAMObj.py:4314
  1196. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1197. msgstr "[ERROR_NOTCL] Ошибка. Инструмент не выбран в таблице инструментов ..."
  1198. #: FlatCAMObj.py:4351 flatcamEditors/FlatCAMExcEditor.py:2078
  1199. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  1200. msgstr "[ERROR] Произошла внутренняя ошибка. Посмотрите в командную строку.\n"
  1201. #: FlatCAMObj.py:4352
  1202. #, python-format
  1203. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1204. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1205. #: FlatCAMObj.py:4509 FlatCAMObj.py:4743
  1206. msgid ""
  1207. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1208. "Add a Tool Offset or change the Offset Type."
  1209. msgstr ""
  1210. "[WARNING] Смещение выбранного в таблице инструментов инструмента не "
  1211. "указано.\n"
  1212. "Добавьте смещение инструмента или измените тип смещения."
  1213. #: FlatCAMObj.py:4628 flatcamTools/ToolSolderPaste.py:1112
  1214. #: flatcamTools/ToolSolderPaste.py:1168
  1215. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1216. msgstr "[ERROR_NOTCL] Отмена. Пустой файл, он не имеет геометрии..."
  1217. #: FlatCAMObj.py:4991 FlatCAMObj.py:5000 camlib.py:3349 camlib.py:3358
  1218. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1219. msgstr ""
  1220. "[ERROR_NOTCL] Коэффициент масштабирования должен быть числом: целочисленным "
  1221. "или с плавающей запятой."
  1222. #: FlatCAMObj.py:5037
  1223. msgid "[success] Geometry Scale done."
  1224. msgstr "[success] Масштабирование Geometry выполнено."
  1225. #: FlatCAMObj.py:5054 camlib.py:3427
  1226. msgid ""
  1227. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1228. "one value in the Offset field."
  1229. msgstr ""
  1230. "[ERROR_NOTCL] Необходима пара значений (x,y). Возможно, вы ввели только одно."
  1231. #: FlatCAMObj.py:5073
  1232. msgid "[success] Geometry Offset done."
  1233. msgstr "[success] Смещение Geometry выполнено."
  1234. #: FlatCAMObj.py:5627 FlatCAMObj.py:5632 flatcamTools/ToolSolderPaste.py:1368
  1235. msgid "Export Machine Code ..."
  1236. msgstr "Экспорт GCode ..."
  1237. #: FlatCAMObj.py:5638 flatcamTools/ToolSolderPaste.py:1371
  1238. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1239. msgstr "[WARNING_NOTCL] Экспорт GCode отменен ..."
  1240. #: FlatCAMObj.py:5651
  1241. #, python-format
  1242. msgid "[success] Machine Code file saved to: %s"
  1243. msgstr "[success] Файл GCode сохранён в: %s"
  1244. #: FlatCAMObj.py:5673
  1245. #, python-format
  1246. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1247. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1248. #: FlatCAMObj.py:5790
  1249. #, python-format
  1250. msgid ""
  1251. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1252. "CNCJob object."
  1253. msgstr ""
  1254. "[WARNING_NOTCL] CNCJob объект %s не может быть обработан, так как он "
  1255. "является объектом CNCJob."
  1256. #: FlatCAMObj.py:5843
  1257. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1258. msgstr "[ERROR_NOTCL] G-code не имеет кода единиц измерения: G20 или G21"
  1259. #: FlatCAMObj.py:5856
  1260. msgid ""
  1261. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1262. "empty."
  1263. msgstr ""
  1264. "[ERROR_NOTCL] Отмена. Пользовательский код смены инструмента включен, но он "
  1265. "пуст."
  1266. #: FlatCAMObj.py:5863
  1267. msgid "[success] Toolchange G-code was replaced by a custom code."
  1268. msgstr ""
  1269. "[success] G-code смены инструмента был заменен на пользовательский код."
  1270. #: FlatCAMObj.py:5878 flatcamTools/ToolSolderPaste.py:1397
  1271. msgid "[WARNING_NOTCL] No such file or directory"
  1272. msgstr "[WARNING_NOTCL] Нет такого файла или каталога"
  1273. #: FlatCAMObj.py:5898 FlatCAMObj.py:5910
  1274. msgid ""
  1275. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1276. "'toolchange_custom'"
  1277. msgstr ""
  1278. "[WARNING_NOTCL] Используемый файл постпроцессора должен иметь имя: "
  1279. "'toolchange_custom'"
  1280. #: FlatCAMObj.py:5916
  1281. msgid "[ERROR] There is no postprocessor file."
  1282. msgstr "[ERROR] Это не файл постпроцессора."
  1283. #: FlatCAMTranslation.py:91
  1284. msgid "The application will restart."
  1285. msgstr "Приложение будет перезапущено."
  1286. #: FlatCAMTranslation.py:92
  1287. #, python-format
  1288. msgid "Are you sure do you want to change the current language to %s?"
  1289. msgstr "Вы уверены, что хотите изменить текущий язык на %s?"
  1290. #: FlatCAMTranslation.py:94
  1291. msgid "Apply Language ..."
  1292. msgstr "Применить язык ..."
  1293. #: ObjectCollection.py:420
  1294. #, python-brace-format
  1295. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1296. msgstr "Объект переименован из <b>{old}</b> в <b>{new}</b>"
  1297. #: ObjectCollection.py:759
  1298. #, python-format
  1299. msgid "[ERROR] Cause of error: %s"
  1300. msgstr "[ERROR] Причина ошибки: %s"
  1301. #: camlib.py:197
  1302. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1303. msgstr ""
  1304. "[ERROR_NOTCL] self.solid_geometry не является базовой геометрией или списком."
  1305. #: camlib.py:1391
  1306. msgid "[success] Object was mirrored ..."
  1307. msgstr "[success] Объект был отзеркалирован ..."
  1308. #: camlib.py:1393
  1309. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1310. msgstr "[ERROR_NOTCL] Не удалось зеркалировать. Объект не выбран"
  1311. #: camlib.py:1429
  1312. msgid "[success] Object was rotated ..."
  1313. msgstr "[success] Объект был повернут ..."
  1314. #: camlib.py:1431
  1315. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1316. msgstr "[ERROR_NOTCL] Не удалось повернуть. Объект не выбран"
  1317. #: camlib.py:1465
  1318. msgid "[success] Object was skewed ..."
  1319. msgstr "[success] Объект был наклонён ..."
  1320. #: camlib.py:1467
  1321. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1322. msgstr "[ERROR_NOTCL] Не удалось наклонить. Объект не выбран"
  1323. #: camlib.py:2729 camlib.py:2814
  1324. #, python-format
  1325. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1326. msgstr "[WARNING] Координаты отсутствуют, строка игнорируется: %s"
  1327. #: camlib.py:2730 camlib.py:2815
  1328. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1329. msgstr "[WARNING_NOTCL] Файл GERBER может быть поврежден. Проверьте файл !!!"
  1330. #: camlib.py:2779
  1331. #, python-format
  1332. msgid ""
  1333. "[ERROR] Region does not have enough points. File will be processed but there "
  1334. "are parser errors. Line number: %s"
  1335. msgstr ""
  1336. "[ERROR] Региону не хватает точек. Файл будет обработан, но есть ошибки "
  1337. "разбора. Номер строки: %s"
  1338. #: camlib.py:3171
  1339. #, python-format
  1340. msgid ""
  1341. "[ERROR]Gerber Parser ERROR.\n"
  1342. "%s:"
  1343. msgstr ""
  1344. "[ERROR]Ошибка разбора Gerber.\n"
  1345. "%s:"
  1346. #: camlib.py:3395
  1347. msgid "[success] Gerber Scale done."
  1348. msgstr "[success] Масштабирование Gerber выполнено."
  1349. #: camlib.py:3460
  1350. msgid "[success] Gerber Offset done."
  1351. msgstr "[success] Смещение Gerber выполнено."
  1352. #: camlib.py:3514
  1353. msgid "[success] Gerber Mirror done."
  1354. msgstr "[success] Зеркалирование Gerber выполнено."
  1355. #: camlib.py:3560
  1356. msgid "[success] Gerber Skew done."
  1357. msgstr "[success] Наклон Gerber выполнен."
  1358. #: camlib.py:3598
  1359. msgid "[success] Gerber Rotate done."
  1360. msgstr "[success] Вращение Gerber выполнено."
  1361. #: camlib.py:3879
  1362. #, python-format
  1363. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1364. msgstr "[ERROR_NOTCL] Это метка GCODE: %s"
  1365. #: camlib.py:3994
  1366. #, python-format
  1367. msgid ""
  1368. "[WARNING] No tool diameter info's. See shell.\n"
  1369. "A tool change event: T%s was found but the Excellon file have no "
  1370. "informations regarding the tool diameters therefore the application will try "
  1371. "to load it by using some 'fake' diameters.\n"
  1372. "The user needs to edit the resulting Excellon object and change the "
  1373. "diameters to reflect the real diameters."
  1374. msgstr ""
  1375. "[WARNING] Нет информации о диаметре инструмента. Смотрите коммандную строку\n"
  1376. "Событие изменения инструмента: T%s было найдено, но в файле Excellon нет "
  1377. "информации о диаметрах инструмента, поэтому приложение попытается загрузить "
  1378. "его с помощью некоторых \"поддельных\" диаметров.\n"
  1379. "Пользователю необходимо отредактировать полученный объект Excellon и "
  1380. "изменить диаметры, чтобы отразить реальные диаметры."
  1381. #: camlib.py:4459
  1382. #, python-brace-format
  1383. msgid ""
  1384. "[ERROR] Excellon Parser error.\n"
  1385. "Parsing Failed. Line {l_nr}: {line}\n"
  1386. msgstr ""
  1387. "[ERROR] Ошибка разбора Excellon.\n"
  1388. "Ошибка разбора. Строка {l_nr}: {line}\n"
  1389. #: camlib.py:4538
  1390. msgid ""
  1391. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1392. "not having a tool associated.\n"
  1393. "Check the resulting GCode."
  1394. msgstr ""
  1395. "[WARNING] Excellon.create_geometry() ->расположение отверстия было пропущено "
  1396. "из-за отсутствия связанного инструмента.\n"
  1397. "Проверьте полученный GCode."
  1398. #: camlib.py:5077
  1399. #, python-format
  1400. msgid "[ERROR] There is no such parameter: %s"
  1401. msgstr "[ERROR] Такого параметра нет: %s"
  1402. #: camlib.py:5147
  1403. msgid ""
  1404. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1405. "drill into material.\n"
  1406. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1407. "therefore the app will convert the value to negative. Check the resulting "
  1408. "CNC code (Gcode etc)."
  1409. msgstr ""
  1410. "[WARNING] Параметр \"Глубина резания\" имеет положительное значение. "
  1411. "Значение глубины, которую нужно просверлить в материале.\n"
  1412. "Параметр \"Глубина резания\" должен иметь отрицательное значение, "
  1413. "предполагая, что это опечатка, приложение преобразует значение в "
  1414. "отрицательное. Проверьте полученный CNC code (Gcode и т. д.)."
  1415. #: camlib.py:5154 camlib.py:5650 camlib.py:5913
  1416. #, python-format
  1417. msgid ""
  1418. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1419. msgstr ""
  1420. "[WARNING] Параметр \"Глубина резания\" равен нулю. Обрезки не будет , "
  1421. "пропускается файл %s"
  1422. #: camlib.py:5383 camlib.py:5480 camlib.py:5538
  1423. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1424. msgstr "[ERROR_NOTCL] загруженный файл Excellon не имеет отверстий ..."
  1425. #: camlib.py:5485
  1426. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1427. msgstr "[ERROR_NOTCL] Выбран неправильный тип оптимизации."
  1428. #: camlib.py:5638 camlib.py:5901
  1429. msgid ""
  1430. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1431. "combinations of other parameters."
  1432. msgstr ""
  1433. "[ERROR_NOTCL] Параметр \"Глубина резания\" равен None или пуст. Скорее всего "
  1434. "неудачное сочетание других параметров."
  1435. #: camlib.py:5643 camlib.py:5906
  1436. msgid ""
  1437. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1438. "cut into material.\n"
  1439. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1440. "therefore the app will convert the value to negative.Check the resulting CNC "
  1441. "code (Gcode etc)."
  1442. msgstr ""
  1443. "[WARNING] Параметр \"Глубина резания\" имеет положительное значение. "
  1444. "Значение глубины, которую нужно просверлить в материале.\n"
  1445. "Параметр \"Глубина резания\" должен иметь отрицательное значение, "
  1446. "предполагая, что это опечатка, приложение преобразует значение в "
  1447. "отрицательное. Проверьте полученный CNC code (Gcode и т. д.)."
  1448. #: camlib.py:5655 camlib.py:5918
  1449. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1450. msgstr "[ERROR_NOTCL] Параметр \"Отвод по Z\" равен None или пуст."
  1451. #: camlib.py:5659 camlib.py:5922
  1452. msgid ""
  1453. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1454. "to travel between cuts.\n"
  1455. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1456. "therefore the app will convert the value to positive.Check the resulting CNC "
  1457. "code (Gcode etc)."
  1458. msgstr ""
  1459. "[WARNING] Параметр \"Отвод по Z\" имеет отрицательное значение. Это значение "
  1460. "высоты для перемещения между разрезами.\n"
  1461. "Параметр \"Отвод по Z\" должен иметь положительное значение. Предполагая, "
  1462. "что это опечатка, приложение преобразует значение в положительное. Проверьте "
  1463. "полученный CNC code (Gcode и т. д.)."
  1464. #: camlib.py:5666 camlib.py:5929
  1465. #, python-format
  1466. msgid ""
  1467. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1468. msgstr ""
  1469. "[WARNING] Параметр \"Отвод по Z\" равен нулю. Это опасно, пропускается файл "
  1470. "%s"
  1471. #: camlib.py:5796
  1472. #, python-format
  1473. msgid "[ERROR]Expected a Geometry, got %s"
  1474. msgstr "[ERROR]Ожидалась Geometry, получили %s"
  1475. #: camlib.py:5802
  1476. msgid ""
  1477. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1478. "solid_geometry."
  1479. msgstr ""
  1480. "[ERROR_NOTCL] Попытка создать CNC Job из объекта Geometry без solid_geometry."
  1481. #: camlib.py:5841
  1482. msgid ""
  1483. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1484. "current_geometry.\n"
  1485. "Raise the value (in module) and try again."
  1486. msgstr ""
  1487. "[ERROR_NOTCL] Значение смещения инструмента слишком отрицательно для "
  1488. "current_geometry.\n"
  1489. "Увеличте значение (в модуле) и повторите попытку."
  1490. #: camlib.py:6053
  1491. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1492. msgstr "[ERROR_NOTCL] В геометрии SolderPaste нет данных инструмента."
  1493. #: flatcamEditors/FlatCAMExcEditor.py:37 flatcamEditors/FlatCAMExcEditor.py:143
  1494. #: flatcamEditors/FlatCAMGrbEditor.py:229
  1495. #: flatcamEditors/FlatCAMGrbEditor.py:234
  1496. msgid "Click to place ..."
  1497. msgstr "Нажмите для размещения ..."
  1498. #: flatcamEditors/FlatCAMExcEditor.py:46
  1499. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1500. msgstr "[WARNING_NOTCL] Чтобы добавить отверстие, сначала выберите инструмент"
  1501. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:166
  1502. #: flatcamEditors/FlatCAMExcEditor.py:451
  1503. #: flatcamEditors/FlatCAMExcEditor.py:476
  1504. #: flatcamEditors/FlatCAMGrbEditor.py:451
  1505. #: flatcamEditors/FlatCAMGrbEditor.py:1818
  1506. #: flatcamEditors/FlatCAMGrbEditor.py:1846
  1507. msgid "Click on target location ..."
  1508. msgstr "Нажмите на целевой точке ..."
  1509. #: flatcamEditors/FlatCAMExcEditor.py:108
  1510. msgid "[success] Done. Drill added."
  1511. msgstr "[success] Готово. Сверло добавлено."
  1512. #: flatcamEditors/FlatCAMExcEditor.py:150
  1513. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1514. msgstr ""
  1515. "[WARNING_NOTCL] Чтобы добавить массив отверстий, сначала выберите инструмент "
  1516. "в таблице инструментов"
  1517. #: flatcamEditors/FlatCAMExcEditor.py:183
  1518. msgid "Click on the Drill Circular Array Start position"
  1519. msgstr "Нажмите на начальную позицию кругового массива отверстий"
  1520. #: flatcamEditors/FlatCAMExcEditor.py:205
  1521. #: flatcamEditors/FlatCAMGrbEditor.py:494
  1522. msgid ""
  1523. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1524. "separator."
  1525. msgstr ""
  1526. "[ERROR_NOTCL] Это не значение с плавающей точкой. Проверьте наличие запятой "
  1527. "в качестве разделителя."
  1528. #: flatcamEditors/FlatCAMExcEditor.py:208
  1529. #, python-format
  1530. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1531. msgstr "[ERROR_NOTCL] Значение введено с ошибкой. Проверьте значение. %s"
  1532. #: flatcamEditors/FlatCAMExcEditor.py:306
  1533. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1534. msgstr ""
  1535. "[WARNING_NOTCL] Слишком много отверстий для выбранного интервала угла ."
  1536. #: flatcamEditors/FlatCAMExcEditor.py:323
  1537. msgid "[success] Done. Drill Array added."
  1538. msgstr "[success] Готово. Массив отверстий добавлен."
  1539. #: flatcamEditors/FlatCAMExcEditor.py:334
  1540. msgid "Click on the Drill(s) to resize ..."
  1541. msgstr "Нажмите на сверло для изменения размера ..."
  1542. #: flatcamEditors/FlatCAMExcEditor.py:355
  1543. msgid ""
  1544. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1545. msgstr ""
  1546. "[ERROR_NOTCL] Не удалось изменить размер отверстий. Пожалуйста введите "
  1547. "диаметр для изменения размера."
  1548. #: flatcamEditors/FlatCAMExcEditor.py:425
  1549. msgid "[success] Done. Drill Resize completed."
  1550. msgstr "[success] Готово. Изменение размера отверстий выполнено."
  1551. #: flatcamEditors/FlatCAMExcEditor.py:428
  1552. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1553. msgstr "[WARNING_NOTCL] Отмена. Не выбраны отверстия для изменения размера..."
  1554. #: flatcamEditors/FlatCAMExcEditor.py:453
  1555. #: flatcamEditors/FlatCAMGrbEditor.py:1820
  1556. msgid "Click on reference location ..."
  1557. msgstr "Кликните на конечную точку ..."
  1558. #: flatcamEditors/FlatCAMExcEditor.py:508
  1559. msgid "[success] Done. Drill(s) Move completed."
  1560. msgstr "[success] Готово. Перемещение отверстий завершено."
  1561. #: flatcamEditors/FlatCAMExcEditor.py:593
  1562. msgid "[success] Done. Drill(s) copied."
  1563. msgstr "[success] Готово. Отверстия скопированы."
  1564. #: flatcamEditors/FlatCAMExcEditor.py:793 flatcamGUI/FlatCAMGUI.py:5027
  1565. msgid "Excellon Editor"
  1566. msgstr "Редактор Excellon"
  1567. #: flatcamEditors/FlatCAMExcEditor.py:800
  1568. #: flatcamEditors/FlatCAMGrbEditor.py:2308
  1569. msgid "Name:"
  1570. msgstr "Имя:"
  1571. #: flatcamEditors/FlatCAMExcEditor.py:806 flatcamTools/ToolNonCopperClear.py:72
  1572. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1573. msgid "Tools Table"
  1574. msgstr "Таблица инструментов"
  1575. #: flatcamEditors/FlatCAMExcEditor.py:808 flatcamGUI/ObjectUI.py:535
  1576. msgid ""
  1577. "Tools in this Excellon object\n"
  1578. "when are used for drilling."
  1579. msgstr ""
  1580. "Инструменты для Excellon объекта\n"
  1581. "используемые для сверления."
  1582. #: flatcamEditors/FlatCAMExcEditor.py:828
  1583. msgid "Add/Delete Tool"
  1584. msgstr "Добавить/Удалить инструмент"
  1585. #: flatcamEditors/FlatCAMExcEditor.py:830
  1586. msgid ""
  1587. "Add/Delete a tool to the tool list\n"
  1588. "for this Excellon object."
  1589. msgstr ""
  1590. "Добавляет/Удаляет инструмент в списоке инструментов\n"
  1591. "для этого Excellon объекта ."
  1592. #: flatcamEditors/FlatCAMExcEditor.py:838 flatcamTools/ToolCutOut.py:92
  1593. msgid "Tool Dia:"
  1594. msgstr "Диаметр инструмента:"
  1595. #: flatcamEditors/FlatCAMExcEditor.py:840 flatcamGUI/FlatCAMGUI.py:5056
  1596. #: flatcamGUI/ObjectUI.py:976
  1597. msgid "Diameter for the new tool"
  1598. msgstr "Диаметр нового инструмента"
  1599. #: flatcamEditors/FlatCAMExcEditor.py:848
  1600. msgid "Add Tool"
  1601. msgstr "Доб. инструм."
  1602. #: flatcamEditors/FlatCAMExcEditor.py:850
  1603. msgid ""
  1604. "Add a new tool to the tool list\n"
  1605. "with the diameter specified above."
  1606. msgstr ""
  1607. "Добляет новый инструмент в список инструментов\n"
  1608. "с диаметром, указанным выше."
  1609. #: flatcamEditors/FlatCAMExcEditor.py:862
  1610. msgid "Delete Tool"
  1611. msgstr "Удалить инструмент"
  1612. #: flatcamEditors/FlatCAMExcEditor.py:864
  1613. msgid ""
  1614. "Delete a tool in the tool list\n"
  1615. "by selecting a row in the tool table."
  1616. msgstr ""
  1617. "Удаляет инструмент из списка инструментов\n"
  1618. "в выбранной строке таблицы инструментов."
  1619. #: flatcamEditors/FlatCAMExcEditor.py:882
  1620. msgid "Resize Drill(s)"
  1621. msgstr "Изменить размер сверла"
  1622. #: flatcamEditors/FlatCAMExcEditor.py:884
  1623. msgid "Resize a drill or a selection of drills."
  1624. msgstr "Изменяет размер сверла или выбранных свёрел."
  1625. #: flatcamEditors/FlatCAMExcEditor.py:891
  1626. msgid "Resize Dia:"
  1627. msgstr "Изменить диаметр:"
  1628. #: flatcamEditors/FlatCAMExcEditor.py:893
  1629. msgid "Diameter to resize to."
  1630. msgstr "Диаметр для изменения."
  1631. #: flatcamEditors/FlatCAMExcEditor.py:901
  1632. msgid "Resize"
  1633. msgstr "Изменить"
  1634. #: flatcamEditors/FlatCAMExcEditor.py:903
  1635. msgid "Resize drill(s)"
  1636. msgstr "Изменить размер сверла"
  1637. #: flatcamEditors/FlatCAMExcEditor.py:925 flatcamGUI/FlatCAMGUI.py:1623
  1638. msgid "Add Drill Array"
  1639. msgstr "Добавить массив отверстий"
  1640. #: flatcamEditors/FlatCAMExcEditor.py:927
  1641. msgid "Add an array of drills (linear or circular array)"
  1642. msgstr "Добавить массив свёрел (линейный или круговой массив)"
  1643. #: flatcamEditors/FlatCAMExcEditor.py:933
  1644. msgid ""
  1645. "Select the type of drills array to create.\n"
  1646. "It can be Linear X(Y) or Circular"
  1647. msgstr ""
  1648. "Выберите тип массива свёрел для создания.\n"
  1649. "Это может быть линейный X (Y) или круговой"
  1650. #: flatcamEditors/FlatCAMExcEditor.py:936
  1651. #: flatcamEditors/FlatCAMGrbEditor.py:2595
  1652. msgid "Linear"
  1653. msgstr "Линейный"
  1654. #: flatcamEditors/FlatCAMExcEditor.py:937
  1655. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  1656. msgid "Circular"
  1657. msgstr "Круговой"
  1658. #: flatcamEditors/FlatCAMExcEditor.py:945 flatcamGUI/FlatCAMGUI.py:5066
  1659. msgid "Nr of drills:"
  1660. msgstr "Кол-во отверстий:"
  1661. #: flatcamEditors/FlatCAMExcEditor.py:947 flatcamGUI/FlatCAMGUI.py:5068
  1662. msgid "Specify how many drills to be in the array."
  1663. msgstr "Укажите, сколько свёрел должно быть в массиве."
  1664. #: flatcamEditors/FlatCAMExcEditor.py:965
  1665. #: flatcamEditors/FlatCAMExcEditor.py:1011
  1666. #: flatcamEditors/FlatCAMGrbEditor.py:2622
  1667. #: flatcamEditors/FlatCAMGrbEditor.py:2667
  1668. msgid "Direction:"
  1669. msgstr "Направление:"
  1670. #: flatcamEditors/FlatCAMExcEditor.py:967
  1671. #: flatcamEditors/FlatCAMGrbEditor.py:2624 flatcamGUI/FlatCAMGUI.py:5083
  1672. msgid ""
  1673. "Direction on which the linear array is oriented:\n"
  1674. "- 'X' - horizontal axis \n"
  1675. "- 'Y' - vertical axis or \n"
  1676. "- 'Angle' - a custom angle for the array inclination"
  1677. msgstr ""
  1678. "Направление, на которое ориентируется линейный массив:\n"
  1679. "- 'X' - горизонтальная ось\n"
  1680. "- 'Y' - вертикальная ось или\n"
  1681. "- 'Угол' - произвольный угол наклона массива"
  1682. #: flatcamEditors/FlatCAMExcEditor.py:974
  1683. #: flatcamEditors/FlatCAMGrbEditor.py:2631 flatcamGUI/FlatCAMGUI.py:5089
  1684. msgid "X"
  1685. msgstr "X"
  1686. #: flatcamEditors/FlatCAMExcEditor.py:975
  1687. #: flatcamEditors/FlatCAMGrbEditor.py:2632 flatcamGUI/FlatCAMGUI.py:5090
  1688. msgid "Y"
  1689. msgstr "Y"
  1690. #: flatcamEditors/FlatCAMExcEditor.py:976
  1691. #: flatcamEditors/FlatCAMGrbEditor.py:2633 flatcamGUI/FlatCAMGUI.py:5091
  1692. msgid "Angle"
  1693. msgstr "Угол"
  1694. #: flatcamEditors/FlatCAMExcEditor.py:980
  1695. #: flatcamEditors/FlatCAMGrbEditor.py:2637 flatcamGUI/FlatCAMGUI.py:5097
  1696. msgid "Pitch:"
  1697. msgstr "Шаг:"
  1698. #: flatcamEditors/FlatCAMExcEditor.py:982
  1699. #: flatcamEditors/FlatCAMGrbEditor.py:2639 flatcamGUI/FlatCAMGUI.py:5099
  1700. msgid "Pitch = Distance between elements of the array."
  1701. msgstr "Подача = Расстояние между элементами массива."
  1702. #: flatcamEditors/FlatCAMExcEditor.py:990
  1703. #: flatcamEditors/FlatCAMExcEditor.py:1025
  1704. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1705. #: flatcamEditors/FlatCAMGrbEditor.py:2646
  1706. #: flatcamEditors/FlatCAMGrbEditor.py:2682
  1707. #: flatcamEditors/FlatCAMGrbEditor.py:4743 flatcamGUI/FlatCAMGUI.py:5108
  1708. #: flatcamTools/ToolTransform.py:68
  1709. msgid "Angle:"
  1710. msgstr "Угол:"
  1711. #: flatcamEditors/FlatCAMExcEditor.py:992
  1712. #: flatcamEditors/FlatCAMGrbEditor.py:2648
  1713. msgid ""
  1714. "Angle at which the linear array is placed.\n"
  1715. "The precision is of max 2 decimals.\n"
  1716. "Min value is: -359.99 degrees.\n"
  1717. "Max value is: 360.00 degrees."
  1718. msgstr ""
  1719. "Угол, под которым расположен линейный массив.\n"
  1720. "Точность составляет не более 2 десятичных знаков.\n"
  1721. "Минимальное значение: -359.99 градусов.\n"
  1722. "Максимальное значение: 360.00 градусов."
  1723. #: flatcamEditors/FlatCAMExcEditor.py:1013
  1724. #: flatcamEditors/FlatCAMGrbEditor.py:2669
  1725. msgid ""
  1726. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1727. "clockwise."
  1728. msgstr ""
  1729. "Направление для кругового массива. Может быть CW = по часовой стрелке или "
  1730. "CCW = против часовой стрелки."
  1731. #: flatcamEditors/FlatCAMExcEditor.py:1021
  1732. #: flatcamEditors/FlatCAMGrbEditor.py:2677 flatcamGUI/FlatCAMGUI.py:4692
  1733. #: flatcamGUI/FlatCAMGUI.py:5127 flatcamGUI/FlatCAMGUI.py:5316
  1734. msgid "CW"
  1735. msgstr "CW"
  1736. #: flatcamEditors/FlatCAMExcEditor.py:1022
  1737. #: flatcamEditors/FlatCAMGrbEditor.py:2678 flatcamGUI/FlatCAMGUI.py:4693
  1738. #: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/FlatCAMGUI.py:5317
  1739. msgid "CCW"
  1740. msgstr "CCW"
  1741. #: flatcamEditors/FlatCAMExcEditor.py:1027
  1742. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:5110
  1743. #: flatcamGUI/FlatCAMGUI.py:5136
  1744. msgid "Angle at which each element in circular array is placed."
  1745. msgstr "Угол, под которым расположен каждый элемент в круговом массиве."
  1746. #: flatcamEditors/FlatCAMExcEditor.py:1488
  1747. msgid ""
  1748. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1749. "Save and reedit Excellon if you need to add this tool. "
  1750. msgstr ""
  1751. "[WARNING_NOTCL] Инструмент уже есть в исходном или фактическом списке "
  1752. "инструментов.\n"
  1753. "Сохраните и повторно отредактируйте Excellon, если вам нужно добавить этот "
  1754. "инструмент. "
  1755. #: flatcamEditors/FlatCAMExcEditor.py:1497 flatcamGUI/FlatCAMGUI.py:3016
  1756. #, python-brace-format
  1757. msgid "[success] Added new tool with dia: {dia} {units}"
  1758. msgstr "[success] Добавлен новый инструмент с диаметром: {dia} {units}"
  1759. #: flatcamEditors/FlatCAMExcEditor.py:1529
  1760. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1761. msgstr "[WARNING_NOTCL] Выберите инструмент в таблице инструментов"
  1762. #: flatcamEditors/FlatCAMExcEditor.py:1561
  1763. #, python-brace-format
  1764. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1765. msgstr "[success] Удален инструмент с диаметром: {del_dia} {units}"
  1766. #: flatcamEditors/FlatCAMExcEditor.py:2075
  1767. msgid ""
  1768. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1769. "creation."
  1770. msgstr "[ERROR_NOTCL] В файле нет инструментов. Прерывание создания Excellon."
  1771. #: flatcamEditors/FlatCAMExcEditor.py:2084
  1772. msgid "Creating Excellon."
  1773. msgstr "Создание Excellon."
  1774. #: flatcamEditors/FlatCAMExcEditor.py:2093
  1775. msgid "[success] Excellon editing finished."
  1776. msgstr "[success] Редактирование Excellon завершено."
  1777. #: flatcamEditors/FlatCAMExcEditor.py:2110
  1778. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1779. msgstr "[WARNING_NOTCL] Отмена. Инструмент/сверло не выбрано"
  1780. #: flatcamEditors/FlatCAMExcEditor.py:2638
  1781. msgid "[success] Done. Drill(s) deleted."
  1782. msgstr "[success] Готово. Отверстия удалены."
  1783. #: flatcamEditors/FlatCAMExcEditor.py:2706
  1784. #: flatcamEditors/FlatCAMGrbEditor.py:4461
  1785. msgid "Click on the circular array Center position"
  1786. msgstr "Нажмите на центральную позицию кругового массива"
  1787. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1788. #: flatcamEditors/FlatCAMGrbEditor.py:2460
  1789. msgid "Buffer distance:"
  1790. msgstr "Расстояние буфера:"
  1791. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1792. #: flatcamEditors/FlatCAMGrbEditor.py:2461
  1793. msgid "Buffer corner:"
  1794. msgstr "Угол буфера:"
  1795. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1796. msgid ""
  1797. "There are 3 types of corners:\n"
  1798. " - 'Round': the corner is rounded for exterior buffer.\n"
  1799. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1800. " - 'Beveled:' the corner is a line that directly connects the features "
  1801. "meeting in the corner"
  1802. msgstr ""
  1803. "Есть 3 типа углов:\n"
  1804. " - 'Округление': угол округляется для внешнего буфера.\n"
  1805. " - 'Квадрат:' угол встречается под острым углом для внешнего буфера.\n"
  1806. " - 'Скошенный:' линия, напрямую соединяющая элементы, встречающиеся в углу"
  1807. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1808. #: flatcamEditors/FlatCAMGrbEditor.py:2469
  1809. msgid "Round"
  1810. msgstr "Круглый"
  1811. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1812. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  1813. msgid "Square"
  1814. msgstr "Квадратный"
  1815. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1816. #: flatcamEditors/FlatCAMGrbEditor.py:2471
  1817. msgid "Beveled"
  1818. msgstr "Скошенный"
  1819. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1820. msgid "Buffer Interior"
  1821. msgstr "Буфер внутри"
  1822. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1823. msgid "Buffer Exterior"
  1824. msgstr "Буфер снаружи"
  1825. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1826. msgid "Full Buffer"
  1827. msgstr "Полный буфер"
  1828. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1829. #: flatcamEditors/FlatCAMGeoEditor.py:2682
  1830. msgid "Buffer Tool"
  1831. msgstr "Буфер"
  1832. #: flatcamEditors/FlatCAMGeoEditor.py:138
  1833. #: flatcamEditors/FlatCAMGeoEditor.py:155
  1834. #: flatcamEditors/FlatCAMGeoEditor.py:172
  1835. #: flatcamEditors/FlatCAMGeoEditor.py:2700
  1836. #: flatcamEditors/FlatCAMGeoEditor.py:2726
  1837. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  1838. #: flatcamEditors/FlatCAMGrbEditor.py:4513
  1839. msgid ""
  1840. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1841. "retry."
  1842. msgstr ""
  1843. "[WARNING_NOTCL] Отсутствует значение расстояния буфера или оно имеет "
  1844. "неправильный формат. Добавьте его и повторите попытку."
  1845. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1846. msgid "Text Tool"
  1847. msgstr "Текст"
  1848. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:802
  1849. msgid "Tool"
  1850. msgstr "Инструменты"
  1851. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4073
  1852. #: flatcamGUI/FlatCAMGUI.py:5182 flatcamGUI/FlatCAMGUI.py:5616
  1853. #: flatcamGUI/FlatCAMGUI.py:5893 flatcamGUI/FlatCAMGUI.py:6048
  1854. #: flatcamGUI/ObjectUI.py:259
  1855. msgid "Tool dia:"
  1856. msgstr "Диам. инструм.:"
  1857. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6050
  1858. msgid ""
  1859. "Diameter of the tool to\n"
  1860. "be used in the operation."
  1861. msgstr ""
  1862. "Диаметр инструмента\n"
  1863. "используемого в этой операции."
  1864. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5799
  1865. #: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolNonCopperClear.py:165
  1866. #: flatcamTools/ToolPaint.py:160
  1867. msgid "Overlap Rate:"
  1868. msgstr "Частота перекрытия:"
  1869. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1870. #, python-format
  1871. msgid ""
  1872. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1873. "Example:\n"
  1874. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1875. "\n"
  1876. "Adjust the value starting with lower values\n"
  1877. "and increasing it if areas that should be painted are still \n"
  1878. "not painted.\n"
  1879. "Lower values = faster processing, faster execution on PCB.\n"
  1880. "Higher values = slow processing and slow execution on CNC\n"
  1881. "due of too many paths."
  1882. msgstr ""
  1883. "Какая часть ширины инструмента будет перекрываться за каждый проход "
  1884. "инструмента.\n"
  1885. "Пример:\n"
  1886. "Здесь значение 0.25 означает 25% от диаметра инструмента, указанного выше.\n"
  1887. "\n"
  1888. "Отрегулируйте значение, начиная с более низких значений\n"
  1889. "и увеличивая его, если области, которые должны быть нарисованы, все еще\n"
  1890. "не окрашены.\n"
  1891. "Более низкие значения = более быстрая обработка, более быстрое выполнение на "
  1892. "печатной плате.\n"
  1893. "Более высокие значения = медленная обработка и медленное выполнение на ЧПУ\n"
  1894. "из-за большого количества путей."
  1895. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5815
  1896. #: flatcamGUI/FlatCAMGUI.py:5916 flatcamGUI/FlatCAMGUI.py:6069
  1897. #: flatcamTools/ToolCutOut.py:101 flatcamTools/ToolNonCopperClear.py:181
  1898. #: flatcamTools/ToolPaint.py:177
  1899. msgid "Margin:"
  1900. msgstr "Отступ:"
  1901. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6071
  1902. #: flatcamTools/ToolPaint.py:179
  1903. msgid ""
  1904. "Distance by which to avoid\n"
  1905. "the edges of the polygon to\n"
  1906. "be painted."
  1907. msgstr "Расстояние, которое не закрашивать до края полигона."
  1908. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5824
  1909. #: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolNonCopperClear.py:190
  1910. #: flatcamTools/ToolPaint.py:188
  1911. msgid "Method:"
  1912. msgstr "Метод:"
  1913. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6082
  1914. msgid ""
  1915. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1916. "<BR><B>Seed-based</B>: Outwards from seed."
  1917. msgstr ""
  1918. "Алгоритм отрисовки полигона:<BR><B>Стандартный</B>: Фиксированный шаг внутрь."
  1919. "<BR><B>По кругу</B>: От центра наружу."
  1920. #: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5833
  1921. #: flatcamGUI/FlatCAMGUI.py:6088 flatcamTools/ToolNonCopperClear.py:199
  1922. #: flatcamTools/ToolPaint.py:197
  1923. msgid "Standard"
  1924. msgstr "Стандартный"
  1925. #: flatcamEditors/FlatCAMGeoEditor.py:481 flatcamGUI/FlatCAMGUI.py:5834
  1926. #: flatcamGUI/FlatCAMGUI.py:6089 flatcamTools/ToolNonCopperClear.py:200
  1927. #: flatcamTools/ToolPaint.py:198
  1928. msgid "Seed-based"
  1929. msgstr "От центра по кругу"
  1930. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:5835
  1931. #: flatcamGUI/FlatCAMGUI.py:6090 flatcamTools/ToolNonCopperClear.py:201
  1932. #: flatcamTools/ToolPaint.py:199
  1933. msgid "Straight lines"
  1934. msgstr "Прямая линия"
  1935. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5840
  1936. #: flatcamGUI/FlatCAMGUI.py:6095 flatcamTools/ToolNonCopperClear.py:206
  1937. #: flatcamTools/ToolPaint.py:204
  1938. msgid "Connect:"
  1939. msgstr "Подключение:"
  1940. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5842
  1941. #: flatcamGUI/FlatCAMGUI.py:6097 flatcamTools/ToolNonCopperClear.py:208
  1942. #: flatcamTools/ToolPaint.py:206
  1943. msgid ""
  1944. "Draw lines between resulting\n"
  1945. "segments to minimize tool lifts."
  1946. msgstr ""
  1947. "Рисовать линии между результирующей сегментами\n"
  1948. " для минимизации подъёма инструмента."
  1949. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5849
  1950. #: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolNonCopperClear.py:215
  1951. #: flatcamTools/ToolPaint.py:213
  1952. msgid "Contour:"
  1953. msgstr "Контур:"
  1954. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5851
  1955. #: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolNonCopperClear.py:217
  1956. #: flatcamTools/ToolPaint.py:215
  1957. msgid ""
  1958. "Cut around the perimeter of the polygon\n"
  1959. "to trim rough edges."
  1960. msgstr ""
  1961. "Обрезка по периметру полигона\n"
  1962. "обрезать неровные края."
  1963. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1964. msgid "Paint"
  1965. msgstr "Нарисовать"
  1966. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:639
  1967. #: flatcamGUI/FlatCAMGUI.py:1876 flatcamGUI/ObjectUI.py:1320
  1968. #: flatcamTools/ToolPaint.py:340
  1969. msgid "Paint Tool"
  1970. msgstr "Рисование"
  1971. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1972. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1973. msgstr "[WARNING_NOTCL] Рисование отменено. Фугура не выбрана."
  1974. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:372
  1975. #: flatcamTools/ToolCutOut.py:565 flatcamTools/ToolCutOut.py:727
  1976. #: flatcamTools/ToolCutOut.py:834 flatcamTools/ToolDblSided.py:362
  1977. msgid ""
  1978. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1979. "retry."
  1980. msgstr ""
  1981. "[WARNING_NOTCL] Отсутствует значение диаметра инструмента или оно имеет "
  1982. "неправильный формат. Добавьте его и повторите попытку."
  1983. #: flatcamEditors/FlatCAMGeoEditor.py:585
  1984. msgid ""
  1985. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1986. msgstr ""
  1987. "[WARNING_NOTCL] Значение перекрытия отсутствует или оно имеет неправильный "
  1988. "формат. Добавьте его и повторите попытку."
  1989. #: flatcamEditors/FlatCAMGeoEditor.py:597
  1990. msgid ""
  1991. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1992. "retry."
  1993. msgstr ""
  1994. "[WARNING_NOTCL] Значение отступа отсутствует или оно имеет неправильный "
  1995. "формат. Добавьте его и повторите попытку."
  1996. #: flatcamEditors/FlatCAMGeoEditor.py:606
  1997. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  1998. #: flatcamEditors/FlatCAMGeoEditor.py:2733
  1999. #: flatcamEditors/FlatCAMGeoEditor.py:2759
  2000. #: flatcamTools/ToolNonCopperClear.py:817 flatcamTools/ToolProperties.py:104
  2001. msgid "Tools"
  2002. msgstr "Инструменты"
  2003. #: flatcamEditors/FlatCAMGeoEditor.py:617
  2004. #: flatcamEditors/FlatCAMGeoEditor.py:990
  2005. #: flatcamEditors/FlatCAMGrbEditor.py:4694
  2006. #: flatcamEditors/FlatCAMGrbEditor.py:5079 flatcamGUI/FlatCAMGUI.py:650
  2007. #: flatcamGUI/FlatCAMGUI.py:1889 flatcamTools/ToolTransform.py:397
  2008. msgid "Transform Tool"
  2009. msgstr "Трансформация"
  2010. #: flatcamEditors/FlatCAMGeoEditor.py:618
  2011. #: flatcamEditors/FlatCAMGeoEditor.py:679
  2012. #: flatcamEditors/FlatCAMGrbEditor.py:4695
  2013. #: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:24
  2014. #: flatcamTools/ToolTransform.py:82
  2015. msgid "Rotate"
  2016. msgstr "Вращение"
  2017. #: flatcamEditors/FlatCAMGeoEditor.py:619
  2018. #: flatcamEditors/FlatCAMGrbEditor.py:4696 flatcamTools/ToolTransform.py:25
  2019. msgid "Skew/Shear"
  2020. msgstr "Наклон/Сдвиг"
  2021. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2022. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  2023. #: flatcamEditors/FlatCAMGrbEditor.py:4697 flatcamGUI/FlatCAMGUI.py:714
  2024. #: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/ObjectUI.py:100
  2025. #: flatcamTools/ToolTransform.py:26
  2026. msgid "Scale"
  2027. msgstr "Масштаб"
  2028. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2029. #: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamTools/ToolTransform.py:27
  2030. msgid "Mirror (Flip)"
  2031. msgstr "Зеркалирование (отражение)"
  2032. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2033. #: flatcamEditors/FlatCAMGrbEditor.py:4699 flatcamGUI/ObjectUI.py:127
  2034. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  2035. #: flatcamTools/ToolTransform.py:28
  2036. msgid "Offset"
  2037. msgstr "Смещение"
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:633
  2039. #: flatcamEditors/FlatCAMGrbEditor.py:4711
  2040. #, python-format
  2041. msgid "Editor %s"
  2042. msgstr "Редактор %s"
  2043. #: flatcamEditors/FlatCAMGeoEditor.py:667
  2044. #: flatcamEditors/FlatCAMGrbEditor.py:4745 flatcamTools/ToolTransform.py:70
  2045. msgid ""
  2046. "Angle for Rotation action, in degrees.\n"
  2047. "Float number between -360 and 359.\n"
  2048. "Positive numbers for CW motion.\n"
  2049. "Negative numbers for CCW motion."
  2050. msgstr ""
  2051. "Угол поворота в градусах.\n"
  2052. "Число с плавающей запятой от -360 до 359.\n"
  2053. "Положительные числа для движения по часовой стрелке.\n"
  2054. "Отрицательные числа для движения против часовой стрелки."
  2055. #: flatcamEditors/FlatCAMGeoEditor.py:681
  2056. #: flatcamEditors/FlatCAMGrbEditor.py:4759
  2057. msgid ""
  2058. "Rotate the selected shape(s).\n"
  2059. "The point of reference is the middle of\n"
  2060. "the bounding box for all selected shapes."
  2061. msgstr ""
  2062. "Поворачивает выбранные фигуры.\n"
  2063. "Точка отсчета - середина\n"
  2064. "ограничительной рамки для всех выбранных фигур."
  2065. #: flatcamEditors/FlatCAMGeoEditor.py:704
  2066. #: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamTools/ToolTransform.py:107
  2067. msgid "Angle X:"
  2068. msgstr "Угол X:"
  2069. #: flatcamEditors/FlatCAMGeoEditor.py:706
  2070. #: flatcamEditors/FlatCAMGeoEditor.py:724
  2071. #: flatcamEditors/FlatCAMGrbEditor.py:4784
  2072. #: flatcamEditors/FlatCAMGrbEditor.py:4802 flatcamTools/ToolTransform.py:109
  2073. #: flatcamTools/ToolTransform.py:127
  2074. msgid ""
  2075. "Angle for Skew action, in degrees.\n"
  2076. "Float number between -360 and 359."
  2077. msgstr ""
  2078. "Угол наклона в градусах.\n"
  2079. "Число с плавающей запятой между -360 и 359."
  2080. #: flatcamEditors/FlatCAMGeoEditor.py:715
  2081. #: flatcamEditors/FlatCAMGrbEditor.py:4793 flatcamTools/ToolTransform.py:118
  2082. msgid "Skew X"
  2083. msgstr "Наклон X"
  2084. #: flatcamEditors/FlatCAMGeoEditor.py:717
  2085. #: flatcamEditors/FlatCAMGeoEditor.py:735
  2086. #: flatcamEditors/FlatCAMGrbEditor.py:4795
  2087. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2088. msgid ""
  2089. "Skew/shear the selected shape(s).\n"
  2090. "The point of reference is the middle of\n"
  2091. "the bounding box for all selected shapes."
  2092. msgstr ""
  2093. "Наклоняет/сдвигает выбранные фигуры.\n"
  2094. "Точка отсчета - середина\n"
  2095. "ограничительной рамки для всех выбранных фигур."
  2096. #: flatcamEditors/FlatCAMGeoEditor.py:722
  2097. #: flatcamEditors/FlatCAMGrbEditor.py:4800 flatcamTools/ToolTransform.py:125
  2098. msgid "Angle Y:"
  2099. msgstr "Угол Y:"
  2100. #: flatcamEditors/FlatCAMGeoEditor.py:733
  2101. #: flatcamEditors/FlatCAMGrbEditor.py:4811 flatcamTools/ToolTransform.py:136
  2102. msgid "Skew Y"
  2103. msgstr "Наклон Y"
  2104. #: flatcamEditors/FlatCAMGeoEditor.py:761
  2105. #: flatcamEditors/FlatCAMGrbEditor.py:4839 flatcamTools/ToolTransform.py:164
  2106. msgid "Factor X:"
  2107. msgstr "Коэф. X:"
  2108. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2109. #: flatcamEditors/FlatCAMGrbEditor.py:4841 flatcamTools/ToolTransform.py:166
  2110. msgid "Factor for Scale action over X axis."
  2111. msgstr "Коэффициент масштабирования по оси X."
  2112. #: flatcamEditors/FlatCAMGeoEditor.py:771
  2113. #: flatcamEditors/FlatCAMGrbEditor.py:4849 flatcamTools/ToolTransform.py:174
  2114. msgid "Scale X"
  2115. msgstr "Масштаб Х"
  2116. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2117. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2118. #: flatcamEditors/FlatCAMGrbEditor.py:4851
  2119. #: flatcamEditors/FlatCAMGrbEditor.py:4868
  2120. msgid ""
  2121. "Scale the selected shape(s).\n"
  2122. "The point of reference depends on \n"
  2123. "the Scale reference checkbox state."
  2124. msgstr ""
  2125. "Масштабировать выбранные фигуры.\n"
  2126. "Точка отсчета зависит от\n"
  2127. "состояние флажка Scale Reference."
  2128. #: flatcamEditors/FlatCAMGeoEditor.py:778
  2129. #: flatcamEditors/FlatCAMGrbEditor.py:4856 flatcamTools/ToolTransform.py:181
  2130. msgid "Factor Y:"
  2131. msgstr "Коэф Y:"
  2132. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2133. #: flatcamEditors/FlatCAMGrbEditor.py:4858 flatcamTools/ToolTransform.py:183
  2134. msgid "Factor for Scale action over Y axis."
  2135. msgstr "Коэффициент масштабирования по оси Y."
  2136. #: flatcamEditors/FlatCAMGeoEditor.py:788
  2137. #: flatcamEditors/FlatCAMGrbEditor.py:4866 flatcamTools/ToolTransform.py:191
  2138. msgid "Scale Y"
  2139. msgstr "Масштаб Y"
  2140. #: flatcamEditors/FlatCAMGeoEditor.py:797
  2141. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamGUI/FlatCAMGUI.py:6454
  2142. #: flatcamTools/ToolTransform.py:200
  2143. msgid "Link"
  2144. msgstr "Ссылка"
  2145. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2146. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2147. msgid ""
  2148. "Scale the selected shape(s)\n"
  2149. "using the Scale Factor X for both axis."
  2150. msgstr ""
  2151. "Масштабирует выбранные фигуры\n"
  2152. "используя коэффициент X для обеих осей."
  2153. #: flatcamEditors/FlatCAMGeoEditor.py:805
  2154. #: flatcamEditors/FlatCAMGrbEditor.py:4883 flatcamGUI/FlatCAMGUI.py:6462
  2155. #: flatcamTools/ToolTransform.py:208
  2156. msgid "Scale Reference"
  2157. msgstr "Scale Reference"
  2158. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2159. #: flatcamEditors/FlatCAMGrbEditor.py:4885
  2160. msgid ""
  2161. "Scale the selected shape(s)\n"
  2162. "using the origin reference when checked,\n"
  2163. "and the center of the biggest bounding box\n"
  2164. "of the selected shapes when unchecked."
  2165. msgstr ""
  2166. "Масштаб выбранной фигуры(фигур)\n"
  2167. "использует точку начала координат, если флажок включен,\n"
  2168. "и центр самой большой ограничительной рамки\n"
  2169. "выбранных фигур, если флажок снят."
  2170. #: flatcamEditors/FlatCAMGeoEditor.py:835
  2171. #: flatcamEditors/FlatCAMGrbEditor.py:4914 flatcamTools/ToolTransform.py:238
  2172. msgid "Value X:"
  2173. msgstr "Значение X:"
  2174. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2175. #: flatcamEditors/FlatCAMGrbEditor.py:4916 flatcamTools/ToolTransform.py:240
  2176. msgid "Value for Offset action on X axis."
  2177. msgstr "Значение для смещения по оси X."
  2178. #: flatcamEditors/FlatCAMGeoEditor.py:845
  2179. #: flatcamEditors/FlatCAMGrbEditor.py:4924 flatcamTools/ToolTransform.py:248
  2180. msgid "Offset X"
  2181. msgstr "Смещение Х"
  2182. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2183. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2184. #: flatcamEditors/FlatCAMGrbEditor.py:4926
  2185. #: flatcamEditors/FlatCAMGrbEditor.py:4944
  2186. msgid ""
  2187. "Offset the selected shape(s).\n"
  2188. "The point of reference is the middle of\n"
  2189. "the bounding box for all selected shapes.\n"
  2190. msgstr ""
  2191. "Смещяет выбранные фигуры.\n"
  2192. "Точка отсчета - середина\n"
  2193. "ограничительной рамки для всех выбранных фигур.\n"
  2194. #: flatcamEditors/FlatCAMGeoEditor.py:853
  2195. #: flatcamEditors/FlatCAMGrbEditor.py:4932 flatcamTools/ToolTransform.py:255
  2196. msgid "Value Y:"
  2197. msgstr "Значение Y:"
  2198. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2199. #: flatcamEditors/FlatCAMGrbEditor.py:4934 flatcamTools/ToolTransform.py:257
  2200. msgid "Value for Offset action on Y axis."
  2201. msgstr "Значение для смещения по оси Y."
  2202. #: flatcamEditors/FlatCAMGeoEditor.py:863
  2203. #: flatcamEditors/FlatCAMGrbEditor.py:4942 flatcamTools/ToolTransform.py:265
  2204. msgid "Offset Y"
  2205. msgstr "Смещение Y"
  2206. #: flatcamEditors/FlatCAMGeoEditor.py:894
  2207. #: flatcamEditors/FlatCAMGrbEditor.py:4973 flatcamTools/ToolTransform.py:295
  2208. msgid "Flip on X"
  2209. msgstr "Отразить по X"
  2210. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2212. #: flatcamEditors/FlatCAMGrbEditor.py:4975
  2213. #: flatcamEditors/FlatCAMGrbEditor.py:4983
  2214. msgid ""
  2215. "Flip the selected shape(s) over the X axis.\n"
  2216. "Does not create a new shape."
  2217. msgstr ""
  2218. "Отражает выбранные фигуры по оси X.\n"
  2219. "Не создает новую фугуру."
  2220. #: flatcamEditors/FlatCAMGeoEditor.py:902
  2221. #: flatcamEditors/FlatCAMGrbEditor.py:4981 flatcamTools/ToolTransform.py:303
  2222. msgid "Flip on Y"
  2223. msgstr "Отразить по Y"
  2224. #: flatcamEditors/FlatCAMGeoEditor.py:911
  2225. #: flatcamEditors/FlatCAMGrbEditor.py:4990 flatcamTools/ToolTransform.py:312
  2226. msgid "Ref Pt"
  2227. msgstr "Точка отсчета"
  2228. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2229. #: flatcamEditors/FlatCAMGrbEditor.py:4992
  2230. msgid ""
  2231. "Flip the selected shape(s)\n"
  2232. "around the point in Point Entry Field.\n"
  2233. "\n"
  2234. "The point coordinates can be captured by\n"
  2235. "left click on canvas together with pressing\n"
  2236. "SHIFT key. \n"
  2237. "Then click Add button to insert coordinates.\n"
  2238. "Or enter the coords in format (x, y) in the\n"
  2239. "Point Entry field and click Flip on X(Y)"
  2240. msgstr ""
  2241. "Отражает выбранные фигуры (ы)\n"
  2242. "вокруг точки, указанной в поле ввода координат.\n"
  2243. "\n"
  2244. "Координаты точки могут быть записаны с помощью\n"
  2245. "щелчка левой кнопкой мыши на холсте одновременно с нажатием\n"
  2246. "клавиши SHIFT.\n"
  2247. "Затем нажмите кнопку 'Добавить', чтобы вставить координаты.\n"
  2248. "Или введите координаты в формате (x, y) в\n"
  2249. "поле ввода и нажмите «Отразить по X (Y)»"
  2250. #: flatcamEditors/FlatCAMGeoEditor.py:925
  2251. #: flatcamEditors/FlatCAMGrbEditor.py:5004 flatcamTools/ToolTransform.py:325
  2252. msgid "Point:"
  2253. msgstr "Точка:"
  2254. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:5006
  2256. msgid ""
  2257. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2258. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2259. "the 'y' in (x, y) will be used when using Flip on Y."
  2260. msgstr ""
  2261. "Координаты в формате (x, y), используемые в качестве указателя для "
  2262. "отражения.\n"
  2263. "'x' в (x, y) будет использоваться при отражении по X и\n"
  2264. "'y' в (x, y) будет использоваться при отражении по Y."
  2265. #: flatcamEditors/FlatCAMGeoEditor.py:939
  2266. #: flatcamEditors/FlatCAMGrbEditor.py:5018 flatcamTools/ToolTransform.py:339
  2267. msgid ""
  2268. "The point coordinates can be captured by\n"
  2269. "left click on canvas together with pressing\n"
  2270. "SHIFT key. Then click Add button to insert."
  2271. msgstr ""
  2272. "Координаты точки могут быть записаны с помощью\n"
  2273. "щелчка левой кнопкой мыши на холсте одновременно с нажатием\n"
  2274. "клавиши SHIFT. Затем нажмите кнопку 'Добавить', чтобы вставить координаты."
  2275. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2276. #: flatcamEditors/FlatCAMGrbEditor.py:5143
  2277. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2278. msgstr "[WARNING_NOTCL] Трансформация отменена. Фигура не выбрана."
  2279. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2280. #: flatcamEditors/FlatCAMGrbEditor.py:5163 flatcamTools/ToolTransform.py:467
  2281. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2282. msgstr ""
  2283. "[ERROR_NOTCL] Неверный формат значения, введенный для поворота, используйте "
  2284. "числа."
  2285. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2286. #: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:501
  2287. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2288. msgstr ""
  2289. "[ERROR_NOTCL] Неверный формат значения, введенный для наклона по X, "
  2290. "используйте числа."
  2291. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2292. #: flatcamEditors/FlatCAMGrbEditor.py:5233 flatcamTools/ToolTransform.py:519
  2293. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2294. msgstr ""
  2295. "[ERROR_NOTCL] Неверный формат значения, введенный для наклона поY, "
  2296. "используйте числа."
  2297. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2298. #: flatcamEditors/FlatCAMGrbEditor.py:5260 flatcamTools/ToolTransform.py:537
  2299. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2300. msgstr ""
  2301. "[ERROR_NOTCL] Неверный формат значения, введенный для масштабирования по X, "
  2302. "используйте числа."
  2303. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2304. #: flatcamEditors/FlatCAMGrbEditor.py:5301 flatcamTools/ToolTransform.py:571
  2305. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2306. msgstr ""
  2307. "[ERROR_NOTCL] Неверный формат значения, введенный для масштабирования по Y, "
  2308. "используйте числа."
  2309. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2310. #: flatcamEditors/FlatCAMGrbEditor.py:5339 flatcamTools/ToolTransform.py:600
  2311. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2312. msgstr ""
  2313. "[ERROR_NOTCL] Неверный формат значения, введенный для смещения по X, "
  2314. "используйте числа."
  2315. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2316. #: flatcamEditors/FlatCAMGrbEditor.py:5365 flatcamTools/ToolTransform.py:618
  2317. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2318. msgstr ""
  2319. "[ERROR_NOTCL] Неверный формат значения, введенный для смещения по Y, "
  2320. "используйте числа."
  2321. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2322. #: flatcamEditors/FlatCAMGrbEditor.py:5388
  2323. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2324. msgstr ""
  2325. "[WARNING_NOTCL] Фигура не выбрана. Пожалуйста, выберите фигуру для поворота!"
  2326. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:5391 flatcamTools/ToolTransform.py:639
  2328. msgid "Appying Rotate"
  2329. msgstr "Применение поворота"
  2330. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2331. #: flatcamEditors/FlatCAMGrbEditor.py:5424
  2332. msgid "[success] Done. Rotate completed."
  2333. msgstr "[success] Готово. Поворот выполнен."
  2334. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2335. #: flatcamEditors/FlatCAMGrbEditor.py:5443
  2336. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2337. msgstr ""
  2338. "[WARNING_NOTCL] Фигура не выбрана. Пожалуйста, выберите фигуру для "
  2339. "переворота!"
  2340. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2341. #: flatcamEditors/FlatCAMGrbEditor.py:5446 flatcamTools/ToolTransform.py:690
  2342. msgid "Applying Flip"
  2343. msgstr "Применение отражения"
  2344. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2345. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolTransform.py:732
  2346. msgid "[success] Flip on the Y axis done ..."
  2347. msgstr "[success] Отражение по оси Y завершено ..."
  2348. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2349. #: flatcamEditors/FlatCAMGrbEditor.py:5493 flatcamTools/ToolTransform.py:741
  2350. msgid "[success] Flip on the X axis done ..."
  2351. msgstr "[success] Отражение по оси Х завершёно ..."
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:5513
  2354. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2355. msgstr ""
  2356. "[WARNING_NOTCL] Фигура не выбрана. Пожалуйста, выберите фигуру для сдвига/"
  2357. "наклона!"
  2358. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:5516 flatcamTools/ToolTransform.py:759
  2360. msgid "Applying Skew"
  2361. msgstr "Применение наклона"
  2362. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2363. #: flatcamEditors/FlatCAMGrbEditor.py:5551 flatcamTools/ToolTransform.py:790
  2364. #, python-format
  2365. msgid "[success] Skew on the %s axis done ..."
  2366. msgstr "[success] Наклон по оси %s выполнен ..."
  2367. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2368. #: flatcamEditors/FlatCAMGrbEditor.py:5555 flatcamTools/ToolTransform.py:794
  2369. #, python-format
  2370. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2371. msgstr "[ERROR_NOTCL] Из-за %s наклон не был выполнен."
  2372. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2373. #: flatcamEditors/FlatCAMGrbEditor.py:5574
  2374. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2375. msgstr ""
  2376. "[WARNING_NOTCL] Фигура не выбрана. Пожалуйста, выберите фигуру для "
  2377. "масштабирования!"
  2378. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2379. #: flatcamEditors/FlatCAMGrbEditor.py:5577 flatcamTools/ToolTransform.py:808
  2380. msgid "Applying Scale"
  2381. msgstr "Применение масштабирования"
  2382. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2383. #: flatcamEditors/FlatCAMGrbEditor.py:5615 flatcamTools/ToolTransform.py:847
  2384. #, python-format
  2385. msgid "[success] Scale on the %s axis done ..."
  2386. msgstr "[success] Масштабирование по оси %s выполнено ..."
  2387. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2388. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:850
  2389. #, python-format
  2390. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2391. msgstr "[ERROR_NOTCL] Из-за %s, операция масштабирования не была выполнена."
  2392. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2393. #: flatcamEditors/FlatCAMGrbEditor.py:5631
  2394. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2395. msgstr ""
  2396. "[WARNING_NOTCL] Фигура не выбрана. Пожалуйста, выберите фигуру для смещения!"
  2397. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2398. #: flatcamEditors/FlatCAMGrbEditor.py:5634 flatcamTools/ToolTransform.py:860
  2399. msgid "Applying Offset"
  2400. msgstr "Применение смещения"
  2401. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2402. #: flatcamEditors/FlatCAMGrbEditor.py:5656 flatcamTools/ToolTransform.py:879
  2403. #, python-format
  2404. msgid "[success] Offset on the %s axis done ..."
  2405. msgstr "[success] Смещение по оси %s выполнено ..."
  2406. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2407. #: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:883
  2408. #, python-format
  2409. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2410. msgstr "[ERROR_NOTCL] Из-за %s операция смещения не была выполнена."
  2411. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2412. #: flatcamEditors/FlatCAMGrbEditor.py:5664
  2413. msgid "Rotate ..."
  2414. msgstr "Поворот ..."
  2415. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2416. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2417. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2418. #: flatcamEditors/FlatCAMGrbEditor.py:5665
  2419. #: flatcamEditors/FlatCAMGrbEditor.py:5722
  2420. #: flatcamEditors/FlatCAMGrbEditor.py:5739
  2421. msgid "Enter an Angle Value (degrees):"
  2422. msgstr "Введите значение угла (градусы):"
  2423. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2424. #: flatcamEditors/FlatCAMGrbEditor.py:5674
  2425. msgid "[success] Geometry shape rotate done..."
  2426. msgstr "[success] Вращение фигуры выполнено..."
  2427. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2428. #: flatcamEditors/FlatCAMGrbEditor.py:5679
  2429. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2430. msgstr "[WARNING_NOTCL] Вращение фигуры отменено..."
  2431. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2432. #: flatcamEditors/FlatCAMGrbEditor.py:5685
  2433. msgid "Offset on X axis ..."
  2434. msgstr "Смещение по оси X ..."
  2435. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2436. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2437. #: flatcamEditors/FlatCAMGrbEditor.py:5686
  2438. #: flatcamEditors/FlatCAMGrbEditor.py:5705
  2439. #, python-format
  2440. msgid "Enter a distance Value (%s):"
  2441. msgstr "Введите значение расстояния (%s):"
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5695
  2444. msgid "[success] Geometry shape offset on X axis done..."
  2445. msgstr "[success] Смещение формы по оси X выполнено..."
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2447. #: flatcamEditors/FlatCAMGrbEditor.py:5699
  2448. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2449. msgstr "[WARNING_NOTCL] Смещение формы по оси X отменено..."
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2451. #: flatcamEditors/FlatCAMGrbEditor.py:5704
  2452. msgid "Offset on Y axis ..."
  2453. msgstr "Смещение по оси Y ..."
  2454. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2455. #: flatcamEditors/FlatCAMGrbEditor.py:5714
  2456. msgid "[success] Geometry shape offset on Y axis done..."
  2457. msgstr "[success] Смещение формы по оси Y выполнено..."
  2458. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2459. #: flatcamEditors/FlatCAMGrbEditor.py:5718
  2460. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2461. msgstr "[WARNING_NOTCL] Смещение формы по оси Y отменено..."
  2462. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2463. #: flatcamEditors/FlatCAMGrbEditor.py:5721
  2464. msgid "Skew on X axis ..."
  2465. msgstr "Наклон по оси X ..."
  2466. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2467. #: flatcamEditors/FlatCAMGrbEditor.py:5731
  2468. msgid "[success] Geometry shape skew on X axis done..."
  2469. msgstr "[success] Наклон формы по оси X выполнен..."
  2470. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2471. #: flatcamEditors/FlatCAMGrbEditor.py:5735
  2472. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2473. msgstr "[WARNING_NOTCL] Наклон формы по оси X отменён..."
  2474. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2475. #: flatcamEditors/FlatCAMGrbEditor.py:5738
  2476. msgid "Skew on Y axis ..."
  2477. msgstr "Наклон по оси Y ..."
  2478. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2479. #: flatcamEditors/FlatCAMGrbEditor.py:5748
  2480. msgid "[success] Geometry shape skew on Y axis done..."
  2481. msgstr "[success] Наклон формы по оси Y выполнен..."
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:5752
  2484. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2485. msgstr "[WARNING_NOTCL] Наклон формы по оси Y отменён..."
  2486. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2487. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2488. #: flatcamEditors/FlatCAMGrbEditor.py:1361
  2489. #: flatcamEditors/FlatCAMGrbEditor.py:1430
  2490. msgid "Click on Center point ..."
  2491. msgstr "Нажмите на центральную точку ..."
  2492. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2493. #: flatcamEditors/FlatCAMGrbEditor.py:1369
  2494. msgid "Click on Perimeter point to complete ..."
  2495. msgstr "Для завершения щелкните по периметру ..."
  2496. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2497. msgid "[success] Done. Adding Circle completed."
  2498. msgstr "[success] Готово. Добавление круга завершено."
  2499. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2500. #: flatcamEditors/FlatCAMGrbEditor.py:1462
  2501. msgid "Click on Start point ..."
  2502. msgstr "Нажмите на точку начала отсчета..."
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2504. #: flatcamEditors/FlatCAMGrbEditor.py:1464
  2505. msgid "Click on Point3 ..."
  2506. msgstr "Нажмите на 3-ю точку ..."
  2507. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2508. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2509. msgid "Click on Stop point ..."
  2510. msgstr "Нажмите на конечную точку ..."
  2511. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2512. #: flatcamEditors/FlatCAMGrbEditor.py:1471
  2513. msgid "Click on Stop point to complete ..."
  2514. msgstr "Нажмите на конечную точку для завершения ..."
  2515. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2516. #: flatcamEditors/FlatCAMGrbEditor.py:1473
  2517. msgid "Click on Point2 to complete ..."
  2518. msgstr "Нажмите на 2-ю точку для завершения ..."
  2519. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2520. #: flatcamEditors/FlatCAMGrbEditor.py:1475
  2521. msgid "Click on Center point to complete ..."
  2522. msgstr "Нажмите на центральную точку для завершения..."
  2523. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2524. #: flatcamEditors/FlatCAMGrbEditor.py:1487
  2525. #, python-format
  2526. msgid "Direction: %s"
  2527. msgstr "Направление: %s"
  2528. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2529. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2530. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2531. msgstr "Режим: Старт -> Стоп -> Центр. Нажмите на начальную точку ..."
  2532. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2533. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2534. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2535. msgstr "Режим: Точка1 -> Точка3 -> Точка2. Нажмите на Точку1 ..."
  2536. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2537. #: flatcamEditors/FlatCAMGrbEditor.py:1503
  2538. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2539. msgstr "Режим: Центр -> Старт -> Стоп. Нажмите на центральную точку ..."
  2540. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2541. msgid "[success] Done. Arc completed."
  2542. msgstr "[success] Готово. Дуга завершена."
  2543. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2544. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2545. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2546. msgid "Click on 1st corner ..."
  2547. msgstr "Нажмите на 1-ый угол ..."
  2548. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2549. msgid "Click on opposite corner to complete ..."
  2550. msgstr "Нажмите на противоположном углу для завершения ..."
  2551. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2552. msgid "[success] Done. Rectangle completed."
  2553. msgstr "[success] Готово. Прямоугольник завершен."
  2554. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2555. msgid "Click on next Point or click right mouse button to complete ..."
  2556. msgstr ""
  2557. "Нажмите на следующую точку или щелкните правой кнопкой мыши для "
  2558. "завершения ..."
  2559. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2560. msgid "[success] Done. Polygon completed."
  2561. msgstr "[success] Готово. Полигон завершен."
  2562. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2563. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2564. #: flatcamEditors/FlatCAMGrbEditor.py:1058
  2565. #: flatcamEditors/FlatCAMGrbEditor.py:1252
  2566. msgid "Backtracked one point ..."
  2567. msgstr "Отступ на одну точку ..."
  2568. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2569. msgid "[success] Done. Path completed."
  2570. msgstr "[success] Готово. Путь завершен."
  2571. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2572. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2573. msgstr ""
  2574. "[WARNING_NOTCL] ПЕРЕМЕЩЕНИЕ: Фигура не выбрана. Выберите фигуру для "
  2575. "перемещения ..."
  2576. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2577. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2578. msgid " MOVE: Click on reference point ..."
  2579. msgstr " Перемещение: Нажмите на исходную точку ..."
  2580. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2581. msgid " Click on destination point ..."
  2582. msgstr " Нажмите на конечную точку ..."
  2583. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2584. msgid "[success] Done. Geometry(s) Move completed."
  2585. msgstr "[success] Готово. Перемещение Geometry завершено."
  2586. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2587. msgid "[success] Done. Geometry(s) Copy completed."
  2588. msgstr "[success] Готово. Копирование Geometry завершено."
  2589. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  2590. #, python-format
  2591. msgid ""
  2592. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2593. "supported. Error: %s"
  2594. msgstr ""
  2595. "[ERROR] Шрифт не поддерживается. Поддерживаются только обычный, полужирный, "
  2596. "курсив и полужирный курсив. Ошибка: %s"
  2597. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  2598. msgid "[success] Done. Adding Text completed."
  2599. msgstr "[success] Готово. Добавление текста завершено."
  2600. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  2601. msgid "Create buffer geometry ..."
  2602. msgstr "Создание геометрии буфера ..."
  2603. #: flatcamEditors/FlatCAMGeoEditor.py:2689
  2604. #: flatcamEditors/FlatCAMGeoEditor.py:2715
  2605. #: flatcamEditors/FlatCAMGeoEditor.py:2741
  2606. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2607. msgstr "[WARNING_NOTCL] Создание буфера отменено. Фигура не выбрана."
  2608. #: flatcamEditors/FlatCAMGeoEditor.py:2711
  2609. #: flatcamEditors/FlatCAMGrbEditor.py:4558
  2610. msgid "[success] Done. Buffer Tool completed."
  2611. msgstr "[success] Готово. Создание буфера завершено."
  2612. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  2613. msgid "[success] Done. Buffer Int Tool completed."
  2614. msgstr "[success] Готово. Внутренний буфер создан."
  2615. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2616. msgid "[success] Done. Buffer Ext Tool completed."
  2617. msgstr "[success] Готово. Внешний буфер создан."
  2618. #: flatcamEditors/FlatCAMGeoEditor.py:2798
  2619. #: flatcamEditors/FlatCAMGrbEditor.py:2025
  2620. msgid "Select a shape to act as deletion area ..."
  2621. msgstr "Выберите фигуру в качестве области для удаления ..."
  2622. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2623. #: flatcamEditors/FlatCAMGeoEditor.py:2819
  2624. #: flatcamEditors/FlatCAMGeoEditor.py:2825
  2625. #: flatcamEditors/FlatCAMGrbEditor.py:2027
  2626. msgid "Click to pick-up the erase shape..."
  2627. msgstr "Кликните, что бы выбрать фигуру для стирания ..."
  2628. #: flatcamEditors/FlatCAMGeoEditor.py:2829
  2629. #: flatcamEditors/FlatCAMGrbEditor.py:2084
  2630. msgid "Click to erase ..."
  2631. msgstr "Нажмите для очистки ..."
  2632. #: flatcamEditors/FlatCAMGeoEditor.py:2858
  2633. #: flatcamEditors/FlatCAMGrbEditor.py:2117
  2634. msgid "[success] Done. Eraser tool action completed."
  2635. msgstr "[success] Готово. Действие инструмента стирания завершено.."
  2636. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  2637. msgid "Create Paint geometry ..."
  2638. msgstr "Создать геометрию окрашивания ..."
  2639. #: flatcamEditors/FlatCAMGeoEditor.py:2915
  2640. #: flatcamEditors/FlatCAMGrbEditor.py:2259
  2641. msgid "Shape transformations ..."
  2642. msgstr "Преобразования фигуры ..."
  2643. #: flatcamEditors/FlatCAMGeoEditor.py:3419
  2644. #, python-brace-format
  2645. msgid ""
  2646. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2647. msgstr ""
  2648. "[WARNING_NOTCL] Редактирование MultiGeo Geometry, инструментом: {tool} с "
  2649. "диаметром: {dia}"
  2650. #: flatcamEditors/FlatCAMGeoEditor.py:3796
  2651. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2652. msgstr "[WARNING_NOTCL] Копирование отменено. Форма не выбрана."
  2653. #: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2746
  2654. #: flatcamGUI/FlatCAMGUI.py:2792 flatcamGUI/FlatCAMGUI.py:2810
  2655. #: flatcamGUI/FlatCAMGUI.py:2941 flatcamGUI/FlatCAMGUI.py:2953
  2656. #: flatcamGUI/FlatCAMGUI.py:2987
  2657. msgid "Click on target point."
  2658. msgstr "Нажмите на целевой точке."
  2659. #: flatcamEditors/FlatCAMGeoEditor.py:4047
  2660. #: flatcamEditors/FlatCAMGeoEditor.py:4082
  2661. msgid ""
  2662. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2663. "Intersection."
  2664. msgstr ""
  2665. "[WARNING_NOTCL] Выберите по крайней мере 2 geo элемента, что-бы сделать "
  2666. "пересечение."
  2667. #: flatcamEditors/FlatCAMGeoEditor.py:4166
  2668. #: flatcamEditors/FlatCAMGeoEditor.py:4204
  2669. #: flatcamEditors/FlatCAMGeoEditor.py:4280
  2670. msgid ""
  2671. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2672. "generate an 'inside' shape"
  2673. msgstr ""
  2674. "[ERROR_NOTCL] Отрицательное значение буфера не принимается. Используйте "
  2675. "внутренний буфер для создания \"внутри\" формы"
  2676. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2677. #: flatcamEditors/FlatCAMGeoEditor.py:4213
  2678. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2679. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2680. msgstr "[WARNING_NOTCL] Ничего не выбрано для создания буфера."
  2681. #: flatcamEditors/FlatCAMGeoEditor.py:4179
  2682. #: flatcamEditors/FlatCAMGeoEditor.py:4217
  2683. #: flatcamEditors/FlatCAMGeoEditor.py:4292
  2684. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2685. msgstr "[WARNING_NOTCL] Недопустимое расстояние для создания буфера."
  2686. #: flatcamEditors/FlatCAMGeoEditor.py:4189
  2687. #: flatcamEditors/FlatCAMGeoEditor.py:4301
  2688. msgid ""
  2689. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2690. msgstr ""
  2691. "[ERROR_NOTCL] Ошибка, результат нулевой. Выберите другое значение буфера."
  2692. #: flatcamEditors/FlatCAMGeoEditor.py:4197
  2693. msgid "[success] Full buffer geometry created."
  2694. msgstr "[success] Создана геометрия полного буфера."
  2695. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2696. msgid ""
  2697. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2698. msgstr ""
  2699. "[ERROR_NOTCL] Ошибка, результат нулевой. Выберите меньшее значение буфера."
  2700. #: flatcamEditors/FlatCAMGeoEditor.py:4242
  2701. msgid "[success] Interior buffer geometry created."
  2702. msgstr "[success] Создана геометрия внутреннего буфера."
  2703. #: flatcamEditors/FlatCAMGeoEditor.py:4313
  2704. msgid "[success] Exterior buffer geometry created."
  2705. msgstr "[success] Создана геометрия внешнего буфера."
  2706. #: flatcamEditors/FlatCAMGeoEditor.py:4377
  2707. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2708. msgstr "[WARNING_NOTCL] Ничего не выбрано для рисования."
  2709. #: flatcamEditors/FlatCAMGeoEditor.py:4383
  2710. msgid "[WARNING] Invalid value for {}"
  2711. msgstr "[WARNING] Неверное значение для {}"
  2712. #: flatcamEditors/FlatCAMGeoEditor.py:4389
  2713. msgid ""
  2714. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2715. "(100%)."
  2716. msgstr ""
  2717. "[ERROR_NOTCL] Окраска не выполнена. Значение перекрытия должно быть меньше "
  2718. "1,00 (100%)."
  2719. #: flatcamEditors/FlatCAMGeoEditor.py:4448
  2720. #, python-format
  2721. msgid ""
  2722. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2723. "different method of Paint\n"
  2724. "%s"
  2725. msgstr ""
  2726. "[ERROR] Окраска не выполнена. Попробуйте другую комбинацию параметров. Или "
  2727. "другой способ рисования\n"
  2728. "%s"
  2729. #: flatcamEditors/FlatCAMGeoEditor.py:4459
  2730. msgid "[success] Paint done."
  2731. msgstr "[success] Окраска выполнена."
  2732. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2733. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2734. msgstr ""
  2735. "[WARNING_NOTCL] Чтобы добавить площадку, сначала выберите отверстие в "
  2736. "таблице отверстий"
  2737. #: flatcamEditors/FlatCAMGrbEditor.py:206
  2738. #: flatcamEditors/FlatCAMGrbEditor.py:398
  2739. msgid ""
  2740. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2741. msgstr ""
  2742. "[WARNING_NOTCL] Размер отверстия равен нулю. Он должен быть больше нуля."
  2743. #: flatcamEditors/FlatCAMGrbEditor.py:357
  2744. #: flatcamEditors/FlatCAMGrbEditor.py:662
  2745. msgid ""
  2746. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2747. msgstr ""
  2748. "Несовместимый тип отверстия. Выберите отверстие с типом 'C', 'R' или 'O'."
  2749. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2750. msgid "[success] Done. Adding Pad completed."
  2751. msgstr "[success] Готово. Добавление площадки завершено."
  2752. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2753. msgid ""
  2754. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2755. msgstr ""
  2756. "[WARNING_NOTCL] Чтобы добавить массив площадок, сначала выберите отверстие в "
  2757. "таблице отверстий"
  2758. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2759. msgid "Click on the Pad Circular Array Start position"
  2760. msgstr "Нажмите на начальную точку кругового массива контактных площадок"
  2761. #: flatcamEditors/FlatCAMGrbEditor.py:497
  2762. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  2763. msgstr "[ERROR_NOTCL] Значение введено с ошибкой. Проверьте значение."
  2764. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2765. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2766. msgstr "[WARNING_NOTCL] Слишком много площадок для выбранного интервала угла."
  2767. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2768. msgid "[success] Done. Pad Array added."
  2769. msgstr "[success] Done. Pad Array added."
  2770. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2771. msgid "Select shape(s) and then click ..."
  2772. msgstr "Выберите фигуры, а затем нажмите ..."
  2773. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2774. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2775. msgstr "[ERROR_NOTCL] Ошибка. Ничего не выбрано."
  2776. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2777. msgid ""
  2778. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2779. "same aperture."
  2780. msgstr ""
  2781. "[WARNING_NOTCL] Неудачный. Полигонизация работает только с геометриями, "
  2782. "принадлежащими к одному отверстию."
  2783. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2784. msgid "[success] Done. Poligonize completed."
  2785. msgstr "[success] Готово. Полигонизация выполнена."
  2786. #: flatcamEditors/FlatCAMGrbEditor.py:860
  2787. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2788. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2789. msgid "Corner Mode 1: 45 degrees ..."
  2790. msgstr "Угловой режим 1: 45 градусов ..."
  2791. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2792. msgid "Click on 1st point ..."
  2793. msgstr "Нажмите на 1-й точке ..."
  2794. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2795. #: flatcamEditors/FlatCAMGrbEditor.py:1170
  2796. msgid "Click on next Point or click Right mouse button to complete ..."
  2797. msgstr ""
  2798. "Нажмите на следующую точку или щелкните правой кнопкой мыши для "
  2799. "завершения ..."
  2800. #: flatcamEditors/FlatCAMGrbEditor.py:1063
  2801. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2802. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2803. msgstr "Угловой режим 2: реверс 45 градусов ..."
  2804. #: flatcamEditors/FlatCAMGrbEditor.py:1066
  2805. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2806. msgid "Corner Mode 3: 90 degrees ..."
  2807. msgstr "Угловой режим 3: 90 градусов ..."
  2808. #: flatcamEditors/FlatCAMGrbEditor.py:1069
  2809. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2810. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2811. msgstr "Угловой режим 4: реверс 90 градусов ..."
  2812. #: flatcamEditors/FlatCAMGrbEditor.py:1072
  2813. #: flatcamEditors/FlatCAMGrbEditor.py:1087
  2814. msgid "Corner Mode 5: Free angle ..."
  2815. msgstr "Угловой режим 5: свободный угол ..."
  2816. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2817. #: flatcamEditors/FlatCAMGrbEditor.py:1284
  2818. #: flatcamEditors/FlatCAMGrbEditor.py:1323
  2819. msgid "Track Mode 1: 45 degrees ..."
  2820. msgstr "Режим дорожки 1: 45 градусов ..."
  2821. #: flatcamEditors/FlatCAMGrbEditor.py:1264
  2822. #: flatcamEditors/FlatCAMGrbEditor.py:1318
  2823. msgid "Track Mode 2: Reverse 45 degrees ..."
  2824. msgstr "Режим дорожки 2: реверс 45 градусов ..."
  2825. #: flatcamEditors/FlatCAMGrbEditor.py:1269
  2826. #: flatcamEditors/FlatCAMGrbEditor.py:1313
  2827. msgid "Track Mode 3: 90 degrees ..."
  2828. msgstr "Режим дорожки 3: 90 градусов ..."
  2829. #: flatcamEditors/FlatCAMGrbEditor.py:1274
  2830. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2831. msgid "Track Mode 4: Reverse 90 degrees ..."
  2832. msgstr "Режим дорожки 4: реверс 90 градусов ..."
  2833. #: flatcamEditors/FlatCAMGrbEditor.py:1279
  2834. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2835. msgid "Track Mode 5: Free angle ..."
  2836. msgstr "Режим дорожки 5: свободный угол ..."
  2837. #: flatcamEditors/FlatCAMGrbEditor.py:1683
  2838. msgid "Scale the selected Gerber apertures ..."
  2839. msgstr "Масштабирование выбранных отверстий Gerber ..."
  2840. #: flatcamEditors/FlatCAMGrbEditor.py:1725
  2841. msgid "Buffer the selected apertures ..."
  2842. msgstr "Создание буфера для выбранных отверстий ..."
  2843. #: flatcamEditors/FlatCAMGrbEditor.py:1767
  2844. msgid "Mark polygon areas in the edited Gerber ..."
  2845. msgstr "Отметьте полигональные области в отредактированном Gerber ..."
  2846. #: flatcamEditors/FlatCAMGrbEditor.py:1811
  2847. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2848. msgstr "[WARNING_NOTCL] Ничего не выбрано для перемещения ..."
  2849. #: flatcamEditors/FlatCAMGrbEditor.py:1934
  2850. msgid "[success] Done. Apertures Move completed."
  2851. msgstr "[success] Готово. Перемещение отверстий завершено."
  2852. #: flatcamEditors/FlatCAMGrbEditor.py:2010
  2853. msgid "[success] Done. Apertures copied."
  2854. msgstr "[success] Готово. Отверстия скопированы."
  2855. #: flatcamEditors/FlatCAMGrbEditor.py:2301 flatcamGUI/FlatCAMGUI.py:1615
  2856. #: flatcamGUI/FlatCAMGUI.py:4342
  2857. msgid "Gerber Editor"
  2858. msgstr "Редактор Gerber"
  2859. #: flatcamEditors/FlatCAMGrbEditor.py:2321 flatcamGUI/ObjectUI.py:192
  2860. msgid "<b>Apertures:</b>"
  2861. msgstr "<b>Отверстия:</b>"
  2862. #: flatcamEditors/FlatCAMGrbEditor.py:2323 flatcamGUI/ObjectUI.py:194
  2863. msgid "Apertures Table for the Gerber Object."
  2864. msgstr "Таблица отверстий для объекта Gerber."
  2865. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2866. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2867. msgid "Code"
  2868. msgstr "Код"
  2869. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2870. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2871. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  2872. msgid "Type"
  2873. msgstr "Тип"
  2874. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2875. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2876. msgid "Size"
  2877. msgstr "Размер"
  2878. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2879. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2880. msgid "Dim"
  2881. msgstr "Размер"
  2882. #: flatcamEditors/FlatCAMGrbEditor.py:2338 flatcamGUI/ObjectUI.py:231
  2883. msgid "Index"
  2884. msgstr "Индекс"
  2885. #: flatcamEditors/FlatCAMGrbEditor.py:2340 flatcamGUI/ObjectUI.py:233
  2886. msgid "Aperture Code"
  2887. msgstr "Код отверстия"
  2888. #: flatcamEditors/FlatCAMGrbEditor.py:2342 flatcamGUI/ObjectUI.py:235
  2889. msgid "Type of aperture: circular, rectangle, macros etc"
  2890. msgstr "Тип отверстия: круг, прямоугольник, макросы и так далее"
  2891. #: flatcamEditors/FlatCAMGrbEditor.py:2344
  2892. #: flatcamEditors/FlatCAMGrbEditor.py:2377 flatcamGUI/ObjectUI.py:237
  2893. msgid "Aperture Size:"
  2894. msgstr "Размер отверстия:"
  2895. #: flatcamEditors/FlatCAMGrbEditor.py:2346 flatcamGUI/ObjectUI.py:239
  2896. msgid ""
  2897. "Aperture Dimensions:\n"
  2898. " - (width, height) for R, O type.\n"
  2899. " - (dia, nVertices) for P type"
  2900. msgstr ""
  2901. "Размеры отверстия:\n"
  2902. " - (ширина, высота) для типа R, O.\n"
  2903. " - (диам., nVertices) для типа P"
  2904. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  2905. msgid "Aperture Code:"
  2906. msgstr "Код отверстия:"
  2907. #: flatcamEditors/FlatCAMGrbEditor.py:2369
  2908. msgid "Code for the new aperture"
  2909. msgstr "Код для нового отверстия"
  2910. #: flatcamEditors/FlatCAMGrbEditor.py:2379
  2911. msgid ""
  2912. "Size for the new aperture.\n"
  2913. "If aperture type is 'R' or 'O' then\n"
  2914. "this value is automatically\n"
  2915. "calculated as:\n"
  2916. "sqrt(width**2 + height**2)"
  2917. msgstr ""
  2918. "Размер нового отверстия.\n"
  2919. "Если тип отверстия 'R' или 'O', то\n"
  2920. "это значение автоматически\n"
  2921. "рассчитывается как:\n"
  2922. "sqrt(ширина ** 2 + высота ** 2)"
  2923. #: flatcamEditors/FlatCAMGrbEditor.py:2391
  2924. msgid "Aperture Type:"
  2925. msgstr "Тип отверстия:"
  2926. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  2927. msgid ""
  2928. "Select the type of new aperture. Can be:\n"
  2929. "C = circular\n"
  2930. "R = rectangular\n"
  2931. "O = oblong"
  2932. msgstr ""
  2933. "Выбор типа нового отверстия. Варианты:\n"
  2934. "C = круговое\n"
  2935. "R = прямоугольное\n"
  2936. "O = продолговатое"
  2937. #: flatcamEditors/FlatCAMGrbEditor.py:2404
  2938. msgid "Aperture Dim:"
  2939. msgstr "Разм. отверстия:"
  2940. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  2941. msgid ""
  2942. "Dimensions for the new aperture.\n"
  2943. "Active only for rectangular apertures (type R).\n"
  2944. "The format is (width, height)"
  2945. msgstr ""
  2946. "Размеры для нового отверстия.\n"
  2947. "Активен только для прямоугольных отверстий (тип R).\n"
  2948. "Формат (ширина, высота)"
  2949. #: flatcamEditors/FlatCAMGrbEditor.py:2415
  2950. msgid "Add/Delete Aperture:"
  2951. msgstr "Добавить/Удалить отверстие:"
  2952. #: flatcamEditors/FlatCAMGrbEditor.py:2417
  2953. msgid "Add/Delete an aperture in the aperture table"
  2954. msgstr "Добавляет/Удаляет отверстие в таблице отверстий"
  2955. #: flatcamEditors/FlatCAMGrbEditor.py:2426
  2956. msgid "Add a new aperture to the aperture list."
  2957. msgstr "Добавляет новое отверстие в список отверстий."
  2958. #: flatcamEditors/FlatCAMGrbEditor.py:2431
  2959. msgid "Delete a aperture in the aperture list"
  2960. msgstr "Удаляет отверстие в таблице отверстий"
  2961. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  2962. msgid "Buffer Aperture:"
  2963. msgstr "Буфер отверстия:"
  2964. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  2965. msgid "Buffer a aperture in the aperture list"
  2966. msgstr "Создаёт буфер для отверстия в списке отверстий"
  2967. #: flatcamEditors/FlatCAMGrbEditor.py:2463
  2968. msgid ""
  2969. "There are 3 types of corners:\n"
  2970. " - 'Round': the corner is rounded.\n"
  2971. " - 'Square:' the corner is met in a sharp angle.\n"
  2972. " - 'Beveled:' the corner is a line that directly connects the features "
  2973. "meeting in the corner"
  2974. msgstr ""
  2975. "Существует 3 типа углов:\n"
  2976. " - 'Круг': угол закруглен.\n"
  2977. " - 'Квадрат': угол встречается под острым углом.\n"
  2978. " - 'Скошенный:' угол-это линия, которая непосредственно соединяет элементы, "
  2979. "встречающиеся в углу"
  2980. #: flatcamEditors/FlatCAMGrbEditor.py:2478 flatcamGUI/FlatCAMGUI.py:713
  2981. #: flatcamGUI/FlatCAMGUI.py:1954
  2982. msgid "Buffer"
  2983. msgstr "Буфер"
  2984. #: flatcamEditors/FlatCAMGrbEditor.py:2493
  2985. msgid "Scale Aperture:"
  2986. msgstr "Масштаб. отверстий:"
  2987. #: flatcamEditors/FlatCAMGrbEditor.py:2495
  2988. msgid "Scale a aperture in the aperture list"
  2989. msgstr "Масштабирование отверстия в списке отверстий"
  2990. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  2991. msgid "Scale factor:"
  2992. msgstr "Коэффициент масш.:"
  2993. #: flatcamEditors/FlatCAMGrbEditor.py:2505
  2994. msgid ""
  2995. "The factor by which to scale the selected aperture.\n"
  2996. "Values can be between 0.0000 and 999.9999"
  2997. msgstr ""
  2998. "Коэффициент масштабирования выбранного отверстия.\n"
  2999. "Значения могут быть между 0.0000 и 999.9999"
  3000. #: flatcamEditors/FlatCAMGrbEditor.py:2531
  3001. msgid "Mark polygon areas:"
  3002. msgstr "Пометить полигональные области:"
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:2533
  3004. msgid "Mark the polygon areas."
  3005. msgstr "Отметьте полигональные области."
  3006. #: flatcamEditors/FlatCAMGrbEditor.py:2541
  3007. msgid "Area UPPER threshold:"
  3008. msgstr "Верхней части порога:"
  3009. #: flatcamEditors/FlatCAMGrbEditor.py:2543
  3010. msgid ""
  3011. "The threshold value, all areas less than this are marked.\n"
  3012. "Can have a value between 0.0000 and 9999.9999"
  3013. msgstr ""
  3014. "Пороговое значение, всех участков за вычетом отмеченных.\n"
  3015. "Может иметь значение от 0,0000 до 9999,9999"
  3016. #: flatcamEditors/FlatCAMGrbEditor.py:2549
  3017. msgid "Area LOWER threshold:"
  3018. msgstr "Нижний порог области:"
  3019. #: flatcamEditors/FlatCAMGrbEditor.py:2551
  3020. msgid ""
  3021. "The threshold value, all areas more than this are marked.\n"
  3022. "Can have a value between 0.0000 and 9999.9999"
  3023. msgstr ""
  3024. "Пороговое значение, всех участков больше отмеченых.\n"
  3025. "Может иметь значение от 0,0000 до 9999,9999"
  3026. #: flatcamEditors/FlatCAMGrbEditor.py:2564
  3027. msgid "Go"
  3028. msgstr "Выполнять"
  3029. #: flatcamEditors/FlatCAMGrbEditor.py:2584 flatcamGUI/FlatCAMGUI.py:703
  3030. #: flatcamGUI/FlatCAMGUI.py:1944
  3031. msgid "Add Pad Array"
  3032. msgstr "Добавить массив контактных площадок"
  3033. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  3034. msgid "Add an array of pads (linear or circular array)"
  3035. msgstr "Добавляет массив контактных площадок (линейный или круговой массив)"
  3036. #: flatcamEditors/FlatCAMGrbEditor.py:2592
  3037. msgid ""
  3038. "Select the type of pads array to create.\n"
  3039. "It can be Linear X(Y) or Circular"
  3040. msgstr ""
  3041. "Выбор типа массива контактных площадок.\n"
  3042. "Он может быть линейным X (Y) или круговым"
  3043. #: flatcamEditors/FlatCAMGrbEditor.py:2603
  3044. msgid "Nr of pads:"
  3045. msgstr "№ площ.:"
  3046. #: flatcamEditors/FlatCAMGrbEditor.py:2605
  3047. msgid "Specify how many pads to be in the array."
  3048. msgstr "Укажите, сколько контактных площадок должно быть в массиве."
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:3093
  3050. #: flatcamEditors/FlatCAMGrbEditor.py:3097
  3051. msgid ""
  3052. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  3053. "retry."
  3054. msgstr ""
  3055. "[WARNING_NOTCL] Отсутствует значение кода отверстия или оно имеет "
  3056. "неправильный формат. Добавьте его и повторите попытку."
  3057. #: flatcamEditors/FlatCAMGrbEditor.py:3133
  3058. msgid ""
  3059. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3060. "in format (width, height) and retry."
  3061. msgstr ""
  3062. "[WARNING_NOTCL] Отсутствует значение размера отверстия или оно имеет "
  3063. "неправильный формат. Добавьте его в формате (ширина, высота) и повторите "
  3064. "попытку."
  3065. #: flatcamEditors/FlatCAMGrbEditor.py:3145
  3066. msgid ""
  3067. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3068. "retry."
  3069. msgstr ""
  3070. "[WARNING_NOTCL] Отсутствует значение размера отверстия или оно имеет "
  3071. "неправильный формат. Добавьте его и повторите попытку."
  3072. #: flatcamEditors/FlatCAMGrbEditor.py:3156
  3073. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  3074. msgstr "[WARNING_NOTCL] Отверстие уже присутствует в таблице отверстий."
  3075. #: flatcamEditors/FlatCAMGrbEditor.py:3163
  3076. #, python-brace-format
  3077. msgid "[success] Added new aperture with code: {apid}"
  3078. msgstr "[success] Добавлено новое отверстие с кодом: {apid}"
  3079. #: flatcamEditors/FlatCAMGrbEditor.py:3191
  3080. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3081. msgstr "[WARNING_NOTCL] Выберите отверстие в таблице отверстий"
  3082. #: flatcamEditors/FlatCAMGrbEditor.py:3197
  3083. #, python-format
  3084. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3085. msgstr "[WARNING_NOTCL] Выберите отверстие в таблице отверстий --> %s"
  3086. #: flatcamEditors/FlatCAMGrbEditor.py:3220
  3087. #, python-brace-format
  3088. msgid "[success] Deleted aperture with code: {del_dia}"
  3089. msgstr "[success] Удалено отверстие с кодом: {del_dia}"
  3090. #: flatcamEditors/FlatCAMGrbEditor.py:3641
  3091. #, python-format
  3092. msgid "Adding aperture: %s geo ..."
  3093. msgstr "Добавление отверстия: %s geo ..."
  3094. #: flatcamEditors/FlatCAMGrbEditor.py:3829
  3095. msgid ""
  3096. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3097. "creation."
  3098. msgstr "[ERROR_NOTCL] В файле нет отверстий. Прерывание создания Gerber."
  3099. #: flatcamEditors/FlatCAMGrbEditor.py:3837
  3100. msgid "Creating Gerber."
  3101. msgstr "Создание Gerber."
  3102. #: flatcamEditors/FlatCAMGrbEditor.py:3845
  3103. msgid "[success] Gerber editing finished."
  3104. msgstr "[success] Редактирование Gerber завершено."
  3105. #: flatcamEditors/FlatCAMGrbEditor.py:3861
  3106. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3107. msgstr "[WARNING_NOTCL] Отмена. Нет выбранных отверстий"
  3108. #: flatcamEditors/FlatCAMGrbEditor.py:4391
  3109. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3110. msgstr "[ERROR_NOTCL] Ошибка. Не выбрана геометрия отверстий."
  3111. #: flatcamEditors/FlatCAMGrbEditor.py:4399
  3112. msgid "[success] Done. Apertures geometry deleted."
  3113. msgstr "[success] Готово. Геометрия отверстий удалена."
  3114. #: flatcamEditors/FlatCAMGrbEditor.py:4542
  3115. msgid ""
  3116. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3117. "again."
  3118. msgstr ""
  3119. "[WARNING_NOTCL] Нет отверстий для создания буфера. Выберите хотя бы одно "
  3120. "отверстие и повторите попытку."
  3121. #: flatcamEditors/FlatCAMGrbEditor.py:4555
  3122. #, python-format
  3123. msgid ""
  3124. "[ERROR_NOTCL] Failed.\n"
  3125. "%s"
  3126. msgstr ""
  3127. "[ERROR_NOTCL] Ошибка.\n"
  3128. "%s"
  3129. #: flatcamEditors/FlatCAMGrbEditor.py:4572
  3130. msgid ""
  3131. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3132. "retry."
  3133. msgstr ""
  3134. "[WARNING_NOTCL] Отсутствует значение коэффициента масштабирования или оно "
  3135. "имеет неправильный формат. Добавьте его и повторите попытку."
  3136. #: flatcamEditors/FlatCAMGrbEditor.py:4605
  3137. msgid ""
  3138. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3139. "again."
  3140. msgstr ""
  3141. "[WARNING_NOTCL] Нет отверстий для масштабирования. Выберите хотя бы одно "
  3142. "отверстие и повторите попытку."
  3143. #: flatcamEditors/FlatCAMGrbEditor.py:4621
  3144. msgid "[success] Done. Scale Tool completed."
  3145. msgstr "[success] Готово. Масштабирование выполнено."
  3146. #: flatcamEditors/FlatCAMGrbEditor.py:4658
  3147. msgid "[success] Polygon areas marked."
  3148. msgstr "[success] Полигональные области отмечены."
  3149. #: flatcamEditors/FlatCAMGrbEditor.py:4660
  3150. msgid "[WARNING_NOTCL] There are no polygons to mark area."
  3151. msgstr "[WARNING_NOTCL] Нет полигонов для обозначения области."
  3152. #: flatcamGUI/FlatCAMGUI.py:51
  3153. msgid "&File"
  3154. msgstr "&Файл"
  3155. #: flatcamGUI/FlatCAMGUI.py:56
  3156. msgid "&New Project ...\tCTRL+N"
  3157. msgstr "&Новый проект ...\tCTRL+N"
  3158. #: flatcamGUI/FlatCAMGUI.py:58
  3159. msgid "Will create a new, blank project"
  3160. msgstr "Создаёт новый пустой проект"
  3161. #: flatcamGUI/FlatCAMGUI.py:63
  3162. msgid "&New"
  3163. msgstr "&Создать"
  3164. #: flatcamGUI/FlatCAMGUI.py:66
  3165. msgid "Geometry\tN"
  3166. msgstr "Geometry\tN"
  3167. #: flatcamGUI/FlatCAMGUI.py:68
  3168. msgid "Will create a new, empty Geometry Object."
  3169. msgstr "Создаёт новый объект Geometry."
  3170. #: flatcamGUI/FlatCAMGUI.py:70
  3171. msgid "Gerber\tB"
  3172. msgstr "Gerber\tB"
  3173. #: flatcamGUI/FlatCAMGUI.py:72
  3174. msgid "Will create a new, empty Gerber Object."
  3175. msgstr "Создаёт новый объект Gerber."
  3176. #: flatcamGUI/FlatCAMGUI.py:74
  3177. msgid "Excellon\tL"
  3178. msgstr "Excellon\tL"
  3179. #: flatcamGUI/FlatCAMGUI.py:76
  3180. msgid "Will create a new, empty Excellon Object."
  3181. msgstr "Создаёт новый объект Excellon."
  3182. #: flatcamGUI/FlatCAMGUI.py:79 flatcamTools/ToolPcbWizard.py:62
  3183. #: flatcamTools/ToolPcbWizard.py:69
  3184. msgid "Open"
  3185. msgstr "Открыть"
  3186. #: flatcamGUI/FlatCAMGUI.py:84
  3187. msgid "Open &Gerber ...\tCTRL+G"
  3188. msgstr "Открыть &Gerber...\tCTRL+G"
  3189. #: flatcamGUI/FlatCAMGUI.py:91
  3190. msgid "Open &Excellon ...\tCTRL+E"
  3191. msgstr "Открыть &Excellon ...\tCTRL+E"
  3192. #: flatcamGUI/FlatCAMGUI.py:95
  3193. msgid "Open G-&Code ..."
  3194. msgstr "Открыть G-&Code ..."
  3195. #: flatcamGUI/FlatCAMGUI.py:99
  3196. msgid "Open &Project ..."
  3197. msgstr "Открыть &проект..."
  3198. #: flatcamGUI/FlatCAMGUI.py:105
  3199. msgid "Open Config ..."
  3200. msgstr "Открыть конфигурацию ..."
  3201. #: flatcamGUI/FlatCAMGUI.py:109
  3202. msgid "Recent files"
  3203. msgstr "Открыть недавние"
  3204. #: flatcamGUI/FlatCAMGUI.py:115
  3205. msgid "Scripting"
  3206. msgstr "Сценарии"
  3207. #: flatcamGUI/FlatCAMGUI.py:118
  3208. msgid "New Script ..."
  3209. msgstr "Новый сценарий ..."
  3210. #: flatcamGUI/FlatCAMGUI.py:119
  3211. msgid "Open Script ..."
  3212. msgstr "Открыть сценарий ..."
  3213. #: flatcamGUI/FlatCAMGUI.py:121
  3214. msgid "Run Script ...\tSHIFT+S"
  3215. msgstr "Выполнить сценарий ...\tSHIFT+S"
  3216. #: flatcamGUI/FlatCAMGUI.py:123
  3217. msgid ""
  3218. "Will run the opened Tcl Script thus\n"
  3219. "enabling the automation of certain\n"
  3220. "functions of FlatCAM."
  3221. msgstr ""
  3222. "Будет запущен открытый сценарий\n"
  3223. "включающий автоматизацию некоторых\n"
  3224. "функций FlatCAM."
  3225. #: flatcamGUI/FlatCAMGUI.py:136
  3226. msgid "Import"
  3227. msgstr "Импорт"
  3228. #: flatcamGUI/FlatCAMGUI.py:138
  3229. msgid "&SVG as Geometry Object ..."
  3230. msgstr "&SVG как объект Geometry ..."
  3231. #: flatcamGUI/FlatCAMGUI.py:141
  3232. msgid "&SVG as Gerber Object ..."
  3233. msgstr "&SVG как объект Gerber ..."
  3234. #: flatcamGUI/FlatCAMGUI.py:146
  3235. msgid "&DXF as Geometry Object ..."
  3236. msgstr "&DXF как объект Geometry ..."
  3237. #: flatcamGUI/FlatCAMGUI.py:149
  3238. msgid "&DXF as Gerber Object ..."
  3239. msgstr "&DXF как объект Gerber ..."
  3240. #: flatcamGUI/FlatCAMGUI.py:154
  3241. msgid "Export"
  3242. msgstr "Экспорт"
  3243. #: flatcamGUI/FlatCAMGUI.py:157
  3244. msgid "Export &SVG ..."
  3245. msgstr "Экспорт &SVG ..."
  3246. #: flatcamGUI/FlatCAMGUI.py:160
  3247. msgid "Export DXF ..."
  3248. msgstr "Экспорт DXF ..."
  3249. #: flatcamGUI/FlatCAMGUI.py:165
  3250. msgid "Export &PNG ..."
  3251. msgstr "Экспорт &PNG ..."
  3252. #: flatcamGUI/FlatCAMGUI.py:167
  3253. msgid ""
  3254. "Will export an image in PNG format,\n"
  3255. "the saved image will contain the visual \n"
  3256. "information currently in FlatCAM Plot Area."
  3257. msgstr ""
  3258. "Экспортирует изображение в формате PNG,\n"
  3259. "сохраненное изображение будет содержать визуальную\n"
  3260. "информацию, открытую в настоящее время в пространстве отрисовки FlatCAM."
  3261. #: flatcamGUI/FlatCAMGUI.py:176
  3262. msgid "Export &Excellon ..."
  3263. msgstr "Экспорт &Excellon ..."
  3264. #: flatcamGUI/FlatCAMGUI.py:178
  3265. msgid ""
  3266. "Will export an Excellon Object as Excellon file,\n"
  3267. "the coordinates format, the file units and zeros\n"
  3268. "are set in Preferences -> Excellon Export."
  3269. msgstr ""
  3270. "Экспортирует объект Excellon как файл Excellon,\n"
  3271. "формат координат, единицы измерения и нули\n"
  3272. "устанавливаются в Настройки -> Экспорт Excellon."
  3273. #: flatcamGUI/FlatCAMGUI.py:185
  3274. msgid "Export &Gerber ..."
  3275. msgstr "Экспорт &Gerber ..."
  3276. #: flatcamGUI/FlatCAMGUI.py:187
  3277. msgid ""
  3278. "Will export an Gerber Object as Gerber file,\n"
  3279. "the coordinates format, the file units and zeros\n"
  3280. "are set in Preferences -> Gerber Export."
  3281. msgstr ""
  3282. "Экспортирует объект Gerber как файл Gerber,\n"
  3283. "формат координат, единицы измерения и нули\n"
  3284. "устанавливается в Настройки -> Экспорт Gerber."
  3285. #: flatcamGUI/FlatCAMGUI.py:197
  3286. msgid "Save &Defaults"
  3287. msgstr "Сохранить &настройки"
  3288. #: flatcamGUI/FlatCAMGUI.py:203 flatcamGUI/FlatCAMGUI.py:524
  3289. msgid "Save"
  3290. msgstr "Сохранить"
  3291. #: flatcamGUI/FlatCAMGUI.py:206
  3292. msgid "&Save Project ..."
  3293. msgstr "&Сохранить проект ..."
  3294. #: flatcamGUI/FlatCAMGUI.py:211
  3295. msgid "Save Project &As ...\tCTRL+S"
  3296. msgstr "Сохранить проект &как ...\tCTRL+S"
  3297. #: flatcamGUI/FlatCAMGUI.py:216
  3298. msgid "Save Project C&opy ..."
  3299. msgstr "Сохранить к&опию проекта..."
  3300. #: flatcamGUI/FlatCAMGUI.py:223
  3301. msgid "E&xit"
  3302. msgstr "В&ыход"
  3303. #: flatcamGUI/FlatCAMGUI.py:229
  3304. msgid "&Edit"
  3305. msgstr "&Правка"
  3306. #: flatcamGUI/FlatCAMGUI.py:232
  3307. msgid "Edit Object\tE"
  3308. msgstr "Редактировать объект\tE"
  3309. #: flatcamGUI/FlatCAMGUI.py:233
  3310. msgid "Close Editor\tCTRL+S"
  3311. msgstr "Закрыть редактор\tCTRL+S"
  3312. #: flatcamGUI/FlatCAMGUI.py:241
  3313. msgid "Conversion"
  3314. msgstr "Конвертация"
  3315. #: flatcamGUI/FlatCAMGUI.py:243
  3316. msgid "&Join Geo/Gerber/Exc -> Geo"
  3317. msgstr "&И Присоединиться К Гео/Gerber/Exc - > Гео"
  3318. #: flatcamGUI/FlatCAMGUI.py:245
  3319. msgid ""
  3320. "Merge a selection of objects, which can be of type:\n"
  3321. "- Gerber\n"
  3322. "- Excellon\n"
  3323. "- Geometry\n"
  3324. "into a new combo Geometry object."
  3325. msgstr ""
  3326. "Объединить выборку объектов, которые могут иметь тип:\n"
  3327. "- Gerber\n"
  3328. "- Excellon\n"
  3329. "- Геометрия\n"
  3330. "в новый комбинированный объект геометрии."
  3331. #: flatcamGUI/FlatCAMGUI.py:252
  3332. msgid "Join Excellon(s) -> Excellon"
  3333. msgstr "Регистрация Excellon (s) - > Excellon"
  3334. #: flatcamGUI/FlatCAMGUI.py:254
  3335. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3336. msgstr ""
  3337. "Объедините выборку объектов Excellon в новый комбинированный объект Excellon."
  3338. #: flatcamGUI/FlatCAMGUI.py:257
  3339. msgid "Join Gerber(s) -> Gerber"
  3340. msgstr "Присоединиться к Gerber(s) - > Gerber"
  3341. #: flatcamGUI/FlatCAMGUI.py:259
  3342. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3343. msgstr ""
  3344. "Объединить выделение объектов Gerber в новый комбинированный объект Gerber."
  3345. #: flatcamGUI/FlatCAMGUI.py:264
  3346. msgid "Convert Single to MultiGeo"
  3347. msgstr "Преобразование одного в несколько Гео"
  3348. #: flatcamGUI/FlatCAMGUI.py:266
  3349. msgid ""
  3350. "Will convert a Geometry object from single_geometry type\n"
  3351. "to a multi_geometry type."
  3352. msgstr ""
  3353. "Преобразует объект Geometry из типа single_geometry\n"
  3354. "в multi_geometry.."
  3355. #: flatcamGUI/FlatCAMGUI.py:270
  3356. msgid "Convert Multi to SingleGeo"
  3357. msgstr "Преобразование нескольких В один Гео"
  3358. #: flatcamGUI/FlatCAMGUI.py:272
  3359. msgid ""
  3360. "Will convert a Geometry object from multi_geometry type\n"
  3361. "to a single_geometry type."
  3362. msgstr ""
  3363. "Преобразует объект Geometry из типа multi_geometry\n"
  3364. "в single_geometry.."
  3365. #: flatcamGUI/FlatCAMGUI.py:278
  3366. msgid "Convert Any to Geo"
  3367. msgstr "Конвертировать любой Гео"
  3368. #: flatcamGUI/FlatCAMGUI.py:280
  3369. msgid "Convert Any to Gerber"
  3370. msgstr "Конвертировать любой к Gerber"
  3371. #: flatcamGUI/FlatCAMGUI.py:285
  3372. msgid "&Copy\tCTRL+C"
  3373. msgstr "&Копировать\tCTRL+C"
  3374. #: flatcamGUI/FlatCAMGUI.py:289
  3375. msgid "&Delete\tDEL"
  3376. msgstr "&Удалить\tDEL"
  3377. #: flatcamGUI/FlatCAMGUI.py:293
  3378. msgid "Se&t Origin\tO"
  3379. msgstr "Ук&азать начало координат\tO"
  3380. #: flatcamGUI/FlatCAMGUI.py:294
  3381. msgid "Jump to Location\tJ"
  3382. msgstr "Перейти к\tJ"
  3383. #: flatcamGUI/FlatCAMGUI.py:299
  3384. msgid "Toggle Units\tQ"
  3385. msgstr "Единицы измерения\tQ"
  3386. #: flatcamGUI/FlatCAMGUI.py:300
  3387. msgid "&Select All\tCTRL+A"
  3388. msgstr "&Выбрать все\tCTRL+A"
  3389. #: flatcamGUI/FlatCAMGUI.py:304
  3390. msgid "&Preferences\tSHIFT+P"
  3391. msgstr "&Настройки\tSHIFT+P"
  3392. #: flatcamGUI/FlatCAMGUI.py:307
  3393. msgid "&Options"
  3394. msgstr "&Опции"
  3395. #: flatcamGUI/FlatCAMGUI.py:322
  3396. msgid "&Rotate Selection\tSHIFT+(R)"
  3397. msgstr "&Вращение\tSHIFT+(R)"
  3398. #: flatcamGUI/FlatCAMGUI.py:327
  3399. msgid "&Skew on X axis\tSHIFT+X"
  3400. msgstr "&Наклон по оси X\tSHIFT+X"
  3401. #: flatcamGUI/FlatCAMGUI.py:329
  3402. msgid "S&kew on Y axis\tSHIFT+Y"
  3403. msgstr "Н&аклон по оси Y\tSHIFT+Y"
  3404. #: flatcamGUI/FlatCAMGUI.py:334
  3405. msgid "Flip on &X axis\tX"
  3406. msgstr "Отразить по оси &X\tX"
  3407. #: flatcamGUI/FlatCAMGUI.py:336
  3408. msgid "Flip on &Y axis\tY"
  3409. msgstr "Отразить по оси &Y\tY"
  3410. #: flatcamGUI/FlatCAMGUI.py:341
  3411. msgid "View source\tALT+S"
  3412. msgstr "Просмотреть код\tALT+S"
  3413. #: flatcamGUI/FlatCAMGUI.py:346
  3414. msgid "&View"
  3415. msgstr "&Вид"
  3416. #: flatcamGUI/FlatCAMGUI.py:347
  3417. msgid "Enable all plots\tALT+1"
  3418. msgstr "Включить все участки\tALT+1"
  3419. #: flatcamGUI/FlatCAMGUI.py:349
  3420. msgid "Disable all plots\tALT+2"
  3421. msgstr "Отключить все участки\tALT+2"
  3422. #: flatcamGUI/FlatCAMGUI.py:351
  3423. msgid "Disable non-selected\tALT+3"
  3424. msgstr "Отключить не выбранные\tALT+3"
  3425. #: flatcamGUI/FlatCAMGUI.py:354
  3426. msgid "&Zoom Fit\tV"
  3427. msgstr "&Вернуть масштаб\tV"
  3428. #: flatcamGUI/FlatCAMGUI.py:355
  3429. msgid "&Zoom In\t="
  3430. msgstr "&Увеличить\t="
  3431. #: flatcamGUI/FlatCAMGUI.py:356
  3432. msgid "&Zoom Out\t-"
  3433. msgstr "&Уменьшить\t-"
  3434. #: flatcamGUI/FlatCAMGUI.py:360
  3435. msgid "Toggle Code Editor\tCTRL+E"
  3436. msgstr "Редактор кода\tCTRL+E"
  3437. #: flatcamGUI/FlatCAMGUI.py:363
  3438. msgid "&Toggle FullScreen\tALT+F10"
  3439. msgstr "&Во весь экран\tALT+F10"
  3440. #: flatcamGUI/FlatCAMGUI.py:365
  3441. msgid "&Toggle Plot Area\tCTRL+F10"
  3442. msgstr "&Рабочая область\tCTRL+F10"
  3443. #: flatcamGUI/FlatCAMGUI.py:367
  3444. msgid "&Toggle Project/Sel/Tool\t`"
  3445. msgstr "&Боковая панель\t`"
  3446. #: flatcamGUI/FlatCAMGUI.py:370
  3447. msgid "&Toggle Grid Snap\tG"
  3448. msgstr "&Привязка к сетке\tG"
  3449. #: flatcamGUI/FlatCAMGUI.py:372
  3450. msgid "&Toggle Axis\tSHIFT+G"
  3451. msgstr "&Оси\tSHIFT+G"
  3452. #: flatcamGUI/FlatCAMGUI.py:375
  3453. msgid "Toggle Workspace\tSHIFT+W"
  3454. msgstr "Границы рабочего пространства\tSHIFT+W"
  3455. #: flatcamGUI/FlatCAMGUI.py:378
  3456. msgid "&Tool"
  3457. msgstr "&Инструменты"
  3458. #: flatcamGUI/FlatCAMGUI.py:380
  3459. msgid "&Command Line\tS"
  3460. msgstr "&Командная строка\tS"
  3461. #: flatcamGUI/FlatCAMGUI.py:383
  3462. msgid "&Help"
  3463. msgstr "&Помощь"
  3464. #: flatcamGUI/FlatCAMGUI.py:384
  3465. msgid "Help\tF1"
  3466. msgstr "Справка\tF1"
  3467. #: flatcamGUI/FlatCAMGUI.py:385
  3468. msgid "FlatCAM.org"
  3469. msgstr "FlatCAM.org"
  3470. #: flatcamGUI/FlatCAMGUI.py:388
  3471. msgid "Shortcuts List\tF3"
  3472. msgstr "Список быстрых клавиш\tF3"
  3473. #: flatcamGUI/FlatCAMGUI.py:389
  3474. msgid "YouTube Channel\tF4"
  3475. msgstr "Канал YouTube\tF4"
  3476. #: flatcamGUI/FlatCAMGUI.py:391
  3477. msgid "About"
  3478. msgstr "О программе"
  3479. #: flatcamGUI/FlatCAMGUI.py:398
  3480. msgid "Add Circle\tO"
  3481. msgstr "Добавить круг\tO"
  3482. #: flatcamGUI/FlatCAMGUI.py:400
  3483. msgid "Add Arc\tA"
  3484. msgstr "Добавить дугу\tA"
  3485. #: flatcamGUI/FlatCAMGUI.py:403
  3486. msgid "Add Rectangle\tR"
  3487. msgstr "Добавить прямоугольник\tR"
  3488. #: flatcamGUI/FlatCAMGUI.py:406
  3489. msgid "Add Polygon\tN"
  3490. msgstr "Добавить полигон\tN"
  3491. #: flatcamGUI/FlatCAMGUI.py:408
  3492. msgid "Add Path\tP"
  3493. msgstr "Добавить дорожку\tP"
  3494. #: flatcamGUI/FlatCAMGUI.py:410
  3495. msgid "Add Text\tT"
  3496. msgstr "Добавить текст\tT"
  3497. #: flatcamGUI/FlatCAMGUI.py:413
  3498. msgid "Polygon Union\tU"
  3499. msgstr "Объединение полигонов\tU"
  3500. #: flatcamGUI/FlatCAMGUI.py:415
  3501. msgid "Polygon Intersection\tE"
  3502. msgstr "Пересечение полигонов\tE"
  3503. #: flatcamGUI/FlatCAMGUI.py:417
  3504. msgid "Polygon Subtraction\tS"
  3505. msgstr "Вычитание полигонов\tS"
  3506. #: flatcamGUI/FlatCAMGUI.py:421
  3507. msgid "Cut Path\tX"
  3508. msgstr "Вырезать дорожку\tX"
  3509. #: flatcamGUI/FlatCAMGUI.py:423
  3510. msgid "Copy Geom\tC"
  3511. msgstr "Копировать Geom\tC"
  3512. #: flatcamGUI/FlatCAMGUI.py:425
  3513. msgid "Delete Shape\tDEL"
  3514. msgstr "Удалить фигуру\tDEL"
  3515. #: flatcamGUI/FlatCAMGUI.py:428 flatcamGUI/FlatCAMGUI.py:499
  3516. msgid "Move\tM"
  3517. msgstr "Переместить\tM"
  3518. #: flatcamGUI/FlatCAMGUI.py:430
  3519. msgid "Buffer Tool\tB"
  3520. msgstr "Буфер\tB"
  3521. #: flatcamGUI/FlatCAMGUI.py:433
  3522. msgid "Paint Tool\tI"
  3523. msgstr "Рисование\tI"
  3524. #: flatcamGUI/FlatCAMGUI.py:436
  3525. msgid "Transform Tool\tALT+R"
  3526. msgstr "Трансформация\tALT+R"
  3527. #: flatcamGUI/FlatCAMGUI.py:440
  3528. msgid "Toggle Corner Snap\tK"
  3529. msgstr "Привязка к углу\tK"
  3530. #: flatcamGUI/FlatCAMGUI.py:443
  3531. msgid ">Excellon Editor<"
  3532. msgstr ">Редактор Excellon<"
  3533. #: flatcamGUI/FlatCAMGUI.py:447
  3534. msgid "Add Drill Array\tA"
  3535. msgstr "Добавить группу свёрел\tA"
  3536. #: flatcamGUI/FlatCAMGUI.py:449
  3537. msgid "Add Drill\tD"
  3538. msgstr "Добавить сверло\tD"
  3539. #: flatcamGUI/FlatCAMGUI.py:453
  3540. msgid "Resize Drill(S)\tR"
  3541. msgstr "Изменить размер отверстия\tR"
  3542. #: flatcamGUI/FlatCAMGUI.py:455 flatcamGUI/FlatCAMGUI.py:494
  3543. msgid "Copy\tC"
  3544. msgstr "Копировать\tC"
  3545. #: flatcamGUI/FlatCAMGUI.py:457 flatcamGUI/FlatCAMGUI.py:496
  3546. msgid "Delete\tDEL"
  3547. msgstr "Удалить\tDEL"
  3548. #: flatcamGUI/FlatCAMGUI.py:462
  3549. msgid "Move Drill(s)\tM"
  3550. msgstr "Переместить сверла\tM"
  3551. #: flatcamGUI/FlatCAMGUI.py:465
  3552. msgid ">Gerber Editor<"
  3553. msgstr ">Редактор Gerber<"
  3554. #: flatcamGUI/FlatCAMGUI.py:469
  3555. msgid "Add Pad\tP"
  3556. msgstr "Добавить площадку\tP"
  3557. #: flatcamGUI/FlatCAMGUI.py:471
  3558. msgid "Add Pad Array\tA"
  3559. msgstr "Добавить массив площадок\tA"
  3560. #: flatcamGUI/FlatCAMGUI.py:473
  3561. msgid "Add Track\tT"
  3562. msgstr "Добавить маршрут\tT"
  3563. #: flatcamGUI/FlatCAMGUI.py:475
  3564. msgid "Add Region\tN"
  3565. msgstr "Добавить регион\tN"
  3566. #: flatcamGUI/FlatCAMGUI.py:479
  3567. msgid "Poligonize\tALT+N"
  3568. msgstr "Полигонизация\tALT+N"
  3569. #: flatcamGUI/FlatCAMGUI.py:481
  3570. msgid "Add SemiDisc\tE"
  3571. msgstr "Добавить полукруг\tE"
  3572. #: flatcamGUI/FlatCAMGUI.py:482
  3573. msgid "Add Disc\tD"
  3574. msgstr "Добавить диск\tD"
  3575. #: flatcamGUI/FlatCAMGUI.py:484
  3576. msgid "Buffer\tB"
  3577. msgstr "Буфер\tB"
  3578. #: flatcamGUI/FlatCAMGUI.py:485
  3579. msgid "Scale\tS"
  3580. msgstr "Масштабировать\tS"
  3581. #: flatcamGUI/FlatCAMGUI.py:487
  3582. msgid "Mark Area\tALT+A"
  3583. msgstr "Область Метки\tALT+A"
  3584. #: flatcamGUI/FlatCAMGUI.py:489
  3585. msgid "Eraser\tCTRL+E"
  3586. msgstr "Ластик\tCTRL+E"
  3587. #: flatcamGUI/FlatCAMGUI.py:491
  3588. msgid "Transform\tALT+R"
  3589. msgstr "Трансформировать\tALT+R"
  3590. #: flatcamGUI/FlatCAMGUI.py:515
  3591. msgid "Enable Plot"
  3592. msgstr "Включить участок"
  3593. #: flatcamGUI/FlatCAMGUI.py:516 flatcamGUI/FlatCAMGUI.py:1588
  3594. msgid "Disable Plot"
  3595. msgstr "Отключить участок"
  3596. #: flatcamGUI/FlatCAMGUI.py:518
  3597. msgid "Generate CNC"
  3598. msgstr "Создать CNC"
  3599. #: flatcamGUI/FlatCAMGUI.py:519
  3600. msgid "View Source"
  3601. msgstr "Просмотреть код"
  3602. #: flatcamGUI/FlatCAMGUI.py:521 flatcamGUI/FlatCAMGUI.py:1628
  3603. msgid "Edit"
  3604. msgstr "Правка"
  3605. #: flatcamGUI/FlatCAMGUI.py:527 flatcamGUI/FlatCAMGUI.py:1634
  3606. #: flatcamTools/ToolProperties.py:25
  3607. msgid "Properties"
  3608. msgstr "Свойства"
  3609. #: flatcamGUI/FlatCAMGUI.py:556
  3610. msgid "File Toolbar"
  3611. msgstr "Панель файлов"
  3612. #: flatcamGUI/FlatCAMGUI.py:560
  3613. msgid "Edit Toolbar"
  3614. msgstr "Панель редактирования"
  3615. #: flatcamGUI/FlatCAMGUI.py:564
  3616. msgid "View Toolbar"
  3617. msgstr "Панель просмотра"
  3618. #: flatcamGUI/FlatCAMGUI.py:568
  3619. msgid "Shell Toolbar"
  3620. msgstr "Панель командной строки"
  3621. #: flatcamGUI/FlatCAMGUI.py:572
  3622. msgid "Tools Toolbar"
  3623. msgstr "Панель инструментов"
  3624. #: flatcamGUI/FlatCAMGUI.py:576
  3625. msgid "Excellon Editor Toolbar"
  3626. msgstr "Панель редактора Excellon"
  3627. #: flatcamGUI/FlatCAMGUI.py:580
  3628. msgid "Geometry Editor Toolbar"
  3629. msgstr "Панель редактора Geometry"
  3630. #: flatcamGUI/FlatCAMGUI.py:584
  3631. msgid "Gerber Editor Toolbar"
  3632. msgstr "Панель редактора Gerber"
  3633. #: flatcamGUI/FlatCAMGUI.py:588
  3634. msgid "Grid Toolbar"
  3635. msgstr "Панель сетки координат"
  3636. #: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1845
  3637. msgid "Open project"
  3638. msgstr "Открыть проект"
  3639. #: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1846
  3640. msgid "Save project"
  3641. msgstr "Сохранить проект"
  3642. #: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1849
  3643. msgid "New Blank Geometry"
  3644. msgstr "Создать Geometry"
  3645. #: flatcamGUI/FlatCAMGUI.py:612
  3646. msgid "New Blank Gerber"
  3647. msgstr "Создать Gerber"
  3648. #: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1850
  3649. msgid "New Blank Excellon"
  3650. msgstr "Создать Excellon"
  3651. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1852
  3652. msgid "Editor"
  3653. msgstr "Редактор"
  3654. #: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1854
  3655. msgid "Save Object and close the Editor"
  3656. msgstr "Сохранить объект и закрыть редактор"
  3657. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1858
  3658. msgid "&Delete"
  3659. msgstr "&Удалить"
  3660. #: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1861
  3661. msgid "&Replot"
  3662. msgstr "&Перерисовать объект"
  3663. #: flatcamGUI/FlatCAMGUI.py:625 flatcamGUI/FlatCAMGUI.py:1862
  3664. msgid "&Clear plot"
  3665. msgstr "&Очистить участок"
  3666. #: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1863
  3667. msgid "Zoom In"
  3668. msgstr "Увеличить"
  3669. #: flatcamGUI/FlatCAMGUI.py:627 flatcamGUI/FlatCAMGUI.py:1864
  3670. msgid "Zoom Out"
  3671. msgstr "Уменьшить"
  3672. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1603
  3673. #: flatcamGUI/FlatCAMGUI.py:1865
  3674. msgid "Zoom Fit"
  3675. msgstr "Вернуть масштаб"
  3676. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1870
  3677. msgid "&Command Line"
  3678. msgstr "&Командная строка"
  3679. #: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1873
  3680. msgid "2Sided Tool"
  3681. msgstr "2-х стор. плата"
  3682. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1874
  3683. msgid "&Cutout Tool"
  3684. msgstr "&Обрезка платы"
  3685. #: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1875
  3686. #: flatcamGUI/ObjectUI.py:389 flatcamTools/ToolNonCopperClear.py:285
  3687. msgid "NCC Tool"
  3688. msgstr "Очистка меди"
  3689. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1879
  3690. msgid "Panel Tool"
  3691. msgstr "Панелизация"
  3692. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1880
  3693. #: flatcamTools/ToolFilm.py:204
  3694. msgid "Film Tool"
  3695. msgstr "Плёнка"
  3696. #: flatcamGUI/FlatCAMGUI.py:644 flatcamGUI/FlatCAMGUI.py:1882
  3697. #: flatcamTools/ToolSolderPaste.py:450
  3698. msgid "SolderPaste Tool"
  3699. msgstr "Паяльная паста"
  3700. #: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1883
  3701. #: flatcamTools/ToolSub.py:26
  3702. msgid "Substract Tool"
  3703. msgstr "Вычитатель"
  3704. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1888
  3705. msgid "Calculators Tool"
  3706. msgstr "Калькулятор"
  3707. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:667
  3708. #: flatcamGUI/FlatCAMGUI.py:701 flatcamGUI/FlatCAMGUI.py:1892
  3709. #: flatcamGUI/FlatCAMGUI.py:1942
  3710. msgid "Select"
  3711. msgstr "Выбрать"
  3712. #: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1893
  3713. msgid "Add Drill Hole"
  3714. msgstr "Добавить отверстие"
  3715. #: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1895
  3716. msgid "Add Drill Hole Array"
  3717. msgstr "Добавить массив отверстий"
  3718. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1896
  3719. msgid "Resize Drill"
  3720. msgstr "Изменить размер отверстия"
  3721. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1899
  3722. msgid "Copy Drill"
  3723. msgstr "Копировать отверстие"
  3724. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1901
  3725. msgid "Delete Drill"
  3726. msgstr "Удалить отверстие"
  3727. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1904
  3728. msgid "Move Drill"
  3729. msgstr "Переместить отверстие"
  3730. #: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1908
  3731. msgid "Add Circle"
  3732. msgstr "Добавить круг"
  3733. #: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1909
  3734. msgid "Add Arc"
  3735. msgstr "Добавить дугу"
  3736. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1911
  3737. msgid "Add Rectangle"
  3738. msgstr "Добавить прямоугольник"
  3739. #: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1914
  3740. msgid "Add Path"
  3741. msgstr "Добавить дорожку"
  3742. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1916
  3743. msgid "Add Polygon"
  3744. msgstr "Добавить полигон"
  3745. #: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1918
  3746. msgid "Add Text"
  3747. msgstr "Добавить текст"
  3748. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1919
  3749. msgid "Add Buffer"
  3750. msgstr "Добавить буфер"
  3751. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1920
  3752. msgid "Paint Shape"
  3753. msgstr "Нарисовать фигуру"
  3754. #: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:718
  3755. #: flatcamGUI/FlatCAMGUI.py:1921 flatcamGUI/FlatCAMGUI.py:1958
  3756. msgid "Eraser"
  3757. msgstr "Стёрка"
  3758. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1924
  3759. msgid "Polygon Union"
  3760. msgstr "Сращение полигонов"
  3761. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1926
  3762. msgid "Polygon Intersection"
  3763. msgstr "Пересечение полигонов"
  3764. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1928
  3765. msgid "Polygon Subtraction"
  3766. msgstr "Вычитание полигонов"
  3767. #: flatcamGUI/FlatCAMGUI.py:690 flatcamGUI/FlatCAMGUI.py:1931
  3768. msgid "Cut Path"
  3769. msgstr "Вырезать путь"
  3770. #: flatcamGUI/FlatCAMGUI.py:691
  3771. msgid "Copy Shape(s)"
  3772. msgstr "Копировать форму(ы)"
  3773. #: flatcamGUI/FlatCAMGUI.py:694
  3774. msgid "Delete Shape '-'"
  3775. msgstr "Удалить фигуру '-'"
  3776. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:725
  3777. #: flatcamGUI/FlatCAMGUI.py:1936 flatcamGUI/FlatCAMGUI.py:1965
  3778. msgid "Transformations"
  3779. msgstr "Трансформация"
  3780. #: flatcamGUI/FlatCAMGUI.py:698
  3781. msgid "Move Objects "
  3782. msgstr "Переместить объект "
  3783. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1943
  3784. msgid "Add Pad"
  3785. msgstr "Добавить площадку"
  3786. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1945
  3787. msgid "Add Track"
  3788. msgstr "Добавить маршрут"
  3789. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1946
  3790. msgid "Add Region"
  3791. msgstr "Добавить регион"
  3792. #: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:1948
  3793. msgid "Poligonize"
  3794. msgstr "Полигонизация"
  3795. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1950
  3796. msgid "SemiDisc"
  3797. msgstr "Полукруг"
  3798. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1951
  3799. msgid "Disc"
  3800. msgstr "Диск"
  3801. #: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1957
  3802. msgid "Mark Area"
  3803. msgstr "Область Метки"
  3804. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:1613
  3805. #: flatcamGUI/FlatCAMGUI.py:1633 flatcamGUI/FlatCAMGUI.py:1967
  3806. #: flatcamTools/ToolMove.py:26
  3807. msgid "Move"
  3808. msgstr "Переместить"
  3809. #: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1973
  3810. msgid "Snap to grid"
  3811. msgstr "Привязка к сетке"
  3812. #: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1976
  3813. msgid "Grid X snapping distance"
  3814. msgstr "Размер сетки по X"
  3815. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1981
  3816. msgid "Grid Y snapping distance"
  3817. msgstr "Размер сетки по Y"
  3818. #: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1987
  3819. msgid ""
  3820. "When active, value on Grid_X\n"
  3821. "is copied to the Grid_Y value."
  3822. msgstr ""
  3823. "Если активен, значение на Grid_X\n"
  3824. "копируется в значение Grid_Y."
  3825. #: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1993
  3826. msgid "Snap to corner"
  3827. msgstr "Привязка к углу"
  3828. #: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1997
  3829. #: flatcamGUI/FlatCAMGUI.py:3363
  3830. msgid "Max. magnet distance"
  3831. msgstr "Макс. магнит расстояние"
  3832. #: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:1597
  3833. msgid "Project"
  3834. msgstr "Проект"
  3835. #: flatcamGUI/FlatCAMGUI.py:795
  3836. msgid "Selected"
  3837. msgstr "Выбранное"
  3838. #: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:822
  3839. msgid "Plot Area"
  3840. msgstr "Рабочая область"
  3841. #: flatcamGUI/FlatCAMGUI.py:846
  3842. msgid "General"
  3843. msgstr "Основные"
  3844. #: flatcamGUI/FlatCAMGUI.py:855
  3845. msgid "APP. DEFAULTS"
  3846. msgstr "СТАНД. НАСТРОЙКИ"
  3847. #: flatcamGUI/FlatCAMGUI.py:856
  3848. msgid "PROJ. OPTIONS "
  3849. msgstr "ПАРАМ. ПРОЕКТА "
  3850. #: flatcamGUI/FlatCAMGUI.py:867
  3851. msgid "GERBER"
  3852. msgstr "GERBER"
  3853. #: flatcamGUI/FlatCAMGUI.py:876
  3854. msgid "EXCELLON"
  3855. msgstr "EXCELLON"
  3856. #: flatcamGUI/FlatCAMGUI.py:885
  3857. msgid "GEOMETRY"
  3858. msgstr "GEOMETRY"
  3859. #: flatcamGUI/FlatCAMGUI.py:895
  3860. msgid "CNC-JOB"
  3861. msgstr "CNC-JOB"
  3862. #: flatcamGUI/FlatCAMGUI.py:904
  3863. msgid "TOOLS"
  3864. msgstr "ИНСТР-ТЫ"
  3865. #: flatcamGUI/FlatCAMGUI.py:921
  3866. msgid "Import Preferences"
  3867. msgstr "Импорт настроек"
  3868. #: flatcamGUI/FlatCAMGUI.py:924
  3869. msgid ""
  3870. "Import a full set of FlatCAM settings from a file\n"
  3871. "previously saved on HDD.\n"
  3872. "\n"
  3873. "FlatCAM automatically save a 'factory_defaults' file\n"
  3874. "on the first start. Do not delete that file."
  3875. msgstr ""
  3876. "Импорт полного набора настроек FlatCAM из файла,\n"
  3877. "ранее сохранённого на жестком диске.\n"
  3878. "\n"
  3879. "FlatCAM автоматически создаёт файл factory_defaults\n"
  3880. "при первом запуске. Не удаляйте этот файл."
  3881. #: flatcamGUI/FlatCAMGUI.py:931
  3882. msgid "Export Preferences"
  3883. msgstr "Экспорт настроек"
  3884. #: flatcamGUI/FlatCAMGUI.py:934
  3885. msgid ""
  3886. "Export a full set of FlatCAM settings in a file\n"
  3887. "that is saved on HDD."
  3888. msgstr ""
  3889. "Экспорт полного набора настроек FlatCAM в файл\n"
  3890. "который сохраняется на жестком диске."
  3891. #: flatcamGUI/FlatCAMGUI.py:939
  3892. msgid "Open Pref Folder"
  3893. msgstr "Открыть папку настроек"
  3894. #: flatcamGUI/FlatCAMGUI.py:942
  3895. msgid "Open the folder where FlatCAM save the preferences files."
  3896. msgstr "Открывает папку, в которой FlatCAM сохраняет файлы настроек."
  3897. #: flatcamGUI/FlatCAMGUI.py:950
  3898. msgid "Save Preferences"
  3899. msgstr "Сохранить настройки"
  3900. #: flatcamGUI/FlatCAMGUI.py:953
  3901. msgid ""
  3902. "Save the current settings in the 'current_defaults' file\n"
  3903. "which is the file storing the working default preferences."
  3904. msgstr ""
  3905. "Сохраняет текущие настройки в файле 'current_defaults'\n"
  3906. "который является файлом, хранящим рабочие настройки по умолчанию."
  3907. #: flatcamGUI/FlatCAMGUI.py:979
  3908. msgid ""
  3909. "<b>General Shortcut list</b><br>\n"
  3910. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3911. "\"width:283px\">\n"
  3912. " <tbody>\n"
  3913. " <tr height=\"20\">\n"
  3914. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3915. "td>\n"
  3916. " <td width=\"194\"><span style=\"color:"
  3917. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3918. " </tr>\n"
  3919. " <tr height=\"20\">\n"
  3920. " <td height=\"20\">&nbsp;</td>\n"
  3921. " <td>&nbsp;</td>\n"
  3922. " </tr>\n"
  3923. " <tr height=\"20\">\n"
  3924. " <td height=\"20\"><strong>1</strong></td>\n"
  3925. " <td>&nbsp;Switch to Project Tab</td>\n"
  3926. " </tr>\n"
  3927. " <tr height=\"20\">\n"
  3928. " <td height=\"20\"><strong>2</strong></td>\n"
  3929. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3930. " </tr>\n"
  3931. " <tr height=\"20\">\n"
  3932. " <td height=\"20\"><strong>3</strong></td>\n"
  3933. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3934. " </tr>\n"
  3935. " <tr height=\"20\">\n"
  3936. " <td height=\"20\">&nbsp;</td>\n"
  3937. " <td>&nbsp;</td>\n"
  3938. " </tr>\n"
  3939. " <tr height=\"20\">\n"
  3940. " <td height=\"20\"><strong>B</strong></td>\n"
  3941. " <td>&nbsp;New Gerber</td>\n"
  3942. " </tr>\n"
  3943. " <tr height=\"20\">\n"
  3944. " <td height=\"20\"><strong>E</strong></td>\n"
  3945. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3946. " </tr>\n"
  3947. " <tr height=\"20\">\n"
  3948. " <td height=\"20\"><strong>G</strong></td>\n"
  3949. " <td>&nbsp;Grid On/Off</td>\n"
  3950. " </tr>\n"
  3951. " <tr height=\"20\">\n"
  3952. " <td height=\"20\"><strong>J</strong></td>\n"
  3953. " <td>&nbsp;Jump to Coordinates</td>\n"
  3954. " </tr>\n"
  3955. " <tr height=\"20\">\n"
  3956. " <td height=\"20\"><strong>L</strong></td>\n"
  3957. " <td>&nbsp;New Excellon</td>\n"
  3958. " </tr>\n"
  3959. " <tr height=\"20\">\n"
  3960. " <td height=\"20\"><strong>M</strong></td>\n"
  3961. " <td>&nbsp;Move Obj</td>\n"
  3962. " </tr>\n"
  3963. " <tr height=\"20\">\n"
  3964. " <td height=\"20\"><strong>N</strong></td>\n"
  3965. " <td>&nbsp;New Geometry</td>\n"
  3966. " </tr>\n"
  3967. " <tr height=\"20\">\n"
  3968. " <td height=\"20\"><strong>O</strong></td>\n"
  3969. " <td>&nbsp;Set Origin</td>\n"
  3970. " </tr>\n"
  3971. " <tr height=\"20\">\n"
  3972. " <td height=\"20\"><strong>Q</strong></td>\n"
  3973. " <td>&nbsp;Change Units</td>\n"
  3974. " </tr>\n"
  3975. " <tr height=\"20\">\n"
  3976. " <td height=\"20\"><strong>P</strong></td>\n"
  3977. " <td>&nbsp;Open Properties Tool</td>\n"
  3978. " </tr>\n"
  3979. " <tr height=\"20\">\n"
  3980. " <td height=\"20\"><strong>R</strong></td>\n"
  3981. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3982. " </tr>\n"
  3983. " <tr height=\"20\">\n"
  3984. " <td height=\"20\"><strong>S</strong></td>\n"
  3985. " <td>&nbsp;Shell Toggle</td>\n"
  3986. " </tr>\n"
  3987. " <tr height=\"20\">\n"
  3988. " <td height=\"20\"><strong>T</strong></td>\n"
  3989. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3990. "or in Tools NCC or Tools Paint)</td>\n"
  3991. " </tr>\n"
  3992. " <tr height=\"20\">\n"
  3993. " <td height=\"20\"><strong>V</strong></td>\n"
  3994. " <td>&nbsp;Zoom Fit</td>\n"
  3995. " </tr>\n"
  3996. " <tr height=\"20\">\n"
  3997. " <td height=\"20\"><strong>X</strong></td>\n"
  3998. " <td>&nbsp;Flip on X_axis</td>\n"
  3999. " </tr>\n"
  4000. " <tr height=\"20\">\n"
  4001. " <td height=\"20\"><strong>Y</strong></td>\n"
  4002. " <td>&nbsp;Flip on Y_axis</td>\n"
  4003. " </tr>\n"
  4004. " <tr height=\"20\">\n"
  4005. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4006. " <td>&nbsp;Zoom Out</td>\n"
  4007. " </tr>\n"
  4008. " <tr height=\"20\">\n"
  4009. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4010. " <td>&nbsp;Zoom In</td>\n"
  4011. " </tr>\n"
  4012. " <tr height=\"20\">\n"
  4013. " <td height=\"20\">&nbsp;</td>\n"
  4014. " <td>&nbsp;</td>\n"
  4015. " </tr>\n"
  4016. " <tr height=\"20\">\n"
  4017. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4018. " <td>&nbsp;Select All</td>\n"
  4019. " </tr>\n"
  4020. " <tr height=\"20\">\n"
  4021. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4022. " <td>&nbsp;Copy Obj</td>\n"
  4023. " </tr>\n"
  4024. " <tr height=\"20\">\n"
  4025. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4026. " <td>&nbsp;Open Excellon File</td>\n"
  4027. " </tr>\n"
  4028. " <tr height=\"20\">\n"
  4029. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4030. " <td>&nbsp;Open Gerber File</td>\n"
  4031. " </tr>\n"
  4032. " <tr height=\"20\">\n"
  4033. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4034. " <td>&nbsp;New Project</td>\n"
  4035. " </tr>\n"
  4036. " <tr height=\"20\">\n"
  4037. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4038. " <td>&nbsp;Measurement Tool</td>\n"
  4039. " </tr>\n"
  4040. " <tr height=\"20\">\n"
  4041. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4042. " <td>&nbsp;Open Project</td>\n"
  4043. " </tr>\n"
  4044. " <tr height=\"20\">\n"
  4045. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4046. " <td>&nbsp;Save Project As</td>\n"
  4047. " </tr>\n"
  4048. " <tr height=\"20\">\n"
  4049. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4050. " <td>&nbsp;Toggle Plot Area</td>\n"
  4051. " </tr>\n"
  4052. " <tr height=\"20\">\n"
  4053. " <td height=\"20\">&nbsp;</td>\n"
  4054. " <td>&nbsp;</td>\n"
  4055. " </tr>\n"
  4056. " <tr height=\"20\">\n"
  4057. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4058. " <td>&nbsp;Copy Obj_Name</td>\n"
  4059. " </tr>\n"
  4060. " <tr height=\"20\">\n"
  4061. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4062. " <td>&nbsp;Toggle Code Editor</td>\n"
  4063. " </tr>\n"
  4064. " <tr height=\"20\">\n"
  4065. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4066. " <td>&nbsp;Toggle the axis</td>\n"
  4067. " </tr>\n"
  4068. " <tr height=\"20\">\n"
  4069. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4070. " <td>&nbsp;Open Preferences Window</td>\n"
  4071. " </tr>\n"
  4072. " <tr height=\"20\">\n"
  4073. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4074. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4075. " </tr>\n"
  4076. " <tr height=\"20\">\n"
  4077. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4078. " <td>&nbsp;Run a Script</td>\n"
  4079. " </tr>\n"
  4080. " <tr height=\"20\">\n"
  4081. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4082. " <td>&nbsp;Toggle the workspace</td>\n"
  4083. " </tr>\n"
  4084. " <tr height=\"20\">\n"
  4085. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4086. " <td>&nbsp;Skew on X axis</td>\n"
  4087. " </tr>\n"
  4088. " <tr height=\"20\">\n"
  4089. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4090. " <td>&nbsp;Skew on Y axis</td>\n"
  4091. " </tr>\n"
  4092. " <tr height=\"20\">\n"
  4093. " <td height=\"20\">&nbsp;</td>\n"
  4094. " <td>&nbsp;</td>\n"
  4095. " </tr>\n"
  4096. " <tr height=\"20\">\n"
  4097. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4098. " <td>&nbsp;Calculators Tool</td>\n"
  4099. " </tr>\n"
  4100. " <tr height=\"20\">\n"
  4101. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4102. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4103. " </tr>\n"
  4104. " <tr height=\"20\">\n"
  4105. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4106. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4107. " </tr>\n"
  4108. " <tr height=\"20\">\n"
  4109. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4110. " <td>&nbsp;Film PCB Tool</td>\n"
  4111. " </tr>\n"
  4112. " <tr height=\"20\">\n"
  4113. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4114. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4115. " </tr>\n"
  4116. " <tr height=\"20\">\n"
  4117. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4118. " <td>&nbsp;Paint Area Tool</td>\n"
  4119. " </tr>\n"
  4120. " <tr height=\"20\">\n"
  4121. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4122. " <td>&nbsp;PDF Import Tool</td>\n"
  4123. " </tr>\n"
  4124. " <tr height=\"20\">\n"
  4125. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4126. " <td>&nbsp;Transformations Tool</td>\n"
  4127. " </tr>\n"
  4128. " <tr height=\"20\">\n"
  4129. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4130. " <td>&nbsp;View File Source</td>\n"
  4131. " </tr>\n"
  4132. " <tr height=\"20\">\n"
  4133. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4134. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4135. " </tr>\n"
  4136. " <tr height=\"20\">\n"
  4137. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4138. " <td>&nbsp;Enable all Plots</td>\n"
  4139. " </tr>\n"
  4140. " <tr height=\"20\">\n"
  4141. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4142. " <td>&nbsp;Disable all Plots</td>\n"
  4143. " </tr>\n"
  4144. " <tr height=\"20\">\n"
  4145. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4146. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4147. " </tr>\n"
  4148. " <tr height=\"20\">\n"
  4149. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4150. " <td>&nbsp;Toggle Full Screen</td>\n"
  4151. " </tr>\n"
  4152. " <tr height=\"20\">\n"
  4153. " <td height=\"20\">&nbsp;</td>\n"
  4154. " <td>&nbsp;</td>\n"
  4155. " </tr>\n"
  4156. " <tr height=\"20\">\n"
  4157. " <td height=\"20\"><strong>F1</strong></td>\n"
  4158. " <td>&nbsp;Open Online Manual</td>\n"
  4159. " </tr>\n"
  4160. " <tr height=\"20\">\n"
  4161. " <td height=\"20\"><strong>F4</strong></td>\n"
  4162. " <td>&nbsp;Open Online Tutorials</td>\n"
  4163. " </tr>\n"
  4164. " <tr height=\"20\">\n"
  4165. " <td height=\"20\"><strong>Del</strong></td>\n"
  4166. " <td>&nbsp;Delete Object</td>\n"
  4167. " </tr>\n"
  4168. " <tr height=\"20\">\n"
  4169. " <td height=\"20\"><strong>Del</strong></td>\n"
  4170. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4171. " </tr>\n"
  4172. " <tr height=\"20\">\n"
  4173. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4174. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4175. "Side)</td>\n"
  4176. " </tr>\n"
  4177. " <tr height=\"20\">\n"
  4178. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4179. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4180. " </tr>\n"
  4181. " <tr height=\"20\">\n"
  4182. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4183. " <td>&nbsp;Deselects all objects</td>\n"
  4184. " </tr>\n"
  4185. " </tbody>\n"
  4186. " </table>\n"
  4187. " \n"
  4188. " "
  4189. msgstr ""
  4190. #: flatcamGUI/FlatCAMGUI.py:1264
  4191. msgid ""
  4192. "<b>Editor Shortcut list</b><br>\n"
  4193. " <br>\n"
  4194. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4195. "strong><br>\n"
  4196. " \n"
  4197. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4198. "\"width:283px\">\n"
  4199. " <tbody>\n"
  4200. " <tr height=\"20\">\n"
  4201. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4202. "td>\n"
  4203. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4204. " </tr>\n"
  4205. " <tr height=\"20\">\n"
  4206. " <td height=\"20\"><strong>B</strong></td>\n"
  4207. " <td>&nbsp;Buffer Tool</td>\n"
  4208. " </tr>\n"
  4209. " <tr height=\"20\">\n"
  4210. " <td height=\"20\"><strong>C</strong></td>\n"
  4211. " <td>&nbsp;Copy Geo Item</td>\n"
  4212. " </tr>\n"
  4213. " <tr height=\"20\">\n"
  4214. " <td height=\"20\"><strong>D</strong></td>\n"
  4215. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4216. "direction: CW or CCW</td>\n"
  4217. " </tr>\n"
  4218. " <tr height=\"20\">\n"
  4219. " <td height=\"20\"><strong>E</strong></td>\n"
  4220. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4221. " </tr>\n"
  4222. " <tr height=\"20\">\n"
  4223. " <td height=\"20\"><strong>I</strong></td>\n"
  4224. " <td>&nbsp;Paint Tool</td>\n"
  4225. " </tr>\n"
  4226. " <tr height=\"20\">\n"
  4227. " <td height=\"20\"><strong>J</strong></td>\n"
  4228. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4229. " </tr>\n"
  4230. " <tr height=\"20\">\n"
  4231. " <td height=\"20\"><strong>K</strong></td>\n"
  4232. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4233. " </tr>\n"
  4234. " <tr height=\"20\">\n"
  4235. " <td height=\"20\"><strong>M</strong></td>\n"
  4236. " <td>&nbsp;Move Geo Item</td>\n"
  4237. " </tr>\n"
  4238. " <tr height=\"20\">\n"
  4239. " <td height=\"20\"><strong>M</strong></td>\n"
  4240. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4241. "modes</td>\n"
  4242. " </tr>\n"
  4243. " <tr height=\"20\">\n"
  4244. " <td height=\"20\"><strong>N</strong></td>\n"
  4245. " <td>&nbsp;Draw a Polygon</td>\n"
  4246. " </tr>\n"
  4247. " <tr height=\"20\">\n"
  4248. " <td height=\"20\"><strong>O</strong></td>\n"
  4249. " <td>&nbsp;Draw a Circle</td>\n"
  4250. " </tr>\n"
  4251. " <tr height=\"20\">\n"
  4252. " <td height=\"20\"><strong>P</strong></td>\n"
  4253. " <td>&nbsp;Draw a Path</td>\n"
  4254. " </tr>\n"
  4255. " <tr height=\"20\">\n"
  4256. " <td height=\"20\"><strong>R</strong></td>\n"
  4257. " <td>&nbsp;Draw Rectangle</td>\n"
  4258. " </tr>\n"
  4259. " <tr height=\"20\">\n"
  4260. " <td height=\"20\"><strong>S</strong></td>\n"
  4261. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4262. " </tr>\n"
  4263. " <tr height=\"20\">\n"
  4264. " <td height=\"20\"><strong>T</strong></td>\n"
  4265. " <td>&nbsp;Add Text Tool</td>\n"
  4266. " </tr>\n"
  4267. " <tr height=\"20\">\n"
  4268. " <td height=\"20\"><strong>U</strong></td>\n"
  4269. " <td>&nbsp;Polygon Union Tool</td>\n"
  4270. " </tr>\n"
  4271. " <tr height=\"20\">\n"
  4272. " <td height=\"20\"><strong>X</strong></td>\n"
  4273. " <td>&nbsp;Flip shape on X axis</td>\n"
  4274. " </tr>\n"
  4275. " <tr height=\"20\">\n"
  4276. " <td height=\"20\"><strong>Y</strong></td>\n"
  4277. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4278. " </tr>\n"
  4279. " <tr height=\"20\">\n"
  4280. " <td height=\"20\">&nbsp;</td>\n"
  4281. " <td>&nbsp;</td>\n"
  4282. " </tr>\n"
  4283. " <tr height=\"20\">\n"
  4284. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4285. " <td>&nbsp;Skew shape on X axis</td>\n"
  4286. " </tr>\n"
  4287. " <tr height=\"20\">\n"
  4288. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4289. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4290. " </tr>\n"
  4291. " <tr height=\"20\">\n"
  4292. " <td height=\"20\">&nbsp;</td>\n"
  4293. " <td>&nbsp;</td>\n"
  4294. " </tr>\n"
  4295. " <tr height=\"20\">\n"
  4296. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4297. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4298. " </tr>\n"
  4299. " <tr height=\"20\">\n"
  4300. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4301. " <td>&nbsp;Offset shape on X axis</td>\n"
  4302. " </tr>\n"
  4303. " <tr height=\"20\">\n"
  4304. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4305. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4306. " </tr>\n"
  4307. " <tr height=\"20\">\n"
  4308. " <td height=\"20\">&nbsp;</td>\n"
  4309. " <td>&nbsp;</td>\n"
  4310. " </tr>\n"
  4311. " <tr height=\"20\">\n"
  4312. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4313. " <td>&nbsp;Measurement Tool</td>\n"
  4314. " </tr>\n"
  4315. " <tr height=\"20\">\n"
  4316. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4317. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4318. " </tr>\n"
  4319. " <tr height=\"20\">\n"
  4320. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4321. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4322. " </tr>\n"
  4323. " <tr height=\"20\">\n"
  4324. " <td height=\"20\">&nbsp;</td>\n"
  4325. " <td>&nbsp;</td>\n"
  4326. " </tr>\n"
  4327. " <tr height=\"20\">\n"
  4328. " <td height=\"20\"><strong>Space</strong></td>\n"
  4329. " <td>&nbsp;Rotate Geometry</td>\n"
  4330. " </tr>\n"
  4331. " <tr height=\"20\">\n"
  4332. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4333. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4334. " </tr>\n"
  4335. " <tr height=\"20\">\n"
  4336. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4337. " <td>&nbsp;Abort and return to Select</td>\n"
  4338. " </tr>\n"
  4339. " <tr height=\"20\">\n"
  4340. " <td height=\"20\"><strong>Del</strong></td>\n"
  4341. " <td>&nbsp;Delete Shape</td>\n"
  4342. " </tr>\n"
  4343. " </tbody>\n"
  4344. " </table>\n"
  4345. " <br>\n"
  4346. " <br>\n"
  4347. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4348. "strong><br>\n"
  4349. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4350. "\"width:283px\">\n"
  4351. " <tbody>\n"
  4352. " <tr height=\"20\">\n"
  4353. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4354. "td>\n"
  4355. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4356. " </tr>\n"
  4357. " <tr height=\"20\">\n"
  4358. " <td height=\"20\"><strong>C</strong></td>\n"
  4359. " <td>&nbsp;Copy Drill(s)</td>\n"
  4360. " </tr>\n"
  4361. " <tr height=\"20\">\n"
  4362. " <td height=\"20\"><strong>D</strong></td>\n"
  4363. " <td>&nbsp;Add Drill</td>\n"
  4364. " </tr>\n"
  4365. " <tr height=\"20\">\n"
  4366. " <td height=\"20\"><strong>J</strong></td>\n"
  4367. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4368. " </tr>\n"
  4369. " <tr height=\"20\">\n"
  4370. " <td height=\"20\"><strong>M</strong></td>\n"
  4371. " <td>&nbsp;Move Drill(s)</td>\n"
  4372. " </tr>\n"
  4373. " <tr height=\"20\">\n"
  4374. " <td height=\"20\"><strong>R</strong></td>\n"
  4375. " <td>&nbsp;Resize Drill(s)</td>\n"
  4376. " </tr>\n"
  4377. " <tr height=\"20\">\n"
  4378. " <td height=\"20\"><strong>T</strong></td>\n"
  4379. " <td>&nbsp;Add a new Tool</td>\n"
  4380. " </tr>\n"
  4381. " <tr height=\"20\">\n"
  4382. " <td height=\"20\">&nbsp;</td>\n"
  4383. " <td>&nbsp;</td>\n"
  4384. " </tr>\n"
  4385. " <tr height=\"20\">\n"
  4386. " <td height=\"20\"><strong>Del</strong></td>\n"
  4387. " <td>&nbsp;Delete Drill(s)</td>\n"
  4388. " </tr>\n"
  4389. " <tr height=\"20\">\n"
  4390. " <td height=\"20\"><strong>Del</strong></td>\n"
  4391. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4392. " </tr>\n"
  4393. " <tr height=\"20\">\n"
  4394. " <td height=\"20\">&nbsp;</td>\n"
  4395. " <td>&nbsp;</td>\n"
  4396. " </tr>\n"
  4397. " <tr height=\"20\">\n"
  4398. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4399. " <td>&nbsp;Abort and return to Select</td>\n"
  4400. " </tr>\n"
  4401. " <tr height=\"20\">\n"
  4402. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4403. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4404. " </tr>\n"
  4405. " </tbody>\n"
  4406. " </table>\n"
  4407. " <br>\n"
  4408. " <br>\n"
  4409. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4410. "strong><br>\n"
  4411. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4412. "\"width:283px\">\n"
  4413. " <tbody>\n"
  4414. " <tr height=\"20\">\n"
  4415. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4416. "td>\n"
  4417. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4418. " </tr>\n"
  4419. " <tr height=\"20\">\n"
  4420. " <td height=\"20\"><strong>B</strong></td>\n"
  4421. " <td>&nbsp;Buffer</td>\n"
  4422. " </tr>\n"
  4423. " <tr height=\"20\">\n"
  4424. " <td height=\"20\"><strong>C</strong></td>\n"
  4425. " <td>&nbsp;Copy</td>\n"
  4426. " </tr>\n"
  4427. " <tr height=\"20\">\n"
  4428. " <td height=\"20\"><strong>D</strong></td>\n"
  4429. " <td>&nbsp;Add Disc</td>\n"
  4430. " </tr>\n"
  4431. " <tr height=\"20\">\n"
  4432. " <td height=\"20\"><strong>E</strong></td>\n"
  4433. " <td>&nbsp;Add SemiDisc</td>\n"
  4434. " </tr>\n"
  4435. " <tr height=\"20\">\n"
  4436. " <td height=\"20\"><strong>J</strong></td>\n"
  4437. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4438. " </tr>\n"
  4439. " <tr height=\"20\">\n"
  4440. " <td height=\"20\"><strong>M</strong></td>\n"
  4441. " <td>&nbsp;Move</td>\n"
  4442. " </tr>\n"
  4443. " <tr height=\"20\">\n"
  4444. " <td height=\"20\"><strong>N</strong></td>\n"
  4445. " <td>&nbsp;Add Region</td>\n"
  4446. " </tr>\n"
  4447. " <tr height=\"20\">\n"
  4448. " <td height=\"20\"><strong>P</strong></td>\n"
  4449. " <td>&nbsp;Add Pad</td>\n"
  4450. " </tr>\n"
  4451. " <tr height=\"20\">\n"
  4452. " <td height=\"20\"><strong>R</strong></td>\n"
  4453. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4454. "REVERSE the bend modes</td>\n"
  4455. " </tr>\n"
  4456. " <tr height=\"20\">\n"
  4457. " <td height=\"20\"><strong>S</strong></td>\n"
  4458. " <td>&nbsp;Scale</td>\n"
  4459. " </tr>\n"
  4460. " <tr height=\"20\">\n"
  4461. " <td height=\"20\"><strong>T</strong></td>\n"
  4462. " <td>&nbsp;Add Track</td>\n"
  4463. " </tr>\n"
  4464. " <tr height=\"20\">\n"
  4465. " <td height=\"20\"><strong>T</strong></td>\n"
  4466. " <td>&nbsp;Within Track & Region Tools will cycle "
  4467. "FORWARD the bend modes</td>\n"
  4468. " </tr>\n"
  4469. " <tr height=\"20\">\n"
  4470. " <td height=\"20\">&nbsp;</td>\n"
  4471. " <td>&nbsp;</td>\n"
  4472. " </tr>\n"
  4473. " <tr height=\"20\">\n"
  4474. " <td height=\"20\"><strong>Del</strong></td>\n"
  4475. " <td>&nbsp;Delete</td>\n"
  4476. " </tr>\n"
  4477. " <tr height=\"20\">\n"
  4478. " <td height=\"20\"><strong>Del</strong></td>\n"
  4479. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4480. " </tr>\n"
  4481. " <tr height=\"20\">\n"
  4482. " <td height=\"20\">&nbsp;</td>\n"
  4483. " <td>&nbsp;</td>\n"
  4484. " </tr>\n"
  4485. " <tr height=\"20\">\n"
  4486. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4487. " <td>&nbsp;Abort and return to Select</td>\n"
  4488. " </tr>\n"
  4489. " <tr height=\"20\">\n"
  4490. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4491. " <td>&nbsp;Eraser Tool</td>\n"
  4492. " </tr>\n"
  4493. " <tr height=\"20\">\n"
  4494. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4495. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4496. " </tr>\n"
  4497. " <tr height=\"20\">\n"
  4498. " <td height=\"20\">&nbsp;</td>\n"
  4499. " <td>&nbsp;</td>\n"
  4500. " </tr>\n"
  4501. " <tr height=\"20\">\n"
  4502. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4503. " <td>&nbsp;Mark Area Tool</td>\n"
  4504. " </tr>\n"
  4505. " <tr height=\"20\">\n"
  4506. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4507. " <td>&nbsp;Poligonize Tool</td>\n"
  4508. " </tr>\n"
  4509. " <tr height=\"20\">\n"
  4510. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4511. " <td>&nbsp;Transformation Tool</td>\n"
  4512. " </tr>\n"
  4513. " </tbody>\n"
  4514. " </table>\n"
  4515. " "
  4516. msgstr ""
  4517. #: flatcamGUI/FlatCAMGUI.py:1589
  4518. msgid "Toggle Panel"
  4519. msgstr "Переключить бок. панель"
  4520. #: flatcamGUI/FlatCAMGUI.py:1592
  4521. msgid "New"
  4522. msgstr "Создать"
  4523. #: flatcamGUI/FlatCAMGUI.py:1593
  4524. msgid "Geometry"
  4525. msgstr "Geometry"
  4526. #: flatcamGUI/FlatCAMGUI.py:1595
  4527. msgid "Excellon"
  4528. msgstr "Excellon"
  4529. #: flatcamGUI/FlatCAMGUI.py:1600
  4530. msgid "Grids"
  4531. msgstr "Сетка"
  4532. #: flatcamGUI/FlatCAMGUI.py:1602
  4533. msgid "View"
  4534. msgstr "Вид"
  4535. #: flatcamGUI/FlatCAMGUI.py:1604
  4536. msgid "Clear Plot"
  4537. msgstr "Очистить участок"
  4538. #: flatcamGUI/FlatCAMGUI.py:1605
  4539. msgid "Replot"
  4540. msgstr "Перерисовать"
  4541. #: flatcamGUI/FlatCAMGUI.py:1608
  4542. msgid "Geo Editor"
  4543. msgstr "Редактор Geo"
  4544. #: flatcamGUI/FlatCAMGUI.py:1609
  4545. msgid "Line"
  4546. msgstr "Линия"
  4547. #: flatcamGUI/FlatCAMGUI.py:1610
  4548. msgid "Rectangle"
  4549. msgstr "Прямоугольник"
  4550. #: flatcamGUI/FlatCAMGUI.py:1611 flatcamGUI/FlatCAMGUI.py:5551
  4551. #: flatcamGUI/ObjectUI.py:1371
  4552. msgid "Cut"
  4553. msgstr "Вырезать"
  4554. #: flatcamGUI/FlatCAMGUI.py:1616
  4555. msgid "Pad"
  4556. msgstr "Площадка"
  4557. #: flatcamGUI/FlatCAMGUI.py:1617
  4558. msgid "Pad Array"
  4559. msgstr "Массив площадок"
  4560. #: flatcamGUI/FlatCAMGUI.py:1618
  4561. msgid "Track"
  4562. msgstr "Трек"
  4563. #: flatcamGUI/FlatCAMGUI.py:1619
  4564. msgid "Region"
  4565. msgstr "Регион"
  4566. #: flatcamGUI/FlatCAMGUI.py:1621
  4567. msgid "Exc Editor"
  4568. msgstr "Редактор Excellon"
  4569. #: flatcamGUI/FlatCAMGUI.py:1622
  4570. msgid "Add Drill"
  4571. msgstr "Добавить сверло"
  4572. #: flatcamGUI/FlatCAMGUI.py:1653
  4573. msgid "Print Preview"
  4574. msgstr "Предпр. печати"
  4575. #: flatcamGUI/FlatCAMGUI.py:1654
  4576. msgid "Print Code"
  4577. msgstr "Печать кода"
  4578. #: flatcamGUI/FlatCAMGUI.py:1655
  4579. msgid "Find in Code"
  4580. msgstr "Найти в коде"
  4581. #: flatcamGUI/FlatCAMGUI.py:1660
  4582. msgid "Replace With"
  4583. msgstr "Заменить"
  4584. #: flatcamGUI/FlatCAMGUI.py:1664 flatcamGUI/FlatCAMGUI.py:5549
  4585. #: flatcamGUI/FlatCAMGUI.py:6122 flatcamGUI/ObjectUI.py:1369
  4586. #: flatcamTools/ToolPaint.py:248
  4587. msgid "All"
  4588. msgstr "Все"
  4589. #: flatcamGUI/FlatCAMGUI.py:1666
  4590. msgid ""
  4591. "When checked it will replace all instances in the 'Find' box\n"
  4592. "with the text in the 'Replace' box.."
  4593. msgstr ""
  4594. "При установке флажка он заменит все экземпляры в поле \"Найти\"\n"
  4595. "с текстом в поле \"заменить\".."
  4596. #: flatcamGUI/FlatCAMGUI.py:1669
  4597. msgid "Open Code"
  4598. msgstr "Открыть файл"
  4599. #: flatcamGUI/FlatCAMGUI.py:1670
  4600. msgid "Save Code"
  4601. msgstr "Сохранить код"
  4602. #: flatcamGUI/FlatCAMGUI.py:1705
  4603. msgid ""
  4604. "Relative neasurement.\n"
  4605. "Reference is last click position"
  4606. msgstr ""
  4607. "Относительное измерение.\n"
  4608. "Ссылка-это позиция последнего клика"
  4609. #: flatcamGUI/FlatCAMGUI.py:1711
  4610. msgid ""
  4611. "Absolute neasurement.\n"
  4612. "Reference is (X=0, Y= 0) position"
  4613. msgstr ""
  4614. "Абсолютное измерение.\n"
  4615. "Ссылка (X=0, Y= 0) Положение"
  4616. #: flatcamGUI/FlatCAMGUI.py:1907
  4617. msgid "Select 'Esc'"
  4618. msgstr "Выбор 'Esc'"
  4619. #: flatcamGUI/FlatCAMGUI.py:1932
  4620. msgid "Copy Objects"
  4621. msgstr "Копировать объекты"
  4622. #: flatcamGUI/FlatCAMGUI.py:1934
  4623. msgid "Delete Shape"
  4624. msgstr "Удалить фигуру"
  4625. #: flatcamGUI/FlatCAMGUI.py:1939
  4626. msgid "Move Objects"
  4627. msgstr "Переместить объект"
  4628. #: flatcamGUI/FlatCAMGUI.py:2370
  4629. msgid ""
  4630. "Please first select a geometry item to be cutted\n"
  4631. "then select the geometry item that will be cutted\n"
  4632. "out of the first item. In the end press ~X~ key or\n"
  4633. "the toolbar button."
  4634. msgstr ""
  4635. "Сначала выберите элемент геометрии для вырезания\n"
  4636. "затем выберите элемент геометрии, который будет вырезан\n"
  4637. "из первого пункта. В конце нажмите клавишу ~X~ или\n"
  4638. "кнопка панели инструментов."
  4639. #: flatcamGUI/FlatCAMGUI.py:2377 flatcamGUI/FlatCAMGUI.py:2514
  4640. #: flatcamGUI/FlatCAMGUI.py:2573 flatcamGUI/FlatCAMGUI.py:2593
  4641. msgid "Warning"
  4642. msgstr "Внимание"
  4643. #: flatcamGUI/FlatCAMGUI.py:2444 flatcamGUI/FlatCAMGUI.py:2652
  4644. #: flatcamGUI/FlatCAMGUI.py:2863
  4645. msgid "[WARNING_NOTCL] Cancelled."
  4646. msgstr "[WARNING_NOTCL] Отмена."
  4647. #: flatcamGUI/FlatCAMGUI.py:2509
  4648. msgid ""
  4649. "Please select geometry items \n"
  4650. "on which to perform Intersection Tool."
  4651. msgstr ""
  4652. "Пожалуйста, выберите элементы геометрии \n"
  4653. "на котором выполняется инструмент пересечение."
  4654. #: flatcamGUI/FlatCAMGUI.py:2568
  4655. msgid ""
  4656. "Please select geometry items \n"
  4657. "on which to perform Substraction Tool."
  4658. msgstr ""
  4659. "Пожалуйста, выберите элементы геометрии \n"
  4660. "на котором выполнить вычитание инструмента."
  4661. #: flatcamGUI/FlatCAMGUI.py:2588
  4662. msgid ""
  4663. "Please select geometry items \n"
  4664. "on which to perform union."
  4665. msgstr ""
  4666. "Пожалуйста, выберите элементы геометрии \n"
  4667. "на котором выполнять объединение."
  4668. #: flatcamGUI/FlatCAMGUI.py:2668 flatcamGUI/FlatCAMGUI.py:2880
  4669. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4670. msgstr "[WARNING_NOTCL] Отмененный. Ничего не выбрано для удаления."
  4671. #: flatcamGUI/FlatCAMGUI.py:2752 flatcamGUI/FlatCAMGUI.py:2947
  4672. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4673. msgstr "[WARNING_NOTCL] Отмененный. Ничего не выбрано для копирования."
  4674. #: flatcamGUI/FlatCAMGUI.py:2798 flatcamGUI/FlatCAMGUI.py:2993
  4675. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4676. msgstr "[WARNING_NOTCL] Отмененный. Ничего не выбрано для перемещения."
  4677. #: flatcamGUI/FlatCAMGUI.py:3007
  4678. msgid "New Tool ..."
  4679. msgstr "Новый инструмент ..."
  4680. #: flatcamGUI/FlatCAMGUI.py:3008
  4681. msgid "Enter a Tool Diameter:"
  4682. msgstr "Введите диаметр инструмента:"
  4683. #: flatcamGUI/FlatCAMGUI.py:3051
  4684. msgid "Measurement Tool exit..."
  4685. msgstr "Измеритель закрыт ..."
  4686. #: flatcamGUI/FlatCAMGUI.py:3342
  4687. msgid "GUI Preferences"
  4688. msgstr "Параметры интерфейса"
  4689. #: flatcamGUI/FlatCAMGUI.py:3348
  4690. msgid "Grid X value:"
  4691. msgstr "Размер сетки Х:"
  4692. #: flatcamGUI/FlatCAMGUI.py:3350
  4693. msgid "This is the Grid snap value on X axis."
  4694. msgstr "Это значение привязки сетки по оси X."
  4695. #: flatcamGUI/FlatCAMGUI.py:3355
  4696. msgid "Grid Y value:"
  4697. msgstr "Размер сетки Y:"
  4698. #: flatcamGUI/FlatCAMGUI.py:3357
  4699. msgid "This is the Grid snap value on Y axis."
  4700. msgstr "Это значение привязки сетки по оси Y."
  4701. #: flatcamGUI/FlatCAMGUI.py:3362
  4702. msgid "Snap Max:"
  4703. msgstr "Оснастка Макс:"
  4704. #: flatcamGUI/FlatCAMGUI.py:3367
  4705. msgid "Workspace:"
  4706. msgstr "Рабочая среда:"
  4707. #: flatcamGUI/FlatCAMGUI.py:3369
  4708. msgid ""
  4709. "Draw a delimiting rectangle on canvas.\n"
  4710. "The purpose is to illustrate the limits for our work."
  4711. msgstr ""
  4712. "Нарисуйте прямоугольник с разделителями на холсте.\n"
  4713. "Цель состоит в том, чтобы проиллюстрировать пределы нашей работы."
  4714. #: flatcamGUI/FlatCAMGUI.py:3372
  4715. msgid "Wk. format:"
  4716. msgstr "Формат обработчика:"
  4717. #: flatcamGUI/FlatCAMGUI.py:3374
  4718. msgid ""
  4719. "Select the type of rectangle to be used on canvas,\n"
  4720. "as valid workspace."
  4721. msgstr ""
  4722. "Выберите тип прямоугольника, который будет использоваться на холсте,\n"
  4723. "как допустимое рабочее пространство."
  4724. #: flatcamGUI/FlatCAMGUI.py:3387
  4725. msgid "Plot Fill:"
  4726. msgstr "Заливка участка:"
  4727. #: flatcamGUI/FlatCAMGUI.py:3389
  4728. msgid ""
  4729. "Set the fill color for plotted objects.\n"
  4730. "First 6 digits are the color and the last 2\n"
  4731. "digits are for alpha (transparency) level."
  4732. msgstr ""
  4733. "Установите цвет заливки для построенных объектов.\n"
  4734. "Первые 6 цифр-это цвет, а последние 2\n"
  4735. "цифры для альфа-уровня (прозрачности)."
  4736. #: flatcamGUI/FlatCAMGUI.py:3403 flatcamGUI/FlatCAMGUI.py:3453
  4737. #: flatcamGUI/FlatCAMGUI.py:3503
  4738. msgid "Alpha Level:"
  4739. msgstr "Уровень прозрачности:"
  4740. #: flatcamGUI/FlatCAMGUI.py:3405
  4741. msgid "Set the fill transparency for plotted objects."
  4742. msgstr "Установите прозрачность заливки для построенных объектов."
  4743. #: flatcamGUI/FlatCAMGUI.py:3422
  4744. msgid "Plot Line:"
  4745. msgstr "Линия участка:"
  4746. #: flatcamGUI/FlatCAMGUI.py:3424
  4747. msgid "Set the line color for plotted objects."
  4748. msgstr "Установите цвет линии для построенных объектов."
  4749. #: flatcamGUI/FlatCAMGUI.py:3436
  4750. msgid "Sel. Fill:"
  4751. msgstr "Выбор Заполнения:"
  4752. #: flatcamGUI/FlatCAMGUI.py:3438
  4753. msgid ""
  4754. "Set the fill color for the selection box\n"
  4755. "in case that the selection is done from left to right.\n"
  4756. "First 6 digits are the color and the last 2\n"
  4757. "digits are for alpha (transparency) level."
  4758. msgstr ""
  4759. "Установка цвета заливки для поля выбора\n"
  4760. "в случае, если выбор сделан слева направо.\n"
  4761. "Первые 6 цифр-это цвет, а последние 2\n"
  4762. "цифры для альфа-уровня (прозрачности)."
  4763. #: flatcamGUI/FlatCAMGUI.py:3455
  4764. msgid "Set the fill transparency for the 'left to right' selection box."
  4765. msgstr "Установите прозрачность заливки для поля выбора \"слева направо\"."
  4766. #: flatcamGUI/FlatCAMGUI.py:3472
  4767. msgid "Sel. Line:"
  4768. msgstr "Строка Выбора:"
  4769. #: flatcamGUI/FlatCAMGUI.py:3474
  4770. msgid "Set the line color for the 'left to right' selection box."
  4771. msgstr "Установите цвет линии для поля выбора \"слева направо\"."
  4772. #: flatcamGUI/FlatCAMGUI.py:3486
  4773. msgid "Sel2. Fill:"
  4774. msgstr "Выбор 2. Заполнить:"
  4775. #: flatcamGUI/FlatCAMGUI.py:3488
  4776. msgid ""
  4777. "Set the fill color for the selection box\n"
  4778. "in case that the selection is done from right to left.\n"
  4779. "First 6 digits are the color and the last 2\n"
  4780. "digits are for alpha (transparency) level."
  4781. msgstr ""
  4782. "Установка цвета заливки для поля выбора\n"
  4783. "в случае, если выбор сделан справа налево.\n"
  4784. "Первые 6 цифр-это цвет, а последние 2\n"
  4785. "цифры для альфа-уровня (прозрачности)."
  4786. #: flatcamGUI/FlatCAMGUI.py:3505
  4787. msgid "Set the fill transparency for selection 'right to left' box."
  4788. msgstr "Установите прозрачность заливки для выбора \"справа налево\"."
  4789. #: flatcamGUI/FlatCAMGUI.py:3522
  4790. msgid "Sel2. Line:"
  4791. msgstr "Выбор Линии 2 :"
  4792. #: flatcamGUI/FlatCAMGUI.py:3524
  4793. msgid "Set the line color for the 'right to left' selection box."
  4794. msgstr "Установите цвет линии для поля выбора \"справа налево\"."
  4795. #: flatcamGUI/FlatCAMGUI.py:3536
  4796. msgid "Editor Draw:"
  4797. msgstr "Редактор Розыгрыша:"
  4798. #: flatcamGUI/FlatCAMGUI.py:3538
  4799. msgid "Set the color for the shape."
  4800. msgstr "Установите цвет для фигуры."
  4801. #: flatcamGUI/FlatCAMGUI.py:3550
  4802. msgid "Editor Draw Sel.:"
  4803. msgstr "Редактор Выбор Рисования:"
  4804. #: flatcamGUI/FlatCAMGUI.py:3552
  4805. msgid "Set the color of the shape when selected."
  4806. msgstr "Установите цвет фигуры при выборе."
  4807. #: flatcamGUI/FlatCAMGUI.py:3564
  4808. msgid "Project Items:"
  4809. msgstr "Элемент проекта:"
  4810. #: flatcamGUI/FlatCAMGUI.py:3566
  4811. msgid "Set the color of the items in Project Tab Tree."
  4812. msgstr "Установите цвет элементов в дереве вкладок проекта."
  4813. #: flatcamGUI/FlatCAMGUI.py:3577
  4814. msgid "Proj. Dis. Items:"
  4815. msgstr "Прой. Дис. Предметы:"
  4816. #: flatcamGUI/FlatCAMGUI.py:3579
  4817. msgid ""
  4818. "Set the color of the items in Project Tab Tree,\n"
  4819. "for the case when the items are disabled."
  4820. msgstr ""
  4821. "Установка цвета элементов в дереве вкладок проекта,\n"
  4822. "для случая, когда элементы отключены."
  4823. #: flatcamGUI/FlatCAMGUI.py:3630
  4824. msgid "GUI Settings"
  4825. msgstr "Настройки интерфейса"
  4826. #: flatcamGUI/FlatCAMGUI.py:3636
  4827. msgid "Layout:"
  4828. msgstr "Макет:"
  4829. #: flatcamGUI/FlatCAMGUI.py:3638
  4830. msgid ""
  4831. "Select an layout for FlatCAM.\n"
  4832. "It is applied immediately."
  4833. msgstr ""
  4834. "Выберите макет для FlatCAM кулачка.\n"
  4835. "Применяется немедленно."
  4836. #: flatcamGUI/FlatCAMGUI.py:3654
  4837. msgid "Style:"
  4838. msgstr "Стиль:"
  4839. #: flatcamGUI/FlatCAMGUI.py:3656
  4840. msgid ""
  4841. "Select an style for FlatCAM.\n"
  4842. "It will be applied at the next app start."
  4843. msgstr ""
  4844. "Выберите стиль для FlatCAM.\n"
  4845. "Он будет применен при следующем запуске приложения."
  4846. #: flatcamGUI/FlatCAMGUI.py:3667
  4847. msgid "HDPI Support:"
  4848. msgstr "Поддержка HDPI:"
  4849. #: flatcamGUI/FlatCAMGUI.py:3669
  4850. msgid ""
  4851. "Enable High DPI support for FlatCAM.\n"
  4852. "It will be applied at the next app start."
  4853. msgstr ""
  4854. "Включает поддержку высокого разрешения для FlatCAM.\n"
  4855. "Требуется перезапуск приложения."
  4856. #: flatcamGUI/FlatCAMGUI.py:3682
  4857. msgid "Clear GUI Settings:"
  4858. msgstr "Сброс настроек:"
  4859. #: flatcamGUI/FlatCAMGUI.py:3684
  4860. msgid ""
  4861. "Clear the GUI settings for FlatCAM,\n"
  4862. "such as: layout, gui state, style, hdpi support etc."
  4863. msgstr ""
  4864. "Сброс настроек интерфейса FlatCAM,\n"
  4865. "таких как: макет, состояние интерфейса, стиль, поддержка hdpi и т. д."
  4866. #: flatcamGUI/FlatCAMGUI.py:3687
  4867. msgid "Clear"
  4868. msgstr "Сбросить"
  4869. #: flatcamGUI/FlatCAMGUI.py:3691
  4870. msgid "Hover Shape:"
  4871. msgstr "Форма Наведения:"
  4872. #: flatcamGUI/FlatCAMGUI.py:3693
  4873. msgid ""
  4874. "Enable display of a hover shape for FlatCAM objects.\n"
  4875. "It is displayed whenever the mouse cursor is hovering\n"
  4876. "over any kind of not-selected object."
  4877. msgstr ""
  4878. "Возможность отображения формы при наведении на объекты FlatCAM.\n"
  4879. "Он отображается при наведении курсора мыши\n"
  4880. "над любым невыбранным объектом."
  4881. #: flatcamGUI/FlatCAMGUI.py:3700
  4882. msgid "Sel. Shape:"
  4883. msgstr "Сэл. Форма:"
  4884. #: flatcamGUI/FlatCAMGUI.py:3702
  4885. msgid ""
  4886. "Enable the display of a selection shape for FlatCAM objects.\n"
  4887. "It is displayed whenever the mouse selects an object\n"
  4888. "either by clicking or dragging mouse from left to right or\n"
  4889. "right to left."
  4890. msgstr ""
  4891. "Включите отображение формы выделения для объектов FlatCAM.\n"
  4892. "Он отображается всякий раз, когда мышь выбирает объект\n"
  4893. "щелчком или перетаскиванием мыши слева направо или\n"
  4894. "справа налево."
  4895. #: flatcamGUI/FlatCAMGUI.py:3744
  4896. msgid "Are you sure you want to delete the GUI Settings? \n"
  4897. msgstr "Вы уверены, что хотите сбросить настройки интерфейса?\n"
  4898. #: flatcamGUI/FlatCAMGUI.py:3747
  4899. msgid "Clear GUI Settings"
  4900. msgstr "Сброс настроек интерфейса"
  4901. #: flatcamGUI/FlatCAMGUI.py:3768
  4902. msgid "App Preferences"
  4903. msgstr "Параметры приложения"
  4904. #: flatcamGUI/FlatCAMGUI.py:3774
  4905. msgid "<b>Units:</b>"
  4906. msgstr "<b>Единицы:</b>"
  4907. #: flatcamGUI/FlatCAMGUI.py:3775
  4908. msgid ""
  4909. "The default value for FlatCAM units.\n"
  4910. "Whatever is selected here is set every time\n"
  4911. "FLatCAM is started."
  4912. msgstr ""
  4913. "Значение по умолчанию для модулей FlatCAM.\n"
  4914. "Все, что выбрано здесь, устанавливается каждый раз\n"
  4915. "FlatCAM запущен."
  4916. #: flatcamGUI/FlatCAMGUI.py:3778
  4917. msgid "IN"
  4918. msgstr "Дюйм"
  4919. #: flatcamGUI/FlatCAMGUI.py:3779 flatcamGUI/FlatCAMGUI.py:4268
  4920. #: flatcamGUI/FlatCAMGUI.py:4529 flatcamGUI/FlatCAMGUI.py:4920
  4921. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  4922. msgid "MM"
  4923. msgstr "MM"
  4924. #: flatcamGUI/FlatCAMGUI.py:3782
  4925. msgid "<b>APP. LEVEL:</b>"
  4926. msgstr "<b>РЕЖИМ:</b>"
  4927. #: flatcamGUI/FlatCAMGUI.py:3783
  4928. msgid ""
  4929. "Choose the default level of usage for FlatCAM.\n"
  4930. "BASIC level -> reduced functionality, best for beginner's.\n"
  4931. "ADVANCED level -> full functionality.\n"
  4932. "\n"
  4933. "The choice here will influence the parameters in\n"
  4934. "the Selected Tab for all kinds of FlatCAM objects."
  4935. msgstr ""
  4936. "Выберите уровень использования по умолчанию для FlatCAM кулачка.\n"
  4937. "Базовый уровень - > уменьшенная функциональность, лучше всего подходит для "
  4938. "начинающих.\n"
  4939. "Расширенный уровень - > полная функциональность.\n"
  4940. "\n"
  4941. "Выбор здесь повлияет на параметры внутри\n"
  4942. "выбранная вкладка для всех видов FlatCAM объектов."
  4943. #: flatcamGUI/FlatCAMGUI.py:3788 flatcamGUI/FlatCAMGUI.py:4556
  4944. msgid "Basic"
  4945. msgstr "Баз."
  4946. #: flatcamGUI/FlatCAMGUI.py:3789
  4947. msgid "Advanced"
  4948. msgstr "Расш."
  4949. #: flatcamGUI/FlatCAMGUI.py:3792
  4950. msgid "<b>Languages:</b>"
  4951. msgstr "<b>Язык:</b>"
  4952. #: flatcamGUI/FlatCAMGUI.py:3793
  4953. msgid "Set the language used throughout FlatCAM."
  4954. msgstr "Установите язык, используемый в плоском кулачке."
  4955. #: flatcamGUI/FlatCAMGUI.py:3796
  4956. msgid "Apply Language"
  4957. msgstr "Применить"
  4958. #: flatcamGUI/FlatCAMGUI.py:3797
  4959. msgid ""
  4960. "Set the language used throughout FlatCAM.\n"
  4961. "The app will restart after click.Windows: When FlatCAM is installed in "
  4962. "Program Files\n"
  4963. "directory, it is possible that the app will not\n"
  4964. "restart after the button is clicked due of Windows\n"
  4965. "security features. In this case the language will be\n"
  4966. "applied at the next app start."
  4967. msgstr ""
  4968. "Установите язык, используемый в FlatCAM.\n"
  4969. "Приложение будет перезапущено после нажатия кнопки.Windows: когда FlatCAM "
  4970. "установлен в программных файлах\n"
  4971. "каталог, возможно, что приложение не будет \n"
  4972. "перезагрузка после нажатия кнопки из-за окон\n"
  4973. "элементы безопасности. В этом случае язык будет\n"
  4974. "применяется при следующем запуске приложения."
  4975. #: flatcamGUI/FlatCAMGUI.py:3806
  4976. msgid "Shell at StartUp:"
  4977. msgstr "Ком.строка при запуске:"
  4978. #: flatcamGUI/FlatCAMGUI.py:3808 flatcamGUI/FlatCAMGUI.py:3813
  4979. msgid ""
  4980. "Check this box if you want the shell to\n"
  4981. "start automatically at startup."
  4982. msgstr ""
  4983. "Установите этот флажок, если требуется, чтобы оболочка\n"
  4984. "запуск автоматически при запуске."
  4985. #: flatcamGUI/FlatCAMGUI.py:3818
  4986. msgid "Version Check:"
  4987. msgstr "Проверять обновления:"
  4988. #: flatcamGUI/FlatCAMGUI.py:3820 flatcamGUI/FlatCAMGUI.py:3825
  4989. msgid ""
  4990. "Check this box if you want to check\n"
  4991. "for a new version automatically at startup."
  4992. msgstr ""
  4993. "Установите этот флажок, если вы хотите автоматически\n"
  4994. "проверять обновление программы при запуске."
  4995. #: flatcamGUI/FlatCAMGUI.py:3830
  4996. msgid "Send Stats:"
  4997. msgstr "Отправлять статистику:"
  4998. #: flatcamGUI/FlatCAMGUI.py:3832 flatcamGUI/FlatCAMGUI.py:3837
  4999. msgid ""
  5000. "Check this box if you agree to send anonymous\n"
  5001. "stats automatically at startup, to help improve FlatCAM."
  5002. msgstr ""
  5003. "Установите этот флажок, если вы согласны автоматически отправлять\n"
  5004. "анонимную статистику при запуске, чтобы помочь улучшить FlatCAM."
  5005. #: flatcamGUI/FlatCAMGUI.py:3844
  5006. msgid "<b>Pan Button:</b>"
  5007. msgstr "<b>Кнопка панарам.:</b>"
  5008. #: flatcamGUI/FlatCAMGUI.py:3845
  5009. msgid ""
  5010. "Select the mouse button to use for panning:\n"
  5011. "- MMB --> Middle Mouse Button\n"
  5012. "- RMB --> Right Mouse Button"
  5013. msgstr ""
  5014. "Выбор кнопки мыши для панорамирования:\n"
  5015. "- MMB --> Средняя кнопка мыши\n"
  5016. "- RMB --> Правая кнопка мыши"
  5017. #: flatcamGUI/FlatCAMGUI.py:3848
  5018. msgid "MMB"
  5019. msgstr "MMB"
  5020. #: flatcamGUI/FlatCAMGUI.py:3849
  5021. msgid "RMB"
  5022. msgstr "RMB"
  5023. #: flatcamGUI/FlatCAMGUI.py:3852
  5024. msgid "<b>Multiple Sel:</b>"
  5025. msgstr "<b>Мультивыбор:</b>"
  5026. #: flatcamGUI/FlatCAMGUI.py:3853
  5027. msgid "Select the key used for multiple selection."
  5028. msgstr "Выберите ключ, используемый для множественного выбора."
  5029. #: flatcamGUI/FlatCAMGUI.py:3858
  5030. msgid "Project at StartUp:"
  5031. msgstr "Проект при запуске:"
  5032. #: flatcamGUI/FlatCAMGUI.py:3860 flatcamGUI/FlatCAMGUI.py:3865
  5033. msgid ""
  5034. "Check this box if you want the project/selected/tool tab area to\n"
  5035. "to be shown automatically at startup."
  5036. msgstr ""
  5037. "Установите этот флажок, если требуется, чтобы область вкладки проект / "
  5038. "выбранный / инструмент\n"
  5039. "автоматически показывается при запуске."
  5040. #: flatcamGUI/FlatCAMGUI.py:3870
  5041. msgid "Project AutoHide:"
  5042. msgstr "Автоскр. проекта:"
  5043. #: flatcamGUI/FlatCAMGUI.py:3872 flatcamGUI/FlatCAMGUI.py:3878
  5044. msgid ""
  5045. "Check this box if you want the project/selected/tool tab area to\n"
  5046. "hide automatically when there are no objects loaded and\n"
  5047. "to show whenever a new object is created."
  5048. msgstr ""
  5049. "Установите этот флажок, если требуется, чтобы область вкладки проект / "
  5050. "выбранный / инструмент\n"
  5051. "скрыть автоматически, когда нет загруженных объектов и\n"
  5052. "показывать при создании нового объекта."
  5053. #: flatcamGUI/FlatCAMGUI.py:3884
  5054. msgid "<b>Enable ToolTips:</b>"
  5055. msgstr "<b>Вспл. подсказки:</b>"
  5056. #: flatcamGUI/FlatCAMGUI.py:3886 flatcamGUI/FlatCAMGUI.py:3891
  5057. msgid ""
  5058. "Check this box if you want to have toolTips displayed\n"
  5059. "when hovering with mouse over items throughout the App."
  5060. msgstr ""
  5061. "Установите этот флажок, если вы хотите, чтобы всплывающие подсказки "
  5062. "отображались\n"
  5063. "при наведении курсора мыши на элементы по всему приложению."
  5064. #: flatcamGUI/FlatCAMGUI.py:3894
  5065. msgid "Workers number:"
  5066. msgstr "Обработчики:"
  5067. #: flatcamGUI/FlatCAMGUI.py:3896 flatcamGUI/FlatCAMGUI.py:3905
  5068. msgid ""
  5069. "The number of Qthreads made available to the App.\n"
  5070. "A bigger number may finish the jobs more quickly but\n"
  5071. "depending on your computer speed, may make the App\n"
  5072. "unresponsive. Can have a value between 2 and 16.\n"
  5073. "Default value is 2.\n"
  5074. "After change, it will be applied at next App start."
  5075. msgstr ""
  5076. "Количество QThreads, доступных приложению.\n"
  5077. "Большее число может закончить работу быстрее, но\n"
  5078. "в зависимости от скорости вашего компьютера, может сделать приложение\n"
  5079. "неотзывчивый. Может иметь значение от 2 до 16.\n"
  5080. "Значение по умолчанию-2.\n"
  5081. "После изменения, он будет применяться при следующем запуске приложения."
  5082. #: flatcamGUI/FlatCAMGUI.py:3915
  5083. msgid "Geo Tolerance:"
  5084. msgstr "Гео Толерантности:"
  5085. #: flatcamGUI/FlatCAMGUI.py:3917 flatcamGUI/FlatCAMGUI.py:3926
  5086. msgid ""
  5087. "This value can counter the effect of the Circle Steps\n"
  5088. "parameter. Default value is 0.01.\n"
  5089. "A lower value will increase the detail both in image\n"
  5090. "and in Gcode for the circles, with a higher cost in\n"
  5091. "performance. Higher value will provide more\n"
  5092. "performance at the expense of level of detail."
  5093. msgstr ""
  5094. "Это значение может противостоять эффекту шагов круга\n"
  5095. "параметр. Значение по умолчанию-0.01.\n"
  5096. "Более низкое значение увеличит детализацию как в изображении\n"
  5097. "и в G-код для кругов, с более высокой ценой в\n"
  5098. "спектакль. Более высокое значение обеспечит больше\n"
  5099. "производительность за счет уровня детализации."
  5100. #: flatcamGUI/FlatCAMGUI.py:3962
  5101. msgid "\"Open\" behavior"
  5102. msgstr "\"Открытое\" поведение"
  5103. #: flatcamGUI/FlatCAMGUI.py:3964
  5104. msgid ""
  5105. "When checked the path for the last saved file is used when saving files,\n"
  5106. "and the path for the last opened file is used when opening files.\n"
  5107. "\n"
  5108. "When unchecked the path for opening files is the one used last: either the\n"
  5109. "path for saving files or the path for opening files."
  5110. msgstr ""
  5111. "При проверке путь к последнему сохраненному файлу используется при "
  5112. "сохранении файлов,\n"
  5113. "и путь к последнему открытому файлу используется при открытии файлов.\n"
  5114. "\n"
  5115. "Когда флажок снят, путь для открытия файлов используется последним: либо\n"
  5116. "путь для сохранения файлов или путь для открытия файлов."
  5117. #: flatcamGUI/FlatCAMGUI.py:3973
  5118. msgid "Save Compressed Project"
  5119. msgstr "Сохранить сжатый проект"
  5120. #: flatcamGUI/FlatCAMGUI.py:3975
  5121. msgid ""
  5122. "Whether to save a compressed or uncompressed project.\n"
  5123. "When checked it will save a compressed FlatCAM project."
  5124. msgstr ""
  5125. "Сохранение сжатого или несжатого проекта.\n"
  5126. "При проверке он сохранит сжатый FlatCAM проект."
  5127. #: flatcamGUI/FlatCAMGUI.py:3986
  5128. msgid "Compression Level:"
  5129. msgstr "Уровень сжатия:"
  5130. #: flatcamGUI/FlatCAMGUI.py:3988
  5131. msgid ""
  5132. "The level of compression used when saving\n"
  5133. "a FlatCAM project. Higher value means better compression\n"
  5134. "but require more RAM usage and more processing time."
  5135. msgstr ""
  5136. "Уровень сжатия при сохранении FlatCAM проект. \n"
  5137. "Более высокое значение означает более высокую степень сжатия\n"
  5138. "но требуют больше памяти и больше времени на обработку."
  5139. #: flatcamGUI/FlatCAMGUI.py:4011
  5140. msgid "Gerber General"
  5141. msgstr "Gerber основные"
  5142. #: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/FlatCAMGUI.py:4380
  5143. #: flatcamGUI/FlatCAMGUI.py:5154 flatcamGUI/FlatCAMGUI.py:5523
  5144. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:502
  5145. #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1355
  5146. msgid "<b>Plot Options:</b>"
  5147. msgstr "<b>Отрисовка:</b>"
  5148. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4392
  5149. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:503
  5150. msgid "Solid"
  5151. msgstr "Заливка"
  5152. #: flatcamGUI/FlatCAMGUI.py:4023 flatcamGUI/ObjectUI.py:158
  5153. msgid "Solid color polygons."
  5154. msgstr "Сплошной цвет полигонов."
  5155. #: flatcamGUI/FlatCAMGUI.py:4028 flatcamGUI/ObjectUI.py:164
  5156. msgid "M-Color"
  5157. msgstr "Мн.цветн"
  5158. #: flatcamGUI/FlatCAMGUI.py:4030 flatcamGUI/ObjectUI.py:166
  5159. msgid "Draw polygons in different colors."
  5160. msgstr "Окрашивать полигоны разными цветами."
  5161. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4386
  5162. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:172
  5163. msgid "Plot"
  5164. msgstr "Участок"
  5165. #: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:5160
  5166. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:543
  5167. #: flatcamGUI/ObjectUI.py:876 flatcamGUI/ObjectUI.py:1455
  5168. msgid "Plot (show) this object."
  5169. msgstr "Начертить (отобразить) этот объект."
  5170. #: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/FlatCAMGUI.py:5168
  5171. #: flatcamGUI/FlatCAMGUI.py:5606
  5172. msgid "Circle Steps:"
  5173. msgstr "Круговые шаги:"
  5174. #: flatcamGUI/FlatCAMGUI.py:4044
  5175. msgid ""
  5176. "The number of circle steps for Gerber \n"
  5177. "circular aperture linear approximation."
  5178. msgstr ""
  5179. "Число шагов круга для Gerber \n"
  5180. "линейная аппроксимация круглой апертуры."
  5181. #: flatcamGUI/FlatCAMGUI.py:4059
  5182. msgid "Gerber Options"
  5183. msgstr "Параметры Gerber"
  5184. #: flatcamGUI/FlatCAMGUI.py:4062 flatcamGUI/ObjectUI.py:250
  5185. msgid "<b>Isolation Routing:</b>"
  5186. msgstr "<b>Изоляция разводки:</b>"
  5187. #: flatcamGUI/FlatCAMGUI.py:4064 flatcamGUI/ObjectUI.py:252
  5188. msgid ""
  5189. "Create a Geometry object with\n"
  5190. "toolpaths to cut outside polygons."
  5191. msgstr ""
  5192. "Создание объекта Geometry\n"
  5193. "с траекториям обрезки за\n"
  5194. "пределами полигонов."
  5195. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4754
  5196. #: flatcamGUI/FlatCAMGUI.py:5895 flatcamGUI/ObjectUI.py:785
  5197. #: flatcamGUI/ObjectUI.py:801
  5198. msgid "Diameter of the cutting tool."
  5199. msgstr "Диаметр режущего инструмента."
  5200. #: flatcamGUI/FlatCAMGUI.py:4082
  5201. msgid "Width (# passes):"
  5202. msgstr "Кол-во проходов:"
  5203. #: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/ObjectUI.py:274
  5204. msgid ""
  5205. "Width of the isolation gap in\n"
  5206. "number (integer) of tool widths."
  5207. msgstr ""
  5208. "Ширина промежутка изоляции в \n"
  5209. "числах (целое число) ширины инструмента."
  5210. #: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/ObjectUI.py:282
  5211. msgid "Pass overlap:"
  5212. msgstr "Перекрытие:"
  5213. #: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/ObjectUI.py:284
  5214. #, python-format
  5215. msgid ""
  5216. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5217. "Example:\n"
  5218. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5219. "above."
  5220. msgstr ""
  5221. "Какая часть ширины инструмента будет перекрываться за каждый проход "
  5222. "инструмента.\n"
  5223. "Пример:\n"
  5224. "Здесь значение 0.25 означает 25% от диаметра инструмента, указанного выше."
  5225. #: flatcamGUI/FlatCAMGUI.py:4102 flatcamGUI/ObjectUI.py:294
  5226. msgid "Milling Type:"
  5227. msgstr "Тип фрезерования:"
  5228. #: flatcamGUI/FlatCAMGUI.py:4104 flatcamGUI/ObjectUI.py:296
  5229. msgid ""
  5230. "Milling type:\n"
  5231. "- climb / best for precision milling and to reduce tool usage\n"
  5232. "- conventional / useful when there is no backlash compensation"
  5233. msgstr ""
  5234. "Тип фрезерования:\n"
  5235. "- climb / лучше всего подходит для точного фрезерования и уменьшения "
  5236. "использования инструмента\n"
  5237. "- conventional / полезен, когда нет компенсации люфта"
  5238. #: flatcamGUI/FlatCAMGUI.py:4109 flatcamGUI/ObjectUI.py:301
  5239. msgid "Climb"
  5240. msgstr "Постепенный"
  5241. #: flatcamGUI/FlatCAMGUI.py:4110 flatcamGUI/ObjectUI.py:302
  5242. msgid "Conv."
  5243. msgstr "Обычный"
  5244. #: flatcamGUI/FlatCAMGUI.py:4114
  5245. msgid "Combine Passes"
  5246. msgstr "Объед. проходы"
  5247. #: flatcamGUI/FlatCAMGUI.py:4116 flatcamGUI/ObjectUI.py:308
  5248. msgid "Combine all passes into one object"
  5249. msgstr "Объединить все проходы в один объект"
  5250. #: flatcamGUI/FlatCAMGUI.py:4121
  5251. msgid "<b>Clear non-copper:</b>"
  5252. msgstr "<b>Очистка меди:</b>"
  5253. #: flatcamGUI/FlatCAMGUI.py:4123 flatcamGUI/FlatCAMGUI.py:5783
  5254. #: flatcamGUI/ObjectUI.py:383
  5255. msgid ""
  5256. "Create a Geometry object with\n"
  5257. "toolpaths to cut all non-copper regions."
  5258. msgstr ""
  5259. "Создание объекта геометрии с помощью\n"
  5260. "траектории резания для всех областей, отличных от меди."
  5261. #: flatcamGUI/FlatCAMGUI.py:4132 flatcamGUI/FlatCAMGUI.py:4158
  5262. #: flatcamGUI/ObjectUI.py:427 flatcamGUI/ObjectUI.py:461
  5263. msgid "Boundary Margin:"
  5264. msgstr "Отст. от дорож.:"
  5265. #: flatcamGUI/FlatCAMGUI.py:4134 flatcamGUI/ObjectUI.py:429
  5266. msgid ""
  5267. "Specify the edge of the PCB\n"
  5268. "by drawing a box around all\n"
  5269. "objects with this minimum\n"
  5270. "distance."
  5271. msgstr ""
  5272. "Обозначает край печатной платы \n"
  5273. "рисованием прямоугольника вокруг всех \n"
  5274. "объектов с этим минимальным \n"
  5275. "расстоянием."
  5276. #: flatcamGUI/FlatCAMGUI.py:4144 flatcamGUI/FlatCAMGUI.py:4167
  5277. msgid "Rounded corners"
  5278. msgstr "Закруглять углы"
  5279. #: flatcamGUI/FlatCAMGUI.py:4146
  5280. msgid ""
  5281. "Creates a Geometry objects with polygons\n"
  5282. "covering the copper-free areas of the PCB."
  5283. msgstr ""
  5284. "Создает объект геометрии с полигонами\n"
  5285. "охватывающими неомедненные области печатной платы."
  5286. #: flatcamGUI/FlatCAMGUI.py:4152 flatcamGUI/ObjectUI.py:451
  5287. msgid "<b>Bounding Box:</b>"
  5288. msgstr "<b>Ограничительная рамка:</b>"
  5289. #: flatcamGUI/FlatCAMGUI.py:4160 flatcamGUI/ObjectUI.py:463
  5290. msgid ""
  5291. "Distance of the edges of the box\n"
  5292. "to the nearest polygon."
  5293. msgstr ""
  5294. "Расстояние от края поля\n"
  5295. "до ближайшего полигона."
  5296. #: flatcamGUI/FlatCAMGUI.py:4169 flatcamGUI/ObjectUI.py:473
  5297. msgid ""
  5298. "If the bounding box is \n"
  5299. "to have rounded corners\n"
  5300. "their radius is equal to\n"
  5301. "the margin."
  5302. msgstr ""
  5303. "Если ограничительная рамка \n"
  5304. "имеет закругленные углы\n"
  5305. "их радиус будет равен\n"
  5306. "отступу."
  5307. #: flatcamGUI/FlatCAMGUI.py:4183
  5308. msgid "Gerber Adv. Options"
  5309. msgstr "Gerber дополн."
  5310. #: flatcamGUI/FlatCAMGUI.py:4186
  5311. msgid "<b>Advanced Param.:</b>"
  5312. msgstr "<b>Дополнительные настройки:</b>"
  5313. #: flatcamGUI/FlatCAMGUI.py:4188
  5314. msgid ""
  5315. "A list of Gerber advanced parameters.\n"
  5316. "Those parameters are available only for\n"
  5317. "Advanced App. Level."
  5318. msgstr ""
  5319. "Список расширенных параметров Gerber.\n"
  5320. "Эти параметры доступны только для\n"
  5321. "расширенного режима приложения."
  5322. #: flatcamGUI/FlatCAMGUI.py:4198 flatcamGUI/ObjectUI.py:313
  5323. msgid "\"Follow\""
  5324. msgstr "\"Следовать\""
  5325. #: flatcamGUI/FlatCAMGUI.py:4200 flatcamGUI/ObjectUI.py:315
  5326. msgid ""
  5327. "Generate a 'Follow' geometry.\n"
  5328. "This means that it will cut through\n"
  5329. "the middle of the trace."
  5330. msgstr ""
  5331. "Создаёт геометрию 'Следовать'.\n"
  5332. "Это означает, что он будет прорезать\n"
  5333. "середину трассы."
  5334. #: flatcamGUI/FlatCAMGUI.py:4207
  5335. msgid "Table Show/Hide"
  5336. msgstr "Таблица вкл/откл"
  5337. #: flatcamGUI/FlatCAMGUI.py:4209
  5338. msgid ""
  5339. "Toggle the display of the Gerber Apertures Table.\n"
  5340. "Also, on hide, it will delete all mark shapes\n"
  5341. "that are drawn on canvas."
  5342. msgstr ""
  5343. "Переключение отображения таблицы апертур Gerber.\n"
  5344. "Кроме того, при скрытии он удалит все фигуры меток\n"
  5345. "которые нарисованы на холсте."
  5346. #: flatcamGUI/FlatCAMGUI.py:4248
  5347. msgid "Gerber Export"
  5348. msgstr "Экспорт Gerber"
  5349. #: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4903
  5350. msgid "<b>Export Options:</b>"
  5351. msgstr "<b>Параметры экспорта:</b>"
  5352. #: flatcamGUI/FlatCAMGUI.py:4253
  5353. msgid ""
  5354. "The parameters set here are used in the file exported\n"
  5355. "when using the File -> Export -> Export Gerber menu entry."
  5356. msgstr ""
  5357. "Заданные здесь параметры используются в экспортированном файле\n"
  5358. "при использовании пункта меню File -> Export -> Export Gerber."
  5359. #: flatcamGUI/FlatCAMGUI.py:4262 flatcamGUI/FlatCAMGUI.py:4914
  5360. msgid "<b>Units</b>:"
  5361. msgstr "<b>Единицы</b>:"
  5362. #: flatcamGUI/FlatCAMGUI.py:4264 flatcamGUI/FlatCAMGUI.py:4270
  5363. msgid "The units used in the Gerber file."
  5364. msgstr "Единицы измерения, используемые в файле Gerber."
  5365. #: flatcamGUI/FlatCAMGUI.py:4267 flatcamGUI/FlatCAMGUI.py:4528
  5366. #: flatcamGUI/FlatCAMGUI.py:4919 flatcamTools/ToolCalculators.py:60
  5367. #: flatcamTools/ToolPcbWizard.py:125
  5368. msgid "INCH"
  5369. msgstr "ДЮЙМЫ"
  5370. #: flatcamGUI/FlatCAMGUI.py:4276 flatcamGUI/FlatCAMGUI.py:4928
  5371. msgid "<b>Int/Decimals:</b>"
  5372. msgstr "<b>Int/Decimals:</b>"
  5373. #: flatcamGUI/FlatCAMGUI.py:4278
  5374. msgid ""
  5375. "The number of digits in the whole part of the number\n"
  5376. "and in the fractional part of the number."
  5377. msgstr ""
  5378. "Количество цифр в целой части числа\n"
  5379. "и в дробной части числа."
  5380. #: flatcamGUI/FlatCAMGUI.py:4289
  5381. msgid ""
  5382. "This numbers signify the number of digits in\n"
  5383. "the whole part of Gerber coordinates."
  5384. msgstr ""
  5385. "Эти числа обозначают количество цифр в\n"
  5386. "вся часть координат Gerber."
  5387. #: flatcamGUI/FlatCAMGUI.py:4303
  5388. msgid ""
  5389. "This numbers signify the number of digits in\n"
  5390. "the decimal part of Gerber coordinates."
  5391. msgstr ""
  5392. "Эти числа обозначают количество цифр в\n"
  5393. "десятичная часть координат Gerber."
  5394. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:4989
  5395. msgid "<b>Zeros</b>:"
  5396. msgstr "<b>Нули</b>:"
  5397. #: flatcamGUI/FlatCAMGUI.py:4315 flatcamGUI/FlatCAMGUI.py:4325
  5398. msgid ""
  5399. "This sets the type of Gerber zeros.\n"
  5400. "If LZ then Leading Zeros are removed and\n"
  5401. "Trailing Zeros are kept.\n"
  5402. "If TZ is checked then Trailing Zeros are removed\n"
  5403. "and Leading Zeros are kept."
  5404. msgstr ""
  5405. #: flatcamGUI/FlatCAMGUI.py:4322 flatcamGUI/FlatCAMGUI.py:4504
  5406. #: flatcamGUI/FlatCAMGUI.py:4999 flatcamTools/ToolPcbWizard.py:111
  5407. msgid "LZ"
  5408. msgstr ""
  5409. #: flatcamGUI/FlatCAMGUI.py:4323 flatcamGUI/FlatCAMGUI.py:4505
  5410. #: flatcamGUI/FlatCAMGUI.py:5000 flatcamTools/ToolPcbWizard.py:112
  5411. msgid "TZ"
  5412. msgstr "TZ"
  5413. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/FlatCAMGUI.py:5030
  5414. #: flatcamGUI/FlatCAMGUI.py:5489 flatcamGUI/FlatCAMGUI.py:5781
  5415. #: flatcamGUI/FlatCAMGUI.py:5882 flatcamGUI/FlatCAMGUI.py:5976
  5416. #: flatcamGUI/FlatCAMGUI.py:6035 flatcamGUI/FlatCAMGUI.py:6138
  5417. #: flatcamGUI/FlatCAMGUI.py:6199 flatcamGUI/FlatCAMGUI.py:6398
  5418. #: flatcamGUI/FlatCAMGUI.py:6525
  5419. msgid "<b>Parameters:</b>"
  5420. msgstr "<b>Параметры:</b>"
  5421. #: flatcamGUI/FlatCAMGUI.py:4347
  5422. msgid "A list of Gerber Editor parameters."
  5423. msgstr "Список параметров редактора Gerber."
  5424. #: flatcamGUI/FlatCAMGUI.py:4355 flatcamGUI/FlatCAMGUI.py:5040
  5425. #: flatcamGUI/FlatCAMGUI.py:5499
  5426. msgid "Selection limit:"
  5427. msgstr "Ограничение выбора:"
  5428. #: flatcamGUI/FlatCAMGUI.py:4357
  5429. msgid ""
  5430. "Set the number of selected Gerber geometry\n"
  5431. "items above which the utility geometry\n"
  5432. "becomes just a selection rectangle.\n"
  5433. "Increases the performance when moving a\n"
  5434. "large number of geometric elements."
  5435. msgstr ""
  5436. "Установка количества выбранных геометрий Gerber\n"
  5437. "элементы, над которыми расположена служебная геометрия\n"
  5438. "становится просто прямоугольником выделения.\n"
  5439. "Увеличивает производительность при перемещении\n"
  5440. "большое количество геометрических элементов."
  5441. #: flatcamGUI/FlatCAMGUI.py:4377
  5442. msgid "Excellon General"
  5443. msgstr "Excellon основные"
  5444. #: flatcamGUI/FlatCAMGUI.py:4399
  5445. msgid "<b>Excellon Format:</b>"
  5446. msgstr "<b>Формат Excellon:</b>"
  5447. #: flatcamGUI/FlatCAMGUI.py:4401
  5448. msgid ""
  5449. "The NC drill files, usually named Excellon files\n"
  5450. "are files that can be found in different formats.\n"
  5451. "Here we set the format used when the provided\n"
  5452. "coordinates are not using period.\n"
  5453. "\n"
  5454. "Possible presets:\n"
  5455. "\n"
  5456. "PROTEUS 3:3 MM LZ\n"
  5457. "DipTrace 5:2 MM TZ\n"
  5458. "DipTrace 4:3 MM LZ\n"
  5459. "\n"
  5460. "EAGLE 3:3 MM TZ\n"
  5461. "EAGLE 4:3 MM TZ\n"
  5462. "EAGLE 2:5 INCH TZ\n"
  5463. "EAGLE 3:5 INCH TZ\n"
  5464. "\n"
  5465. "ALTIUM 2:4 INCH LZ\n"
  5466. "Sprint Layout 2:4 INCH LZ\n"
  5467. "KiCAD 3:5 INCH TZ"
  5468. msgstr ""
  5469. "Файлы ЧПУ сверла, как правило, по имени файлов Excellon \n"
  5470. "это файлы, которые можно найти в разных форматах.\n"
  5471. "Здесь мы устанавливаем формат, используемый, когда\n"
  5472. "координаты не используют точку.\n"
  5473. "\n"
  5474. "Возможные пресеты:\n"
  5475. "PROTEUS 3:3 MM LZ\n"
  5476. "DipTrace 5:2 MM TZ\n"
  5477. "DipTrace 4:3 MM LZ\n"
  5478. "\n"
  5479. "EAGLE 3:3 MM TZ\n"
  5480. "EAGLE 4:3 MM TZ\n"
  5481. "EAGLE 2:5 INCH TZ\n"
  5482. "EAGLE 3:5 INCH TZ\n"
  5483. "\n"
  5484. "ALTIUM 2:4 INCH LZ\n"
  5485. "Sprint Layout 2:4 INCH LZ\n"
  5486. "KiCAD 3:5 INCH TZ"
  5487. #: flatcamGUI/FlatCAMGUI.py:4426
  5488. msgid "INCH:"
  5489. msgstr "ДЮЙМЫ:"
  5490. #: flatcamGUI/FlatCAMGUI.py:4429
  5491. msgid "Default values for INCH are 2:4"
  5492. msgstr "Значения по умолчанию для ДЮЙМОВОЙ 2:4"
  5493. #: flatcamGUI/FlatCAMGUI.py:4437 flatcamGUI/FlatCAMGUI.py:4470
  5494. #: flatcamGUI/FlatCAMGUI.py:4943
  5495. msgid ""
  5496. "This numbers signify the number of digits in\n"
  5497. "the whole part of Excellon coordinates."
  5498. msgstr ""
  5499. "Эти числа обозначают количество цифр в\n"
  5500. "целая часть Excellon координат."
  5501. #: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/FlatCAMGUI.py:4484
  5502. #: flatcamGUI/FlatCAMGUI.py:4957
  5503. msgid ""
  5504. "This numbers signify the number of digits in\n"
  5505. "the decimal part of Excellon coordinates."
  5506. msgstr ""
  5507. "Эти числа обозначают количество цифр в\n"
  5508. "десятичная часть Excellon координат."
  5509. #: flatcamGUI/FlatCAMGUI.py:4459
  5510. msgid "METRIC:"
  5511. msgstr "МЕТРИЧЕСКАЯ:"
  5512. #: flatcamGUI/FlatCAMGUI.py:4462
  5513. msgid "Default values for METRIC are 3:3"
  5514. msgstr "Значения по умолчанию для МЕТРИЧЕСКОЙ 3: 3"
  5515. #: flatcamGUI/FlatCAMGUI.py:4493
  5516. msgid "Default <b>Zeros</b>:"
  5517. msgstr "Умолчания <b>Нули</b>:"
  5518. #: flatcamGUI/FlatCAMGUI.py:4496 flatcamGUI/FlatCAMGUI.py:4992
  5519. msgid ""
  5520. "This sets the type of Excellon zeros.\n"
  5521. "If LZ then Leading Zeros are kept and\n"
  5522. "Trailing Zeros are removed.\n"
  5523. "If TZ is checked then Trailing Zeros are kept\n"
  5524. "and Leading Zeros are removed."
  5525. msgstr ""
  5526. "Задает тип нулей Excellon.\n"
  5527. "Если LZ, то ведущие нули сохраняются и\n"
  5528. "Конечные нули удаляются.\n"
  5529. "Если TZ установлен, то конечные нули сохраняются\n"
  5530. "и ведущие нули удаляются."
  5531. #: flatcamGUI/FlatCAMGUI.py:4507
  5532. msgid ""
  5533. "This sets the default type of Excellon zeros.\n"
  5534. "If it is not detected in the parsed file the value here\n"
  5535. "will be used.If LZ then Leading Zeros are kept and\n"
  5536. "Trailing Zeros are removed.\n"
  5537. "If TZ is checked then Trailing Zeros are kept\n"
  5538. "and Leading Zeros are removed."
  5539. msgstr ""
  5540. "Задает тип по умолчанию нулей Excellon.\n"
  5541. "Если он не обнаружен в анализируемом файле, значение здесь\n"
  5542. "будем использовать.Если LZ, то ведущие нули сохраняются и\n"
  5543. "Конечные нули удаляются.\n"
  5544. "Если TZ установлен, то конечные нули сохраняются\n"
  5545. "и ведущие нули удаляются."
  5546. #: flatcamGUI/FlatCAMGUI.py:4517
  5547. msgid "Default <b>Units</b>:"
  5548. msgstr "Умолчания <b>Единицы</b>:"
  5549. #: flatcamGUI/FlatCAMGUI.py:4520
  5550. msgid ""
  5551. "This sets the default units of Excellon files.\n"
  5552. "If it is not detected in the parsed file the value here\n"
  5553. "will be used.Some Excellon files don't have an header\n"
  5554. "therefore this parameter will be used."
  5555. msgstr ""
  5556. "Это устанавливает единицы измерения Excellon файлов по умолчанию.\n"
  5557. "Если он не обнаружен в анализируемом файле, значение здесь\n"
  5558. "будем использовать.Некоторые файлы Excellon не имеют заголовка\n"
  5559. "поэтому этот параметр будет использоваться."
  5560. #: flatcamGUI/FlatCAMGUI.py:4531
  5561. msgid ""
  5562. "This sets the units of Excellon files.\n"
  5563. "Some Excellon files don't have an header\n"
  5564. "therefore this parameter will be used."
  5565. msgstr ""
  5566. "Это устанавливает единицы Excellon файлов.\n"
  5567. "Некоторые файлы Excellon не имеют заголовка\n"
  5568. "поэтому этот параметр будет использоваться."
  5569. #: flatcamGUI/FlatCAMGUI.py:4539
  5570. msgid "<b>Excellon Optimization:</b>"
  5571. msgstr "<b>Оптимизация Excellon:</b>"
  5572. #: flatcamGUI/FlatCAMGUI.py:4542
  5573. msgid "Algorithm: "
  5574. msgstr "Алгоритм: "
  5575. #: flatcamGUI/FlatCAMGUI.py:4544 flatcamGUI/FlatCAMGUI.py:4558
  5576. msgid ""
  5577. "This sets the optimization type for the Excellon drill path.\n"
  5578. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5579. "Guided Local Path is used. Default search time is 3sec.\n"
  5580. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5581. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5582. "\n"
  5583. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5584. "Travelling Salesman algorithm for path optimization."
  5585. msgstr ""
  5586. "Задает тип оптимизации для пути детализации Excellon.\n"
  5587. "Если установлен флажок МХ является то алгоритм или Google-инструменты с "
  5588. "Метаэвристический\n"
  5589. "Используется управляемый локальный путь. Время поиска по умолчанию 3 сек.\n"
  5590. "Используйте команду set_sys excellon_search_time значение TCL, чтобы "
  5591. "установить другие значения.\n"
  5592. "Если установлен флажок Basic, то используется алгоритм Google OR-Tools "
  5593. "Basic.\n"
  5594. "\n"
  5595. "Если отключено, то FlatCAM работает в 32-битном режиме и использует \n"
  5596. "Алгоритм коммивояжера для оптимизации пути."
  5597. #: flatcamGUI/FlatCAMGUI.py:4555
  5598. msgid "MH"
  5599. msgstr ""
  5600. #: flatcamGUI/FlatCAMGUI.py:4569
  5601. msgid "Optimization Time: "
  5602. msgstr "Время оптимизации:"
  5603. #: flatcamGUI/FlatCAMGUI.py:4572
  5604. msgid ""
  5605. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5606. "maximum threshold for how much time is spent doing the\n"
  5607. "path optimization. This max duration is set here.\n"
  5608. "In seconds."
  5609. msgstr ""
  5610. "При включении или инструменты Метаэвристики (МГН)-есть\n"
  5611. "максимальный порог за сколько времени тратится на\n"
  5612. "оптимизация пути. Максимальная продолжительность устанавливается здесь.\n"
  5613. "В секундах."
  5614. #: flatcamGUI/FlatCAMGUI.py:4615
  5615. msgid "Excellon Options"
  5616. msgstr "Параметры Excellon"
  5617. #: flatcamGUI/FlatCAMGUI.py:4618 flatcamGUI/ObjectUI.py:581
  5618. msgid "<b>Create CNC Job</b>"
  5619. msgstr "<b>Создание программы для ЧПУ</b>"
  5620. #: flatcamGUI/FlatCAMGUI.py:4620
  5621. msgid ""
  5622. "Parameters used to create a CNC Job object\n"
  5623. "for this drill object."
  5624. msgstr ""
  5625. "Параметры, используемые для создания объекта задания ЧПУ\n"
  5626. "для этого сверлите объект."
  5627. #: flatcamGUI/FlatCAMGUI.py:4628 flatcamGUI/FlatCAMGUI.py:5215
  5628. #: flatcamGUI/FlatCAMGUI.py:6334 flatcamGUI/ObjectUI.py:592
  5629. #: flatcamGUI/ObjectUI.py:1068 flatcamTools/ToolCalculators.py:106
  5630. msgid "Cut Z:"
  5631. msgstr "Глубина резания:"
  5632. #: flatcamGUI/FlatCAMGUI.py:4630 flatcamGUI/ObjectUI.py:594
  5633. msgid ""
  5634. "Drill depth (negative)\n"
  5635. "below the copper surface."
  5636. msgstr ""
  5637. "Глубина сверления (отрицательная) \n"
  5638. "ниже слоя меди."
  5639. #: flatcamGUI/FlatCAMGUI.py:4637 flatcamGUI/FlatCAMGUI.py:5248
  5640. #: flatcamGUI/ObjectUI.py:602 flatcamGUI/ObjectUI.py:1104
  5641. msgid "Travel Z:"
  5642. msgstr "Отвод по Z:"
  5643. #: flatcamGUI/FlatCAMGUI.py:4639 flatcamGUI/ObjectUI.py:604
  5644. msgid ""
  5645. "Tool height when travelling\n"
  5646. "across the XY plane."
  5647. msgstr ""
  5648. "Отвод инструмента при холостом ходе\n"
  5649. "по плоскости XY."
  5650. #: flatcamGUI/FlatCAMGUI.py:4647 flatcamGUI/FlatCAMGUI.py:5258
  5651. msgid "Tool change:"
  5652. msgstr "Смена инструмента:"
  5653. #: flatcamGUI/FlatCAMGUI.py:4649 flatcamGUI/FlatCAMGUI.py:5260
  5654. #: flatcamGUI/ObjectUI.py:614
  5655. msgid ""
  5656. "Include tool-change sequence\n"
  5657. "in G-Code (Pause for tool change)."
  5658. msgstr ""
  5659. "Включает последовательность смены инструмента\n"
  5660. "в G-Code (Пауза для смены инструмента)."
  5661. #: flatcamGUI/FlatCAMGUI.py:4656 flatcamGUI/FlatCAMGUI.py:5268
  5662. msgid "Toolchange Z:"
  5663. msgstr "Смена инструмента Z :"
  5664. #: flatcamGUI/FlatCAMGUI.py:4658 flatcamGUI/FlatCAMGUI.py:5270
  5665. msgid "Toolchange Z position."
  5666. msgstr "Позиция Z смены инструмента."
  5667. #: flatcamGUI/FlatCAMGUI.py:4664
  5668. msgid "Feedrate:"
  5669. msgstr "Скорость подачи:"
  5670. #: flatcamGUI/FlatCAMGUI.py:4666
  5671. msgid ""
  5672. "Tool speed while drilling\n"
  5673. "(in units per minute)."
  5674. msgstr ""
  5675. "Настройка скорости подачи при сверлении \n"
  5676. "(в единицах в минуту)."
  5677. #: flatcamGUI/FlatCAMGUI.py:4674
  5678. msgid "Spindle Speed:"
  5679. msgstr "Скорость вр. шпинделя:"
  5680. #: flatcamGUI/FlatCAMGUI.py:4676 flatcamGUI/FlatCAMGUI.py:5300
  5681. #: flatcamGUI/ObjectUI.py:681
  5682. msgid ""
  5683. "Speed of the spindle\n"
  5684. "in RPM (optional)"
  5685. msgstr ""
  5686. "Скорость шпинделя\n"
  5687. "в оборотах в минуту(опционально) ."
  5688. #: flatcamGUI/FlatCAMGUI.py:4684 flatcamGUI/FlatCAMGUI.py:5308
  5689. msgid "Spindle dir.:"
  5690. msgstr "Напр. вращения:"
  5691. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/FlatCAMGUI.py:5310
  5692. msgid ""
  5693. "This sets the direction that the spindle is rotating.\n"
  5694. "It can be either:\n"
  5695. "- CW = clockwise or\n"
  5696. "- CCW = counter clockwise"
  5697. msgstr ""
  5698. "Устанавка направления вращения шпинделя.\n"
  5699. "Варианты:\n"
  5700. "- CW = по часовой стрелке или\n"
  5701. "- CCW = против часовой стрелки"
  5702. #: flatcamGUI/FlatCAMGUI.py:4698 flatcamGUI/FlatCAMGUI.py:5322
  5703. #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1230
  5704. msgid "Dwell:"
  5705. msgstr "Задержка:"
  5706. #: flatcamGUI/FlatCAMGUI.py:4700 flatcamGUI/FlatCAMGUI.py:5324
  5707. #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1233
  5708. msgid ""
  5709. "Pause to allow the spindle to reach its\n"
  5710. "speed before cutting."
  5711. msgstr ""
  5712. "Задержка для набора оборотов шпинделя\n"
  5713. "перед началом обработки."
  5714. #: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5327
  5715. msgid "Duration:"
  5716. msgstr "Продолжительность:"
  5717. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5329
  5718. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1240
  5719. msgid "Number of milliseconds for spindle to dwell."
  5720. msgstr "Количество миллисекунд для шпинделя, котор нужно обитать."
  5721. #: flatcamGUI/FlatCAMGUI.py:4717 flatcamGUI/FlatCAMGUI.py:5339
  5722. #: flatcamGUI/ObjectUI.py:704
  5723. msgid "Postprocessor:"
  5724. msgstr "Постпроцессор:"
  5725. #: flatcamGUI/FlatCAMGUI.py:4719
  5726. msgid ""
  5727. "The postprocessor file that dictates\n"
  5728. "gcode output."
  5729. msgstr ""
  5730. "Файл постпроцессора, который диктует\n"
  5731. "выходной код gcode."
  5732. #: flatcamGUI/FlatCAMGUI.py:4728
  5733. msgid "<b>Gcode: </b>"
  5734. msgstr "<b>Gcode: </b>"
  5735. #: flatcamGUI/FlatCAMGUI.py:4730
  5736. msgid ""
  5737. "Choose what to use for GCode generation:\n"
  5738. "'Drills', 'Slots' or 'Both'.\n"
  5739. "When choosing 'Slots' or 'Both', slots will be\n"
  5740. "converted to drills."
  5741. msgstr ""
  5742. "Выберите, что использовать для генерации G-кода:\n"
  5743. "\"Сверла\", \"слоты\" или \"оба\".\n"
  5744. "При выборе \"слоты\" или \"оба\", слоты будут\n"
  5745. "преобразованы в упражнения."
  5746. #: flatcamGUI/FlatCAMGUI.py:4746 flatcamGUI/ObjectUI.py:769
  5747. msgid "<b>Mill Holes</b>"
  5748. msgstr "<b>Фрезеровка отверстий</b>"
  5749. #: flatcamGUI/FlatCAMGUI.py:4748 flatcamGUI/ObjectUI.py:771
  5750. msgid "Create Geometry for milling holes."
  5751. msgstr "Создание объекта геометрии для фрезерования отверстий."
  5752. #: flatcamGUI/FlatCAMGUI.py:4752
  5753. msgid "Drill Tool dia:"
  5754. msgstr "Диам. сверла:"
  5755. #: flatcamGUI/FlatCAMGUI.py:4759
  5756. msgid "Slot Tool dia:"
  5757. msgstr "Диаметр инструмента шлица:"
  5758. #: flatcamGUI/FlatCAMGUI.py:4761
  5759. msgid ""
  5760. "Diameter of the cutting tool\n"
  5761. "when milling slots."
  5762. msgstr ""
  5763. "Диаметр режущего инструмента\n"
  5764. "при фрезеровании пазов."
  5765. #: flatcamGUI/FlatCAMGUI.py:4773
  5766. msgid "Defaults"
  5767. msgstr "Значения по умолчанию"
  5768. #: flatcamGUI/FlatCAMGUI.py:4786
  5769. msgid "Excellon Adv. Options"
  5770. msgstr "Excellon дополн."
  5771. #: flatcamGUI/FlatCAMGUI.py:4792 flatcamGUI/FlatCAMGUI.py:5362
  5772. msgid "<b>Advanced Options:</b>"
  5773. msgstr "<b>Дополнительные настройки:</b>"
  5774. #: flatcamGUI/FlatCAMGUI.py:4794
  5775. msgid ""
  5776. "Parameters used to create a CNC Job object\n"
  5777. "for this drill object that are shown when App Level is Advanced."
  5778. msgstr ""
  5779. "Параметры, используемые для создания объекта задания ЧПУ\n"
  5780. "для этого объекта детализации, которые отображаются при повышении уровня "
  5781. "приложения."
  5782. #: flatcamGUI/FlatCAMGUI.py:4802
  5783. msgid "Offset Z:"
  5784. msgstr "Смещение Z:"
  5785. #: flatcamGUI/FlatCAMGUI.py:4804 flatcamGUI/ObjectUI.py:571
  5786. msgid ""
  5787. "Some drill bits (the larger ones) need to drill deeper\n"
  5788. "to create the desired exit hole diameter due of the tip shape.\n"
  5789. "The value here can compensate the Cut Z parameter."
  5790. msgstr ""
  5791. "Некоторые сверла (большие) нужно сверлить глубже\n"
  5792. "создать необходимый диаметр выходного отверстия за счет формы наконечника.\n"
  5793. "Значение здесь может компенсировать Cut Z параметра."
  5794. #: flatcamGUI/FlatCAMGUI.py:4811 flatcamGUI/FlatCAMGUI.py:5373
  5795. msgid "Toolchange X,Y:"
  5796. msgstr "Смена инструмента X,Y:"
  5797. #: flatcamGUI/FlatCAMGUI.py:4813 flatcamGUI/FlatCAMGUI.py:5375
  5798. msgid "Toolchange X,Y position."
  5799. msgstr "Позиция X,Y смены инструмента."
  5800. #: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5382
  5801. #: flatcamGUI/ObjectUI.py:631
  5802. msgid "Start move Z:"
  5803. msgstr "Начать движение Z:"
  5804. #: flatcamGUI/FlatCAMGUI.py:4821
  5805. msgid ""
  5806. "Height of the tool just after start.\n"
  5807. "Delete the value if you don't need this feature."
  5808. msgstr ""
  5809. "Высота инструмента сразу после запуска.\n"
  5810. "Удалить значение если вам не нужна эта функция."
  5811. #: flatcamGUI/FlatCAMGUI.py:4828 flatcamGUI/FlatCAMGUI.py:5392
  5812. #: flatcamGUI/ObjectUI.py:641 flatcamGUI/ObjectUI.py:1150
  5813. msgid "End move Z:"
  5814. msgstr "Высота отвода Z:"
  5815. #: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:5394
  5816. msgid ""
  5817. "Height of the tool after\n"
  5818. "the last move at the end of the job."
  5819. msgstr ""
  5820. "Высота инструмента после\n"
  5821. "последнего прохода в конце задания."
  5822. #: flatcamGUI/FlatCAMGUI.py:4837 flatcamGUI/FlatCAMGUI.py:5402
  5823. #: flatcamGUI/ObjectUI.py:662
  5824. msgid "Feedrate Rapids:"
  5825. msgstr "Пороги Скорости Подачи:"
  5826. #: flatcamGUI/FlatCAMGUI.py:4839 flatcamGUI/ObjectUI.py:664
  5827. msgid ""
  5828. "Tool speed while drilling\n"
  5829. "(in units per minute).\n"
  5830. "This is for the rapid move G00.\n"
  5831. "It is useful only for Marlin,\n"
  5832. "ignore for any other cases."
  5833. msgstr ""
  5834. "Скорость инструмента во время сверления\n"
  5835. "(в единицах измерения в минуту).\n"
  5836. "Это для быстрого перемещения G00.\n"
  5837. "Полезно только для Marlin,\n"
  5838. "игнорировать для любых других случаев."
  5839. #: flatcamGUI/FlatCAMGUI.py:4850 flatcamGUI/FlatCAMGUI.py:5426
  5840. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1262
  5841. msgid "Probe Z depth:"
  5842. msgstr "Глубина зонда Z:"
  5843. #: flatcamGUI/FlatCAMGUI.py:4852 flatcamGUI/FlatCAMGUI.py:5428
  5844. #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1265
  5845. msgid ""
  5846. "The maximum depth that the probe is allowed\n"
  5847. "to probe. Negative value, in current units."
  5848. msgstr ""
  5849. "Максимальная глубина, допустимая для зонда\n"
  5850. "зондировать. Отрицательное значение в текущих единицах."
  5851. #: flatcamGUI/FlatCAMGUI.py:4860 flatcamGUI/FlatCAMGUI.py:5436
  5852. #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1276
  5853. msgid "Feedrate Probe:"
  5854. msgstr "Датчик Скорости Подачи:"
  5855. #: flatcamGUI/FlatCAMGUI.py:4862 flatcamGUI/FlatCAMGUI.py:5438
  5856. #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1279
  5857. msgid "The feedrate used while the probe is probing."
  5858. msgstr "Скорость подачи, используемая во время зондирования."
  5859. #: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5445
  5860. msgid "Fast Plunge:"
  5861. msgstr "Быстрый подвод:"
  5862. #: flatcamGUI/FlatCAMGUI.py:4870 flatcamGUI/FlatCAMGUI.py:5447
  5863. msgid ""
  5864. "By checking this, the vertical move from\n"
  5865. "Z_Toolchange to Z_move is done with G0,\n"
  5866. "meaning the fastest speed available.\n"
  5867. "WARNING: the move is done at Toolchange X,Y coords."
  5868. msgstr ""
  5869. "Проверяя это, вертикальное перемещение\n"
  5870. "Z_toolchange на Z_move выполняется с помощью G0,\n"
  5871. "это означает самую быструю скорость.\n"
  5872. "Предупреждение: перемещение выполняется при смене координат Toolchange X,Y."
  5873. #: flatcamGUI/FlatCAMGUI.py:4879
  5874. msgid "Fast Retract:"
  5875. msgstr "Быстрый отвод:"
  5876. #: flatcamGUI/FlatCAMGUI.py:4881
  5877. msgid ""
  5878. "Exit hole strategy.\n"
  5879. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5880. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5881. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5882. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5883. "(travel height) is done as fast as possible (G0) in one move."
  5884. msgstr ""
  5885. "Стратегия выхода из отверстия.\n"
  5886. " - - Когда не проверено, пока выходящ просверленное отверстие буровой "
  5887. "наконечник\n"
  5888. "будет путешествовать медленно, с установленной скоростью подачи (G1), до "
  5889. "нулевой глубины, а затем\n"
  5890. "путешествуйте как можно быстрее (G0) к Z_move (высота перемещения).\n"
  5891. " - Когда проверено перемещение от Z_cut(глубины отрезка) к Z_move\n"
  5892. "(высота перемещения) делается как можно быстрее (G0) за один ход."
  5893. #: flatcamGUI/FlatCAMGUI.py:4900
  5894. msgid "Excellon Export"
  5895. msgstr "Экспорт Excellon"
  5896. #: flatcamGUI/FlatCAMGUI.py:4905
  5897. msgid ""
  5898. "The parameters set here are used in the file exported\n"
  5899. "when using the File -> Export -> Export Excellon menu entry."
  5900. msgstr ""
  5901. "Заданные здесь параметры используются в экспортированном файле\n"
  5902. "при использовании файла - > экспорт - > Экспорт Excellon пункт меню."
  5903. #: flatcamGUI/FlatCAMGUI.py:4916 flatcamGUI/FlatCAMGUI.py:4922
  5904. msgid "The units used in the Excellon file."
  5905. msgstr "Единицы измерения, используемые в файле Excellon."
  5906. #: flatcamGUI/FlatCAMGUI.py:4930
  5907. msgid ""
  5908. "The NC drill files, usually named Excellon files\n"
  5909. "are files that can be found in different formats.\n"
  5910. "Here we set the format used when the provided\n"
  5911. "coordinates are not using period."
  5912. msgstr ""
  5913. "Файлы ЧПУ сверла, как правило, по имени файлов Excellon \n"
  5914. "это файлы, которые можно найти в разных форматах.\n"
  5915. "Здесь мы устанавливаем формат, используемый, когда\n"
  5916. "координаты не используют точку."
  5917. #: flatcamGUI/FlatCAMGUI.py:4966
  5918. msgid "<b>Format:</b>"
  5919. msgstr "<b>Формат:</b>"
  5920. #: flatcamGUI/FlatCAMGUI.py:4968 flatcamGUI/FlatCAMGUI.py:4978
  5921. msgid ""
  5922. "Select the kind of coordinates format used.\n"
  5923. "Coordinates can be saved with decimal point or without.\n"
  5924. "When there is no decimal point, it is required to specify\n"
  5925. "the number of digits for integer part and the number of decimals.\n"
  5926. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5927. "or TZ = trailing zeros are kept."
  5928. msgstr ""
  5929. #: flatcamGUI/FlatCAMGUI.py:4975
  5930. msgid "Decimal"
  5931. msgstr ""
  5932. #: flatcamGUI/FlatCAMGUI.py:4976
  5933. msgid "No-Decimal"
  5934. msgstr ""
  5935. #: flatcamGUI/FlatCAMGUI.py:5002
  5936. msgid ""
  5937. "This sets the default type of Excellon zeros.\n"
  5938. "If LZ then Leading Zeros are kept and\n"
  5939. "Trailing Zeros are removed.\n"
  5940. "If TZ is checked then Trailing Zeros are kept\n"
  5941. "and Leading Zeros are removed."
  5942. msgstr ""
  5943. #: flatcamGUI/FlatCAMGUI.py:5032
  5944. msgid "A list of Excellon Editor parameters."
  5945. msgstr "Список параметров редактора Excellon."
  5946. #: flatcamGUI/FlatCAMGUI.py:5042
  5947. msgid ""
  5948. "Set the number of selected Excellon geometry\n"
  5949. "items above which the utility geometry\n"
  5950. "becomes just a selection rectangle.\n"
  5951. "Increases the performance when moving a\n"
  5952. "large number of geometric elements."
  5953. msgstr ""
  5954. #: flatcamGUI/FlatCAMGUI.py:5054
  5955. msgid "New Tool Dia:"
  5956. msgstr "Новый диам. инструм.:"
  5957. #: flatcamGUI/FlatCAMGUI.py:5077
  5958. msgid "<b>Linear Drill Array:</b>"
  5959. msgstr "<b>Линейный массив:</b>"
  5960. #: flatcamGUI/FlatCAMGUI.py:5081
  5961. msgid "Linear Dir.:"
  5962. msgstr ""
  5963. #: flatcamGUI/FlatCAMGUI.py:5117
  5964. msgid "<b>Circular Drill Array:</b>"
  5965. msgstr "<b>Круговой массив:</b>"
  5966. #: flatcamGUI/FlatCAMGUI.py:5121
  5967. msgid "Circular Dir.:"
  5968. msgstr ""
  5969. #: flatcamGUI/FlatCAMGUI.py:5123
  5970. msgid ""
  5971. "Direction for circular array.\n"
  5972. "Can be CW = clockwise or CCW = counter clockwise."
  5973. msgstr ""
  5974. "Направление для кругового массива.\n"
  5975. "Может быть CW = по часовой стрелке или CCW = против часовой стрелки."
  5976. #: flatcamGUI/FlatCAMGUI.py:5134
  5977. msgid "Circ. Angle:"
  5978. msgstr ""
  5979. #: flatcamGUI/FlatCAMGUI.py:5151
  5980. msgid "Geometry General"
  5981. msgstr "Geometry основные"
  5982. #: flatcamGUI/FlatCAMGUI.py:5170
  5983. msgid ""
  5984. "The number of circle steps for <b>Geometry</b> \n"
  5985. "circle and arc shapes linear approximation."
  5986. msgstr ""
  5987. #: flatcamGUI/FlatCAMGUI.py:5178
  5988. msgid "<b>Tools:</b>"
  5989. msgstr "<b>Инструменты:</b>"
  5990. #: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/FlatCAMGUI.py:5793
  5991. msgid "Diameters of the cutting tools, separated by ','"
  5992. msgstr ""
  5993. #: flatcamGUI/FlatCAMGUI.py:5198
  5994. msgid "Geometry Options"
  5995. msgstr "Параметры Geometry"
  5996. #: flatcamGUI/FlatCAMGUI.py:5203
  5997. msgid "<b>Create CNC Job:</b>"
  5998. msgstr "<b>Создание программы для ЧПУ:</b>"
  5999. #: flatcamGUI/FlatCAMGUI.py:5205
  6000. msgid ""
  6001. "Create a CNC Job object\n"
  6002. "tracing the contours of this\n"
  6003. "Geometry object."
  6004. msgstr ""
  6005. "Создание объекта трассировки\n"
  6006. "контуров данного объекта геометрии\n"
  6007. "для программы ЧПУ."
  6008. #: flatcamGUI/FlatCAMGUI.py:5217 flatcamGUI/ObjectUI.py:1071
  6009. msgid ""
  6010. "Cutting depth (negative)\n"
  6011. "below the copper surface."
  6012. msgstr ""
  6013. "Глубина резания (отрицательная)\n"
  6014. "ниже слоя меди."
  6015. #: flatcamGUI/FlatCAMGUI.py:5225
  6016. msgid "Multidepth"
  6017. msgstr "Мультипроход"
  6018. #: flatcamGUI/FlatCAMGUI.py:5227
  6019. msgid "Multidepth usage: True or False."
  6020. msgstr ""
  6021. #: flatcamGUI/FlatCAMGUI.py:5232
  6022. msgid "Depth/Pass:"
  6023. msgstr "Шаг за проход:"
  6024. #: flatcamGUI/FlatCAMGUI.py:5234
  6025. msgid ""
  6026. "The depth to cut on each pass,\n"
  6027. "when multidepth is enabled.\n"
  6028. "It has positive value although\n"
  6029. "it is a fraction from the depth\n"
  6030. "which has negative value."
  6031. msgstr ""
  6032. #: flatcamGUI/FlatCAMGUI.py:5250 flatcamGUI/ObjectUI.py:1107
  6033. msgid ""
  6034. "Height of the tool when\n"
  6035. "moving without cutting."
  6036. msgstr "Высота отвода инструмента при холостом ходе."
  6037. #: flatcamGUI/FlatCAMGUI.py:5277 flatcamGUI/ObjectUI.py:1162
  6038. msgid "Feed Rate X-Y:"
  6039. msgstr "Скорость подачи X-Y:"
  6040. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/ObjectUI.py:1165
  6041. msgid ""
  6042. "Cutting speed in the XY\n"
  6043. "plane in units per minute"
  6044. msgstr ""
  6045. "Скорость резания в плоскости XY\n"
  6046. "в единицах в минуту"
  6047. #: flatcamGUI/FlatCAMGUI.py:5287
  6048. msgid "Feed Rate Z:"
  6049. msgstr "Скорость подачи Z:"
  6050. #: flatcamGUI/FlatCAMGUI.py:5289
  6051. msgid ""
  6052. "Cutting speed in the XY\n"
  6053. "plane in units per minute.\n"
  6054. "It is called also Plunge."
  6055. msgstr ""
  6056. #: flatcamGUI/FlatCAMGUI.py:5298 flatcamGUI/ObjectUI.py:679
  6057. #: flatcamGUI/ObjectUI.py:1217
  6058. msgid "Spindle speed:"
  6059. msgstr "Скорость вр. шпинделя:"
  6060. #: flatcamGUI/FlatCAMGUI.py:5341
  6061. msgid ""
  6062. "The postprocessor file that dictates\n"
  6063. "Machine Code output."
  6064. msgstr ""
  6065. #: flatcamGUI/FlatCAMGUI.py:5357
  6066. msgid "Geometry Adv. Options"
  6067. msgstr "Geometry дополн."
  6068. #: flatcamGUI/FlatCAMGUI.py:5364
  6069. msgid ""
  6070. "Parameters to create a CNC Job object\n"
  6071. "tracing the contours of a Geometry object."
  6072. msgstr ""
  6073. "Параметры для создания объекта зCNC Job\n"
  6074. "трассировки контуров объекта Geometry."
  6075. #: flatcamGUI/FlatCAMGUI.py:5384
  6076. msgid ""
  6077. "Height of the tool just after starting the work.\n"
  6078. "Delete the value if you don't need this feature."
  6079. msgstr ""
  6080. #: flatcamGUI/FlatCAMGUI.py:5404
  6081. msgid ""
  6082. "Cutting speed in the XY plane\n"
  6083. "(in units per minute).\n"
  6084. "This is for the rapid move G00.\n"
  6085. "It is useful only for Marlin,\n"
  6086. "ignore for any other cases."
  6087. msgstr ""
  6088. #: flatcamGUI/FlatCAMGUI.py:5416
  6089. msgid "Re-cut 1st pt."
  6090. msgstr ""
  6091. #: flatcamGUI/FlatCAMGUI.py:5418 flatcamGUI/ObjectUI.py:1208
  6092. msgid ""
  6093. "In order to remove possible\n"
  6094. "copper leftovers where first cut\n"
  6095. "meet with last cut, we generate an\n"
  6096. "extended cut over the first cut section."
  6097. msgstr ""
  6098. #: flatcamGUI/FlatCAMGUI.py:5457
  6099. msgid "Seg. X size:"
  6100. msgstr ""
  6101. #: flatcamGUI/FlatCAMGUI.py:5459
  6102. msgid ""
  6103. "The size of the trace segment on the X axis.\n"
  6104. "Useful for auto-leveling.\n"
  6105. "A value of 0 means no segmentation on the X axis."
  6106. msgstr ""
  6107. #: flatcamGUI/FlatCAMGUI.py:5468
  6108. msgid "Seg. Y size:"
  6109. msgstr ""
  6110. #: flatcamGUI/FlatCAMGUI.py:5470
  6111. msgid ""
  6112. "The size of the trace segment on the Y axis.\n"
  6113. "Useful for auto-leveling.\n"
  6114. "A value of 0 means no segmentation on the Y axis."
  6115. msgstr ""
  6116. #: flatcamGUI/FlatCAMGUI.py:5486
  6117. msgid "Geometry Editor"
  6118. msgstr "Редактор Geometry"
  6119. #: flatcamGUI/FlatCAMGUI.py:5491
  6120. msgid "A list of Geometry Editor parameters."
  6121. msgstr "Список параметров редактора Geometry."
  6122. #: flatcamGUI/FlatCAMGUI.py:5501
  6123. msgid ""
  6124. "Set the number of selected geometry\n"
  6125. "items above which the utility geometry\n"
  6126. "becomes just a selection rectangle.\n"
  6127. "Increases the performance when moving a\n"
  6128. "large number of geometric elements."
  6129. msgstr ""
  6130. #: flatcamGUI/FlatCAMGUI.py:5520
  6131. msgid "CNC Job General"
  6132. msgstr "CNC Job основные"
  6133. #: flatcamGUI/FlatCAMGUI.py:5533 flatcamGUI/ObjectUI.py:541
  6134. #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1452
  6135. msgid "Plot Object"
  6136. msgstr "Рисовать объекты"
  6137. #: flatcamGUI/FlatCAMGUI.py:5540
  6138. msgid "Plot kind:"
  6139. msgstr ""
  6140. #: flatcamGUI/FlatCAMGUI.py:5542 flatcamGUI/ObjectUI.py:1361
  6141. msgid ""
  6142. "This selects the kind of geometries on the canvas to plot.\n"
  6143. "Those can be either of type 'Travel' which means the moves\n"
  6144. "above the work piece or it can be of type 'Cut',\n"
  6145. "which means the moves that cut into the material."
  6146. msgstr ""
  6147. #: flatcamGUI/FlatCAMGUI.py:5550 flatcamGUI/ObjectUI.py:1370
  6148. msgid "Travel"
  6149. msgstr "Путешествовать"
  6150. #: flatcamGUI/FlatCAMGUI.py:5559
  6151. msgid "Display Annotation:"
  6152. msgstr "Показывать подписи:"
  6153. #: flatcamGUI/FlatCAMGUI.py:5561 flatcamGUI/ObjectUI.py:1377
  6154. msgid ""
  6155. "This selects if to display text annotation on the plot.\n"
  6156. "When checked it will display numbers in order for each end\n"
  6157. "of a travel line."
  6158. msgstr ""
  6159. #: flatcamGUI/FlatCAMGUI.py:5573
  6160. msgid "Annotation Size:"
  6161. msgstr "Размер аннотации:"
  6162. #: flatcamGUI/FlatCAMGUI.py:5575
  6163. msgid "The font size of the annotation text. In pixels."
  6164. msgstr ""
  6165. #: flatcamGUI/FlatCAMGUI.py:5583
  6166. msgid "Annotation Color:"
  6167. msgstr "Цвет аннотации:"
  6168. #: flatcamGUI/FlatCAMGUI.py:5585
  6169. msgid "Set the font color for the annotation texts."
  6170. msgstr ""
  6171. #: flatcamGUI/FlatCAMGUI.py:5608
  6172. msgid ""
  6173. "The number of circle steps for <b>GCode</b> \n"
  6174. "circle and arc shapes linear approximation."
  6175. msgstr ""
  6176. #: flatcamGUI/FlatCAMGUI.py:5618
  6177. msgid ""
  6178. "Diameter of the tool to be\n"
  6179. "rendered in the plot."
  6180. msgstr ""
  6181. "Диаметр инструмента\n"
  6182. " для черчения контуров."
  6183. #: flatcamGUI/FlatCAMGUI.py:5626
  6184. msgid "Coords dec.:"
  6185. msgstr ""
  6186. #: flatcamGUI/FlatCAMGUI.py:5628
  6187. msgid ""
  6188. "The number of decimals to be used for \n"
  6189. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6190. msgstr ""
  6191. #: flatcamGUI/FlatCAMGUI.py:5636
  6192. msgid "Feedrate dec.:"
  6193. msgstr ""
  6194. #: flatcamGUI/FlatCAMGUI.py:5638
  6195. msgid ""
  6196. "The number of decimals to be used for \n"
  6197. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6198. msgstr ""
  6199. #: flatcamGUI/FlatCAMGUI.py:5653
  6200. msgid "CNC Job Options"
  6201. msgstr "Параметры CNC Job"
  6202. #: flatcamGUI/FlatCAMGUI.py:5656 flatcamGUI/FlatCAMGUI.py:5697
  6203. msgid "<b>Export G-Code:</b>"
  6204. msgstr "<b>Экспорт G-Code:</b>"
  6205. #: flatcamGUI/FlatCAMGUI.py:5658 flatcamGUI/FlatCAMGUI.py:5699
  6206. #: flatcamGUI/ObjectUI.py:1488
  6207. msgid ""
  6208. "Export and save G-Code to\n"
  6209. "make this object to a file."
  6210. msgstr ""
  6211. "Экспорт G-Code,\n"
  6212. "для сохранения\n"
  6213. "этого объекта в файл."
  6214. #: flatcamGUI/FlatCAMGUI.py:5664
  6215. msgid "Prepend to G-Code:"
  6216. msgstr "Коды предобработки для G-Code:"
  6217. #: flatcamGUI/FlatCAMGUI.py:5666
  6218. msgid ""
  6219. "Type here any G-Code commands you would\n"
  6220. "like to add at the beginning of the G-Code file."
  6221. msgstr ""
  6222. "Введите здесь любые команды G-Code, которые вам\n"
  6223. "хотелось бы добавить в начале файла G-Code."
  6224. #: flatcamGUI/FlatCAMGUI.py:5675
  6225. msgid "Append to G-Code:"
  6226. msgstr "Коды постобработки для G-Code:"
  6227. #: flatcamGUI/FlatCAMGUI.py:5677 flatcamGUI/ObjectUI.py:1510
  6228. msgid ""
  6229. "Type here any G-Code commands you would\n"
  6230. "like to append to the generated file.\n"
  6231. "I.e.: M2 (End of program)"
  6232. msgstr ""
  6233. "Введите здесь любые G-Code команды, которые вам\n"
  6234. "хотелось бы добавить к созданному файлу.\n"
  6235. "например: M2 (конец программы)"
  6236. #: flatcamGUI/FlatCAMGUI.py:5694
  6237. msgid "CNC Job Adv. Options"
  6238. msgstr "CNC Job дополн."
  6239. #: flatcamGUI/FlatCAMGUI.py:5705 flatcamGUI/ObjectUI.py:1528
  6240. msgid "Toolchange G-Code:"
  6241. msgstr "G-Code смены инструмента:"
  6242. #: flatcamGUI/FlatCAMGUI.py:5707
  6243. msgid ""
  6244. "Type here any G-Code commands you would\n"
  6245. "like to be executed when Toolchange event is encountered.\n"
  6246. "This will constitute a Custom Toolchange GCode,\n"
  6247. "or a Toolchange Macro."
  6248. msgstr ""
  6249. "Введите здесь любые G-Code команды, которые вам понадобится\n"
  6250. "выполнить при смене инструмента.\n"
  6251. "Это будет представлять собой пользовательский GCode смены инструмента,\n"
  6252. "или макрос смены инструмента."
  6253. #: flatcamGUI/FlatCAMGUI.py:5721 flatcamGUI/ObjectUI.py:1550
  6254. msgid "Use Toolchange Macro"
  6255. msgstr "Использовать макросы смены инструмента"
  6256. #: flatcamGUI/FlatCAMGUI.py:5723 flatcamGUI/ObjectUI.py:1553
  6257. msgid ""
  6258. "Check this box if you want to use\n"
  6259. "a Custom Toolchange GCode (macro)."
  6260. msgstr ""
  6261. #: flatcamGUI/FlatCAMGUI.py:5735 flatcamGUI/ObjectUI.py:1562
  6262. msgid ""
  6263. "A list of the FlatCAM variables that can be used\n"
  6264. "in the Toolchange event.\n"
  6265. "They have to be surrounded by the '%' symbol"
  6266. msgstr ""
  6267. "Список переменных FlatCAM, которые можно использовать\n"
  6268. "при смене инструмента.\n"
  6269. "Они должны быть окружены '%' символом"
  6270. #: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/ObjectUI.py:1569
  6271. msgid "Parameters"
  6272. msgstr "Параметры"
  6273. #: flatcamGUI/FlatCAMGUI.py:5745 flatcamGUI/ObjectUI.py:1572
  6274. msgid "FlatCAM CNC parameters"
  6275. msgstr "Параметры CNC FlatCAM"
  6276. #: flatcamGUI/FlatCAMGUI.py:5746 flatcamGUI/ObjectUI.py:1573
  6277. msgid "tool = tool number"
  6278. msgstr "tool = tool number"
  6279. #: flatcamGUI/FlatCAMGUI.py:5747 flatcamGUI/ObjectUI.py:1574
  6280. msgid "tooldia = tool diameter"
  6281. msgstr "tooldia = диаметр инструмента"
  6282. #: flatcamGUI/FlatCAMGUI.py:5748 flatcamGUI/ObjectUI.py:1575
  6283. msgid "t_drills = for Excellon, total number of drills"
  6284. msgstr "t_drills = для Excellon, общее количество сверл"
  6285. #: flatcamGUI/FlatCAMGUI.py:5749 flatcamGUI/ObjectUI.py:1576
  6286. msgid "x_toolchange = X coord for Toolchange"
  6287. msgstr "x_toolchange = координата X для смены инструмента"
  6288. #: flatcamGUI/FlatCAMGUI.py:5750 flatcamGUI/ObjectUI.py:1577
  6289. msgid "y_toolchange = Y coord for Toolchange"
  6290. msgstr "y_toolchange = координата Y для смены инструмента"
  6291. #: flatcamGUI/FlatCAMGUI.py:5751 flatcamGUI/ObjectUI.py:1578
  6292. msgid "z_toolchange = Z coord for Toolchange"
  6293. msgstr "z_toolchange = координата Z для смены инструмента"
  6294. #: flatcamGUI/FlatCAMGUI.py:5752
  6295. msgid "z_cut = Z depth for the cut"
  6296. msgstr "z_cut = Z глубина распила"
  6297. #: flatcamGUI/FlatCAMGUI.py:5753
  6298. msgid "z_move = Z height for travel"
  6299. msgstr "z_move = высота Z для перемещения"
  6300. #: flatcamGUI/FlatCAMGUI.py:5754 flatcamGUI/ObjectUI.py:1581
  6301. msgid "z_depthpercut = the step value for multidepth cut"
  6302. msgstr "z_depthpercut = значение шага для мультипроходного разреза"
  6303. #: flatcamGUI/FlatCAMGUI.py:5755 flatcamGUI/ObjectUI.py:1582
  6304. msgid "spindlesspeed = the value for the spindle speed"
  6305. msgstr "spindlesspeed = значение скорости вращения шпинделя"
  6306. #: flatcamGUI/FlatCAMGUI.py:5757 flatcamGUI/ObjectUI.py:1583
  6307. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6308. msgstr ""
  6309. #: flatcamGUI/FlatCAMGUI.py:5778
  6310. msgid "NCC Tool Options"
  6311. msgstr "Очистка меди"
  6312. #: flatcamGUI/FlatCAMGUI.py:5791 flatcamGUI/FlatCAMGUI.py:6536
  6313. msgid "Tools dia:"
  6314. msgstr "Диам. инстр.:"
  6315. #: flatcamGUI/FlatCAMGUI.py:5801 flatcamTools/ToolNonCopperClear.py:167
  6316. #, python-format
  6317. msgid ""
  6318. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6319. "Example:\n"
  6320. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6321. "\n"
  6322. "Adjust the value starting with lower values\n"
  6323. "and increasing it if areas that should be cleared are still \n"
  6324. "not cleared.\n"
  6325. "Lower values = faster processing, faster execution on PCB.\n"
  6326. "Higher values = slow processing and slow execution on CNC\n"
  6327. "due of too many paths."
  6328. msgstr ""
  6329. #: flatcamGUI/FlatCAMGUI.py:5817 flatcamTools/ToolNonCopperClear.py:183
  6330. msgid "Bounding box margin."
  6331. msgstr ""
  6332. #: flatcamGUI/FlatCAMGUI.py:5826 flatcamTools/ToolNonCopperClear.py:192
  6333. #: flatcamTools/ToolPaint.py:190
  6334. msgid ""
  6335. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6336. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6337. "lines."
  6338. msgstr ""
  6339. "Алгоритм очисти от меди:<BR><B>Стандартный</B>: Движение фрезы сужающимися "
  6340. "контурами, повторяющими контур полигона.<BR><B>По кругу</B>: Обработка "
  6341. "правильными окружностями.<BR><B>Линейный</B>: Паралельными линиями."
  6342. #: flatcamGUI/FlatCAMGUI.py:5858 flatcamTools/ToolNonCopperClear.py:224
  6343. #: flatcamTools/ToolPaint.py:222
  6344. msgid "Rest M.:"
  6345. msgstr ""
  6346. #: flatcamGUI/FlatCAMGUI.py:5860
  6347. msgid ""
  6348. "If checked, use 'rest machining'.\n"
  6349. "Basically it will clear copper outside PCB features,\n"
  6350. "using the biggest tool and continue with the next tools,\n"
  6351. "from bigger to smaller, to clear areas of copper that\n"
  6352. "could not be cleared by previous tool.\n"
  6353. "If not checked, use the standard algorithm."
  6354. msgstr ""
  6355. #: flatcamGUI/FlatCAMGUI.py:5879
  6356. msgid "Cutout Tool Options"
  6357. msgstr "Обрезка платы"
  6358. #: flatcamGUI/FlatCAMGUI.py:5884 flatcamGUI/ObjectUI.py:399
  6359. msgid ""
  6360. "Create toolpaths to cut around\n"
  6361. "the PCB and separate it from\n"
  6362. "the original board."
  6363. msgstr ""
  6364. "Создание траектории обрезки печатной платы и отделения её от\n"
  6365. "заготовки."
  6366. #: flatcamGUI/FlatCAMGUI.py:5902 flatcamTools/ToolCutOut.py:77
  6367. msgid "Obj kind:"
  6368. msgstr ""
  6369. #: flatcamGUI/FlatCAMGUI.py:5904 flatcamTools/ToolCutOut.py:79
  6370. msgid ""
  6371. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6372. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6373. "Gerber object, which is made\n"
  6374. "out of many individual PCB outlines."
  6375. msgstr ""
  6376. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/FlatCAMGUI.py:6121
  6377. #: flatcamTools/ToolCutOut.py:85 flatcamTools/ToolPaint.py:247
  6378. msgid "Single"
  6379. msgstr "Одиночный"
  6380. #: flatcamGUI/FlatCAMGUI.py:5912 flatcamTools/ToolCutOut.py:86
  6381. #, fuzzy
  6382. #| msgid "Panel Tool"
  6383. msgid "Panel"
  6384. msgstr "Панелизация"
  6385. #: flatcamGUI/FlatCAMGUI.py:5918
  6386. msgid ""
  6387. "Distance from objects at which\n"
  6388. "to draw the cutout."
  6389. msgstr ""
  6390. "Расстояние от объектов вокруг которых\n"
  6391. "будет нарисовано очертание."
  6392. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamTools/ToolCutOut.py:111
  6393. msgid "Gap size:"
  6394. msgstr "Размер перемычки:"
  6395. #: flatcamGUI/FlatCAMGUI.py:5927
  6396. msgid ""
  6397. "Size of the gaps in the toolpath\n"
  6398. "that will remain to hold the\n"
  6399. "board in place."
  6400. msgstr ""
  6401. "Размер перемычек для удержания\n"
  6402. "печатной платы в заготовке."
  6403. #: flatcamGUI/FlatCAMGUI.py:5935 flatcamTools/ToolCutOut.py:149
  6404. msgid "Gaps:"
  6405. msgstr "Вариант:"
  6406. #: flatcamGUI/FlatCAMGUI.py:5937
  6407. msgid ""
  6408. "Number of bridge gaps used for the cutout.\n"
  6409. "There can be maximum 8 bridges/gaps.\n"
  6410. "The choices are:\n"
  6411. "- lr - left + right\n"
  6412. "- tb - top + bottom\n"
  6413. "- 4 - left + right +top + bottom\n"
  6414. "- 2lr - 2*left + 2*right\n"
  6415. "- 2tb - 2*top + 2*bottom\n"
  6416. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6417. msgstr ""
  6418. "Количество перемычек, оставляемых при обрезке платы.\n"
  6419. "Может быть максимум 8 мостов/перемычек.\n"
  6420. "Варианты:\n"
  6421. "- lr - слева + справа\n"
  6422. "- tb - сверху + снизу\n"
  6423. "- 4 - слева + справа +сверху + снизу\n"
  6424. "- 2lr - 2*слева + 2*справа\n"
  6425. "- 2tb - 2*сверху + 2*снизу \n"
  6426. "- 8 - 2*слева + 2*справа + 2*сверху + 2*снизу"
  6427. #: flatcamGUI/FlatCAMGUI.py:5958 flatcamTools/ToolCutOut.py:130
  6428. msgid "Convex Sh.:"
  6429. msgstr "Закруглять углы:"
  6430. #: flatcamGUI/FlatCAMGUI.py:5960
  6431. msgid "Create a convex shape surrounding the entire PCB."
  6432. msgstr ""
  6433. #: flatcamGUI/FlatCAMGUI.py:5973
  6434. msgid "2Sided Tool Options"
  6435. msgstr "2-х сторонняя плата"
  6436. #: flatcamGUI/FlatCAMGUI.py:5978
  6437. msgid ""
  6438. "A tool to help in creating a double sided\n"
  6439. "PCB using alignment holes."
  6440. msgstr ""
  6441. "Инструмент, помогающий создать двухстороннюю\n"
  6442. "печатную плату с использованием центрирующих отверстий."
  6443. #: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolDblSided.py:234
  6444. msgid "Drill diam.:"
  6445. msgstr "Диам. сверла.:"
  6446. #: flatcamGUI/FlatCAMGUI.py:5990 flatcamTools/ToolDblSided.py:225
  6447. #: flatcamTools/ToolDblSided.py:236
  6448. msgid "Diameter of the drill for the alignment holes."
  6449. msgstr "Диаметр сверла для контрольных отверстий."
  6450. #: flatcamGUI/FlatCAMGUI.py:5999 flatcamTools/ToolDblSided.py:120
  6451. msgid "Mirror Axis:"
  6452. msgstr "Зеркальное отражение:"
  6453. #: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolDblSided.py:122
  6454. msgid "Mirror vertically (X) or horizontally (Y)."
  6455. msgstr "Отразить по вертикали (X) или горизонтали (Y)."
  6456. #: flatcamGUI/FlatCAMGUI.py:6010 flatcamTools/ToolDblSided.py:131
  6457. msgid "Point"
  6458. msgstr "Точка"
  6459. #: flatcamGUI/FlatCAMGUI.py:6011 flatcamTools/ToolDblSided.py:132
  6460. msgid "Box"
  6461. msgstr ""
  6462. #: flatcamGUI/FlatCAMGUI.py:6012 flatcamTools/ToolDblSided.py:133
  6463. msgid "Axis Ref:"
  6464. msgstr ""
  6465. #: flatcamGUI/FlatCAMGUI.py:6014
  6466. msgid ""
  6467. "The axis should pass through a <b>point</b> or cut\n"
  6468. " a specified <b>box</b> (in a Geometry object) in \n"
  6469. "the middle."
  6470. msgstr ""
  6471. "Ось должна проходить через <b>точку</b> или вырезать\n"
  6472. " указанное <b>поле</b> (в Geometry объект) в\n"
  6473. "середине."
  6474. #: flatcamGUI/FlatCAMGUI.py:6030
  6475. msgid "Paint Tool Options"
  6476. msgstr "Рисование"
  6477. #: flatcamGUI/FlatCAMGUI.py:6037 flatcamGUI/ObjectUI.py:1311
  6478. msgid ""
  6479. "Creates tool paths to cover the\n"
  6480. "whole area of a polygon (remove\n"
  6481. "all copper). You will be asked\n"
  6482. "to click on the desired polygon."
  6483. msgstr ""
  6484. "Создание пути инструмента для покрытия\n"
  6485. "всей площади полигона(удаляется вся медь).\n"
  6486. "Будет предложено нажать на нужный полигон."
  6487. #: flatcamGUI/FlatCAMGUI.py:6061
  6488. msgid ""
  6489. "How much (fraction) of the tool\n"
  6490. "width to overlap each tool pass."
  6491. msgstr ""
  6492. "Размер части ширины инструмента \n"
  6493. "который будет перекрываться за каждый проход."
  6494. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamTools/ToolPaint.py:237
  6495. msgid "Selection:"
  6496. msgstr "Выбор:"
  6497. #: flatcamGUI/FlatCAMGUI.py:6117
  6498. msgid "How to select the polygons to paint."
  6499. msgstr "Как выбирать полигоны для рисования."
  6500. #: flatcamGUI/FlatCAMGUI.py:6135
  6501. msgid "Film Tool Options"
  6502. msgstr "Плёнка"
  6503. #: flatcamGUI/FlatCAMGUI.py:6140
  6504. msgid ""
  6505. "Create a PCB film from a Gerber or Geometry\n"
  6506. "FlatCAM object.\n"
  6507. "The file is saved in SVG format."
  6508. msgstr ""
  6509. #: flatcamGUI/FlatCAMGUI.py:6151 flatcamTools/ToolFilm.py:116
  6510. msgid "Film Type:"
  6511. msgstr "Тип плёнки:"
  6512. #: flatcamGUI/FlatCAMGUI.py:6153 flatcamTools/ToolFilm.py:118
  6513. msgid ""
  6514. "Generate a Positive black film or a Negative film.\n"
  6515. "Positive means that it will print the features\n"
  6516. "with black on a white canvas.\n"
  6517. "Negative means that it will print the features\n"
  6518. "with white on a black canvas.\n"
  6519. "The Film format is SVG."
  6520. msgstr ""
  6521. "Создаёт позитивную или негативную пленку.\n"
  6522. "Позитив означает, что он будет печатать элементы\n"
  6523. "чёрным на белом холсте.\n"
  6524. "Негатив означает, что он будет печатать элементы\n"
  6525. "белым на черном холсте.\n"
  6526. "Формат плёнки - SVG."
  6527. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamTools/ToolFilm.py:130
  6528. msgid "Border:"
  6529. msgstr "Отступ:"
  6530. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamTools/ToolFilm.py:132
  6531. msgid ""
  6532. "Specify a border around the object.\n"
  6533. "Only for negative film.\n"
  6534. "It helps if we use as a Box Object the same \n"
  6535. "object as in Film Object. It will create a thick\n"
  6536. "black bar around the actual print allowing for a\n"
  6537. "better delimitation of the outline features which are of\n"
  6538. "white color like the rest and which may confound with the\n"
  6539. "surroundings if not for this border."
  6540. msgstr ""
  6541. #: flatcamGUI/FlatCAMGUI.py:6179 flatcamTools/ToolFilm.py:144
  6542. msgid "Scale Stroke:"
  6543. msgstr "Масштаб обводки:"
  6544. #: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolFilm.py:146
  6545. msgid ""
  6546. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6547. "It means that the line that envelope each SVG feature will be thicker or "
  6548. "thinner,\n"
  6549. "therefore the fine features may be more affected by this parameter."
  6550. msgstr ""
  6551. #: flatcamGUI/FlatCAMGUI.py:6196
  6552. msgid "Panelize Tool Options"
  6553. msgstr "Панелизация"
  6554. #: flatcamGUI/FlatCAMGUI.py:6201
  6555. msgid ""
  6556. "Create an object that contains an array of (x, y) elements,\n"
  6557. "each element is a copy of the source object spaced\n"
  6558. "at a X distance, Y distance of each other."
  6559. msgstr ""
  6560. #: flatcamGUI/FlatCAMGUI.py:6212 flatcamTools/ToolPanelize.py:147
  6561. msgid "Spacing cols:"
  6562. msgstr "Интервал столбцов:"
  6563. #: flatcamGUI/FlatCAMGUI.py:6214 flatcamTools/ToolPanelize.py:149
  6564. msgid ""
  6565. "Spacing between columns of the desired panel.\n"
  6566. "In current units."
  6567. msgstr ""
  6568. #: flatcamGUI/FlatCAMGUI.py:6222 flatcamTools/ToolPanelize.py:156
  6569. msgid "Spacing rows:"
  6570. msgstr "Интервал строк:"
  6571. #: flatcamGUI/FlatCAMGUI.py:6224 flatcamTools/ToolPanelize.py:158
  6572. msgid ""
  6573. "Spacing between rows of the desired panel.\n"
  6574. "In current units."
  6575. msgstr ""
  6576. #: flatcamGUI/FlatCAMGUI.py:6232 flatcamTools/ToolPanelize.py:165
  6577. msgid "Columns:"
  6578. msgstr "Столбцы:"
  6579. #: flatcamGUI/FlatCAMGUI.py:6234 flatcamTools/ToolPanelize.py:167
  6580. msgid "Number of columns of the desired panel"
  6581. msgstr ""
  6582. #: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolPanelize.py:173
  6583. msgid "Rows:"
  6584. msgstr "Строки:"
  6585. #: flatcamGUI/FlatCAMGUI.py:6243 flatcamTools/ToolPanelize.py:175
  6586. msgid "Number of rows of the desired panel"
  6587. msgstr "Количество строк нужной панели"
  6588. #: flatcamGUI/FlatCAMGUI.py:6249 flatcamTools/ToolPanelize.py:181
  6589. msgid "Gerber"
  6590. msgstr "Gerber"
  6591. #: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolPanelize.py:182
  6592. msgid "Geo"
  6593. msgstr ""
  6594. #: flatcamGUI/FlatCAMGUI.py:6251
  6595. msgid "Panel Type:"
  6596. msgstr "Тип панели:"
  6597. #: flatcamGUI/FlatCAMGUI.py:6253
  6598. msgid ""
  6599. "Choose the type of object for the panel object:\n"
  6600. "- Gerber\n"
  6601. "- Geometry"
  6602. msgstr ""
  6603. #: flatcamGUI/FlatCAMGUI.py:6262
  6604. msgid "Constrain within:"
  6605. msgstr "Ограничить в пределах:"
  6606. #: flatcamGUI/FlatCAMGUI.py:6264 flatcamTools/ToolPanelize.py:195
  6607. msgid ""
  6608. "Area define by DX and DY within to constrain the panel.\n"
  6609. "DX and DY values are in current units.\n"
  6610. "Regardless of how many columns and rows are desired,\n"
  6611. "the final panel will have as many columns and rows as\n"
  6612. "they fit completely within selected area."
  6613. msgstr ""
  6614. #: flatcamGUI/FlatCAMGUI.py:6273 flatcamTools/ToolPanelize.py:204
  6615. msgid "Width (DX):"
  6616. msgstr "Ширина (DX):"
  6617. #: flatcamGUI/FlatCAMGUI.py:6275 flatcamTools/ToolPanelize.py:206
  6618. msgid ""
  6619. "The width (DX) within which the panel must fit.\n"
  6620. "In current units."
  6621. msgstr ""
  6622. #: flatcamGUI/FlatCAMGUI.py:6282 flatcamTools/ToolPanelize.py:212
  6623. msgid "Height (DY):"
  6624. msgstr "Высота (DY):"
  6625. #: flatcamGUI/FlatCAMGUI.py:6284 flatcamTools/ToolPanelize.py:214
  6626. msgid ""
  6627. "The height (DY)within which the panel must fit.\n"
  6628. "In current units."
  6629. msgstr ""
  6630. #: flatcamGUI/FlatCAMGUI.py:6298
  6631. msgid "Calculators Tool Options"
  6632. msgstr "Калькулятор"
  6633. #: flatcamGUI/FlatCAMGUI.py:6301
  6634. msgid "<b>V-Shape Tool Calculator:</b>"
  6635. msgstr "<b>Калькулятор V-образного инструмента:</b>"
  6636. #: flatcamGUI/FlatCAMGUI.py:6303
  6637. msgid ""
  6638. "Calculate the tool diameter for a given V-shape tool,\n"
  6639. "having the tip diameter, tip angle and\n"
  6640. "depth-of-cut as parameters."
  6641. msgstr ""
  6642. "Вычисляет диаметр инструмента для наконечника V-образной формы,\n"
  6643. "учитывая диаметр наконечника, угол наклона наконечника и\n"
  6644. "глубину резания в качестве параметров."
  6645. #: flatcamGUI/FlatCAMGUI.py:6314 flatcamTools/ToolCalculators.py:92
  6646. msgid "Tip Diameter:"
  6647. msgstr "Диаметр наконечника:"
  6648. #: flatcamGUI/FlatCAMGUI.py:6316
  6649. msgid ""
  6650. "This is the tool tip diameter.\n"
  6651. "It is specified by manufacturer."
  6652. msgstr ""
  6653. #: flatcamGUI/FlatCAMGUI.py:6324
  6654. msgid "Tip angle:"
  6655. msgstr "Угол наклона:"
  6656. #: flatcamGUI/FlatCAMGUI.py:6326
  6657. msgid ""
  6658. "This is the angle on the tip of the tool.\n"
  6659. "It is specified by manufacturer."
  6660. msgstr ""
  6661. #: flatcamGUI/FlatCAMGUI.py:6336
  6662. msgid ""
  6663. "This is depth to cut into material.\n"
  6664. "In the CNCJob object it is the CutZ parameter."
  6665. msgstr ""
  6666. #: flatcamGUI/FlatCAMGUI.py:6343
  6667. msgid "<b>ElectroPlating Calculator:</b>"
  6668. msgstr "<b>Калькулятор электронных плат:</b>"
  6669. #: flatcamGUI/FlatCAMGUI.py:6345 flatcamTools/ToolCalculators.py:148
  6670. msgid ""
  6671. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6672. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6673. "chloride."
  6674. msgstr ""
  6675. #: flatcamGUI/FlatCAMGUI.py:6355 flatcamTools/ToolCalculators.py:157
  6676. msgid "Board Length:"
  6677. msgstr "Длина платы:"
  6678. #: flatcamGUI/FlatCAMGUI.py:6357 flatcamTools/ToolCalculators.py:161
  6679. msgid "This is the board length. In centimeters."
  6680. msgstr ""
  6681. #: flatcamGUI/FlatCAMGUI.py:6363 flatcamTools/ToolCalculators.py:163
  6682. msgid "Board Width:"
  6683. msgstr "Ширина платы:"
  6684. #: flatcamGUI/FlatCAMGUI.py:6365 flatcamTools/ToolCalculators.py:167
  6685. msgid "This is the board width.In centimeters."
  6686. msgstr ""
  6687. #: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolCalculators.py:169
  6688. msgid "Current Density:"
  6689. msgstr "Текущая плотность:"
  6690. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolCalculators.py:173
  6691. msgid ""
  6692. "Current density to pass through the board. \n"
  6693. "In Amps per Square Feet ASF."
  6694. msgstr ""
  6695. #: flatcamGUI/FlatCAMGUI.py:6379 flatcamTools/ToolCalculators.py:176
  6696. msgid "Copper Growth:"
  6697. msgstr "Медный слой:"
  6698. #: flatcamGUI/FlatCAMGUI.py:6382 flatcamTools/ToolCalculators.py:180
  6699. msgid ""
  6700. "How thick the copper growth is intended to be.\n"
  6701. "In microns."
  6702. msgstr ""
  6703. #: flatcamGUI/FlatCAMGUI.py:6395
  6704. msgid "Transform Tool Options"
  6705. msgstr "Трансформация"
  6706. #: flatcamGUI/FlatCAMGUI.py:6400
  6707. msgid ""
  6708. "Various transformations that can be applied\n"
  6709. "on a FlatCAM object."
  6710. msgstr ""
  6711. "Различные преобразования, которые могут быть применены\n"
  6712. "на объекте FlatCAM."
  6713. #: flatcamGUI/FlatCAMGUI.py:6410
  6714. msgid "Rotate Angle:"
  6715. msgstr ""
  6716. #: flatcamGUI/FlatCAMGUI.py:6412
  6717. msgid "Angle for rotation. In degrees."
  6718. msgstr ""
  6719. #: flatcamGUI/FlatCAMGUI.py:6419
  6720. msgid "Skew_X angle:"
  6721. msgstr "Угол наклона_X:"
  6722. #: flatcamGUI/FlatCAMGUI.py:6421
  6723. msgid "Angle for Skew/Shear on X axis. In degrees."
  6724. msgstr ""
  6725. #: flatcamGUI/FlatCAMGUI.py:6428
  6726. msgid "Skew_Y angle:"
  6727. msgstr "Угол наклона_Y:"
  6728. #: flatcamGUI/FlatCAMGUI.py:6430
  6729. msgid "Angle for Skew/Shear on Y axis. In degrees."
  6730. msgstr ""
  6731. #: flatcamGUI/FlatCAMGUI.py:6437
  6732. msgid "Scale_X factor:"
  6733. msgstr "Коэф. X:"
  6734. #: flatcamGUI/FlatCAMGUI.py:6439
  6735. msgid "Factor for scaling on X axis."
  6736. msgstr "Коэффициент масштабирования по оси X."
  6737. #: flatcamGUI/FlatCAMGUI.py:6446
  6738. msgid "Scale_Y factor:"
  6739. msgstr "Коэф Y:"
  6740. #: flatcamGUI/FlatCAMGUI.py:6448
  6741. msgid "Factor for scaling on Y axis."
  6742. msgstr "Коэффициент масштабирования по оси Y."
  6743. #: flatcamGUI/FlatCAMGUI.py:6456
  6744. msgid ""
  6745. "Scale the selected object(s)\n"
  6746. "using the Scale_X factor for both axis."
  6747. msgstr ""
  6748. #: flatcamGUI/FlatCAMGUI.py:6464 flatcamTools/ToolTransform.py:210
  6749. msgid ""
  6750. "Scale the selected object(s)\n"
  6751. "using the origin reference when checked,\n"
  6752. "and the center of the biggest bounding box\n"
  6753. "of the selected objects when unchecked."
  6754. msgstr ""
  6755. #: flatcamGUI/FlatCAMGUI.py:6473
  6756. msgid "Offset_X val:"
  6757. msgstr "Смещение Х:"
  6758. #: flatcamGUI/FlatCAMGUI.py:6475
  6759. msgid "Distance to offset on X axis. In current units."
  6760. msgstr "Расстояние смещения по оси X. В текущих единицах."
  6761. #: flatcamGUI/FlatCAMGUI.py:6482
  6762. msgid "Offset_Y val:"
  6763. msgstr "Смещение Y:"
  6764. #: flatcamGUI/FlatCAMGUI.py:6484
  6765. msgid "Distance to offset on Y axis. In current units."
  6766. msgstr "Расстояние смещения по оси Y. В текущих единицах."
  6767. #: flatcamGUI/FlatCAMGUI.py:6490
  6768. msgid "Mirror Reference"
  6769. msgstr "Точка зеркалтрования"
  6770. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolTransform.py:314
  6771. msgid ""
  6772. "Flip the selected object(s)\n"
  6773. "around the point in Point Entry Field.\n"
  6774. "\n"
  6775. "The point coordinates can be captured by\n"
  6776. "left click on canvas together with pressing\n"
  6777. "SHIFT key. \n"
  6778. "Then click Add button to insert coordinates.\n"
  6779. "Or enter the coords in format (x, y) in the\n"
  6780. "Point Entry field and click Flip on X(Y)"
  6781. msgstr ""
  6782. #: flatcamGUI/FlatCAMGUI.py:6503
  6783. msgid " Mirror Ref. Point:"
  6784. msgstr " Точка зеркалирования:"
  6785. #: flatcamGUI/FlatCAMGUI.py:6505 flatcamTools/ToolTransform.py:327
  6786. msgid ""
  6787. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6788. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6789. "the 'y' in (x, y) will be used when using Flip on Y and"
  6790. msgstr ""
  6791. "Координаты в формате (x, y), используемые в качестве указателя для "
  6792. "отражения.\n"
  6793. "'x' в (x, y) будет использоваться при отражении по X и\n"
  6794. "'y' в (x, y) будет использоваться при отражении по Y"
  6795. #: flatcamGUI/FlatCAMGUI.py:6522
  6796. msgid "SolderPaste Tool Options"
  6797. msgstr "Паяльная паста"
  6798. #: flatcamGUI/FlatCAMGUI.py:6527
  6799. msgid ""
  6800. "A tool to create GCode for dispensing\n"
  6801. "solder paste onto a PCB."
  6802. msgstr ""
  6803. "Инструмент для создания GCode для дозирования\n"
  6804. "нанесения паяльной пасты на печатную плату."
  6805. #: flatcamGUI/FlatCAMGUI.py:6538
  6806. msgid "Diameters of nozzle tools, separated by ','"
  6807. msgstr ""
  6808. #: flatcamGUI/FlatCAMGUI.py:6545
  6809. msgid "<b>New Nozzle Dia:</b>"
  6810. msgstr "<b>Новый диам. сопла:</b>"
  6811. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolSolderPaste.py:103
  6812. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6813. msgstr ""
  6814. #: flatcamGUI/FlatCAMGUI.py:6555 flatcamTools/ToolSolderPaste.py:166
  6815. msgid "Z Dispense Start:"
  6816. msgstr "Z начала нанесения:"
  6817. #: flatcamGUI/FlatCAMGUI.py:6557 flatcamTools/ToolSolderPaste.py:168
  6818. msgid "The height (Z) when solder paste dispensing starts."
  6819. msgstr ""
  6820. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolSolderPaste.py:174
  6821. msgid "Z Dispense:"
  6822. msgstr "Z нанесения:"
  6823. #: flatcamGUI/FlatCAMGUI.py:6566 flatcamTools/ToolSolderPaste.py:176
  6824. msgid "The height (Z) when doing solder paste dispensing."
  6825. msgstr ""
  6826. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamTools/ToolSolderPaste.py:182
  6827. msgid "Z Dispense Stop:"
  6828. msgstr "Z конца нанесения:"
  6829. #: flatcamGUI/FlatCAMGUI.py:6575 flatcamTools/ToolSolderPaste.py:184
  6830. msgid "The height (Z) when solder paste dispensing stops."
  6831. msgstr ""
  6832. #: flatcamGUI/FlatCAMGUI.py:6582 flatcamTools/ToolSolderPaste.py:190
  6833. msgid "Z Travel:"
  6834. msgstr "Z перемещения:"
  6835. #: flatcamGUI/FlatCAMGUI.py:6584 flatcamTools/ToolSolderPaste.py:192
  6836. msgid ""
  6837. "The height (Z) for travel between pads\n"
  6838. "(without dispensing solder paste)."
  6839. msgstr ""
  6840. #: flatcamGUI/FlatCAMGUI.py:6592 flatcamTools/ToolSolderPaste.py:199
  6841. msgid "Z Toolchange:"
  6842. msgstr "Z смены инструмента:"
  6843. #: flatcamGUI/FlatCAMGUI.py:6594 flatcamTools/ToolSolderPaste.py:201
  6844. msgid "The height (Z) for tool (nozzle) change."
  6845. msgstr ""
  6846. #: flatcamGUI/FlatCAMGUI.py:6601 flatcamTools/ToolSolderPaste.py:207
  6847. msgid "XY Toolchange:"
  6848. msgstr "XY смены инструмента:"
  6849. #: flatcamGUI/FlatCAMGUI.py:6603 flatcamTools/ToolSolderPaste.py:209
  6850. msgid ""
  6851. "The X,Y location for tool (nozzle) change.\n"
  6852. "The format is (x, y) where x and y are real numbers."
  6853. msgstr ""
  6854. #: flatcamGUI/FlatCAMGUI.py:6611 flatcamTools/ToolSolderPaste.py:216
  6855. msgid "Feedrate X-Y:"
  6856. msgstr "Скорость подачи X-Y:"
  6857. #: flatcamGUI/FlatCAMGUI.py:6613 flatcamTools/ToolSolderPaste.py:218
  6858. msgid "Feedrate (speed) while moving on the X-Y plane."
  6859. msgstr "Скорость подачи при движении по плоскости X-Y."
  6860. #: flatcamGUI/FlatCAMGUI.py:6620 flatcamTools/ToolSolderPaste.py:224
  6861. msgid "Feedrate Z:"
  6862. msgstr "Скорость подачи Z:"
  6863. #: flatcamGUI/FlatCAMGUI.py:6622 flatcamTools/ToolSolderPaste.py:226
  6864. msgid ""
  6865. "Feedrate (speed) while moving vertically\n"
  6866. "(on Z plane)."
  6867. msgstr ""
  6868. #: flatcamGUI/FlatCAMGUI.py:6630 flatcamTools/ToolSolderPaste.py:233
  6869. msgid "Feedrate Z Dispense:"
  6870. msgstr "Скорость подачи Z Диспенсер:"
  6871. #: flatcamGUI/FlatCAMGUI.py:6632
  6872. msgid ""
  6873. "Feedrate (speed) while moving up vertically\n"
  6874. "to Dispense position (on Z plane)."
  6875. msgstr ""
  6876. #: flatcamGUI/FlatCAMGUI.py:6640 flatcamTools/ToolSolderPaste.py:242
  6877. msgid "Spindle Speed FWD:"
  6878. msgstr "Скорость прям. вр. шпинделя:"
  6879. #: flatcamGUI/FlatCAMGUI.py:6642 flatcamTools/ToolSolderPaste.py:244
  6880. msgid ""
  6881. "The dispenser speed while pushing solder paste\n"
  6882. "through the dispenser nozzle."
  6883. msgstr ""
  6884. #: flatcamGUI/FlatCAMGUI.py:6650 flatcamTools/ToolSolderPaste.py:251
  6885. msgid "Dwell FWD:"
  6886. msgstr ""
  6887. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamTools/ToolSolderPaste.py:253
  6888. msgid "Pause after solder dispensing."
  6889. msgstr "Пауза после выдачи паяльной пасты."
  6890. #: flatcamGUI/FlatCAMGUI.py:6659 flatcamTools/ToolSolderPaste.py:259
  6891. msgid "Spindle Speed REV:"
  6892. msgstr "Скорость обратн. вр. шпинделя:"
  6893. #: flatcamGUI/FlatCAMGUI.py:6661 flatcamTools/ToolSolderPaste.py:261
  6894. msgid ""
  6895. "The dispenser speed while retracting solder paste\n"
  6896. "through the dispenser nozzle."
  6897. msgstr ""
  6898. #: flatcamGUI/FlatCAMGUI.py:6669 flatcamTools/ToolSolderPaste.py:268
  6899. msgid "Dwell REV:"
  6900. msgstr ""
  6901. #: flatcamGUI/FlatCAMGUI.py:6671 flatcamTools/ToolSolderPaste.py:270
  6902. msgid ""
  6903. "Pause after solder paste dispenser retracted,\n"
  6904. "to allow pressure equilibrium."
  6905. msgstr ""
  6906. "Пауза после того, как дозатор паяльной пасты будет убран,\n"
  6907. "чтобы обеспечить равномерное выдавливание."
  6908. #: flatcamGUI/FlatCAMGUI.py:6678 flatcamTools/ToolSolderPaste.py:276
  6909. msgid "PostProcessors:"
  6910. msgstr "Постпроцессоры:"
  6911. #: flatcamGUI/FlatCAMGUI.py:6680 flatcamTools/ToolSolderPaste.py:278
  6912. msgid "Files that control the GCode generation."
  6913. msgstr "Файлы контролирующие генерацию GCode."
  6914. #: flatcamGUI/FlatCAMGUI.py:6710 flatcamGUI/FlatCAMGUI.py:6716
  6915. msgid "Idle."
  6916. msgstr "Нет заданий."
  6917. #: flatcamGUI/FlatCAMGUI.py:6740
  6918. msgid "Application started ..."
  6919. msgstr "Приложение запущено ..."
  6920. #: flatcamGUI/FlatCAMGUI.py:6741
  6921. msgid "Hello!"
  6922. msgstr "Привет!"
  6923. #: flatcamGUI/ObjectUI.py:33
  6924. msgid "FlatCAM Object"
  6925. msgstr "Объект FlatCAM"
  6926. #: flatcamGUI/ObjectUI.py:58
  6927. msgid ""
  6928. "BASIC is suitable for a beginner. Many parameters\n"
  6929. "are hidden from the user in this mode.\n"
  6930. "ADVANCED mode will make available all parameters.\n"
  6931. "\n"
  6932. "To change the application LEVEL, go to:\n"
  6933. "Edit -> Preferences -> General and check:\n"
  6934. "'APP. LEVEL' radio button."
  6935. msgstr ""
  6936. #: flatcamGUI/ObjectUI.py:79
  6937. msgid "<b>Scale:</b>"
  6938. msgstr "<b>Масштаб:</b>"
  6939. #: flatcamGUI/ObjectUI.py:81
  6940. msgid "Change the size of the object."
  6941. msgstr "Изменение размера объекта."
  6942. #: flatcamGUI/ObjectUI.py:89
  6943. msgid "Factor:"
  6944. msgstr "Коэффициент:"
  6945. #: flatcamGUI/ObjectUI.py:91
  6946. msgid ""
  6947. "Factor by which to multiply\n"
  6948. "geometric features of this object."
  6949. msgstr ""
  6950. "Коэффециент увеличения\n"
  6951. "масштаба объекта."
  6952. #: flatcamGUI/ObjectUI.py:102
  6953. msgid "Perform scaling operation."
  6954. msgstr "Будет выполнена операция масштабирования."
  6955. #: flatcamGUI/ObjectUI.py:108
  6956. msgid "<b>Offset:</b>"
  6957. msgstr "<b>Смещение:</b>"
  6958. #: flatcamGUI/ObjectUI.py:110
  6959. msgid "Change the position of this object."
  6960. msgstr "Смена положения этого объекта."
  6961. #: flatcamGUI/ObjectUI.py:117
  6962. msgid "Vector:"
  6963. msgstr "Вектор:"
  6964. #: flatcamGUI/ObjectUI.py:119
  6965. msgid ""
  6966. "Amount by which to move the object\n"
  6967. "in the x and y axes in (x, y) format."
  6968. msgstr ""
  6969. "Расстояние на которое можно переместить объект\n"
  6970. "по осям X и Y в формате (x, y)."
  6971. #: flatcamGUI/ObjectUI.py:129
  6972. msgid "Perform the offset operation."
  6973. msgstr "Будет произведено смещение на заданное расстояние."
  6974. #: flatcamGUI/ObjectUI.py:143
  6975. msgid "Gerber Object"
  6976. msgstr "Объект Gerber"
  6977. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:514
  6978. #: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1387
  6979. msgid "<b>Name:</b>"
  6980. msgstr "<b>Имя:</b>"
  6981. #: flatcamGUI/ObjectUI.py:203
  6982. msgid ""
  6983. "Toggle the display of the Gerber Apertures Table.\n"
  6984. "When unchecked, it will delete all mark shapes\n"
  6985. "that are drawn on canvas."
  6986. msgstr ""
  6987. "Переключает отображение Gerber Apertures Table\n"
  6988. "Когда флажок снят, он удалит все отмеченные фигуры\n"
  6989. "которые отображены на холсте."
  6990. #: flatcamGUI/ObjectUI.py:213
  6991. msgid "Mark All"
  6992. msgstr "Отметить все"
  6993. #: flatcamGUI/ObjectUI.py:215
  6994. msgid ""
  6995. "When checked it will display all the apertures.\n"
  6996. "When unchecked, it will delete all mark shapes\n"
  6997. "that are drawn on canvas."
  6998. msgstr ""
  6999. "При включенном флажке будут отображаться все отверстия.\n"
  7000. "Когда флажок снят, он удалит все отмеченные фигуры\n"
  7001. "которые нарисованы на холсте."
  7002. #: flatcamGUI/ObjectUI.py:243
  7003. msgid "Mark the aperture instances on canvas."
  7004. msgstr ""
  7005. #: flatcamGUI/ObjectUI.py:261
  7006. msgid ""
  7007. "Diameter of the cutting tool.\n"
  7008. "If you want to have an isolation path\n"
  7009. "inside the actual shape of the Gerber\n"
  7010. "feature, use a negative value for\n"
  7011. "this parameter."
  7012. msgstr ""
  7013. #: flatcamGUI/ObjectUI.py:272
  7014. msgid "Passes:"
  7015. msgstr "Проходы:"
  7016. #: flatcamGUI/ObjectUI.py:306
  7017. msgid "Combine"
  7018. msgstr "Комбинировать"
  7019. #: flatcamGUI/ObjectUI.py:322
  7020. msgid "<b>Generate Isolation Geometry:</b>"
  7021. msgstr "<b>Создание изолирующей Geometry:</b>"
  7022. #: flatcamGUI/ObjectUI.py:324
  7023. msgid ""
  7024. "Create a Geometry object with toolpaths to cut \n"
  7025. "isolation outside, inside or on both sides of the\n"
  7026. "object. For a Gerber object outside means outside\n"
  7027. "of the Gerber feature and inside means inside of\n"
  7028. "the Gerber feature, if possible at all. This means\n"
  7029. "that only if the Gerber feature has openings inside, they\n"
  7030. "will be isolated. If what is wanted is to cut isolation\n"
  7031. "inside the actual Gerber feature, use a negative tool\n"
  7032. "diameter above."
  7033. msgstr ""
  7034. #: flatcamGUI/ObjectUI.py:343
  7035. msgid "FULL Geo"
  7036. msgstr "ВСЕ"
  7037. #: flatcamGUI/ObjectUI.py:345
  7038. msgid ""
  7039. "Create the Geometry Object\n"
  7040. "for isolation routing. It contains both\n"
  7041. "the interiors and exteriors geometry."
  7042. msgstr ""
  7043. #: flatcamGUI/ObjectUI.py:354
  7044. msgid "Ext Geo"
  7045. msgstr "ВНЕШНЯЯ"
  7046. #: flatcamGUI/ObjectUI.py:356
  7047. msgid ""
  7048. "Create the Geometry Object\n"
  7049. "for isolation routing containing\n"
  7050. "only the exteriors geometry."
  7051. msgstr ""
  7052. #: flatcamGUI/ObjectUI.py:363
  7053. msgid "Int Geo"
  7054. msgstr "ВНУТРЕННЯЯ"
  7055. #: flatcamGUI/ObjectUI.py:365
  7056. msgid ""
  7057. "Create the Geometry Object\n"
  7058. "for isolation routing containing\n"
  7059. "only the interiors geometry."
  7060. msgstr ""
  7061. #: flatcamGUI/ObjectUI.py:381
  7062. msgid "<b>Clear N-copper:</b>"
  7063. msgstr "<b>Очистка меди:</b>"
  7064. #: flatcamGUI/ObjectUI.py:391 flatcamTools/ToolNonCopperClear.py:240
  7065. msgid ""
  7066. "Create the Geometry Object\n"
  7067. "for non-copper routing."
  7068. msgstr ""
  7069. "Создаёт объект геометрии\n"
  7070. "для безмедного полигона."
  7071. #: flatcamGUI/ObjectUI.py:397
  7072. msgid "<b>Board cutout:</b>"
  7073. msgstr "<b>Обрезка контура платы:</b>"
  7074. #: flatcamGUI/ObjectUI.py:405 flatcamTools/ToolCutOut.py:328
  7075. msgid "Cutout Tool"
  7076. msgstr "Обрезка платы"
  7077. #: flatcamGUI/ObjectUI.py:407
  7078. msgid ""
  7079. "Generate the geometry for\n"
  7080. "the board cutout."
  7081. msgstr ""
  7082. "Будет создан объект геометрии\n"
  7083. "для обрезки контура."
  7084. #: flatcamGUI/ObjectUI.py:413
  7085. msgid "<b>Non-copper regions:</b>"
  7086. msgstr "<b>Безмедные полигоны:</b>"
  7087. #: flatcamGUI/ObjectUI.py:415
  7088. msgid ""
  7089. "Create polygons covering the\n"
  7090. "areas without copper on the PCB.\n"
  7091. "Equivalent to the inverse of this\n"
  7092. "object. Can be used to remove all\n"
  7093. "copper from a specified region."
  7094. msgstr ""
  7095. "Создание полигонов, охватывающих\n"
  7096. "участки без меди на печатной плате.\n"
  7097. "Обратный эквивалент этого\n"
  7098. "объекта может использоваться для удаления всей\n"
  7099. "меди из указанного региона."
  7100. #: flatcamGUI/ObjectUI.py:440 flatcamGUI/ObjectUI.py:471
  7101. msgid "Rounded Geo"
  7102. msgstr "Закруглять"
  7103. #: flatcamGUI/ObjectUI.py:442
  7104. msgid "Resulting geometry will have rounded corners."
  7105. msgstr ""
  7106. #: flatcamGUI/ObjectUI.py:447 flatcamGUI/ObjectUI.py:481
  7107. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  7108. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  7109. msgid "Generate Geo"
  7110. msgstr "Создать"
  7111. #: flatcamGUI/ObjectUI.py:453
  7112. msgid ""
  7113. "Create a geometry surrounding the Gerber object.\n"
  7114. "Square shape."
  7115. msgstr ""
  7116. #: flatcamGUI/ObjectUI.py:483
  7117. msgid "Generate the Geometry object."
  7118. msgstr "Будет создан объект геометрии."
  7119. #: flatcamGUI/ObjectUI.py:494
  7120. msgid "Excellon Object"
  7121. msgstr "Объект Excellon"
  7122. #: flatcamGUI/ObjectUI.py:505
  7123. msgid "Solid circles."
  7124. msgstr "Закрашенные круги."
  7125. #: flatcamGUI/ObjectUI.py:533 flatcamGUI/ObjectUI.py:855
  7126. msgid "<b>Tools Table</b>"
  7127. msgstr "<b>Таблица инструментов</b>"
  7128. #: flatcamGUI/ObjectUI.py:553
  7129. msgid "Drills"
  7130. msgstr "Отверстия"
  7131. #: flatcamGUI/ObjectUI.py:553
  7132. msgid "Slots"
  7133. msgstr "Пазы"
  7134. #: flatcamGUI/ObjectUI.py:554
  7135. msgid "Offset Z"
  7136. msgstr "Смещение Z"
  7137. #: flatcamGUI/ObjectUI.py:558
  7138. msgid ""
  7139. "This is the Tool Number.\n"
  7140. "When ToolChange is checked, on toolchange event this value\n"
  7141. "will be showed as a T1, T2 ... Tn in the Machine Code."
  7142. msgstr ""
  7143. #: flatcamGUI/ObjectUI.py:562 flatcamGUI/ObjectUI.py:901
  7144. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  7145. msgid ""
  7146. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7147. "is the cut width into the material."
  7148. msgstr ""
  7149. "Диаметр инструмента. Это значение (в текущих единицах FlatCAM) \n"
  7150. "ширины разреза в материале."
  7151. #: flatcamGUI/ObjectUI.py:565
  7152. msgid ""
  7153. "The number of Drill holes. Holes that are drilled with\n"
  7154. "a drill bit."
  7155. msgstr ""
  7156. #: flatcamGUI/ObjectUI.py:568
  7157. msgid ""
  7158. "The number of Slot holes. Holes that are created by\n"
  7159. "milling them with an endmill bit."
  7160. msgstr ""
  7161. #: flatcamGUI/ObjectUI.py:575
  7162. msgid "Toggle display of the drills for the current tool."
  7163. msgstr "Переключает отображения сверел для текущего инструмента."
  7164. #: flatcamGUI/ObjectUI.py:583
  7165. msgid ""
  7166. "Create a CNC Job object\n"
  7167. "for this drill object."
  7168. msgstr "Создание G-Code для объекта сверловки."
  7169. #: flatcamGUI/ObjectUI.py:612 flatcamGUI/ObjectUI.py:1124
  7170. msgid "Tool change"
  7171. msgstr "Смена инструмента"
  7172. #: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:1117
  7173. msgid "Tool change Z:"
  7174. msgstr "Смена инструмента Z:"
  7175. #: flatcamGUI/ObjectUI.py:622 flatcamGUI/ObjectUI.py:1120
  7176. msgid ""
  7177. "Z-axis position (height) for\n"
  7178. "tool change."
  7179. msgstr "Отвод по оси Z для смены инструмента."
  7180. #: flatcamGUI/ObjectUI.py:633
  7181. msgid ""
  7182. "Tool height just before starting the work.\n"
  7183. "Delete the value if you don't need this feature."
  7184. msgstr ""
  7185. "Высота положения инструмента непосредственно перед началом работы.\n"
  7186. "Удалите значение если вам не нужна эта функция."
  7187. #: flatcamGUI/ObjectUI.py:643
  7188. msgid ""
  7189. "Z-axis position (height) for\n"
  7190. "the last move."
  7191. msgstr ""
  7192. "Положение оси Z (высота) для\n"
  7193. "следующего прохода."
  7194. #: flatcamGUI/ObjectUI.py:651
  7195. msgid "Feedrate (Plunge):"
  7196. msgstr "Скорость подачи (подвод):"
  7197. #: flatcamGUI/ObjectUI.py:653
  7198. msgid ""
  7199. "Tool speed while drilling\n"
  7200. "(in units per minute).\n"
  7201. "This is for linear move G01."
  7202. msgstr ""
  7203. "Скорость вращения инструмента при сверлении\n"
  7204. "(в единицах измерения в минуту).\n"
  7205. "Используется для линейного перемещения G01."
  7206. #: flatcamGUI/ObjectUI.py:706
  7207. msgid ""
  7208. "The json file that dictates\n"
  7209. "gcode output."
  7210. msgstr ""
  7211. #: flatcamGUI/ObjectUI.py:738
  7212. msgid ""
  7213. "Select from the Tools Table above\n"
  7214. "the tools you want to include."
  7215. msgstr ""
  7216. #: flatcamGUI/ObjectUI.py:745
  7217. msgid "<b>Type: </b>"
  7218. msgstr "<b>Тип: </b>"
  7219. #: flatcamGUI/ObjectUI.py:747
  7220. msgid ""
  7221. "Choose what to use for GCode generation:\n"
  7222. "'Drills', 'Slots' or 'Both'.\n"
  7223. "When choosing 'Slots' or 'Both', slots will be\n"
  7224. "converted to a series of drills."
  7225. msgstr ""
  7226. #: flatcamGUI/ObjectUI.py:762
  7227. msgid "Create GCode"
  7228. msgstr "Создать GCode"
  7229. #: flatcamGUI/ObjectUI.py:764
  7230. msgid "Generate the CNC Job."
  7231. msgstr "Создание программы для ЧПУ."
  7232. #: flatcamGUI/ObjectUI.py:776
  7233. msgid ""
  7234. "Select from the Tools Table above\n"
  7235. " the hole dias that are to be milled."
  7236. msgstr ""
  7237. #: flatcamGUI/ObjectUI.py:783
  7238. msgid "Drills Tool dia:"
  7239. msgstr "Диам. свёрел:"
  7240. #: flatcamGUI/ObjectUI.py:790
  7241. msgid "Mill Drills Geo"
  7242. msgstr ""
  7243. #: flatcamGUI/ObjectUI.py:792
  7244. msgid ""
  7245. "Create the Geometry Object\n"
  7246. "for milling DRILLS toolpaths."
  7247. msgstr ""
  7248. #: flatcamGUI/ObjectUI.py:799
  7249. msgid "Slots Tool dia:"
  7250. msgstr ""
  7251. #: flatcamGUI/ObjectUI.py:806
  7252. msgid "Mill Slots Geo"
  7253. msgstr ""
  7254. #: flatcamGUI/ObjectUI.py:808
  7255. msgid ""
  7256. "Create the Geometry Object\n"
  7257. "for milling SLOTS toolpaths."
  7258. msgstr ""
  7259. #: flatcamGUI/ObjectUI.py:826
  7260. msgid "Geometry Object"
  7261. msgstr "Объект Geometry"
  7262. #: flatcamGUI/ObjectUI.py:857
  7263. msgid ""
  7264. "Tools in this Geometry object used for cutting.\n"
  7265. "The 'Offset' entry will set an offset for the cut.\n"
  7266. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7267. "'Type' entry is only informative and it allow to know the \n"
  7268. "intent of using the current tool. \n"
  7269. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7270. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7271. "ball(B), or V-Shaped(V). \n"
  7272. "When V-shaped is selected the 'Type' entry is automatically \n"
  7273. "set to Isolation, the CutZ parameter in the UI form is\n"
  7274. "grayed out and Cut Z is automatically calculated from the newly \n"
  7275. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7276. msgstr ""
  7277. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  7278. msgid "Dia"
  7279. msgstr "Диам"
  7280. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  7281. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  7282. msgid "TT"
  7283. msgstr "TT"
  7284. #: flatcamGUI/ObjectUI.py:895
  7285. msgid ""
  7286. "This is the Tool Number.\n"
  7287. "When ToolChange is checked, on toolchange event this value\n"
  7288. "will be showed as a T1, T2 ... Tn"
  7289. msgstr ""
  7290. #: flatcamGUI/ObjectUI.py:906
  7291. msgid ""
  7292. "The value for the Offset can be:\n"
  7293. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7294. "line.\n"
  7295. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7296. "'pocket'.\n"
  7297. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7298. msgstr ""
  7299. #: flatcamGUI/ObjectUI.py:913
  7300. msgid ""
  7301. "The (Operation) Type has only informative value. Usually the UI form "
  7302. "values \n"
  7303. "are choosed based on the operation type and this will serve as a reminder.\n"
  7304. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7305. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7306. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7307. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7308. "tip."
  7309. msgstr ""
  7310. #: flatcamGUI/ObjectUI.py:922
  7311. msgid ""
  7312. "The Tool Type (TT) can be:\n"
  7313. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7314. "cut width in material\n"
  7315. "is exactly the tool diameter.\n"
  7316. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7317. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7318. "two additional UI form\n"
  7319. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7320. "the Z-Cut parameter such\n"
  7321. "as the cut width into material will be equal with the value in the Tool "
  7322. "Diameter column of this table.\n"
  7323. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7324. "as Isolation."
  7325. msgstr ""
  7326. #: flatcamGUI/ObjectUI.py:934
  7327. msgid ""
  7328. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7329. "that holds the geometry\n"
  7330. "data into the tools. For those geometries, deleting the tool will delete the "
  7331. "geometry data also,\n"
  7332. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7333. "plot on canvas\n"
  7334. "for the corresponding tool."
  7335. msgstr ""
  7336. #: flatcamGUI/ObjectUI.py:947
  7337. msgid "Tool Offset:"
  7338. msgstr "Смещение:"
  7339. #: flatcamGUI/ObjectUI.py:950
  7340. msgid ""
  7341. "The value to offset the cut when \n"
  7342. "the Offset type selected is 'Offset'.\n"
  7343. "The value can be positive for 'outside'\n"
  7344. "cut and negative for 'inside' cut."
  7345. msgstr ""
  7346. #: flatcamGUI/ObjectUI.py:973
  7347. msgid "<b>Tool Dia:</b>"
  7348. msgstr "<b>Диам. инструмента:</b>"
  7349. #: flatcamGUI/ObjectUI.py:992 flatcamTools/ToolNonCopperClear.py:136
  7350. #: flatcamTools/ToolPaint.py:133
  7351. msgid ""
  7352. "Add a new tool to the Tool Table\n"
  7353. "with the diameter specified above."
  7354. msgstr ""
  7355. #: flatcamGUI/ObjectUI.py:1000
  7356. msgid ""
  7357. "Copy a selection of tools in the Tool Table\n"
  7358. "by first selecting a row in the Tool Table."
  7359. msgstr ""
  7360. #: flatcamGUI/ObjectUI.py:1008
  7361. msgid ""
  7362. "Delete a selection of tools in the Tool Table\n"
  7363. "by first selecting a row in the Tool Table."
  7364. msgstr ""
  7365. #: flatcamGUI/ObjectUI.py:1024
  7366. msgid "<b>Tool Data</b>"
  7367. msgstr "<b>Данные инструмента</b>"
  7368. #: flatcamGUI/ObjectUI.py:1027
  7369. msgid ""
  7370. "The data used for creating GCode.\n"
  7371. "Each tool store it's own set of such data."
  7372. msgstr ""
  7373. #: flatcamGUI/ObjectUI.py:1045
  7374. msgid "V-Tip Dia:"
  7375. msgstr "Диам. V-наконечника:"
  7376. #: flatcamGUI/ObjectUI.py:1048
  7377. msgid "The tip diameter for V-Shape Tool"
  7378. msgstr "Диаметр наконечника для V-образного инструмента"
  7379. #: flatcamGUI/ObjectUI.py:1056
  7380. msgid "V-Tip Angle:"
  7381. msgstr "Угол V-наконечника:"
  7382. #: flatcamGUI/ObjectUI.py:1059
  7383. msgid ""
  7384. "The tip angle for V-Shape Tool.\n"
  7385. "In degree."
  7386. msgstr ""
  7387. "Угол наклона наконечника для V-образного инструмента.\n"
  7388. "В степенях."
  7389. #: flatcamGUI/ObjectUI.py:1080
  7390. msgid "Multi-Depth:"
  7391. msgstr "Мультипроход:"
  7392. #: flatcamGUI/ObjectUI.py:1083
  7393. msgid ""
  7394. "Use multiple passes to limit\n"
  7395. "the cut depth in each pass. Will\n"
  7396. "cut multiple times until Cut Z is\n"
  7397. "reached.\n"
  7398. "To the right, input the depth of \n"
  7399. "each pass (positive value)."
  7400. msgstr ""
  7401. "Используйте несколько проходов, чтобы ограничить\n"
  7402. "глубина реза за каждый проход. Будет\n"
  7403. "вырезаться несколько раз, пока не будет\n"
  7404. "достигнута глубина резания \n"
  7405. "Справа введите глубину \n"
  7406. "за каждый проход (положительное значение)."
  7407. #: flatcamGUI/ObjectUI.py:1096
  7408. msgid "Depth of each pass (positive)."
  7409. msgstr "Глубина каждого прохода (положительный)."
  7410. #: flatcamGUI/ObjectUI.py:1127
  7411. msgid ""
  7412. "Include tool-change sequence\n"
  7413. "in the Machine Code (Pause for tool change)."
  7414. msgstr ""
  7415. #: flatcamGUI/ObjectUI.py:1153
  7416. msgid ""
  7417. "This is the height (Z) at which the CNC\n"
  7418. "will go as the last move."
  7419. msgstr ""
  7420. #: flatcamGUI/ObjectUI.py:1174
  7421. msgid "Feed Rate Z (Plunge):"
  7422. msgstr "Скорость подачи Z (подвод):"
  7423. #: flatcamGUI/ObjectUI.py:1177
  7424. msgid ""
  7425. "Cutting speed in the Z\n"
  7426. "plane in units per minute"
  7427. msgstr ""
  7428. #: flatcamGUI/ObjectUI.py:1186
  7429. msgid "Feed Rate Rapids:"
  7430. msgstr "Скорость подачи:"
  7431. #: flatcamGUI/ObjectUI.py:1189
  7432. msgid ""
  7433. "Cutting speed in the XY\n"
  7434. "plane in units per minute\n"
  7435. "(in units per minute).\n"
  7436. "This is for the rapid move G00.\n"
  7437. "It is useful only for Marlin,\n"
  7438. "ignore for any other cases."
  7439. msgstr ""
  7440. #: flatcamGUI/ObjectUI.py:1205
  7441. msgid "Cut over 1st pt"
  7442. msgstr ""
  7443. #: flatcamGUI/ObjectUI.py:1220
  7444. msgid ""
  7445. "Speed of the spindle in RPM (optional).\n"
  7446. "If LASER postprocessor is used,\n"
  7447. "this value is the power of laser."
  7448. msgstr ""
  7449. "Скорость шпинделя в об/мин (опционально).\n"
  7450. "Если используется лазерный постпроцессор,\n"
  7451. "это значение - мощность лазера."
  7452. #: flatcamGUI/ObjectUI.py:1249
  7453. msgid "PostProcessor:"
  7454. msgstr "Постпроцессор:"
  7455. #: flatcamGUI/ObjectUI.py:1252
  7456. msgid ""
  7457. "The Postprocessor file that dictates\n"
  7458. "the Machine Code (like GCode, RML, HPGL) output."
  7459. msgstr ""
  7460. #: flatcamGUI/ObjectUI.py:1290
  7461. msgid ""
  7462. "Add at least one tool in the tool-table.\n"
  7463. "Click the header to select all, or Ctrl + LMB\n"
  7464. "for custom selection of tools."
  7465. msgstr ""
  7466. #: flatcamGUI/ObjectUI.py:1297
  7467. msgid "Generate"
  7468. msgstr "Создать"
  7469. #: flatcamGUI/ObjectUI.py:1300
  7470. msgid "Generate the CNC Job object."
  7471. msgstr "Будет создан объект программы для ЧПУ."
  7472. #: flatcamGUI/ObjectUI.py:1308
  7473. msgid "<b>Paint Area:</b>"
  7474. msgstr "<b>Область рисования:</b>"
  7475. #: flatcamGUI/ObjectUI.py:1323
  7476. msgid "Launch Paint Tool in Tools Tab."
  7477. msgstr "Запускает инструмент рисования во вкладке Инструменты."
  7478. #: flatcamGUI/ObjectUI.py:1340
  7479. msgid "CNC Job Object"
  7480. msgstr "Объект программы для ЧПУ"
  7481. #: flatcamGUI/ObjectUI.py:1358
  7482. msgid "<b>Plot kind:</b>"
  7483. msgstr ""
  7484. #: flatcamGUI/ObjectUI.py:1374
  7485. msgid "<b>Display Annotation:</b>"
  7486. msgstr "<b>Показывать подписи:</b>"
  7487. #: flatcamGUI/ObjectUI.py:1393
  7488. msgid "<b>Travelled dist.:</b>"
  7489. msgstr "<b>Расст. прохода:</b>"
  7490. #: flatcamGUI/ObjectUI.py:1396 flatcamGUI/ObjectUI.py:1403
  7491. msgid ""
  7492. "This is the total travelled distance on X-Y plane.\n"
  7493. "In current units."
  7494. msgstr ""
  7495. #: flatcamGUI/ObjectUI.py:1434
  7496. msgid "<b>CNC Tools Table</b>"
  7497. msgstr "<b>Таблица инструментов</b>"
  7498. #: flatcamGUI/ObjectUI.py:1437
  7499. msgid ""
  7500. "Tools in this CNCJob object used for cutting.\n"
  7501. "The tool diameter is used for plotting on canvas.\n"
  7502. "The 'Offset' entry will set an offset for the cut.\n"
  7503. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7504. "'Type' entry is only informative and it allow to know the \n"
  7505. "intent of using the current tool. \n"
  7506. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7507. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7508. "ball(B), or V-Shaped(V)."
  7509. msgstr ""
  7510. #: flatcamGUI/ObjectUI.py:1471
  7511. msgid "P"
  7512. msgstr "P"
  7513. #: flatcamGUI/ObjectUI.py:1477
  7514. msgid "Update Plot"
  7515. msgstr "Обновить участок"
  7516. #: flatcamGUI/ObjectUI.py:1479
  7517. msgid "Update the plot."
  7518. msgstr "Обновление участка."
  7519. #: flatcamGUI/ObjectUI.py:1486
  7520. msgid "<b>Export CNC Code:</b>"
  7521. msgstr "<b>Экспорт CNC Code:</b>"
  7522. #: flatcamGUI/ObjectUI.py:1494
  7523. msgid "Prepend to CNC Code:"
  7524. msgstr "Добавить в начало CNC Code:"
  7525. #: flatcamGUI/ObjectUI.py:1497
  7526. msgid ""
  7527. "Type here any G-Code commands you would\n"
  7528. "like to add to the beginning of the generated file."
  7529. msgstr ""
  7530. "Введите здесь любые G-Code команды, которые вы\n"
  7531. "хотели бы добавить в начале генерируемого файла."
  7532. #: flatcamGUI/ObjectUI.py:1507
  7533. msgid "Append to CNC Code:"
  7534. msgstr "Дописать в конец CNC Code:"
  7535. #: flatcamGUI/ObjectUI.py:1531
  7536. msgid ""
  7537. "Type here any G-Code commands you would\n"
  7538. "like to be executed when Toolchange event is encountered.\n"
  7539. "This will constitute a Custom Toolchange GCode,\n"
  7540. "or a Toolchange Macro.\n"
  7541. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7542. "\n"
  7543. "WARNING: it can be used only with a postprocessor file\n"
  7544. "that has 'toolchange_custom' in it's name and this is built\n"
  7545. "having as template the 'Toolchange Custom' posprocessor file."
  7546. msgstr ""
  7547. "Введите здесь любые G-Code команды, которые вам понадобится\n"
  7548. "выполнить при смене инструмента.\n"
  7549. "Это будет представлять собой пользовательский GCode смены инструмента,\n"
  7550. "или макрос смены инструмента.\n"
  7551. "Переменные FlatCAM окружены символом\"%\".\n"
  7552. "\n"
  7553. "Предупреждение: это можно использовать только с файлом постпроцессора\n"
  7554. "и иметь \"toolchange_custom\" в имени, и будет построено\n"
  7555. "используя в качестве шаблона файл постпроцессора \"Tool change Custom\"."
  7556. #: flatcamGUI/ObjectUI.py:1579
  7557. msgid "z_cut = depth where to cut"
  7558. msgstr "z_cut = глубина резания"
  7559. #: flatcamGUI/ObjectUI.py:1580
  7560. msgid "z_move = height where to travel"
  7561. msgstr "z_move = высота перемещения"
  7562. #: flatcamGUI/ObjectUI.py:1599
  7563. msgid "View CNC Code"
  7564. msgstr "Просмотр CNC Code"
  7565. #: flatcamGUI/ObjectUI.py:1602
  7566. msgid ""
  7567. "Opens TAB to view/modify/print G-Code\n"
  7568. "file."
  7569. msgstr "Открывает вкладку для просмотра/изменения/печати файла G-Code."
  7570. #: flatcamGUI/ObjectUI.py:1608
  7571. msgid "Save CNC Code"
  7572. msgstr "Сохранить CNC Code"
  7573. #: flatcamGUI/ObjectUI.py:1611
  7574. msgid ""
  7575. "Opens dialog to save G-Code\n"
  7576. "file."
  7577. msgstr ""
  7578. "Открывает диалоговое окно для сохранения\n"
  7579. "файла G-Code."
  7580. #: flatcamTools/ToolCalculators.py:24
  7581. msgid "Calculators"
  7582. msgstr "Калькуляторы"
  7583. #: flatcamTools/ToolCalculators.py:25
  7584. msgid "V-Shape Tool Calculator"
  7585. msgstr "Калькулятор V-образного инструмента"
  7586. #: flatcamTools/ToolCalculators.py:26
  7587. msgid "Units Calculator"
  7588. msgstr "Калькулятор единиц"
  7589. #: flatcamTools/ToolCalculators.py:27
  7590. msgid "ElectroPlating Calculator"
  7591. msgstr "Калькулятор электронных плат"
  7592. #: flatcamTools/ToolCalculators.py:68
  7593. msgid "Here you enter the value to be converted from INCH to MM"
  7594. msgstr "Здесь вы вводите значение, которое будет конвертировано из ДЮЙМОВ в MM"
  7595. #: flatcamTools/ToolCalculators.py:73
  7596. msgid "Here you enter the value to be converted from MM to INCH"
  7597. msgstr "Здесь вы вводите значение, которое будет конвертировано из MM в ДЮЙМЫ"
  7598. #: flatcamTools/ToolCalculators.py:96
  7599. msgid ""
  7600. "This is the diameter of the tool tip.\n"
  7601. "The manufacturer specifies it."
  7602. msgstr ""
  7603. #: flatcamTools/ToolCalculators.py:99
  7604. msgid "Tip Angle:"
  7605. msgstr "Угол наклона:"
  7606. #: flatcamTools/ToolCalculators.py:103
  7607. msgid ""
  7608. "This is the angle of the tip of the tool.\n"
  7609. "It is specified by manufacturer."
  7610. msgstr ""
  7611. #: flatcamTools/ToolCalculators.py:110
  7612. msgid ""
  7613. "This is the depth to cut into the material.\n"
  7614. "In the CNCJob is the CutZ parameter."
  7615. msgstr ""
  7616. #: flatcamTools/ToolCalculators.py:113
  7617. msgid "Tool Diameter:"
  7618. msgstr "Диаметр инструмента:"
  7619. #: flatcamTools/ToolCalculators.py:117
  7620. msgid ""
  7621. "This is the tool diameter to be entered into\n"
  7622. "FlatCAM Gerber section.\n"
  7623. "In the CNCJob section it is called >Tool dia<."
  7624. msgstr ""
  7625. #: flatcamTools/ToolCalculators.py:128 flatcamTools/ToolCalculators.py:209
  7626. msgid "Calculate"
  7627. msgstr "Рассчитать"
  7628. #: flatcamTools/ToolCalculators.py:131
  7629. msgid ""
  7630. "Calculate either the Cut Z or the effective tool diameter,\n"
  7631. " depending on which is desired and which is known. "
  7632. msgstr ""
  7633. #: flatcamTools/ToolCalculators.py:185
  7634. msgid "Current Value:"
  7635. msgstr "Текущее значение:"
  7636. #: flatcamTools/ToolCalculators.py:189
  7637. msgid ""
  7638. "This is the current intensity value\n"
  7639. "to be set on the Power Supply. In Amps."
  7640. msgstr ""
  7641. #: flatcamTools/ToolCalculators.py:193
  7642. msgid "Time:"
  7643. msgstr "Время:"
  7644. #: flatcamTools/ToolCalculators.py:197
  7645. msgid ""
  7646. "This is the calculated time required for the procedure.\n"
  7647. "In minutes."
  7648. msgstr ""
  7649. #: flatcamTools/ToolCalculators.py:212
  7650. msgid ""
  7651. "Calculate the current intensity value and the procedure time,\n"
  7652. "depending on the parameters above"
  7653. msgstr ""
  7654. #: flatcamTools/ToolCalculators.py:256
  7655. msgid "Calc. Tool"
  7656. msgstr "Калькулятор"
  7657. #: flatcamTools/ToolCutOut.py:18
  7658. msgid "Cutout PCB"
  7659. msgstr "Обрезка платы"
  7660. #: flatcamTools/ToolCutOut.py:54
  7661. msgid "Obj Type:"
  7662. msgstr "Тип объекта:"
  7663. #: flatcamTools/ToolCutOut.py:56
  7664. msgid ""
  7665. "Specify the type of object to be cutout.\n"
  7666. "It can be of type: Gerber or Geometry.\n"
  7667. "What is selected here will dictate the kind\n"
  7668. "of objects that will populate the 'Object' combobox."
  7669. msgstr ""
  7670. #: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolPanelize.py:71
  7671. msgid "Object:"
  7672. msgstr "Объект:"
  7673. #: flatcamTools/ToolCutOut.py:72
  7674. msgid "Object to be cutout. "
  7675. msgstr "Объект, который нужно вырезать. "
  7676. #: flatcamTools/ToolCutOut.py:94
  7677. msgid ""
  7678. "Diameter of the tool used to cutout\n"
  7679. "the PCB shape out of the surrounding material."
  7680. msgstr ""
  7681. #: flatcamTools/ToolCutOut.py:103
  7682. msgid ""
  7683. "Margin over bounds. A positive value here\n"
  7684. "will make the cutout of the PCB further from\n"
  7685. "the actual PCB border"
  7686. msgstr ""
  7687. #: flatcamTools/ToolCutOut.py:113
  7688. msgid ""
  7689. "The size of the bridge gaps in the cutout\n"
  7690. "used to keep the board connected to\n"
  7691. "the surrounding material (the one \n"
  7692. "from which the PCB is cutout)."
  7693. msgstr ""
  7694. #: flatcamTools/ToolCutOut.py:132
  7695. msgid ""
  7696. "Create a convex shape surrounding the entire PCB.\n"
  7697. "Used only if the source object type is Gerber."
  7698. msgstr ""
  7699. #: flatcamTools/ToolCutOut.py:138
  7700. msgid "A. Automatic Bridge Gaps"
  7701. msgstr "А. Автоматическое размещение перемычек"
  7702. #: flatcamTools/ToolCutOut.py:140
  7703. msgid "This section handle creation of automatic bridge gaps."
  7704. msgstr ""
  7705. #: flatcamTools/ToolCutOut.py:151
  7706. msgid ""
  7707. "Number of gaps used for the Automatic cutout.\n"
  7708. "There can be maximum 8 bridges/gaps.\n"
  7709. "The choices are:\n"
  7710. "- lr - left + right\n"
  7711. "- tb - top + bottom\n"
  7712. "- 4 - left + right +top + bottom\n"
  7713. "- 2lr - 2*left + 2*right\n"
  7714. "- 2tb - 2*top + 2*bottom\n"
  7715. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7716. msgstr ""
  7717. #: flatcamTools/ToolCutOut.py:174
  7718. msgid "FreeForm:"
  7719. msgstr "Свободная форма:"
  7720. #: flatcamTools/ToolCutOut.py:176
  7721. msgid ""
  7722. "The cutout shape can be of ny shape.\n"
  7723. "Useful when the PCB has a non-rectangular shape."
  7724. msgstr ""
  7725. #: flatcamTools/ToolCutOut.py:185
  7726. msgid ""
  7727. "Cutout the selected object.\n"
  7728. "The cutout shape can be of any shape.\n"
  7729. "Useful when the PCB has a non-rectangular shape."
  7730. msgstr ""
  7731. #: flatcamTools/ToolCutOut.py:194
  7732. msgid "Rectangular:"
  7733. msgstr "Прямоугольная:"
  7734. #: flatcamTools/ToolCutOut.py:196
  7735. msgid ""
  7736. "The resulting cutout shape is\n"
  7737. "always a rectangle shape and it will be\n"
  7738. "the bounding box of the Object."
  7739. msgstr ""
  7740. #: flatcamTools/ToolCutOut.py:205
  7741. msgid ""
  7742. "Cutout the selected object.\n"
  7743. "The resulting cutout shape is\n"
  7744. "always a rectangle shape and it will be\n"
  7745. "the bounding box of the Object."
  7746. msgstr ""
  7747. #: flatcamTools/ToolCutOut.py:213
  7748. msgid "B. Manual Bridge Gaps"
  7749. msgstr "Б. Ручное размещение перемычек"
  7750. #: flatcamTools/ToolCutOut.py:215
  7751. msgid ""
  7752. "This section handle creation of manual bridge gaps.\n"
  7753. "This is done by mouse clicking on the perimeter of the\n"
  7754. "Geometry object that is used as a cutout object. "
  7755. msgstr ""
  7756. #: flatcamTools/ToolCutOut.py:231
  7757. msgid "Geo Obj:"
  7758. msgstr ""
  7759. #: flatcamTools/ToolCutOut.py:233
  7760. msgid "Geometry object used to create the manual cutout."
  7761. msgstr ""
  7762. #: flatcamTools/ToolCutOut.py:244
  7763. msgid "Manual Geo:"
  7764. msgstr ""
  7765. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  7766. msgid ""
  7767. "If the object to be cutout is a Gerber\n"
  7768. "first create a Geometry that surrounds it,\n"
  7769. "to be used as the cutout, if one doesn't exist yet.\n"
  7770. "Select the source Gerber file in the top object combobox."
  7771. msgstr ""
  7772. #: flatcamTools/ToolCutOut.py:266
  7773. msgid "Manual Add Bridge Gaps:"
  7774. msgstr "Ручное добавление перемычек:"
  7775. #: flatcamTools/ToolCutOut.py:268
  7776. msgid ""
  7777. "Use the left mouse button (LMB) click\n"
  7778. "to create a bridge gap to separate the PCB from\n"
  7779. "the surrounding material."
  7780. msgstr ""
  7781. "Используйте левую кнопку мыши (ЛКМ) \n"
  7782. "чтобы создать перемычку на печатной плате."
  7783. #: flatcamTools/ToolCutOut.py:275
  7784. msgid "Generate Gap"
  7785. msgstr ""
  7786. #: flatcamTools/ToolCutOut.py:277
  7787. msgid ""
  7788. "Use the left mouse button (LMB) click\n"
  7789. "to create a bridge gap to separate the PCB from\n"
  7790. "the surrounding material.\n"
  7791. "The LMB click has to be done on the perimeter of\n"
  7792. "the Geometry object used as a cutout geometry."
  7793. msgstr ""
  7794. "Используйте левую кнопку мыши (ЛКМ)\n"
  7795. "чтобы создать перемычку на печатной плате.\n"
  7796. "Щелчок ЛКМ должен быть сделан по периметру\n"
  7797. "объекта геометрии, используемой в качестве геометрии выреза."
  7798. #: flatcamTools/ToolCutOut.py:358 flatcamTools/ToolCutOut.py:552
  7799. #: flatcamTools/ToolNonCopperClear.py:669 flatcamTools/ToolPaint.py:768
  7800. #: flatcamTools/ToolPanelize.py:353 flatcamTools/ToolPanelize.py:368
  7801. #: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:252
  7802. #: flatcamTools/ToolSub.py:432 flatcamTools/ToolSub.py:445
  7803. #, python-format
  7804. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  7805. msgstr "[ERROR_NOTCL] Не удалось получить объект: %s"
  7806. #: flatcamTools/ToolCutOut.py:362
  7807. msgid ""
  7808. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  7809. "Select one and try again."
  7810. msgstr ""
  7811. "[ERROR_NOTCL] Не выбран объект для обрезки.\n"
  7812. "Выберите один и повторите попытку."
  7813. #: flatcamTools/ToolCutOut.py:377
  7814. msgid ""
  7815. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  7816. "number."
  7817. msgstr ""
  7818. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:585
  7819. #: flatcamTools/ToolCutOut.py:854
  7820. msgid ""
  7821. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7822. msgstr ""
  7823. "[WARNING_NOTCL] Значение отступа отсутствует или оно имеет неправильный "
  7824. "формат. Добавьте его и повторите попытку."
  7825. #: flatcamTools/ToolCutOut.py:403 flatcamTools/ToolCutOut.py:596
  7826. #: flatcamTools/ToolCutOut.py:742
  7827. msgid ""
  7828. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7829. msgstr ""
  7830. #: flatcamTools/ToolCutOut.py:410 flatcamTools/ToolCutOut.py:603
  7831. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7832. msgstr ""
  7833. "[WARNING_NOTCL] Значение количества перемычек отсутствует. Добавьте его и "
  7834. "повторите попытку.."
  7835. #: flatcamTools/ToolCutOut.py:414 flatcamTools/ToolCutOut.py:607
  7836. msgid ""
  7837. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  7838. "or 8. Fill in a correct value and retry. "
  7839. msgstr ""
  7840. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:612
  7841. msgid ""
  7842. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7843. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7844. "Geometry,\n"
  7845. "and after that perform Cutout."
  7846. msgstr ""
  7847. "[ERROR]Операция обрезки не может быть выполнена из-за multi-geo Geometry.\n"
  7848. "Как вариант, эта multi-geo Geometry может быть преобразована в Single-geo "
  7849. "Geometry,\n"
  7850. "а после этого выполнена обрезка."
  7851. #: flatcamTools/ToolCutOut.py:535 flatcamTools/ToolCutOut.py:712
  7852. msgid "[success] Any form CutOut operation finished."
  7853. msgstr "[success] Операция обрезки закончена."
  7854. #: flatcamTools/ToolCutOut.py:556 flatcamTools/ToolPaint.py:772
  7855. #: flatcamTools/ToolPanelize.py:359
  7856. #, python-format
  7857. msgid "[ERROR_NOTCL] Object not found: %s"
  7858. msgstr "[ERROR_NOTCL] Объект не найден: %s"
  7859. #: flatcamTools/ToolCutOut.py:570 flatcamTools/ToolCutOut.py:732
  7860. #: flatcamTools/ToolCutOut.py:839
  7861. msgid ""
  7862. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  7863. "number."
  7864. msgstr ""
  7865. "[ERROR_NOTCL] Диаметр инструмента имеет нулевое значение. Измените его на "
  7866. "положительное целое число."
  7867. #: flatcamTools/ToolCutOut.py:717
  7868. msgid ""
  7869. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7870. msgstr ""
  7871. #: flatcamTools/ToolCutOut.py:758
  7872. msgid "Making manual bridge gap..."
  7873. msgstr "Создание перемычки вручную..."
  7874. #: flatcamTools/ToolCutOut.py:782
  7875. #, python-format
  7876. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  7877. msgstr "[ERROR_NOTCL] Не удалось получить объект Geometry: %s"
  7878. #: flatcamTools/ToolCutOut.py:786
  7879. #, python-format
  7880. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  7881. msgstr "[ERROR_NOTCL] Объект геометрии для ручного выреза не найден: %s"
  7882. #: flatcamTools/ToolCutOut.py:796
  7883. msgid "[success] Added manual Bridge Gap."
  7884. msgstr "[success] Премычка добавлена вручная."
  7885. #: flatcamTools/ToolCutOut.py:814
  7886. #, python-format
  7887. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  7888. msgstr "[ERROR_NOTCL] Не удалось получить объект Gerber: %s"
  7889. #: flatcamTools/ToolCutOut.py:818
  7890. msgid ""
  7891. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  7892. "Select one and try again."
  7893. msgstr ""
  7894. "[ERROR_NOTCL] Для обрезки не выбран объект Gerber.\n"
  7895. "Выберите один и повторите попытку."
  7896. #: flatcamTools/ToolCutOut.py:823
  7897. msgid ""
  7898. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  7899. "Select a Gerber file and try again."
  7900. msgstr ""
  7901. "[ERROR_NOTCL] Выбранный объект должен быть типа Gerber.\n"
  7902. "Выберите файл Gerber и повторите попытку."
  7903. #: flatcamTools/ToolDblSided.py:18
  7904. msgid "2-Sided PCB"
  7905. msgstr "2-х сторонняя плата"
  7906. #: flatcamTools/ToolDblSided.py:47
  7907. msgid "<b>GERBER:</b>"
  7908. msgstr "<b>GERBER:</b>"
  7909. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7910. #: flatcamTools/ToolDblSided.py:100
  7911. msgid "Mirror"
  7912. msgstr "Зеркалировать"
  7913. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7914. #: flatcamTools/ToolDblSided.py:102
  7915. msgid ""
  7916. "Mirrors (flips) the specified object around \n"
  7917. "the specified axis. Does not create a new \n"
  7918. "object, but modifies it."
  7919. msgstr ""
  7920. "Зеркалирует (переворачивает) указанный объект\n"
  7921. "вокруг заданной оси. Не создаёт новый объект,\n"
  7922. "но изменяет его."
  7923. #: flatcamTools/ToolDblSided.py:71
  7924. msgid "<b>EXCELLON:</b>"
  7925. msgstr "<b>EXCELLON:</b>"
  7926. #: flatcamTools/ToolDblSided.py:73
  7927. msgid "Excellon Object to be mirrored."
  7928. msgstr "Объект Excellon для отражения."
  7929. #: flatcamTools/ToolDblSided.py:95
  7930. msgid "<b>GEOMETRY</b>:"
  7931. msgstr "<b>ГЕОМЕТРИЯ</b>:"
  7932. #: flatcamTools/ToolDblSided.py:97
  7933. msgid "Geometry Obj to be mirrored."
  7934. msgstr "Объект Geometry для зеркалирования."
  7935. #: flatcamTools/ToolDblSided.py:135
  7936. msgid ""
  7937. "The axis should pass through a <b>point</b> or cut\n"
  7938. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7939. "the center."
  7940. msgstr ""
  7941. #: flatcamTools/ToolDblSided.py:152
  7942. msgid "Point/Box Reference:"
  7943. msgstr ""
  7944. #: flatcamTools/ToolDblSided.py:154
  7945. msgid ""
  7946. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7947. "the mirroring axis passes.\n"
  7948. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7949. "Geo).\n"
  7950. "Through the center of this object pass the mirroring axis selected above."
  7951. msgstr ""
  7952. #: flatcamTools/ToolDblSided.py:162
  7953. msgid ""
  7954. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7955. "axis \n"
  7956. " selected in 'MIRROR AXIS' pass.\n"
  7957. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7958. "and left mouse button click on canvas or you can enter the coords manually."
  7959. msgstr ""
  7960. #: flatcamTools/ToolDblSided.py:182
  7961. msgid "Gerber Reference Box Object"
  7962. msgstr ""
  7963. #: flatcamTools/ToolDblSided.py:183
  7964. msgid "Excellon Reference Box Object"
  7965. msgstr ""
  7966. #: flatcamTools/ToolDblSided.py:184
  7967. msgid "Geometry Reference Box Object"
  7968. msgstr ""
  7969. #: flatcamTools/ToolDblSided.py:192
  7970. msgid "Alignment Drill Coordinates:"
  7971. msgstr "Координаты выравнивающего отверстия:"
  7972. #: flatcamTools/ToolDblSided.py:194
  7973. msgid ""
  7974. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7975. "each set of (x, y) coordinates\n"
  7976. "entered here, a pair of drills will be created:\n"
  7977. "\n"
  7978. "- one drill at the coordinates from the field\n"
  7979. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7980. "Axis'."
  7981. msgstr ""
  7982. #: flatcamTools/ToolDblSided.py:209
  7983. msgid ""
  7984. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7985. "on one side of the mirror axis.\n"
  7986. "\n"
  7987. "The coordinates set can be obtained:\n"
  7988. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7989. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7990. "field.\n"
  7991. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7992. "field and click Paste.\n"
  7993. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7994. msgstr ""
  7995. #: flatcamTools/ToolDblSided.py:223
  7996. msgid "Alignment Drill Diameter"
  7997. msgstr "Диаметр выравнивающего отверстия"
  7998. #: flatcamTools/ToolDblSided.py:246
  7999. msgid "Create Excellon Object"
  8000. msgstr "Создать объект Excellon"
  8001. #: flatcamTools/ToolDblSided.py:248
  8002. msgid ""
  8003. "Creates an Excellon Object containing the\n"
  8004. "specified alignment holes and their mirror\n"
  8005. "images."
  8006. msgstr ""
  8007. "Создаёт объект Excellon, содержащий\n"
  8008. "контрольные отверстия и их\n"
  8009. "зеркальные изображения."
  8010. #: flatcamTools/ToolDblSided.py:254
  8011. msgid "Reset"
  8012. msgstr "Сбросить"
  8013. #: flatcamTools/ToolDblSided.py:256
  8014. msgid "Resets all the fields."
  8015. msgstr "Сбрасывает все поля."
  8016. #: flatcamTools/ToolDblSided.py:301
  8017. msgid "2-Sided Tool"
  8018. msgstr "Инструмент 2-х сторонних плат"
  8019. #: flatcamTools/ToolDblSided.py:326
  8020. msgid ""
  8021. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  8022. "missing. Add them and retry."
  8023. msgstr ""
  8024. #: flatcamTools/ToolDblSided.py:345
  8025. msgid ""
  8026. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  8027. msgstr ""
  8028. #: flatcamTools/ToolDblSided.py:367
  8029. msgid ""
  8030. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  8031. "retry."
  8032. msgstr ""
  8033. "[WARNING_NOTCL] Нет значения либо неправильный формат значения диаметра "
  8034. "сверла. Добавьте его и повторите попытку."
  8035. #: flatcamTools/ToolDblSided.py:374
  8036. msgid ""
  8037. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  8038. "and retry."
  8039. msgstr ""
  8040. #: flatcamTools/ToolDblSided.py:397
  8041. msgid "[success] Excellon object with alignment drills created..."
  8042. msgstr "[success] Объект Excellon с выравнивающими отверстиями создан..."
  8043. #: flatcamTools/ToolDblSided.py:406
  8044. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  8045. msgstr ""
  8046. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  8047. #: flatcamTools/ToolDblSided.py:497
  8048. msgid ""
  8049. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  8050. msgstr ""
  8051. "[ERROR_NOTCL] Зеркальное отображение доступно только для объектов Gerber, "
  8052. "Excellon и Geometry."
  8053. #: flatcamTools/ToolDblSided.py:420
  8054. msgid ""
  8055. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  8056. "mirroring reference."
  8057. msgstr ""
  8058. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  8059. #: flatcamTools/ToolDblSided.py:511
  8060. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  8061. msgstr ""
  8062. #: flatcamTools/ToolDblSided.py:440
  8063. #, python-format
  8064. msgid "[success] Gerber %s was mirrored..."
  8065. msgstr "[success] Gerber %s отзеркалирован..."
  8066. #: flatcamTools/ToolDblSided.py:449
  8067. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  8068. msgstr ""
  8069. #: flatcamTools/ToolDblSided.py:464
  8070. msgid ""
  8071. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  8072. "coords and try again ..."
  8073. msgstr ""
  8074. #: flatcamTools/ToolDblSided.py:484
  8075. #, python-format
  8076. msgid "[success] Excellon %s was mirrored..."
  8077. msgstr "[success] Excellon %s отзеркалирован..."
  8078. #: flatcamTools/ToolDblSided.py:493
  8079. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  8080. msgstr ""
  8081. #: flatcamTools/ToolDblSided.py:521
  8082. #, python-format
  8083. msgid "[success] Geometry %s was mirrored..."
  8084. msgstr "[success] Geometry %s отзеркалирован..."
  8085. #: flatcamTools/ToolFilm.py:25
  8086. msgid "Film PCB"
  8087. msgstr "Плёнка"
  8088. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  8089. #: flatcamTools/ToolPanelize.py:56
  8090. msgid "Object Type:"
  8091. msgstr "Тип объекта:"
  8092. #: flatcamTools/ToolFilm.py:58
  8093. msgid ""
  8094. "Specify the type of object for which to create the film.\n"
  8095. "The object can be of type: Gerber or Geometry.\n"
  8096. "The selection here decide the type of objects that will be\n"
  8097. "in the Film Object combobox."
  8098. msgstr ""
  8099. #: flatcamTools/ToolFilm.py:71
  8100. msgid "Film Object:"
  8101. msgstr "Объект плёнки:"
  8102. #: flatcamTools/ToolFilm.py:73
  8103. msgid "Object for which to create the film."
  8104. msgstr "Объект для создания плёнки."
  8105. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  8106. msgid "Box Type:"
  8107. msgstr "Тип рамки:"
  8108. #: flatcamTools/ToolFilm.py:91
  8109. msgid ""
  8110. "Specify the type of object to be used as an container for\n"
  8111. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  8112. "the type of objects that will be\n"
  8113. "in the Box Object combobox."
  8114. msgstr ""
  8115. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  8116. msgid "Box Object:"
  8117. msgstr "Объект рамки:"
  8118. #: flatcamTools/ToolFilm.py:106
  8119. msgid ""
  8120. "The actual object that is used a container for the\n"
  8121. " selected object for which we create the film.\n"
  8122. "Usually it is the PCB outline but it can be also the\n"
  8123. "same object for which the film is created."
  8124. msgstr ""
  8125. #: flatcamTools/ToolFilm.py:114
  8126. msgid "Positive"
  8127. msgstr ""
  8128. #: flatcamTools/ToolFilm.py:115
  8129. msgid "Negative"
  8130. msgstr ""
  8131. #: flatcamTools/ToolFilm.py:157
  8132. msgid "Save Film"
  8133. msgstr "Сохранить плёнку"
  8134. #: flatcamTools/ToolFilm.py:159
  8135. msgid ""
  8136. "Create a Film for the selected object, within\n"
  8137. "the specified box. Does not create a new \n"
  8138. " FlatCAM object, but directly save it in SVG format\n"
  8139. "which can be opened with Inkscape."
  8140. msgstr ""
  8141. #: flatcamTools/ToolFilm.py:225
  8142. msgid ""
  8143. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  8144. msgstr ""
  8145. "[ERROR_NOTCL] Объект FlatCAM не выбран. Загрузите объект для Плёнки и "
  8146. "повторите попытку."
  8147. #: flatcamTools/ToolFilm.py:231
  8148. msgid ""
  8149. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  8150. msgstr ""
  8151. "[ERROR_NOTCL] Объект FlatCAM не выбран. Загрузите объект для Рамки и "
  8152. "повторите попытку."
  8153. #: flatcamTools/ToolFilm.py:255
  8154. msgid "Generating Film ..."
  8155. msgstr "Создание плёнки ..."
  8156. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  8157. msgid "Export SVG positive"
  8158. msgstr "Экспорт позитива SVG"
  8159. #: flatcamTools/ToolFilm.py:269
  8160. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  8161. msgstr ""
  8162. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  8163. msgid "Export SVG negative"
  8164. msgstr "Экспорт негатива SVG"
  8165. #: flatcamTools/ToolFilm.py:285
  8166. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  8167. msgstr ""
  8168. #: flatcamTools/ToolImage.py:25
  8169. msgid "Image as Object"
  8170. msgstr "Изображение как Object"
  8171. #: flatcamTools/ToolImage.py:31
  8172. msgid "Image to PCB"
  8173. msgstr "Изображение в PCB"
  8174. #: flatcamTools/ToolImage.py:55
  8175. msgid ""
  8176. "Specify the type of object to create from the image.\n"
  8177. "It can be of type: Gerber or Geometry."
  8178. msgstr ""
  8179. "Укажите тип объекта для создания из изображения.\n"
  8180. "Он может быть типа: Gerber или Geometry."
  8181. #: flatcamTools/ToolImage.py:63
  8182. msgid "DPI value:"
  8183. msgstr "Значение DPI:"
  8184. #: flatcamTools/ToolImage.py:65
  8185. msgid "Specify a DPI value for the image."
  8186. msgstr "Укажите значение DPI для изображения."
  8187. #: flatcamTools/ToolImage.py:72
  8188. msgid "Level of detail"
  8189. msgstr "Уровень детализации"
  8190. #: flatcamTools/ToolImage.py:81
  8191. msgid "Image type"
  8192. msgstr "Тип изображения"
  8193. #: flatcamTools/ToolImage.py:83
  8194. msgid ""
  8195. "Choose a method for the image interpretation.\n"
  8196. "B/W means a black & white image. Color means a colored image."
  8197. msgstr ""
  8198. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  8199. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  8200. msgid "Mask value"
  8201. msgstr "Значение маски"
  8202. #: flatcamTools/ToolImage.py:92
  8203. msgid ""
  8204. "Mask for monochrome image.\n"
  8205. "Takes values between [0 ... 255].\n"
  8206. "Decides the level of details to include\n"
  8207. "in the resulting geometry.\n"
  8208. "0 means no detail and 255 means everything \n"
  8209. "(which is totally black)."
  8210. msgstr ""
  8211. #: flatcamTools/ToolImage.py:105
  8212. msgid ""
  8213. "Mask for RED color.\n"
  8214. "Takes values between [0 ... 255].\n"
  8215. "Decides the level of details to include\n"
  8216. "in the resulting geometry."
  8217. msgstr ""
  8218. #: flatcamTools/ToolImage.py:116
  8219. msgid ""
  8220. "Mask for GREEN color.\n"
  8221. "Takes values between [0 ... 255].\n"
  8222. "Decides the level of details to include\n"
  8223. "in the resulting geometry."
  8224. msgstr ""
  8225. #: flatcamTools/ToolImage.py:127
  8226. msgid ""
  8227. "Mask for BLUE color.\n"
  8228. "Takes values between [0 ... 255].\n"
  8229. "Decides the level of details to include\n"
  8230. "in the resulting geometry."
  8231. msgstr ""
  8232. #: flatcamTools/ToolImage.py:139
  8233. msgid "Import image"
  8234. msgstr "Импортировать изображение"
  8235. #: flatcamTools/ToolImage.py:141
  8236. msgid "Open a image of raster type and then import it in FlatCAM."
  8237. msgstr ""
  8238. "Откройте изображение растрового типа, а затем импортируйте его в FlatCAM."
  8239. #: flatcamTools/ToolImage.py:170
  8240. msgid "Image Tool"
  8241. msgstr "Изображение"
  8242. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  8243. msgid "Import IMAGE"
  8244. msgstr "Импорт изображения"
  8245. #: flatcamTools/ToolMeasurement.py:26
  8246. msgid "Measurement"
  8247. msgstr "Измеритель"
  8248. #: flatcamTools/ToolMeasurement.py:43
  8249. msgid "Units:"
  8250. msgstr "Единицы:"
  8251. #: flatcamTools/ToolMeasurement.py:44
  8252. msgid "Those are the units in which the distance is measured."
  8253. msgstr "Это единицы измерения расстояния."
  8254. #: flatcamTools/ToolMeasurement.py:45
  8255. msgid "METRIC (mm)"
  8256. msgstr "Метрическая (мм)"
  8257. #: flatcamTools/ToolMeasurement.py:45
  8258. msgid "INCH (in)"
  8259. msgstr "Дюйм (внутри)"
  8260. #: flatcamTools/ToolMeasurement.py:48
  8261. msgid "Start"
  8262. msgstr "Начать"
  8263. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  8264. msgid "Coords"
  8265. msgstr "Координаты"
  8266. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  8267. msgid "This is measuring Start point coordinates."
  8268. msgstr ""
  8269. #: flatcamTools/ToolMeasurement.py:51
  8270. msgid "Stop"
  8271. msgstr "Остановка"
  8272. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  8273. msgid "This is the measuring Stop point coordinates."
  8274. msgstr ""
  8275. #: flatcamTools/ToolMeasurement.py:54
  8276. msgid "Dx:"
  8277. msgstr "Дистанция по X:"
  8278. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  8279. msgid "This is the distance measured over the X axis."
  8280. msgstr ""
  8281. #: flatcamTools/ToolMeasurement.py:57
  8282. msgid "Dy:"
  8283. msgstr "Дистанция по Y:"
  8284. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  8285. msgid "This is the distance measured over the Y axis."
  8286. msgstr ""
  8287. #: flatcamTools/ToolMeasurement.py:60
  8288. msgid "DISTANCE"
  8289. msgstr "РАССТОЯНИЕ"
  8290. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  8291. msgid "This is the point to point Euclidian distance."
  8292. msgstr ""
  8293. #: flatcamTools/ToolMeasurement.py:83
  8294. msgid "Measure"
  8295. msgstr "Измерить"
  8296. #: flatcamTools/ToolMeasurement.py:131
  8297. msgid "Meas. Tool"
  8298. msgstr "Измеритель"
  8299. #: flatcamTools/ToolMeasurement.py:176
  8300. msgid "MEASURING: Click on the Start point ..."
  8301. msgstr "ИЗМЕРИТЕЛЬ: Нажмите на начальную точку ..."
  8302. #: flatcamTools/ToolMeasurement.py:269
  8303. msgid "MEASURING: Click on the Destination point ..."
  8304. msgstr "ИЗМЕРИТЕЛЬ: Нажмите на конечную точку ..."
  8305. #: flatcamTools/ToolMeasurement.py:277
  8306. #, python-brace-format
  8307. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8308. msgstr ""
  8309. "ИЗМЕРИТЕЛЬ: Результат расстояние(x) = {d_x} | расстояние(y) = {d_y} | "
  8310. "Расстояние = {d_z}"
  8311. #: flatcamTools/ToolMove.py:81
  8312. msgid "MOVE: Click on the Start point ..."
  8313. msgstr "ПЕРЕМЕЩЕНИЕ: Нажмите на исходную точку ..."
  8314. #: flatcamTools/ToolMove.py:88
  8315. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  8316. msgstr ""
  8317. "[WARNING_NOTCL] Действие перемещения отменено. Нет объекта(ов) для "
  8318. "перемещения."
  8319. #: flatcamTools/ToolMove.py:110
  8320. msgid "MOVE: Click on the Destination point ..."
  8321. msgstr "ПЕРЕМЕЩЕНИЕ: Нажмите на конечную точку ..."
  8322. #: flatcamTools/ToolMove.py:128
  8323. msgid "Moving ..."
  8324. msgstr "Перемещение ..."
  8325. #: flatcamTools/ToolMove.py:135
  8326. msgid "[WARNING_NOTCL] No object(s) selected."
  8327. msgstr "[WARNING_NOTCL] Нет выбранных объектов."
  8328. #: flatcamTools/ToolMove.py:158
  8329. #, python-format
  8330. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8331. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8332. #: flatcamTools/ToolMove.py:164
  8333. #, python-format
  8334. msgid "[success] %s object was moved ..."
  8335. msgstr "[success] %s объект был перемещен ..."
  8336. #: flatcamTools/ToolMove.py:174
  8337. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  8338. msgstr ""
  8339. "[ERROR_NOTCL] ToolMove.on_left_click() --> Ошибка при щелчке левой кнопкой "
  8340. "мыши."
  8341. #: flatcamTools/ToolMove.py:202
  8342. msgid "[WARNING_NOTCL] Move action cancelled."
  8343. msgstr ""
  8344. #: flatcamTools/ToolMove.py:214
  8345. msgid "[WARNING_NOTCL] Object(s) not selected"
  8346. msgstr "[WARNING_NOTCL] Объекты не выбраны"
  8347. #: flatcamTools/ToolNonCopperClear.py:26
  8348. msgid "Non-Copper Clearing"
  8349. msgstr "Очиста от меди"
  8350. #: flatcamTools/ToolNonCopperClear.py:64
  8351. msgid "Gerber object to be cleared of excess copper. "
  8352. msgstr ""
  8353. "Gerber объект будет очищен от излишнего медного слоя. "
  8354. #: flatcamTools/ToolNonCopperClear.py:74
  8355. msgid ""
  8356. "Tools pool from which the algorithm\n"
  8357. "will pick the ones used for copper clearing."
  8358. msgstr ""
  8359. "Пул инструментов, из которого алгоритм\n"
  8360. "выберет те, которые будут использоваться для очистки меди."
  8361. #: flatcamTools/ToolNonCopperClear.py:89
  8362. msgid ""
  8363. "This is the Tool Number.\n"
  8364. "Non copper clearing will start with the tool with the biggest \n"
  8365. "diameter, continuing until there are no more tools.\n"
  8366. "Only tools that create NCC clearing geometry will still be present\n"
  8367. "in the resulting geometry. This is because with some tools\n"
  8368. "this function will not be able to create painting geometry."
  8369. msgstr ""
  8370. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  8371. msgid ""
  8372. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8373. "informative only. Being circular, <BR>the cut width in material is exactly "
  8374. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8375. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8376. "parameter in the resulting geometry UI form and enable two additional UI "
  8377. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8378. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8379. "material will be equal with the value in the Tool Diameter column of this "
  8380. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8381. "the Operation Type in the resulting geometry as Isolation."
  8382. msgstr ""
  8383. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  8384. msgid "Tool Dia"
  8385. msgstr "Диаметр инструмента"
  8386. #: flatcamTools/ToolNonCopperClear.py:122
  8387. msgid "Diameter for the new tool to add in the Tool Table"
  8388. msgstr ""
  8389. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  8390. #: flatcamTools/ToolSolderPaste.py:123
  8391. msgid ""
  8392. "Delete a selection of tools in the Tool Table\n"
  8393. "by first selecting a row(s) in the Tool Table."
  8394. msgstr ""
  8395. #: flatcamTools/ToolNonCopperClear.py:226
  8396. msgid ""
  8397. "If checked, use 'rest machining'.\n"
  8398. "Basically it will clear copper outside PCB features,\n"
  8399. "using the biggest tool and continue with the next tools,\n"
  8400. "from bigger to smaller, to clear areas of copper that\n"
  8401. "could not be cleared by previous tool, until there is\n"
  8402. "no more copper to clear or there are no more tools.\n"
  8403. "If not checked, use the standard algorithm."
  8404. msgstr ""
  8405. #: flatcamTools/ToolNonCopperClear.py:238
  8406. msgid "Generate Geometry"
  8407. msgstr "Создать объект"
  8408. #: flatcamTools/ToolNonCopperClear.py:486 flatcamTools/ToolPaint.py:543
  8409. #: flatcamTools/ToolSolderPaste.py:763
  8410. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8411. msgstr ""
  8412. #: flatcamTools/ToolNonCopperClear.py:515 flatcamTools/ToolPaint.py:567
  8413. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  8414. msgstr ""
  8415. #: flatcamTools/ToolNonCopperClear.py:520 flatcamTools/ToolPaint.py:572
  8416. msgid "[success] New tool added to Tool Table."
  8417. msgstr "[success] Новый инструмент добавлен в таблицу инструментов."
  8418. #: flatcamTools/ToolNonCopperClear.py:562 flatcamTools/ToolPaint.py:617
  8419. msgid "[success] Tool from Tool Table was edited."
  8420. msgstr "[success] Инструмент был изменён в таблице инструментов."
  8421. #: flatcamTools/ToolNonCopperClear.py:573 flatcamTools/ToolPaint.py:628
  8422. #: flatcamTools/ToolSolderPaste.py:850
  8423. msgid ""
  8424. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  8425. "Table."
  8426. msgstr ""
  8427. "[WARNING_NOTCL] Правка отменена. Новое значение диаметра уже находится в "
  8428. "таблице инструментов."
  8429. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:727
  8430. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  8431. msgstr "[WARNING_NOTCL] Ошибка удаления. Выберите инструмент для удаления."
  8432. #: flatcamTools/ToolNonCopperClear.py:618 flatcamTools/ToolPaint.py:732
  8433. msgid "[success] Tool(s) deleted from Tool Table."
  8434. msgstr "[success] Инструмент удалён из таблицы инструментов."
  8435. #: flatcamTools/ToolNonCopperClear.py:636 flatcamTools/ToolPaint.py:751
  8436. msgid ""
  8437. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  8438. msgstr ""
  8439. "[ERROR_NOTCL] Значение перекрытия должно быть от 0 (включитение) до 1 "
  8440. "(исключение), "
  8441. #: flatcamTools/ToolNonCopperClear.py:677
  8442. msgid "[ERROR_NOTCL] No Gerber file available."
  8443. msgstr "[ERROR_NOTCL] Нет доступных Gerber-файлов ."
  8444. #: flatcamTools/ToolNonCopperClear.py:715
  8445. #: flatcamTools/ToolNonCopperClear.py:837
  8446. msgid "Clearing Non-Copper areas."
  8447. msgstr "Очистка областей от меди."
  8448. #: flatcamTools/ToolNonCopperClear.py:733
  8449. #, python-format
  8450. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  8451. msgstr ""
  8452. "[success] Началась очистка от меди с помощью инструмента диаметром = %s."
  8453. #: flatcamTools/ToolNonCopperClear.py:802
  8454. #, python-format
  8455. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8456. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8457. #: flatcamTools/ToolNonCopperClear.py:807
  8458. msgid "[success] NCC Tool finished."
  8459. msgstr "[success] NCC Tool завершён."
  8460. #: flatcamTools/ToolNonCopperClear.py:809
  8461. msgid ""
  8462. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  8463. "cleared. Check the result."
  8464. msgstr ""
  8465. "[WARNING_NOTCL] Инструмент NCC закончен, но некоторые функции печатной платы "
  8466. "не могут быть очищены. Проверить результаты."
  8467. #: flatcamTools/ToolNonCopperClear.py:855
  8468. #, python-format
  8469. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8470. msgstr ""
  8471. "[success] Началась очистка от остатков меди с помощью инструмента диаметром "
  8472. "= %s."
  8473. #: flatcamTools/ToolNonCopperClear.py:953
  8474. #, python-format
  8475. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8476. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8477. #: flatcamTools/ToolNonCopperClear.py:961
  8478. msgid ""
  8479. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  8480. "settings."
  8481. msgstr ""
  8482. "[ERROR_NOTCL] NCC Tool завершён, но не смог очистить объект с текущими "
  8483. "настройками."
  8484. #: flatcamTools/ToolPDF.py:38
  8485. msgid "PDF Import Tool"
  8486. msgstr "Импорт PDF"
  8487. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  8488. msgid "Open PDF"
  8489. msgstr "Открыть PDF"
  8490. #: flatcamTools/ToolPDF.py:159
  8491. msgid "[WARNING_NOTCL] Open PDF cancelled."
  8492. msgstr "[WARNING_NOTCL] Открытие PDF отменено."
  8493. #: flatcamTools/ToolPDF.py:186
  8494. msgid "Parsing PDF file ..."
  8495. msgstr "Разбор PDF-файла ..."
  8496. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  8497. #, python-format
  8498. msgid "Rendering PDF layer #%d ..."
  8499. msgstr "Отрисовка слоя PDF #%d ..."
  8500. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  8501. msgid "[ERROR_NOTCL] Open PDF file failed."
  8502. msgstr "[ERROR_NOTCL] Не удалось открыть PDF-файл."
  8503. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  8504. #, python-format
  8505. msgid "[success] Rendered: %s"
  8506. msgstr "[success] Отрисовка: %s"
  8507. #: flatcamTools/ToolPaint.py:24
  8508. msgid "Paint Area"
  8509. msgstr "Область рисования"
  8510. #: flatcamTools/ToolPaint.py:60
  8511. msgid "Geometry:"
  8512. msgstr "Geometry:"
  8513. #: flatcamTools/ToolPaint.py:62
  8514. msgid "Geometry object to be painted. "
  8515. msgstr "Объект Geometry для рисования. "
  8516. #: flatcamTools/ToolPaint.py:71
  8517. msgid ""
  8518. "Tools pool from which the algorithm\n"
  8519. "will pick the ones used for painting."
  8520. msgstr ""
  8521. "Пул инструментов, из которого алгоритм\n"
  8522. "выберет те, которые будут использоваться для окрашивания."
  8523. #: flatcamTools/ToolPaint.py:86
  8524. msgid ""
  8525. "This is the Tool Number.\n"
  8526. "Painting will start with the tool with the biggest diameter,\n"
  8527. "continuing until there are no more tools.\n"
  8528. "Only tools that create painting geometry will still be present\n"
  8529. "in the resulting geometry. This is because with some tools\n"
  8530. "this function will not be able to create painting geometry."
  8531. msgstr ""
  8532. #: flatcamTools/ToolPaint.py:119
  8533. msgid "Diameter for the new tool."
  8534. msgstr "Диаметр нового инструмента."
  8535. #: flatcamTools/ToolPaint.py:224
  8536. msgid ""
  8537. "If checked, use 'rest machining'.\n"
  8538. "Basically it will clear copper outside PCB features,\n"
  8539. "using the biggest tool and continue with the next tools,\n"
  8540. "from bigger to smaller, to clear areas of copper that\n"
  8541. "could not be cleared by previous tool, until there is\n"
  8542. "no more copper to clear or there are no more tools.\n"
  8543. "\n"
  8544. "If not checked, use the standard algorithm."
  8545. msgstr ""
  8546. #: flatcamTools/ToolPaint.py:239
  8547. msgid ""
  8548. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  8549. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  8550. "polygons."
  8551. msgstr ""
  8552. #: flatcamTools/ToolPaint.py:254
  8553. msgid "Create Paint Geometry"
  8554. msgstr "Создать Paint Geometry"
  8555. #: flatcamTools/ToolPaint.py:256
  8556. msgid ""
  8557. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  8558. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  8559. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  8560. "created."
  8561. msgstr ""
  8562. #: flatcamTools/ToolPaint.py:736
  8563. msgid "geometry_on_paint_button"
  8564. msgstr ""
  8565. #: flatcamTools/ToolPaint.py:755 flatcamTools/ToolPaint.py:791
  8566. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  8567. msgstr ""
  8568. #: flatcamTools/ToolPaint.py:778
  8569. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8570. msgstr "[ERROR_NOTCL] Невозможно окрашивание multi-geo Geometries ..."
  8571. #: flatcamTools/ToolPaint.py:800 flatcamTools/ToolPaint.py:1004
  8572. msgid "Painting polygon..."
  8573. msgstr "Отрисовка полигона..."
  8574. #: flatcamTools/ToolPaint.py:853
  8575. msgid "[WARNING] No polygon found."
  8576. msgstr "[WARNING] Полигон не найден."
  8577. #: flatcamTools/ToolPaint.py:856
  8578. msgid "Painting polygon."
  8579. msgstr "Отрисовка безмедного полигона."
  8580. #: flatcamTools/ToolPaint.py:898
  8581. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  8582. msgstr "[ERROR_NOTCL] Геометрия не может быть окрашена полностью"
  8583. #: flatcamTools/ToolPaint.py:924
  8584. #, python-format
  8585. msgid ""
  8586. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  8587. "different strategy of paint\n"
  8588. "%s"
  8589. msgstr ""
  8590. "[ERROR] Окраска не выполнена. Попробуйте другую комбинацию параметров. Или "
  8591. "другой способ рисования\n"
  8592. "%s"
  8593. #: flatcamTools/ToolPaint.py:966
  8594. #, python-format
  8595. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8596. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8597. #: flatcamTools/ToolPaint.py:972 flatcamTools/ToolPaint.py:1271
  8598. msgid "Polygon Paint started ..."
  8599. msgstr "Запущена отрисовка полигона ..."
  8600. #: flatcamTools/ToolPaint.py:1125 flatcamTools/ToolPaint.py:1216
  8601. #, python-format
  8602. msgid ""
  8603. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  8604. "Or a different Method of paint\n"
  8605. "%s"
  8606. msgstr ""
  8607. "[ERROR] Окраска не выполнена. Попробуйте другую комбинацию параметров. Или "
  8608. "другой способ рисования\n"
  8609. "%s"
  8610. #: flatcamTools/ToolPaint.py:1149
  8611. msgid ""
  8612. "[ERROR] There is no Painting Geometry in the file.\n"
  8613. "Usually it means that the tool diameter is too big for the painted "
  8614. "geometry.\n"
  8615. "Change the painting parameters and try again."
  8616. msgstr ""
  8617. "[ERROR] В файле нет Painting Geometry.\n"
  8618. "Обычно это означает, что диаметр инструмента слишком велик для Painting "
  8619. "Geometry .\n"
  8620. "Измените параметры рисования и повторите попытку."
  8621. #: flatcamTools/ToolPaint.py:1158
  8622. msgid "[success] Paint All Done."
  8623. msgstr "[success] Paint All выполнено."
  8624. #: flatcamTools/ToolPaint.py:1246
  8625. msgid ""
  8626. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8627. "Usually it means that the tool diameter is too big for the painted "
  8628. "geometry.\n"
  8629. "Change the painting parameters and try again."
  8630. msgstr ""
  8631. "[ERROR_NOTCL] В файле нет Painting Geometry.\n"
  8632. "Обычно это означает, что диаметр инструмента слишком велик для Painting "
  8633. "Geometry.\n"
  8634. "Измените параметры рисования и повторите попытку."
  8635. #: flatcamTools/ToolPaint.py:1255
  8636. msgid "[success] Paint All with Rest-Machining done."
  8637. msgstr "[success] Paint All with Rest-Machining done."
  8638. #: flatcamTools/ToolPanelize.py:25
  8639. msgid "Panelize PCB"
  8640. msgstr "Панелизация"
  8641. #: flatcamTools/ToolPanelize.py:58
  8642. msgid ""
  8643. "Specify the type of object to be panelized\n"
  8644. "It can be of type: Gerber, Excellon or Geometry.\n"
  8645. "The selection here decide the type of objects that will be\n"
  8646. "in the Object combobox."
  8647. msgstr ""
  8648. #: flatcamTools/ToolPanelize.py:73
  8649. msgid ""
  8650. "Object to be panelized. This means that it will\n"
  8651. "be duplicated in an array of rows and columns."
  8652. msgstr ""
  8653. #: flatcamTools/ToolPanelize.py:84
  8654. msgid "Object"
  8655. msgstr "Объект"
  8656. #: flatcamTools/ToolPanelize.py:85
  8657. msgid "Bounding Box"
  8658. msgstr "Ограничительная рамка"
  8659. #: flatcamTools/ToolPanelize.py:86
  8660. msgid "<b>Penelization Reference:</b>"
  8661. msgstr "<b>Характеристики пенелизации:</b>"
  8662. #: flatcamTools/ToolPanelize.py:88
  8663. msgid ""
  8664. "Choose the reference for panelization:\n"
  8665. "- Object = the bounding box of a different object\n"
  8666. "- Bounding Box = the bounding box of the object to be panelized\n"
  8667. "\n"
  8668. "The reference is useful when doing panelization for more than one\n"
  8669. "object. The spacings (really offsets) will be applied in reference\n"
  8670. "to this reference object therefore maintaining the panelized\n"
  8671. "objects in sync."
  8672. msgstr ""
  8673. #: flatcamTools/ToolPanelize.py:113
  8674. msgid ""
  8675. "Specify the type of object to be used as an container for\n"
  8676. "panelization. It can be: Gerber or Geometry type.\n"
  8677. "The selection here decide the type of objects that will be\n"
  8678. "in the Box Object combobox."
  8679. msgstr ""
  8680. "Укажите тип объекта, который будет использоваться в качестве контейнера "
  8681. "дляn\n"
  8682. "пенализации. Это может быть: Gerber или Geometry.\n"
  8683. "Выбор здесь определяет тип объектов, которые будут\n"
  8684. "в поле Box Object."
  8685. #: flatcamTools/ToolPanelize.py:128
  8686. msgid ""
  8687. "The actual object that is used a container for the\n"
  8688. " selected object that is to be panelized."
  8689. msgstr ""
  8690. #: flatcamTools/ToolPanelize.py:134
  8691. msgid "<b>Panel Data:</b>"
  8692. msgstr "<b>Данные панели:</b>"
  8693. #: flatcamTools/ToolPanelize.py:136
  8694. msgid ""
  8695. "This informations will shape the resulting panel.\n"
  8696. "The number of rows and columns will set how many\n"
  8697. "duplicates of the original geometry will be generated.\n"
  8698. "\n"
  8699. "The spacings will set the distance between any two\n"
  8700. "elements of the panel array."
  8701. msgstr ""
  8702. "Эта информация будет формировать получившуюся панель.\n"
  8703. "Количество строк и столбцов будет определять, сколько\n"
  8704. "будут сгенерировано дубликатов исходной геометрии.\n"
  8705. "\n"
  8706. "Расстояние устанавливает дистанцию между любыми двумя\n"
  8707. "элементами массива панели."
  8708. #: flatcamTools/ToolPanelize.py:183
  8709. msgid "<b>Panel Type:</b>"
  8710. msgstr "<b>Тип панели:</b>"
  8711. #: flatcamTools/ToolPanelize.py:185
  8712. msgid ""
  8713. "Choose the type of object for the panel object:\n"
  8714. "- Geometry\n"
  8715. "- Gerber"
  8716. msgstr ""
  8717. "Выбор типа объекта для объекта панелизации:\n"
  8718. "- Geometry\n"
  8719. "- Gerber"
  8720. #: flatcamTools/ToolPanelize.py:193
  8721. msgid "Constrain panel within:"
  8722. msgstr "Ограничить панель внутри:"
  8723. #: flatcamTools/ToolPanelize.py:227
  8724. msgid "Panelize Object"
  8725. msgstr "Объект панелизации"
  8726. #: flatcamTools/ToolPanelize.py:229
  8727. msgid ""
  8728. "Panelize the specified object around the specified box.\n"
  8729. "In other words it creates multiple copies of the source object,\n"
  8730. "arranged in a 2D array of rows and columns."
  8731. msgstr ""
  8732. "Панелизация указанного объекта вокруг указанного поля.\n"
  8733. "Другими словами, он создает несколько копий исходного объекта,\n"
  8734. "расположеных в 2D массиве строк и столбцов."
  8735. #: flatcamTools/ToolPanelize.py:272
  8736. msgid "Panel. Tool"
  8737. msgstr "Панелизация"
  8738. #: flatcamTools/ToolPanelize.py:372
  8739. #, python-format
  8740. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  8741. msgstr "[WARNING_NOTCL]Нет объекта Box. Используйте взамен %s"
  8742. #: flatcamTools/ToolPanelize.py:455
  8743. msgid ""
  8744. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  8745. "integer."
  8746. msgstr ""
  8747. "[ERROR_NOTCL] Столбцы или строки имеют нулевое значение. Измените их на "
  8748. "положительное целое число."
  8749. #: flatcamTools/ToolPanelize.py:480 flatcamTools/ToolPanelize.py:637
  8750. msgid "Generating panel ... Please wait."
  8751. msgstr "Выполняется панелизация ... Пожалуйста, подождите."
  8752. #: flatcamTools/ToolPanelize.py:630
  8753. msgid "[success] Panel done..."
  8754. msgstr "[success] Панель готова..."
  8755. #: flatcamTools/ToolPanelize.py:633
  8756. #, python-brace-format
  8757. msgid ""
  8758. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  8759. "{row} rows"
  8760. msgstr ""
  8761. #: flatcamTools/ToolPanelize.py:642
  8762. msgid "[success] Panel created successfully."
  8763. msgstr "[success] Панелизация успешно выполнена."
  8764. #: flatcamTools/ToolPcbWizard.py:32
  8765. msgid "PcbWizard Import Tool"
  8766. msgstr "Инструмент импорта PcbWizard"
  8767. #: flatcamTools/ToolPcbWizard.py:40
  8768. msgid "Import 2-file Excellon"
  8769. msgstr "Импорт 2-х файлов Excellon"
  8770. #: flatcamTools/ToolPcbWizard.py:57
  8771. msgid "Excellon file:"
  8772. msgstr "Excellon файл:"
  8773. #: flatcamTools/ToolPcbWizard.py:59
  8774. msgid ""
  8775. "Load the Excellon file.\n"
  8776. "Usually it has a .DRL extension"
  8777. msgstr ""
  8778. "Загружает файл Excellon.\n"
  8779. "Обычно он имеет расширение .DRL"
  8780. #: flatcamTools/ToolPcbWizard.py:65
  8781. msgid "INF file:"
  8782. msgstr "INF файл:"
  8783. #: flatcamTools/ToolPcbWizard.py:67
  8784. msgid "Load the INF file."
  8785. msgstr "Загружает INF-файл."
  8786. #: flatcamTools/ToolPcbWizard.py:79
  8787. msgid "Tool Number"
  8788. msgstr "Номер инструмента"
  8789. #: flatcamTools/ToolPcbWizard.py:81
  8790. msgid "Tool diameter in file units."
  8791. msgstr "Диаметр инструмента в файловых единицах."
  8792. #: flatcamTools/ToolPcbWizard.py:95
  8793. msgid "Int. digits:"
  8794. msgstr ""
  8795. #: flatcamTools/ToolPcbWizard.py:97
  8796. msgid "The number of digits for the integral part of the coordinates."
  8797. msgstr ""
  8798. #: flatcamTools/ToolPcbWizard.py:104
  8799. msgid "Frac. digits:"
  8800. msgstr ""
  8801. #: flatcamTools/ToolPcbWizard.py:106
  8802. msgid "The number of digits for the fractional part of the coordinates."
  8803. msgstr ""
  8804. #: flatcamTools/ToolPcbWizard.py:113
  8805. msgid "No Suppression"
  8806. msgstr ""
  8807. #: flatcamTools/ToolPcbWizard.py:114
  8808. msgid "Zeros supp.:"
  8809. msgstr "Подд. нулей:"
  8810. #: flatcamTools/ToolPcbWizard.py:116
  8811. msgid ""
  8812. "The type of zeros suppression used.\n"
  8813. "Can be of type:\n"
  8814. "- LZ = leading zeros are kept\n"
  8815. "- TZ = trailing zeros are kept\n"
  8816. "- No Suppression = no zero suppression"
  8817. msgstr ""
  8818. #: flatcamTools/ToolPcbWizard.py:127
  8819. msgid "Units"
  8820. msgstr "Единицы"
  8821. #: flatcamTools/ToolPcbWizard.py:129
  8822. msgid ""
  8823. "The type of units that the coordinates and tool\n"
  8824. "diameters are using. Can be INCH or MM."
  8825. msgstr ""
  8826. #: flatcamTools/ToolPcbWizard.py:136
  8827. msgid "Import Excellon"
  8828. msgstr "Импорт Excellon"
  8829. #: flatcamTools/ToolPcbWizard.py:138
  8830. msgid ""
  8831. "Import in FlatCAM an Excellon file\n"
  8832. "that store it's information's in 2 files.\n"
  8833. "One usually has .DRL extension while\n"
  8834. "the other has .INF extension."
  8835. msgstr ""
  8836. #: flatcamTools/ToolPcbWizard.py:192
  8837. msgid "PCBWizard Tool"
  8838. msgstr "Инструмент PCBWizard"
  8839. #: flatcamTools/ToolPcbWizard.py:286 flatcamTools/ToolPcbWizard.py:290
  8840. msgid "Load PcbWizard Excellon file"
  8841. msgstr "Загрузить Excellon-файл PcbWizard"
  8842. #: flatcamTools/ToolPcbWizard.py:309 flatcamTools/ToolPcbWizard.py:313
  8843. msgid "Load PcbWizard INF file"
  8844. msgstr "Загрузить INF-файл PcbWizard"
  8845. #: flatcamTools/ToolPcbWizard.py:360
  8846. msgid ""
  8847. "[ERROR] The INF file does not contain the tool table.\n"
  8848. "Try to open the Excellon file from File -> Open -> Excellon\n"
  8849. "and edit the drill diameters manually."
  8850. msgstr ""
  8851. "[ERROR] INF-файл не содержит таблицы инструментов.\n"
  8852. "Попробуйте открыть Excellon из меню Файл- > Открыть - > Открыть Excellon\n"
  8853. "и отредактируйте диаметр сверла вручную."
  8854. #: flatcamTools/ToolPcbWizard.py:380
  8855. msgid "[success] PcbWizard .INF file loaded."
  8856. msgstr "[success] Inf-файл PcbWizard загружен."
  8857. #: flatcamTools/ToolPcbWizard.py:384
  8858. msgid "[success] Main PcbWizard Excellon file loaded."
  8859. msgstr "[success] Файл PcbWizard Excellon загружен."
  8860. #: flatcamTools/ToolPcbWizard.py:421
  8861. #, python-format
  8862. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  8863. msgstr "[ERROR_NOTCL] Не удается прочитать файл: %s"
  8864. #: flatcamTools/ToolPcbWizard.py:445
  8865. msgid "Importing Excellon."
  8866. msgstr "Импортирование Excellon."
  8867. #: flatcamTools/ToolPcbWizard.py:452
  8868. msgid "[ERROR_NOTCL] Import Excellon file failed."
  8869. msgstr "[ERROR_NOTCL] Не удалось импортировать файл Excellon."
  8870. #: flatcamTools/ToolPcbWizard.py:459
  8871. #, python-format
  8872. msgid "[success] Imported: %s"
  8873. msgstr "[success] Импортирован: %s"
  8874. #: flatcamTools/ToolPcbWizard.py:462
  8875. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  8876. msgstr ""
  8877. #: flatcamTools/ToolPcbWizard.py:464
  8878. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  8879. msgstr "[ERROR_NOTCL] Импортированный файл Excellon есть None."
  8880. #: flatcamTools/ToolProperties.py:103
  8881. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8882. msgstr ""
  8883. "[ERROR_NOTCL] Инструмент \"Свойства\" не отображается. Объект не выбран."
  8884. #: flatcamTools/ToolProperties.py:110
  8885. msgid "[success] Object Properties are displayed."
  8886. msgstr "[success] Отображены свойства объекта."
  8887. #: flatcamTools/ToolProperties.py:111
  8888. msgid "Properties Tool"
  8889. msgstr "Свойства"
  8890. #: flatcamTools/ToolShell.py:69
  8891. msgid "...proccessing..."
  8892. msgstr "...обработка..."
  8893. #: flatcamTools/ToolShell.py:71
  8894. #, python-format
  8895. msgid "...proccessing... [%s]"
  8896. msgstr "...обработка... [%s]"
  8897. #: flatcamTools/ToolSolderPaste.py:37
  8898. msgid "Solder Paste Tool"
  8899. msgstr "Паяльная паста"
  8900. #: flatcamTools/ToolSolderPaste.py:65
  8901. msgid "Gerber Solder paste object. "
  8902. msgstr "Gerber объект паяльной пасты. "
  8903. #: flatcamTools/ToolSolderPaste.py:72
  8904. msgid ""
  8905. "Tools pool from which the algorithm\n"
  8906. "will pick the ones used for dispensing solder paste."
  8907. msgstr ""
  8908. "Пул инструментов, из которого алгоритм\n"
  8909. "выберет те, которые будут использоваться для дозирования паяльной пасты."
  8910. #: flatcamTools/ToolSolderPaste.py:87
  8911. msgid ""
  8912. "This is the Tool Number.\n"
  8913. "The solder dispensing will start with the tool with the biggest \n"
  8914. "diameter, continuing until there are no more Nozzle tools.\n"
  8915. "If there are no longer tools but there are still pads not covered\n"
  8916. " with solder paste, the app will issue a warning message box."
  8917. msgstr ""
  8918. #: flatcamTools/ToolSolderPaste.py:94
  8919. msgid ""
  8920. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8921. "is the width of the solder paste dispensed."
  8922. msgstr ""
  8923. #: flatcamTools/ToolSolderPaste.py:101
  8924. msgid "New Nozzle Tool"
  8925. msgstr "Новое сопло"
  8926. #: flatcamTools/ToolSolderPaste.py:117
  8927. msgid ""
  8928. "Add a new nozzle tool to the Tool Table\n"
  8929. "with the diameter specified above."
  8930. msgstr ""
  8931. #: flatcamTools/ToolSolderPaste.py:129
  8932. msgid "Generate solder paste dispensing geometry."
  8933. msgstr ""
  8934. #: flatcamTools/ToolSolderPaste.py:142
  8935. msgid "STEP 1:"
  8936. msgstr "ШАГ 1:"
  8937. #: flatcamTools/ToolSolderPaste.py:144
  8938. msgid ""
  8939. "First step is to select a number of nozzle tools for usage\n"
  8940. "and then optionally modify the GCode parameters bellow."
  8941. msgstr ""
  8942. #: flatcamTools/ToolSolderPaste.py:147
  8943. msgid ""
  8944. "Select tools.\n"
  8945. "Modify parameters."
  8946. msgstr ""
  8947. #: flatcamTools/ToolSolderPaste.py:235
  8948. msgid ""
  8949. "Feedrate (speed) while moving up vertically\n"
  8950. " to Dispense position (on Z plane)."
  8951. msgstr ""
  8952. #: flatcamTools/ToolSolderPaste.py:289
  8953. msgid "Generate GCode"
  8954. msgstr "Создать GCode"
  8955. #: flatcamTools/ToolSolderPaste.py:291
  8956. msgid ""
  8957. "Generate GCode for Solder Paste dispensing\n"
  8958. "on PCB pads."
  8959. msgstr ""
  8960. "Создаёт GCode для дозирования паяльной пасты\n"
  8961. "на печатной плате."
  8962. #: flatcamTools/ToolSolderPaste.py:306
  8963. msgid "STEP 2:"
  8964. msgstr "ШАГ 2:"
  8965. #: flatcamTools/ToolSolderPaste.py:308
  8966. msgid ""
  8967. "Second step is to create a solder paste dispensing\n"
  8968. "geometry out of an Solder Paste Mask Gerber file."
  8969. msgstr ""
  8970. #: flatcamTools/ToolSolderPaste.py:324
  8971. msgid "Geo Result:"
  8972. msgstr ""
  8973. #: flatcamTools/ToolSolderPaste.py:326
  8974. msgid ""
  8975. "Geometry Solder Paste object.\n"
  8976. "The name of the object has to end in:\n"
  8977. "'_solderpaste' as a protection."
  8978. msgstr ""
  8979. #: flatcamTools/ToolSolderPaste.py:335
  8980. msgid "STEP 3:"
  8981. msgstr "ШАГ 3:"
  8982. #: flatcamTools/ToolSolderPaste.py:337
  8983. msgid ""
  8984. "Third step is to select a solder paste dispensing geometry,\n"
  8985. "and then generate a CNCJob object.\n"
  8986. "\n"
  8987. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8988. "first you need to generate a geometry with those new params,\n"
  8989. "and only after that you can generate an updated CNCJob."
  8990. msgstr ""
  8991. #: flatcamTools/ToolSolderPaste.py:357
  8992. msgid "CNC Result:"
  8993. msgstr ""
  8994. #: flatcamTools/ToolSolderPaste.py:359
  8995. msgid ""
  8996. "CNCJob Solder paste object.\n"
  8997. "In order to enable the GCode save section,\n"
  8998. "the name of the object has to end in:\n"
  8999. "'_solderpaste' as a protection."
  9000. msgstr ""
  9001. #: flatcamTools/ToolSolderPaste.py:369
  9002. msgid "View GCode"
  9003. msgstr "Посмотреть GCode"
  9004. #: flatcamTools/ToolSolderPaste.py:371
  9005. msgid ""
  9006. "View the generated GCode for Solder Paste dispensing\n"
  9007. "on PCB pads."
  9008. msgstr ""
  9009. "Просмотр сгенерированного GCode для подачи паяльной пасты\n"
  9010. "на печатную платау."
  9011. #: flatcamTools/ToolSolderPaste.py:375
  9012. msgid "Save GCode"
  9013. msgstr "Сохранить GCode"
  9014. #: flatcamTools/ToolSolderPaste.py:377
  9015. msgid ""
  9016. "Save the generated GCode for Solder Paste dispensing\n"
  9017. "on PCB pads, to a file."
  9018. msgstr ""
  9019. "Сохранение сгенерированного GCode для подачи паяльной пасты\n"
  9020. "на печатную платау, в файл."
  9021. #: flatcamTools/ToolSolderPaste.py:381
  9022. msgid "STEP 4:"
  9023. msgstr "ШАГ 4:"
  9024. #: flatcamTools/ToolSolderPaste.py:383
  9025. msgid ""
  9026. "Fourth step (and last) is to select a CNCJob made from \n"
  9027. "a solder paste dispensing geometry, and then view/save it's GCode."
  9028. msgstr ""
  9029. "Четвертый шаг (и последний) - выбор CNCJob, сделанного из \n"
  9030. "геометрии распределения паяльной пасты, а затем просмотр/сохранение ее GCode."
  9031. #: flatcamTools/ToolSolderPaste.py:412
  9032. msgid "Delete Object"
  9033. msgstr "Удалить объект"
  9034. #: flatcamTools/ToolSolderPaste.py:792
  9035. msgid ""
  9036. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  9037. msgstr ""
  9038. #: flatcamTools/ToolSolderPaste.py:797
  9039. msgid "[success] New Nozzle tool added to Tool Table."
  9040. msgstr "[success] Новое сопло добавлено в таблицу инструментов."
  9041. #: flatcamTools/ToolSolderPaste.py:839
  9042. msgid "[success] Nozzle tool from Tool Table was edited."
  9043. msgstr "[success] Сопло было изменено в таблице инструментов."
  9044. #: flatcamTools/ToolSolderPaste.py:896
  9045. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  9046. msgstr ""
  9047. #: flatcamTools/ToolSolderPaste.py:901
  9048. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  9049. msgstr "[success] Сопло удалено из таблицы инструментов."
  9050. #: flatcamTools/ToolSolderPaste.py:956
  9051. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  9052. msgstr "[WARNING_NOTCL] Нет загруженного Gerber объекта маски паяльной пасты."
  9053. #: flatcamTools/ToolSolderPaste.py:974
  9054. msgid "Creating Solder Paste dispensing geometry."
  9055. msgstr "Создание геометрии дозирования паяльной пасты."
  9056. #: flatcamTools/ToolSolderPaste.py:986
  9057. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  9058. msgstr ""
  9059. #: flatcamTools/ToolSolderPaste.py:1115
  9060. msgid "[success] Solder Paste geometry generated successfully..."
  9061. msgstr "[success] Геометрия дозатора паяльной пасты успешно создана..."
  9062. #: flatcamTools/ToolSolderPaste.py:1121
  9063. msgid ""
  9064. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  9065. "diameters..."
  9066. msgstr ""
  9067. #: flatcamTools/ToolSolderPaste.py:1135
  9068. msgid "Generating Solder Paste dispensing geometry..."
  9069. msgstr "Генерация геометрии дозирования паяльной пасты ..."
  9070. #: flatcamTools/ToolSolderPaste.py:1155
  9071. msgid "[WARNING_NOTCL] There is no Geometry object available."
  9072. msgstr ""
  9073. #: flatcamTools/ToolSolderPaste.py:1159
  9074. msgid ""
  9075. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  9076. "geometry."
  9077. msgstr ""
  9078. #: flatcamTools/ToolSolderPaste.py:1265
  9079. #, python-format
  9080. msgid "[success] ToolSolderPaste CNCjob created: %s"
  9081. msgstr "[success] CNCjob дозатора паяльной пасты создан: %s"
  9082. #: flatcamTools/ToolSolderPaste.py:1297 flatcamTools/ToolSolderPaste.py:1301
  9083. #: flatcamTools/ToolSolderPaste.py:1353
  9084. msgid ""
  9085. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  9086. "solder_paste_tool CNCJob object."
  9087. msgstr ""
  9088. #: flatcamTools/ToolSolderPaste.py:1325
  9089. msgid "[ERROR_NOTCL] No Gcode in the object..."
  9090. msgstr "[ERROR_NOTCL] Нет Gcode в этом объекте......"
  9091. #: flatcamTools/ToolSolderPaste.py:1334
  9092. #, python-format
  9093. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  9094. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  9095. #: flatcamTools/ToolSolderPaste.py:1363
  9096. msgid "Export GCode ..."
  9097. msgstr "Экспорт GCode ..."
  9098. #: flatcamTools/ToolSolderPaste.py:1403
  9099. #, python-format
  9100. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  9101. msgstr "[success] Файл GCode дозатора паяльной пасты сохранён в: %s"
  9102. #: flatcamTools/ToolSub.py:55
  9103. msgid "<b>Gerber Objects</b>"
  9104. msgstr "<b>Объекты Gerber</b>"
  9105. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  9106. msgid "Target:"
  9107. msgstr "Цель:"
  9108. #: flatcamTools/ToolSub.py:66
  9109. msgid ""
  9110. "Gerber object from which to substract\n"
  9111. "the substractor Gerber object."
  9112. msgstr ""
  9113. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  9114. msgid "Substractor:"
  9115. msgstr "Вычитатель:"
  9116. #: flatcamTools/ToolSub.py:80
  9117. msgid ""
  9118. "Gerber object that will be substracted\n"
  9119. "from the target Gerber object."
  9120. msgstr ""
  9121. #: flatcamTools/ToolSub.py:87
  9122. msgid "Substract Gerber"
  9123. msgstr "Вычесть Gerber"
  9124. #: flatcamTools/ToolSub.py:89
  9125. msgid ""
  9126. "Will remove the area occupied by the substractor\n"
  9127. "Gerber from the Target Gerber.\n"
  9128. "Can be used to remove the overlapping silkscreen\n"
  9129. "over the soldermask."
  9130. msgstr ""
  9131. "Удалит область, занятую вычитателем\n"
  9132. "Gerber от целевого Gerber.\n"
  9133. "Может использоваться для удаления перекрывающей шелкографии\n"
  9134. "над маской припоя."
  9135. #: flatcamTools/ToolSub.py:101
  9136. msgid "<b>Geometry Objects</b>"
  9137. msgstr "<b>Объекты Geometry</b>"
  9138. #: flatcamTools/ToolSub.py:112
  9139. msgid ""
  9140. "Geometry object from which to substract\n"
  9141. "the substractor Geometry object."
  9142. msgstr ""
  9143. "Объект геометрии, из которого будет вычетать\n"
  9144. "вычитатель объекта Geometry."
  9145. #: flatcamTools/ToolSub.py:126
  9146. msgid ""
  9147. "Geometry object that will be substracted\n"
  9148. "from the target Geometry object."
  9149. msgstr ""
  9150. "Объект Geometry, который будет вычтен\n"
  9151. "от целевого объекта Geometry."
  9152. #: flatcamTools/ToolSub.py:133
  9153. msgid "Substract Geometry"
  9154. msgstr "Вычесть Geometry"
  9155. #: flatcamTools/ToolSub.py:135
  9156. msgid ""
  9157. "Will remove the area occupied by the substractor\n"
  9158. "Geometry from the Target Geometry."
  9159. msgstr ""
  9160. "Удалит область, занятую вычитателем\n"
  9161. "из целевой геометрии."
  9162. #: flatcamTools/ToolSub.py:216
  9163. msgid "Sub Tool"
  9164. msgstr "Вычитатель"
  9165. #: flatcamTools/ToolSub.py:231 flatcamTools/ToolSub.py:424
  9166. msgid "[ERROR_NOTCL] No Target object loaded."
  9167. msgstr "[ERROR_NOTCL] Нет загруженного целевого объекта."
  9168. #: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:437
  9169. msgid "[ERROR_NOTCL] No Substractor object loaded."
  9170. msgstr "[ERROR_NOTCL] Нет загруженного объекта Вычитателя."
  9171. #: flatcamTools/ToolSub.py:297
  9172. #, python-format
  9173. msgid "Parsing aperture %s geometry ..."
  9174. msgstr ""
  9175. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:544
  9176. msgid "Generating new object ..."
  9177. msgstr "Генерация нового объекта ..."
  9178. #: flatcamTools/ToolSub.py:402 flatcamTools/ToolSub.py:547
  9179. msgid "[ERROR_NOTCL] Generating new object failed."
  9180. msgstr "[ERROR_NOTCL] Не удалось создать новый объект."
  9181. #: flatcamTools/ToolSub.py:406 flatcamTools/ToolSub.py:552
  9182. #, python-format
  9183. msgid "[success] Created: %s"
  9184. msgstr "[success] Создан: %s"
  9185. #: flatcamTools/ToolSub.py:449
  9186. msgid ""
  9187. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  9188. msgstr ""
  9189. "[ERROR_NOTCL] В настоящее время Substractor geometry не может иметь тип "
  9190. "Multigeo."
  9191. #: flatcamTools/ToolSub.py:494
  9192. msgid "Parsing solid_geometry ..."
  9193. msgstr "Разбор solid_geometry ..."
  9194. #: flatcamTools/ToolSub.py:496
  9195. #, python-format
  9196. msgid "Parsing tool %s geometry ..."
  9197. msgstr "Разбор инструмента %s геометрии ..."
  9198. #: flatcamTools/ToolTransform.py:23
  9199. msgid "Object Transform"
  9200. msgstr "Трансформация"
  9201. #: flatcamTools/ToolTransform.py:84
  9202. msgid ""
  9203. "Rotate the selected object(s).\n"
  9204. "The point of reference is the middle of\n"
  9205. "the bounding box for all selected objects."
  9206. msgstr ""
  9207. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  9208. msgid ""
  9209. "Skew/shear the selected object(s).\n"
  9210. "The point of reference is the middle of\n"
  9211. "the bounding box for all selected objects."
  9212. msgstr ""
  9213. "Наклоняет/сдвигает выбранные объекты.\n"
  9214. "Точка отсчета - середина\n"
  9215. "ограничительной рамки для всех выбранных объектов."
  9216. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  9217. msgid ""
  9218. "Scale the selected object(s).\n"
  9219. "The point of reference depends on \n"
  9220. "the Scale reference checkbox state."
  9221. msgstr ""
  9222. "Масштабирование выбранных объектов.\n"
  9223. "Точка отсчета зависит от\n"
  9224. "состояние флажка Scale Reference."
  9225. #: flatcamTools/ToolTransform.py:202
  9226. msgid ""
  9227. "Scale the selected object(s)\n"
  9228. "using the Scale Factor X for both axis."
  9229. msgstr ""
  9230. "Масштабирование выбранных объектов\n"
  9231. "используя коэффициент X для обеих осей."
  9232. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  9233. msgid ""
  9234. "Offset the selected object(s).\n"
  9235. "The point of reference is the middle of\n"
  9236. "the bounding box for all selected objects.\n"
  9237. msgstr ""
  9238. "Смещение выбранных объектов.\n"
  9239. "Точка отсчета - середина\n"
  9240. "ограничительной рамки для всех выбранных объектов.\n"
  9241. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  9242. msgid ""
  9243. "Flip the selected object(s) over the X axis.\n"
  9244. "Does not create a new object.\n"
  9245. " "
  9246. msgstr ""
  9247. #: flatcamTools/ToolTransform.py:636
  9248. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  9249. msgstr ""
  9250. #: flatcamTools/ToolTransform.py:664
  9251. msgid "CNCJob objects can't be rotated."
  9252. msgstr "Объекты CNCJob не могут вращаться."
  9253. #: flatcamTools/ToolTransform.py:672
  9254. msgid "[success] Rotate done ..."
  9255. msgstr "[success] Поворот выполнен ..."
  9256. #: flatcamTools/ToolTransform.py:687
  9257. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  9258. msgstr ""
  9259. #: flatcamTools/ToolTransform.py:722
  9260. msgid "CNCJob objects can't be mirrored/flipped."
  9261. msgstr "Объекты CNCJob не могут быть зеркалировны/отражены."
  9262. #: flatcamTools/ToolTransform.py:756
  9263. msgid ""
  9264. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  9265. msgstr ""
  9266. #: flatcamTools/ToolTransform.py:778
  9267. msgid "CNCJob objects can't be skewed."
  9268. msgstr "CNCJob объекты не могут быть наклонены."
  9269. #: flatcamTools/ToolTransform.py:805
  9270. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  9271. msgstr ""
  9272. #: flatcamTools/ToolTransform.py:838
  9273. msgid "CNCJob objects can't be scaled."
  9274. msgstr "CNCJob объекты не могут быть масштабированы."
  9275. #: flatcamTools/ToolTransform.py:857
  9276. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  9277. msgstr ""
  9278. #: flatcamTools/ToolTransform.py:866
  9279. msgid "CNCJob objects can't be offseted."
  9280. msgstr "Объекты CNCJob не могут быть смещены."
  9281. #, fuzzy
  9282. #~| msgid ""
  9283. #~| "How much (fraction) of the tool width to overlap each tool pass.\n"
  9284. #~| "Example:\n"
  9285. #~| "A value here of 0.25 means 25% from the tool diameter found above.\n"
  9286. #~| "\n"
  9287. #~| "Adjust the value starting with lower values\n"
  9288. #~| "and increasing it if areas that should be painted are still \n"
  9289. #~| "not painted.\n"
  9290. #~| "Lower values = faster processing, faster execution on PCB.\n"
  9291. #~| "Higher values = slow processing and slow execution on CNC\n"
  9292. #~| "due of too many paths."
  9293. #~ msgid ""
  9294. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9295. #~ "Example:\n"
  9296. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9297. #~ "\n"
  9298. #~ "Adjust the value starting with lower values\n"
  9299. #~ "and increasing it if areas that should be painted are still \n"
  9300. #~ "not painted.\n"
  9301. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9302. #~ "Higher values = slow processing and slow execution on CNC\n"
  9303. #~ "due of too many paths."
  9304. #~ msgstr ""
  9305. #~ "Какая часть ширины инструмента будет перекрываться за каждый проход "
  9306. #~ "инструмента.\n"
  9307. #~ "Пример:\n"
  9308. #~ "Здесь значение 0.25 означает 25% от диаметра инструмента, указанного "
  9309. #~ "выше.\n"
  9310. #~ "\n"
  9311. #~ "Отрегулируйте значение, начиная с более низких значений\n"
  9312. #~ "и увеличивая его, если области, которые должны быть нарисованы, все еще\n"
  9313. #~ "не окрашены.\n"
  9314. #~ "Более низкие значения = более быстрая обработка, более быстрое выполнение "
  9315. #~ "на печатной плате.\n"
  9316. #~ "Более высокие значения = медленная обработка и медленное выполнение на "
  9317. #~ "ЧПУ\n"
  9318. #~ "из-за большого количества путей."
  9319. #~ msgid "z_cut = Z coord for Toolchange"
  9320. #~ msgstr "z_cut = Z coord for Toolchange"
  9321. #~ msgid "z_move = Z coord for Toolchange"
  9322. #~ msgstr "z_move = Z coord for Toolchange"
  9323. #~ msgid "%s/Project_%s"
  9324. #~ msgstr "%s/Project_%s"
  9325. #~ msgid "tool_tab"
  9326. #~ msgstr "tool_tab"
  9327. #~ msgid "Tool dia: "
  9328. #~ msgstr "Диам. инстр.: "
  9329. #~ msgid ""
  9330. #~ "The diameter of the cutting\n"
  9331. #~ "tool.."
  9332. #~ msgstr ""
  9333. #~ "Диаметр режущего\n"
  9334. #~ "инструмента.."
  9335. #~ msgid "Disable"
  9336. #~ msgstr "Отключить"