strings.po 302 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075
  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-05-22 18:30+0300\n"
  9. "PO-Revision-Date: 2019-06-03 00:08+0400\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. "Generated-By: pygettext.py 1.5\n"
  17. "X-Generator: Poedit 2.0.6\n"
  18. "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
  19. "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
  20. "X-Poedit-Basepath: ..\n"
  21. "X-Poedit-SearchPath-0: .\n"
  22. "X-Poedit-SearchPathExcluded-0: build\n"
  23. "X-Poedit-SearchPathExcluded-1: doc\n"
  24. "X-Poedit-SearchPathExcluded-2: tests\n"
  25. #: FlatCAMApp.py:898
  26. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  27. msgstr ""
  28. "[ERROR] Не удалось найти языковые файлы. Строки приложения отсутствуют."
  29. #: FlatCAMApp.py:1962 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  30. #: flatcamTools/ToolPcbWizard.py:299 flatcamTools/ToolPcbWizard.py:322
  31. msgid "Open cancelled."
  32. msgstr "Открытие завершено."
  33. #: FlatCAMApp.py:1976
  34. msgid "Open Config file failed."
  35. msgstr "Не удалось открыть файл конфигурации."
  36. #: FlatCAMApp.py:1990
  37. msgid "Open Script file failed."
  38. msgstr "Ошибка открытия файла сценария."
  39. #: FlatCAMApp.py:2181
  40. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  41. msgstr ""
  42. "[WARNING_NOTCL] Выберите объект Geometry, Gerber или Excellon для "
  43. "редактирования."
  44. #: FlatCAMApp.py:2191
  45. msgid ""
  46. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  47. "Geometry is not possible.\n"
  48. "Edit only one geometry at a time."
  49. msgstr ""
  50. "[WARNING_NOTCL] Одновременное редактирование геометрии в MultiGeo Geometry "
  51. "невозможно.\n"
  52. "Редактируйте только одну геометрию за раз."
  53. #: FlatCAMApp.py:2235
  54. msgid "[WARNING_NOTCL] Editor is activated ..."
  55. msgstr "[WARNING_NOTCL] Редактор активирован ..."
  56. #: FlatCAMApp.py:2254
  57. msgid "Do you want to save the edited object?"
  58. msgstr "Вы хотите сохранить редактируемый объект?"
  59. #: FlatCAMApp.py:2255 flatcamGUI/FlatCAMGUI.py:1621
  60. msgid "Close Editor"
  61. msgstr "Закрыть редактор"
  62. #: FlatCAMApp.py:2258 FlatCAMApp.py:3349 FlatCAMApp.py:5799
  63. #: FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3733
  64. msgid "Yes"
  65. msgstr "Да"
  66. #: FlatCAMApp.py:2259 FlatCAMApp.py:3350 FlatCAMApp.py:5800
  67. #: FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3734
  68. msgid "No"
  69. msgstr "Нет"
  70. #: FlatCAMApp.py:2260 FlatCAMApp.py:3351 FlatCAMApp.py:3683 FlatCAMApp.py:5801
  71. msgid "Cancel"
  72. msgstr "Отмена"
  73. #: FlatCAMApp.py:2287
  74. msgid "[WARNING] Object empty after edit."
  75. msgstr "[WARNING] Объект пуст после редактирования."
  76. #: FlatCAMApp.py:2309 FlatCAMApp.py:2328 FlatCAMApp.py:2340
  77. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  78. msgstr ""
  79. "[WARNING_NOTCL] Выберите объект Gerber, Geometry или Excellon для обновления."
  80. #: FlatCAMApp.py:2312
  81. #, python-format
  82. msgid "[selected] %s is updated, returning to App..."
  83. msgstr "[selected] %s обновлён, возврат в приложение ..."
  84. #: FlatCAMApp.py:2677
  85. msgid "[ERROR] Could not load defaults file."
  86. msgstr "[ERROR] Не удаётся загрузить файл настроек."
  87. #: FlatCAMApp.py:2689
  88. msgid "[ERROR] Failed to parse defaults file."
  89. msgstr "[ERRORr] Не удаётся прочитать файл настроек."
  90. #: FlatCAMApp.py:2710 FlatCAMApp.py:2713
  91. msgid "Import FlatCAM Preferences"
  92. msgstr "Импорт настроек FlatCAM"
  93. #: FlatCAMApp.py:2718
  94. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  95. msgstr "[WARNING_NOTCL] Импорт настроек FlatCAM отменен."
  96. #: FlatCAMApp.py:2726 FlatCAMApp.py:2773 FlatCAMApp.py:3228
  97. msgid "[ERROR_NOTCL] Could not load defaults file."
  98. msgstr "[ERROR_NOTCL] Не удалось загрузить файл значений по умолчанию."
  99. #: FlatCAMApp.py:2734 FlatCAMApp.py:3237
  100. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  101. msgstr "[ERROR_NOTCL] Не удалось прочитать файл значений по умолчанию."
  102. #: FlatCAMApp.py:2737
  103. #, python-format
  104. msgid "[success] Imported Defaults from %s"
  105. msgstr "[success] Значения по умолчанию импортированы из %s"
  106. #: FlatCAMApp.py:2747 FlatCAMApp.py:2751
  107. msgid "Export FlatCAM Preferences"
  108. msgstr "Экспорт настроек FlatCAM"
  109. #: FlatCAMApp.py:2757
  110. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  111. msgstr "[WARNING_NOTCL] Экспорт настроек FlatCAM завершён."
  112. #: FlatCAMApp.py:2792 FlatCAMApp.py:3282
  113. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  114. msgstr "[ERROR_NOTCL] Не удалось записать значения по умолчанию в файл."
  115. #: FlatCAMApp.py:2845
  116. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  117. msgstr "[ERROR_NOTCL] Не удалось открыть файл истории файлов для записи."
  118. #: FlatCAMApp.py:2930 camlib.py:4454
  119. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  120. msgstr ""
  121. "[ERROR_NOTCL] Произошла внутренняя ошибка. Посмотрите в командную строку.\n"
  122. #: FlatCAMApp.py:2931
  123. #, python-brace-format
  124. msgid ""
  125. "Object ({kind}) failed because: {error} \n"
  126. "\n"
  127. msgstr ""
  128. "Объект ({kind}) не выполнен, потому что: {error} \n"
  129. "\n"
  130. #: FlatCAMApp.py:2951
  131. msgid "Converting units to "
  132. msgstr "Конвертирование единиц в "
  133. #: FlatCAMApp.py:3030 FlatCAMApp.py:3033 FlatCAMApp.py:3036 FlatCAMApp.py:3039
  134. #, python-brace-format
  135. msgid ""
  136. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  137. "span>"
  138. msgstr ""
  139. "[selected] {kind} создан/выбран: <span style=\"color:{color};\">{name}</span>"
  140. #: FlatCAMApp.py:3133
  141. #, python-brace-format
  142. msgid ""
  143. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  144. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  145. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  146. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  147. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  148. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  149. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  150. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  151. "downloads/\">here.</a><BR>"
  152. msgstr ""
  153. "<font size=8><B>FlatCAM</B></font><BR>Версия {version} {beta} ({date}) - "
  154. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  155. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Основные участники:"
  156. "</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  157. "Berthomé<BR>и многие другие найдутся <a href = \"https://bitbucket.org/jpcgt/"
  158. "flatcam/pull-requests/?state=MERGED\">тут.</a><BR><BR>Разработка идёт <a "
  159. "href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">здесь.</"
  160. "a><BR>ЗАГРУЗИТЬ можно <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  161. "downloads/\">отсюда.</a><BR>"
  162. #: FlatCAMApp.py:3286
  163. msgid "[success] Defaults saved."
  164. msgstr "[success] Значения по умолчанию сохранены."
  165. #: FlatCAMApp.py:3307
  166. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  167. msgstr "[ERROR_NOTCL] Не удалось загрузить файл с исходными значениями."
  168. #: FlatCAMApp.py:3316
  169. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  170. msgstr "[ERROR_NOTCL] Не удалось прочитать файл с исходными значениями."
  171. #: FlatCAMApp.py:3330
  172. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  173. msgstr "[ERROR_NOTCL] Не удалось записать исходные значения в файл."
  174. #: FlatCAMApp.py:3334
  175. msgid "Factory defaults saved."
  176. msgstr "Исходные значения сохранены."
  177. #: FlatCAMApp.py:3339 flatcamGUI/FlatCAMGUI.py:3110
  178. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  179. msgstr "[WARNING_NOTCL] Приложение сохраняет проект. Пожалуйста, подождите ..."
  180. #: FlatCAMApp.py:3344
  181. msgid ""
  182. "There are files/objects modified in FlatCAM. \n"
  183. "Do you want to Save the project?"
  184. msgstr ""
  185. "Есть файлы/объекты, измененные в FlatCAM.\n"
  186. "Вы хотите сохранить проект?"
  187. #: FlatCAMApp.py:3347 FlatCAMApp.py:5797
  188. msgid "Save changes"
  189. msgstr "Сохранить изменения"
  190. #: FlatCAMApp.py:3414
  191. msgid ""
  192. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  193. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  194. "is to convert from one to another and retry joining \n"
  195. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  196. "be lost and the result may not be what was expected. \n"
  197. "Check the generated GCODE."
  198. msgstr ""
  199. "[ERROR] Не удалось объединить. Объекты Geometry бывают разных типов.\n"
  200. "По крайней мере, один тип MultiGeo, а другой тип SingleGeo. Возможно "
  201. "преобразование из одного в другое и повторное присоединение ,\n"
  202. "но в случае преобразования из MultiGeo в SingleGeo информация может быть "
  203. "потеряна, и результат может не соответствовать ожидаемому. \n"
  204. "Проверьте сгенерированный GCODE."
  205. #: FlatCAMApp.py:3455
  206. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  207. msgstr ""
  208. "[ERROR_NOTCL] Неудача. Присоединение Excellon работает только на объектах "
  209. "Excellon."
  210. #: FlatCAMApp.py:3477
  211. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  212. msgstr ""
  213. "[ERROR_NOTCL] Неудача. Объединение Gerber работает только на объектах Gerber."
  214. #: FlatCAMApp.py:3492 FlatCAMApp.py:3517
  215. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  216. msgstr "[ERROR_NOTCL] Неудалось. Выберите объект Geometry и попробуйте снова."
  217. #: FlatCAMApp.py:3496 FlatCAMApp.py:3521
  218. #, python-format
  219. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  220. msgstr "[ERROR_NOTCL] Ожидается FlatCAMGeometry, получено %s"
  221. #: FlatCAMApp.py:3509
  222. msgid "[success] A Geometry object was converted to MultiGeo type."
  223. msgstr "[success] Объект Geometry был преобразован в тип MultiGeo."
  224. #: FlatCAMApp.py:3535
  225. msgid "[success] A Geometry object was converted to SingleGeo type."
  226. msgstr "[success] Объект Geometry был преобразован в тип SingleGeo."
  227. #: FlatCAMApp.py:3682 FlatCAMApp.py:4495 FlatCAMApp.py:6064 FlatCAMApp.py:6075
  228. #: FlatCAMApp.py:6312 FlatCAMApp.py:6322
  229. msgid "Ok"
  230. msgstr "Да"
  231. #: FlatCAMApp.py:3724
  232. #, python-format
  233. msgid "[success] Converted units to %s"
  234. msgstr "[success] Конвертирование единиц в %s"
  235. #: FlatCAMApp.py:3735
  236. msgid "[WARNING_NOTCL] Units conversion cancelled."
  237. msgstr "[WARNING_NOTCL] Преобразование единиц завершено."
  238. #: FlatCAMApp.py:4364
  239. msgid "Open file"
  240. msgstr "Открыть файл"
  241. #: FlatCAMApp.py:4395 FlatCAMApp.py:4400
  242. msgid "Export G-Code ..."
  243. msgstr "Экспорт G-Code …"
  244. #: FlatCAMApp.py:4403
  245. msgid "[WARNING_NOTCL] Export Code cancelled."
  246. msgstr "[WARNING_NOTCL] Экспорт Code завершён."
  247. #: FlatCAMApp.py:4413
  248. msgid "[WARNING] No such file or directory"
  249. msgstr "[WARNING] Нет такого файла или каталога"
  250. #: FlatCAMApp.py:4420
  251. #, python-format
  252. msgid "Saved to: %s"
  253. msgstr "Сохранёно в: %s"
  254. #: FlatCAMApp.py:4483 FlatCAMApp.py:4516 FlatCAMApp.py:4527 FlatCAMApp.py:4538
  255. #: flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765
  256. msgid ""
  257. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  258. "format."
  259. msgstr ""
  260. "[WARNING_NOTCL] Пожалуйста, введите диаметр инструмента с ненулевым "
  261. "значением в float формате."
  262. #: FlatCAMApp.py:4488 FlatCAMApp.py:4521 FlatCAMApp.py:4532 FlatCAMApp.py:4543
  263. #: flatcamGUI/FlatCAMGUI.py:3005
  264. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  265. msgstr "[WARNING_NOTCL] Добавление инструмента завершено ..."
  266. #: FlatCAMApp.py:4491
  267. msgid ""
  268. "Adding Tool works only when Advanced is checked.\n"
  269. "Go to Preferences -> General - Show Advanced Options."
  270. msgstr ""
  271. "Добавления инструмента работает только тогда, когда установлен флажок "
  272. "«Дополнительно».\n"
  273. "Перейдите в Настройки -> Общие - Показать дополнительные параметры."
  274. #: FlatCAMApp.py:4604
  275. msgid "Object(s) deleted ..."
  276. msgstr "Объект(ы) удален ..."
  277. #: FlatCAMApp.py:4608
  278. msgid "Failed. No object(s) selected..."
  279. msgstr "Нудача. Объекты не выбраны ..."
  280. #: FlatCAMApp.py:4610
  281. msgid "Save the work in Editor and try again ..."
  282. msgstr "Сохраните работу в редакторе и попробуйте снова ..."
  283. #: FlatCAMApp.py:4623
  284. msgid "Click to set the origin ..."
  285. msgstr "Кликните, чтобы указать начало ..."
  286. #: FlatCAMApp.py:4635
  287. msgid "Jump to ..."
  288. msgstr "Перейти к ..."
  289. #: FlatCAMApp.py:4636
  290. msgid "Enter the coordinates in format X,Y:"
  291. msgstr "Введите координаты в формате X, Y:"
  292. #: FlatCAMApp.py:4643
  293. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  294. msgstr "Неверные координаты. Введите координаты в формате: X, Y"
  295. #: FlatCAMApp.py:4661 flatcamEditors/FlatCAMExcEditor.py:2285
  296. #: flatcamEditors/FlatCAMExcEditor.py:2292
  297. #: flatcamEditors/FlatCAMGeoEditor.py:3648
  298. #: flatcamEditors/FlatCAMGeoEditor.py:3662
  299. #: flatcamEditors/FlatCAMGrbEditor.py:1040
  300. #: flatcamEditors/FlatCAMGrbEditor.py:1141
  301. #: flatcamEditors/FlatCAMGrbEditor.py:1402
  302. #: flatcamEditors/FlatCAMGrbEditor.py:1652
  303. #: flatcamEditors/FlatCAMGrbEditor.py:3928
  304. #: flatcamEditors/FlatCAMGrbEditor.py:3942 flatcamGUI/FlatCAMGUI.py:2419
  305. #: flatcamGUI/FlatCAMGUI.py:2431
  306. msgid "[success] Done."
  307. msgstr "[success] Готово."
  308. #: FlatCAMApp.py:4794 FlatCAMApp.py:4863
  309. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  310. msgstr "[WARNING_NOTCL] Объект не выбран. Выберите объект и попробуйте снова."
  311. #: FlatCAMApp.py:4904
  312. msgid "[success] Origin set ..."
  313. msgstr "[success] Начало установлено ..."
  314. #: FlatCAMApp.py:4924
  315. msgid "Preferences"
  316. msgstr "Настройки"
  317. #: FlatCAMApp.py:4944
  318. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  319. msgstr "[WARNING_NOTCL] Не выбран объект для переворота по оси Y."
  320. #: FlatCAMApp.py:4969
  321. msgid "[success] Flip on Y axis done."
  322. msgstr "[success] Переворот по оси Y завершён."
  323. #: FlatCAMApp.py:4971 FlatCAMApp.py:5011
  324. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  325. #: flatcamEditors/FlatCAMGrbEditor.py:5309 flatcamTools/ToolTransform.py:748
  326. #, python-format
  327. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  328. msgstr "[ERROR_NOTCL] Из-за %s, операция переворота не была выполнена."
  329. #: FlatCAMApp.py:4984
  330. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  331. msgstr "[WARNING_NOTCL] Не выбран объект для переворота по оси Х."
  332. #: FlatCAMApp.py:5009
  333. msgid "[success] Flip on X axis done."
  334. msgstr "[success] Переворот по оси Х завершён."
  335. #: FlatCAMApp.py:5024
  336. msgid "[WARNING_NOTCL] No object selected to Rotate."
  337. msgstr "[WARNING_NOTCL] Не выбран ни один объект для вращения."
  338. #: FlatCAMApp.py:5027 FlatCAMApp.py:5072 FlatCAMApp.py:5103
  339. msgid "Transform"
  340. msgstr "Преобразование"
  341. #: FlatCAMApp.py:5027 FlatCAMApp.py:5072 FlatCAMApp.py:5103
  342. msgid "Enter the Angle value:"
  343. msgstr "Введите значение угла:"
  344. #: FlatCAMApp.py:5057
  345. msgid "[success] Rotation done."
  346. msgstr "[success] Вращение завершено."
  347. #: FlatCAMApp.py:5059 flatcamEditors/FlatCAMGeoEditor.py:1298
  348. #: flatcamEditors/FlatCAMGrbEditor.py:5240 flatcamTools/ToolTransform.py:677
  349. #, python-format
  350. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  351. msgstr "[ERROR_NOTCL] Из-за %s вращение не было выполнено."
  352. #: FlatCAMApp.py:5070
  353. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  354. msgstr "[WARNING_NOTCL] Не выбран ни один объект для наклона/сдвига по оси X."
  355. #: FlatCAMApp.py:5091
  356. msgid "[success] Skew on X axis done."
  357. msgstr "[success] Наклон по оси X выполнен."
  358. #: FlatCAMApp.py:5101
  359. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  360. msgstr ""
  361. #: FlatCAMApp.py:5122
  362. msgid "[success] Skew on Y axis done."
  363. msgstr ""
  364. #: FlatCAMApp.py:5197 flatcamEditors/FlatCAMGeoEditor.py:937
  365. #: flatcamEditors/FlatCAMGrbEditor.py:2365
  366. #: flatcamEditors/FlatCAMGrbEditor.py:4831 flatcamGUI/ObjectUI.py:991
  367. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208
  368. #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131
  369. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479
  370. #: flatcamTools/ToolTransform.py:337
  371. msgid "Add"
  372. msgstr "Добавить"
  373. #: FlatCAMApp.py:5198 FlatCAMObj.py:3302
  374. #: flatcamEditors/FlatCAMGrbEditor.py:2370 flatcamGUI/FlatCAMGUI.py:532
  375. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:1619
  376. #: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/ObjectUI.py:1007
  377. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143
  378. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481
  379. msgid "Delete"
  380. msgstr "Удалить"
  381. #: FlatCAMApp.py:5210
  382. msgid "New Grid ..."
  383. msgstr "Новая сетка ..."
  384. #: FlatCAMApp.py:5211
  385. msgid "Enter a Grid Value:"
  386. msgstr "Введите размер сетки:"
  387. #: FlatCAMApp.py:5219 FlatCAMApp.py:5246
  388. msgid ""
  389. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  390. "format."
  391. msgstr ""
  392. "[WARNING_NOTCL] Пожалуйста, введите значение сетки с ненулевым значением в "
  393. "float формате."
  394. #: FlatCAMApp.py:5225
  395. msgid "[success] New Grid added ..."
  396. msgstr "[success] Новая сетка добавлена ..."
  397. #: FlatCAMApp.py:5228
  398. msgid "[WARNING_NOTCL] Grid already exists ..."
  399. msgstr ""
  400. #: FlatCAMApp.py:5231
  401. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  402. msgstr ""
  403. #: FlatCAMApp.py:5253
  404. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  405. msgstr ""
  406. #: FlatCAMApp.py:5256
  407. msgid "[success] Grid Value deleted ..."
  408. msgstr ""
  409. #: FlatCAMApp.py:5259
  410. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  411. msgstr ""
  412. #: FlatCAMApp.py:5298
  413. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  414. msgstr ""
  415. #: FlatCAMApp.py:5302
  416. msgid "Name copied on clipboard ..."
  417. msgstr "Имя скопировано в буфер обмена ..."
  418. #: FlatCAMApp.py:5595 FlatCAMApp.py:5598 FlatCAMApp.py:5601 FlatCAMApp.py:5604
  419. #: FlatCAMApp.py:5619 FlatCAMApp.py:5622 FlatCAMApp.py:5625 FlatCAMApp.py:5628
  420. #: FlatCAMApp.py:5668 FlatCAMApp.py:5671 FlatCAMApp.py:5674 FlatCAMApp.py:5677
  421. #: ObjectCollection.py:717 ObjectCollection.py:720 ObjectCollection.py:723
  422. #: ObjectCollection.py:726
  423. #, python-brace-format
  424. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  425. msgstr "[selected]<span style=\"color:{color};\">{name}</span> выбран"
  426. #: FlatCAMApp.py:5794
  427. msgid ""
  428. "There are files/objects opened in FlatCAM.\n"
  429. "Creating a New project will delete them.\n"
  430. "Do you want to Save the project?"
  431. msgstr ""
  432. "В FlatCAM открыты файлы/объекты.\n"
  433. "Создание нового проекта удалит их.\n"
  434. "Вы хотите сохранить проект?"
  435. #: FlatCAMApp.py:5815
  436. msgid "[success] New Project created..."
  437. msgstr "[success] Новый проект создан ..."
  438. #: FlatCAMApp.py:5923 FlatCAMApp.py:5926 flatcamGUI/FlatCAMGUI.py:613
  439. #: flatcamGUI/FlatCAMGUI.py:1834
  440. msgid "Open Gerber"
  441. msgstr "Открыть Gerber"
  442. #: FlatCAMApp.py:5931
  443. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  444. msgstr ""
  445. #: FlatCAMApp.py:5952 FlatCAMApp.py:5955 flatcamGUI/FlatCAMGUI.py:614
  446. #: flatcamGUI/FlatCAMGUI.py:1835
  447. msgid "Open Excellon"
  448. msgstr "Открыть Excellon"
  449. #: FlatCAMApp.py:5960
  450. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  451. msgstr ""
  452. #: FlatCAMApp.py:5982 FlatCAMApp.py:5985
  453. msgid "Open G-Code"
  454. msgstr "Открыть G-Code"
  455. #: FlatCAMApp.py:5990
  456. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  457. msgstr ""
  458. #: FlatCAMApp.py:6008 FlatCAMApp.py:6011
  459. msgid "Open Project"
  460. msgstr "Открыть проект"
  461. #: FlatCAMApp.py:6019
  462. msgid "[WARNING_NOTCL] Open Project cancelled."
  463. msgstr ""
  464. #: FlatCAMApp.py:6038 FlatCAMApp.py:6041
  465. msgid "Open Configuration File"
  466. msgstr "Открыть файл конфигурации"
  467. #: FlatCAMApp.py:6045
  468. msgid "[WARNING_NOTCL Open Config cancelled."
  469. msgstr "[WARNING_NOTCL] Открытие конфигурации завершено."
  470. #: FlatCAMApp.py:6060 FlatCAMApp.py:6308 FlatCAMApp.py:8519 FlatCAMApp.py:8539
  471. #: FlatCAMApp.py:8560 FlatCAMApp.py:8582
  472. msgid "[WARNING_NOTCL] No object selected."
  473. msgstr ""
  474. #: FlatCAMApp.py:6061 FlatCAMApp.py:6309
  475. msgid "Please Select a Geometry object to export"
  476. msgstr "Выберите объект Geometry для экспорта"
  477. #: FlatCAMApp.py:6072
  478. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  479. msgstr ""
  480. #: FlatCAMApp.py:6085 FlatCAMApp.py:6089
  481. msgid "Export SVG"
  482. msgstr "Экспорт SVG"
  483. #: FlatCAMApp.py:6094
  484. msgid "[WARNING_NOTCL] Export SVG cancelled."
  485. msgstr ""
  486. #: FlatCAMApp.py:6110
  487. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  488. msgstr ""
  489. #: FlatCAMApp.py:6116 FlatCAMApp.py:6120
  490. msgid "Export PNG Image"
  491. msgstr "Экспорт PNG изображения"
  492. #: FlatCAMApp.py:6125
  493. msgid "Export PNG cancelled."
  494. msgstr "Экспорт PNG завершён."
  495. #: FlatCAMApp.py:6144
  496. msgid ""
  497. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  498. msgstr ""
  499. #: FlatCAMApp.py:6149 FlatCAMApp.py:6272
  500. msgid ""
  501. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  502. msgstr ""
  503. #: FlatCAMApp.py:6161
  504. msgid "Save Gerber source file"
  505. msgstr "Сохранить исходный файл Gerber"
  506. #: FlatCAMApp.py:6166
  507. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  508. msgstr ""
  509. #: FlatCAMApp.py:6185
  510. msgid ""
  511. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  512. "export."
  513. msgstr ""
  514. #: FlatCAMApp.py:6190 FlatCAMApp.py:6231
  515. msgid ""
  516. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  517. msgstr ""
  518. #: FlatCAMApp.py:6198 FlatCAMApp.py:6202
  519. msgid "Save Excellon source file"
  520. msgstr "Сохранить исходный файл Excellon"
  521. #: FlatCAMApp.py:6207
  522. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  523. msgstr ""
  524. #: FlatCAMApp.py:6226
  525. msgid ""
  526. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  527. "export."
  528. msgstr ""
  529. #: FlatCAMApp.py:6239 FlatCAMApp.py:6243
  530. msgid "Export Excellon"
  531. msgstr "Экспорт Excellon"
  532. #: FlatCAMApp.py:6248
  533. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  534. msgstr ""
  535. #: FlatCAMApp.py:6267
  536. msgid ""
  537. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  538. msgstr ""
  539. "[WARNING_NOTCL] Нет выбранных объектов. Пожалуйста, выберите Gerber объект "
  540. "для экспорта."
  541. #: FlatCAMApp.py:6280 FlatCAMApp.py:6284
  542. msgid "Export Gerber"
  543. msgstr "Экспорт Gerber"
  544. #: FlatCAMApp.py:6289
  545. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  546. msgstr ""
  547. #: FlatCAMApp.py:6319
  548. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  549. msgstr ""
  550. #: FlatCAMApp.py:6333 FlatCAMApp.py:6337
  551. msgid "Export DXF"
  552. msgstr "Экспорт DXF"
  553. #: FlatCAMApp.py:6342
  554. msgid "[WARNING_NOTCL] Export DXF cancelled."
  555. msgstr ""
  556. #: FlatCAMApp.py:6362 FlatCAMApp.py:6365
  557. msgid "Import SVG"
  558. msgstr "Импорт SVG"
  559. #: FlatCAMApp.py:6373
  560. msgid "[WARNING_NOTCL] Open SVG cancelled."
  561. msgstr ""
  562. #: FlatCAMApp.py:6392 FlatCAMApp.py:6395
  563. msgid "Import DXF"
  564. msgstr "Импорт DXF"
  565. #: FlatCAMApp.py:6403
  566. msgid "[WARNING_NOTCL] Open DXF cancelled."
  567. msgstr ""
  568. #: FlatCAMApp.py:6421
  569. #, python-format
  570. msgid "%s"
  571. msgstr "%s"
  572. #: FlatCAMApp.py:6441
  573. msgid ""
  574. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  575. msgstr ""
  576. #: FlatCAMApp.py:6448
  577. msgid ""
  578. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  579. "file code."
  580. msgstr ""
  581. #: FlatCAMApp.py:6456
  582. msgid "Source Editor"
  583. msgstr "Редактор исходного кода"
  584. #: FlatCAMApp.py:6466
  585. #, python-format
  586. msgid "[ERROR]App.on_view_source() -->%s"
  587. msgstr ""
  588. #: FlatCAMApp.py:6478 FlatCAMApp.py:7621 FlatCAMObj.py:5573
  589. msgid "Code Editor"
  590. msgstr "Редактор кода"
  591. #: FlatCAMApp.py:6490
  592. msgid "Script Editor"
  593. msgstr "Редактор сценариев"
  594. #: FlatCAMApp.py:6493
  595. msgid ""
  596. "#\n"
  597. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  598. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  599. "html\n"
  600. "#\n"
  601. "\n"
  602. "# FlatCAM commands list:\n"
  603. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  604. "AlignDrillGrid, ClearShell, Cncjob,\n"
  605. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  606. "GeoUnion, GetNames, GetSys,\n"
  607. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  608. "ListSys, MillHoles, Mirror, New,\n"
  609. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  610. "Options, Paint, Panelize,\n"
  611. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  612. "SubtractRectangle, Version,\n"
  613. "# WriteGCode\n"
  614. "#\n"
  615. "\n"
  616. msgstr ""
  617. "#\n"
  618. "# СОЗДАЙТЕ НОВЫЙ СЦЕНАРИЙ FLATCAM TCL \n"
  619. "# Учебное пособие по TCL здесь: : https://www.tcl.tk/man/tcl8.5/tutorial/"
  620. "tcltutorial.html\n"
  621. "#\n"
  622. "\n"
  623. "# Список команд FlatCAM: \n"
  624. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  625. "AlignDrillGrid, ClearShell, Cncjob,\n"
  626. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  627. "GeoUnion, GetNames, GetSys,\n"
  628. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  629. "ListSys, MillHoles, Mirror, New,\n"
  630. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  631. "Options, Paint, Panelize,\n"
  632. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  633. "SubtractRectangle, Version,\n"
  634. "# WriteGCode\n"
  635. "#\n"
  636. "\n"
  637. #: FlatCAMApp.py:6516 FlatCAMApp.py:6519
  638. msgid "Open TCL script"
  639. msgstr "Открыть сценарий TCL"
  640. #: FlatCAMApp.py:6527
  641. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  642. msgstr ""
  643. #: FlatCAMApp.py:6539
  644. #, python-format
  645. msgid "[ERROR]App.on_fileopenscript() -->%s"
  646. msgstr ""
  647. #: FlatCAMApp.py:6565 FlatCAMApp.py:6568
  648. msgid "Run TCL script"
  649. msgstr "Запустить сценарий TCL"
  650. #: FlatCAMApp.py:6576
  651. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  652. msgstr ""
  653. #: FlatCAMApp.py:6622 FlatCAMApp.py:6626
  654. msgid "Save Project As ..."
  655. msgstr "Сохранить проект как..."
  656. #: FlatCAMApp.py:6623
  657. #, python-brace-format
  658. msgid "{l_save}/Project_{date}"
  659. msgstr "{l_save}/Project_{date}"
  660. #: FlatCAMApp.py:6631
  661. msgid "[WARNING_NOTCL] Save Project cancelled."
  662. msgstr ""
  663. #: FlatCAMApp.py:6676
  664. msgid "Exporting SVG"
  665. msgstr "Экспортирование SVG"
  666. #: FlatCAMApp.py:6710 FlatCAMApp.py:6816 FlatCAMApp.py:6931
  667. #, python-format
  668. msgid "[success] SVG file exported to %s"
  669. msgstr ""
  670. #: FlatCAMApp.py:6741 FlatCAMApp.py:6862
  671. #, python-format
  672. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  673. msgstr ""
  674. #: FlatCAMApp.py:6819 FlatCAMApp.py:6934
  675. msgid "Generating Film ... Please wait."
  676. msgstr "Создание фильма ... Пожалуйста, подождите."
  677. #: FlatCAMApp.py:7082
  678. #, python-format
  679. msgid "[success] Excellon file exported to %s"
  680. msgstr ""
  681. #: FlatCAMApp.py:7089
  682. msgid "Exporting Excellon"
  683. msgstr "Экспорт Excellon"
  684. #: FlatCAMApp.py:7094 FlatCAMApp.py:7101
  685. msgid "[ERROR_NOTCL] Could not export Excellon file."
  686. msgstr ""
  687. #: FlatCAMApp.py:7199
  688. #, python-format
  689. msgid "[success] Gerber file exported to %s"
  690. msgstr ""
  691. #: FlatCAMApp.py:7206
  692. msgid "Exporting Gerber"
  693. msgstr "Экспортирование Gerber"
  694. #: FlatCAMApp.py:7211 FlatCAMApp.py:7218
  695. msgid "[ERROR_NOTCL] Could not export Gerber file."
  696. msgstr ""
  697. #: FlatCAMApp.py:7258
  698. #, python-format
  699. msgid "[success] DXF file exported to %s"
  700. msgstr ""
  701. #: FlatCAMApp.py:7264
  702. msgid "Exporting DXF"
  703. msgstr "Экспорт DXF"
  704. #: FlatCAMApp.py:7269 FlatCAMApp.py:7276
  705. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  706. msgstr ""
  707. #: FlatCAMApp.py:7296 FlatCAMApp.py:7338 FlatCAMApp.py:7379
  708. msgid ""
  709. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  710. "Gerber are supported"
  711. msgstr ""
  712. #: FlatCAMApp.py:7306
  713. msgid "Importing SVG"
  714. msgstr "Импортирование SVG"
  715. #: FlatCAMApp.py:7317 FlatCAMApp.py:7359 FlatCAMApp.py:7399 FlatCAMApp.py:7475
  716. #: FlatCAMApp.py:7542 FlatCAMApp.py:7607 flatcamTools/ToolPDF.py:212
  717. #, python-format
  718. msgid "[success] Opened: %s"
  719. msgstr "[success] Открыт: %s"
  720. #: FlatCAMApp.py:7348
  721. msgid "Importing DXF"
  722. msgstr "Импорт DXF"
  723. #: FlatCAMApp.py:7387
  724. msgid "Importing Image"
  725. msgstr "Импорт изображения"
  726. #: FlatCAMApp.py:7428 FlatCAMApp.py:7430
  727. #, python-format
  728. msgid "[ERROR_NOTCL] Failed to open file: %s"
  729. msgstr ""
  730. #: FlatCAMApp.py:7433
  731. #, python-brace-format
  732. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  733. msgstr ""
  734. #: FlatCAMApp.py:7439 FlatCAMObj.py:4271
  735. #: flatcamEditors/FlatCAMExcEditor.py:2041
  736. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  737. msgstr "[ERROR] Произошла внутренняя ошибка. Посмотрите в командную строку.\n"
  738. #: FlatCAMApp.py:7448
  739. msgid ""
  740. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  741. msgstr ""
  742. #: FlatCAMApp.py:7456
  743. msgid "Opening Gerber"
  744. msgstr "Открытие Gerber"
  745. #: FlatCAMApp.py:7466
  746. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  747. msgstr ""
  748. #: FlatCAMApp.py:7501 flatcamTools/ToolPcbWizard.py:421
  749. msgid "[ERROR_NOTCL] This is not Excellon file."
  750. msgstr ""
  751. #: FlatCAMApp.py:7504
  752. #, python-format
  753. msgid "[ERROR_NOTCL] Cannot open file: %s"
  754. msgstr ""
  755. #: FlatCAMApp.py:7509 flatcamTools/ToolPcbWizard.py:429
  756. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  757. msgstr ""
  758. #: FlatCAMApp.py:7525 flatcamTools/ToolPDF.py:262
  759. #: flatcamTools/ToolPcbWizard.py:442
  760. #, python-format
  761. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  762. msgstr ""
  763. #: FlatCAMApp.py:7528
  764. msgid "Opening Excellon."
  765. msgstr "Открытие Excellon."
  766. #: FlatCAMApp.py:7535
  767. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  768. msgstr ""
  769. #: FlatCAMApp.py:7574
  770. #, python-format
  771. msgid "[ERROR_NOTCL] Failed to open %s"
  772. msgstr ""
  773. #: FlatCAMApp.py:7584
  774. msgid "[ERROR_NOTCL] This is not GCODE"
  775. msgstr ""
  776. #: FlatCAMApp.py:7590
  777. msgid "Opening G-Code."
  778. msgstr "Открытие G-Code."
  779. #: FlatCAMApp.py:7598
  780. msgid ""
  781. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  782. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  783. "processing"
  784. msgstr ""
  785. #: FlatCAMApp.py:7638
  786. #, python-format
  787. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  788. msgstr ""
  789. #: FlatCAMApp.py:7663 FlatCAMApp.py:7679
  790. #, python-format
  791. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  792. msgstr ""
  793. #: FlatCAMApp.py:7705
  794. #, python-format
  795. msgid "[success] Project loaded from: %s"
  796. msgstr ""
  797. #: FlatCAMApp.py:7835
  798. msgid "Available commands:\n"
  799. msgstr "Доступные команды:\n"
  800. #: FlatCAMApp.py:7837
  801. msgid ""
  802. "\n"
  803. "\n"
  804. "Type help <command_name> for usage.\n"
  805. " Example: help open_gerber"
  806. msgstr ""
  807. "\n"
  808. "\n"
  809. "Для дополнительной информации ведите help <имя_команды> .\n"
  810. "Пример: help open_gerber"
  811. #: FlatCAMApp.py:7985
  812. msgid "Shows list of commands."
  813. msgstr "Показывает список команд."
  814. #: FlatCAMApp.py:8042
  815. msgid "[ERROR_NOTCL] Failed to load recent item list."
  816. msgstr ""
  817. #: FlatCAMApp.py:8049
  818. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  819. msgstr ""
  820. #: FlatCAMApp.py:8110 flatcamGUI/FlatCAMGUI.py:973
  821. msgid "<b>Shortcut Key List</b>"
  822. msgstr "<b>Список сочетаний клавиш</b>"
  823. #: FlatCAMApp.py:8117
  824. msgid ""
  825. "\n"
  826. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  827. "Project Tab</strong></span></p>\n"
  828. "\n"
  829. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  830. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  831. "\n"
  832. "<ol>\n"
  833. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  834. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  835. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  836. "<br />\n"
  837. "\t<br />\n"
  838. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  839. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  840. "through the menu/toolbar links offered within the app.</span><br />\n"
  841. "\t&nbsp;</li>\n"
  842. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  843. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  844. "strong>(more simpler is to double click the object name in the Project Tab), "
  845. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  846. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  847. ">\n"
  848. "\t<br />\n"
  849. "\tIf the selection of the object is done on the canvas by single click "
  850. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  851. "properties will be displayed into the Selected Tab. Alternatively, double "
  852. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  853. "strong> and populate it even if it was out of focus.<br />\n"
  854. "\t<br />\n"
  855. "\tYou can change the parameters in this screen and the flow direction is "
  856. "like this:<br />\n"
  857. "\t<br />\n"
  858. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  859. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  860. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  861. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  862. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  863. "span></li>\n"
  864. "</ol>\n"
  865. "\n"
  866. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  867. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  868. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  869. "\n"
  870. " "
  871. msgstr ""
  872. #: FlatCAMApp.py:8221
  873. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  874. msgstr ""
  875. #: FlatCAMApp.py:8228
  876. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  877. msgstr ""
  878. #: FlatCAMApp.py:8238
  879. msgid "[success] FlatCAM is up to date!"
  880. msgstr "[success] FlatCAM в актуальном состоянии!"
  881. #: FlatCAMApp.py:8243
  882. msgid "Newer Version Available"
  883. msgstr "Доступна новая версия"
  884. #: FlatCAMApp.py:8244
  885. msgid ""
  886. "There is a newer version of FlatCAM available for download:\n"
  887. "\n"
  888. msgstr ""
  889. "Новая версия FlatCAM доступна для загрузки:\n"
  890. "\n"
  891. #: FlatCAMApp.py:8246
  892. msgid "info"
  893. msgstr "инфо"
  894. #: FlatCAMApp.py:8265
  895. msgid "[success] All plots disabled."
  896. msgstr ""
  897. #: FlatCAMApp.py:8271
  898. msgid "[success] All non selected plots disabled."
  899. msgstr ""
  900. #: FlatCAMApp.py:8277
  901. msgid "[success] All plots enabled."
  902. msgstr ""
  903. #: FlatCAMApp.py:8388
  904. msgid "Saving FlatCAM Project"
  905. msgstr "Сохранение проекта FlatCAM"
  906. #: FlatCAMApp.py:8409 FlatCAMApp.py:8440
  907. #, python-format
  908. msgid "[success] Project saved to: %s"
  909. msgstr ""
  910. #: FlatCAMApp.py:8427
  911. #, python-format
  912. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  913. msgstr ""
  914. #: FlatCAMApp.py:8434
  915. #, python-format
  916. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  917. msgstr ""
  918. #: FlatCAMApp.py:8442
  919. #, python-format
  920. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  921. msgstr ""
  922. #: FlatCAMObj.py:201
  923. #, python-brace-format
  924. msgid "[success] Name changed from {old} to {new}"
  925. msgstr ""
  926. #: FlatCAMObj.py:548 FlatCAMObj.py:2033 FlatCAMObj.py:3307 FlatCAMObj.py:5470
  927. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  928. msgstr "<span style=\"color:green;\"><b>Базовый</b></span>"
  929. #: FlatCAMObj.py:560 FlatCAMObj.py:2049 FlatCAMObj.py:3329 FlatCAMObj.py:5476
  930. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  931. msgstr "<span style=\"color:red;\"><b>Расширенный</b></span>"
  932. #: FlatCAMObj.py:923 FlatCAMObj.py:978
  933. #, python-format
  934. msgid "[success] Isolation geometry created: %s"
  935. msgstr ""
  936. #: FlatCAMObj.py:1157
  937. msgid "Plotting Apertures"
  938. msgstr ""
  939. #: FlatCAMObj.py:1872 flatcamEditors/FlatCAMExcEditor.py:1332
  940. msgid "Total Drills"
  941. msgstr "Всего свёрел"
  942. #: FlatCAMObj.py:1898 flatcamEditors/FlatCAMExcEditor.py:1364
  943. msgid "Total Slots"
  944. msgstr "Всего ячеек"
  945. #: FlatCAMObj.py:2105 FlatCAMObj.py:3380 FlatCAMObj.py:3687 FlatCAMObj.py:3874
  946. #: FlatCAMObj.py:3887 FlatCAMObj.py:4004 FlatCAMObj.py:4419 FlatCAMObj.py:4654
  947. #: FlatCAMObj.py:5062 flatcamEditors/FlatCAMExcEditor.py:1439
  948. #: flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318
  949. #: flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345
  950. #: flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372
  951. #: flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394
  952. #: flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241
  953. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:480
  954. #: flatcamTools/ToolNonCopperClear.py:551
  955. #: flatcamTools/ToolNonCopperClear.py:627
  956. #: flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538
  957. #: flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743
  958. #: flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999
  959. #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397
  960. #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423
  961. #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446
  962. #: flatcamTools/ToolSolderPaste.py:756 flatcamTools/ToolSolderPaste.py:827
  963. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  964. msgstr ""
  965. #: FlatCAMObj.py:2329 FlatCAMObj.py:2420 FlatCAMObj.py:2542
  966. msgid ""
  967. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  968. msgstr ""
  969. #: FlatCAMObj.py:2336
  970. msgid ""
  971. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  972. msgstr ""
  973. #: FlatCAMObj.py:2350 FlatCAMObj.py:2444 FlatCAMObj.py:2562
  974. msgid "Tool_nr"
  975. msgstr "№ инструмента"
  976. #: FlatCAMObj.py:2350 FlatCAMObj.py:2444 FlatCAMObj.py:2562
  977. #: flatcamEditors/FlatCAMExcEditor.py:785
  978. #: flatcamEditors/FlatCAMExcEditor.py:1984 flatcamGUI/ObjectUI.py:556
  979. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  980. #: flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81
  981. msgid "Diameter"
  982. msgstr "Диаметр"
  983. #: FlatCAMObj.py:2350 FlatCAMObj.py:2444 FlatCAMObj.py:2562
  984. msgid "Drills_Nr"
  985. msgstr "№ сверла"
  986. #: FlatCAMObj.py:2350 FlatCAMObj.py:2444 FlatCAMObj.py:2562
  987. msgid "Slots_Nr"
  988. msgstr "№ ячейки"
  989. #: FlatCAMObj.py:2430
  990. msgid ""
  991. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  992. msgstr ""
  993. #: FlatCAMObj.py:2604 FlatCAMObj.py:4307 FlatCAMObj.py:4520 FlatCAMObj.py:4837
  994. msgid ""
  995. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  996. "options[\"z_pdepth\"]"
  997. msgstr ""
  998. #: FlatCAMObj.py:2616 FlatCAMObj.py:4319 FlatCAMObj.py:4532 FlatCAMObj.py:4849
  999. msgid ""
  1000. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1001. "self.options[\"feedrate_probe\"]"
  1002. msgstr ""
  1003. #: FlatCAMObj.py:2648 FlatCAMObj.py:4724 FlatCAMObj.py:4729 FlatCAMObj.py:4875
  1004. msgid "Generating CNC Code"
  1005. msgstr "Генерация кода ЧПУ"
  1006. #: FlatCAMObj.py:2674 FlatCAMObj.py:5021 camlib.py:5166 camlib.py:5625
  1007. #: camlib.py:5888
  1008. msgid ""
  1009. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1010. "format (x, y) \n"
  1011. "but now there is only one value, not two. "
  1012. msgstr ""
  1013. #: FlatCAMObj.py:3022 FlatCAMObj.py:3930 FlatCAMObj.py:3931 FlatCAMObj.py:3940
  1014. msgid "Iso"
  1015. msgstr "Iso"
  1016. #: FlatCAMObj.py:3022 FlatCAMObj.py:3265 FlatCAMObj.py:3552
  1017. msgid "Rough"
  1018. msgstr "Грубый"
  1019. #: FlatCAMObj.py:3022
  1020. msgid "Finish"
  1021. msgstr "Конец"
  1022. #: FlatCAMObj.py:3300 flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:727
  1023. #: flatcamGUI/FlatCAMGUI.py:1618 flatcamGUI/FlatCAMGUI.py:1953
  1024. #: flatcamGUI/ObjectUI.py:999
  1025. msgid "Copy"
  1026. msgstr "Копировать"
  1027. #: FlatCAMObj.py:3522
  1028. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1029. msgstr ""
  1030. #: FlatCAMObj.py:3597
  1031. msgid "[success] Tool added in Tool Table."
  1032. msgstr ""
  1033. #: FlatCAMObj.py:3602
  1034. msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1035. msgstr ""
  1036. #: FlatCAMObj.py:3632 FlatCAMObj.py:3642
  1037. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1038. msgstr ""
  1039. #: FlatCAMObj.py:3671
  1040. msgid "[success] Tool was copied in Tool Table."
  1041. msgstr ""
  1042. #: FlatCAMObj.py:3704
  1043. msgid "[success] Tool was edited in Tool Table."
  1044. msgstr ""
  1045. #: FlatCAMObj.py:3735 FlatCAMObj.py:3745
  1046. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1047. msgstr ""
  1048. #: FlatCAMObj.py:3769
  1049. msgid "[success] Tool was deleted in Tool Table."
  1050. msgstr ""
  1051. #: FlatCAMObj.py:4190
  1052. #, python-format
  1053. msgid ""
  1054. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1055. msgstr ""
  1056. #: FlatCAMObj.py:4207
  1057. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1058. msgstr ""
  1059. #: FlatCAMObj.py:4234
  1060. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1061. msgstr ""
  1062. #: FlatCAMObj.py:4272
  1063. #, python-format
  1064. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1065. msgstr ""
  1066. #: FlatCAMObj.py:4428 FlatCAMObj.py:4663
  1067. msgid ""
  1068. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1069. "Add a Tool Offset or change the Offset Type."
  1070. msgstr ""
  1071. #: FlatCAMObj.py:4544 flatcamTools/ToolSolderPaste.py:1107
  1072. #: flatcamTools/ToolSolderPaste.py:1162
  1073. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1074. msgstr ""
  1075. #: FlatCAMObj.py:4908 FlatCAMObj.py:4918 camlib.py:3346 camlib.py:3355
  1076. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1077. msgstr ""
  1078. #: FlatCAMObj.py:4956
  1079. msgid "[success] Geometry Scale done."
  1080. msgstr ""
  1081. #: FlatCAMObj.py:4973 camlib.py:3425
  1082. msgid ""
  1083. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1084. "one value in the Offset field."
  1085. msgstr ""
  1086. #: FlatCAMObj.py:4993
  1087. msgid "[success] Geometry Offset done."
  1088. msgstr ""
  1089. #: FlatCAMObj.py:5538 FlatCAMObj.py:5543 flatcamTools/ToolSolderPaste.py:1361
  1090. msgid "Export Machine Code ..."
  1091. msgstr "Экспорт GCode ..."
  1092. #: FlatCAMObj.py:5549 flatcamTools/ToolSolderPaste.py:1364
  1093. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1094. msgstr ""
  1095. #: FlatCAMObj.py:5562
  1096. #, python-format
  1097. msgid "[success] Machine Code file saved to: %s"
  1098. msgstr ""
  1099. #: FlatCAMObj.py:5584
  1100. #, python-format
  1101. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1102. msgstr ""
  1103. #: FlatCAMObj.py:5701
  1104. #, python-format
  1105. msgid ""
  1106. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1107. "CNCJob object."
  1108. msgstr ""
  1109. #: FlatCAMObj.py:5754
  1110. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1111. msgstr ""
  1112. #: FlatCAMObj.py:5767
  1113. msgid ""
  1114. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1115. "empty."
  1116. msgstr ""
  1117. #: FlatCAMObj.py:5774
  1118. msgid "[success] Toolchange G-code was replaced by a custom code."
  1119. msgstr ""
  1120. #: FlatCAMObj.py:5789 flatcamTools/ToolSolderPaste.py:1390
  1121. msgid "[WARNING_NOTCL] No such file or directory"
  1122. msgstr ""
  1123. #: FlatCAMObj.py:5809 FlatCAMObj.py:5821
  1124. msgid ""
  1125. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1126. "'toolchange_custom'"
  1127. msgstr ""
  1128. #: FlatCAMObj.py:5827
  1129. msgid "[ERROR] There is no postprocessor file."
  1130. msgstr ""
  1131. #: ObjectCollection.py:419
  1132. #, python-brace-format
  1133. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1134. msgstr "Объект переименован из <b>{old}</b> в <b>{new}</b>"
  1135. #: ObjectCollection.py:757
  1136. #, python-format
  1137. msgid "[ERROR] Cause of error: %s"
  1138. msgstr ""
  1139. #: camlib.py:202
  1140. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1141. msgstr ""
  1142. #: camlib.py:1390
  1143. msgid "[success] Object was mirrored ..."
  1144. msgstr ""
  1145. #: camlib.py:1392
  1146. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1147. msgstr ""
  1148. #: camlib.py:1428
  1149. msgid "[success] Object was rotated ..."
  1150. msgstr ""
  1151. #: camlib.py:1430
  1152. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1153. msgstr ""
  1154. #: camlib.py:1464
  1155. msgid "[success] Object was skewed ..."
  1156. msgstr ""
  1157. #: camlib.py:1466
  1158. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1159. msgstr ""
  1160. #: camlib.py:2728 camlib.py:2813
  1161. #, python-format
  1162. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1163. msgstr ""
  1164. #: camlib.py:2729 camlib.py:2814
  1165. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1166. msgstr ""
  1167. #: camlib.py:2778
  1168. #, python-format
  1169. msgid ""
  1170. "[ERROR] Region does not have enough points. File will be processed but there "
  1171. "are parser errors. Line number: %s"
  1172. msgstr ""
  1173. #: camlib.py:3170
  1174. #, python-format
  1175. msgid ""
  1176. "[ERROR]Gerber Parser ERROR.\n"
  1177. "%s:"
  1178. msgstr ""
  1179. #: camlib.py:3392
  1180. msgid "[success] Gerber Scale done."
  1181. msgstr ""
  1182. #: camlib.py:3458
  1183. msgid "[success] Gerber Offset done."
  1184. msgstr ""
  1185. #: camlib.py:3512
  1186. msgid "[success] Gerber Mirror done."
  1187. msgstr ""
  1188. #: camlib.py:3558
  1189. msgid "[success] Gerber Skew done."
  1190. msgstr ""
  1191. #: camlib.py:3596
  1192. msgid "[success] Gerber Rotate done."
  1193. msgstr ""
  1194. #: camlib.py:3875
  1195. #, python-format
  1196. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1197. msgstr ""
  1198. #: camlib.py:3990
  1199. #, python-format
  1200. msgid ""
  1201. "[WARNING] No tool diameter info's. See shell.\n"
  1202. "A tool change event: T%s was found but the Excellon file have no "
  1203. "informations regarding the tool diameters therefore the application will try "
  1204. "to load it by using some 'fake' diameters.\n"
  1205. "The user needs to edit the resulting Excellon object and change the "
  1206. "diameters to reflect the real diameters."
  1207. msgstr ""
  1208. #: camlib.py:4455
  1209. #, python-brace-format
  1210. msgid ""
  1211. "[ERROR] Excellon Parser error.\n"
  1212. "Parsing Failed. Line {l_nr}: {line}\n"
  1213. msgstr ""
  1214. #: camlib.py:4532
  1215. msgid ""
  1216. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1217. "not having a tool associated.\n"
  1218. "Check the resulting GCode."
  1219. msgstr ""
  1220. #: camlib.py:5075
  1221. #, python-format
  1222. msgid "[ERROR] There is no such parameter: %s"
  1223. msgstr ""
  1224. #: camlib.py:5145
  1225. msgid ""
  1226. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1227. "drill into material.\n"
  1228. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1229. "therefore the app will convert the value to negative. Check the resulting "
  1230. "CNC code (Gcode etc)."
  1231. msgstr ""
  1232. #: camlib.py:5152 camlib.py:5648 camlib.py:5911
  1233. #, python-format
  1234. msgid ""
  1235. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1236. msgstr ""
  1237. #: camlib.py:5381 camlib.py:5478 camlib.py:5536
  1238. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1239. msgstr ""
  1240. #: camlib.py:5483
  1241. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1242. msgstr ""
  1243. #: camlib.py:5636 camlib.py:5899
  1244. msgid ""
  1245. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1246. "combinations of other parameters."
  1247. msgstr ""
  1248. #: camlib.py:5641 camlib.py:5904
  1249. msgid ""
  1250. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1251. "cut into material.\n"
  1252. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1253. "therefore the app will convert the value to negative.Check the resulting CNC "
  1254. "code (Gcode etc)."
  1255. msgstr ""
  1256. #: camlib.py:5653 camlib.py:5916
  1257. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1258. msgstr ""
  1259. #: camlib.py:5657 camlib.py:5920
  1260. msgid ""
  1261. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1262. "to travel between cuts.\n"
  1263. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1264. "therefore the app will convert the value to positive.Check the resulting CNC "
  1265. "code (Gcode etc)."
  1266. msgstr ""
  1267. #: camlib.py:5664 camlib.py:5927
  1268. #, python-format
  1269. msgid ""
  1270. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1271. msgstr ""
  1272. #: camlib.py:5794
  1273. #, python-format
  1274. msgid "[ERROR]Expected a Geometry, got %s"
  1275. msgstr ""
  1276. #: camlib.py:5800
  1277. msgid ""
  1278. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1279. "solid_geometry."
  1280. msgstr ""
  1281. #: camlib.py:5839
  1282. msgid ""
  1283. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1284. "current_geometry.\n"
  1285. "Raise the value (in module) and try again."
  1286. msgstr ""
  1287. #: camlib.py:6053
  1288. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1289. msgstr ""
  1290. #: flatcamEditors/FlatCAMExcEditor.py:46
  1291. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1292. msgstr ""
  1293. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:165
  1294. #: flatcamEditors/FlatCAMExcEditor.py:447
  1295. #: flatcamEditors/FlatCAMExcEditor.py:472
  1296. #: flatcamEditors/FlatCAMGrbEditor.py:451
  1297. #: flatcamEditors/FlatCAMGrbEditor.py:1762
  1298. #: flatcamEditors/FlatCAMGrbEditor.py:1790
  1299. msgid "Click on target location ..."
  1300. msgstr "Нажмите на целевой точке ..."
  1301. #: flatcamEditors/FlatCAMExcEditor.py:108
  1302. msgid "[success] Done. Drill added."
  1303. msgstr "[success] Готово. Сверло добавлено."
  1304. #: flatcamEditors/FlatCAMExcEditor.py:150
  1305. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1306. msgstr ""
  1307. #: flatcamEditors/FlatCAMExcEditor.py:182
  1308. msgid "Click on the Drill Circular Array Start position"
  1309. msgstr ""
  1310. #: flatcamEditors/FlatCAMExcEditor.py:204
  1311. #: flatcamEditors/FlatCAMGrbEditor.py:494
  1312. msgid ""
  1313. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1314. "separator."
  1315. msgstr ""
  1316. #: flatcamEditors/FlatCAMExcEditor.py:207
  1317. #: flatcamEditors/FlatCAMGrbEditor.py:497
  1318. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  1319. msgstr ""
  1320. #: flatcamEditors/FlatCAMExcEditor.py:305
  1321. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1322. msgstr ""
  1323. #: flatcamEditors/FlatCAMExcEditor.py:322
  1324. msgid "[success] Done. Drill Array added."
  1325. msgstr ""
  1326. #: flatcamEditors/FlatCAMExcEditor.py:333
  1327. msgid "Click on the Drill(s) to resize ..."
  1328. msgstr "Нажмите на сверло для изменения размера ..."
  1329. #: flatcamEditors/FlatCAMExcEditor.py:353
  1330. msgid ""
  1331. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1332. msgstr ""
  1333. #: flatcamEditors/FlatCAMExcEditor.py:423
  1334. msgid "[success] Done. Drill Resize completed."
  1335. msgstr ""
  1336. #: flatcamEditors/FlatCAMExcEditor.py:426
  1337. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1338. msgstr ""
  1339. #: flatcamEditors/FlatCAMExcEditor.py:449
  1340. #: flatcamEditors/FlatCAMGrbEditor.py:1764
  1341. msgid "Click on reference location ..."
  1342. msgstr "Кликните на конечную точку ..."
  1343. #: flatcamEditors/FlatCAMExcEditor.py:504
  1344. msgid "[success] Done. Drill(s) Move completed."
  1345. msgstr ""
  1346. #: flatcamEditors/FlatCAMExcEditor.py:557
  1347. msgid "[success] Done. Drill(s) copied."
  1348. msgstr ""
  1349. #: flatcamEditors/FlatCAMExcEditor.py:758
  1350. msgid "Excellon Editor"
  1351. msgstr "Редактор Excellon"
  1352. #: flatcamEditors/FlatCAMExcEditor.py:765
  1353. #: flatcamEditors/FlatCAMGrbEditor.py:2250
  1354. msgid "Name:"
  1355. msgstr "Имя:"
  1356. #: flatcamEditors/FlatCAMExcEditor.py:771 flatcamTools/ToolNonCopperClear.py:72
  1357. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1358. msgid "Tools Table"
  1359. msgstr "Таблица инструментов"
  1360. #: flatcamEditors/FlatCAMExcEditor.py:773 flatcamGUI/ObjectUI.py:538
  1361. msgid ""
  1362. "Tools in this Excellon object\n"
  1363. "when are used for drilling."
  1364. msgstr ""
  1365. "Инструменты для Excellon объекта\n"
  1366. "используемые для сверления."
  1367. #: flatcamEditors/FlatCAMExcEditor.py:793
  1368. msgid "Add/Delete Tool"
  1369. msgstr "Добавить/Удалить инструмент"
  1370. #: flatcamEditors/FlatCAMExcEditor.py:795
  1371. msgid ""
  1372. "Add/Delete a tool to the tool list\n"
  1373. "for this Excellon object."
  1374. msgstr ""
  1375. "Добавляет/Удаляет инструмент в списоке инструментов\n"
  1376. "для этого Excellon объекта ."
  1377. #: flatcamEditors/FlatCAMExcEditor.py:803 flatcamTools/ToolCutOut.py:77
  1378. msgid "Tool Dia:"
  1379. msgstr "Диаметр инструмента:"
  1380. #: flatcamEditors/FlatCAMExcEditor.py:805 flatcamGUI/ObjectUI.py:978
  1381. msgid "Diameter for the new tool"
  1382. msgstr "Диаметр нового инструмента"
  1383. #: flatcamEditors/FlatCAMExcEditor.py:814
  1384. msgid "Add Tool"
  1385. msgstr "Добавить инструмент"
  1386. #: flatcamEditors/FlatCAMExcEditor.py:816
  1387. msgid ""
  1388. "Add a new tool to the tool list\n"
  1389. "with the diameter specified above."
  1390. msgstr ""
  1391. "Добляет новый инструмент в список инструментов\n"
  1392. "с диаметром, указанным выше."
  1393. #: flatcamEditors/FlatCAMExcEditor.py:826
  1394. msgid "Delete Tool"
  1395. msgstr "Удалить инструмент"
  1396. #: flatcamEditors/FlatCAMExcEditor.py:828
  1397. msgid ""
  1398. "Delete a tool in the tool list\n"
  1399. "by selecting a row in the tool table."
  1400. msgstr ""
  1401. "Удаляет инструмент из списка инструментов\n"
  1402. "в выбранной строке таблицы инструментов."
  1403. #: flatcamEditors/FlatCAMExcEditor.py:846
  1404. msgid "Resize Drill(s)"
  1405. msgstr "Изменить размер сверла"
  1406. #: flatcamEditors/FlatCAMExcEditor.py:848
  1407. msgid "Resize a drill or a selection of drills."
  1408. msgstr "Изменяет размер сверла или выбранных свёрел."
  1409. #: flatcamEditors/FlatCAMExcEditor.py:855
  1410. msgid "Resize Dia:"
  1411. msgstr "Изменить диаметр:"
  1412. #: flatcamEditors/FlatCAMExcEditor.py:857
  1413. msgid "Diameter to resize to."
  1414. msgstr "Диаметр для изменения."
  1415. #: flatcamEditors/FlatCAMExcEditor.py:865
  1416. msgid "Resize"
  1417. msgstr "Изменить"
  1418. #: flatcamEditors/FlatCAMExcEditor.py:867
  1419. msgid "Resize drill(s)"
  1420. msgstr "Изменить размер сверла"
  1421. #: flatcamEditors/FlatCAMExcEditor.py:889 flatcamGUI/FlatCAMGUI.py:1615
  1422. msgid "Add Drill Array"
  1423. msgstr "Добавить массив свёрел"
  1424. #: flatcamEditors/FlatCAMExcEditor.py:891
  1425. msgid "Add an array of drills (linear or circular array)"
  1426. msgstr "Добавить массив свёрел (линейный или круговой массив)"
  1427. #: flatcamEditors/FlatCAMExcEditor.py:897
  1428. msgid ""
  1429. "Select the type of drills array to create.\n"
  1430. "It can be Linear X(Y) or Circular"
  1431. msgstr ""
  1432. "Выберите тип массива свёрел для создания.\n"
  1433. "Это может быть линейный X (Y) или круговой"
  1434. #: flatcamEditors/FlatCAMExcEditor.py:900
  1435. #: flatcamEditors/FlatCAMGrbEditor.py:2483
  1436. msgid "Linear"
  1437. msgstr "Линейный"
  1438. #: flatcamEditors/FlatCAMExcEditor.py:901
  1439. #: flatcamEditors/FlatCAMGrbEditor.py:2484
  1440. msgid "Circular"
  1441. msgstr "Круговой"
  1442. #: flatcamEditors/FlatCAMExcEditor.py:908
  1443. msgid "Nr of drills:"
  1444. msgstr "№ сверла:"
  1445. #: flatcamEditors/FlatCAMExcEditor.py:910
  1446. msgid "Specify how many drills to be in the array."
  1447. msgstr "Укажите, сколько свёрел должно быть в массиве."
  1448. #: flatcamEditors/FlatCAMExcEditor.py:927
  1449. #: flatcamEditors/FlatCAMExcEditor.py:972
  1450. #: flatcamEditors/FlatCAMGrbEditor.py:2510
  1451. #: flatcamEditors/FlatCAMGrbEditor.py:2555
  1452. msgid "Direction:"
  1453. msgstr "Направление:"
  1454. #: flatcamEditors/FlatCAMExcEditor.py:929
  1455. #: flatcamEditors/FlatCAMGrbEditor.py:2512
  1456. msgid ""
  1457. "Direction on which the linear array is oriented:\n"
  1458. "- 'X' - horizontal axis \n"
  1459. "- 'Y' - vertical axis or \n"
  1460. "- 'Angle' - a custom angle for the array inclination"
  1461. msgstr ""
  1462. "Направление, на которое ориентируется линейный массив:\n"
  1463. "- 'X' - горизонтальная ось\n"
  1464. "- 'Y' - вертикальная ось или\n"
  1465. "- 'Угол' - произвольный угол наклона массива"
  1466. #: flatcamEditors/FlatCAMExcEditor.py:942
  1467. #: flatcamEditors/FlatCAMGrbEditor.py:2525
  1468. msgid "Pitch:"
  1469. msgstr "Подача:"
  1470. #: flatcamEditors/FlatCAMExcEditor.py:944
  1471. #: flatcamEditors/FlatCAMGrbEditor.py:2527
  1472. msgid "Pitch = Distance between elements of the array."
  1473. msgstr "Подача = Расстояние между элементами массива."
  1474. #: flatcamEditors/FlatCAMExcEditor.py:951
  1475. #: flatcamEditors/FlatCAMExcEditor.py:987
  1476. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1477. #: flatcamEditors/FlatCAMGrbEditor.py:2534
  1478. #: flatcamEditors/FlatCAMGrbEditor.py:2570
  1479. #: flatcamEditors/FlatCAMGrbEditor.py:4558 flatcamTools/ToolTransform.py:68
  1480. msgid "Angle:"
  1481. msgstr "Угол:"
  1482. #: flatcamEditors/FlatCAMExcEditor.py:953
  1483. #: flatcamEditors/FlatCAMGrbEditor.py:2536
  1484. msgid ""
  1485. "Angle at which the linear array is placed.\n"
  1486. "The precision is of max 2 decimals.\n"
  1487. "Min value is: -359.99 degrees.\n"
  1488. "Max value is: 360.00 degrees."
  1489. msgstr ""
  1490. "Угол, под которым расположен линейный массив.\n"
  1491. "Точность составляет не более 2 десятичных знаков.\n"
  1492. "Минимальное значение: -359.99 градусов.\n"
  1493. "Максимальное значение: 360.00 градусов."
  1494. #: flatcamEditors/FlatCAMExcEditor.py:974
  1495. #: flatcamEditors/FlatCAMGrbEditor.py:2557
  1496. msgid ""
  1497. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1498. "clockwise."
  1499. msgstr ""
  1500. "Направление для кругового массива. Может быть CW = по часовой стрелке или "
  1501. "CCW = против часовой стрелки."
  1502. #: flatcamEditors/FlatCAMExcEditor.py:989
  1503. #: flatcamEditors/FlatCAMGrbEditor.py:2572
  1504. msgid "Angle at which each element in circular array is placed."
  1505. msgstr "Угол, под которым расположен каждый элемент в круговом массиве."
  1506. #: flatcamEditors/FlatCAMExcEditor.py:1452
  1507. msgid ""
  1508. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1509. "Save and reedit Excellon if you need to add this tool. "
  1510. msgstr ""
  1511. #: flatcamEditors/FlatCAMExcEditor.py:1461 flatcamGUI/FlatCAMGUI.py:3002
  1512. #, python-brace-format
  1513. msgid "[success] Added new tool with dia: {dia} {units}"
  1514. msgstr ""
  1515. #: flatcamEditors/FlatCAMExcEditor.py:1493
  1516. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1517. msgstr ""
  1518. #: flatcamEditors/FlatCAMExcEditor.py:1526
  1519. #, python-brace-format
  1520. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1521. msgstr ""
  1522. #: flatcamEditors/FlatCAMExcEditor.py:2038
  1523. msgid ""
  1524. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1525. "creation."
  1526. msgstr ""
  1527. #: flatcamEditors/FlatCAMExcEditor.py:2047
  1528. msgid "Creating Excellon."
  1529. msgstr "Создание Excellon."
  1530. #: flatcamEditors/FlatCAMExcEditor.py:2056
  1531. msgid "[success] Excellon editing finished."
  1532. msgstr ""
  1533. #: flatcamEditors/FlatCAMExcEditor.py:2073
  1534. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1535. msgstr ""
  1536. #: flatcamEditors/FlatCAMExcEditor.py:2605
  1537. msgid "[success] Done. Drill(s) deleted."
  1538. msgstr ""
  1539. #: flatcamEditors/FlatCAMExcEditor.py:2675
  1540. #: flatcamEditors/FlatCAMGrbEditor.py:4318
  1541. msgid "Click on the circular array Center position"
  1542. msgstr "Нажмите на центральную позицию кругового массива"
  1543. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1544. #: flatcamEditors/FlatCAMGrbEditor.py:2400
  1545. msgid "Buffer distance:"
  1546. msgstr "Буферное расстояние:"
  1547. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1548. #: flatcamEditors/FlatCAMGrbEditor.py:2401
  1549. msgid "Buffer corner:"
  1550. msgstr ""
  1551. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1552. msgid ""
  1553. "There are 3 types of corners:\n"
  1554. " - 'Round': the corner is rounded for exterior buffer.\n"
  1555. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1556. " - 'Beveled:' the corner is a line that directly connects the features "
  1557. "meeting in the corner"
  1558. msgstr ""
  1559. "Есть 3 типа углов:\n"
  1560. " - 'Округление': угол округляется для внешнего буфера.\n"
  1561. " - 'Квадрат:' угол встречается под острым углом для внешнего буфера.\n"
  1562. " - 'Скошенный:' линия, напрямую соединяющая элементы, встречающиеся в углу"
  1563. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1564. #: flatcamEditors/FlatCAMGrbEditor.py:2409
  1565. msgid "Round"
  1566. msgstr "Круглый"
  1567. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1568. #: flatcamEditors/FlatCAMGrbEditor.py:2410
  1569. msgid "Square"
  1570. msgstr "Квадратный"
  1571. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1572. #: flatcamEditors/FlatCAMGrbEditor.py:2411
  1573. msgid "Beveled"
  1574. msgstr "Скошенный"
  1575. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1576. msgid "Buffer Interior"
  1577. msgstr ""
  1578. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1579. msgid "Buffer Exterior"
  1580. msgstr ""
  1581. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1582. msgid "Full Buffer"
  1583. msgstr ""
  1584. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1585. #: flatcamEditors/FlatCAMGeoEditor.py:2682
  1586. msgid "Buffer Tool"
  1587. msgstr ""
  1588. #: flatcamEditors/FlatCAMGeoEditor.py:138
  1589. #: flatcamEditors/FlatCAMGeoEditor.py:155
  1590. #: flatcamEditors/FlatCAMGeoEditor.py:172
  1591. #: flatcamEditors/FlatCAMGeoEditor.py:2700
  1592. #: flatcamEditors/FlatCAMGeoEditor.py:2726
  1593. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  1594. #: flatcamEditors/FlatCAMGrbEditor.py:4370
  1595. msgid ""
  1596. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1597. "retry."
  1598. msgstr ""
  1599. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1600. msgid "Text Tool"
  1601. msgstr "Текст"
  1602. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:808
  1603. msgid "Tool"
  1604. msgstr "Инструменты"
  1605. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4058
  1606. #: flatcamGUI/FlatCAMGUI.py:5455 flatcamGUI/FlatCAMGUI.py:5731
  1607. #: flatcamGUI/FlatCAMGUI.py:5871 flatcamGUI/ObjectUI.py:260
  1608. msgid "Tool dia:"
  1609. msgstr "Диаметр инструмента:"
  1610. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:5873
  1611. msgid ""
  1612. "Diameter of the tool to\n"
  1613. "be used in the operation."
  1614. msgstr ""
  1615. "Диаметр инструмента\n"
  1616. "используемого в этой операции."
  1617. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5637
  1618. #: flatcamGUI/FlatCAMGUI.py:5882 flatcamTools/ToolNonCopperClear.py:165
  1619. #: flatcamTools/ToolPaint.py:160
  1620. msgid "Overlap Rate:"
  1621. msgstr "Частота перекрытия:"
  1622. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1623. #, python-format
  1624. msgid ""
  1625. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1626. "Example:\n"
  1627. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1628. "\n"
  1629. "Adjust the value starting with lower values\n"
  1630. "and increasing it if areas that should be painted are still \n"
  1631. "not painted.\n"
  1632. "Lower values = faster processing, faster execution on PCB.\n"
  1633. "Higher values = slow processing and slow execution on CNC\n"
  1634. "due of too many paths."
  1635. msgstr ""
  1636. "Какая часть ширины инструмента будет перекрываться за каждый проход "
  1637. "инструмента.\n"
  1638. "Пример:\n"
  1639. "Здесь значение 0.25 означает 25% от диаметра инструмента, указанного выше.\n"
  1640. "\n"
  1641. "Отрегулируйте значения, начиная с более низких значений\n"
  1642. "и увеличивая его, если области, которые должны быть закрашены, всё ещё\n"
  1643. "не окрашены.\n"
  1644. "Более низкие значения = более быстрая обработка, более быстрое выполнение на "
  1645. "печатной плате.\n"
  1646. "Более высокие значения = медленная обработка и медленное выполнение на ЧПУ\n"
  1647. "из-за большого количества путей."
  1648. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5653
  1649. #: flatcamGUI/FlatCAMGUI.py:5739 flatcamGUI/FlatCAMGUI.py:5892
  1650. #: flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181
  1651. #: flatcamTools/ToolPaint.py:177
  1652. msgid "Margin:"
  1653. msgstr "Отступ:"
  1654. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:5894
  1655. #: flatcamTools/ToolPaint.py:179
  1656. msgid ""
  1657. "Distance by which to avoid\n"
  1658. "the edges of the polygon to\n"
  1659. "be painted."
  1660. msgstr "Расстояние, которое не закрашивать до края полигона."
  1661. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5662
  1662. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamTools/ToolNonCopperClear.py:190
  1663. #: flatcamTools/ToolPaint.py:188
  1664. msgid "Method:"
  1665. msgstr "Метод:"
  1666. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:5905
  1667. msgid ""
  1668. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1669. "<BR><B>Seed-based</B>: Outwards from seed."
  1670. msgstr ""
  1671. "Алгоритм отрисовки полигона:<BR><B>Стандартный</B>: Фиксированный шаг внутрь."
  1672. "<BR><B>По кругу</B>: От центра наружу."
  1673. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5678
  1674. #: flatcamGUI/FlatCAMGUI.py:5918 flatcamTools/ToolNonCopperClear.py:206
  1675. #: flatcamTools/ToolPaint.py:204
  1676. msgid "Connect:"
  1677. msgstr "Подключение:"
  1678. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5680
  1679. #: flatcamGUI/FlatCAMGUI.py:5920 flatcamTools/ToolNonCopperClear.py:208
  1680. #: flatcamTools/ToolPaint.py:206
  1681. msgid ""
  1682. "Draw lines between resulting\n"
  1683. "segments to minimize tool lifts."
  1684. msgstr ""
  1685. "Рисовать линии между результирующей сегментами\n"
  1686. " для минимизации подъёма инструмента."
  1687. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5687
  1688. #: flatcamGUI/FlatCAMGUI.py:5928 flatcamTools/ToolNonCopperClear.py:215
  1689. #: flatcamTools/ToolPaint.py:213
  1690. msgid "Contour:"
  1691. msgstr "Контур:"
  1692. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5689
  1693. #: flatcamGUI/FlatCAMGUI.py:5930 flatcamTools/ToolNonCopperClear.py:217
  1694. #: flatcamTools/ToolPaint.py:215
  1695. msgid ""
  1696. "Cut around the perimeter of the polygon\n"
  1697. "to trim rough edges."
  1698. msgstr ""
  1699. "Обрезка по периметру полигона\n"
  1700. "обрезать неровные края."
  1701. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1702. msgid "Paint"
  1703. msgstr "Нарисовать"
  1704. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:648
  1705. #: flatcamGUI/FlatCAMGUI.py:1868 flatcamGUI/ObjectUI.py:1314
  1706. #: flatcamTools/ToolPaint.py:341
  1707. msgid "Paint Tool"
  1708. msgstr "Инструмент рисования"
  1709. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1710. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1711. msgstr ""
  1712. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355
  1713. #: flatcamTools/ToolCutOut.py:512 flatcamTools/ToolCutOut.py:651
  1714. #: flatcamTools/ToolCutOut.py:756 flatcamTools/ToolDblSided.py:363
  1715. msgid ""
  1716. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1717. "retry."
  1718. msgstr ""
  1719. #: flatcamEditors/FlatCAMGeoEditor.py:585
  1720. msgid ""
  1721. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1722. msgstr ""
  1723. #: flatcamEditors/FlatCAMGeoEditor.py:597
  1724. msgid ""
  1725. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1726. "retry."
  1727. msgstr ""
  1728. #: flatcamEditors/FlatCAMGeoEditor.py:606
  1729. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  1730. #: flatcamEditors/FlatCAMGeoEditor.py:2733
  1731. #: flatcamEditors/FlatCAMGeoEditor.py:2759
  1732. #: flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104
  1733. msgid "Tools"
  1734. msgstr "Инструменты"
  1735. #: flatcamEditors/FlatCAMGeoEditor.py:617
  1736. #: flatcamEditors/FlatCAMGeoEditor.py:990
  1737. #: flatcamEditors/FlatCAMGrbEditor.py:4509
  1738. #: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamGUI/FlatCAMGUI.py:659
  1739. #: flatcamGUI/FlatCAMGUI.py:1881 flatcamTools/ToolTransform.py:398
  1740. msgid "Transform Tool"
  1741. msgstr "Инструмент трансформации"
  1742. #: flatcamEditors/FlatCAMGeoEditor.py:618
  1743. #: flatcamEditors/FlatCAMGeoEditor.py:679
  1744. #: flatcamEditors/FlatCAMGrbEditor.py:4510
  1745. #: flatcamEditors/FlatCAMGrbEditor.py:4572 flatcamTools/ToolTransform.py:24
  1746. #: flatcamTools/ToolTransform.py:82
  1747. msgid "Rotate"
  1748. msgstr "Вращение"
  1749. #: flatcamEditors/FlatCAMGeoEditor.py:619
  1750. #: flatcamEditors/FlatCAMGrbEditor.py:4511 flatcamTools/ToolTransform.py:25
  1751. msgid "Skew/Shear"
  1752. msgstr "Наклон/Сдвиг"
  1753. #: flatcamEditors/FlatCAMGeoEditor.py:620
  1754. #: flatcamEditors/FlatCAMGrbEditor.py:2455
  1755. #: flatcamEditors/FlatCAMGrbEditor.py:4512 flatcamGUI/FlatCAMGUI.py:723
  1756. #: flatcamGUI/FlatCAMGUI.py:1949 flatcamGUI/ObjectUI.py:100
  1757. #: flatcamTools/ToolTransform.py:26
  1758. msgid "Scale"
  1759. msgstr "Масштабировать"
  1760. #: flatcamEditors/FlatCAMGeoEditor.py:621
  1761. #: flatcamEditors/FlatCAMGrbEditor.py:4513 flatcamTools/ToolTransform.py:27
  1762. msgid "Mirror (Flip)"
  1763. msgstr "Зеркалирование (отражение)"
  1764. #: flatcamEditors/FlatCAMGeoEditor.py:622
  1765. #: flatcamEditors/FlatCAMGrbEditor.py:4514 flatcamGUI/ObjectUI.py:127
  1766. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452
  1767. #: flatcamTools/ToolTransform.py:28
  1768. msgid "Offset"
  1769. msgstr "Смещение"
  1770. #: flatcamEditors/FlatCAMGeoEditor.py:633
  1771. #: flatcamEditors/FlatCAMGrbEditor.py:4526
  1772. #, python-format
  1773. msgid "Editor %s"
  1774. msgstr "Редактор %s"
  1775. #: flatcamEditors/FlatCAMGeoEditor.py:667
  1776. #: flatcamEditors/FlatCAMGrbEditor.py:4560 flatcamTools/ToolTransform.py:70
  1777. msgid ""
  1778. "Angle for Rotation action, in degrees.\n"
  1779. "Float number between -360 and 359.\n"
  1780. "Positive numbers for CW motion.\n"
  1781. "Negative numbers for CCW motion."
  1782. msgstr ""
  1783. "Угол поворота в градусах.\n"
  1784. "Число с плавающей запятой от -360 до 359.\n"
  1785. "Положительные числа для движения по часовой стрелке.\n"
  1786. "Отрицательные числа для движения против часовой стрелки."
  1787. #: flatcamEditors/FlatCAMGeoEditor.py:681
  1788. #: flatcamEditors/FlatCAMGrbEditor.py:4574
  1789. msgid ""
  1790. "Rotate the selected shape(s).\n"
  1791. "The point of reference is the middle of\n"
  1792. "the bounding box for all selected shapes."
  1793. msgstr ""
  1794. "Поворачивает выбранные фигуры.\n"
  1795. "Точка отсчета - середина\n"
  1796. "ограничительной рамки для всех выбранных фигур."
  1797. #: flatcamEditors/FlatCAMGeoEditor.py:704
  1798. #: flatcamEditors/FlatCAMGrbEditor.py:4597 flatcamTools/ToolTransform.py:107
  1799. msgid "Angle X:"
  1800. msgstr "Угол X:"
  1801. #: flatcamEditors/FlatCAMGeoEditor.py:706
  1802. #: flatcamEditors/FlatCAMGeoEditor.py:724
  1803. #: flatcamEditors/FlatCAMGrbEditor.py:4599
  1804. #: flatcamEditors/FlatCAMGrbEditor.py:4617 flatcamTools/ToolTransform.py:109
  1805. #: flatcamTools/ToolTransform.py:127
  1806. msgid ""
  1807. "Angle for Skew action, in degrees.\n"
  1808. "Float number between -360 and 359."
  1809. msgstr ""
  1810. "Угол наклона в градусах.\n"
  1811. "Число с плавающей запятой между -360 и 359."
  1812. #: flatcamEditors/FlatCAMGeoEditor.py:715
  1813. #: flatcamEditors/FlatCAMGrbEditor.py:4608 flatcamTools/ToolTransform.py:118
  1814. msgid "Skew X"
  1815. msgstr "Наклон X"
  1816. #: flatcamEditors/FlatCAMGeoEditor.py:717
  1817. #: flatcamEditors/FlatCAMGeoEditor.py:735
  1818. #: flatcamEditors/FlatCAMGrbEditor.py:4610
  1819. #: flatcamEditors/FlatCAMGrbEditor.py:4628
  1820. msgid ""
  1821. "Skew/shear the selected shape(s).\n"
  1822. "The point of reference is the middle of\n"
  1823. "the bounding box for all selected shapes."
  1824. msgstr ""
  1825. "Наклоняет/сдвигает выбранные фигуры.\n"
  1826. "Точка отсчета - середина\n"
  1827. "ограничительной рамки для всех выбранных фигур."
  1828. #: flatcamEditors/FlatCAMGeoEditor.py:722
  1829. #: flatcamEditors/FlatCAMGrbEditor.py:4615 flatcamTools/ToolTransform.py:125
  1830. msgid "Angle Y:"
  1831. msgstr "Угол Y:"
  1832. #: flatcamEditors/FlatCAMGeoEditor.py:733
  1833. #: flatcamEditors/FlatCAMGrbEditor.py:4626 flatcamTools/ToolTransform.py:136
  1834. msgid "Skew Y"
  1835. msgstr "Наклон Y"
  1836. #: flatcamEditors/FlatCAMGeoEditor.py:761
  1837. #: flatcamEditors/FlatCAMGrbEditor.py:4654 flatcamTools/ToolTransform.py:164
  1838. msgid "Factor X:"
  1839. msgstr "Множитель X:"
  1840. #: flatcamEditors/FlatCAMGeoEditor.py:763
  1841. #: flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:166
  1842. msgid "Factor for Scale action over X axis."
  1843. msgstr "Множитель масштабирования по оси X."
  1844. #: flatcamEditors/FlatCAMGeoEditor.py:771
  1845. #: flatcamEditors/FlatCAMGrbEditor.py:4664 flatcamTools/ToolTransform.py:174
  1846. msgid "Scale X"
  1847. msgstr "Масштаб Х"
  1848. #: flatcamEditors/FlatCAMGeoEditor.py:773
  1849. #: flatcamEditors/FlatCAMGeoEditor.py:790
  1850. #: flatcamEditors/FlatCAMGrbEditor.py:4666
  1851. #: flatcamEditors/FlatCAMGrbEditor.py:4683
  1852. msgid ""
  1853. "Scale the selected shape(s).\n"
  1854. "The point of reference depends on \n"
  1855. "the Scale reference checkbox state."
  1856. msgstr ""
  1857. "Масштабировать выбранные фигуры.\n"
  1858. "Точка отсчета зависит от\n"
  1859. "состояние флажка Scale Reference."
  1860. #: flatcamEditors/FlatCAMGeoEditor.py:778
  1861. #: flatcamEditors/FlatCAMGrbEditor.py:4671 flatcamTools/ToolTransform.py:181
  1862. msgid "Factor Y:"
  1863. msgstr "Множитель Y:"
  1864. #: flatcamEditors/FlatCAMGeoEditor.py:780
  1865. #: flatcamEditors/FlatCAMGrbEditor.py:4673 flatcamTools/ToolTransform.py:183
  1866. msgid "Factor for Scale action over Y axis."
  1867. msgstr "Множитель масштабирования по оси Y."
  1868. #: flatcamEditors/FlatCAMGeoEditor.py:788
  1869. #: flatcamEditors/FlatCAMGrbEditor.py:4681 flatcamTools/ToolTransform.py:191
  1870. msgid "Scale Y"
  1871. msgstr "Масштаб Y"
  1872. #: flatcamEditors/FlatCAMGeoEditor.py:797
  1873. #: flatcamEditors/FlatCAMGrbEditor.py:4690 flatcamGUI/FlatCAMGUI.py:6277
  1874. #: flatcamTools/ToolTransform.py:200
  1875. msgid "Link"
  1876. msgstr "Ссылка"
  1877. #: flatcamEditors/FlatCAMGeoEditor.py:799
  1878. #: flatcamEditors/FlatCAMGrbEditor.py:4692
  1879. msgid ""
  1880. "Scale the selected shape(s)\n"
  1881. "using the Scale Factor X for both axis."
  1882. msgstr ""
  1883. "Масштабирует выбранные фигуры\n"
  1884. "используя множитель X для обеих осей."
  1885. #: flatcamEditors/FlatCAMGeoEditor.py:805
  1886. #: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamGUI/FlatCAMGUI.py:6285
  1887. #: flatcamTools/ToolTransform.py:208
  1888. msgid "Scale Reference"
  1889. msgstr "Указание масштабирования"
  1890. #: flatcamEditors/FlatCAMGeoEditor.py:807
  1891. #: flatcamEditors/FlatCAMGrbEditor.py:4700
  1892. msgid ""
  1893. "Scale the selected shape(s)\n"
  1894. "using the origin reference when checked,\n"
  1895. "and the center of the biggest bounding box\n"
  1896. "of the selected shapes when unchecked."
  1897. msgstr ""
  1898. #: flatcamEditors/FlatCAMGeoEditor.py:835
  1899. #: flatcamEditors/FlatCAMGrbEditor.py:4729 flatcamTools/ToolTransform.py:238
  1900. msgid "Value X:"
  1901. msgstr "Значение X:"
  1902. #: flatcamEditors/FlatCAMGeoEditor.py:837
  1903. #: flatcamEditors/FlatCAMGrbEditor.py:4731 flatcamTools/ToolTransform.py:240
  1904. msgid "Value for Offset action on X axis."
  1905. msgstr "Значение для смещения по оси X."
  1906. #: flatcamEditors/FlatCAMGeoEditor.py:845
  1907. #: flatcamEditors/FlatCAMGrbEditor.py:4739 flatcamTools/ToolTransform.py:248
  1908. msgid "Offset X"
  1909. msgstr "Смещение Х"
  1910. #: flatcamEditors/FlatCAMGeoEditor.py:847
  1911. #: flatcamEditors/FlatCAMGeoEditor.py:865
  1912. #: flatcamEditors/FlatCAMGrbEditor.py:4741
  1913. #: flatcamEditors/FlatCAMGrbEditor.py:4759
  1914. msgid ""
  1915. "Offset the selected shape(s).\n"
  1916. "The point of reference is the middle of\n"
  1917. "the bounding box for all selected shapes.\n"
  1918. msgstr ""
  1919. "Смещяет выбранные фигуры.\n"
  1920. "Точка отсчета - середина\n"
  1921. "ограничительной рамки для всех выбранных фигур.\n"
  1922. #: flatcamEditors/FlatCAMGeoEditor.py:853
  1923. #: flatcamEditors/FlatCAMGrbEditor.py:4747 flatcamTools/ToolTransform.py:255
  1924. msgid "Value Y:"
  1925. msgstr "Значение Y:"
  1926. #: flatcamEditors/FlatCAMGeoEditor.py:855
  1927. #: flatcamEditors/FlatCAMGrbEditor.py:4749 flatcamTools/ToolTransform.py:257
  1928. msgid "Value for Offset action on Y axis."
  1929. msgstr "Значение для смещения по оси Y."
  1930. #: flatcamEditors/FlatCAMGeoEditor.py:863
  1931. #: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:265
  1932. msgid "Offset Y"
  1933. msgstr "Смещение Y"
  1934. #: flatcamEditors/FlatCAMGeoEditor.py:894
  1935. #: flatcamEditors/FlatCAMGrbEditor.py:4788 flatcamTools/ToolTransform.py:295
  1936. msgid "Flip on X"
  1937. msgstr "Отразить по X"
  1938. #: flatcamEditors/FlatCAMGeoEditor.py:896
  1939. #: flatcamEditors/FlatCAMGeoEditor.py:904
  1940. #: flatcamEditors/FlatCAMGrbEditor.py:4790
  1941. #: flatcamEditors/FlatCAMGrbEditor.py:4798
  1942. msgid ""
  1943. "Flip the selected shape(s) over the X axis.\n"
  1944. "Does not create a new shape."
  1945. msgstr ""
  1946. "Отражает выбранные фигуры по оси X.\n"
  1947. "Не создает новую фугуру."
  1948. #: flatcamEditors/FlatCAMGeoEditor.py:902
  1949. #: flatcamEditors/FlatCAMGrbEditor.py:4796 flatcamTools/ToolTransform.py:303
  1950. msgid "Flip on Y"
  1951. msgstr "Отразить по Y"
  1952. #: flatcamEditors/FlatCAMGeoEditor.py:911
  1953. #: flatcamEditors/FlatCAMGrbEditor.py:4805 flatcamTools/ToolTransform.py:312
  1954. msgid "Ref Pt"
  1955. msgstr ""
  1956. #: flatcamEditors/FlatCAMGeoEditor.py:913
  1957. #: flatcamEditors/FlatCAMGrbEditor.py:4807
  1958. msgid ""
  1959. "Flip the selected shape(s)\n"
  1960. "around the point in Point Entry Field.\n"
  1961. "\n"
  1962. "The point coordinates can be captured by\n"
  1963. "left click on canvas together with pressing\n"
  1964. "SHIFT key. \n"
  1965. "Then click Add button to insert coordinates.\n"
  1966. "Or enter the coords in format (x, y) in the\n"
  1967. "Point Entry field and click Flip on X(Y)"
  1968. msgstr ""
  1969. "Отражает выбранные фигуры (ы)\n"
  1970. "вокруг точки, указанной в поле ввода координат.\n"
  1971. "\n"
  1972. "Координаты точки могут быть записаны с помощью\n"
  1973. "щелчка левой кнопкой мыши на холсте одновременно с нажатием\n"
  1974. "клавиши SHIFT.\n"
  1975. "Затем нажмите кнопку 'Добавить', чтобы вставить координаты.\n"
  1976. "Или введите координаты в формате (x, y) в\n"
  1977. "поле ввода и нажмите «Отразить по X (Y)»"
  1978. #: flatcamEditors/FlatCAMGeoEditor.py:925
  1979. #: flatcamEditors/FlatCAMGrbEditor.py:4819 flatcamTools/ToolTransform.py:325
  1980. msgid "Point:"
  1981. msgstr "Точка:"
  1982. #: flatcamEditors/FlatCAMGeoEditor.py:927
  1983. #: flatcamEditors/FlatCAMGrbEditor.py:4821
  1984. msgid ""
  1985. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1986. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1987. "the 'y' in (x, y) will be used when using Flip on Y."
  1988. msgstr ""
  1989. "Координаты в формате (x, y), используемые в качестве указателя для "
  1990. "отражения.\n"
  1991. "'x' в (x, y) будет использоваться при отражении по X и\n"
  1992. "'y' в (x, y) будет использоваться при отражении по Y."
  1993. #: flatcamEditors/FlatCAMGeoEditor.py:939
  1994. #: flatcamEditors/FlatCAMGrbEditor.py:4833 flatcamTools/ToolTransform.py:339
  1995. msgid ""
  1996. "The point coordinates can be captured by\n"
  1997. "left click on canvas together with pressing\n"
  1998. "SHIFT key. Then click Add button to insert."
  1999. msgstr ""
  2000. "Координаты точки могут быть записаны с помощью\n"
  2001. "щелчка левой кнопкой мыши на холсте одновременно с нажатием\n"
  2002. "клавиши SHIFT. Затем нажмите кнопку 'Добавить', чтобы вставить координаты."
  2003. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2004. #: flatcamEditors/FlatCAMGrbEditor.py:4958
  2005. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2006. msgstr ""
  2007. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2008. #: flatcamEditors/FlatCAMGrbEditor.py:4978 flatcamTools/ToolTransform.py:468
  2009. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2010. msgstr ""
  2011. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2012. #: flatcamEditors/FlatCAMGrbEditor.py:5021 flatcamTools/ToolTransform.py:502
  2013. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2014. msgstr ""
  2015. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2016. #: flatcamEditors/FlatCAMGrbEditor.py:5048 flatcamTools/ToolTransform.py:520
  2017. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2018. msgstr ""
  2019. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2020. #: flatcamEditors/FlatCAMGrbEditor.py:5075 flatcamTools/ToolTransform.py:538
  2021. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2022. msgstr ""
  2023. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2024. #: flatcamEditors/FlatCAMGrbEditor.py:5116 flatcamTools/ToolTransform.py:572
  2025. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2026. msgstr ""
  2027. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2028. #: flatcamEditors/FlatCAMGrbEditor.py:5154 flatcamTools/ToolTransform.py:601
  2029. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2030. msgstr ""
  2031. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2032. #: flatcamEditors/FlatCAMGrbEditor.py:5180 flatcamTools/ToolTransform.py:619
  2033. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2034. msgstr ""
  2035. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2036. #: flatcamEditors/FlatCAMGrbEditor.py:5203
  2037. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2038. msgstr ""
  2039. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2040. #: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:640
  2041. msgid "Appying Rotate"
  2042. msgstr "Применение поворота"
  2043. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2044. #: flatcamEditors/FlatCAMGrbEditor.py:5237
  2045. msgid "[success] Done. Rotate completed."
  2046. msgstr "[success] Готово. Поворот выполнен."
  2047. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2048. #: flatcamEditors/FlatCAMGrbEditor.py:5256
  2049. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2050. msgstr ""
  2051. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2052. #: flatcamEditors/FlatCAMGrbEditor.py:5259 flatcamTools/ToolTransform.py:691
  2053. msgid "Applying Flip"
  2054. msgstr "Применение отражения"
  2055. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2056. #: flatcamEditors/FlatCAMGrbEditor.py:5296 flatcamTools/ToolTransform.py:733
  2057. msgid "[success] Flip on the Y axis done ..."
  2058. msgstr ""
  2059. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2060. #: flatcamEditors/FlatCAMGrbEditor.py:5304 flatcamTools/ToolTransform.py:742
  2061. msgid "[success] Flip on the X axis done ..."
  2062. msgstr ""
  2063. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2064. #: flatcamEditors/FlatCAMGrbEditor.py:5324
  2065. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2066. msgstr ""
  2067. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2068. #: flatcamEditors/FlatCAMGrbEditor.py:5327 flatcamTools/ToolTransform.py:760
  2069. msgid "Applying Skew"
  2070. msgstr "Применение наклона"
  2071. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2072. #: flatcamEditors/FlatCAMGrbEditor.py:5360 flatcamTools/ToolTransform.py:791
  2073. #, python-format
  2074. msgid "[success] Skew on the %s axis done ..."
  2075. msgstr ""
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2077. #: flatcamEditors/FlatCAMGrbEditor.py:5364 flatcamTools/ToolTransform.py:795
  2078. #, python-format
  2079. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2080. msgstr ""
  2081. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2082. #: flatcamEditors/FlatCAMGrbEditor.py:5383
  2083. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2084. msgstr ""
  2085. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2086. #: flatcamEditors/FlatCAMGrbEditor.py:5386 flatcamTools/ToolTransform.py:809
  2087. msgid "Applying Scale"
  2088. msgstr "Применение масштабирования"
  2089. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2090. #: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:848
  2091. #, python-format
  2092. msgid "[success] Scale on the %s axis done ..."
  2093. msgstr ""
  2094. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2095. #: flatcamEditors/FlatCAMGrbEditor.py:5425 flatcamTools/ToolTransform.py:851
  2096. #, python-format
  2097. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2098. msgstr ""
  2099. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2100. #: flatcamEditors/FlatCAMGrbEditor.py:5438
  2101. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2102. msgstr ""
  2103. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2104. #: flatcamEditors/FlatCAMGrbEditor.py:5441 flatcamTools/ToolTransform.py:861
  2105. msgid "Applying Offset"
  2106. msgstr "Применение смещения"
  2107. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2108. #: flatcamEditors/FlatCAMGrbEditor.py:5462 flatcamTools/ToolTransform.py:880
  2109. #, python-format
  2110. msgid "[success] Offset on the %s axis done ..."
  2111. msgstr ""
  2112. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2113. #: flatcamEditors/FlatCAMGrbEditor.py:5466 flatcamTools/ToolTransform.py:884
  2114. #, python-format
  2115. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2116. msgstr ""
  2117. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2118. #: flatcamEditors/FlatCAMGrbEditor.py:5470
  2119. msgid "Rotate ..."
  2120. msgstr "Поворот ..."
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2122. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2123. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2124. #: flatcamEditors/FlatCAMGrbEditor.py:5471
  2125. #: flatcamEditors/FlatCAMGrbEditor.py:5528
  2126. #: flatcamEditors/FlatCAMGrbEditor.py:5545
  2127. msgid "Enter an Angle Value (degrees):"
  2128. msgstr "Введите значение угла (градусы):"
  2129. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2130. #: flatcamEditors/FlatCAMGrbEditor.py:5480
  2131. msgid "[success] Geometry shape rotate done..."
  2132. msgstr ""
  2133. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2134. #: flatcamEditors/FlatCAMGrbEditor.py:5485
  2135. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2136. msgstr ""
  2137. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2138. #: flatcamEditors/FlatCAMGrbEditor.py:5491
  2139. msgid "Offset on X axis ..."
  2140. msgstr "Смещение по оси X ..."
  2141. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2142. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2143. #: flatcamEditors/FlatCAMGrbEditor.py:5492
  2144. #: flatcamEditors/FlatCAMGrbEditor.py:5511
  2145. #, python-format
  2146. msgid "Enter a distance Value (%s):"
  2147. msgstr "Введите значение расстояния (%s):"
  2148. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2149. #: flatcamEditors/FlatCAMGrbEditor.py:5501
  2150. msgid "[success] Geometry shape offset on X axis done..."
  2151. msgstr ""
  2152. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2153. #: flatcamEditors/FlatCAMGrbEditor.py:5505
  2154. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2155. msgstr ""
  2156. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2157. #: flatcamEditors/FlatCAMGrbEditor.py:5510
  2158. msgid "Offset on Y axis ..."
  2159. msgstr "Смещение по оси Y ..."
  2160. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2161. #: flatcamEditors/FlatCAMGrbEditor.py:5520
  2162. msgid "[success] Geometry shape offset on Y axis done..."
  2163. msgstr ""
  2164. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2165. #: flatcamEditors/FlatCAMGrbEditor.py:5524
  2166. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2167. msgstr ""
  2168. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2169. #: flatcamEditors/FlatCAMGrbEditor.py:5527
  2170. msgid "Skew on X axis ..."
  2171. msgstr "Наклон по оси X ..."
  2172. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2173. #: flatcamEditors/FlatCAMGrbEditor.py:5537
  2174. msgid "[success] Geometry shape skew on X axis done..."
  2175. msgstr ""
  2176. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2177. #: flatcamEditors/FlatCAMGrbEditor.py:5541
  2178. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2179. msgstr ""
  2180. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2181. #: flatcamEditors/FlatCAMGrbEditor.py:5544
  2182. msgid "Skew on Y axis ..."
  2183. msgstr "Наклон по оси Y ..."
  2184. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2185. #: flatcamEditors/FlatCAMGrbEditor.py:5554
  2186. msgid "[success] Geometry shape skew on Y axis done..."
  2187. msgstr ""
  2188. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2189. #: flatcamEditors/FlatCAMGrbEditor.py:5558
  2190. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2191. msgstr ""
  2192. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2193. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2194. #: flatcamEditors/FlatCAMGrbEditor.py:1354
  2195. #: flatcamEditors/FlatCAMGrbEditor.py:1423
  2196. msgid "Click on Center point ..."
  2197. msgstr "Нажмите на центральную точку ..."
  2198. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2199. #: flatcamEditors/FlatCAMGrbEditor.py:1362
  2200. msgid "Click on Perimeter point to complete ..."
  2201. msgstr "Для завершения щелкните по периметру ..."
  2202. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2203. msgid "[success] Done. Adding Circle completed."
  2204. msgstr ""
  2205. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2206. #: flatcamEditors/FlatCAMGrbEditor.py:1448
  2207. msgid "Click on Start point ..."
  2208. msgstr "Нажмите на точку начала отсчета..."
  2209. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2210. #: flatcamEditors/FlatCAMGrbEditor.py:1450
  2211. msgid "Click on Point3 ..."
  2212. msgstr "Нажмите на 3-ю точку ..."
  2213. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2214. #: flatcamEditors/FlatCAMGrbEditor.py:1452
  2215. msgid "Click on Stop point ..."
  2216. msgstr "Нажмите на конечную точку ..."
  2217. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2218. #: flatcamEditors/FlatCAMGrbEditor.py:1457
  2219. msgid "Click on Stop point to complete ..."
  2220. msgstr "Нажмите на конечную точку для завершения ..."
  2221. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2222. #: flatcamEditors/FlatCAMGrbEditor.py:1459
  2223. msgid "Click on Point2 to complete ..."
  2224. msgstr "Нажмите на 2-ю точку для завершения ..."
  2225. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2226. #: flatcamEditors/FlatCAMGrbEditor.py:1461
  2227. msgid "Click on Center point to complete ..."
  2228. msgstr "Нажмите на центральную точку для завершения..."
  2229. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2230. #: flatcamEditors/FlatCAMGrbEditor.py:1473
  2231. #, python-format
  2232. msgid "Direction: %s"
  2233. msgstr "Направление: %s"
  2234. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2235. #: flatcamEditors/FlatCAMGrbEditor.py:1483
  2236. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2237. msgstr "Режим: Старт -> Стоп -> Центр. Нажмите на начальную точку ..."
  2238. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2239. #: flatcamEditors/FlatCAMGrbEditor.py:1486
  2240. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2241. msgstr "Режим: Точка1 -> Точка3 -> Точка2. Нажмите на Точку1 ..."
  2242. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2243. #: flatcamEditors/FlatCAMGrbEditor.py:1489
  2244. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2245. msgstr "Режим: Центр -> Старт -> Стоп. Нажмите на центральную точку ..."
  2246. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2247. msgid "[success] Done. Arc completed."
  2248. msgstr ""
  2249. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2250. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2251. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2252. msgid "Click on 1st corner ..."
  2253. msgstr "Нажмите на 1-ый угол ..."
  2254. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2255. msgid "Click on opposite corner to complete ..."
  2256. msgstr "Нажмите на противоположном углу для завершения ..."
  2257. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2258. msgid "[success] Done. Rectangle completed."
  2259. msgstr ""
  2260. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2261. msgid "Click on next Point or click right mouse button to complete ..."
  2262. msgstr ""
  2263. "Нажмите на следующую точку или щелкните правой кнопкой мыши для "
  2264. "завершения ..."
  2265. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2266. msgid "[success] Done. Polygon completed."
  2267. msgstr ""
  2268. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2269. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2270. #: flatcamEditors/FlatCAMGrbEditor.py:1058
  2271. #: flatcamEditors/FlatCAMGrbEditor.py:1252
  2272. msgid "Backtracked one point ..."
  2273. msgstr ""
  2274. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2275. msgid "[success] Done. Path completed."
  2276. msgstr ""
  2277. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2278. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2279. msgstr ""
  2280. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2281. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2282. msgid " MOVE: Click on reference point ..."
  2283. msgstr " Перемещение: Нажмите на исходную точку ..."
  2284. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2285. msgid " Click on destination point ..."
  2286. msgstr " Нажмите на конечную точку ..."
  2287. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2288. msgid "[success] Done. Geometry(s) Move completed."
  2289. msgstr ""
  2290. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2291. msgid "[success] Done. Geometry(s) Copy completed."
  2292. msgstr ""
  2293. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  2294. #, python-format
  2295. msgid ""
  2296. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2297. "supported. Error: %s"
  2298. msgstr ""
  2299. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  2300. msgid "[success] Done. Adding Text completed."
  2301. msgstr ""
  2302. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  2303. msgid "Create buffer geometry ..."
  2304. msgstr ""
  2305. #: flatcamEditors/FlatCAMGeoEditor.py:2689
  2306. #: flatcamEditors/FlatCAMGeoEditor.py:2715
  2307. #: flatcamEditors/FlatCAMGeoEditor.py:2741
  2308. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2309. msgstr ""
  2310. #: flatcamEditors/FlatCAMGeoEditor.py:2711
  2311. #: flatcamEditors/FlatCAMGrbEditor.py:4420
  2312. msgid "[success] Done. Buffer Tool completed."
  2313. msgstr ""
  2314. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  2315. msgid "[success] Done. Buffer Int Tool completed."
  2316. msgstr ""
  2317. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2318. msgid "[success] Done. Buffer Ext Tool completed."
  2319. msgstr ""
  2320. #: flatcamEditors/FlatCAMGeoEditor.py:2798
  2321. #: flatcamEditors/FlatCAMGrbEditor.py:1969
  2322. msgid "Select a shape to act as deletion area ..."
  2323. msgstr ""
  2324. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2325. #: flatcamEditors/FlatCAMGeoEditor.py:2819
  2326. #: flatcamEditors/FlatCAMGeoEditor.py:2825
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:1971
  2328. msgid "Click to pick-up the erase shape..."
  2329. msgstr ""
  2330. #: flatcamEditors/FlatCAMGeoEditor.py:2829
  2331. #: flatcamEditors/FlatCAMGrbEditor.py:2028
  2332. msgid "Click to erase ..."
  2333. msgstr "Нажмите для очистки ..."
  2334. #: flatcamEditors/FlatCAMGeoEditor.py:2858
  2335. #: flatcamEditors/FlatCAMGrbEditor.py:2059
  2336. msgid "[success] Done. Eraser tool action completed."
  2337. msgstr ""
  2338. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  2339. msgid "Create Paint geometry ..."
  2340. msgstr ""
  2341. #: flatcamEditors/FlatCAMGeoEditor.py:2915
  2342. #: flatcamEditors/FlatCAMGrbEditor.py:2201
  2343. msgid "Shape transformations ..."
  2344. msgstr ""
  2345. #: flatcamEditors/FlatCAMGeoEditor.py:3419
  2346. #, python-brace-format
  2347. msgid "[WARNING] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2348. msgstr ""
  2349. #: flatcamEditors/FlatCAMGeoEditor.py:3796
  2350. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2351. msgstr ""
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2732
  2353. #: flatcamGUI/FlatCAMGUI.py:2778 flatcamGUI/FlatCAMGUI.py:2796
  2354. #: flatcamGUI/FlatCAMGUI.py:2927 flatcamGUI/FlatCAMGUI.py:2939
  2355. #: flatcamGUI/FlatCAMGUI.py:2973
  2356. msgid "Click on target point."
  2357. msgstr "Нажмите на целевой точке."
  2358. #: flatcamEditors/FlatCAMGeoEditor.py:4047
  2359. #: flatcamEditors/FlatCAMGeoEditor.py:4082
  2360. msgid ""
  2361. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2362. "Intersection."
  2363. msgstr ""
  2364. #: flatcamEditors/FlatCAMGeoEditor.py:4166
  2365. #: flatcamEditors/FlatCAMGeoEditor.py:4204
  2366. #: flatcamEditors/FlatCAMGeoEditor.py:4280
  2367. msgid ""
  2368. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2369. "generate an 'inside' shape"
  2370. msgstr ""
  2371. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2372. #: flatcamEditors/FlatCAMGeoEditor.py:4213
  2373. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2374. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2375. msgstr ""
  2376. #: flatcamEditors/FlatCAMGeoEditor.py:4179
  2377. #: flatcamEditors/FlatCAMGeoEditor.py:4217
  2378. #: flatcamEditors/FlatCAMGeoEditor.py:4292
  2379. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2380. msgstr ""
  2381. #: flatcamEditors/FlatCAMGeoEditor.py:4189
  2382. #: flatcamEditors/FlatCAMGeoEditor.py:4301
  2383. msgid ""
  2384. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2385. msgstr ""
  2386. #: flatcamEditors/FlatCAMGeoEditor.py:4197
  2387. msgid "[success] Full buffer geometry created."
  2388. msgstr ""
  2389. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2390. msgid ""
  2391. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2392. msgstr ""
  2393. #: flatcamEditors/FlatCAMGeoEditor.py:4242
  2394. msgid "[success] Interior buffer geometry created."
  2395. msgstr ""
  2396. #: flatcamEditors/FlatCAMGeoEditor.py:4313
  2397. msgid "[success] Exterior buffer geometry created."
  2398. msgstr ""
  2399. #: flatcamEditors/FlatCAMGeoEditor.py:4377
  2400. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2401. msgstr ""
  2402. #: flatcamEditors/FlatCAMGeoEditor.py:4383
  2403. msgid "[WARNING] Invalid value for {}"
  2404. msgstr "[WARNING] Неверное значение для {}"
  2405. #: flatcamEditors/FlatCAMGeoEditor.py:4389
  2406. msgid ""
  2407. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2408. "(100%)."
  2409. msgstr ""
  2410. #: flatcamEditors/FlatCAMGeoEditor.py:4448
  2411. #, python-format
  2412. msgid ""
  2413. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2414. "different method of Paint\n"
  2415. "%s"
  2416. msgstr ""
  2417. #: flatcamEditors/FlatCAMGeoEditor.py:4459
  2418. msgid "[success] Paint done."
  2419. msgstr ""
  2420. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2421. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2422. msgstr ""
  2423. #: flatcamEditors/FlatCAMGrbEditor.py:206
  2424. #: flatcamEditors/FlatCAMGrbEditor.py:398
  2425. msgid ""
  2426. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2427. msgstr ""
  2428. #: flatcamEditors/FlatCAMGrbEditor.py:229
  2429. #: flatcamEditors/FlatCAMGrbEditor.py:234
  2430. msgid "Click to place ..."
  2431. msgstr ""
  2432. #: flatcamEditors/FlatCAMGrbEditor.py:357
  2433. #: flatcamEditors/FlatCAMGrbEditor.py:662
  2434. msgid ""
  2435. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2436. msgstr ""
  2437. "Несовместимый тип отверстия. Выберите отверстие с типом 'C', 'R' или 'O'."
  2438. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2439. msgid "[success] Done. Adding Pad completed."
  2440. msgstr ""
  2441. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2442. msgid ""
  2443. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2444. msgstr ""
  2445. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2446. msgid "Click on the Pad Circular Array Start position"
  2447. msgstr ""
  2448. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2449. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2450. msgstr ""
  2451. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2452. msgid "[success] Done. Pad Array added."
  2453. msgstr ""
  2454. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2455. msgid "Select shape(s) and then click ..."
  2456. msgstr "Выберите фигуры, а затем нажмите ..."
  2457. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2458. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2459. msgstr ""
  2460. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2461. msgid ""
  2462. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2463. "same aperture."
  2464. msgstr ""
  2465. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2466. msgid "[success] Done. Poligonize completed."
  2467. msgstr ""
  2468. #: flatcamEditors/FlatCAMGrbEditor.py:860
  2469. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2470. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2471. msgid "Corner Mode 1: 45 degrees ..."
  2472. msgstr "Угловой режим 1: 45 градусов ..."
  2473. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2474. msgid "Click on 1st point ..."
  2475. msgstr "Нажмите на 1-й точке ..."
  2476. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2477. #: flatcamEditors/FlatCAMGrbEditor.py:1170
  2478. msgid "Click on next Point or click Right mouse button to complete ..."
  2479. msgstr ""
  2480. "Нажмите на следующую точку или щелкните правой кнопкой мыши для "
  2481. "завершения ..."
  2482. #: flatcamEditors/FlatCAMGrbEditor.py:1063
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2484. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2485. msgstr "Угловой режим 4: реверс 90 градусов ..."
  2486. #: flatcamEditors/FlatCAMGrbEditor.py:1066
  2487. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2488. msgid "Corner Mode 3: 90 degrees ..."
  2489. msgstr "Угловой режим 3: 90 градусов ..."
  2490. #: flatcamEditors/FlatCAMGrbEditor.py:1069
  2491. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2492. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2493. msgstr "Угловой режим 4: реверс 90 градусов ..."
  2494. #: flatcamEditors/FlatCAMGrbEditor.py:1072
  2495. #: flatcamEditors/FlatCAMGrbEditor.py:1087
  2496. msgid "Corner Mode 5: Free angle ..."
  2497. msgstr "Угловой режим 5: свободный угол ..."
  2498. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2499. #: flatcamEditors/FlatCAMGrbEditor.py:1284
  2500. #: flatcamEditors/FlatCAMGrbEditor.py:1323
  2501. msgid "Track Mode 1: 45 degrees ..."
  2502. msgstr ""
  2503. #: flatcamEditors/FlatCAMGrbEditor.py:1264
  2504. #: flatcamEditors/FlatCAMGrbEditor.py:1318
  2505. msgid "Track Mode 2: Reverse 45 degrees ..."
  2506. msgstr ""
  2507. #: flatcamEditors/FlatCAMGrbEditor.py:1269
  2508. #: flatcamEditors/FlatCAMGrbEditor.py:1313
  2509. msgid "Track Mode 3: 90 degrees ..."
  2510. msgstr ""
  2511. #: flatcamEditors/FlatCAMGrbEditor.py:1274
  2512. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2513. msgid "Track Mode 4: Reverse 90 degrees ..."
  2514. msgstr ""
  2515. #: flatcamEditors/FlatCAMGrbEditor.py:1279
  2516. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2517. msgid "Track Mode 5: Free angle ..."
  2518. msgstr ""
  2519. #: flatcamEditors/FlatCAMGrbEditor.py:1669
  2520. msgid "Scale the selected Gerber apertures ..."
  2521. msgstr "Масштабирование выбранных отверстий Gerber ..."
  2522. #: flatcamEditors/FlatCAMGrbEditor.py:1711
  2523. msgid "Buffer the selected apertures ..."
  2524. msgstr ""
  2525. #: flatcamEditors/FlatCAMGrbEditor.py:1755
  2526. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2527. msgstr ""
  2528. #: flatcamEditors/FlatCAMGrbEditor.py:1878
  2529. msgid "[success] Done. Apertures Move completed."
  2530. msgstr ""
  2531. #: flatcamEditors/FlatCAMGrbEditor.py:1954
  2532. msgid "[success] Done. Apertures copied."
  2533. msgstr ""
  2534. #: flatcamEditors/FlatCAMGrbEditor.py:2243 flatcamGUI/FlatCAMGUI.py:1607
  2535. #: flatcamGUI/FlatCAMGUI.py:4329
  2536. msgid "Gerber Editor"
  2537. msgstr "Редактор Gerber"
  2538. #: flatcamEditors/FlatCAMGrbEditor.py:2262 flatcamGUI/ObjectUI.py:192
  2539. msgid "<b>Apertures:</b>"
  2540. msgstr "<b>Отверстия:</b>"
  2541. #: flatcamEditors/FlatCAMGrbEditor.py:2264 flatcamGUI/ObjectUI.py:194
  2542. msgid "Apertures Table for the Gerber Object."
  2543. msgstr "Таблица отверстий для объекта Gerber."
  2544. #: flatcamEditors/FlatCAMGrbEditor.py:2275
  2545. #: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228
  2546. msgid "Code"
  2547. msgstr "Код"
  2548. #: flatcamEditors/FlatCAMGrbEditor.py:2275
  2549. #: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228
  2550. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452
  2551. msgid "Type"
  2552. msgstr "Тип"
  2553. #: flatcamEditors/FlatCAMGrbEditor.py:2275
  2554. #: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228
  2555. msgid "Size"
  2556. msgstr "Размер"
  2557. #: flatcamEditors/FlatCAMGrbEditor.py:2275
  2558. #: flatcamEditors/FlatCAMGrbEditor.py:3586 flatcamGUI/ObjectUI.py:228
  2559. msgid "Dim"
  2560. msgstr "Размер"
  2561. #: flatcamEditors/FlatCAMGrbEditor.py:2279 flatcamGUI/ObjectUI.py:232
  2562. msgid "Index"
  2563. msgstr "Индекс"
  2564. #: flatcamEditors/FlatCAMGrbEditor.py:2281 flatcamGUI/ObjectUI.py:234
  2565. msgid "Aperture Code"
  2566. msgstr "Код отверстия"
  2567. #: flatcamEditors/FlatCAMGrbEditor.py:2283 flatcamGUI/ObjectUI.py:236
  2568. msgid "Type of aperture: circular, rectangle, macros etc"
  2569. msgstr ""
  2570. #: flatcamEditors/FlatCAMGrbEditor.py:2285
  2571. #: flatcamEditors/FlatCAMGrbEditor.py:2318 flatcamGUI/ObjectUI.py:238
  2572. msgid "Aperture Size:"
  2573. msgstr "Размер отверстия:"
  2574. #: flatcamEditors/FlatCAMGrbEditor.py:2287 flatcamGUI/ObjectUI.py:240
  2575. msgid ""
  2576. "Aperture Dimensions:\n"
  2577. " - (width, height) for R, O type.\n"
  2578. " - (dia, nVertices) for P type"
  2579. msgstr ""
  2580. "Размеры отверстия:\n"
  2581. " - (ширина, высота) для типа R, O.\n"
  2582. " - (диам., nVertices) для типа P"
  2583. #: flatcamEditors/FlatCAMGrbEditor.py:2308
  2584. msgid "Aperture Code:"
  2585. msgstr "Код отверстия:"
  2586. #: flatcamEditors/FlatCAMGrbEditor.py:2310
  2587. msgid "Code for the new aperture"
  2588. msgstr "Код для нового отверстия"
  2589. #: flatcamEditors/FlatCAMGrbEditor.py:2320
  2590. msgid ""
  2591. "Size for the new aperture.\n"
  2592. "If aperture type is 'R' or 'O' then\n"
  2593. "this value is automatically\n"
  2594. "calculated as:\n"
  2595. "sqrt(width**2 + height**2)"
  2596. msgstr ""
  2597. "Размер нового отверстия.\n"
  2598. "Если тип отверстия 'R' или 'O', то\n"
  2599. "это значение автоматически\n"
  2600. "рассчитывается как:\n"
  2601. "sqrt(ширина ** 2 + высота ** 2)"
  2602. #: flatcamEditors/FlatCAMGrbEditor.py:2332
  2603. msgid "Aperture Type:"
  2604. msgstr "Тип отверстия:"
  2605. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2606. msgid ""
  2607. "Select the type of new aperture. Can be:\n"
  2608. "C = circular\n"
  2609. "R = rectangular\n"
  2610. "O = oblong"
  2611. msgstr ""
  2612. "Выбор типа нового отверстия. Варианты:\n"
  2613. "C = круговое\n"
  2614. "R = прямоугольное\n"
  2615. "O = продолговатое"
  2616. #: flatcamEditors/FlatCAMGrbEditor.py:2345
  2617. msgid "Aperture Dim:"
  2618. msgstr "Разм. отверстия:"
  2619. #: flatcamEditors/FlatCAMGrbEditor.py:2347
  2620. msgid ""
  2621. "Dimensions for the new aperture.\n"
  2622. "Active only for rectangular apertures (type R).\n"
  2623. "The format is (width, height)"
  2624. msgstr ""
  2625. "Размеры для нового отверстия.\n"
  2626. "Активен только для прямоугольных отверстий (тип R).\n"
  2627. "Формат (ширина, высота)"
  2628. #: flatcamEditors/FlatCAMGrbEditor.py:2356
  2629. msgid "Add/Delete Aperture:"
  2630. msgstr "Добавить/Удалить отверстие:"
  2631. #: flatcamEditors/FlatCAMGrbEditor.py:2358
  2632. msgid "Add/Delete an aperture in the aperture table"
  2633. msgstr "Добавляет/Удаляет отверстие в таблице отверстий"
  2634. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  2635. msgid "Add a new aperture to the aperture list."
  2636. msgstr "Добавляет новое отверстие в список отверстий."
  2637. #: flatcamEditors/FlatCAMGrbEditor.py:2372
  2638. msgid "Delete a aperture in the aperture list"
  2639. msgstr "Удаляет отверстие в таблице отверстий"
  2640. #: flatcamEditors/FlatCAMGrbEditor.py:2388
  2641. msgid "Buffer Aperture:"
  2642. msgstr ""
  2643. #: flatcamEditors/FlatCAMGrbEditor.py:2390
  2644. msgid "Buffer a aperture in the aperture list"
  2645. msgstr ""
  2646. #: flatcamEditors/FlatCAMGrbEditor.py:2403
  2647. msgid ""
  2648. "There are 3 types of corners:\n"
  2649. " - 'Round': the corner is rounded.\n"
  2650. " - 'Square:' the corner is met in a sharp angle.\n"
  2651. " - 'Beveled:' the corner is a line that directly connects the features "
  2652. "meeting in the corner"
  2653. msgstr ""
  2654. #: flatcamEditors/FlatCAMGrbEditor.py:2418 flatcamGUI/FlatCAMGUI.py:722
  2655. #: flatcamGUI/FlatCAMGUI.py:1948
  2656. msgid "Buffer"
  2657. msgstr "Буффер"
  2658. #: flatcamEditors/FlatCAMGrbEditor.py:2432
  2659. msgid "Scale Aperture:"
  2660. msgstr ""
  2661. #: flatcamEditors/FlatCAMGrbEditor.py:2434
  2662. msgid "Scale a aperture in the aperture list"
  2663. msgstr ""
  2664. #: flatcamEditors/FlatCAMGrbEditor.py:2442
  2665. msgid "Scale factor:"
  2666. msgstr ""
  2667. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  2668. msgid ""
  2669. "The factor by which to scale the selected aperture.\n"
  2670. "Values can be between 0.0000 and 999.9999"
  2671. msgstr ""
  2672. #: flatcamEditors/FlatCAMGrbEditor.py:2472 flatcamGUI/FlatCAMGUI.py:712
  2673. #: flatcamGUI/FlatCAMGUI.py:1938
  2674. msgid "Add Pad Array"
  2675. msgstr ""
  2676. #: flatcamEditors/FlatCAMGrbEditor.py:2474
  2677. msgid "Add an array of pads (linear or circular array)"
  2678. msgstr ""
  2679. #: flatcamEditors/FlatCAMGrbEditor.py:2480
  2680. msgid ""
  2681. "Select the type of pads array to create.\n"
  2682. "It can be Linear X(Y) or Circular"
  2683. msgstr ""
  2684. #: flatcamEditors/FlatCAMGrbEditor.py:2491
  2685. msgid "Nr of pads:"
  2686. msgstr ""
  2687. #: flatcamEditors/FlatCAMGrbEditor.py:2493
  2688. msgid "Specify how many pads to be in the array."
  2689. msgstr ""
  2690. #: flatcamEditors/FlatCAMGrbEditor.py:2970
  2691. #: flatcamEditors/FlatCAMGrbEditor.py:2974
  2692. msgid ""
  2693. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  2694. "retry."
  2695. msgstr ""
  2696. #: flatcamEditors/FlatCAMGrbEditor.py:3010
  2697. msgid ""
  2698. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  2699. "in format (width, height) and retry."
  2700. msgstr ""
  2701. #: flatcamEditors/FlatCAMGrbEditor.py:3022
  2702. msgid ""
  2703. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  2704. "retry."
  2705. msgstr ""
  2706. #: flatcamEditors/FlatCAMGrbEditor.py:3033
  2707. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  2708. msgstr ""
  2709. #: flatcamEditors/FlatCAMGrbEditor.py:3040
  2710. #, python-brace-format
  2711. msgid "[success] Added new aperture with code: {apid}"
  2712. msgstr ""
  2713. #: flatcamEditors/FlatCAMGrbEditor.py:3068
  2714. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  2715. msgstr ""
  2716. #: flatcamEditors/FlatCAMGrbEditor.py:3074
  2717. #, python-format
  2718. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  2719. msgstr ""
  2720. #: flatcamEditors/FlatCAMGrbEditor.py:3097
  2721. #, python-brace-format
  2722. msgid "[success] Deleted aperture with code: {del_dia}"
  2723. msgstr ""
  2724. #: flatcamEditors/FlatCAMGrbEditor.py:3517
  2725. #, python-format
  2726. msgid "Adding aperture: %s geo ..."
  2727. msgstr ""
  2728. #: flatcamEditors/FlatCAMGrbEditor.py:3696
  2729. msgid ""
  2730. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  2731. "creation."
  2732. msgstr ""
  2733. #: flatcamEditors/FlatCAMGrbEditor.py:3699
  2734. msgid "[ERROR] An internal error has occurred. See shell.\n"
  2735. msgstr ""
  2736. #: flatcamEditors/FlatCAMGrbEditor.py:3704
  2737. msgid "Creating Gerber."
  2738. msgstr "Создание Gerber."
  2739. #: flatcamEditors/FlatCAMGrbEditor.py:3712
  2740. msgid "[success] Gerber editing finished."
  2741. msgstr ""
  2742. #: flatcamEditors/FlatCAMGrbEditor.py:3728
  2743. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  2744. msgstr ""
  2745. #: flatcamEditors/FlatCAMGrbEditor.py:4248
  2746. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  2747. msgstr ""
  2748. #: flatcamEditors/FlatCAMGrbEditor.py:4256
  2749. msgid "[success] Done. Apertures geometry deleted."
  2750. msgstr ""
  2751. #: flatcamEditors/FlatCAMGrbEditor.py:4405
  2752. msgid ""
  2753. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  2754. "again."
  2755. msgstr ""
  2756. #: flatcamEditors/FlatCAMGrbEditor.py:4434
  2757. msgid ""
  2758. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  2759. "retry."
  2760. msgstr ""
  2761. #: flatcamEditors/FlatCAMGrbEditor.py:4464
  2762. msgid ""
  2763. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  2764. "again."
  2765. msgstr ""
  2766. #: flatcamEditors/FlatCAMGrbEditor.py:4480
  2767. msgid "[success] Done. Scale Tool completed."
  2768. msgstr ""
  2769. #: flatcamGUI/FlatCAMGUI.py:50
  2770. msgid "&File"
  2771. msgstr "&Файл"
  2772. #: flatcamGUI/FlatCAMGUI.py:55
  2773. msgid "&New Project ...\tCTRL+N"
  2774. msgstr "&Новый проект ...\tCTRL+N"
  2775. #: flatcamGUI/FlatCAMGUI.py:57
  2776. msgid "Will create a new, blank project"
  2777. msgstr "Создаёт новый пустой проект"
  2778. #: flatcamGUI/FlatCAMGUI.py:62
  2779. msgid "&New"
  2780. msgstr "&Новый"
  2781. #: flatcamGUI/FlatCAMGUI.py:65
  2782. msgid "Geometry\tN"
  2783. msgstr "Geometry\tN"
  2784. #: flatcamGUI/FlatCAMGUI.py:67
  2785. msgid "Will create a new, empty Geometry Object."
  2786. msgstr "Создаёт новый объект Geometry."
  2787. #: flatcamGUI/FlatCAMGUI.py:69
  2788. msgid "Gerber\tB"
  2789. msgstr "Gerber\tB"
  2790. #: flatcamGUI/FlatCAMGUI.py:71
  2791. msgid "Will create a new, empty Gerber Object."
  2792. msgstr "Создаёт новый объект Gerber."
  2793. #: flatcamGUI/FlatCAMGUI.py:73
  2794. msgid "Excellon\tL"
  2795. msgstr "Excellon\tL"
  2796. #: flatcamGUI/FlatCAMGUI.py:75
  2797. msgid "Will create a new, empty Excellon Object."
  2798. msgstr "Создаёт новый объект Excellon."
  2799. #: flatcamGUI/FlatCAMGUI.py:78 flatcamTools/ToolPcbWizard.py:63
  2800. #: flatcamTools/ToolPcbWizard.py:71
  2801. msgid "Open"
  2802. msgstr "Открыть"
  2803. #: flatcamGUI/FlatCAMGUI.py:83
  2804. msgid "Open &Gerber ...\tCTRL+G"
  2805. msgstr "Открыть &Gerber...\tCTRL+G"
  2806. #: flatcamGUI/FlatCAMGUI.py:90
  2807. msgid "Open &Excellon ...\tCTRL+E"
  2808. msgstr "Открыть &Excellon ...\tCTRL+E"
  2809. #: flatcamGUI/FlatCAMGUI.py:95
  2810. msgid "Open G-&Code ..."
  2811. msgstr "Открыть G-&Code ..."
  2812. #: flatcamGUI/FlatCAMGUI.py:99
  2813. msgid "Open &Project ..."
  2814. msgstr "Открыть &проект..."
  2815. #: flatcamGUI/FlatCAMGUI.py:105
  2816. msgid "Open Config ..."
  2817. msgstr "Открыть конфигурацию ..."
  2818. #: flatcamGUI/FlatCAMGUI.py:109
  2819. msgid "Recent files"
  2820. msgstr "Последние файлы"
  2821. #: flatcamGUI/FlatCAMGUI.py:115
  2822. msgid "Scripting"
  2823. msgstr "Сценарии"
  2824. #: flatcamGUI/FlatCAMGUI.py:118
  2825. msgid "New Script ..."
  2826. msgstr "Новый сценарий ..."
  2827. #: flatcamGUI/FlatCAMGUI.py:120
  2828. msgid "Open Script ..."
  2829. msgstr "Открыть сценарий ..."
  2830. #: flatcamGUI/FlatCAMGUI.py:122
  2831. msgid "Run Script ...\tSHIFT+S"
  2832. msgstr "Выполнить сценарий ...\tSHIFT+S"
  2833. #: flatcamGUI/FlatCAMGUI.py:125
  2834. msgid ""
  2835. "Will run the opened Tcl Script thus\n"
  2836. "enabling the automation of certain\n"
  2837. "functions of FlatCAM."
  2838. msgstr ""
  2839. #: flatcamGUI/FlatCAMGUI.py:138
  2840. msgid "Import"
  2841. msgstr "Импорт"
  2842. #: flatcamGUI/FlatCAMGUI.py:140
  2843. msgid "&SVG as Geometry Object ..."
  2844. msgstr "&SVG как объект Geometry ..."
  2845. #: flatcamGUI/FlatCAMGUI.py:143
  2846. msgid "&SVG as Gerber Object ..."
  2847. msgstr "&SVG как объект Gerber ..."
  2848. #: flatcamGUI/FlatCAMGUI.py:148
  2849. msgid "&DXF as Geometry Object ..."
  2850. msgstr "&DXF как объект Geometry ..."
  2851. #: flatcamGUI/FlatCAMGUI.py:151
  2852. msgid "&DXF as Gerber Object ..."
  2853. msgstr "&DXF как объект Gerber ..."
  2854. #: flatcamGUI/FlatCAMGUI.py:156
  2855. msgid "Export"
  2856. msgstr "Экспорт"
  2857. #: flatcamGUI/FlatCAMGUI.py:159
  2858. msgid "Export &SVG ..."
  2859. msgstr "Экспорт &SVG ..."
  2860. #: flatcamGUI/FlatCAMGUI.py:162
  2861. msgid "Export DXF ..."
  2862. msgstr "Экспорт DXF ..."
  2863. #: flatcamGUI/FlatCAMGUI.py:167
  2864. msgid "Export &PNG ..."
  2865. msgstr "Экспорт &PNG ..."
  2866. #: flatcamGUI/FlatCAMGUI.py:169
  2867. msgid ""
  2868. "Will export an image in PNG format,\n"
  2869. "the saved image will contain the visual \n"
  2870. "information currently in FlatCAM Plot Area."
  2871. msgstr ""
  2872. "Экспортирует изображение в формате PNG,\n"
  2873. "сохраненное изображение будет содержать визуальную\n"
  2874. "информацию, открытую в настоящее время в рабочем пространстве FlatCAM."
  2875. #: flatcamGUI/FlatCAMGUI.py:177
  2876. msgid "Export &Excellon ..."
  2877. msgstr "Экспорт &Excellon ..."
  2878. #: flatcamGUI/FlatCAMGUI.py:180
  2879. msgid ""
  2880. "Will export an Excellon Object as Excellon file,\n"
  2881. "the coordinates format, the file units and zeros\n"
  2882. "are set in Preferences -> Excellon Export."
  2883. msgstr ""
  2884. #: flatcamGUI/FlatCAMGUI.py:186
  2885. msgid "Export &Gerber ..."
  2886. msgstr "Экспорт &Gerber ..."
  2887. #: flatcamGUI/FlatCAMGUI.py:189
  2888. msgid ""
  2889. "Will export an Gerber Object as Gerber file,\n"
  2890. "the coordinates format, the file units and zeros\n"
  2891. "are set in Preferences -> Gerber Export."
  2892. msgstr ""
  2893. #: flatcamGUI/FlatCAMGUI.py:199
  2894. msgid "Save &Defaults"
  2895. msgstr "Сохранить &настройки"
  2896. #: flatcamGUI/FlatCAMGUI.py:205 flatcamGUI/FlatCAMGUI.py:533
  2897. msgid "Save"
  2898. msgstr "Сохранить"
  2899. #: flatcamGUI/FlatCAMGUI.py:207
  2900. msgid "&Save Project ..."
  2901. msgstr "&Сохранить проект ..."
  2902. #: flatcamGUI/FlatCAMGUI.py:212
  2903. msgid "Save Project &As ...\tCTRL+S"
  2904. msgstr "Сохранить проект &как ...\tCTRL+S"
  2905. #: flatcamGUI/FlatCAMGUI.py:216
  2906. msgid "Save Project C&opy ..."
  2907. msgstr "Сохранить к&опию проекта..."
  2908. #: flatcamGUI/FlatCAMGUI.py:224
  2909. msgid "E&xit"
  2910. msgstr "В&ыход"
  2911. #: flatcamGUI/FlatCAMGUI.py:230
  2912. msgid "&Edit"
  2913. msgstr "&Правка"
  2914. #: flatcamGUI/FlatCAMGUI.py:233
  2915. msgid "Edit Object\tE"
  2916. msgstr "Редактировать объект\tE"
  2917. #: flatcamGUI/FlatCAMGUI.py:234
  2918. msgid "Close Editor\tCTRL+S"
  2919. msgstr "Закрыть редактор\tCTRL+S"
  2920. #: flatcamGUI/FlatCAMGUI.py:242
  2921. msgid "Conversion"
  2922. msgstr "Конвертация"
  2923. #: flatcamGUI/FlatCAMGUI.py:244
  2924. msgid "&Join Geo/Gerber/Exc -> Geo"
  2925. msgstr ""
  2926. #: flatcamGUI/FlatCAMGUI.py:246
  2927. msgid ""
  2928. "Merge a selection of objects, which can be of type:\n"
  2929. "- Gerber\n"
  2930. "- Excellon\n"
  2931. "- Geometry\n"
  2932. "into a new combo Geometry object."
  2933. msgstr ""
  2934. #: flatcamGUI/FlatCAMGUI.py:253
  2935. msgid "Join Excellon(s) -> Excellon"
  2936. msgstr ""
  2937. #: flatcamGUI/FlatCAMGUI.py:255
  2938. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  2939. msgstr ""
  2940. #: flatcamGUI/FlatCAMGUI.py:258
  2941. msgid "Join Gerber(s) -> Gerber"
  2942. msgstr ""
  2943. #: flatcamGUI/FlatCAMGUI.py:260
  2944. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  2945. msgstr ""
  2946. #: flatcamGUI/FlatCAMGUI.py:265
  2947. msgid "Convert Single to MultiGeo"
  2948. msgstr ""
  2949. #: flatcamGUI/FlatCAMGUI.py:267
  2950. msgid ""
  2951. "Will convert a Geometry object from single_geometry type\n"
  2952. "to a multi_geometry type."
  2953. msgstr ""
  2954. #: flatcamGUI/FlatCAMGUI.py:271
  2955. msgid "Convert Multi to SingleGeo"
  2956. msgstr ""
  2957. #: flatcamGUI/FlatCAMGUI.py:273
  2958. msgid ""
  2959. "Will convert a Geometry object from multi_geometry type\n"
  2960. "to a single_geometry type."
  2961. msgstr ""
  2962. #: flatcamGUI/FlatCAMGUI.py:279
  2963. msgid "Convert Any to Geo"
  2964. msgstr ""
  2965. #: flatcamGUI/FlatCAMGUI.py:281
  2966. msgid "Convert Any to Gerber"
  2967. msgstr ""
  2968. #: flatcamGUI/FlatCAMGUI.py:286
  2969. msgid "&Copy\tCTRL+C"
  2970. msgstr "&Копировать\tCTRL+C"
  2971. #: flatcamGUI/FlatCAMGUI.py:290
  2972. msgid "&Delete\tDEL"
  2973. msgstr "&Удалить\tDEL"
  2974. #: flatcamGUI/FlatCAMGUI.py:294
  2975. msgid "Se&t Origin\tO"
  2976. msgstr ""
  2977. #: flatcamGUI/FlatCAMGUI.py:295
  2978. msgid "Jump to Location\tJ"
  2979. msgstr "Перейти к расположению\tJ"
  2980. #: flatcamGUI/FlatCAMGUI.py:300
  2981. msgid "Toggle Units\tQ"
  2982. msgstr "Переключить единицы измерения\tQ"
  2983. #: flatcamGUI/FlatCAMGUI.py:302
  2984. msgid "&Select All\tCTRL+A"
  2985. msgstr "&Выбрать все\tCTRL+A"
  2986. #: flatcamGUI/FlatCAMGUI.py:306
  2987. msgid "&Preferences\tSHIFT+P"
  2988. msgstr "&Настройки\tSHIFT+P"
  2989. #: flatcamGUI/FlatCAMGUI.py:309
  2990. msgid "&Options"
  2991. msgstr "&Опции"
  2992. #: flatcamGUI/FlatCAMGUI.py:324
  2993. msgid "&Rotate Selection\tSHIFT+(R)"
  2994. msgstr ""
  2995. #: flatcamGUI/FlatCAMGUI.py:329
  2996. msgid "&Skew on X axis\tSHIFT+X"
  2997. msgstr ""
  2998. #: flatcamGUI/FlatCAMGUI.py:331
  2999. msgid "S&kew on Y axis\tSHIFT+Y"
  3000. msgstr ""
  3001. #: flatcamGUI/FlatCAMGUI.py:336
  3002. msgid "Flip on &X axis\tX"
  3003. msgstr ""
  3004. #: flatcamGUI/FlatCAMGUI.py:338
  3005. msgid "Flip on &Y axis\tY"
  3006. msgstr ""
  3007. #: flatcamGUI/FlatCAMGUI.py:343
  3008. msgid "View source\tALT+S"
  3009. msgstr ""
  3010. #: flatcamGUI/FlatCAMGUI.py:348
  3011. msgid "&View"
  3012. msgstr "&Вид"
  3013. #: flatcamGUI/FlatCAMGUI.py:349
  3014. msgid "Enable all plots\tALT+1"
  3015. msgstr "Включить все участки\tALT+1"
  3016. #: flatcamGUI/FlatCAMGUI.py:351
  3017. msgid "Disable all plots\tALT+2"
  3018. msgstr "Отключить все участки\tALT+2"
  3019. #: flatcamGUI/FlatCAMGUI.py:353
  3020. msgid "Disable non-selected\tALT+3"
  3021. msgstr "Отключить не выбранные\tALT+3"
  3022. #: flatcamGUI/FlatCAMGUI.py:356
  3023. msgid "&Zoom Fit\tV"
  3024. msgstr ""
  3025. #: flatcamGUI/FlatCAMGUI.py:357
  3026. msgid "&Zoom In\t-"
  3027. msgstr "&Уменьшить\t-"
  3028. #: flatcamGUI/FlatCAMGUI.py:358
  3029. msgid "&Zoom Out\t="
  3030. msgstr "&Увеличить\t="
  3031. #: flatcamGUI/FlatCAMGUI.py:362
  3032. msgid "Toggle Code Editor\tCTRL+E"
  3033. msgstr ""
  3034. #: flatcamGUI/FlatCAMGUI.py:365
  3035. msgid "&Toggle FullScreen\tALT+F10"
  3036. msgstr ""
  3037. #: flatcamGUI/FlatCAMGUI.py:367
  3038. msgid "&Toggle Plot Area\tCTRL+F10"
  3039. msgstr ""
  3040. #: flatcamGUI/FlatCAMGUI.py:369
  3041. msgid "&Toggle Project/Sel/Tool\t`"
  3042. msgstr ""
  3043. #: flatcamGUI/FlatCAMGUI.py:372
  3044. msgid "&Toggle Grid Snap\tG"
  3045. msgstr ""
  3046. #: flatcamGUI/FlatCAMGUI.py:374
  3047. msgid "&Toggle Axis\tSHIFT+G"
  3048. msgstr ""
  3049. #: flatcamGUI/FlatCAMGUI.py:377
  3050. msgid "Toggle Workspace\tSHIFT+W"
  3051. msgstr ""
  3052. #: flatcamGUI/FlatCAMGUI.py:381
  3053. msgid "&Tool"
  3054. msgstr "&Инструменты"
  3055. #: flatcamGUI/FlatCAMGUI.py:383
  3056. msgid "&Command Line\tS"
  3057. msgstr "&Командная строка\tS"
  3058. #: flatcamGUI/FlatCAMGUI.py:386
  3059. msgid "&Help"
  3060. msgstr "&Помощь"
  3061. #: flatcamGUI/FlatCAMGUI.py:387
  3062. msgid "Help\tF1"
  3063. msgstr "Справка\tF1"
  3064. #: flatcamGUI/FlatCAMGUI.py:388
  3065. msgid "FlatCAM.org"
  3066. msgstr "FlatCAM.org"
  3067. #: flatcamGUI/FlatCAMGUI.py:391
  3068. msgid "Shortcuts List\tF3"
  3069. msgstr "Список быстрых клавиш\tF3"
  3070. #: flatcamGUI/FlatCAMGUI.py:392
  3071. msgid "YouTube Channel\tF4"
  3072. msgstr "Канал YouTube\tF4"
  3073. #: flatcamGUI/FlatCAMGUI.py:394
  3074. msgid "About"
  3075. msgstr "О программе"
  3076. #: flatcamGUI/FlatCAMGUI.py:405
  3077. msgid "Add Circle\tO"
  3078. msgstr "Добавить круг\tO"
  3079. #: flatcamGUI/FlatCAMGUI.py:407
  3080. msgid "Add Arc\tA"
  3081. msgstr "Добавить дугу\tA"
  3082. #: flatcamGUI/FlatCAMGUI.py:410
  3083. msgid "Add Rectangle\tR"
  3084. msgstr "Добавить прямоугольник\tR"
  3085. #: flatcamGUI/FlatCAMGUI.py:413
  3086. msgid "Add Polygon\tN"
  3087. msgstr "Добавить полигон\tN"
  3088. #: flatcamGUI/FlatCAMGUI.py:415
  3089. msgid "Add Path\tP"
  3090. msgstr "Добавить дорожку\tP"
  3091. #: flatcamGUI/FlatCAMGUI.py:417
  3092. msgid "Add Text\tT"
  3093. msgstr "Добавить текст\tT"
  3094. #: flatcamGUI/FlatCAMGUI.py:420
  3095. msgid "Polygon Union\tU"
  3096. msgstr ""
  3097. #: flatcamGUI/FlatCAMGUI.py:422
  3098. msgid "Polygon Intersection\tE"
  3099. msgstr ""
  3100. #: flatcamGUI/FlatCAMGUI.py:424
  3101. msgid "Polygon Subtraction\tS"
  3102. msgstr ""
  3103. #: flatcamGUI/FlatCAMGUI.py:428
  3104. msgid "Cut Path\tX"
  3105. msgstr "Вырезать дорожку\tX"
  3106. #: flatcamGUI/FlatCAMGUI.py:430
  3107. msgid "Copy Geom\tC"
  3108. msgstr "Копировать Geom\tC"
  3109. #: flatcamGUI/FlatCAMGUI.py:432
  3110. msgid "Delete Shape\tDEL"
  3111. msgstr "Удалить фигуру\tDEL"
  3112. #: flatcamGUI/FlatCAMGUI.py:435 flatcamGUI/FlatCAMGUI.py:508
  3113. msgid "Move\tM"
  3114. msgstr "Переместить\tM"
  3115. #: flatcamGUI/FlatCAMGUI.py:437
  3116. msgid "Buffer Tool\tB"
  3117. msgstr ""
  3118. #: flatcamGUI/FlatCAMGUI.py:440
  3119. msgid "Paint Tool\tI"
  3120. msgstr ""
  3121. #: flatcamGUI/FlatCAMGUI.py:443
  3122. msgid "Transform Tool\tALT+R"
  3123. msgstr ""
  3124. #: flatcamGUI/FlatCAMGUI.py:447
  3125. msgid "Toggle Corner Snap\tK"
  3126. msgstr ""
  3127. #: flatcamGUI/FlatCAMGUI.py:450
  3128. msgid ">Excellon Editor<"
  3129. msgstr ">Редактор Excellon<"
  3130. #: flatcamGUI/FlatCAMGUI.py:454
  3131. msgid "Add Drill Array\tA"
  3132. msgstr "Добавить группу свёрел\tA"
  3133. #: flatcamGUI/FlatCAMGUI.py:456
  3134. msgid "Add Drill\tD"
  3135. msgstr "Добавить сверло\tD"
  3136. #: flatcamGUI/FlatCAMGUI.py:460
  3137. msgid "Resize Drill(S)\tR"
  3138. msgstr ""
  3139. #: flatcamGUI/FlatCAMGUI.py:462 flatcamGUI/FlatCAMGUI.py:501
  3140. msgid "Copy\tC"
  3141. msgstr "Копировать\tC"
  3142. #: flatcamGUI/FlatCAMGUI.py:464 flatcamGUI/FlatCAMGUI.py:503
  3143. msgid "Delete\tDEL"
  3144. msgstr "Удалить\tDEL"
  3145. #: flatcamGUI/FlatCAMGUI.py:469
  3146. msgid "Move Drill(s)\tM"
  3147. msgstr "Переместить сверла\tM"
  3148. #: flatcamGUI/FlatCAMGUI.py:473
  3149. msgid ">Gerber Editor<"
  3150. msgstr ">Редактор Gerber<"
  3151. #: flatcamGUI/FlatCAMGUI.py:477
  3152. msgid "Add Pad\tP"
  3153. msgstr ""
  3154. #: flatcamGUI/FlatCAMGUI.py:479
  3155. msgid "Add Pad Array\tA"
  3156. msgstr ""
  3157. #: flatcamGUI/FlatCAMGUI.py:481
  3158. msgid "Add Track\tT"
  3159. msgstr "Добавить маршрут\tT"
  3160. #: flatcamGUI/FlatCAMGUI.py:483
  3161. msgid "Add Region\tN"
  3162. msgstr "Добавить регион\tN"
  3163. #: flatcamGUI/FlatCAMGUI.py:487
  3164. msgid "Poligonize\tALT+N"
  3165. msgstr ""
  3166. #: flatcamGUI/FlatCAMGUI.py:489
  3167. msgid "Add SemiDisc\tE"
  3168. msgstr "Добавить полукруг\tE"
  3169. #: flatcamGUI/FlatCAMGUI.py:491
  3170. msgid "Add Disc\tD"
  3171. msgstr "Добавить диск\tD"
  3172. #: flatcamGUI/FlatCAMGUI.py:493
  3173. msgid "Buffer\tB"
  3174. msgstr ""
  3175. #: flatcamGUI/FlatCAMGUI.py:495
  3176. msgid "Scale\tS"
  3177. msgstr "Масштабировать\tS"
  3178. #: flatcamGUI/FlatCAMGUI.py:497
  3179. msgid "Transform\tALT+R"
  3180. msgstr ""
  3181. #: flatcamGUI/FlatCAMGUI.py:524
  3182. msgid "Enable Plot"
  3183. msgstr "Включить участок"
  3184. #: flatcamGUI/FlatCAMGUI.py:525
  3185. msgid "Disable Plot"
  3186. msgstr "Отключить участок"
  3187. #: flatcamGUI/FlatCAMGUI.py:527
  3188. msgid "Generate CNC"
  3189. msgstr ""
  3190. #: flatcamGUI/FlatCAMGUI.py:528
  3191. msgid "View Source"
  3192. msgstr ""
  3193. #: flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:1620
  3194. msgid "Edit"
  3195. msgstr "Правка"
  3196. #: flatcamGUI/FlatCAMGUI.py:536 flatcamGUI/FlatCAMGUI.py:1626
  3197. #: flatcamTools/ToolProperties.py:25
  3198. msgid "Properties"
  3199. msgstr "Свойства"
  3200. #: flatcamGUI/FlatCAMGUI.py:565
  3201. msgid "File Toolbar"
  3202. msgstr "Панель файлов"
  3203. #: flatcamGUI/FlatCAMGUI.py:569
  3204. msgid "Edit Toolbar"
  3205. msgstr "Панель редактирования"
  3206. #: flatcamGUI/FlatCAMGUI.py:573
  3207. msgid "View Toolbar"
  3208. msgstr "Панель просмотра"
  3209. #: flatcamGUI/FlatCAMGUI.py:577
  3210. msgid "Shell Toolbar"
  3211. msgstr ""
  3212. #: flatcamGUI/FlatCAMGUI.py:581
  3213. msgid "Tools Toolbar"
  3214. msgstr "Панель инструментов"
  3215. #: flatcamGUI/FlatCAMGUI.py:585
  3216. msgid "Excellon Editor Toolbar"
  3217. msgstr "Панель редактора Excellon"
  3218. #: flatcamGUI/FlatCAMGUI.py:589
  3219. msgid "Geometry Editor Toolbar"
  3220. msgstr ""
  3221. #: flatcamGUI/FlatCAMGUI.py:593
  3222. msgid "Gerber Editor Toolbar"
  3223. msgstr ""
  3224. #: flatcamGUI/FlatCAMGUI.py:597
  3225. msgid "Grid Toolbar"
  3226. msgstr "Панель сетки координат"
  3227. #: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1837
  3228. msgid "Open project"
  3229. msgstr "Открыть проект"
  3230. #: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1838
  3231. msgid "Save project"
  3232. msgstr "Сохранить проект"
  3233. #: flatcamGUI/FlatCAMGUI.py:620 flatcamGUI/FlatCAMGUI.py:1841
  3234. msgid "New Blank Geometry"
  3235. msgstr "Новый Geometry"
  3236. #: flatcamGUI/FlatCAMGUI.py:621
  3237. msgid "New Blank Gerber"
  3238. msgstr "Новый Gerber"
  3239. #: flatcamGUI/FlatCAMGUI.py:622 flatcamGUI/FlatCAMGUI.py:1842
  3240. msgid "New Blank Excellon"
  3241. msgstr "Новый Excellon"
  3242. #: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1844
  3243. msgid "Editor"
  3244. msgstr "Редактор"
  3245. #: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1846
  3246. msgid "Save Object and close the Editor"
  3247. msgstr ""
  3248. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1850
  3249. msgid "&Delete"
  3250. msgstr "&Удалить"
  3251. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1853
  3252. msgid "&Replot"
  3253. msgstr "&Перерисовать объект"
  3254. #: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1854
  3255. msgid "&Clear plot"
  3256. msgstr ""
  3257. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1855
  3258. msgid "Zoom In"
  3259. msgstr "Увеличить"
  3260. #: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1856
  3261. msgid "Zoom Out"
  3262. msgstr "Уменьшить"
  3263. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1595
  3264. #: flatcamGUI/FlatCAMGUI.py:1857
  3265. msgid "Zoom Fit"
  3266. msgstr "Подогнать размер"
  3267. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1862
  3268. msgid "&Command Line"
  3269. msgstr "&Командная строка"
  3270. #: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1865
  3271. msgid "2Sided Tool"
  3272. msgstr "2-х стор. платы"
  3273. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1866
  3274. msgid "&Cutout Tool"
  3275. msgstr "&Обрезка контура платы"
  3276. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1867
  3277. #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285
  3278. msgid "NCC Tool"
  3279. msgstr ""
  3280. #: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1871
  3281. msgid "Panel Tool"
  3282. msgstr ""
  3283. #: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1872
  3284. #: flatcamTools/ToolFilm.py:204
  3285. msgid "Film Tool"
  3286. msgstr ""
  3287. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1874
  3288. msgid "SolderPaste Tool"
  3289. msgstr ""
  3290. #: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1875
  3291. #: flatcamTools/ToolSub.py:26
  3292. msgid "Substract Tool"
  3293. msgstr ""
  3294. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1880
  3295. msgid "Calculators Tool"
  3296. msgstr ""
  3297. #: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:676
  3298. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1884
  3299. #: flatcamGUI/FlatCAMGUI.py:1936
  3300. msgid "Select"
  3301. msgstr "Выбрать"
  3302. #: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1885
  3303. msgid "Add Drill Hole"
  3304. msgstr ""
  3305. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1887
  3306. msgid "Add Drill Hole Array"
  3307. msgstr ""
  3308. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1888
  3309. msgid "Resize Drill"
  3310. msgstr ""
  3311. #: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1891
  3312. msgid "Copy Drill"
  3313. msgstr "Копировать сверло"
  3314. #: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1893
  3315. msgid "Delete Drill"
  3316. msgstr "Удалить сверло"
  3317. #: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1896
  3318. msgid "Move Drill"
  3319. msgstr "Переместить сверло"
  3320. #: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1900
  3321. msgid "Add Circle"
  3322. msgstr "Добавить круг"
  3323. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1901
  3324. msgid "Add Arc"
  3325. msgstr "Добавить дугу"
  3326. #: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1903
  3327. msgid "Add Rectangle"
  3328. msgstr "Добавить прямоугольник"
  3329. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1906
  3330. msgid "Add Path"
  3331. msgstr "Добавить дорожку"
  3332. #: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1908
  3333. msgid "Add Polygon"
  3334. msgstr "Добавить полигон"
  3335. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1910
  3336. msgid "Add Text"
  3337. msgstr "Добавить текст"
  3338. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1912
  3339. msgid "Add Buffer"
  3340. msgstr ""
  3341. #: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1913
  3342. msgid "Paint Shape"
  3343. msgstr ""
  3344. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:724
  3345. #: flatcamGUI/FlatCAMGUI.py:1914 flatcamGUI/FlatCAMGUI.py:1950
  3346. msgid "Eraser"
  3347. msgstr ""
  3348. #: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1918
  3349. msgid "Polygon Union"
  3350. msgstr "Сращение полигонов"
  3351. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1920
  3352. msgid "Polygon Intersection"
  3353. msgstr "Пересечение полигонов"
  3354. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:1922
  3355. msgid "Polygon Subtraction"
  3356. msgstr "Вычитание полигонов"
  3357. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1925
  3358. msgid "Cut Path"
  3359. msgstr "Вырезать путь"
  3360. #: flatcamGUI/FlatCAMGUI.py:700
  3361. msgid "Copy Shape(s)"
  3362. msgstr "Копировать форму(ы)"
  3363. #: flatcamGUI/FlatCAMGUI.py:703
  3364. msgid "Delete Shape '-'"
  3365. msgstr "Удалить фигуру '-'"
  3366. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:731
  3367. #: flatcamGUI/FlatCAMGUI.py:1930 flatcamGUI/FlatCAMGUI.py:1957
  3368. msgid "Transformations"
  3369. msgstr ""
  3370. #: flatcamGUI/FlatCAMGUI.py:707
  3371. msgid "Move Objects "
  3372. msgstr "Переместить объект "
  3373. #: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1937
  3374. msgid "Add Pad"
  3375. msgstr ""
  3376. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1939
  3377. msgid "Add Track"
  3378. msgstr "Добавить маршрут"
  3379. #: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1940
  3380. msgid "Add Region"
  3381. msgstr "Добавить регион"
  3382. #: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1942
  3383. msgid "Poligonize"
  3384. msgstr ""
  3385. #: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1944
  3386. msgid "SemiDisc"
  3387. msgstr ""
  3388. #: flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1945
  3389. msgid "Disc"
  3390. msgstr "Диск"
  3391. #: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1605
  3392. #: flatcamGUI/FlatCAMGUI.py:1625 flatcamGUI/FlatCAMGUI.py:1959
  3393. #: flatcamTools/ToolMove.py:26
  3394. msgid "Move"
  3395. msgstr "Переместить"
  3396. #: flatcamGUI/FlatCAMGUI.py:739 flatcamGUI/FlatCAMGUI.py:1965
  3397. msgid "Snap to grid"
  3398. msgstr "Привязка к сетке"
  3399. #: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1968
  3400. msgid "Grid X snapping distance"
  3401. msgstr ""
  3402. #: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1973
  3403. msgid "Grid Y snapping distance"
  3404. msgstr ""
  3405. #: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1979
  3406. msgid ""
  3407. "When active, value on Grid_X\n"
  3408. "is copied to the Grid_Y value."
  3409. msgstr ""
  3410. #: flatcamGUI/FlatCAMGUI.py:759 flatcamGUI/FlatCAMGUI.py:1985
  3411. msgid "Snap to corner"
  3412. msgstr "Привязка к углу"
  3413. #: flatcamGUI/FlatCAMGUI.py:763 flatcamGUI/FlatCAMGUI.py:1989
  3414. #: flatcamGUI/FlatCAMGUI.py:3346
  3415. msgid "Max. magnet distance"
  3416. msgstr "Макс. магнит расстояние"
  3417. #: flatcamGUI/FlatCAMGUI.py:791 flatcamGUI/FlatCAMGUI.py:1589
  3418. msgid "Project"
  3419. msgstr "Проект"
  3420. #: flatcamGUI/FlatCAMGUI.py:801
  3421. msgid "Selected"
  3422. msgstr "Выбранное"
  3423. #: flatcamGUI/FlatCAMGUI.py:820 flatcamGUI/FlatCAMGUI.py:828
  3424. msgid "Plot Area"
  3425. msgstr ""
  3426. #: flatcamGUI/FlatCAMGUI.py:852
  3427. msgid "General"
  3428. msgstr "Общие"
  3429. #: flatcamGUI/FlatCAMGUI.py:861
  3430. msgid "APP. DEFAULTS"
  3431. msgstr "СТАНД. НАСТРОЙКИ"
  3432. #: flatcamGUI/FlatCAMGUI.py:862
  3433. msgid "PROJ. OPTIONS "
  3434. msgstr "ПАРАМ. ПРОЕКТА "
  3435. #: flatcamGUI/FlatCAMGUI.py:873
  3436. msgid "GERBER"
  3437. msgstr "GERBER"
  3438. #: flatcamGUI/FlatCAMGUI.py:882
  3439. msgid "EXCELLON"
  3440. msgstr "EXCELLON"
  3441. #: flatcamGUI/FlatCAMGUI.py:891
  3442. msgid "GEOMETRY"
  3443. msgstr "GEOMETRY"
  3444. #: flatcamGUI/FlatCAMGUI.py:901
  3445. msgid "CNC-JOB"
  3446. msgstr ""
  3447. #: flatcamGUI/FlatCAMGUI.py:910
  3448. msgid "TOOLS"
  3449. msgstr "ИНСТР-ТЫ"
  3450. #: flatcamGUI/FlatCAMGUI.py:927
  3451. msgid "Import Preferences"
  3452. msgstr ""
  3453. #: flatcamGUI/FlatCAMGUI.py:930
  3454. msgid ""
  3455. "Import a full set of FlatCAM settings from a file\n"
  3456. "previously saved on HDD.\n"
  3457. "\n"
  3458. "FlatCAM automatically save a 'factory_defaults' file\n"
  3459. "on the first start. Do not delete that file."
  3460. msgstr ""
  3461. #: flatcamGUI/FlatCAMGUI.py:937
  3462. msgid "Export Preferences"
  3463. msgstr "Экспорт настроек"
  3464. #: flatcamGUI/FlatCAMGUI.py:940
  3465. msgid ""
  3466. "Export a full set of FlatCAM settings in a file\n"
  3467. "that is saved on HDD."
  3468. msgstr ""
  3469. #: flatcamGUI/FlatCAMGUI.py:945
  3470. msgid "Open Pref Folder"
  3471. msgstr ""
  3472. #: flatcamGUI/FlatCAMGUI.py:948
  3473. msgid "Open the folder where FlatCAM save the preferences files."
  3474. msgstr ""
  3475. #: flatcamGUI/FlatCAMGUI.py:956
  3476. msgid "Save Preferences"
  3477. msgstr "Сохранить настройки"
  3478. #: flatcamGUI/FlatCAMGUI.py:959
  3479. msgid ""
  3480. "Save the current settings in the 'current_defaults' file\n"
  3481. "which is the file storing the working default preferences."
  3482. msgstr ""
  3483. "Сохраняет текущие настройки в файле 'current_defaults'\n"
  3484. "который является файлом, хранящим рабочие настройки по умолчанию."
  3485. #: flatcamGUI/FlatCAMGUI.py:985
  3486. msgid ""
  3487. "<b>General Shortcut list</b><br>\n"
  3488. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3489. "\"width:283px\">\n"
  3490. " <tbody>\n"
  3491. " <tr height=\"20\">\n"
  3492. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3493. "td>\n"
  3494. " <td width=\"194\"><span style=\"color:"
  3495. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3496. " </tr>\n"
  3497. " <tr height=\"20\">\n"
  3498. " <td height=\"20\">&nbsp;</td>\n"
  3499. " <td>&nbsp;</td>\n"
  3500. " </tr>\n"
  3501. " <tr height=\"20\">\n"
  3502. " <td height=\"20\"><strong>1</strong></td>\n"
  3503. " <td>&nbsp;Switch to Project Tab</td>\n"
  3504. " </tr>\n"
  3505. " <tr height=\"20\">\n"
  3506. " <td height=\"20\"><strong>2</strong></td>\n"
  3507. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3508. " </tr>\n"
  3509. " <tr height=\"20\">\n"
  3510. " <td height=\"20\"><strong>3</strong></td>\n"
  3511. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3512. " </tr>\n"
  3513. " <tr height=\"20\">\n"
  3514. " <td height=\"20\">&nbsp;</td>\n"
  3515. " <td>&nbsp;</td>\n"
  3516. " </tr>\n"
  3517. " <tr height=\"20\">\n"
  3518. " <td height=\"20\"><strong>B</strong></td>\n"
  3519. " <td>&nbsp;New Gerber</td>\n"
  3520. " </tr>\n"
  3521. " <tr height=\"20\">\n"
  3522. " <td height=\"20\"><strong>E</strong></td>\n"
  3523. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3524. " </tr>\n"
  3525. " <tr height=\"20\">\n"
  3526. " <td height=\"20\"><strong>G</strong></td>\n"
  3527. " <td>&nbsp;Grid On/Off</td>\n"
  3528. " </tr>\n"
  3529. " <tr height=\"20\">\n"
  3530. " <td height=\"20\"><strong>J</strong></td>\n"
  3531. " <td>&nbsp;Jump to Coordinates</td>\n"
  3532. " </tr>\n"
  3533. " <tr height=\"20\">\n"
  3534. " <td height=\"20\"><strong>L</strong></td>\n"
  3535. " <td>&nbsp;New Excellon</td>\n"
  3536. " </tr>\n"
  3537. " <tr height=\"20\">\n"
  3538. " <td height=\"20\"><strong>M</strong></td>\n"
  3539. " <td>&nbsp;Move Obj</td>\n"
  3540. " </tr>\n"
  3541. " <tr height=\"20\">\n"
  3542. " <td height=\"20\"><strong>N</strong></td>\n"
  3543. " <td>&nbsp;New Geometry</td>\n"
  3544. " </tr>\n"
  3545. " <tr height=\"20\">\n"
  3546. " <td height=\"20\"><strong>O</strong></td>\n"
  3547. " <td>&nbsp;Set Origin</td>\n"
  3548. " </tr>\n"
  3549. " <tr height=\"20\">\n"
  3550. " <td height=\"20\"><strong>Q</strong></td>\n"
  3551. " <td>&nbsp;Change Units</td>\n"
  3552. " </tr>\n"
  3553. " <tr height=\"20\">\n"
  3554. " <td height=\"20\"><strong>P</strong></td>\n"
  3555. " <td>&nbsp;Open Properties Tool</td>\n"
  3556. " </tr>\n"
  3557. " <tr height=\"20\">\n"
  3558. " <td height=\"20\"><strong>R</strong></td>\n"
  3559. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3560. " </tr>\n"
  3561. " <tr height=\"20\">\n"
  3562. " <td height=\"20\"><strong>S</strong></td>\n"
  3563. " <td>&nbsp;Shell Toggle</td>\n"
  3564. " </tr>\n"
  3565. " <tr height=\"20\">\n"
  3566. " <td height=\"20\"><strong>T</strong></td>\n"
  3567. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3568. "or in Tools NCC or Tools Paint)</td>\n"
  3569. " </tr>\n"
  3570. " <tr height=\"20\">\n"
  3571. " <td height=\"20\"><strong>V</strong></td>\n"
  3572. " <td>&nbsp;Zoom Fit</td>\n"
  3573. " </tr>\n"
  3574. " <tr height=\"20\">\n"
  3575. " <td height=\"20\"><strong>X</strong></td>\n"
  3576. " <td>&nbsp;Flip on X_axis</td>\n"
  3577. " </tr>\n"
  3578. " <tr height=\"20\">\n"
  3579. " <td height=\"20\"><strong>Y</strong></td>\n"
  3580. " <td>&nbsp;Flip on Y_axis</td>\n"
  3581. " </tr>\n"
  3582. " <tr height=\"20\">\n"
  3583. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3584. " <td>&nbsp;Zoom Out</td>\n"
  3585. " </tr>\n"
  3586. " <tr height=\"20\">\n"
  3587. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3588. " <td>&nbsp;Zoom In</td>\n"
  3589. " </tr>\n"
  3590. " <tr height=\"20\">\n"
  3591. " <td height=\"20\">&nbsp;</td>\n"
  3592. " <td>&nbsp;</td>\n"
  3593. " </tr>\n"
  3594. " <tr height=\"20\">\n"
  3595. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3596. " <td>&nbsp;Select All</td>\n"
  3597. " </tr>\n"
  3598. " <tr height=\"20\">\n"
  3599. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3600. " <td>&nbsp;Copy Obj</td>\n"
  3601. " </tr>\n"
  3602. " <tr height=\"20\">\n"
  3603. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3604. " <td>&nbsp;Open Excellon File</td>\n"
  3605. " </tr>\n"
  3606. " <tr height=\"20\">\n"
  3607. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3608. " <td>&nbsp;Open Gerber File</td>\n"
  3609. " </tr>\n"
  3610. " <tr height=\"20\">\n"
  3611. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3612. " <td>&nbsp;New Project</td>\n"
  3613. " </tr>\n"
  3614. " <tr height=\"20\">\n"
  3615. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3616. " <td>&nbsp;Measurement Tool</td>\n"
  3617. " </tr>\n"
  3618. " <tr height=\"20\">\n"
  3619. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3620. " <td>&nbsp;Open Project</td>\n"
  3621. " </tr>\n"
  3622. " <tr height=\"20\">\n"
  3623. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3624. " <td>&nbsp;Save Project As</td>\n"
  3625. " </tr>\n"
  3626. " <tr height=\"20\">\n"
  3627. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3628. " <td>&nbsp;Toggle Plot Area</td>\n"
  3629. " </tr>\n"
  3630. " <tr height=\"20\">\n"
  3631. " <td height=\"20\">&nbsp;</td>\n"
  3632. " <td>&nbsp;</td>\n"
  3633. " </tr>\n"
  3634. " <tr height=\"20\">\n"
  3635. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3636. " <td>&nbsp;Copy Obj_Name</td>\n"
  3637. " </tr>\n"
  3638. " <tr height=\"20\">\n"
  3639. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3640. " <td>&nbsp;Toggle Code Editor</td>\n"
  3641. " </tr>\n"
  3642. " <tr height=\"20\">\n"
  3643. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3644. " <td>&nbsp;Toggle the axis</td>\n"
  3645. " </tr>\n"
  3646. " <tr height=\"20\">\n"
  3647. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3648. " <td>&nbsp;Open Preferences Window</td>\n"
  3649. " </tr>\n"
  3650. " <tr height=\"20\">\n"
  3651. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3652. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3653. " </tr>\n"
  3654. " <tr height=\"20\">\n"
  3655. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3656. " <td>&nbsp;Run a Script</td>\n"
  3657. " </tr>\n"
  3658. " <tr height=\"20\">\n"
  3659. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3660. " <td>&nbsp;Toggle the workspace</td>\n"
  3661. " </tr>\n"
  3662. " <tr height=\"20\">\n"
  3663. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3664. " <td>&nbsp;Skew on X axis</td>\n"
  3665. " </tr>\n"
  3666. " <tr height=\"20\">\n"
  3667. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3668. " <td>&nbsp;Skew on Y axis</td>\n"
  3669. " </tr>\n"
  3670. " <tr height=\"20\">\n"
  3671. " <td height=\"20\">&nbsp;</td>\n"
  3672. " <td>&nbsp;</td>\n"
  3673. " </tr>\n"
  3674. " <tr height=\"20\">\n"
  3675. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3676. " <td>&nbsp;Calculators Tool</td>\n"
  3677. " </tr>\n"
  3678. " <tr height=\"20\">\n"
  3679. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3680. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3681. " </tr>\n"
  3682. " <tr height=\"20\">\n"
  3683. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3684. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3685. " </tr>\n"
  3686. " <tr height=\"20\">\n"
  3687. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3688. " <td>&nbsp;Film PCB Tool</td>\n"
  3689. " </tr>\n"
  3690. " <tr height=\"20\">\n"
  3691. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3692. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3693. " </tr>\n"
  3694. " <tr height=\"20\">\n"
  3695. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3696. " <td>&nbsp;Paint Area Tool</td>\n"
  3697. " </tr>\n"
  3698. " <tr height=\"20\">\n"
  3699. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  3700. " <td>&nbsp;PDF Import Tool</td>\n"
  3701. " </tr>\n"
  3702. " <tr height=\"20\">\n"
  3703. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3704. " <td>&nbsp;Transformations Tool</td>\n"
  3705. " </tr>\n"
  3706. " <tr height=\"20\">\n"
  3707. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3708. " <td>&nbsp;View File Source</td>\n"
  3709. " </tr>\n"
  3710. " <tr height=\"20\">\n"
  3711. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3712. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3713. " </tr>\n"
  3714. " <tr height=\"20\">\n"
  3715. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3716. " <td>&nbsp;Enable all Plots</td>\n"
  3717. " </tr>\n"
  3718. " <tr height=\"20\">\n"
  3719. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3720. " <td>&nbsp;Disable all Plots</td>\n"
  3721. " </tr>\n"
  3722. " <tr height=\"20\">\n"
  3723. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3724. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3725. " </tr>\n"
  3726. " <tr height=\"20\">\n"
  3727. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3728. " <td>&nbsp;Toggle Full Screen</td>\n"
  3729. " </tr>\n"
  3730. " <tr height=\"20\">\n"
  3731. " <td height=\"20\">&nbsp;</td>\n"
  3732. " <td>&nbsp;</td>\n"
  3733. " </tr>\n"
  3734. " <tr height=\"20\">\n"
  3735. " <td height=\"20\"><strong>F1</strong></td>\n"
  3736. " <td>&nbsp;Open Online Manual</td>\n"
  3737. " </tr>\n"
  3738. " <tr height=\"20\">\n"
  3739. " <td height=\"20\"><strong>F4</strong></td>\n"
  3740. " <td>&nbsp;Open Online Tutorials</td>\n"
  3741. " </tr>\n"
  3742. " <tr height=\"20\">\n"
  3743. " <td height=\"20\"><strong>Del</strong></td>\n"
  3744. " <td>&nbsp;Delete Object</td>\n"
  3745. " </tr>\n"
  3746. " <tr height=\"20\">\n"
  3747. " <td height=\"20\"><strong>Del</strong></td>\n"
  3748. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3749. " </tr>\n"
  3750. " <tr height=\"20\">\n"
  3751. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3752. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  3753. "Side)</td>\n"
  3754. " </tr>\n"
  3755. " <tr height=\"20\">\n"
  3756. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3757. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3758. " </tr>\n"
  3759. " <tr height=\"20\">\n"
  3760. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3761. " <td>&nbsp;Deselects all objects</td>\n"
  3762. " </tr>\n"
  3763. " </tbody>\n"
  3764. " </table>\n"
  3765. " \n"
  3766. " "
  3767. msgstr ""
  3768. #: flatcamGUI/FlatCAMGUI.py:1270
  3769. msgid ""
  3770. "<b>Editor Shortcut list</b><br>\n"
  3771. " <br>\n"
  3772. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  3773. "strong><br>\n"
  3774. " \n"
  3775. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3776. "\"width:283px\">\n"
  3777. " <tbody>\n"
  3778. " <tr height=\"20\">\n"
  3779. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3780. "td>\n"
  3781. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3782. " </tr>\n"
  3783. " <tr height=\"20\">\n"
  3784. " <td height=\"20\"><strong>B</strong></td>\n"
  3785. " <td>&nbsp;Buffer Tool</td>\n"
  3786. " </tr>\n"
  3787. " <tr height=\"20\">\n"
  3788. " <td height=\"20\"><strong>C</strong></td>\n"
  3789. " <td>&nbsp;Copy Geo Item</td>\n"
  3790. " </tr>\n"
  3791. " <tr height=\"20\">\n"
  3792. " <td height=\"20\"><strong>D</strong></td>\n"
  3793. " <td>&nbsp;Within Add Arc will toogle the ARC "
  3794. "direction: CW or CCW</td>\n"
  3795. " </tr>\n"
  3796. " <tr height=\"20\">\n"
  3797. " <td height=\"20\"><strong>E</strong></td>\n"
  3798. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3799. " </tr>\n"
  3800. " <tr height=\"20\">\n"
  3801. " <td height=\"20\"><strong>I</strong></td>\n"
  3802. " <td>&nbsp;Paint Tool</td>\n"
  3803. " </tr>\n"
  3804. " <tr height=\"20\">\n"
  3805. " <td height=\"20\"><strong>J</strong></td>\n"
  3806. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3807. " </tr>\n"
  3808. " <tr height=\"20\">\n"
  3809. " <td height=\"20\"><strong>K</strong></td>\n"
  3810. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3811. " </tr>\n"
  3812. " <tr height=\"20\">\n"
  3813. " <td height=\"20\"><strong>M</strong></td>\n"
  3814. " <td>&nbsp;Move Geo Item</td>\n"
  3815. " </tr>\n"
  3816. " <tr height=\"20\">\n"
  3817. " <td height=\"20\"><strong>M</strong></td>\n"
  3818. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  3819. "modes</td>\n"
  3820. " </tr>\n"
  3821. " <tr height=\"20\">\n"
  3822. " <td height=\"20\"><strong>N</strong></td>\n"
  3823. " <td>&nbsp;Draw a Polygon</td>\n"
  3824. " </tr>\n"
  3825. " <tr height=\"20\">\n"
  3826. " <td height=\"20\"><strong>O</strong></td>\n"
  3827. " <td>&nbsp;Draw a Circle</td>\n"
  3828. " </tr>\n"
  3829. " <tr height=\"20\">\n"
  3830. " <td height=\"20\"><strong>P</strong></td>\n"
  3831. " <td>&nbsp;Draw a Path</td>\n"
  3832. " </tr>\n"
  3833. " <tr height=\"20\">\n"
  3834. " <td height=\"20\"><strong>R</strong></td>\n"
  3835. " <td>&nbsp;Draw Rectangle</td>\n"
  3836. " </tr>\n"
  3837. " <tr height=\"20\">\n"
  3838. " <td height=\"20\"><strong>S</strong></td>\n"
  3839. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3840. " </tr>\n"
  3841. " <tr height=\"20\">\n"
  3842. " <td height=\"20\"><strong>T</strong></td>\n"
  3843. " <td>&nbsp;Add Text Tool</td>\n"
  3844. " </tr>\n"
  3845. " <tr height=\"20\">\n"
  3846. " <td height=\"20\"><strong>U</strong></td>\n"
  3847. " <td>&nbsp;Polygon Union Tool</td>\n"
  3848. " </tr>\n"
  3849. " <tr height=\"20\">\n"
  3850. " <td height=\"20\"><strong>X</strong></td>\n"
  3851. " <td>&nbsp;Flip shape on X axis</td>\n"
  3852. " </tr>\n"
  3853. " <tr height=\"20\">\n"
  3854. " <td height=\"20\"><strong>Y</strong></td>\n"
  3855. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3856. " </tr>\n"
  3857. " <tr height=\"20\">\n"
  3858. " <td height=\"20\">&nbsp;</td>\n"
  3859. " <td>&nbsp;</td>\n"
  3860. " </tr>\n"
  3861. " <tr height=\"20\">\n"
  3862. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3863. " <td>&nbsp;Skew shape on X axis</td>\n"
  3864. " </tr>\n"
  3865. " <tr height=\"20\">\n"
  3866. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3867. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3868. " </tr>\n"
  3869. " <tr height=\"20\">\n"
  3870. " <td height=\"20\">&nbsp;</td>\n"
  3871. " <td>&nbsp;</td>\n"
  3872. " </tr>\n"
  3873. " <tr height=\"20\">\n"
  3874. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3875. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3876. " </tr>\n"
  3877. " <tr height=\"20\">\n"
  3878. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3879. " <td>&nbsp;Offset shape on X axis</td>\n"
  3880. " </tr>\n"
  3881. " <tr height=\"20\">\n"
  3882. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3883. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3884. " </tr>\n"
  3885. " <tr height=\"20\">\n"
  3886. " <td height=\"20\">&nbsp;</td>\n"
  3887. " <td>&nbsp;</td>\n"
  3888. " </tr>\n"
  3889. " <tr height=\"20\">\n"
  3890. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3891. " <td>&nbsp;Measurement Tool</td>\n"
  3892. " </tr>\n"
  3893. " <tr height=\"20\">\n"
  3894. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3895. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3896. " </tr>\n"
  3897. " <tr height=\"20\">\n"
  3898. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3899. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3900. " </tr>\n"
  3901. " <tr height=\"20\">\n"
  3902. " <td height=\"20\">&nbsp;</td>\n"
  3903. " <td>&nbsp;</td>\n"
  3904. " </tr>\n"
  3905. " <tr height=\"20\">\n"
  3906. " <td height=\"20\"><strong>Space</strong></td>\n"
  3907. " <td>&nbsp;Rotate Geometry</td>\n"
  3908. " </tr>\n"
  3909. " <tr height=\"20\">\n"
  3910. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3911. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3912. " </tr>\n"
  3913. " <tr height=\"20\">\n"
  3914. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3915. " <td>&nbsp;Abort and return to Select</td>\n"
  3916. " </tr>\n"
  3917. " <tr height=\"20\">\n"
  3918. " <td height=\"20\"><strong>Del</strong></td>\n"
  3919. " <td>&nbsp;Delete Shape</td>\n"
  3920. " </tr>\n"
  3921. " </tbody>\n"
  3922. " </table>\n"
  3923. " <br>\n"
  3924. " <br>\n"
  3925. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  3926. "strong><br>\n"
  3927. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3928. "\"width:283px\">\n"
  3929. " <tbody>\n"
  3930. " <tr height=\"20\">\n"
  3931. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3932. "td>\n"
  3933. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3934. " </tr>\n"
  3935. " <tr height=\"20\">\n"
  3936. " <td height=\"20\"><strong>C</strong></td>\n"
  3937. " <td>&nbsp;Copy Drill(s)</td>\n"
  3938. " </tr>\n"
  3939. " <tr height=\"20\">\n"
  3940. " <td height=\"20\"><strong>D</strong></td>\n"
  3941. " <td>&nbsp;Add Drill</td>\n"
  3942. " </tr>\n"
  3943. " <tr height=\"20\">\n"
  3944. " <td height=\"20\"><strong>J</strong></td>\n"
  3945. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3946. " </tr>\n"
  3947. " <tr height=\"20\">\n"
  3948. " <td height=\"20\"><strong>M</strong></td>\n"
  3949. " <td>&nbsp;Move Drill(s)</td>\n"
  3950. " </tr>\n"
  3951. " <tr height=\"20\">\n"
  3952. " <td height=\"20\"><strong>R</strong></td>\n"
  3953. " <td>&nbsp;Resize Drill(s)</td>\n"
  3954. " </tr>\n"
  3955. " <tr height=\"20\">\n"
  3956. " <td height=\"20\"><strong>T</strong></td>\n"
  3957. " <td>&nbsp;Add a new Tool</td>\n"
  3958. " </tr>\n"
  3959. " <tr height=\"20\">\n"
  3960. " <td height=\"20\">&nbsp;</td>\n"
  3961. " <td>&nbsp;</td>\n"
  3962. " </tr>\n"
  3963. " <tr height=\"20\">\n"
  3964. " <td height=\"20\"><strong>Del</strong></td>\n"
  3965. " <td>&nbsp;Delete Drill(s)</td>\n"
  3966. " </tr>\n"
  3967. " <tr height=\"20\">\n"
  3968. " <td height=\"20\"><strong>Del</strong></td>\n"
  3969. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3970. " </tr>\n"
  3971. " <tr height=\"20\">\n"
  3972. " <td height=\"20\">&nbsp;</td>\n"
  3973. " <td>&nbsp;</td>\n"
  3974. " </tr>\n"
  3975. " <tr height=\"20\">\n"
  3976. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3977. " <td>&nbsp;Abort and return to Select</td>\n"
  3978. " </tr>\n"
  3979. " <tr height=\"20\">\n"
  3980. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3981. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3982. " </tr>\n"
  3983. " </tbody>\n"
  3984. " </table>\n"
  3985. " <br>\n"
  3986. " <br>\n"
  3987. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  3988. "strong><br>\n"
  3989. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3990. "\"width:283px\">\n"
  3991. " <tbody>\n"
  3992. " <tr height=\"20\">\n"
  3993. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  3994. "td>\n"
  3995. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  3996. " </tr>\n"
  3997. " <tr height=\"20\">\n"
  3998. " <td height=\"20\"><strong>B</strong></td>\n"
  3999. " <td>&nbsp;Buffer</td>\n"
  4000. " </tr>\n"
  4001. " <tr height=\"20\">\n"
  4002. " <td height=\"20\"><strong>C</strong></td>\n"
  4003. " <td>&nbsp;Copy</td>\n"
  4004. " </tr>\n"
  4005. " <tr height=\"20\">\n"
  4006. " <td height=\"20\"><strong>D</strong></td>\n"
  4007. " <td>&nbsp;Add Disc</td>\n"
  4008. " </tr>\n"
  4009. " <tr height=\"20\">\n"
  4010. " <td height=\"20\"><strong>E</strong></td>\n"
  4011. " <td>&nbsp;Add SemiDisc</td>\n"
  4012. " </tr>\n"
  4013. " <tr height=\"20\">\n"
  4014. " <td height=\"20\"><strong>J</strong></td>\n"
  4015. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4016. " </tr>\n"
  4017. " <tr height=\"20\">\n"
  4018. " <td height=\"20\"><strong>M</strong></td>\n"
  4019. " <td>&nbsp;Move</td>\n"
  4020. " </tr>\n"
  4021. " <tr height=\"20\">\n"
  4022. " <td height=\"20\"><strong>N</strong></td>\n"
  4023. " <td>&nbsp;Add Region</td>\n"
  4024. " </tr>\n"
  4025. " <tr height=\"20\">\n"
  4026. " <td height=\"20\"><strong>P</strong></td>\n"
  4027. " <td>&nbsp;Add Pad</td>\n"
  4028. " </tr>\n"
  4029. " <tr height=\"20\">\n"
  4030. " <td height=\"20\"><strong>R</strong></td>\n"
  4031. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4032. "REVERSE the bend modes</td>\n"
  4033. " </tr>\n"
  4034. " <tr height=\"20\">\n"
  4035. " <td height=\"20\"><strong>S</strong></td>\n"
  4036. " <td>&nbsp;Scale</td>\n"
  4037. " </tr>\n"
  4038. " <tr height=\"20\">\n"
  4039. " <td height=\"20\"><strong>T</strong></td>\n"
  4040. " <td>&nbsp;Add Track</td>\n"
  4041. " </tr>\n"
  4042. " <tr height=\"20\">\n"
  4043. " <td height=\"20\"><strong>T</strong></td>\n"
  4044. " <td>&nbsp;Within Track & Region Tools will cycle "
  4045. "FORWARD the bend modes</td>\n"
  4046. " </tr>\n"
  4047. " <tr height=\"20\">\n"
  4048. " <td height=\"20\">&nbsp;</td>\n"
  4049. " <td>&nbsp;</td>\n"
  4050. " </tr>\n"
  4051. " <tr height=\"20\">\n"
  4052. " <td height=\"20\"><strong>Del</strong></td>\n"
  4053. " <td>&nbsp;Delete</td>\n"
  4054. " </tr>\n"
  4055. " <tr height=\"20\">\n"
  4056. " <td height=\"20\"><strong>Del</strong></td>\n"
  4057. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4058. " </tr>\n"
  4059. " <tr height=\"20\">\n"
  4060. " <td height=\"20\">&nbsp;</td>\n"
  4061. " <td>&nbsp;</td>\n"
  4062. " </tr>\n"
  4063. " <tr height=\"20\">\n"
  4064. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4065. " <td>&nbsp;Abort and return to Select</td>\n"
  4066. " </tr>\n"
  4067. " <tr height=\"20\">\n"
  4068. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4069. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4070. " </tr>\n"
  4071. " <tr height=\"20\">\n"
  4072. " <td height=\"20\">&nbsp;</td>\n"
  4073. " <td>&nbsp;</td>\n"
  4074. " </tr>\n"
  4075. " <tr height=\"20\">\n"
  4076. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4077. " <td>&nbsp;Transformation Tool</td>\n"
  4078. " </tr>\n"
  4079. " </tbody>\n"
  4080. " </table>\n"
  4081. " "
  4082. msgstr ""
  4083. #: flatcamGUI/FlatCAMGUI.py:1582
  4084. msgid "Disable"
  4085. msgstr "Отключить"
  4086. #: flatcamGUI/FlatCAMGUI.py:1584
  4087. msgid "New"
  4088. msgstr "Создать"
  4089. #: flatcamGUI/FlatCAMGUI.py:1585
  4090. msgid "Geometry"
  4091. msgstr "Geometry"
  4092. #: flatcamGUI/FlatCAMGUI.py:1587
  4093. msgid "Excellon"
  4094. msgstr "Excellon"
  4095. #: flatcamGUI/FlatCAMGUI.py:1592
  4096. msgid "Grids"
  4097. msgstr ""
  4098. #: flatcamGUI/FlatCAMGUI.py:1594
  4099. msgid "View"
  4100. msgstr "Вид"
  4101. #: flatcamGUI/FlatCAMGUI.py:1596
  4102. msgid "Clear Plot"
  4103. msgstr ""
  4104. #: flatcamGUI/FlatCAMGUI.py:1597
  4105. msgid "Replot"
  4106. msgstr "Перерисовать"
  4107. #: flatcamGUI/FlatCAMGUI.py:1600
  4108. msgid "Geo Editor"
  4109. msgstr ""
  4110. #: flatcamGUI/FlatCAMGUI.py:1601
  4111. msgid "Line"
  4112. msgstr "Линия"
  4113. #: flatcamGUI/FlatCAMGUI.py:1602
  4114. msgid "Rectangle"
  4115. msgstr "Прямоугольник"
  4116. #: flatcamGUI/FlatCAMGUI.py:1603
  4117. msgid "Cut"
  4118. msgstr "Вырезать"
  4119. #: flatcamGUI/FlatCAMGUI.py:1608
  4120. msgid "Pad"
  4121. msgstr ""
  4122. #: flatcamGUI/FlatCAMGUI.py:1609
  4123. msgid "Pad Array"
  4124. msgstr ""
  4125. #: flatcamGUI/FlatCAMGUI.py:1610
  4126. msgid "Track"
  4127. msgstr "Трек"
  4128. #: flatcamGUI/FlatCAMGUI.py:1611
  4129. msgid "Region"
  4130. msgstr ""
  4131. #: flatcamGUI/FlatCAMGUI.py:1613
  4132. msgid "Exc Editor"
  4133. msgstr ""
  4134. #: flatcamGUI/FlatCAMGUI.py:1614
  4135. msgid "Add Drill"
  4136. msgstr "Добавить сверло"
  4137. #: flatcamGUI/FlatCAMGUI.py:1646
  4138. msgid "Print Preview"
  4139. msgstr ""
  4140. #: flatcamGUI/FlatCAMGUI.py:1647
  4141. msgid "Print Code"
  4142. msgstr ""
  4143. #: flatcamGUI/FlatCAMGUI.py:1648
  4144. msgid "Find in Code"
  4145. msgstr "Найти в коде"
  4146. #: flatcamGUI/FlatCAMGUI.py:1653
  4147. msgid "Replace With"
  4148. msgstr "Заменить"
  4149. #: flatcamGUI/FlatCAMGUI.py:1657
  4150. msgid "All"
  4151. msgstr "Все"
  4152. #: flatcamGUI/FlatCAMGUI.py:1659
  4153. msgid ""
  4154. "When checked it will replace all instances in the 'Find' box\n"
  4155. "with the text in the 'Replace' box.."
  4156. msgstr ""
  4157. #: flatcamGUI/FlatCAMGUI.py:1662
  4158. msgid "Open Code"
  4159. msgstr "От"
  4160. #: flatcamGUI/FlatCAMGUI.py:1663
  4161. msgid "Save Code"
  4162. msgstr "Сохранить код"
  4163. #: flatcamGUI/FlatCAMGUI.py:1698
  4164. msgid ""
  4165. "Relative neasurement.\n"
  4166. "Reference is last click position"
  4167. msgstr ""
  4168. #: flatcamGUI/FlatCAMGUI.py:1704
  4169. msgid ""
  4170. "Absolute neasurement.\n"
  4171. "Reference is (X=0, Y= 0) position"
  4172. msgstr ""
  4173. #: flatcamGUI/FlatCAMGUI.py:1899
  4174. msgid "Select 'Esc'"
  4175. msgstr "Выбор 'Esc'"
  4176. #: flatcamGUI/FlatCAMGUI.py:1926
  4177. msgid "Copy Objects"
  4178. msgstr "Копировать объекты"
  4179. #: flatcamGUI/FlatCAMGUI.py:1928
  4180. msgid "Delete Shape"
  4181. msgstr "Удалить фигуру"
  4182. #: flatcamGUI/FlatCAMGUI.py:1933
  4183. msgid "Move Objects"
  4184. msgstr "Переместить объект "
  4185. #: flatcamGUI/FlatCAMGUI.py:2365
  4186. msgid ""
  4187. "Please first select a geometry item to be cutted\n"
  4188. "then select the geometry item that will be cutted\n"
  4189. "out of the first item. In the end press ~X~ key or\n"
  4190. "the toolbar button."
  4191. msgstr ""
  4192. #: flatcamGUI/FlatCAMGUI.py:2372 flatcamGUI/FlatCAMGUI.py:2509
  4193. #: flatcamGUI/FlatCAMGUI.py:2568 flatcamGUI/FlatCAMGUI.py:2588
  4194. msgid "Warning"
  4195. msgstr "Внимание"
  4196. #: flatcamGUI/FlatCAMGUI.py:2439 flatcamGUI/FlatCAMGUI.py:2638
  4197. #: flatcamGUI/FlatCAMGUI.py:2849
  4198. msgid "[WARNING_NOTCL] Cancelled."
  4199. msgstr ""
  4200. #: flatcamGUI/FlatCAMGUI.py:2504
  4201. msgid ""
  4202. "Please select geometry items \n"
  4203. "on which to perform Intersection Tool."
  4204. msgstr ""
  4205. #: flatcamGUI/FlatCAMGUI.py:2563
  4206. msgid ""
  4207. "Please select geometry items \n"
  4208. "on which to perform Substraction Tool."
  4209. msgstr ""
  4210. #: flatcamGUI/FlatCAMGUI.py:2583
  4211. msgid ""
  4212. "Please select geometry items \n"
  4213. "on which to perform union."
  4214. msgstr ""
  4215. #: flatcamGUI/FlatCAMGUI.py:2654 flatcamGUI/FlatCAMGUI.py:2866
  4216. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4217. msgstr ""
  4218. #: flatcamGUI/FlatCAMGUI.py:2738 flatcamGUI/FlatCAMGUI.py:2933
  4219. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4220. msgstr ""
  4221. #: flatcamGUI/FlatCAMGUI.py:2784 flatcamGUI/FlatCAMGUI.py:2979
  4222. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4223. msgstr ""
  4224. #: flatcamGUI/FlatCAMGUI.py:2993
  4225. msgid "New Tool ..."
  4226. msgstr "Новый инструмент ..."
  4227. #: flatcamGUI/FlatCAMGUI.py:2994
  4228. msgid "Enter a Tool Diameter:"
  4229. msgstr "Введите диаметр инструмента:"
  4230. #: flatcamGUI/FlatCAMGUI.py:3036
  4231. msgid "Measurement Tool exit..."
  4232. msgstr ""
  4233. #: flatcamGUI/FlatCAMGUI.py:3331
  4234. msgid "Grid X value:"
  4235. msgstr ""
  4236. #: flatcamGUI/FlatCAMGUI.py:3333
  4237. msgid "This is the Grid snap value on X axis."
  4238. msgstr ""
  4239. #: flatcamGUI/FlatCAMGUI.py:3338
  4240. msgid "Grid Y value:"
  4241. msgstr ""
  4242. #: flatcamGUI/FlatCAMGUI.py:3340
  4243. msgid "This is the Grid snap value on Y axis."
  4244. msgstr ""
  4245. #: flatcamGUI/FlatCAMGUI.py:3345
  4246. msgid "Snap Max:"
  4247. msgstr ""
  4248. #: flatcamGUI/FlatCAMGUI.py:3350
  4249. msgid "Workspace:"
  4250. msgstr ""
  4251. #: flatcamGUI/FlatCAMGUI.py:3352
  4252. msgid ""
  4253. "Draw a delimiting rectangle on canvas.\n"
  4254. "The purpose is to illustrate the limits for our work."
  4255. msgstr ""
  4256. #: flatcamGUI/FlatCAMGUI.py:3355
  4257. msgid "Wk. format:"
  4258. msgstr ""
  4259. #: flatcamGUI/FlatCAMGUI.py:3357
  4260. msgid ""
  4261. "Select the type of rectangle to be used on canvas,\n"
  4262. "as valid workspace."
  4263. msgstr ""
  4264. #: flatcamGUI/FlatCAMGUI.py:3370
  4265. msgid "Plot Fill:"
  4266. msgstr ""
  4267. #: flatcamGUI/FlatCAMGUI.py:3372
  4268. msgid ""
  4269. "Set the fill color for plotted objects.\n"
  4270. "First 6 digits are the color and the last 2\n"
  4271. "digits are for alpha (transparency) level."
  4272. msgstr ""
  4273. #: flatcamGUI/FlatCAMGUI.py:3386 flatcamGUI/FlatCAMGUI.py:3436
  4274. #: flatcamGUI/FlatCAMGUI.py:3486
  4275. msgid "Alpha Level:"
  4276. msgstr "Уровень прозрачности:"
  4277. #: flatcamGUI/FlatCAMGUI.py:3388
  4278. msgid "Set the fill transparency for plotted objects."
  4279. msgstr ""
  4280. #: flatcamGUI/FlatCAMGUI.py:3405
  4281. msgid "Plot Line:"
  4282. msgstr ""
  4283. #: flatcamGUI/FlatCAMGUI.py:3407
  4284. msgid "Set the line color for plotted objects."
  4285. msgstr ""
  4286. #: flatcamGUI/FlatCAMGUI.py:3419
  4287. msgid "Sel. Fill:"
  4288. msgstr ""
  4289. #: flatcamGUI/FlatCAMGUI.py:3421
  4290. msgid ""
  4291. "Set the fill color for the selection box\n"
  4292. "in case that the selection is done from left to right.\n"
  4293. "First 6 digits are the color and the last 2\n"
  4294. "digits are for alpha (transparency) level."
  4295. msgstr ""
  4296. #: flatcamGUI/FlatCAMGUI.py:3438
  4297. msgid "Set the fill transparency for the 'left to right' selection box."
  4298. msgstr ""
  4299. #: flatcamGUI/FlatCAMGUI.py:3455
  4300. msgid "Sel. Line:"
  4301. msgstr ""
  4302. #: flatcamGUI/FlatCAMGUI.py:3457
  4303. msgid "Set the line color for the 'left to right' selection box."
  4304. msgstr ""
  4305. #: flatcamGUI/FlatCAMGUI.py:3469
  4306. msgid "Sel2. Fill:"
  4307. msgstr ""
  4308. #: flatcamGUI/FlatCAMGUI.py:3471
  4309. msgid ""
  4310. "Set the fill color for the selection box\n"
  4311. "in case that the selection is done from right to left.\n"
  4312. "First 6 digits are the color and the last 2\n"
  4313. "digits are for alpha (transparency) level."
  4314. msgstr ""
  4315. #: flatcamGUI/FlatCAMGUI.py:3488
  4316. msgid "Set the fill transparency for selection 'right to left' box."
  4317. msgstr ""
  4318. #: flatcamGUI/FlatCAMGUI.py:3505
  4319. msgid "Sel2. Line:"
  4320. msgstr ""
  4321. #: flatcamGUI/FlatCAMGUI.py:3507
  4322. msgid "Set the line color for the 'right to left' selection box."
  4323. msgstr ""
  4324. #: flatcamGUI/FlatCAMGUI.py:3519
  4325. msgid "Editor Draw:"
  4326. msgstr ""
  4327. #: flatcamGUI/FlatCAMGUI.py:3521
  4328. msgid "Set the color for the shape."
  4329. msgstr ""
  4330. #: flatcamGUI/FlatCAMGUI.py:3533
  4331. msgid "Editor Draw Sel.:"
  4332. msgstr ""
  4333. #: flatcamGUI/FlatCAMGUI.py:3535
  4334. msgid "Set the color of the shape when selected."
  4335. msgstr ""
  4336. #: flatcamGUI/FlatCAMGUI.py:3547
  4337. msgid "Project Items:"
  4338. msgstr ""
  4339. #: flatcamGUI/FlatCAMGUI.py:3549
  4340. msgid "Set the color of the items in Project Tab Tree."
  4341. msgstr ""
  4342. #: flatcamGUI/FlatCAMGUI.py:3560
  4343. msgid "Proj. Dis. Items:"
  4344. msgstr ""
  4345. #: flatcamGUI/FlatCAMGUI.py:3562
  4346. msgid ""
  4347. "Set the color of the items in Project Tab Tree,\n"
  4348. "for the case when the items are disabled."
  4349. msgstr ""
  4350. #: flatcamGUI/FlatCAMGUI.py:3613
  4351. msgid "GUI Settings"
  4352. msgstr "Настройки интерфейса"
  4353. #: flatcamGUI/FlatCAMGUI.py:3620
  4354. msgid "Layout:"
  4355. msgstr "Раскладка:"
  4356. #: flatcamGUI/FlatCAMGUI.py:3622
  4357. msgid ""
  4358. "Select an layout for FlatCAM.\n"
  4359. "It is applied immediately."
  4360. msgstr ""
  4361. #: flatcamGUI/FlatCAMGUI.py:3638
  4362. msgid "Style:"
  4363. msgstr "Стиль:"
  4364. #: flatcamGUI/FlatCAMGUI.py:3640
  4365. msgid ""
  4366. "Select an style for FlatCAM.\n"
  4367. "It will be applied at the next app start."
  4368. msgstr ""
  4369. #: flatcamGUI/FlatCAMGUI.py:3651
  4370. msgid "HDPI Support:"
  4371. msgstr "Поддержка HDPI:"
  4372. #: flatcamGUI/FlatCAMGUI.py:3653
  4373. msgid ""
  4374. "Enable High DPI support for FlatCAM.\n"
  4375. "It will be applied at the next app start."
  4376. msgstr ""
  4377. "Включает поддержку высокого разрешения для FlatCAM.\n"
  4378. "Требуется перезапуск приложения."
  4379. #: flatcamGUI/FlatCAMGUI.py:3666
  4380. msgid "Clear GUI Settings:"
  4381. msgstr "Очистка настроек интерфейса:"
  4382. #: flatcamGUI/FlatCAMGUI.py:3668
  4383. msgid ""
  4384. "Clear the GUI settings for FlatCAM,\n"
  4385. "such as: layout, gui state, style, hdpi support etc."
  4386. msgstr ""
  4387. #: flatcamGUI/FlatCAMGUI.py:3671
  4388. msgid "Clear"
  4389. msgstr "Очистить"
  4390. #: flatcamGUI/FlatCAMGUI.py:3675
  4391. msgid "Hover Shape:"
  4392. msgstr ""
  4393. #: flatcamGUI/FlatCAMGUI.py:3677
  4394. msgid ""
  4395. "Enable display of a hover shape for FlatCAM objects.\n"
  4396. "It is displayed whenever the mouse cursor is hovering\n"
  4397. "over any kind of not-selected object."
  4398. msgstr ""
  4399. #: flatcamGUI/FlatCAMGUI.py:3684
  4400. msgid "Sel. Shape:"
  4401. msgstr ""
  4402. #: flatcamGUI/FlatCAMGUI.py:3686
  4403. msgid ""
  4404. "Enable the display of a selection shape for FlatCAM objects.\n"
  4405. "It is displayed whenever the mouse selects an object\n"
  4406. "either by clicking or dragging mouse from left to right or\n"
  4407. "right to left."
  4408. msgstr ""
  4409. #: flatcamGUI/FlatCAMGUI.py:3728
  4410. msgid "Are you sure you want to delete the GUI Settings? \n"
  4411. msgstr "Вы уверены, что хотите удалить настройки графического интерфейса?\n"
  4412. #: flatcamGUI/FlatCAMGUI.py:3731
  4413. msgid "Clear GUI Settings"
  4414. msgstr "Очистка настроек интерфейса"
  4415. #: flatcamGUI/FlatCAMGUI.py:3752
  4416. msgid "App Preferences"
  4417. msgstr "Параметры приложения"
  4418. #: flatcamGUI/FlatCAMGUI.py:3758
  4419. msgid "<b>Units:</b>"
  4420. msgstr "<b>Единицы:</b>"
  4421. #: flatcamGUI/FlatCAMGUI.py:3759
  4422. msgid ""
  4423. "The default value for FlatCAM units.\n"
  4424. "Whatever is selected here is set every time\n"
  4425. "FLatCAM is started."
  4426. msgstr ""
  4427. #: flatcamGUI/FlatCAMGUI.py:3766
  4428. msgid "<b>APP. LEVEL:</b>"
  4429. msgstr "<b>РЕЖИМ:</b>"
  4430. #: flatcamGUI/FlatCAMGUI.py:3767
  4431. msgid ""
  4432. "Choose the default level of usage for FlatCAM.\n"
  4433. "BASIC level -> reduced functionality, best for beginner's.\n"
  4434. "ADVANCED level -> full functionality.\n"
  4435. "\n"
  4436. "The choice here will influence the parameters in\n"
  4437. "the Selected Tab for all kinds of FlatCAM objects."
  4438. msgstr ""
  4439. #: flatcamGUI/FlatCAMGUI.py:3776
  4440. msgid "<b>Languages:</b>"
  4441. msgstr "<b>Язык:</b>"
  4442. #: flatcamGUI/FlatCAMGUI.py:3777
  4443. msgid "Set the language used throughout FlatCAM."
  4444. msgstr ""
  4445. #: flatcamGUI/FlatCAMGUI.py:3780
  4446. msgid "Apply Language"
  4447. msgstr "Применить язык"
  4448. #: flatcamGUI/FlatCAMGUI.py:3781
  4449. msgid ""
  4450. "Set the language used throughout FlatCAM.\n"
  4451. "The app will restart after click.Windows: When FlatCAM is installed in "
  4452. "Program Files\n"
  4453. "directory, it is possible that the app will not\n"
  4454. "restart after the button is clicked due of Windows\n"
  4455. "security features. In this case the language will be\n"
  4456. "applied at the next app start."
  4457. msgstr ""
  4458. #: flatcamGUI/FlatCAMGUI.py:3790
  4459. msgid "Shell at StartUp:"
  4460. msgstr "Ком.строка при запуске:"
  4461. #: flatcamGUI/FlatCAMGUI.py:3792 flatcamGUI/FlatCAMGUI.py:3797
  4462. msgid ""
  4463. "Check this box if you want the shell to\n"
  4464. "start automatically at startup."
  4465. msgstr ""
  4466. #: flatcamGUI/FlatCAMGUI.py:3802
  4467. msgid "Version Check:"
  4468. msgstr ""
  4469. #: flatcamGUI/FlatCAMGUI.py:3804 flatcamGUI/FlatCAMGUI.py:3809
  4470. msgid ""
  4471. "Check this box if you want to check\n"
  4472. "for a new version automatically at startup."
  4473. msgstr ""
  4474. #: flatcamGUI/FlatCAMGUI.py:3814
  4475. msgid "Send Stats:"
  4476. msgstr ""
  4477. #: flatcamGUI/FlatCAMGUI.py:3816 flatcamGUI/FlatCAMGUI.py:3821
  4478. msgid ""
  4479. "Check this box if you agree to send anonymous\n"
  4480. "stats automatically at startup, to help improve FlatCAM."
  4481. msgstr ""
  4482. #: flatcamGUI/FlatCAMGUI.py:3828
  4483. msgid "<b>Pan Button:</b>"
  4484. msgstr "<b>Pan Button:</b>"
  4485. #: flatcamGUI/FlatCAMGUI.py:3829
  4486. msgid ""
  4487. "Select the mouse button to use for panning:\n"
  4488. "- MMB --> Middle Mouse Button\n"
  4489. "- RMB --> Right Mouse Button"
  4490. msgstr ""
  4491. #: flatcamGUI/FlatCAMGUI.py:3836
  4492. msgid "<b>Multiple Sel:</b>"
  4493. msgstr "<b>Мультивыбор:</b>"
  4494. #: flatcamGUI/FlatCAMGUI.py:3837
  4495. msgid "Select the key used for multiple selection."
  4496. msgstr ""
  4497. #: flatcamGUI/FlatCAMGUI.py:3842
  4498. msgid "Project at StartUp:"
  4499. msgstr "Проект при запуске:"
  4500. #: flatcamGUI/FlatCAMGUI.py:3844 flatcamGUI/FlatCAMGUI.py:3849
  4501. msgid ""
  4502. "Check this box if you want the project/selected/tool tab area to\n"
  4503. "to be shown automatically at startup."
  4504. msgstr ""
  4505. #: flatcamGUI/FlatCAMGUI.py:3854
  4506. msgid "Project AutoHide:"
  4507. msgstr "Автоскр. проекта:"
  4508. #: flatcamGUI/FlatCAMGUI.py:3856 flatcamGUI/FlatCAMGUI.py:3862
  4509. msgid ""
  4510. "Check this box if you want the project/selected/tool tab area to\n"
  4511. "hide automatically when there are no objects loaded and\n"
  4512. "to show whenever a new object is created."
  4513. msgstr ""
  4514. #: flatcamGUI/FlatCAMGUI.py:3868
  4515. msgid "<b>Enable ToolTips:</b>"
  4516. msgstr "<b>Вспл. подсказки:</b>"
  4517. #: flatcamGUI/FlatCAMGUI.py:3870 flatcamGUI/FlatCAMGUI.py:3875
  4518. msgid ""
  4519. "Check this box if you want to have toolTips displayed\n"
  4520. "when hovering with mouse over items throughout the App."
  4521. msgstr ""
  4522. #: flatcamGUI/FlatCAMGUI.py:3878
  4523. msgid "Workers number:"
  4524. msgstr ""
  4525. #: flatcamGUI/FlatCAMGUI.py:3880 flatcamGUI/FlatCAMGUI.py:3889
  4526. msgid ""
  4527. "The number of Qthreads made available to the App.\n"
  4528. "A bigger number may finish the jobs more quickly but\n"
  4529. "depending on your computer speed, may make the App\n"
  4530. "unresponsive. Can have a value between 2 and 16.\n"
  4531. "Default value is 2.\n"
  4532. "After change, it will be applied at next App start."
  4533. msgstr ""
  4534. #: flatcamGUI/FlatCAMGUI.py:3901 flatcamGUI/FlatCAMGUI.py:3910
  4535. msgid ""
  4536. "This value can counter the effect of the Circle Steps\n"
  4537. "parameter. Default value is 0.01.\n"
  4538. "A lower value will increase the detail both in image\n"
  4539. "and in Gcode for the circles, with a higher cost in\n"
  4540. "performance. Higher value will provide more\n"
  4541. "performance at the expense of level of detail."
  4542. msgstr ""
  4543. #: flatcamGUI/FlatCAMGUI.py:3946
  4544. msgid "\"Open\" behavior"
  4545. msgstr "\"Открытое\" поведение"
  4546. #: flatcamGUI/FlatCAMGUI.py:3948
  4547. msgid ""
  4548. "When checked the path for the last saved file is used when saving files,\n"
  4549. "and the path for the last opened file is used when opening files.\n"
  4550. "\n"
  4551. "When unchecked the path for opening files is the one used last: either the\n"
  4552. "path for saving files or the path for opening files."
  4553. msgstr ""
  4554. #: flatcamGUI/FlatCAMGUI.py:3957
  4555. msgid "Save Compressed Project"
  4556. msgstr "Сохранить сжатый проект"
  4557. #: flatcamGUI/FlatCAMGUI.py:3959
  4558. msgid ""
  4559. "Whether to save a compressed or uncompressed project.\n"
  4560. "When checked it will save a compressed FlatCAM project."
  4561. msgstr ""
  4562. #: flatcamGUI/FlatCAMGUI.py:3970
  4563. msgid "Compression Level:"
  4564. msgstr "Уровень сжатия:"
  4565. #: flatcamGUI/FlatCAMGUI.py:3972
  4566. msgid ""
  4567. "The level of compression used when saving\n"
  4568. "a FlatCAM project. Higher value means better compression\n"
  4569. "but require more RAM usage and more processing time."
  4570. msgstr ""
  4571. #: flatcamGUI/FlatCAMGUI.py:3998 flatcamGUI/FlatCAMGUI.py:4367
  4572. #: flatcamGUI/FlatCAMGUI.py:5037 flatcamGUI/FlatCAMGUI.py:5409
  4573. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505
  4574. #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350
  4575. msgid "<b>Plot Options:</b>"
  4576. msgstr "<b>Параметры отрисовки:</b>"
  4577. #: flatcamGUI/FlatCAMGUI.py:4005 flatcamGUI/FlatCAMGUI.py:4379
  4578. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506
  4579. msgid "Solid"
  4580. msgstr "Заливка"
  4581. #: flatcamGUI/FlatCAMGUI.py:4007 flatcamGUI/ObjectUI.py:158
  4582. msgid "Solid color polygons."
  4583. msgstr "Сплошной цвет полигонов."
  4584. #: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/ObjectUI.py:164
  4585. msgid "M-Color"
  4586. msgstr ""
  4587. #: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/ObjectUI.py:166
  4588. msgid "Draw polygons in different colors."
  4589. msgstr "Окрашивать полигоны разными цветами."
  4590. #: flatcamGUI/FlatCAMGUI.py:4019 flatcamGUI/FlatCAMGUI.py:4373
  4591. #: flatcamGUI/FlatCAMGUI.py:5041 flatcamGUI/ObjectUI.py:172
  4592. msgid "Plot"
  4593. msgstr ""
  4594. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:5043
  4595. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546
  4596. #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1437
  4597. msgid "Plot (show) this object."
  4598. msgstr ""
  4599. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:5050
  4600. #: flatcamGUI/FlatCAMGUI.py:5445
  4601. msgid "Circle Steps:"
  4602. msgstr "Круговые шаги:"
  4603. #: flatcamGUI/FlatCAMGUI.py:4028
  4604. msgid ""
  4605. "The number of circle steps for Gerber \n"
  4606. "circular aperture linear approximation."
  4607. msgstr ""
  4608. #: flatcamGUI/FlatCAMGUI.py:4043
  4609. msgid "Gerber Options"
  4610. msgstr "Параметры Gerber"
  4611. #: flatcamGUI/FlatCAMGUI.py:4047 flatcamGUI/ObjectUI.py:251
  4612. msgid "<b>Isolation Routing:</b>"
  4613. msgstr "<b>Изоляция разводки:</b>"
  4614. #: flatcamGUI/FlatCAMGUI.py:4049 flatcamGUI/ObjectUI.py:253
  4615. msgid ""
  4616. "Create a Geometry object with\n"
  4617. "toolpaths to cut outside polygons."
  4618. msgstr ""
  4619. "Создание объекта Geometry\n"
  4620. "с траекториям обрезки за\n"
  4621. "пределами полигонов."
  4622. #: flatcamGUI/FlatCAMGUI.py:4060 flatcamGUI/FlatCAMGUI.py:4760
  4623. #: flatcamGUI/FlatCAMGUI.py:5733 flatcamGUI/ObjectUI.py:788
  4624. #: flatcamGUI/ObjectUI.py:804
  4625. msgid "Diameter of the cutting tool."
  4626. msgstr "Диаметр режущего инструмента."
  4627. #: flatcamGUI/FlatCAMGUI.py:4067
  4628. msgid "Width (# passes):"
  4629. msgstr "Количество проходов:"
  4630. #: flatcamGUI/FlatCAMGUI.py:4069 flatcamGUI/ObjectUI.py:275
  4631. msgid ""
  4632. "Width of the isolation gap in\n"
  4633. "number (integer) of tool widths."
  4634. msgstr ""
  4635. "Ширина промежутка изоляции в \n"
  4636. "числах (целое число) ширины инструмента."
  4637. #: flatcamGUI/FlatCAMGUI.py:4077 flatcamGUI/ObjectUI.py:283
  4638. msgid "Pass overlap:"
  4639. msgstr "Перекрытие за проход:"
  4640. #: flatcamGUI/FlatCAMGUI.py:4079 flatcamGUI/ObjectUI.py:285
  4641. #, python-format
  4642. msgid ""
  4643. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4644. "Example:\n"
  4645. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  4646. "above."
  4647. msgstr ""
  4648. #: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/ObjectUI.py:295
  4649. msgid "Milling Type:"
  4650. msgstr ""
  4651. #: flatcamGUI/FlatCAMGUI.py:4089 flatcamGUI/ObjectUI.py:297
  4652. msgid ""
  4653. "Milling type:\n"
  4654. "- climb / best for precision milling and to reduce tool usage\n"
  4655. "- conventional / useful when there is no backlash compensation"
  4656. msgstr ""
  4657. #: flatcamGUI/FlatCAMGUI.py:4099
  4658. msgid "Combine Passes"
  4659. msgstr "Объединить проходы"
  4660. #: flatcamGUI/FlatCAMGUI.py:4101 flatcamGUI/ObjectUI.py:309
  4661. msgid "Combine all passes into one object"
  4662. msgstr "Объединить все проходы в один объект"
  4663. #: flatcamGUI/FlatCAMGUI.py:4106
  4664. msgid "<b>Clear non-copper:</b>"
  4665. msgstr ""
  4666. #: flatcamGUI/FlatCAMGUI.py:4108 flatcamGUI/FlatCAMGUI.py:5621
  4667. #: flatcamGUI/ObjectUI.py:386
  4668. msgid ""
  4669. "Create a Geometry object with\n"
  4670. "toolpaths to cut all non-copper regions."
  4671. msgstr ""
  4672. #: flatcamGUI/FlatCAMGUI.py:4117 flatcamGUI/FlatCAMGUI.py:4143
  4673. #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464
  4674. msgid "Boundary Margin:"
  4675. msgstr "Предельный отступ:"
  4676. #: flatcamGUI/FlatCAMGUI.py:4119 flatcamGUI/ObjectUI.py:432
  4677. msgid ""
  4678. "Specify the edge of the PCB\n"
  4679. "by drawing a box around all\n"
  4680. "objects with this minimum\n"
  4681. "distance."
  4682. msgstr ""
  4683. "Обозначает край печатной платы \n"
  4684. "рисованием прямоугольника вокруг всех \n"
  4685. "объектов с этим минимальным \n"
  4686. "расстоянием."
  4687. #: flatcamGUI/FlatCAMGUI.py:4129 flatcamGUI/FlatCAMGUI.py:4152
  4688. msgid "Rounded corners"
  4689. msgstr "Закруглять углы"
  4690. #: flatcamGUI/FlatCAMGUI.py:4131
  4691. msgid ""
  4692. "Creates a Geometry objects with polygons\n"
  4693. "covering the copper-free areas of the PCB."
  4694. msgstr ""
  4695. "Создает объект геометрии с полигонами\n"
  4696. "охватывающими неомедненные области печатной платы."
  4697. #: flatcamGUI/FlatCAMGUI.py:4137 flatcamGUI/ObjectUI.py:454
  4698. msgid "<b>Bounding Box:</b>"
  4699. msgstr "<b>Ограничительная рамка:</b>"
  4700. #: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:466
  4701. msgid ""
  4702. "Distance of the edges of the box\n"
  4703. "to the nearest polygon."
  4704. msgstr ""
  4705. "Расстояние от края поля\n"
  4706. "до ближайшего полигона."
  4707. #: flatcamGUI/FlatCAMGUI.py:4154 flatcamGUI/ObjectUI.py:476
  4708. msgid ""
  4709. "If the bounding box is \n"
  4710. "to have rounded corners\n"
  4711. "their radius is equal to\n"
  4712. "the margin."
  4713. msgstr ""
  4714. "Если ограничительная рамка \n"
  4715. "имеет закругленные углы\n"
  4716. "их радиус будет равен\n"
  4717. "отступу."
  4718. #: flatcamGUI/FlatCAMGUI.py:4168
  4719. msgid "Gerber Adv. Options"
  4720. msgstr ""
  4721. #: flatcamGUI/FlatCAMGUI.py:4172
  4722. msgid "<b>Advanced Param.:</b>"
  4723. msgstr "<b>Дополнительные парам.:</b>"
  4724. #: flatcamGUI/FlatCAMGUI.py:4174
  4725. msgid ""
  4726. "A list of Gerber advanced parameters.\n"
  4727. "Those parameters are available only for\n"
  4728. "Advanced App. Level."
  4729. msgstr ""
  4730. "Список расширенных параметров Gerber.\n"
  4731. "Эти параметры доступны только для\n"
  4732. "расширенного режима приложения."
  4733. #: flatcamGUI/FlatCAMGUI.py:4184 flatcamGUI/ObjectUI.py:314
  4734. msgid "\"Follow\""
  4735. msgstr "\"Следить\""
  4736. #: flatcamGUI/FlatCAMGUI.py:4186 flatcamGUI/ObjectUI.py:316
  4737. msgid ""
  4738. "Generate a 'Follow' geometry.\n"
  4739. "This means that it will cut through\n"
  4740. "the middle of the trace."
  4741. msgstr ""
  4742. #: flatcamGUI/FlatCAMGUI.py:4194
  4743. msgid "Table Show/Hide"
  4744. msgstr ""
  4745. #: flatcamGUI/FlatCAMGUI.py:4196
  4746. msgid ""
  4747. "Toggle the display of the Gerber Apertures Table.\n"
  4748. "Also, on hide, it will delete all mark shapes\n"
  4749. "that are drawn on canvas."
  4750. msgstr ""
  4751. #: flatcamGUI/FlatCAMGUI.py:4235
  4752. msgid "Gerber Export"
  4753. msgstr ""
  4754. #: flatcamGUI/FlatCAMGUI.py:4238 flatcamGUI/FlatCAMGUI.py:4909
  4755. msgid "<b>Export Options:</b>"
  4756. msgstr "<b>Параметры экспорта:</b>"
  4757. #: flatcamGUI/FlatCAMGUI.py:4240
  4758. msgid ""
  4759. "The parameters set here are used in the file exported\n"
  4760. "when using the File -> Export -> Export Gerber menu entry."
  4761. msgstr ""
  4762. #: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/FlatCAMGUI.py:4920
  4763. msgid "<b>Units</b>:"
  4764. msgstr "<b>Единицы</b>:"
  4765. #: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4257
  4766. msgid "The units used in the Gerber file."
  4767. msgstr ""
  4768. #: flatcamGUI/FlatCAMGUI.py:4263 flatcamGUI/FlatCAMGUI.py:4934
  4769. msgid "<b>Int/Decimals:</b>"
  4770. msgstr "<b>Int/Decimals:</b>"
  4771. #: flatcamGUI/FlatCAMGUI.py:4265
  4772. msgid ""
  4773. "The number of digits in the whole part of the number\n"
  4774. "and in the fractional part of the number."
  4775. msgstr ""
  4776. #: flatcamGUI/FlatCAMGUI.py:4276
  4777. msgid ""
  4778. "This numbers signify the number of digits in\n"
  4779. "the whole part of Gerber coordinates."
  4780. msgstr ""
  4781. #: flatcamGUI/FlatCAMGUI.py:4290
  4782. msgid ""
  4783. "This numbers signify the number of digits in\n"
  4784. "the decimal part of Gerber coordinates."
  4785. msgstr ""
  4786. #: flatcamGUI/FlatCAMGUI.py:4299 flatcamGUI/FlatCAMGUI.py:4995
  4787. msgid "<b>Zeros</b>:"
  4788. msgstr "<b>Нули</b>:"
  4789. #: flatcamGUI/FlatCAMGUI.py:4302 flatcamGUI/FlatCAMGUI.py:4312
  4790. msgid ""
  4791. "This sets the type of Gerber zeros.\n"
  4792. "If LZ then Leading Zeros are removed and\n"
  4793. "Trailing Zeros are kept.\n"
  4794. "If TZ is checked then Trailing Zeros are removed\n"
  4795. "and Leading Zeros are kept."
  4796. msgstr ""
  4797. #: flatcamGUI/FlatCAMGUI.py:4332 flatcamGUI/FlatCAMGUI.py:5375
  4798. #: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5720
  4799. #: flatcamGUI/FlatCAMGUI.py:5799 flatcamGUI/FlatCAMGUI.py:5858
  4800. #: flatcamGUI/FlatCAMGUI.py:5961 flatcamGUI/FlatCAMGUI.py:6022
  4801. #: flatcamGUI/FlatCAMGUI.py:6221 flatcamGUI/FlatCAMGUI.py:6348
  4802. msgid "<b>Parameters:</b>"
  4803. msgstr "<b>Параметры:</b>"
  4804. #: flatcamGUI/FlatCAMGUI.py:4334
  4805. msgid "A list of Gerber Editor parameters."
  4806. msgstr "Список параметров редактора Gerber."
  4807. #: flatcamGUI/FlatCAMGUI.py:4342 flatcamGUI/FlatCAMGUI.py:5385
  4808. msgid "Selection limit:"
  4809. msgstr ""
  4810. #: flatcamGUI/FlatCAMGUI.py:4344
  4811. msgid ""
  4812. "Set the number of selected Gerber geometry\n"
  4813. "items above which the utility geometry\n"
  4814. "becomes just a selection rectangle.\n"
  4815. "Increases the performance when moving a\n"
  4816. "large number of geometric elements."
  4817. msgstr ""
  4818. #: flatcamGUI/FlatCAMGUI.py:4364
  4819. msgid "Excellon General"
  4820. msgstr "Общие параметры Excellon"
  4821. #: flatcamGUI/FlatCAMGUI.py:4386
  4822. msgid "<b>Excellon Format:</b>"
  4823. msgstr "<b>Формат Excellon:</b>"
  4824. #: flatcamGUI/FlatCAMGUI.py:4388
  4825. msgid ""
  4826. "The NC drill files, usually named Excellon files\n"
  4827. "are files that can be found in different formats.\n"
  4828. "Here we set the format used when the provided\n"
  4829. "coordinates are not using period.\n"
  4830. "\n"
  4831. "Possible presets:\n"
  4832. "\n"
  4833. "PROTEUS 3:3 MM LZ\n"
  4834. "DipTrace 5:2 MM TZ\n"
  4835. "DipTrace 4:3 MM LZ\n"
  4836. "\n"
  4837. "EAGLE 3:3 MM TZ\n"
  4838. "EAGLE 4:3 MM TZ\n"
  4839. "EAGLE 2:5 INCH TZ\n"
  4840. "EAGLE 3:5 INCH TZ\n"
  4841. "\n"
  4842. "ALTIUM 2:4 INCH LZ\n"
  4843. "Sprint Layout 2:4 INCH LZ\n"
  4844. "KiCAD 3:5 INCH TZ"
  4845. msgstr ""
  4846. #: flatcamGUI/FlatCAMGUI.py:4413
  4847. msgid "INCH:"
  4848. msgstr "ДЮЙМЫ:"
  4849. #: flatcamGUI/FlatCAMGUI.py:4416
  4850. msgid "Default values for INCH are 2:4"
  4851. msgstr "Значения по умолчанию для ДЮЙМОВОЙ 2:4"
  4852. #: flatcamGUI/FlatCAMGUI.py:4424 flatcamGUI/FlatCAMGUI.py:4457
  4853. #: flatcamGUI/FlatCAMGUI.py:4949
  4854. msgid ""
  4855. "This numbers signify the number of digits in\n"
  4856. "the whole part of Excellon coordinates."
  4857. msgstr ""
  4858. #: flatcamGUI/FlatCAMGUI.py:4438 flatcamGUI/FlatCAMGUI.py:4471
  4859. #: flatcamGUI/FlatCAMGUI.py:4963
  4860. msgid ""
  4861. "This numbers signify the number of digits in\n"
  4862. "the decimal part of Excellon coordinates."
  4863. msgstr ""
  4864. #: flatcamGUI/FlatCAMGUI.py:4446
  4865. msgid "METRIC:"
  4866. msgstr "МЕТРИЧЕСКАЯ:"
  4867. #: flatcamGUI/FlatCAMGUI.py:4449
  4868. msgid "Default values for METRIC are 3:3"
  4869. msgstr "Значения по умолчанию для МЕТРИЧЕСКОЙ 3: 3"
  4870. #: flatcamGUI/FlatCAMGUI.py:4480
  4871. msgid "Default <b>Zeros</b>:"
  4872. msgstr "Умолчания <b>Нули</b>:"
  4873. #: flatcamGUI/FlatCAMGUI.py:4483 flatcamGUI/FlatCAMGUI.py:4998
  4874. msgid ""
  4875. "This sets the type of Excellon zeros.\n"
  4876. "If LZ then Leading Zeros are kept and\n"
  4877. "Trailing Zeros are removed.\n"
  4878. "If TZ is checked then Trailing Zeros are kept\n"
  4879. "and Leading Zeros are removed."
  4880. msgstr ""
  4881. #: flatcamGUI/FlatCAMGUI.py:4494
  4882. msgid ""
  4883. "This sets the default type of Excellon zeros.\n"
  4884. "If it is not detected in the parsed file the value here\n"
  4885. "will be used.If LZ then Leading Zeros are kept and\n"
  4886. "Trailing Zeros are removed.\n"
  4887. "If TZ is checked then Trailing Zeros are kept\n"
  4888. "and Leading Zeros are removed."
  4889. msgstr ""
  4890. #: flatcamGUI/FlatCAMGUI.py:4508
  4891. msgid "Default <b>Units</b>:"
  4892. msgstr "Умолчания <b>Единицы</b>:"
  4893. #: flatcamGUI/FlatCAMGUI.py:4511
  4894. msgid ""
  4895. "This sets the default units of Excellon files.\n"
  4896. "If it is not detected in the parsed file the value here\n"
  4897. "will be used.Some Excellon files don't have an header\n"
  4898. "therefore this parameter will be used."
  4899. msgstr ""
  4900. #: flatcamGUI/FlatCAMGUI.py:4522
  4901. msgid ""
  4902. "This sets the units of Excellon files.\n"
  4903. "Some Excellon files don't have an header\n"
  4904. "therefore this parameter will be used."
  4905. msgstr ""
  4906. #: flatcamGUI/FlatCAMGUI.py:4538
  4907. msgid "<b>Excellon Optimization:</b>"
  4908. msgstr "<b>Оптимизация Excellon:</b>"
  4909. #: flatcamGUI/FlatCAMGUI.py:4545
  4910. msgid "Algorithm: "
  4911. msgstr "Алгоритм: "
  4912. #: flatcamGUI/FlatCAMGUI.py:4548 flatcamGUI/FlatCAMGUI.py:4561
  4913. msgid ""
  4914. "This sets the optimization type for the Excellon drill path.\n"
  4915. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  4916. "Guided Local Path is used. Default search time is 3sec.\n"
  4917. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  4918. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  4919. "\n"
  4920. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  4921. "Travelling Salesman algorithm for path optimization."
  4922. msgstr ""
  4923. #: flatcamGUI/FlatCAMGUI.py:4573
  4924. msgid "Optimization Time: "
  4925. msgstr ""
  4926. #: flatcamGUI/FlatCAMGUI.py:4576
  4927. msgid ""
  4928. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  4929. "maximum threshold for how much time is spent doing the\n"
  4930. "path optimization. This max duration is set here.\n"
  4931. "In seconds."
  4932. msgstr ""
  4933. #: flatcamGUI/FlatCAMGUI.py:4618
  4934. msgid "Excellon Options"
  4935. msgstr "Параметры сверловки отверстий"
  4936. #: flatcamGUI/FlatCAMGUI.py:4621 flatcamGUI/ObjectUI.py:584
  4937. msgid "<b>Create CNC Job</b>"
  4938. msgstr "<b>Создание программы для ЧПУ</b>"
  4939. #: flatcamGUI/FlatCAMGUI.py:4623
  4940. msgid ""
  4941. "Parameters used to create a CNC Job object\n"
  4942. "for this drill object."
  4943. msgstr ""
  4944. #: flatcamGUI/FlatCAMGUI.py:4631 flatcamGUI/FlatCAMGUI.py:5101
  4945. #: flatcamGUI/FlatCAMGUI.py:6157 flatcamGUI/ObjectUI.py:595
  4946. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108
  4947. msgid "Cut Z:"
  4948. msgstr "Глубина резания:"
  4949. #: flatcamGUI/FlatCAMGUI.py:4633 flatcamGUI/ObjectUI.py:597
  4950. msgid ""
  4951. "Drill depth (negative)\n"
  4952. "below the copper surface."
  4953. msgstr ""
  4954. "Глубина сверления (отрицательная) \n"
  4955. "ниже слоя меди."
  4956. #: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5134
  4957. #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098
  4958. msgid "Travel Z:"
  4959. msgstr "Отвод по Z:"
  4960. #: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/ObjectUI.py:607
  4961. msgid ""
  4962. "Tool height when travelling\n"
  4963. "across the XY plane."
  4964. msgstr ""
  4965. "Отвод инструмента при холостом ходе\n"
  4966. "по плоскости XY."
  4967. #: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5144
  4968. msgid "Tool change:"
  4969. msgstr "Смена инструмента:"
  4970. #: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5146
  4971. #: flatcamGUI/ObjectUI.py:617
  4972. msgid ""
  4973. "Include tool-change sequence\n"
  4974. "in G-Code (Pause for tool change)."
  4975. msgstr ""
  4976. "Включает последовательность смены инструмента\n"
  4977. "в G-Code (Пауза для смены инструмента)."
  4978. #: flatcamGUI/FlatCAMGUI.py:4659 flatcamGUI/FlatCAMGUI.py:5154
  4979. msgid "Toolchange Z:"
  4980. msgstr "Смена инструмента Z :"
  4981. #: flatcamGUI/FlatCAMGUI.py:4661 flatcamGUI/FlatCAMGUI.py:5156
  4982. msgid "Toolchange Z position."
  4983. msgstr ""
  4984. #: flatcamGUI/FlatCAMGUI.py:4667
  4985. msgid "Feedrate:"
  4986. msgstr "Скорость подачи:"
  4987. #: flatcamGUI/FlatCAMGUI.py:4669
  4988. msgid ""
  4989. "Tool speed while drilling\n"
  4990. "(in units per minute)."
  4991. msgstr ""
  4992. "Настройка скорости подачи при сверлении \n"
  4993. "(в единицах в минуту)."
  4994. #: flatcamGUI/FlatCAMGUI.py:4677
  4995. msgid "Spindle Speed:"
  4996. msgstr "Скорость вращения шпинделя:"
  4997. #: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5186
  4998. #: flatcamGUI/ObjectUI.py:684
  4999. msgid ""
  5000. "Speed of the spindle\n"
  5001. "in RPM (optional)"
  5002. msgstr ""
  5003. "Скорость шпинделя\n"
  5004. "в оборотах в минуту(опционально) ."
  5005. #: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5194
  5006. msgid "Spindle dir.:"
  5007. msgstr ""
  5008. #: flatcamGUI/FlatCAMGUI.py:4689 flatcamGUI/FlatCAMGUI.py:5196
  5009. msgid ""
  5010. "This sets the direction that the spindle is rotating.\n"
  5011. "It can be either:\n"
  5012. "- CW = clockwise or\n"
  5013. "- CCW = counter clockwise"
  5014. msgstr ""
  5015. #: flatcamGUI/FlatCAMGUI.py:4701 flatcamGUI/FlatCAMGUI.py:5208
  5016. #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224
  5017. msgid "Dwell:"
  5018. msgstr "Задержка:"
  5019. #: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5210
  5020. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227
  5021. msgid ""
  5022. "Pause to allow the spindle to reach its\n"
  5023. "speed before cutting."
  5024. msgstr ""
  5025. "Задержка для набора оборотов шпинделя\n"
  5026. "перед началом обработки."
  5027. #: flatcamGUI/FlatCAMGUI.py:4706 flatcamGUI/FlatCAMGUI.py:5213
  5028. msgid "Duration:"
  5029. msgstr "Продолжительность:"
  5030. #: flatcamGUI/FlatCAMGUI.py:4708 flatcamGUI/FlatCAMGUI.py:5215
  5031. #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234
  5032. msgid "Number of milliseconds for spindle to dwell."
  5033. msgstr ""
  5034. #: flatcamGUI/FlatCAMGUI.py:4720 flatcamGUI/FlatCAMGUI.py:5225
  5035. #: flatcamGUI/ObjectUI.py:707
  5036. msgid "Postprocessor:"
  5037. msgstr ""
  5038. #: flatcamGUI/FlatCAMGUI.py:4722
  5039. msgid ""
  5040. "The postprocessor file that dictates\n"
  5041. "gcode output."
  5042. msgstr ""
  5043. #: flatcamGUI/FlatCAMGUI.py:4732
  5044. msgid "<b>Gcode: </b>"
  5045. msgstr "<b>Gcode: </b>"
  5046. #: flatcamGUI/FlatCAMGUI.py:4734
  5047. msgid ""
  5048. "Choose what to use for GCode generation:\n"
  5049. "'Drills', 'Slots' or 'Both'.\n"
  5050. "When choosing 'Slots' or 'Both', slots will be\n"
  5051. "converted to drills."
  5052. msgstr ""
  5053. #: flatcamGUI/FlatCAMGUI.py:4750 flatcamGUI/ObjectUI.py:772
  5054. msgid "<b>Mill Holes</b>"
  5055. msgstr "<b>Фрезеровка отверстий</b>"
  5056. #: flatcamGUI/FlatCAMGUI.py:4752 flatcamGUI/ObjectUI.py:774
  5057. msgid "Create Geometry for milling holes."
  5058. msgstr "Создание объекта геометрии для фрезерования отверстий."
  5059. #: flatcamGUI/FlatCAMGUI.py:4758
  5060. msgid "Drill Tool dia:"
  5061. msgstr "Диам. сверла:"
  5062. #: flatcamGUI/FlatCAMGUI.py:4765
  5063. msgid "Slot Tool dia:"
  5064. msgstr ""
  5065. #: flatcamGUI/FlatCAMGUI.py:4767
  5066. msgid ""
  5067. "Diameter of the cutting tool\n"
  5068. "when milling slots."
  5069. msgstr ""
  5070. #: flatcamGUI/FlatCAMGUI.py:4779
  5071. msgid "Defaults"
  5072. msgstr "Значения по умолчанию"
  5073. #: flatcamGUI/FlatCAMGUI.py:4792
  5074. msgid "Excellon Adv. Options"
  5075. msgstr "Доп. параметры Excellon"
  5076. #: flatcamGUI/FlatCAMGUI.py:4798 flatcamGUI/FlatCAMGUI.py:5248
  5077. msgid "<b>Advanced Options:</b>"
  5078. msgstr "<b>Дополнительные настройки:</b>"
  5079. #: flatcamGUI/FlatCAMGUI.py:4800
  5080. msgid ""
  5081. "Parameters used to create a CNC Job object\n"
  5082. "for this drill object that are shown when App Level is Advanced."
  5083. msgstr ""
  5084. #: flatcamGUI/FlatCAMGUI.py:4808
  5085. msgid "Offset Z:"
  5086. msgstr ""
  5087. #: flatcamGUI/FlatCAMGUI.py:4810 flatcamGUI/ObjectUI.py:574
  5088. msgid ""
  5089. "Some drill bits (the larger ones) need to drill deeper\n"
  5090. "to create the desired exit hole diameter due of the tip shape.\n"
  5091. "The value here can compensate the Cut Z parameter."
  5092. msgstr ""
  5093. #: flatcamGUI/FlatCAMGUI.py:4817 flatcamGUI/FlatCAMGUI.py:5259
  5094. msgid "Toolchange X,Y:"
  5095. msgstr ""
  5096. #: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5261
  5097. msgid "Toolchange X,Y position."
  5098. msgstr ""
  5099. #: flatcamGUI/FlatCAMGUI.py:4825 flatcamGUI/FlatCAMGUI.py:5268
  5100. #: flatcamGUI/ObjectUI.py:634
  5101. msgid "Start move Z:"
  5102. msgstr ""
  5103. #: flatcamGUI/FlatCAMGUI.py:4827
  5104. msgid ""
  5105. "Height of the tool just after start.\n"
  5106. "Delete the value if you don't need this feature."
  5107. msgstr ""
  5108. #: flatcamGUI/FlatCAMGUI.py:4834 flatcamGUI/FlatCAMGUI.py:5278
  5109. #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144
  5110. msgid "End move Z:"
  5111. msgstr "Высота отвода Z:"
  5112. #: flatcamGUI/FlatCAMGUI.py:4836 flatcamGUI/FlatCAMGUI.py:5280
  5113. msgid ""
  5114. "Height of the tool after\n"
  5115. "the last move at the end of the job."
  5116. msgstr ""
  5117. "Высота инструмента после\n"
  5118. "последнего прохода в конце задания."
  5119. #: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5288
  5120. #: flatcamGUI/ObjectUI.py:665
  5121. msgid "Feedrate Rapids:"
  5122. msgstr ""
  5123. #: flatcamGUI/FlatCAMGUI.py:4845 flatcamGUI/ObjectUI.py:667
  5124. msgid ""
  5125. "Tool speed while drilling\n"
  5126. "(in units per minute).\n"
  5127. "This is for the rapid move G00.\n"
  5128. "It is useful only for Marlin,\n"
  5129. "ignore for any other cases."
  5130. msgstr ""
  5131. #: flatcamGUI/FlatCAMGUI.py:4856 flatcamGUI/FlatCAMGUI.py:5312
  5132. #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256
  5133. msgid "Probe Z depth:"
  5134. msgstr ""
  5135. #: flatcamGUI/FlatCAMGUI.py:4858 flatcamGUI/FlatCAMGUI.py:5314
  5136. #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259
  5137. msgid ""
  5138. "The maximum depth that the probe is allowed\n"
  5139. "to probe. Negative value, in current units."
  5140. msgstr ""
  5141. #: flatcamGUI/FlatCAMGUI.py:4866 flatcamGUI/FlatCAMGUI.py:5322
  5142. #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270
  5143. msgid "Feedrate Probe:"
  5144. msgstr ""
  5145. #: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5324
  5146. #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273
  5147. msgid "The feedrate used while the probe is probing."
  5148. msgstr ""
  5149. #: flatcamGUI/FlatCAMGUI.py:4874 flatcamGUI/FlatCAMGUI.py:5331
  5150. msgid "Fast Plunge:"
  5151. msgstr "Быстрый подвод:"
  5152. #: flatcamGUI/FlatCAMGUI.py:4876 flatcamGUI/FlatCAMGUI.py:5333
  5153. msgid ""
  5154. "By checking this, the vertical move from\n"
  5155. "Z_Toolchange to Z_move is done with G0,\n"
  5156. "meaning the fastest speed available.\n"
  5157. "WARNING: the move is done at Toolchange X,Y coords."
  5158. msgstr ""
  5159. #: flatcamGUI/FlatCAMGUI.py:4885
  5160. msgid "Fast Retract:"
  5161. msgstr "Быстрый отвод:"
  5162. #: flatcamGUI/FlatCAMGUI.py:4887
  5163. msgid ""
  5164. "Exit hole strategy.\n"
  5165. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5166. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5167. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5168. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5169. "(travel height) is done as fast as possible (G0) in one move."
  5170. msgstr ""
  5171. #: flatcamGUI/FlatCAMGUI.py:4906
  5172. msgid "Excellon Export"
  5173. msgstr "Экспорт Excellon"
  5174. #: flatcamGUI/FlatCAMGUI.py:4911
  5175. msgid ""
  5176. "The parameters set here are used in the file exported\n"
  5177. "when using the File -> Export -> Export Excellon menu entry."
  5178. msgstr ""
  5179. #: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:4928
  5180. msgid "The units used in the Excellon file."
  5181. msgstr ""
  5182. #: flatcamGUI/FlatCAMGUI.py:4936
  5183. msgid ""
  5184. "The NC drill files, usually named Excellon files\n"
  5185. "are files that can be found in different formats.\n"
  5186. "Here we set the format used when the provided\n"
  5187. "coordinates are not using period."
  5188. msgstr ""
  5189. #: flatcamGUI/FlatCAMGUI.py:4972
  5190. msgid "<b>Format:</b>"
  5191. msgstr "<b>Формат:</b>"
  5192. #: flatcamGUI/FlatCAMGUI.py:4974 flatcamGUI/FlatCAMGUI.py:4984
  5193. msgid ""
  5194. "Select the kind of coordinates format used.\n"
  5195. "Coordinates can be saved with decimal point or without.\n"
  5196. "When there is no decimal point, it is required to specify\n"
  5197. "the number of digits for integer part and the number of decimals.\n"
  5198. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5199. "or TZ = trailing zeros are kept."
  5200. msgstr ""
  5201. #: flatcamGUI/FlatCAMGUI.py:5008
  5202. msgid ""
  5203. "This sets the default type of Excellon zeros.\n"
  5204. "If LZ then Leading Zeros are kept and\n"
  5205. "Trailing Zeros are removed.\n"
  5206. "If TZ is checked then Trailing Zeros are kept\n"
  5207. "and Leading Zeros are removed."
  5208. msgstr ""
  5209. #: flatcamGUI/FlatCAMGUI.py:5034
  5210. msgid "Geometry General"
  5211. msgstr ""
  5212. #: flatcamGUI/FlatCAMGUI.py:5052
  5213. msgid ""
  5214. "The number of circle steps for <b>Geometry</b> \n"
  5215. "circle and arc shapes linear approximation."
  5216. msgstr ""
  5217. #: flatcamGUI/FlatCAMGUI.py:5060
  5218. msgid "<b>Tools</b>"
  5219. msgstr "<b>Инструменты</b>"
  5220. #: flatcamGUI/FlatCAMGUI.py:5067
  5221. msgid "Tool dia: "
  5222. msgstr ""
  5223. #: flatcamGUI/FlatCAMGUI.py:5069
  5224. msgid ""
  5225. "The diameter of the cutting\n"
  5226. "tool.."
  5227. msgstr ""
  5228. "Диаметр режущего\n"
  5229. "инструмента.."
  5230. #: flatcamGUI/FlatCAMGUI.py:5084
  5231. msgid "Geometry Options"
  5232. msgstr "Параметры геометрии"
  5233. #: flatcamGUI/FlatCAMGUI.py:5089
  5234. msgid "<b>Create CNC Job:</b>"
  5235. msgstr "<b>Создание программы для ЧПУ:</b>"
  5236. #: flatcamGUI/FlatCAMGUI.py:5091
  5237. msgid ""
  5238. "Create a CNC Job object\n"
  5239. "tracing the contours of this\n"
  5240. "Geometry object."
  5241. msgstr ""
  5242. "Создание объекта трассировки\n"
  5243. "контуров данного объекта геометрии\n"
  5244. "для программы ЧПУ."
  5245. #: flatcamGUI/FlatCAMGUI.py:5103 flatcamGUI/ObjectUI.py:1065
  5246. msgid ""
  5247. "Cutting depth (negative)\n"
  5248. "below the copper surface."
  5249. msgstr ""
  5250. "Глубина резания (отрицательная)\n"
  5251. "ниже слоя меди."
  5252. #: flatcamGUI/FlatCAMGUI.py:5111
  5253. msgid "Multidepth"
  5254. msgstr ""
  5255. #: flatcamGUI/FlatCAMGUI.py:5113
  5256. msgid "Multidepth usage: True or False."
  5257. msgstr ""
  5258. #: flatcamGUI/FlatCAMGUI.py:5118
  5259. msgid "Depth/Pass:"
  5260. msgstr "Шаг за проход:"
  5261. #: flatcamGUI/FlatCAMGUI.py:5120
  5262. msgid ""
  5263. "The depth to cut on each pass,\n"
  5264. "when multidepth is enabled.\n"
  5265. "It has positive value although\n"
  5266. "it is a fraction from the depth\n"
  5267. "which has negative value."
  5268. msgstr ""
  5269. #: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:1101
  5270. msgid ""
  5271. "Height of the tool when\n"
  5272. "moving without cutting."
  5273. msgstr "Высота отвода инструмента при холостом ходе."
  5274. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/ObjectUI.py:1156
  5275. msgid "Feed Rate X-Y:"
  5276. msgstr "Скорость подачи X-Y:"
  5277. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/ObjectUI.py:1159
  5278. msgid ""
  5279. "Cutting speed in the XY\n"
  5280. "plane in units per minute"
  5281. msgstr ""
  5282. "Скорость резания в плоскости XY\n"
  5283. "в единицах в минуту"
  5284. #: flatcamGUI/FlatCAMGUI.py:5173
  5285. msgid "Feed Rate Z:"
  5286. msgstr "Скорость подачи Z:"
  5287. #: flatcamGUI/FlatCAMGUI.py:5175
  5288. msgid ""
  5289. "Cutting speed in the XY\n"
  5290. "plane in units per minute.\n"
  5291. "It is called also Plunge."
  5292. msgstr ""
  5293. #: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/ObjectUI.py:682
  5294. #: flatcamGUI/ObjectUI.py:1211
  5295. msgid "Spindle speed:"
  5296. msgstr "Скорость вращения шпинделя:"
  5297. #: flatcamGUI/FlatCAMGUI.py:5227
  5298. msgid ""
  5299. "The postprocessor file that dictates\n"
  5300. "Machine Code output."
  5301. msgstr ""
  5302. #: flatcamGUI/FlatCAMGUI.py:5243
  5303. msgid "Geometry Adv. Options"
  5304. msgstr ""
  5305. #: flatcamGUI/FlatCAMGUI.py:5250
  5306. msgid ""
  5307. "Parameters to create a CNC Job object\n"
  5308. "tracing the contours of a Geometry object."
  5309. msgstr ""
  5310. #: flatcamGUI/FlatCAMGUI.py:5270
  5311. msgid ""
  5312. "Height of the tool just after starting the work.\n"
  5313. "Delete the value if you don't need this feature."
  5314. msgstr ""
  5315. #: flatcamGUI/FlatCAMGUI.py:5290
  5316. msgid ""
  5317. "Cutting speed in the XY plane\n"
  5318. "(in units per minute).\n"
  5319. "This is for the rapid move G00.\n"
  5320. "It is useful only for Marlin,\n"
  5321. "ignore for any other cases."
  5322. msgstr ""
  5323. #: flatcamGUI/FlatCAMGUI.py:5302
  5324. msgid "Re-cut 1st pt."
  5325. msgstr ""
  5326. #: flatcamGUI/FlatCAMGUI.py:5304 flatcamGUI/ObjectUI.py:1202
  5327. msgid ""
  5328. "In order to remove possible\n"
  5329. "copper leftovers where first cut\n"
  5330. "meet with last cut, we generate an\n"
  5331. "extended cut over the first cut section."
  5332. msgstr ""
  5333. #: flatcamGUI/FlatCAMGUI.py:5343
  5334. msgid "Seg. X size:"
  5335. msgstr ""
  5336. #: flatcamGUI/FlatCAMGUI.py:5345
  5337. msgid ""
  5338. "The size of the trace segment on the X axis.\n"
  5339. "Useful for auto-leveling.\n"
  5340. "A value of 0 means no segmentation on the X axis."
  5341. msgstr ""
  5342. #: flatcamGUI/FlatCAMGUI.py:5354
  5343. msgid "Seg. Y size:"
  5344. msgstr ""
  5345. #: flatcamGUI/FlatCAMGUI.py:5356
  5346. msgid ""
  5347. "The size of the trace segment on the Y axis.\n"
  5348. "Useful for auto-leveling.\n"
  5349. "A value of 0 means no segmentation on the Y axis."
  5350. msgstr ""
  5351. #: flatcamGUI/FlatCAMGUI.py:5372
  5352. msgid "Geometry Editor"
  5353. msgstr ""
  5354. #: flatcamGUI/FlatCAMGUI.py:5377
  5355. msgid "A list of Geometry Editor parameters."
  5356. msgstr "Список параметров редактора Geometry."
  5357. #: flatcamGUI/FlatCAMGUI.py:5387
  5358. msgid ""
  5359. "Set the number of selected geometry\n"
  5360. "items above which the utility geometry\n"
  5361. "becomes just a selection rectangle.\n"
  5362. "Increases the performance when moving a\n"
  5363. "large number of geometric elements."
  5364. msgstr ""
  5365. #: flatcamGUI/FlatCAMGUI.py:5406
  5366. msgid "CNC Job General"
  5367. msgstr ""
  5368. #: flatcamGUI/FlatCAMGUI.py:5419 flatcamGUI/ObjectUI.py:544
  5369. #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1434
  5370. msgid "Plot Object"
  5371. msgstr ""
  5372. #: flatcamGUI/FlatCAMGUI.py:5426
  5373. msgid "Plot kind:"
  5374. msgstr ""
  5375. #: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/ObjectUI.py:1356
  5376. msgid ""
  5377. "This selects the kind of geometries on the canvas to plot.\n"
  5378. "Those can be either of type 'Travel' which means the moves\n"
  5379. "above the work piece or it can be of type 'Cut',\n"
  5380. "which means the moves that cut into the material."
  5381. msgstr ""
  5382. #: flatcamGUI/FlatCAMGUI.py:5447
  5383. msgid ""
  5384. "The number of circle steps for <b>GCode</b> \n"
  5385. "circle and arc shapes linear approximation."
  5386. msgstr ""
  5387. #: flatcamGUI/FlatCAMGUI.py:5457
  5388. msgid ""
  5389. "Diameter of the tool to be\n"
  5390. "rendered in the plot."
  5391. msgstr ""
  5392. "Диаметр инструмента\n"
  5393. " для отрисовки контуров."
  5394. #: flatcamGUI/FlatCAMGUI.py:5465
  5395. msgid "Coords dec.:"
  5396. msgstr ""
  5397. #: flatcamGUI/FlatCAMGUI.py:5467
  5398. msgid ""
  5399. "The number of decimals to be used for \n"
  5400. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5401. msgstr ""
  5402. #: flatcamGUI/FlatCAMGUI.py:5475
  5403. msgid "Feedrate dec.:"
  5404. msgstr ""
  5405. #: flatcamGUI/FlatCAMGUI.py:5477
  5406. msgid ""
  5407. "The number of decimals to be used for \n"
  5408. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5409. msgstr ""
  5410. #: flatcamGUI/FlatCAMGUI.py:5492
  5411. msgid "CNC Job Options"
  5412. msgstr "Параметры программы для ЧПУ"
  5413. #: flatcamGUI/FlatCAMGUI.py:5495 flatcamGUI/FlatCAMGUI.py:5536
  5414. msgid "<b>Export G-Code:</b>"
  5415. msgstr "<b>Экспорт G-Code:</b>"
  5416. #: flatcamGUI/FlatCAMGUI.py:5497 flatcamGUI/FlatCAMGUI.py:5538
  5417. #: flatcamGUI/ObjectUI.py:1470
  5418. msgid ""
  5419. "Export and save G-Code to\n"
  5420. "make this object to a file."
  5421. msgstr ""
  5422. "Экспорт G-Code,\n"
  5423. "для сохранения\n"
  5424. "этого объекта в файл."
  5425. #: flatcamGUI/FlatCAMGUI.py:5503
  5426. msgid "Prepend to G-Code:"
  5427. msgstr "Коды предобработки для G-Code:"
  5428. #: flatcamGUI/FlatCAMGUI.py:5505
  5429. msgid ""
  5430. "Type here any G-Code commands you would\n"
  5431. "like to add at the beginning of the G-Code file."
  5432. msgstr ""
  5433. "Введите здесь любые команды G-Code, которые вам\n"
  5434. "хотелось бы добавить в начале файла G-Code."
  5435. #: flatcamGUI/FlatCAMGUI.py:5514
  5436. msgid "Append to G-Code:"
  5437. msgstr "Коды постобработки для G-Code:"
  5438. #: flatcamGUI/FlatCAMGUI.py:5516 flatcamGUI/ObjectUI.py:1492
  5439. msgid ""
  5440. "Type here any G-Code commands you would\n"
  5441. "like to append to the generated file.\n"
  5442. "I.e.: M2 (End of program)"
  5443. msgstr ""
  5444. "Введите здесь любые G-Code команды, которые вам\n"
  5445. "хотелось бы добавить к созданному файлу.\n"
  5446. "например: M2 (конец программы)"
  5447. #: flatcamGUI/FlatCAMGUI.py:5533
  5448. msgid "CNC Job Adv. Options"
  5449. msgstr ""
  5450. #: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:1510
  5451. msgid "Toolchange G-Code:"
  5452. msgstr ""
  5453. #: flatcamGUI/FlatCAMGUI.py:5546
  5454. msgid ""
  5455. "Type here any G-Code commands you would\n"
  5456. "like to be executed when Toolchange event is encountered.\n"
  5457. "This will constitute a Custom Toolchange GCode,\n"
  5458. "or a Toolchange Macro."
  5459. msgstr ""
  5460. #: flatcamGUI/FlatCAMGUI.py:5560 flatcamGUI/ObjectUI.py:1532
  5461. msgid "Use Toolchange Macro"
  5462. msgstr ""
  5463. #: flatcamGUI/FlatCAMGUI.py:5562 flatcamGUI/ObjectUI.py:1535
  5464. msgid ""
  5465. "Check this box if you want to use\n"
  5466. "a Custom Toolchange GCode (macro)."
  5467. msgstr ""
  5468. #: flatcamGUI/FlatCAMGUI.py:5574 flatcamGUI/ObjectUI.py:1544
  5469. msgid ""
  5470. "A list of the FlatCAM variables that can be used\n"
  5471. "in the Toolchange event.\n"
  5472. "They have to be surrounded by the '%' symbol"
  5473. msgstr ""
  5474. "Список переменных FlatCAM, которые можно использовать\n"
  5475. "при смене инструмента.\n"
  5476. "Они должны быть окружены '%' символом"
  5477. #: flatcamGUI/FlatCAMGUI.py:5581 flatcamGUI/ObjectUI.py:1551
  5478. msgid "Parameters"
  5479. msgstr ""
  5480. #: flatcamGUI/FlatCAMGUI.py:5584 flatcamGUI/ObjectUI.py:1554
  5481. msgid "FlatCAM CNC parameters"
  5482. msgstr ""
  5483. #: flatcamGUI/FlatCAMGUI.py:5585 flatcamGUI/ObjectUI.py:1555
  5484. msgid "tool = tool number"
  5485. msgstr ""
  5486. #: flatcamGUI/FlatCAMGUI.py:5586 flatcamGUI/ObjectUI.py:1556
  5487. msgid "tooldia = tool diameter"
  5488. msgstr ""
  5489. #: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1557
  5490. msgid "t_drills = for Excellon, total number of drills"
  5491. msgstr ""
  5492. #: flatcamGUI/FlatCAMGUI.py:5588 flatcamGUI/ObjectUI.py:1558
  5493. msgid "x_toolchange = X coord for Toolchange"
  5494. msgstr ""
  5495. #: flatcamGUI/FlatCAMGUI.py:5589 flatcamGUI/ObjectUI.py:1559
  5496. msgid "y_toolchange = Y coord for Toolchange"
  5497. msgstr ""
  5498. #: flatcamGUI/FlatCAMGUI.py:5590 flatcamGUI/ObjectUI.py:1560
  5499. msgid "z_toolchange = Z coord for Toolchange"
  5500. msgstr ""
  5501. #: flatcamGUI/FlatCAMGUI.py:5591
  5502. msgid "z_cut = Z depth for the cut"
  5503. msgstr ""
  5504. #: flatcamGUI/FlatCAMGUI.py:5592
  5505. msgid "z_move = Z height for travel"
  5506. msgstr ""
  5507. #: flatcamGUI/FlatCAMGUI.py:5593 flatcamGUI/ObjectUI.py:1563
  5508. msgid "z_depthpercut = the step value for multidepth cut"
  5509. msgstr ""
  5510. #: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/ObjectUI.py:1564
  5511. msgid "spindlesspeed = the value for the spindle speed"
  5512. msgstr ""
  5513. #: flatcamGUI/FlatCAMGUI.py:5595 flatcamGUI/ObjectUI.py:1565
  5514. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5515. msgstr ""
  5516. #: flatcamGUI/FlatCAMGUI.py:5616
  5517. msgid "NCC Tool Options"
  5518. msgstr ""
  5519. #: flatcamGUI/FlatCAMGUI.py:5629 flatcamGUI/FlatCAMGUI.py:6359
  5520. msgid "Tools dia:"
  5521. msgstr ""
  5522. #: flatcamGUI/FlatCAMGUI.py:5631
  5523. msgid "Diameters of the cutting tools, separated by ','"
  5524. msgstr ""
  5525. #: flatcamGUI/FlatCAMGUI.py:5639 flatcamTools/ToolNonCopperClear.py:167
  5526. #, python-format
  5527. msgid ""
  5528. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5529. "Example:\n"
  5530. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5531. "\n"
  5532. "Adjust the value starting with lower values\n"
  5533. "and increasing it if areas that should be cleared are still \n"
  5534. "not cleared.\n"
  5535. "Lower values = faster processing, faster execution on PCB.\n"
  5536. "Higher values = slow processing and slow execution on CNC\n"
  5537. "due of too many paths."
  5538. msgstr ""
  5539. #: flatcamGUI/FlatCAMGUI.py:5655 flatcamTools/ToolNonCopperClear.py:183
  5540. msgid "Bounding box margin."
  5541. msgstr ""
  5542. #: flatcamGUI/FlatCAMGUI.py:5664 flatcamTools/ToolNonCopperClear.py:192
  5543. #: flatcamTools/ToolPaint.py:190
  5544. msgid ""
  5545. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  5546. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  5547. "lines."
  5548. msgstr ""
  5549. #: flatcamGUI/FlatCAMGUI.py:5696 flatcamTools/ToolNonCopperClear.py:224
  5550. #: flatcamTools/ToolPaint.py:222
  5551. msgid "Rest M.:"
  5552. msgstr ""
  5553. #: flatcamGUI/FlatCAMGUI.py:5698
  5554. msgid ""
  5555. "If checked, use 'rest machining'.\n"
  5556. "Basically it will clear copper outside PCB features,\n"
  5557. "using the biggest tool and continue with the next tools,\n"
  5558. "from bigger to smaller, to clear areas of copper that\n"
  5559. "could not be cleared by previous tool.\n"
  5560. "If not checked, use the standard algorithm."
  5561. msgstr ""
  5562. #: flatcamGUI/FlatCAMGUI.py:5717
  5563. msgid "Cutout Tool Options"
  5564. msgstr "Параметры обрезки контура платы"
  5565. #: flatcamGUI/FlatCAMGUI.py:5722 flatcamGUI/ObjectUI.py:402
  5566. msgid ""
  5567. "Create toolpaths to cut around\n"
  5568. "the PCB and separate it from\n"
  5569. "the original board."
  5570. msgstr ""
  5571. "Создание траектории обрезки печатной платы и отделения её от\n"
  5572. "заготовки."
  5573. #: flatcamGUI/FlatCAMGUI.py:5741
  5574. msgid ""
  5575. "Distance from objects at which\n"
  5576. "to draw the cutout."
  5577. msgstr ""
  5578. "Расстояние от объектов вокруг которых\n"
  5579. "будет нарисовано очертание."
  5580. #: flatcamGUI/FlatCAMGUI.py:5748 flatcamTools/ToolCutOut.py:96
  5581. msgid "Gap size:"
  5582. msgstr "Размер перемычки:"
  5583. #: flatcamGUI/FlatCAMGUI.py:5750
  5584. msgid ""
  5585. "Size of the gaps in the toolpath\n"
  5586. "that will remain to hold the\n"
  5587. "board in place."
  5588. msgstr ""
  5589. "Размер перемычек для удержания\n"
  5590. "печатной платы в заготовке."
  5591. #: flatcamGUI/FlatCAMGUI.py:5758 flatcamTools/ToolCutOut.py:134
  5592. msgid "Gaps:"
  5593. msgstr "Тип перемычек:"
  5594. #: flatcamGUI/FlatCAMGUI.py:5760
  5595. msgid ""
  5596. "Number of bridge gaps used for the cutout.\n"
  5597. "There can be maximum 8 bridges/gaps.\n"
  5598. "The choices are:\n"
  5599. "- lr - left + right\n"
  5600. "- tb - top + bottom\n"
  5601. "- 4 - left + right +top + bottom\n"
  5602. "- 2lr - 2*left + 2*right\n"
  5603. "- 2tb - 2*top + 2*bottom\n"
  5604. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  5605. msgstr ""
  5606. #: flatcamGUI/FlatCAMGUI.py:5781 flatcamTools/ToolCutOut.py:115
  5607. msgid "Convex Sh.:"
  5608. msgstr ""
  5609. #: flatcamGUI/FlatCAMGUI.py:5783
  5610. msgid "Create a convex shape surrounding the entire PCB."
  5611. msgstr ""
  5612. #: flatcamGUI/FlatCAMGUI.py:5796
  5613. msgid "2Sided Tool Options"
  5614. msgstr "Параметры 2-х сторонней платы"
  5615. #: flatcamGUI/FlatCAMGUI.py:5801
  5616. msgid ""
  5617. "A tool to help in creating a double sided\n"
  5618. "PCB using alignment holes."
  5619. msgstr ""
  5620. "Инструмент, помогающий создать двухстороннюю\n"
  5621. "печатную плату с использованием центрирующих отверстий."
  5622. #: flatcamGUI/FlatCAMGUI.py:5811 flatcamTools/ToolDblSided.py:235
  5623. msgid "Drill diam.:"
  5624. msgstr "Диам. сверла.:"
  5625. #: flatcamGUI/FlatCAMGUI.py:5813 flatcamTools/ToolDblSided.py:226
  5626. #: flatcamTools/ToolDblSided.py:237
  5627. msgid "Diameter of the drill for the alignment holes."
  5628. msgstr "Диаметр сверла для контрольных отверстий."
  5629. #: flatcamGUI/FlatCAMGUI.py:5822 flatcamTools/ToolDblSided.py:120
  5630. msgid "Mirror Axis:"
  5631. msgstr "Зеркальное отражение:"
  5632. #: flatcamGUI/FlatCAMGUI.py:5824 flatcamTools/ToolDblSided.py:122
  5633. msgid "Mirror vertically (X) or horizontally (Y)."
  5634. msgstr "Отразить по вертикали (X) или горизонтали (Y)."
  5635. #: flatcamGUI/FlatCAMGUI.py:5835 flatcamTools/ToolDblSided.py:133
  5636. msgid "Axis Ref:"
  5637. msgstr ""
  5638. #: flatcamGUI/FlatCAMGUI.py:5837
  5639. msgid ""
  5640. "The axis should pass through a <b>point</b> or cut\n"
  5641. " a specified <b>box</b> (in a Geometry object) in \n"
  5642. "the middle."
  5643. msgstr ""
  5644. "Ось должна проходить через <b>точку</b> или вырезать\n"
  5645. " указанное <b>поле</b> (в Geometry объект) в\n"
  5646. "середине."
  5647. #: flatcamGUI/FlatCAMGUI.py:5853
  5648. msgid "Paint Tool Options"
  5649. msgstr ""
  5650. #: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1305
  5651. msgid ""
  5652. "Creates tool paths to cover the\n"
  5653. "whole area of a polygon (remove\n"
  5654. "all copper). You will be asked\n"
  5655. "to click on the desired polygon."
  5656. msgstr ""
  5657. "Создание пути инструмента для покрытия\n"
  5658. "всей площади полигона(удаляется вся медь).\n"
  5659. "Будет предложено нажать на нужный полигон."
  5660. #: flatcamGUI/FlatCAMGUI.py:5884
  5661. msgid ""
  5662. "How much (fraction) of the tool\n"
  5663. "width to overlap each tool pass."
  5664. msgstr ""
  5665. "Размер части ширины инструмента \n"
  5666. "который будет перекрываться за каждый проход."
  5667. #: flatcamGUI/FlatCAMGUI.py:5938 flatcamTools/ToolPaint.py:237
  5668. msgid "Selection:"
  5669. msgstr "Выбор:"
  5670. #: flatcamGUI/FlatCAMGUI.py:5940
  5671. msgid "How to select the polygons to paint."
  5672. msgstr "Как выбирать полигоны для рисования."
  5673. #: flatcamGUI/FlatCAMGUI.py:5958
  5674. msgid "Film Tool Options"
  5675. msgstr ""
  5676. #: flatcamGUI/FlatCAMGUI.py:5963
  5677. msgid ""
  5678. "Create a PCB film from a Gerber or Geometry\n"
  5679. "FlatCAM object.\n"
  5680. "The file is saved in SVG format."
  5681. msgstr ""
  5682. #: flatcamGUI/FlatCAMGUI.py:5974 flatcamTools/ToolFilm.py:116
  5683. msgid "Film Type:"
  5684. msgstr ""
  5685. #: flatcamGUI/FlatCAMGUI.py:5976 flatcamTools/ToolFilm.py:118
  5686. msgid ""
  5687. "Generate a Positive black film or a Negative film.\n"
  5688. "Positive means that it will print the features\n"
  5689. "with black on a white canvas.\n"
  5690. "Negative means that it will print the features\n"
  5691. "with white on a black canvas.\n"
  5692. "The Film format is SVG."
  5693. msgstr ""
  5694. #: flatcamGUI/FlatCAMGUI.py:5987 flatcamTools/ToolFilm.py:130
  5695. msgid "Border:"
  5696. msgstr ""
  5697. #: flatcamGUI/FlatCAMGUI.py:5989 flatcamTools/ToolFilm.py:132
  5698. msgid ""
  5699. "Specify a border around the object.\n"
  5700. "Only for negative film.\n"
  5701. "It helps if we use as a Box Object the same \n"
  5702. "object as in Film Object. It will create a thick\n"
  5703. "black bar around the actual print allowing for a\n"
  5704. "better delimitation of the outline features which are of\n"
  5705. "white color like the rest and which may confound with the\n"
  5706. "surroundings if not for this border."
  5707. msgstr ""
  5708. #: flatcamGUI/FlatCAMGUI.py:6002 flatcamTools/ToolFilm.py:144
  5709. msgid "Scale Stroke:"
  5710. msgstr ""
  5711. #: flatcamGUI/FlatCAMGUI.py:6004 flatcamTools/ToolFilm.py:146
  5712. msgid ""
  5713. "Scale the line stroke thickness of each feature in the SVG file.\n"
  5714. "It means that the line that envelope each SVG feature will be thicker or "
  5715. "thinner,\n"
  5716. "therefore the fine features may be more affected by this parameter."
  5717. msgstr ""
  5718. #: flatcamGUI/FlatCAMGUI.py:6019
  5719. msgid "Panelize Tool Options"
  5720. msgstr ""
  5721. #: flatcamGUI/FlatCAMGUI.py:6024
  5722. msgid ""
  5723. "Create an object that contains an array of (x, y) elements,\n"
  5724. "each element is a copy of the source object spaced\n"
  5725. "at a X distance, Y distance of each other."
  5726. msgstr ""
  5727. #: flatcamGUI/FlatCAMGUI.py:6035 flatcamTools/ToolPanelize.py:147
  5728. msgid "Spacing cols:"
  5729. msgstr ""
  5730. #: flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolPanelize.py:149
  5731. msgid ""
  5732. "Spacing between columns of the desired panel.\n"
  5733. "In current units."
  5734. msgstr ""
  5735. #: flatcamGUI/FlatCAMGUI.py:6045 flatcamTools/ToolPanelize.py:156
  5736. msgid "Spacing rows:"
  5737. msgstr ""
  5738. #: flatcamGUI/FlatCAMGUI.py:6047 flatcamTools/ToolPanelize.py:158
  5739. msgid ""
  5740. "Spacing between rows of the desired panel.\n"
  5741. "In current units."
  5742. msgstr ""
  5743. #: flatcamGUI/FlatCAMGUI.py:6055 flatcamTools/ToolPanelize.py:165
  5744. msgid "Columns:"
  5745. msgstr "Столбцы:"
  5746. #: flatcamGUI/FlatCAMGUI.py:6057 flatcamTools/ToolPanelize.py:167
  5747. msgid "Number of columns of the desired panel"
  5748. msgstr ""
  5749. #: flatcamGUI/FlatCAMGUI.py:6064 flatcamTools/ToolPanelize.py:173
  5750. msgid "Rows:"
  5751. msgstr "Строки:"
  5752. #: flatcamGUI/FlatCAMGUI.py:6066 flatcamTools/ToolPanelize.py:175
  5753. msgid "Number of rows of the desired panel"
  5754. msgstr ""
  5755. #: flatcamGUI/FlatCAMGUI.py:6074
  5756. msgid "Panel Type:"
  5757. msgstr ""
  5758. #: flatcamGUI/FlatCAMGUI.py:6076
  5759. msgid ""
  5760. "Choose the type of object for the panel object:\n"
  5761. "- Gerber\n"
  5762. "- Geometry"
  5763. msgstr ""
  5764. #: flatcamGUI/FlatCAMGUI.py:6085
  5765. msgid "Constrain within:"
  5766. msgstr "Ограничить в пределах:"
  5767. #: flatcamGUI/FlatCAMGUI.py:6087 flatcamTools/ToolPanelize.py:195
  5768. msgid ""
  5769. "Area define by DX and DY within to constrain the panel.\n"
  5770. "DX and DY values are in current units.\n"
  5771. "Regardless of how many columns and rows are desired,\n"
  5772. "the final panel will have as many columns and rows as\n"
  5773. "they fit completely within selected area."
  5774. msgstr ""
  5775. #: flatcamGUI/FlatCAMGUI.py:6096 flatcamTools/ToolPanelize.py:204
  5776. msgid "Width (DX):"
  5777. msgstr ""
  5778. #: flatcamGUI/FlatCAMGUI.py:6098 flatcamTools/ToolPanelize.py:206
  5779. msgid ""
  5780. "The width (DX) within which the panel must fit.\n"
  5781. "In current units."
  5782. msgstr ""
  5783. #: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolPanelize.py:212
  5784. msgid "Height (DY):"
  5785. msgstr "Высота (DY):"
  5786. #: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolPanelize.py:214
  5787. msgid ""
  5788. "The height (DY)within which the panel must fit.\n"
  5789. "In current units."
  5790. msgstr ""
  5791. #: flatcamGUI/FlatCAMGUI.py:6121
  5792. msgid "Calculators Tool Options"
  5793. msgstr ""
  5794. #: flatcamGUI/FlatCAMGUI.py:6124
  5795. msgid "<b>V-Shape Tool Calculator:</b>"
  5796. msgstr ""
  5797. #: flatcamGUI/FlatCAMGUI.py:6126
  5798. msgid ""
  5799. "Calculate the tool diameter for a given V-shape tool,\n"
  5800. "having the tip diameter, tip angle and\n"
  5801. "depth-of-cut as parameters."
  5802. msgstr ""
  5803. #: flatcamGUI/FlatCAMGUI.py:6137 flatcamTools/ToolCalculators.py:94
  5804. msgid "Tip Diameter:"
  5805. msgstr ""
  5806. #: flatcamGUI/FlatCAMGUI.py:6139
  5807. msgid ""
  5808. "This is the tool tip diameter.\n"
  5809. "It is specified by manufacturer."
  5810. msgstr ""
  5811. #: flatcamGUI/FlatCAMGUI.py:6147
  5812. msgid "Tip angle:"
  5813. msgstr ""
  5814. #: flatcamGUI/FlatCAMGUI.py:6149
  5815. msgid ""
  5816. "This is the angle on the tip of the tool.\n"
  5817. "It is specified by manufacturer."
  5818. msgstr ""
  5819. #: flatcamGUI/FlatCAMGUI.py:6159
  5820. msgid ""
  5821. "This is depth to cut into material.\n"
  5822. "In the CNCJob object it is the CutZ parameter."
  5823. msgstr ""
  5824. #: flatcamGUI/FlatCAMGUI.py:6166
  5825. msgid "<b>ElectroPlating Calculator:</b>"
  5826. msgstr ""
  5827. #: flatcamGUI/FlatCAMGUI.py:6168 flatcamTools/ToolCalculators.py:152
  5828. msgid ""
  5829. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  5830. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  5831. "chloride."
  5832. msgstr ""
  5833. #: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolCalculators.py:161
  5834. msgid "Board Length:"
  5835. msgstr "Длина платы:"
  5836. #: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolCalculators.py:165
  5837. msgid "This is the board length. In centimeters."
  5838. msgstr ""
  5839. #: flatcamGUI/FlatCAMGUI.py:6186 flatcamTools/ToolCalculators.py:167
  5840. msgid "Board Width:"
  5841. msgstr "Ширина платы:"
  5842. #: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolCalculators.py:171
  5843. msgid "This is the board width.In centimeters."
  5844. msgstr ""
  5845. #: flatcamGUI/FlatCAMGUI.py:6193 flatcamTools/ToolCalculators.py:173
  5846. msgid "Current Density:"
  5847. msgstr "Текущая плотность:"
  5848. #: flatcamGUI/FlatCAMGUI.py:6196 flatcamTools/ToolCalculators.py:177
  5849. msgid ""
  5850. "Current density to pass through the board. \n"
  5851. "In Amps per Square Feet ASF."
  5852. msgstr ""
  5853. #: flatcamGUI/FlatCAMGUI.py:6202 flatcamTools/ToolCalculators.py:181
  5854. msgid "Copper Growth:"
  5855. msgstr ""
  5856. #: flatcamGUI/FlatCAMGUI.py:6205 flatcamTools/ToolCalculators.py:185
  5857. msgid ""
  5858. "How thick the copper growth is intended to be.\n"
  5859. "In microns."
  5860. msgstr ""
  5861. #: flatcamGUI/FlatCAMGUI.py:6218
  5862. msgid "Transform Tool Options"
  5863. msgstr ""
  5864. #: flatcamGUI/FlatCAMGUI.py:6223
  5865. msgid ""
  5866. "Various transformations that can be applied\n"
  5867. "on a FlatCAM object."
  5868. msgstr ""
  5869. #: flatcamGUI/FlatCAMGUI.py:6233
  5870. msgid "Rotate Angle:"
  5871. msgstr ""
  5872. #: flatcamGUI/FlatCAMGUI.py:6235
  5873. msgid "Angle for rotation. In degrees."
  5874. msgstr ""
  5875. #: flatcamGUI/FlatCAMGUI.py:6242
  5876. msgid "Skew_X angle:"
  5877. msgstr ""
  5878. #: flatcamGUI/FlatCAMGUI.py:6244
  5879. msgid "Angle for Skew/Shear on X axis. In degrees."
  5880. msgstr ""
  5881. #: flatcamGUI/FlatCAMGUI.py:6251
  5882. msgid "Skew_Y angle:"
  5883. msgstr ""
  5884. #: flatcamGUI/FlatCAMGUI.py:6253
  5885. msgid "Angle for Skew/Shear on Y axis. In degrees."
  5886. msgstr ""
  5887. #: flatcamGUI/FlatCAMGUI.py:6260
  5888. msgid "Scale_X factor:"
  5889. msgstr ""
  5890. #: flatcamGUI/FlatCAMGUI.py:6262
  5891. msgid "Factor for scaling on X axis."
  5892. msgstr "Множитель масштабирования по оси X."
  5893. #: flatcamGUI/FlatCAMGUI.py:6269
  5894. msgid "Scale_Y factor:"
  5895. msgstr ""
  5896. #: flatcamGUI/FlatCAMGUI.py:6271
  5897. msgid "Factor for scaling on Y axis."
  5898. msgstr "Множитель масштабирования по оси Y."
  5899. #: flatcamGUI/FlatCAMGUI.py:6279
  5900. msgid ""
  5901. "Scale the selected object(s)\n"
  5902. "using the Scale_X factor for both axis."
  5903. msgstr ""
  5904. #: flatcamGUI/FlatCAMGUI.py:6287 flatcamTools/ToolTransform.py:210
  5905. msgid ""
  5906. "Scale the selected object(s)\n"
  5907. "using the origin reference when checked,\n"
  5908. "and the center of the biggest bounding box\n"
  5909. "of the selected objects when unchecked."
  5910. msgstr ""
  5911. #: flatcamGUI/FlatCAMGUI.py:6296
  5912. msgid "Offset_X val:"
  5913. msgstr ""
  5914. #: flatcamGUI/FlatCAMGUI.py:6298
  5915. msgid "Distance to offset on X axis. In current units."
  5916. msgstr "Расстояние смещения по оси X. В текущих единицах."
  5917. #: flatcamGUI/FlatCAMGUI.py:6305
  5918. msgid "Offset_Y val:"
  5919. msgstr ""
  5920. #: flatcamGUI/FlatCAMGUI.py:6307
  5921. msgid "Distance to offset on Y axis. In current units."
  5922. msgstr "Расстояние смещения по оси Y. В текущих единицах."
  5923. #: flatcamGUI/FlatCAMGUI.py:6313
  5924. msgid "Mirror Reference"
  5925. msgstr "Точка зеркалтрования"
  5926. #: flatcamGUI/FlatCAMGUI.py:6315 flatcamTools/ToolTransform.py:314
  5927. msgid ""
  5928. "Flip the selected object(s)\n"
  5929. "around the point in Point Entry Field.\n"
  5930. "\n"
  5931. "The point coordinates can be captured by\n"
  5932. "left click on canvas together with pressing\n"
  5933. "SHIFT key. \n"
  5934. "Then click Add button to insert coordinates.\n"
  5935. "Or enter the coords in format (x, y) in the\n"
  5936. "Point Entry field and click Flip on X(Y)"
  5937. msgstr ""
  5938. #: flatcamGUI/FlatCAMGUI.py:6326
  5939. msgid " Mirror Ref. Point:"
  5940. msgstr "Точка зеркалирования:"
  5941. #: flatcamGUI/FlatCAMGUI.py:6328 flatcamTools/ToolTransform.py:327
  5942. msgid ""
  5943. "Coordinates in format (x, y) used as reference for mirroring.\n"
  5944. "The 'x' in (x, y) will be used when using Flip on X and\n"
  5945. "the 'y' in (x, y) will be used when using Flip on Y and"
  5946. msgstr ""
  5947. #: flatcamGUI/FlatCAMGUI.py:6345
  5948. msgid "SolderPaste Tool Options"
  5949. msgstr ""
  5950. #: flatcamGUI/FlatCAMGUI.py:6350
  5951. msgid ""
  5952. "A tool to create GCode for dispensing\n"
  5953. "solder paste onto a PCB."
  5954. msgstr ""
  5955. "Инструмент для создания GCode для дозирования\n"
  5956. "нанесения паяльной пасты на печатную плату."
  5957. #: flatcamGUI/FlatCAMGUI.py:6361
  5958. msgid "Diameters of nozzle tools, separated by ','"
  5959. msgstr ""
  5960. #: flatcamGUI/FlatCAMGUI.py:6368
  5961. msgid "<b>New Nozzle Dia:</b>"
  5962. msgstr "<b>Новый диам. насадки:</b>"
  5963. #: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolSolderPaste.py:103
  5964. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  5965. msgstr ""
  5966. #: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolSolderPaste.py:166
  5967. msgid "Z Dispense Start:"
  5968. msgstr ""
  5969. #: flatcamGUI/FlatCAMGUI.py:6380 flatcamTools/ToolSolderPaste.py:168
  5970. msgid "The height (Z) when solder paste dispensing starts."
  5971. msgstr ""
  5972. #: flatcamGUI/FlatCAMGUI.py:6387 flatcamTools/ToolSolderPaste.py:174
  5973. msgid "Z Dispense:"
  5974. msgstr ""
  5975. #: flatcamGUI/FlatCAMGUI.py:6389 flatcamTools/ToolSolderPaste.py:176
  5976. msgid "The height (Z) when doing solder paste dispensing."
  5977. msgstr ""
  5978. #: flatcamGUI/FlatCAMGUI.py:6396 flatcamTools/ToolSolderPaste.py:183
  5979. msgid "Z Dispense Stop:"
  5980. msgstr ""
  5981. #: flatcamGUI/FlatCAMGUI.py:6398 flatcamTools/ToolSolderPaste.py:185
  5982. msgid "The height (Z) when solder paste dispensing stops."
  5983. msgstr ""
  5984. #: flatcamGUI/FlatCAMGUI.py:6405 flatcamTools/ToolSolderPaste.py:191
  5985. msgid "Z Travel:"
  5986. msgstr ""
  5987. #: flatcamGUI/FlatCAMGUI.py:6407 flatcamTools/ToolSolderPaste.py:193
  5988. msgid ""
  5989. "The height (Z) for travel between pads\n"
  5990. "(without dispensing solder paste)."
  5991. msgstr ""
  5992. #: flatcamGUI/FlatCAMGUI.py:6415 flatcamTools/ToolSolderPaste.py:200
  5993. msgid "Z Toolchange:"
  5994. msgstr ""
  5995. #: flatcamGUI/FlatCAMGUI.py:6417 flatcamTools/ToolSolderPaste.py:202
  5996. msgid "The height (Z) for tool (nozzle) change."
  5997. msgstr ""
  5998. #: flatcamGUI/FlatCAMGUI.py:6424 flatcamTools/ToolSolderPaste.py:208
  5999. msgid "XY Toolchange:"
  6000. msgstr ""
  6001. #: flatcamGUI/FlatCAMGUI.py:6426 flatcamTools/ToolSolderPaste.py:210
  6002. msgid ""
  6003. "The X,Y location for tool (nozzle) change.\n"
  6004. "The format is (x, y) where x and y are real numbers."
  6005. msgstr ""
  6006. #: flatcamGUI/FlatCAMGUI.py:6434 flatcamTools/ToolSolderPaste.py:217
  6007. msgid "Feedrate X-Y:"
  6008. msgstr "Скорость подачи X-Y:"
  6009. #: flatcamGUI/FlatCAMGUI.py:6436 flatcamTools/ToolSolderPaste.py:219
  6010. msgid "Feedrate (speed) while moving on the X-Y plane."
  6011. msgstr "Скорость подачи при движении по плоскости X-Y."
  6012. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolSolderPaste.py:225
  6013. msgid "Feedrate Z:"
  6014. msgstr "Скорость подачи Z:"
  6015. #: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolSolderPaste.py:227
  6016. msgid ""
  6017. "Feedrate (speed) while moving vertically\n"
  6018. "(on Z plane)."
  6019. msgstr ""
  6020. #: flatcamGUI/FlatCAMGUI.py:6453 flatcamTools/ToolSolderPaste.py:234
  6021. msgid "Feedrate Z Dispense:"
  6022. msgstr "Скорость подачи Z Диспенсер:"
  6023. #: flatcamGUI/FlatCAMGUI.py:6455 flatcamTools/ToolSolderPaste.py:236
  6024. msgid ""
  6025. "Feedrate (speed) while moving up vertically\n"
  6026. " to Dispense position (on Z plane)."
  6027. msgstr ""
  6028. #: flatcamGUI/FlatCAMGUI.py:6463 flatcamTools/ToolSolderPaste.py:243
  6029. msgid "Spindle Speed FWD:"
  6030. msgstr ""
  6031. #: flatcamGUI/FlatCAMGUI.py:6465 flatcamTools/ToolSolderPaste.py:245
  6032. msgid ""
  6033. "The dispenser speed while pushing solder paste\n"
  6034. "through the dispenser nozzle."
  6035. msgstr ""
  6036. #: flatcamGUI/FlatCAMGUI.py:6473 flatcamTools/ToolSolderPaste.py:252
  6037. msgid "Dwell FWD:"
  6038. msgstr ""
  6039. #: flatcamGUI/FlatCAMGUI.py:6475 flatcamTools/ToolSolderPaste.py:254
  6040. msgid "Pause after solder dispensing."
  6041. msgstr ""
  6042. #: flatcamGUI/FlatCAMGUI.py:6482 flatcamTools/ToolSolderPaste.py:260
  6043. msgid "Spindle Speed REV:"
  6044. msgstr ""
  6045. #: flatcamGUI/FlatCAMGUI.py:6484 flatcamTools/ToolSolderPaste.py:262
  6046. msgid ""
  6047. "The dispenser speed while retracting solder paste\n"
  6048. "through the dispenser nozzle."
  6049. msgstr ""
  6050. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolSolderPaste.py:269
  6051. msgid "Dwell REV:"
  6052. msgstr ""
  6053. #: flatcamGUI/FlatCAMGUI.py:6494 flatcamTools/ToolSolderPaste.py:271
  6054. msgid ""
  6055. "Pause after solder paste dispenser retracted,\n"
  6056. "to allow pressure equilibrium."
  6057. msgstr ""
  6058. #: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolSolderPaste.py:277
  6059. msgid "PostProcessors:"
  6060. msgstr ""
  6061. #: flatcamGUI/FlatCAMGUI.py:6503 flatcamTools/ToolSolderPaste.py:279
  6062. msgid "Files that control the GCode generation."
  6063. msgstr "Файлы контролирующие генерацию GCode."
  6064. #: flatcamGUI/FlatCAMGUI.py:6533 flatcamGUI/FlatCAMGUI.py:6539
  6065. msgid "Idle."
  6066. msgstr "Нет заданий."
  6067. #: flatcamGUI/FlatCAMGUI.py:6563
  6068. msgid "Application started ..."
  6069. msgstr "Запуск приложения ..."
  6070. #: flatcamGUI/FlatCAMGUI.py:6564
  6071. msgid "Hello!"
  6072. msgstr "Привет!"
  6073. #: flatcamGUI/ObjectUI.py:33
  6074. msgid "FlatCAM Object"
  6075. msgstr "Объект FlatCAM"
  6076. #: flatcamGUI/ObjectUI.py:58
  6077. msgid ""
  6078. "BASIC is suitable for a beginner. Many parameters\n"
  6079. "are hidden from the user in this mode.\n"
  6080. "ADVANCED mode will make available all parameters.\n"
  6081. "\n"
  6082. "To change the application LEVEL, go to:\n"
  6083. "Edit -> Preferences -> General and check:\n"
  6084. "'APP. LEVEL' radio button."
  6085. msgstr ""
  6086. #: flatcamGUI/ObjectUI.py:79
  6087. msgid "<b>Scale:</b>"
  6088. msgstr "<b>Масштаб:</b>"
  6089. #: flatcamGUI/ObjectUI.py:81
  6090. msgid "Change the size of the object."
  6091. msgstr "Изменение размера объекта."
  6092. #: flatcamGUI/ObjectUI.py:89
  6093. msgid "Factor:"
  6094. msgstr "Множитель:"
  6095. #: flatcamGUI/ObjectUI.py:91
  6096. msgid ""
  6097. "Factor by which to multiply\n"
  6098. "geometric features of this object."
  6099. msgstr ""
  6100. "Коэффециент увеличения\n"
  6101. "масштаба объекта."
  6102. #: flatcamGUI/ObjectUI.py:102
  6103. msgid "Perform scaling operation."
  6104. msgstr "Будет выполнена операция масштабирования."
  6105. #: flatcamGUI/ObjectUI.py:108
  6106. msgid "<b>Offset:</b>"
  6107. msgstr "<b>Смещение:</b>"
  6108. #: flatcamGUI/ObjectUI.py:110
  6109. msgid "Change the position of this object."
  6110. msgstr "Смена положения этого объекта."
  6111. #: flatcamGUI/ObjectUI.py:117
  6112. msgid "Vector:"
  6113. msgstr "Вектор:"
  6114. #: flatcamGUI/ObjectUI.py:119
  6115. msgid ""
  6116. "Amount by which to move the object\n"
  6117. "in the x and y axes in (x, y) format."
  6118. msgstr ""
  6119. "Расстояние на которое можно переместить объект\n"
  6120. "по осям X и Y в формате (x, y)."
  6121. #: flatcamGUI/ObjectUI.py:129
  6122. msgid "Perform the offset operation."
  6123. msgstr "Будет произведено смещение на заданное расстояние."
  6124. #: flatcamGUI/ObjectUI.py:143
  6125. msgid "Gerber Object"
  6126. msgstr "Объект Gerber"
  6127. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517
  6128. #: flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1372
  6129. msgid "<b>Name:</b>"
  6130. msgstr "<b>Имя:</b>"
  6131. #: flatcamGUI/ObjectUI.py:203
  6132. msgid ""
  6133. "Toggle the display of the Gerber Apertures Table.\n"
  6134. "When unchecked, it will delete all mark shapes\n"
  6135. "that are drawn on canvas."
  6136. msgstr ""
  6137. #: flatcamGUI/ObjectUI.py:214
  6138. msgid "Mark All"
  6139. msgstr "Отметить все"
  6140. #: flatcamGUI/ObjectUI.py:216
  6141. msgid ""
  6142. "When checked it will display all the apertures.\n"
  6143. "When unchecked, it will delete all mark shapes\n"
  6144. "that are drawn on canvas."
  6145. msgstr ""
  6146. #: flatcamGUI/ObjectUI.py:244
  6147. msgid "Mark the aperture instances on canvas."
  6148. msgstr ""
  6149. #: flatcamGUI/ObjectUI.py:262
  6150. msgid ""
  6151. "Diameter of the cutting tool.\n"
  6152. "If you want to have an isolation path\n"
  6153. "inside the actual shape of the Gerber\n"
  6154. "feature, use a negative value for\n"
  6155. "this parameter."
  6156. msgstr ""
  6157. #: flatcamGUI/ObjectUI.py:273
  6158. msgid "Passes:"
  6159. msgstr "Проходы:"
  6160. #: flatcamGUI/ObjectUI.py:307
  6161. msgid "Combine"
  6162. msgstr "Комбинации"
  6163. #: flatcamGUI/ObjectUI.py:323
  6164. msgid "<b>Generate Isolation Geometry:</b>"
  6165. msgstr ""
  6166. #: flatcamGUI/ObjectUI.py:325
  6167. msgid ""
  6168. "Create a Geometry object with toolpaths to cut \n"
  6169. "isolation outside, inside or on both sides of the\n"
  6170. "object. For a Gerber object outside means outside\n"
  6171. "of the Gerber feature and inside means inside of\n"
  6172. "the Gerber feature, if possible at all. This means\n"
  6173. "that only if the Gerber feature has openings inside, they\n"
  6174. "will be isolated. If what is wanted is to cut isolation\n"
  6175. "inside the actual Gerber feature, use a negative tool\n"
  6176. "diameter above."
  6177. msgstr ""
  6178. #: flatcamGUI/ObjectUI.py:344
  6179. msgid "FULL Geo"
  6180. msgstr ""
  6181. #: flatcamGUI/ObjectUI.py:346
  6182. msgid ""
  6183. "Create the Geometry Object\n"
  6184. "for isolation routing. It contains both\n"
  6185. "the interiors and exteriors geometry."
  6186. msgstr ""
  6187. #: flatcamGUI/ObjectUI.py:355
  6188. msgid "Ext Geo"
  6189. msgstr ""
  6190. #: flatcamGUI/ObjectUI.py:357
  6191. msgid ""
  6192. "Create the Geometry Object\n"
  6193. "for isolation routing containing\n"
  6194. "only the exteriors geometry."
  6195. msgstr ""
  6196. #: flatcamGUI/ObjectUI.py:364
  6197. msgid "Int Geo"
  6198. msgstr ""
  6199. #: flatcamGUI/ObjectUI.py:366
  6200. msgid ""
  6201. "Create the Geometry Object\n"
  6202. "for isolation routing containing\n"
  6203. "only the interiors geometry."
  6204. msgstr ""
  6205. #: flatcamGUI/ObjectUI.py:384
  6206. msgid "<b>Clear N-copper:</b>"
  6207. msgstr ""
  6208. #: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240
  6209. msgid ""
  6210. "Create the Geometry Object\n"
  6211. "for non-copper routing."
  6212. msgstr ""
  6213. "Создаёт объект геометрии\n"
  6214. "для безмедного полигона."
  6215. #: flatcamGUI/ObjectUI.py:400
  6216. msgid "<b>Board cutout:</b>"
  6217. msgstr "<b>Обрезка контура платы:</b>"
  6218. #: flatcamGUI/ObjectUI.py:408
  6219. msgid "Cutout Tool"
  6220. msgstr "Обрезка контура платы"
  6221. #: flatcamGUI/ObjectUI.py:410
  6222. msgid ""
  6223. "Generate the geometry for\n"
  6224. "the board cutout."
  6225. msgstr ""
  6226. "Будет создан объект геометрии\n"
  6227. "для обрезки контура."
  6228. #: flatcamGUI/ObjectUI.py:416
  6229. msgid "<b>Non-copper regions:</b>"
  6230. msgstr "<b>Безмедные полигоны:</b>"
  6231. #: flatcamGUI/ObjectUI.py:418
  6232. msgid ""
  6233. "Create polygons covering the\n"
  6234. "areas without copper on the PCB.\n"
  6235. "Equivalent to the inverse of this\n"
  6236. "object. Can be used to remove all\n"
  6237. "copper from a specified region."
  6238. msgstr ""
  6239. "Создание полигонов, охватывающих\n"
  6240. "участки без меди на печатной плате.\n"
  6241. "Обратный эквивалент этого\n"
  6242. "объекта может использоваться для удаления всей\n"
  6243. "меди из указанного региона."
  6244. #: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474
  6245. msgid "Rounded Geo"
  6246. msgstr ""
  6247. #: flatcamGUI/ObjectUI.py:445
  6248. msgid "Resulting geometry will have rounded corners."
  6249. msgstr ""
  6250. #: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484
  6251. #: flatcamTools/ToolCutOut.py:168 flatcamTools/ToolCutOut.py:188
  6252. #: flatcamTools/ToolCutOut.py:239 flatcamTools/ToolSolderPaste.py:127
  6253. msgid "Generate Geo"
  6254. msgstr ""
  6255. #: flatcamGUI/ObjectUI.py:456
  6256. msgid ""
  6257. "Create a geometry surrounding the Gerber object.\n"
  6258. "Square shape."
  6259. msgstr ""
  6260. #: flatcamGUI/ObjectUI.py:486
  6261. msgid "Generate the Geometry object."
  6262. msgstr "Будет создан объект геометрии."
  6263. #: flatcamGUI/ObjectUI.py:497
  6264. msgid "Excellon Object"
  6265. msgstr "Объект Excellon"
  6266. #: flatcamGUI/ObjectUI.py:508
  6267. msgid "Solid circles."
  6268. msgstr "Закрашенные круги."
  6269. #: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:858
  6270. msgid "<b>Tools Table</b>"
  6271. msgstr "<b>Таблица инструментов</b>"
  6272. #: flatcamGUI/ObjectUI.py:556
  6273. msgid "Drills"
  6274. msgstr "Свёрла"
  6275. #: flatcamGUI/ObjectUI.py:556
  6276. msgid "Slots"
  6277. msgstr "Ячейки"
  6278. #: flatcamGUI/ObjectUI.py:557
  6279. msgid "Offset Z"
  6280. msgstr "Смещение Z"
  6281. #: flatcamGUI/ObjectUI.py:561
  6282. msgid ""
  6283. "This is the Tool Number.\n"
  6284. "When ToolChange is checked, on toolchange event this value\n"
  6285. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6286. msgstr ""
  6287. #: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:904
  6288. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  6289. msgid ""
  6290. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6291. "is the cut width into the material."
  6292. msgstr ""
  6293. #: flatcamGUI/ObjectUI.py:568
  6294. msgid ""
  6295. "The number of Drill holes. Holes that are drilled with\n"
  6296. "a drill bit."
  6297. msgstr ""
  6298. #: flatcamGUI/ObjectUI.py:571
  6299. msgid ""
  6300. "The number of Slot holes. Holes that are created by\n"
  6301. "milling them with an endmill bit."
  6302. msgstr ""
  6303. #: flatcamGUI/ObjectUI.py:578
  6304. msgid "Toggle display of the drills for the current tool."
  6305. msgstr ""
  6306. #: flatcamGUI/ObjectUI.py:586
  6307. msgid ""
  6308. "Create a CNC Job object\n"
  6309. "for this drill object."
  6310. msgstr "Создание G-Code для объекта сверловки."
  6311. #: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1118
  6312. msgid "Tool change"
  6313. msgstr "Смена инструмента"
  6314. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1111
  6315. msgid "Tool change Z:"
  6316. msgstr "Смена инструмента Z:"
  6317. #: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1114
  6318. msgid ""
  6319. "Z-axis position (height) for\n"
  6320. "tool change."
  6321. msgstr "Отвод по оси Z для смены инструмента."
  6322. #: flatcamGUI/ObjectUI.py:636
  6323. msgid ""
  6324. "Tool height just before starting the work.\n"
  6325. "Delete the value if you don't need this feature."
  6326. msgstr ""
  6327. #: flatcamGUI/ObjectUI.py:646
  6328. msgid ""
  6329. "Z-axis position (height) for\n"
  6330. "the last move."
  6331. msgstr ""
  6332. #: flatcamGUI/ObjectUI.py:654
  6333. msgid "Feedrate (Plunge):"
  6334. msgstr "Скорость подачи (подвод):"
  6335. #: flatcamGUI/ObjectUI.py:656
  6336. msgid ""
  6337. "Tool speed while drilling\n"
  6338. "(in units per minute).\n"
  6339. "This is for linear move G01."
  6340. msgstr ""
  6341. #: flatcamGUI/ObjectUI.py:709
  6342. msgid ""
  6343. "The json file that dictates\n"
  6344. "gcode output."
  6345. msgstr ""
  6346. #: flatcamGUI/ObjectUI.py:741
  6347. msgid ""
  6348. "Select from the Tools Table above\n"
  6349. "the tools you want to include."
  6350. msgstr ""
  6351. #: flatcamGUI/ObjectUI.py:748
  6352. msgid "<b>Type: </b>"
  6353. msgstr "<b>Тип: </b>"
  6354. #: flatcamGUI/ObjectUI.py:750
  6355. msgid ""
  6356. "Choose what to use for GCode generation:\n"
  6357. "'Drills', 'Slots' or 'Both'.\n"
  6358. "When choosing 'Slots' or 'Both', slots will be\n"
  6359. "converted to a series of drills."
  6360. msgstr ""
  6361. #: flatcamGUI/ObjectUI.py:765
  6362. msgid "Create GCode"
  6363. msgstr "Создать GCode"
  6364. #: flatcamGUI/ObjectUI.py:767
  6365. msgid "Generate the CNC Job."
  6366. msgstr "Создание программы для ЧПУ."
  6367. #: flatcamGUI/ObjectUI.py:779
  6368. msgid ""
  6369. "Select from the Tools Table above\n"
  6370. " the hole dias that are to be milled."
  6371. msgstr ""
  6372. #: flatcamGUI/ObjectUI.py:786
  6373. msgid "Drills Tool dia:"
  6374. msgstr "Диам. свёрел:"
  6375. #: flatcamGUI/ObjectUI.py:793
  6376. msgid "Mill Drills Geo"
  6377. msgstr ""
  6378. #: flatcamGUI/ObjectUI.py:795
  6379. msgid ""
  6380. "Create the Geometry Object\n"
  6381. "for milling DRILLS toolpaths."
  6382. msgstr ""
  6383. #: flatcamGUI/ObjectUI.py:802
  6384. msgid "Slots Tool dia:"
  6385. msgstr ""
  6386. #: flatcamGUI/ObjectUI.py:809
  6387. msgid "Mill Slots Geo"
  6388. msgstr ""
  6389. #: flatcamGUI/ObjectUI.py:811
  6390. msgid ""
  6391. "Create the Geometry Object\n"
  6392. "for milling SLOTS toolpaths."
  6393. msgstr ""
  6394. #: flatcamGUI/ObjectUI.py:829
  6395. msgid "Geometry Object"
  6396. msgstr "Объект Geometry"
  6397. #: flatcamGUI/ObjectUI.py:860
  6398. msgid ""
  6399. "Tools in this Geometry object used for cutting.\n"
  6400. "The 'Offset' entry will set an offset for the cut.\n"
  6401. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6402. "'Type' entry is only informative and it allow to know the \n"
  6403. "intent of using the current tool. \n"
  6404. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6405. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6406. "ball(B), or V-Shaped(V). \n"
  6407. "When V-shaped is selected the 'Type' entry is automatically \n"
  6408. "set to Isolation, the CutZ parameter in the UI form is\n"
  6409. "grayed out and Cut Z is automatically calculated from the newly \n"
  6410. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  6411. msgstr ""
  6412. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452
  6413. msgid "Dia"
  6414. msgstr "Диам"
  6415. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1452
  6416. msgid "TT"
  6417. msgstr ""
  6418. #: flatcamGUI/ObjectUI.py:898
  6419. msgid ""
  6420. "This is the Tool Number.\n"
  6421. "When ToolChange is checked, on toolchange event this value\n"
  6422. "will be showed as a T1, T2 ... Tn"
  6423. msgstr ""
  6424. #: flatcamGUI/ObjectUI.py:909
  6425. msgid ""
  6426. "The value for the Offset can be:\n"
  6427. "- Path -> There is no offset, the tool cut will be done through the geometry "
  6428. "line.\n"
  6429. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  6430. "'pocket'.\n"
  6431. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  6432. msgstr ""
  6433. #: flatcamGUI/ObjectUI.py:916
  6434. msgid ""
  6435. "The (Operation) Type has only informative value. Usually the UI form "
  6436. "values \n"
  6437. "are choosed based on the operation type and this will serve as a reminder.\n"
  6438. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  6439. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  6440. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  6441. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  6442. "tip."
  6443. msgstr ""
  6444. #: flatcamGUI/ObjectUI.py:925
  6445. msgid ""
  6446. "The Tool Type (TT) can be:\n"
  6447. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  6448. "cut width in material\n"
  6449. "is exactly the tool diameter.\n"
  6450. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  6451. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  6452. "two additional UI form\n"
  6453. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  6454. "the Z-Cut parameter such\n"
  6455. "as the cut width into material will be equal with the value in the Tool "
  6456. "Diameter column of this table.\n"
  6457. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  6458. "as Isolation."
  6459. msgstr ""
  6460. #: flatcamGUI/ObjectUI.py:936
  6461. msgid ""
  6462. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  6463. "that holds the geometry\n"
  6464. "data into the tools. For those geometries, deleting the tool will delete the "
  6465. "geometry data also,\n"
  6466. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  6467. "plot on canvas\n"
  6468. "for the corresponding tool."
  6469. msgstr ""
  6470. #: flatcamGUI/ObjectUI.py:949
  6471. msgid "Tool Offset:"
  6472. msgstr ""
  6473. #: flatcamGUI/ObjectUI.py:952
  6474. msgid ""
  6475. "The value to offset the cut when \n"
  6476. "the Offset type selected is 'Offset'.\n"
  6477. "The value can be positive for 'outside'\n"
  6478. "cut and negative for 'inside' cut."
  6479. msgstr ""
  6480. #: flatcamGUI/ObjectUI.py:975
  6481. msgid "<b>Tool Dia:</b>"
  6482. msgstr "<b>Диам. инструмента:</b>"
  6483. #: flatcamGUI/ObjectUI.py:994 flatcamTools/ToolNonCopperClear.py:136
  6484. #: flatcamTools/ToolPaint.py:133
  6485. msgid ""
  6486. "Add a new tool to the Tool Table\n"
  6487. "with the diameter specified above."
  6488. msgstr ""
  6489. #: flatcamGUI/ObjectUI.py:1002
  6490. msgid ""
  6491. "Copy a selection of tools in the Tool Table\n"
  6492. "by first selecting a row in the Tool Table."
  6493. msgstr ""
  6494. #: flatcamGUI/ObjectUI.py:1010
  6495. msgid ""
  6496. "Delete a selection of tools in the Tool Table\n"
  6497. "by first selecting a row in the Tool Table."
  6498. msgstr ""
  6499. #: flatcamGUI/ObjectUI.py:1026
  6500. msgid "<b>Tool Data</b>"
  6501. msgstr "<b>Данные инструмента</b>"
  6502. #: flatcamGUI/ObjectUI.py:1029
  6503. msgid ""
  6504. "The data used for creating GCode.\n"
  6505. "Each tool store it's own set of such data."
  6506. msgstr ""
  6507. #: flatcamGUI/ObjectUI.py:1039
  6508. msgid "V-Tip Dia:"
  6509. msgstr ""
  6510. #: flatcamGUI/ObjectUI.py:1042
  6511. msgid "The tip diameter for V-Shape Tool"
  6512. msgstr ""
  6513. #: flatcamGUI/ObjectUI.py:1050
  6514. msgid "V-Tip Angle:"
  6515. msgstr ""
  6516. #: flatcamGUI/ObjectUI.py:1053
  6517. msgid ""
  6518. "The tip angle for V-Shape Tool.\n"
  6519. "In degree."
  6520. msgstr ""
  6521. #: flatcamGUI/ObjectUI.py:1074
  6522. msgid "Multi-Depth:"
  6523. msgstr "Мультипроход:"
  6524. #: flatcamGUI/ObjectUI.py:1077
  6525. msgid ""
  6526. "Use multiple passes to limit\n"
  6527. "the cut depth in each pass. Will\n"
  6528. "cut multiple times until Cut Z is\n"
  6529. "reached.\n"
  6530. "To the right, input the depth of \n"
  6531. "each pass (positive value)."
  6532. msgstr ""
  6533. #: flatcamGUI/ObjectUI.py:1090
  6534. msgid "Depth of each pass (positive)."
  6535. msgstr "Глубина каждого прохода (положительный)."
  6536. #: flatcamGUI/ObjectUI.py:1121
  6537. msgid ""
  6538. "Include tool-change sequence\n"
  6539. "in the Machine Code (Pause for tool change)."
  6540. msgstr ""
  6541. #: flatcamGUI/ObjectUI.py:1147
  6542. msgid ""
  6543. "This is the height (Z) at which the CNC\n"
  6544. "will go as the last move."
  6545. msgstr ""
  6546. #: flatcamGUI/ObjectUI.py:1168
  6547. msgid "Feed Rate Z (Plunge):"
  6548. msgstr "Скорость подачи Z (подвод):"
  6549. #: flatcamGUI/ObjectUI.py:1171
  6550. msgid ""
  6551. "Cutting speed in the Z\n"
  6552. "plane in units per minute"
  6553. msgstr ""
  6554. #: flatcamGUI/ObjectUI.py:1180
  6555. msgid "Feed Rate Rapids:"
  6556. msgstr "Скорость подачи:"
  6557. #: flatcamGUI/ObjectUI.py:1183
  6558. msgid ""
  6559. "Cutting speed in the XY\n"
  6560. "plane in units per minute\n"
  6561. "(in units per minute).\n"
  6562. "This is for the rapid move G00.\n"
  6563. "It is useful only for Marlin,\n"
  6564. "ignore for any other cases."
  6565. msgstr ""
  6566. #: flatcamGUI/ObjectUI.py:1199
  6567. msgid "Cut over 1st pt"
  6568. msgstr ""
  6569. #: flatcamGUI/ObjectUI.py:1214
  6570. msgid ""
  6571. "Speed of the spindle in RPM (optional).\n"
  6572. "If LASER postprocessor is used,\n"
  6573. "this value is the power of laser."
  6574. msgstr ""
  6575. #: flatcamGUI/ObjectUI.py:1243
  6576. msgid "PostProcessor:"
  6577. msgstr "Постпроцессор:"
  6578. #: flatcamGUI/ObjectUI.py:1246
  6579. msgid ""
  6580. "The Postprocessor file that dictates\n"
  6581. "the Machine Code (like GCode, RML, HPGL) output."
  6582. msgstr ""
  6583. #: flatcamGUI/ObjectUI.py:1284
  6584. msgid ""
  6585. "Add at least one tool in the tool-table.\n"
  6586. "Click the header to select all, or Ctrl + LMB\n"
  6587. "for custom selection of tools."
  6588. msgstr ""
  6589. #: flatcamGUI/ObjectUI.py:1291
  6590. msgid "Generate"
  6591. msgstr "Создать"
  6592. #: flatcamGUI/ObjectUI.py:1294
  6593. msgid "Generate the CNC Job object."
  6594. msgstr "Будет создан объект программы для ЧПУ."
  6595. #: flatcamGUI/ObjectUI.py:1302
  6596. msgid "<b>Paint Area:</b>"
  6597. msgstr "<b>Область рисования:</b>"
  6598. #: flatcamGUI/ObjectUI.py:1317
  6599. msgid "Launch Paint Tool in Tools Tab."
  6600. msgstr "Запускает инструмент рисования во вкладке Инструменты."
  6601. #: flatcamGUI/ObjectUI.py:1334
  6602. msgid "CNC Job Object"
  6603. msgstr "Объект программы для ЧПУ"
  6604. #: flatcamGUI/ObjectUI.py:1353
  6605. msgid "<b>Plot kind:</b>"
  6606. msgstr "<b>Plot kind:</b>"
  6607. #: flatcamGUI/ObjectUI.py:1378
  6608. msgid "<b>Travelled dist.:</b>"
  6609. msgstr "<b>Расст. прохода:</b>"
  6610. #: flatcamGUI/ObjectUI.py:1381 flatcamGUI/ObjectUI.py:1388
  6611. msgid ""
  6612. "This is the total travelled distance on X-Y plane.\n"
  6613. "In current units."
  6614. msgstr ""
  6615. #: flatcamGUI/ObjectUI.py:1416
  6616. msgid "<b>CNC Tools Table</b>"
  6617. msgstr ""
  6618. #: flatcamGUI/ObjectUI.py:1419
  6619. msgid ""
  6620. "Tools in this CNCJob object used for cutting.\n"
  6621. "The tool diameter is used for plotting on canvas.\n"
  6622. "The 'Offset' entry will set an offset for the cut.\n"
  6623. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6624. "'Type' entry is only informative and it allow to know the \n"
  6625. "intent of using the current tool. \n"
  6626. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6627. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  6628. "ball(B), or V-Shaped(V)."
  6629. msgstr ""
  6630. #: flatcamGUI/ObjectUI.py:1453
  6631. msgid "P"
  6632. msgstr ""
  6633. #: flatcamGUI/ObjectUI.py:1459
  6634. msgid "Update Plot"
  6635. msgstr "Обновить контур"
  6636. #: flatcamGUI/ObjectUI.py:1461
  6637. msgid "Update the plot."
  6638. msgstr "Обновление контура."
  6639. #: flatcamGUI/ObjectUI.py:1468
  6640. msgid "<b>Export CNC Code:</b>"
  6641. msgstr "<b>Экспорт CNC Code:</b>"
  6642. #: flatcamGUI/ObjectUI.py:1476
  6643. msgid "Prepend to CNC Code:"
  6644. msgstr ""
  6645. #: flatcamGUI/ObjectUI.py:1479
  6646. msgid ""
  6647. "Type here any G-Code commands you would\n"
  6648. "like to add to the beginning of the generated file."
  6649. msgstr ""
  6650. "Введите здесь любые G-Code команды, которые вы\n"
  6651. "хотели бы добавить в начале генерируемого файла."
  6652. #: flatcamGUI/ObjectUI.py:1489
  6653. msgid "Append to CNC Code"
  6654. msgstr "Добавить в CNC Code"
  6655. #: flatcamGUI/ObjectUI.py:1513
  6656. msgid ""
  6657. "Type here any G-Code commands you would\n"
  6658. "like to be executed when Toolchange event is encountered.\n"
  6659. "This will constitute a Custom Toolchange GCode,\n"
  6660. "or a Toolchange Macro.\n"
  6661. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6662. "\n"
  6663. "WARNING: it can be used only with a postprocessor file\n"
  6664. "that has 'toolchange_custom' in it's name and this is built\n"
  6665. "having as template the 'Toolchange Custom' posprocessor file."
  6666. msgstr ""
  6667. #: flatcamGUI/ObjectUI.py:1561
  6668. msgid "z_cut = depth where to cut"
  6669. msgstr ""
  6670. #: flatcamGUI/ObjectUI.py:1562
  6671. msgid "z_move = height where to travel"
  6672. msgstr ""
  6673. #: flatcamGUI/ObjectUI.py:1580
  6674. msgid "View CNC Code"
  6675. msgstr ""
  6676. #: flatcamGUI/ObjectUI.py:1583
  6677. msgid ""
  6678. "Opens TAB to view/modify/print G-Code\n"
  6679. "file."
  6680. msgstr ""
  6681. #: flatcamGUI/ObjectUI.py:1589
  6682. msgid "Save CNC Code"
  6683. msgstr "Сохранить код ЧПУ"
  6684. #: flatcamGUI/ObjectUI.py:1592
  6685. msgid ""
  6686. "Opens dialog to save G-Code\n"
  6687. "file."
  6688. msgstr ""
  6689. "Открывает диалоговое окно для сохранения\n"
  6690. "файла G-Code."
  6691. #: flatcamTools/ToolCalculators.py:24
  6692. msgid "Calculators"
  6693. msgstr "Калькуляторы"
  6694. #: flatcamTools/ToolCalculators.py:25
  6695. msgid "V-Shape Tool Calculator"
  6696. msgstr ""
  6697. #: flatcamTools/ToolCalculators.py:26
  6698. msgid "Units Calculator"
  6699. msgstr "Калькулятор единиц"
  6700. #: flatcamTools/ToolCalculators.py:27
  6701. msgid "ElectroPlating Calculator"
  6702. msgstr "Калькулятор электронных плат"
  6703. #: flatcamTools/ToolCalculators.py:68
  6704. msgid "Here you enter the value to be converted from INCH to MM"
  6705. msgstr "Здесь вы вводите значение, которое будет конвертировано из ДЮЙМОВ в MM"
  6706. #: flatcamTools/ToolCalculators.py:73
  6707. msgid "Here you enter the value to be converted from MM to INCH"
  6708. msgstr "Здесь вы вводите значение, которое будет конвертировано из MM в ДЮЙМЫ"
  6709. #: flatcamTools/ToolCalculators.py:98
  6710. msgid ""
  6711. "This is the diameter of the tool tip.\n"
  6712. "The manufacturer specifies it."
  6713. msgstr ""
  6714. #: flatcamTools/ToolCalculators.py:101
  6715. msgid "Tip Angle:"
  6716. msgstr "Угол наклона:"
  6717. #: flatcamTools/ToolCalculators.py:105
  6718. msgid ""
  6719. "This is the angle of the tip of the tool.\n"
  6720. "It is specified by manufacturer."
  6721. msgstr ""
  6722. #: flatcamTools/ToolCalculators.py:112
  6723. msgid ""
  6724. "This is the depth to cut into the material.\n"
  6725. "In the CNCJob is the CutZ parameter."
  6726. msgstr ""
  6727. #: flatcamTools/ToolCalculators.py:115
  6728. msgid "Tool Diameter:"
  6729. msgstr ""
  6730. #: flatcamTools/ToolCalculators.py:119
  6731. msgid ""
  6732. "This is the tool diameter to be entered into\n"
  6733. "FlatCAM Gerber section.\n"
  6734. "In the CNCJob section it is called >Tool dia<."
  6735. msgstr ""
  6736. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  6737. msgid "Calculate"
  6738. msgstr "Рассчитать"
  6739. #: flatcamTools/ToolCalculators.py:134
  6740. msgid ""
  6741. "Calculate either the Cut Z or the effective tool diameter,\n"
  6742. " depending on which is desired and which is known. "
  6743. msgstr ""
  6744. #: flatcamTools/ToolCalculators.py:190
  6745. msgid "Current Value:"
  6746. msgstr "Текущее значение:"
  6747. #: flatcamTools/ToolCalculators.py:194
  6748. msgid ""
  6749. "This is the current intensity value\n"
  6750. "to be set on the Power Supply. In Amps."
  6751. msgstr ""
  6752. #: flatcamTools/ToolCalculators.py:198
  6753. msgid "Time:"
  6754. msgstr "Время:"
  6755. #: flatcamTools/ToolCalculators.py:202
  6756. msgid ""
  6757. "This is the calculated time required for the procedure.\n"
  6758. "In minutes."
  6759. msgstr ""
  6760. #: flatcamTools/ToolCalculators.py:217
  6761. msgid ""
  6762. "Calculate the current intensity value and the procedure time,\n"
  6763. " depending on the parameters above"
  6764. msgstr ""
  6765. #: flatcamTools/ToolCutOut.py:17
  6766. msgid "Cutout PCB"
  6767. msgstr "Обрезка контура платы"
  6768. #: flatcamTools/ToolCutOut.py:53
  6769. msgid "Obj Type:"
  6770. msgstr ""
  6771. #: flatcamTools/ToolCutOut.py:55
  6772. msgid ""
  6773. "Specify the type of object to be cutout.\n"
  6774. "It can be of type: Gerber or Geometry.\n"
  6775. "What is selected here will dictate the kind\n"
  6776. "of objects that will populate the 'Object' combobox."
  6777. msgstr ""
  6778. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  6779. msgid "Object:"
  6780. msgstr ""
  6781. #: flatcamTools/ToolCutOut.py:71
  6782. msgid "Object to be cutout. "
  6783. msgstr ""
  6784. #: flatcamTools/ToolCutOut.py:79
  6785. msgid ""
  6786. "Diameter of the tool used to cutout\n"
  6787. "the PCB shape out of the surrounding material."
  6788. msgstr ""
  6789. #: flatcamTools/ToolCutOut.py:88
  6790. msgid ""
  6791. "Margin over bounds. A positive value here\n"
  6792. "will make the cutout of the PCB further from\n"
  6793. "the actual PCB border"
  6794. msgstr ""
  6795. #: flatcamTools/ToolCutOut.py:98
  6796. msgid ""
  6797. "The size of the bridge gaps in the cutout\n"
  6798. "used to keep the board connected to\n"
  6799. "the surrounding material (the one \n"
  6800. "from which the PCB is cutout)."
  6801. msgstr ""
  6802. #: flatcamTools/ToolCutOut.py:117
  6803. msgid ""
  6804. "Create a convex shape surrounding the entire PCB.\n"
  6805. "Used only if the source object type is Gerber."
  6806. msgstr ""
  6807. #: flatcamTools/ToolCutOut.py:123
  6808. msgid "A. Automatic Bridge Gaps"
  6809. msgstr ""
  6810. #: flatcamTools/ToolCutOut.py:125
  6811. msgid "This section handle creation of automatic bridge gaps."
  6812. msgstr ""
  6813. #: flatcamTools/ToolCutOut.py:136
  6814. msgid ""
  6815. "Number of gaps used for the Automatic cutout.\n"
  6816. "There can be maximum 8 bridges/gaps.\n"
  6817. "The choices are:\n"
  6818. "- lr - left + right\n"
  6819. "- tb - top + bottom\n"
  6820. "- 4 - left + right +top + bottom\n"
  6821. "- 2lr - 2*left + 2*right\n"
  6822. "- 2tb - 2*top + 2*bottom\n"
  6823. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6824. msgstr ""
  6825. #: flatcamTools/ToolCutOut.py:159
  6826. msgid "FreeForm:"
  6827. msgstr ""
  6828. #: flatcamTools/ToolCutOut.py:161
  6829. msgid ""
  6830. "The cutout shape can be of ny shape.\n"
  6831. "Useful when the PCB has a non-rectangular shape."
  6832. msgstr ""
  6833. #: flatcamTools/ToolCutOut.py:170
  6834. msgid ""
  6835. "Cutout the selected object.\n"
  6836. "The cutout shape can be of any shape.\n"
  6837. "Useful when the PCB has a non-rectangular shape."
  6838. msgstr ""
  6839. #: flatcamTools/ToolCutOut.py:179
  6840. msgid "Rectangular:"
  6841. msgstr ""
  6842. #: flatcamTools/ToolCutOut.py:181
  6843. msgid ""
  6844. "The resulting cutout shape is\n"
  6845. "always a rectangle shape and it will be\n"
  6846. "the bounding box of the Object."
  6847. msgstr ""
  6848. #: flatcamTools/ToolCutOut.py:190
  6849. msgid ""
  6850. "Cutout the selected object.\n"
  6851. "The resulting cutout shape is\n"
  6852. "always a rectangle shape and it will be\n"
  6853. "the bounding box of the Object."
  6854. msgstr ""
  6855. #: flatcamTools/ToolCutOut.py:198
  6856. msgid "B. Manual Bridge Gaps"
  6857. msgstr ""
  6858. #: flatcamTools/ToolCutOut.py:200
  6859. msgid ""
  6860. "This section handle creation of manual bridge gaps.\n"
  6861. "This is done by mouse clicking on the perimeter of the\n"
  6862. "Geometry object that is used as a cutout object. "
  6863. msgstr ""
  6864. #: flatcamTools/ToolCutOut.py:216
  6865. msgid "Geo Obj:"
  6866. msgstr ""
  6867. #: flatcamTools/ToolCutOut.py:218
  6868. msgid "Geometry object used to create the manual cutout."
  6869. msgstr ""
  6870. #: flatcamTools/ToolCutOut.py:229
  6871. msgid "Manual Geo:"
  6872. msgstr ""
  6873. #: flatcamTools/ToolCutOut.py:231 flatcamTools/ToolCutOut.py:241
  6874. msgid ""
  6875. "If the object to be cutout is a Gerber\n"
  6876. "first create a Geometry that surrounds it,\n"
  6877. "to be used as the cutout, if one doesn't exist yet.\n"
  6878. "Select the source Gerber file in the top object combobox."
  6879. msgstr ""
  6880. #: flatcamTools/ToolCutOut.py:251
  6881. msgid "Manual Add Bridge Gaps:"
  6882. msgstr ""
  6883. #: flatcamTools/ToolCutOut.py:253
  6884. msgid ""
  6885. "Use the left mouse button (LMB) click\n"
  6886. "to create a bridge gap to separate the PCB from\n"
  6887. "the surrounding material."
  6888. msgstr ""
  6889. #: flatcamTools/ToolCutOut.py:260
  6890. msgid "Generate Gap"
  6891. msgstr ""
  6892. #: flatcamTools/ToolCutOut.py:262
  6893. msgid ""
  6894. "Use the left mouse button (LMB) click\n"
  6895. "to create a bridge gap to separate the PCB from\n"
  6896. "the surrounding material.\n"
  6897. "The LMB click has to be done on the perimeter of\n"
  6898. "the Geometry object used as a cutout geometry."
  6899. msgstr ""
  6900. #: flatcamTools/ToolCutOut.py:341 flatcamTools/ToolCutOut.py:499
  6901. #: flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764
  6902. #: flatcamTools/ToolPanelize.py:352 flatcamTools/ToolPanelize.py:366
  6903. #: flatcamTools/ToolSub.py:237 flatcamTools/ToolSub.py:249
  6904. #: flatcamTools/ToolSub.py:428 flatcamTools/ToolSub.py:440
  6905. #, python-format
  6906. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  6907. msgstr ""
  6908. #: flatcamTools/ToolCutOut.py:345
  6909. msgid ""
  6910. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  6911. "Select one and try again."
  6912. msgstr ""
  6913. #: flatcamTools/ToolCutOut.py:360
  6914. msgid ""
  6915. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  6916. "number."
  6917. msgstr ""
  6918. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:527
  6919. #: flatcamTools/ToolCutOut.py:771
  6920. msgid ""
  6921. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  6922. msgstr ""
  6923. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:538
  6924. #: flatcamTools/ToolCutOut.py:666
  6925. msgid ""
  6926. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  6927. msgstr ""
  6928. #: flatcamTools/ToolCutOut.py:388 flatcamTools/ToolCutOut.py:545
  6929. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  6930. msgstr ""
  6931. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:549
  6932. msgid ""
  6933. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  6934. "or 8. Fill in a correct value and retry. "
  6935. msgstr ""
  6936. #: flatcamTools/ToolCutOut.py:397 flatcamTools/ToolCutOut.py:554
  6937. msgid ""
  6938. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  6939. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  6940. "Geometry,\n"
  6941. "and after that perform Cutout."
  6942. msgstr ""
  6943. #: flatcamTools/ToolCutOut.py:483 flatcamTools/ToolCutOut.py:636
  6944. msgid "[success] Any form CutOut operation finished."
  6945. msgstr ""
  6946. #: flatcamTools/ToolCutOut.py:503 flatcamTools/ToolPaint.py:768
  6947. #: flatcamTools/ToolPanelize.py:358
  6948. #, python-format
  6949. msgid "[ERROR_NOTCL] Object not found: %s"
  6950. msgstr ""
  6951. #: flatcamTools/ToolCutOut.py:517 flatcamTools/ToolCutOut.py:656
  6952. #: flatcamTools/ToolCutOut.py:761
  6953. msgid ""
  6954. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  6955. "number."
  6956. msgstr ""
  6957. #: flatcamTools/ToolCutOut.py:641
  6958. msgid ""
  6959. "Click on the selected geometry object perimeter to create a bridge gap ..."
  6960. msgstr ""
  6961. #: flatcamTools/ToolCutOut.py:682
  6962. msgid "Making manual bridge gap..."
  6963. msgstr ""
  6964. #: flatcamTools/ToolCutOut.py:705
  6965. #, python-format
  6966. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  6967. msgstr ""
  6968. #: flatcamTools/ToolCutOut.py:709
  6969. #, python-format
  6970. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  6971. msgstr ""
  6972. #: flatcamTools/ToolCutOut.py:719
  6973. msgid "[success] Added manual Bridge Gap."
  6974. msgstr ""
  6975. #: flatcamTools/ToolCutOut.py:736
  6976. #, python-format
  6977. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  6978. msgstr ""
  6979. #: flatcamTools/ToolCutOut.py:740
  6980. msgid ""
  6981. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  6982. "Select one and try again."
  6983. msgstr ""
  6984. #: flatcamTools/ToolCutOut.py:745
  6985. msgid ""
  6986. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  6987. "Select a Gerber file and try again."
  6988. msgstr ""
  6989. #: flatcamTools/ToolDblSided.py:18
  6990. msgid "2-Sided PCB"
  6991. msgstr "2-х сторонняя плата"
  6992. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  6993. #: flatcamTools/ToolDblSided.py:100
  6994. msgid "Mirror"
  6995. msgstr "Зеркалировать"
  6996. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  6997. #: flatcamTools/ToolDblSided.py:102
  6998. msgid ""
  6999. "Mirrors (flips) the specified object around \n"
  7000. "the specified axis. Does not create a new \n"
  7001. "object, but modifies it."
  7002. msgstr ""
  7003. "Зеркалирует (переворачивает) указанный объект\n"
  7004. "вокруг заданной оси. Не создаёт новый объект,\n"
  7005. "но изменяет его."
  7006. #: flatcamTools/ToolDblSided.py:73
  7007. msgid "Excellon Object to be mirrored."
  7008. msgstr "Объект Excellon для отражения."
  7009. #: flatcamTools/ToolDblSided.py:97
  7010. msgid "Geometry Obj to be mirrored."
  7011. msgstr ""
  7012. #: flatcamTools/ToolDblSided.py:135
  7013. msgid ""
  7014. "The axis should pass through a <b>point</b> or cut\n"
  7015. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7016. "the center."
  7017. msgstr ""
  7018. #: flatcamTools/ToolDblSided.py:152
  7019. msgid "Point/Box Reference:"
  7020. msgstr ""
  7021. #: flatcamTools/ToolDblSided.py:154
  7022. msgid ""
  7023. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7024. "the mirroring axis passes.\n"
  7025. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7026. "Geo).\n"
  7027. "Through the center of this object pass the mirroring axis selected above."
  7028. msgstr ""
  7029. #: flatcamTools/ToolDblSided.py:162
  7030. msgid ""
  7031. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7032. "axis \n"
  7033. " selected in 'MIRROR AXIS' pass.\n"
  7034. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7035. "and left mouse button click on canvas or you can enter the coords manually."
  7036. msgstr ""
  7037. #: flatcamTools/ToolDblSided.py:182
  7038. msgid "Gerber Reference Box Object"
  7039. msgstr ""
  7040. #: flatcamTools/ToolDblSided.py:183
  7041. msgid "Excellon Reference Box Object"
  7042. msgstr ""
  7043. #: flatcamTools/ToolDblSided.py:184
  7044. msgid "Geometry Reference Box Object"
  7045. msgstr ""
  7046. #: flatcamTools/ToolDblSided.py:193
  7047. msgid "Alignment Drill Coordinates:"
  7048. msgstr "Координаты выравнивающего отверстия:"
  7049. #: flatcamTools/ToolDblSided.py:195
  7050. msgid ""
  7051. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7052. "each set of (x, y) coordinates\n"
  7053. "entered here, a pair of drills will be created:\n"
  7054. "\n"
  7055. "- one drill at the coordinates from the field\n"
  7056. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7057. "Axis'."
  7058. msgstr ""
  7059. #: flatcamTools/ToolDblSided.py:210
  7060. msgid ""
  7061. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7062. "on one side of the mirror axis.\n"
  7063. "\n"
  7064. "The coordinates set can be obtained:\n"
  7065. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7066. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7067. "field.\n"
  7068. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7069. "field and click Paste.\n"
  7070. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7071. msgstr ""
  7072. #: flatcamTools/ToolDblSided.py:224
  7073. msgid "Alignment Drill Diameter"
  7074. msgstr "Диаметр выравнивающего отверстия"
  7075. #: flatcamTools/ToolDblSided.py:247
  7076. msgid "Create Excellon Object"
  7077. msgstr "Создать объект Excellon"
  7078. #: flatcamTools/ToolDblSided.py:249
  7079. msgid ""
  7080. "Creates an Excellon Object containing the\n"
  7081. "specified alignment holes and their mirror\n"
  7082. "images."
  7083. msgstr ""
  7084. "Создаёт объект Excellon, содержащий\n"
  7085. "контрольные отверстия и их\n"
  7086. "зеркальные изображения."
  7087. #: flatcamTools/ToolDblSided.py:255
  7088. msgid "Reset"
  7089. msgstr "Сбросить"
  7090. #: flatcamTools/ToolDblSided.py:257
  7091. msgid "Resets all the fields."
  7092. msgstr ""
  7093. #: flatcamTools/ToolDblSided.py:302
  7094. msgid "2-Sided Tool"
  7095. msgstr "Инструмент 2-х сторонних плат"
  7096. #: flatcamTools/ToolDblSided.py:327
  7097. msgid ""
  7098. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  7099. "missing. Add them and retry."
  7100. msgstr ""
  7101. #: flatcamTools/ToolDblSided.py:346
  7102. msgid ""
  7103. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7104. msgstr ""
  7105. #: flatcamTools/ToolDblSided.py:368
  7106. msgid ""
  7107. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  7108. "retry."
  7109. msgstr ""
  7110. #: flatcamTools/ToolDblSided.py:375
  7111. msgid ""
  7112. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  7113. "and retry."
  7114. msgstr ""
  7115. #: flatcamTools/ToolDblSided.py:397
  7116. msgid "[success] Excellon object with alignment drills created..."
  7117. msgstr ""
  7118. #: flatcamTools/ToolDblSided.py:406
  7119. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7120. msgstr ""
  7121. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  7122. #: flatcamTools/ToolDblSided.py:497
  7123. msgid ""
  7124. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7125. msgstr ""
  7126. #: flatcamTools/ToolDblSided.py:420
  7127. msgid ""
  7128. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  7129. "mirroring reference."
  7130. msgstr ""
  7131. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  7132. #: flatcamTools/ToolDblSided.py:511
  7133. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  7134. msgstr ""
  7135. #: flatcamTools/ToolDblSided.py:440
  7136. #, python-format
  7137. msgid "[success] Gerber %s was mirrored..."
  7138. msgstr ""
  7139. #: flatcamTools/ToolDblSided.py:449
  7140. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7141. msgstr ""
  7142. #: flatcamTools/ToolDblSided.py:464
  7143. msgid ""
  7144. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  7145. "coords and try again ..."
  7146. msgstr ""
  7147. #: flatcamTools/ToolDblSided.py:484
  7148. #, python-format
  7149. msgid "[success] Excellon %s was mirrored..."
  7150. msgstr ""
  7151. #: flatcamTools/ToolDblSided.py:493
  7152. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7153. msgstr ""
  7154. #: flatcamTools/ToolDblSided.py:521
  7155. #, python-format
  7156. msgid "[success] Geometry %s was mirrored..."
  7157. msgstr ""
  7158. #: flatcamTools/ToolFilm.py:25
  7159. msgid "Film PCB"
  7160. msgstr ""
  7161. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7162. #: flatcamTools/ToolPanelize.py:56
  7163. msgid "Object Type:"
  7164. msgstr ""
  7165. #: flatcamTools/ToolFilm.py:58
  7166. msgid ""
  7167. "Specify the type of object for which to create the film.\n"
  7168. "The object can be of type: Gerber or Geometry.\n"
  7169. "The selection here decide the type of objects that will be\n"
  7170. "in the Film Object combobox."
  7171. msgstr ""
  7172. #: flatcamTools/ToolFilm.py:71
  7173. msgid "Film Object:"
  7174. msgstr ""
  7175. #: flatcamTools/ToolFilm.py:73
  7176. msgid "Object for which to create the film."
  7177. msgstr ""
  7178. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  7179. msgid "Box Type:"
  7180. msgstr ""
  7181. #: flatcamTools/ToolFilm.py:91
  7182. msgid ""
  7183. "Specify the type of object to be used as an container for\n"
  7184. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7185. "the type of objects that will be\n"
  7186. "in the Box Object combobox."
  7187. msgstr ""
  7188. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  7189. msgid "Box Object:"
  7190. msgstr ""
  7191. #: flatcamTools/ToolFilm.py:106
  7192. msgid ""
  7193. "The actual object that is used a container for the\n"
  7194. " selected object for which we create the film.\n"
  7195. "Usually it is the PCB outline but it can be also the\n"
  7196. "same object for which the film is created."
  7197. msgstr ""
  7198. #: flatcamTools/ToolFilm.py:157
  7199. msgid "Save Film"
  7200. msgstr ""
  7201. #: flatcamTools/ToolFilm.py:159
  7202. msgid ""
  7203. "Create a Film for the selected object, within\n"
  7204. "the specified box. Does not create a new \n"
  7205. " FlatCAM object, but directly save it in SVG format\n"
  7206. "which can be opened with Inkscape."
  7207. msgstr ""
  7208. #: flatcamTools/ToolFilm.py:225
  7209. msgid ""
  7210. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7211. msgstr ""
  7212. #: flatcamTools/ToolFilm.py:231
  7213. msgid ""
  7214. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7215. msgstr ""
  7216. #: flatcamTools/ToolFilm.py:255
  7217. msgid "Generating Film ..."
  7218. msgstr ""
  7219. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  7220. msgid "Export SVG positive"
  7221. msgstr "Экспорт позитива SVG"
  7222. #: flatcamTools/ToolFilm.py:269
  7223. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  7224. msgstr ""
  7225. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  7226. msgid "Export SVG negative"
  7227. msgstr "Экспорт негатива SVG"
  7228. #: flatcamTools/ToolFilm.py:285
  7229. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  7230. msgstr ""
  7231. #: flatcamTools/ToolImage.py:25
  7232. msgid "Image as Object"
  7233. msgstr ""
  7234. #: flatcamTools/ToolImage.py:31
  7235. msgid "Image to PCB"
  7236. msgstr ""
  7237. #: flatcamTools/ToolImage.py:55
  7238. msgid ""
  7239. "Specify the type of object to create from the image.\n"
  7240. "It can be of type: Gerber or Geometry."
  7241. msgstr ""
  7242. #: flatcamTools/ToolImage.py:63
  7243. msgid "DPI value:"
  7244. msgstr "Значение DPI:"
  7245. #: flatcamTools/ToolImage.py:65
  7246. msgid "Specify a DPI value for the image."
  7247. msgstr ""
  7248. #: flatcamTools/ToolImage.py:72
  7249. msgid "Level of detail"
  7250. msgstr "Уровень детализации"
  7251. #: flatcamTools/ToolImage.py:81
  7252. msgid "Image type"
  7253. msgstr ""
  7254. #: flatcamTools/ToolImage.py:83
  7255. msgid ""
  7256. "Choose a method for the image interpretation.\n"
  7257. "B/W means a black & white image. Color means a colored image."
  7258. msgstr ""
  7259. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7260. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7261. msgid "Mask value"
  7262. msgstr "Значение маски"
  7263. #: flatcamTools/ToolImage.py:92
  7264. msgid ""
  7265. "Mask for monochrome image.\n"
  7266. "Takes values between [0 ... 255].\n"
  7267. "Decides the level of details to include\n"
  7268. "in the resulting geometry.\n"
  7269. "0 means no detail and 255 means everything \n"
  7270. "(which is totally black)."
  7271. msgstr ""
  7272. #: flatcamTools/ToolImage.py:105
  7273. msgid ""
  7274. "Mask for RED color.\n"
  7275. "Takes values between [0 ... 255].\n"
  7276. "Decides the level of details to include\n"
  7277. "in the resulting geometry."
  7278. msgstr ""
  7279. #: flatcamTools/ToolImage.py:116
  7280. msgid ""
  7281. "Mask for GREEN color.\n"
  7282. "Takes values between [0 ... 255].\n"
  7283. "Decides the level of details to include\n"
  7284. "in the resulting geometry."
  7285. msgstr ""
  7286. #: flatcamTools/ToolImage.py:127
  7287. msgid ""
  7288. "Mask for BLUE color.\n"
  7289. "Takes values between [0 ... 255].\n"
  7290. "Decides the level of details to include\n"
  7291. "in the resulting geometry."
  7292. msgstr ""
  7293. #: flatcamTools/ToolImage.py:139
  7294. msgid "Import image"
  7295. msgstr ""
  7296. #: flatcamTools/ToolImage.py:141
  7297. msgid "Open a image of raster type and then import it in FlatCAM."
  7298. msgstr ""
  7299. #: flatcamTools/ToolImage.py:170
  7300. msgid "Image Tool"
  7301. msgstr ""
  7302. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  7303. msgid "Import IMAGE"
  7304. msgstr ""
  7305. #: flatcamTools/ToolMeasurement.py:26
  7306. msgid "Measurement"
  7307. msgstr "Измерение"
  7308. #: flatcamTools/ToolMeasurement.py:44
  7309. msgid "Units:"
  7310. msgstr "Единицы:"
  7311. #: flatcamTools/ToolMeasurement.py:45
  7312. msgid "Those are the units in which the distance is measured."
  7313. msgstr ""
  7314. #: flatcamTools/ToolMeasurement.py:49
  7315. msgid "Start"
  7316. msgstr "Старт"
  7317. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:52
  7318. msgid "Coords"
  7319. msgstr ""
  7320. #: flatcamTools/ToolMeasurement.py:50 flatcamTools/ToolMeasurement.py:66
  7321. msgid "This is measuring Start point coordinates."
  7322. msgstr ""
  7323. #: flatcamTools/ToolMeasurement.py:52
  7324. msgid "Stop"
  7325. msgstr "Стоп"
  7326. #: flatcamTools/ToolMeasurement.py:53 flatcamTools/ToolMeasurement.py:70
  7327. msgid "This is the measuring Stop point coordinates."
  7328. msgstr ""
  7329. #: flatcamTools/ToolMeasurement.py:56 flatcamTools/ToolMeasurement.py:74
  7330. msgid "This is the distance measured over the X axis."
  7331. msgstr ""
  7332. #: flatcamTools/ToolMeasurement.py:59 flatcamTools/ToolMeasurement.py:79
  7333. msgid "This is the distance measured over the Y axis."
  7334. msgstr ""
  7335. #: flatcamTools/ToolMeasurement.py:61
  7336. msgid "DISTANCE"
  7337. msgstr "РАССТОЯНИЕ"
  7338. #: flatcamTools/ToolMeasurement.py:62 flatcamTools/ToolMeasurement.py:84
  7339. msgid "This is the point to point Euclidian distance."
  7340. msgstr ""
  7341. #: flatcamTools/ToolMeasurement.py:86
  7342. msgid "Measure"
  7343. msgstr "Измерение"
  7344. #: flatcamTools/ToolMeasurement.py:132
  7345. msgid "Meas. Tool"
  7346. msgstr "Инструмент измерения"
  7347. #: flatcamTools/ToolMeasurement.py:177
  7348. msgid "MEASURING: Click on the Start point ..."
  7349. msgstr "ИЗМЕРЕНИЕ: Нажмите на точку начала отсчета ..."
  7350. #: flatcamTools/ToolMeasurement.py:270
  7351. msgid "MEASURING: Click on the Destination point ..."
  7352. msgstr "ИЗМЕРЕНИЕ: Нажмите на конечную точку ..."
  7353. #: flatcamTools/ToolMeasurement.py:278
  7354. #, python-brace-format
  7355. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7356. msgstr "ИЗМЕРЕНИЕ: Результат D(x) = {d_x} | D(y) = {d_y} | Расстояние = {d_z}"
  7357. #: flatcamTools/ToolMove.py:81
  7358. msgid "MOVE: Click on the Start point ..."
  7359. msgstr "Перемещение: Нажмите на исходную точку ..."
  7360. #: flatcamTools/ToolMove.py:88
  7361. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  7362. msgstr ""
  7363. #: flatcamTools/ToolMove.py:110
  7364. msgid "MOVE: Click on the Destination point ..."
  7365. msgstr "Перемещение: Нажмите на конечную точку ..."
  7366. #: flatcamTools/ToolMove.py:128
  7367. msgid "Moving ..."
  7368. msgstr "Перемещение ..."
  7369. #: flatcamTools/ToolMove.py:135
  7370. msgid "[WARNING_NOTCL] No object(s) selected."
  7371. msgstr ""
  7372. #: flatcamTools/ToolMove.py:158
  7373. #, python-format
  7374. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  7375. msgstr ""
  7376. #: flatcamTools/ToolMove.py:164
  7377. #, python-format
  7378. msgid "[success] %s object was moved ..."
  7379. msgstr ""
  7380. #: flatcamTools/ToolMove.py:174
  7381. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  7382. msgstr ""
  7383. #: flatcamTools/ToolMove.py:202
  7384. msgid "[WARNING_NOTCL] Move action cancelled."
  7385. msgstr ""
  7386. #: flatcamTools/ToolMove.py:214
  7387. msgid "[WARNING_NOTCL] Object(s) not selected"
  7388. msgstr ""
  7389. #: flatcamTools/ToolNonCopperClear.py:26
  7390. msgid "Non-Copper Clearing"
  7391. msgstr "Очиста от меди"
  7392. #: flatcamTools/ToolNonCopperClear.py:64
  7393. msgid "Gerber object to be cleared of excess copper. "
  7394. msgstr ""
  7395. #: flatcamTools/ToolNonCopperClear.py:74
  7396. msgid ""
  7397. "Tools pool from which the algorithm\n"
  7398. "will pick the ones used for copper clearing."
  7399. msgstr ""
  7400. #: flatcamTools/ToolNonCopperClear.py:89
  7401. msgid ""
  7402. "This is the Tool Number.\n"
  7403. "Non copper clearing will start with the tool with the biggest \n"
  7404. "diameter, continuing until there are no more tools.\n"
  7405. "Only tools that create NCC clearing geometry will still be present\n"
  7406. "in the resulting geometry. This is because with some tools\n"
  7407. "this function will not be able to create painting geometry."
  7408. msgstr ""
  7409. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  7410. msgid ""
  7411. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  7412. "informative only. Being circular, <BR>the cut width in material is exactly "
  7413. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  7414. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  7415. "parameter in the resulting geometry UI form and enable two additional UI "
  7416. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  7417. "those two values will adjust the Z-Cut parameter such as the cut width into "
  7418. "material will be equal with the value in the Tool Diameter column of this "
  7419. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  7420. "the Operation Type in the resulting geometry as Isolation."
  7421. msgstr ""
  7422. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  7423. msgid "Tool Dia"
  7424. msgstr "Диаметр инструмента"
  7425. #: flatcamTools/ToolNonCopperClear.py:122
  7426. msgid "Diameter for the new tool to add in the Tool Table"
  7427. msgstr ""
  7428. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  7429. #: flatcamTools/ToolSolderPaste.py:123
  7430. msgid ""
  7431. "Delete a selection of tools in the Tool Table\n"
  7432. "by first selecting a row(s) in the Tool Table."
  7433. msgstr ""
  7434. #: flatcamTools/ToolNonCopperClear.py:226
  7435. msgid ""
  7436. "If checked, use 'rest machining'.\n"
  7437. "Basically it will clear copper outside PCB features,\n"
  7438. "using the biggest tool and continue with the next tools,\n"
  7439. "from bigger to smaller, to clear areas of copper that\n"
  7440. "could not be cleared by previous tool, until there is\n"
  7441. "no more copper to clear or there are no more tools.\n"
  7442. "If not checked, use the standard algorithm."
  7443. msgstr ""
  7444. #: flatcamTools/ToolNonCopperClear.py:238
  7445. msgid "Generate Geometry"
  7446. msgstr "Создать объект"
  7447. #: flatcamTools/ToolNonCopperClear.py:485 flatcamTools/ToolPaint.py:544
  7448. #: flatcamTools/ToolSolderPaste.py:761
  7449. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  7450. msgstr ""
  7451. #: flatcamTools/ToolNonCopperClear.py:513 flatcamTools/ToolPaint.py:568
  7452. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  7453. msgstr ""
  7454. #: flatcamTools/ToolNonCopperClear.py:518 flatcamTools/ToolPaint.py:573
  7455. msgid "[success] New tool added to Tool Table."
  7456. msgstr ""
  7457. #: flatcamTools/ToolNonCopperClear.py:560 flatcamTools/ToolPaint.py:616
  7458. msgid "[success] Tool from Tool Table was edited."
  7459. msgstr ""
  7460. #: flatcamTools/ToolNonCopperClear.py:571 flatcamTools/ToolPaint.py:627
  7461. #: flatcamTools/ToolSolderPaste.py:847
  7462. msgid ""
  7463. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  7464. "Table."
  7465. msgstr ""
  7466. #: flatcamTools/ToolNonCopperClear.py:610 flatcamTools/ToolPaint.py:724
  7467. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  7468. msgstr ""
  7469. #: flatcamTools/ToolNonCopperClear.py:615 flatcamTools/ToolPaint.py:729
  7470. msgid "[success] Tool(s) deleted from Tool Table."
  7471. msgstr ""
  7472. #: flatcamTools/ToolNonCopperClear.py:633 flatcamTools/ToolPaint.py:748
  7473. msgid ""
  7474. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  7475. msgstr ""
  7476. #: flatcamTools/ToolNonCopperClear.py:673
  7477. msgid "[ERROR_NOTCL] No Gerber file available."
  7478. msgstr ""
  7479. #: flatcamTools/ToolNonCopperClear.py:711
  7480. #: flatcamTools/ToolNonCopperClear.py:833
  7481. msgid "Clearing Non-Copper areas."
  7482. msgstr ""
  7483. #: flatcamTools/ToolNonCopperClear.py:729
  7484. #, python-format
  7485. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  7486. msgstr ""
  7487. #: flatcamTools/ToolNonCopperClear.py:798
  7488. #, python-format
  7489. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  7490. msgstr ""
  7491. #: flatcamTools/ToolNonCopperClear.py:803
  7492. msgid "[success] NCC Tool finished."
  7493. msgstr ""
  7494. #: flatcamTools/ToolNonCopperClear.py:805
  7495. msgid ""
  7496. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  7497. "cleared. Check the result."
  7498. msgstr ""
  7499. #: flatcamTools/ToolNonCopperClear.py:851
  7500. #, python-format
  7501. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  7502. msgstr ""
  7503. #: flatcamTools/ToolNonCopperClear.py:949
  7504. #, python-format
  7505. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  7506. msgstr ""
  7507. #: flatcamTools/ToolNonCopperClear.py:957
  7508. msgid ""
  7509. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  7510. "settings."
  7511. msgstr ""
  7512. #: flatcamTools/ToolPDF.py:38
  7513. msgid "PDF Import Tool"
  7514. msgstr "Импорт PDF"
  7515. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  7516. msgid "Open PDF"
  7517. msgstr "Открыть PDF"
  7518. #: flatcamTools/ToolPDF.py:159
  7519. msgid "[WARNING_NOTCL] Open PDF cancelled."
  7520. msgstr ""
  7521. #: flatcamTools/ToolPDF.py:186
  7522. msgid "Parsing PDF file ..."
  7523. msgstr "Разбор PDF-файла ..."
  7524. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  7525. #, python-format
  7526. msgid "Rendering PDF layer #%d ..."
  7527. msgstr "Отрисовка слоя PDF #%d ..."
  7528. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  7529. msgid "[ERROR_NOTCL] Open PDF file failed."
  7530. msgstr ""
  7531. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  7532. #, python-format
  7533. msgid "[success] Rendered: %s"
  7534. msgstr ""
  7535. #: flatcamTools/ToolPaint.py:24
  7536. msgid "Paint Area"
  7537. msgstr "Область рисования"
  7538. #: flatcamTools/ToolPaint.py:60
  7539. msgid "Geometry:"
  7540. msgstr "Geometry:"
  7541. #: flatcamTools/ToolPaint.py:62
  7542. msgid "Geometry object to be painted. "
  7543. msgstr "Объект Geometry для рисования. "
  7544. #: flatcamTools/ToolPaint.py:71
  7545. msgid ""
  7546. "Tools pool from which the algorithm\n"
  7547. "will pick the ones used for painting."
  7548. msgstr ""
  7549. #: flatcamTools/ToolPaint.py:86
  7550. msgid ""
  7551. "This is the Tool Number.\n"
  7552. "Painting will start with the tool with the biggest diameter,\n"
  7553. "continuing until there are no more tools.\n"
  7554. "Only tools that create painting geometry will still be present\n"
  7555. "in the resulting geometry. This is because with some tools\n"
  7556. "this function will not be able to create painting geometry."
  7557. msgstr ""
  7558. #: flatcamTools/ToolPaint.py:119
  7559. msgid "Diameter for the new tool."
  7560. msgstr ""
  7561. #: flatcamTools/ToolPaint.py:224
  7562. msgid ""
  7563. "If checked, use 'rest machining'.\n"
  7564. "Basically it will clear copper outside PCB features,\n"
  7565. "using the biggest tool and continue with the next tools,\n"
  7566. "from bigger to smaller, to clear areas of copper that\n"
  7567. "could not be cleared by previous tool, until there is\n"
  7568. "no more copper to clear or there are no more tools.\n"
  7569. "\n"
  7570. "If not checked, use the standard algorithm."
  7571. msgstr ""
  7572. #: flatcamTools/ToolPaint.py:239
  7573. msgid ""
  7574. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  7575. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  7576. "polygons."
  7577. msgstr ""
  7578. #: flatcamTools/ToolPaint.py:254
  7579. msgid "Create Paint Geometry"
  7580. msgstr ""
  7581. #: flatcamTools/ToolPaint.py:256
  7582. msgid ""
  7583. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  7584. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  7585. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  7586. "created."
  7587. msgstr ""
  7588. #: flatcamTools/ToolPaint.py:733
  7589. msgid "geometry_on_paint_button"
  7590. msgstr ""
  7591. #: flatcamTools/ToolPaint.py:752 flatcamTools/ToolPaint.py:787
  7592. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  7593. msgstr ""
  7594. #: flatcamTools/ToolPaint.py:774
  7595. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  7596. msgstr ""
  7597. #: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003
  7598. msgid "Painting polygon..."
  7599. msgstr "Отрисовка полигона..."
  7600. #: flatcamTools/ToolPaint.py:851
  7601. msgid "[WARNING] No polygon found."
  7602. msgstr "[WARNING] Полигон не найден."
  7603. #: flatcamTools/ToolPaint.py:854
  7604. msgid "Painting polygon."
  7605. msgstr "Отрисовка безмедного полигона."
  7606. #: flatcamTools/ToolPaint.py:896
  7607. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  7608. msgstr ""
  7609. #: flatcamTools/ToolPaint.py:922
  7610. #, python-format
  7611. msgid ""
  7612. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  7613. "different strategy of paint\n"
  7614. "%s"
  7615. msgstr ""
  7616. #: flatcamTools/ToolPaint.py:964
  7617. #, python-format
  7618. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  7619. msgstr ""
  7620. #: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1263
  7621. msgid "Polygon Paint started ..."
  7622. msgstr "Запущена отрисовка полигона ..."
  7623. #: flatcamTools/ToolPaint.py:1119 flatcamTools/ToolPaint.py:1208
  7624. #, python-format
  7625. msgid ""
  7626. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  7627. "Or a different Method of paint\n"
  7628. "%s"
  7629. msgstr ""
  7630. #: flatcamTools/ToolPaint.py:1143
  7631. msgid ""
  7632. "[ERROR] There is no Painting Geometry in the file.\n"
  7633. "Usually it means that the tool diameter is too big for the painted "
  7634. "geometry.\n"
  7635. "Change the painting parameters and try again."
  7636. msgstr ""
  7637. #: flatcamTools/ToolPaint.py:1152
  7638. msgid "[success] Paint All Done."
  7639. msgstr ""
  7640. #: flatcamTools/ToolPaint.py:1238
  7641. msgid ""
  7642. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  7643. "Usually it means that the tool diameter is too big for the painted "
  7644. "geometry.\n"
  7645. "Change the painting parameters and try again."
  7646. msgstr ""
  7647. #: flatcamTools/ToolPaint.py:1247
  7648. msgid "[success] Paint All with Rest-Machining done."
  7649. msgstr ""
  7650. #: flatcamTools/ToolPanelize.py:25
  7651. msgid "Panelize PCB"
  7652. msgstr "Панелизация"
  7653. #: flatcamTools/ToolPanelize.py:58
  7654. msgid ""
  7655. "Specify the type of object to be panelized\n"
  7656. "It can be of type: Gerber, Excellon or Geometry.\n"
  7657. "The selection here decide the type of objects that will be\n"
  7658. "in the Object combobox."
  7659. msgstr ""
  7660. #: flatcamTools/ToolPanelize.py:73
  7661. msgid ""
  7662. "Object to be panelized. This means that it will\n"
  7663. "be duplicated in an array of rows and columns."
  7664. msgstr ""
  7665. #: flatcamTools/ToolPanelize.py:86
  7666. msgid "<b>Penelization Reference:</b>"
  7667. msgstr "<b>Характеристики пенелизации:</b>"
  7668. #: flatcamTools/ToolPanelize.py:88
  7669. msgid ""
  7670. "Choose the reference for panelization:\n"
  7671. "- Object = the bounding box of a different object\n"
  7672. "- Bounding Box = the bounding box of the object to be panelized\n"
  7673. "\n"
  7674. "The reference is useful when doing panelization for more than one\n"
  7675. "object. The spacings (really offsets) will be applied in reference\n"
  7676. "to this reference object therefore maintaining the panelized\n"
  7677. "objects in sync."
  7678. msgstr ""
  7679. #: flatcamTools/ToolPanelize.py:113
  7680. msgid ""
  7681. "Specify the type of object to be used as an container for\n"
  7682. "panelization. It can be: Gerber or Geometry type.\n"
  7683. "The selection here decide the type of objects that will be\n"
  7684. "in the Box Object combobox."
  7685. msgstr ""
  7686. #: flatcamTools/ToolPanelize.py:128
  7687. msgid ""
  7688. "The actual object that is used a container for the\n"
  7689. " selected object that is to be panelized."
  7690. msgstr ""
  7691. #: flatcamTools/ToolPanelize.py:134
  7692. msgid "<b>Panel Data:</b>"
  7693. msgstr "<b>Данные панели:</b>"
  7694. #: flatcamTools/ToolPanelize.py:136
  7695. msgid ""
  7696. "This informations will shape the resulting panel.\n"
  7697. "The number of rows and columns will set how many\n"
  7698. "duplicates of the original geometry will be generated.\n"
  7699. "\n"
  7700. "The spacings will set the distance between any two\n"
  7701. "elements of the panel array."
  7702. msgstr ""
  7703. "Эта информация будет формировать получившуюся панель.\n"
  7704. "Количество строк и столбцов будет определять, сколько\n"
  7705. "будут сгенерировано дубликатов исходной геометрии.\n"
  7706. "\n"
  7707. "Расстояние устанавливает дистанцию между любыми двумя\n"
  7708. "элементами массива панели."
  7709. #: flatcamTools/ToolPanelize.py:183
  7710. msgid "<b>Panel Type:</b>"
  7711. msgstr "<b>Тип панели:</b>"
  7712. #: flatcamTools/ToolPanelize.py:185
  7713. msgid ""
  7714. "Choose the type of object for the panel object:\n"
  7715. "- Geometry\n"
  7716. "- Gerber"
  7717. msgstr ""
  7718. "Выбор типа объекта для объекта панелизации:\n"
  7719. "- Geometry\n"
  7720. "- Gerber"
  7721. #: flatcamTools/ToolPanelize.py:193
  7722. msgid "Constrain panel within:"
  7723. msgstr "Ограничить панель внутри:"
  7724. #: flatcamTools/ToolPanelize.py:227
  7725. msgid "Panelize Object"
  7726. msgstr "Объект панелизации"
  7727. #: flatcamTools/ToolPanelize.py:229
  7728. msgid ""
  7729. "Panelize the specified object around the specified box.\n"
  7730. "In other words it creates multiple copies of the source object,\n"
  7731. "arranged in a 2D array of rows and columns."
  7732. msgstr ""
  7733. "Панелизация указанного объекта вокруг указанного поля.\n"
  7734. "Другими словами, он создает несколько копий исходного объекта,\n"
  7735. "расположеных в 2D массиве строк и столбцов."
  7736. #: flatcamTools/ToolPanelize.py:370
  7737. #, python-format
  7738. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  7739. msgstr ""
  7740. #: flatcamTools/ToolPanelize.py:453
  7741. msgid ""
  7742. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  7743. "integer."
  7744. msgstr ""
  7745. #: flatcamTools/ToolPanelize.py:478 flatcamTools/ToolPanelize.py:635
  7746. msgid "Generating panel ... Please wait."
  7747. msgstr "Выполняется панелизация ... Пожалуйста, подождите."
  7748. #: flatcamTools/ToolPanelize.py:628
  7749. msgid "[success] Panel done..."
  7750. msgstr ""
  7751. #: flatcamTools/ToolPanelize.py:631
  7752. #, python-brace-format
  7753. msgid ""
  7754. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  7755. "{row} rows"
  7756. msgstr ""
  7757. #: flatcamTools/ToolPanelize.py:640
  7758. msgid "[success] Panel created successfully."
  7759. msgstr ""
  7760. #: flatcamTools/ToolPcbWizard.py:32
  7761. msgid "PcbWizard Import Tool"
  7762. msgstr "Инструмент импорта PcbWizard"
  7763. #: flatcamTools/ToolPcbWizard.py:40
  7764. msgid "Import 2-file Excellon"
  7765. msgstr "Импорт 2-х файлов Excellon"
  7766. #: flatcamTools/ToolPcbWizard.py:57
  7767. msgid "Excellon file:"
  7768. msgstr "Excellon файл:"
  7769. #: flatcamTools/ToolPcbWizard.py:59
  7770. msgid ""
  7771. "Load the Excellon file.\n"
  7772. "Usually it has a .DRL extension"
  7773. msgstr ""
  7774. "Загружает файл Excellon.\n"
  7775. "Обычно он имеет расширение .DRL"
  7776. #: flatcamTools/ToolPcbWizard.py:66
  7777. msgid "INF file:"
  7778. msgstr "INF файл:"
  7779. #: flatcamTools/ToolPcbWizard.py:68
  7780. msgid "Load the INF file."
  7781. msgstr "Загружает INF-файл."
  7782. #: flatcamTools/ToolPcbWizard.py:81
  7783. msgid "Tool Number"
  7784. msgstr "Номер инструмента"
  7785. #: flatcamTools/ToolPcbWizard.py:83
  7786. msgid "Tool diameter in file units."
  7787. msgstr ""
  7788. #: flatcamTools/ToolPcbWizard.py:97
  7789. msgid "Int. digits:"
  7790. msgstr ""
  7791. #: flatcamTools/ToolPcbWizard.py:99
  7792. msgid "The number of digits for the integral part of the coordinates."
  7793. msgstr ""
  7794. #: flatcamTools/ToolPcbWizard.py:106
  7795. msgid "Frac. digits:"
  7796. msgstr ""
  7797. #: flatcamTools/ToolPcbWizard.py:108
  7798. msgid "The number of digits for the fractional part of the coordinates."
  7799. msgstr ""
  7800. #: flatcamTools/ToolPcbWizard.py:116
  7801. msgid "Zeros supp.:"
  7802. msgstr ""
  7803. #: flatcamTools/ToolPcbWizard.py:118
  7804. msgid ""
  7805. "The type of zeros suppression used.\n"
  7806. "Can be of type:\n"
  7807. "- LZ = leading zeros are kept\n"
  7808. "- TZ = trailing zeros are kept\n"
  7809. "- No Suppression = no zero suppression"
  7810. msgstr ""
  7811. #: flatcamTools/ToolPcbWizard.py:129
  7812. msgid "Units"
  7813. msgstr "Единицы"
  7814. #: flatcamTools/ToolPcbWizard.py:131
  7815. msgid ""
  7816. "The type of units that the coordinates and tool\n"
  7817. "diameters are using. Can be INCH or MM."
  7818. msgstr ""
  7819. #: flatcamTools/ToolPcbWizard.py:138
  7820. msgid "Import Excellon"
  7821. msgstr "Импорт Excellon"
  7822. #: flatcamTools/ToolPcbWizard.py:140
  7823. msgid ""
  7824. "Import in FlatCAM an Excellon file\n"
  7825. "that store it's information's in 2 files.\n"
  7826. "One usually has .DRL extension while\n"
  7827. "the other has .INF extension."
  7828. msgstr ""
  7829. #: flatcamTools/ToolPcbWizard.py:194
  7830. msgid "PCBWizard Tool"
  7831. msgstr "Инструмент PCBWizard"
  7832. #: flatcamTools/ToolPcbWizard.py:288 flatcamTools/ToolPcbWizard.py:292
  7833. msgid "Load PcbWizard Excellon file"
  7834. msgstr "Загрузить Excellon-файл PcbWizard"
  7835. #: flatcamTools/ToolPcbWizard.py:312 flatcamTools/ToolPcbWizard.py:316
  7836. msgid "Load PcbWizard INF file"
  7837. msgstr "Загрузить INF-файл PcbWizard"
  7838. #: flatcamTools/ToolPcbWizard.py:363
  7839. msgid ""
  7840. "[ERROR] The INF file does not contain the tool table.\n"
  7841. "Try to open the Excellon file from File -> Open -> Excellon\n"
  7842. "and edit the drill diameters manually."
  7843. msgstr ""
  7844. #: flatcamTools/ToolPcbWizard.py:383
  7845. msgid "[success] PcbWizard .INF file loaded."
  7846. msgstr ""
  7847. #: flatcamTools/ToolPcbWizard.py:387
  7848. msgid "[success] Main PcbWizard Excellon file loaded."
  7849. msgstr ""
  7850. #: flatcamTools/ToolPcbWizard.py:424
  7851. #, python-format
  7852. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  7853. msgstr ""
  7854. #: flatcamTools/ToolPcbWizard.py:447
  7855. msgid "Importing Excellon."
  7856. msgstr "Импортирование Excellon."
  7857. #: flatcamTools/ToolPcbWizard.py:454
  7858. msgid "[ERROR_NOTCL] Import Excellon file failed."
  7859. msgstr ""
  7860. #: flatcamTools/ToolPcbWizard.py:461
  7861. #, python-format
  7862. msgid "[success] Imported: %s"
  7863. msgstr ""
  7864. #: flatcamTools/ToolPcbWizard.py:464
  7865. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  7866. msgstr ""
  7867. #: flatcamTools/ToolPcbWizard.py:466
  7868. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  7869. msgstr ""
  7870. #: flatcamTools/ToolProperties.py:103
  7871. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  7872. msgstr ""
  7873. #: flatcamTools/ToolProperties.py:110
  7874. msgid "[success] Object Properties are displayed."
  7875. msgstr ""
  7876. #: flatcamTools/ToolProperties.py:111
  7877. msgid "Properties Tool"
  7878. msgstr "Свойства инструмента"
  7879. #: flatcamTools/ToolShell.py:69
  7880. msgid "...proccessing..."
  7881. msgstr "...обработка..."
  7882. #: flatcamTools/ToolShell.py:71
  7883. #, python-format
  7884. msgid "...proccessing... [%s]"
  7885. msgstr "...обработка... [%s]"
  7886. #: flatcamTools/ToolSolderPaste.py:37
  7887. msgid "Solder Paste Tool"
  7888. msgstr "Инструмент для паяльной пасты"
  7889. #: flatcamTools/ToolSolderPaste.py:65
  7890. msgid "Gerber Solder paste object. "
  7891. msgstr ""
  7892. #: flatcamTools/ToolSolderPaste.py:72
  7893. msgid ""
  7894. "Tools pool from which the algorithm\n"
  7895. "will pick the ones used for dispensing solder paste."
  7896. msgstr ""
  7897. #: flatcamTools/ToolSolderPaste.py:87
  7898. msgid ""
  7899. "This is the Tool Number.\n"
  7900. "The solder dispensing will start with the tool with the biggest \n"
  7901. "diameter, continuing until there are no more Nozzle tools.\n"
  7902. "If there are no longer tools but there are still pads not covered\n"
  7903. " with solder paste, the app will issue a warning message box."
  7904. msgstr ""
  7905. #: flatcamTools/ToolSolderPaste.py:94
  7906. msgid ""
  7907. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  7908. "is the width of the solder paste dispensed."
  7909. msgstr ""
  7910. #: flatcamTools/ToolSolderPaste.py:101
  7911. msgid "New Nozzle Tool"
  7912. msgstr "Новая насадка"
  7913. #: flatcamTools/ToolSolderPaste.py:117
  7914. msgid ""
  7915. "Add a new nozzle tool to the Tool Table\n"
  7916. "with the diameter specified above."
  7917. msgstr ""
  7918. #: flatcamTools/ToolSolderPaste.py:129
  7919. msgid "Generate solder paste dispensing geometry."
  7920. msgstr ""
  7921. #: flatcamTools/ToolSolderPaste.py:142
  7922. msgid "STEP 1"
  7923. msgstr "ШАГ 1"
  7924. #: flatcamTools/ToolSolderPaste.py:144
  7925. msgid ""
  7926. "First step is to select a number of nozzle tools for usage\n"
  7927. "and then optionally modify the GCode parameters bellow."
  7928. msgstr ""
  7929. #: flatcamTools/ToolSolderPaste.py:147
  7930. msgid ""
  7931. "Select tools.\n"
  7932. "Modify parameters."
  7933. msgstr ""
  7934. #: flatcamTools/ToolSolderPaste.py:290
  7935. msgid "Generate GCode"
  7936. msgstr ""
  7937. #: flatcamTools/ToolSolderPaste.py:292
  7938. msgid ""
  7939. "Generate GCode for Solder Paste dispensing\n"
  7940. "on PCB pads."
  7941. msgstr ""
  7942. #: flatcamTools/ToolSolderPaste.py:308
  7943. msgid "STEP 2:"
  7944. msgstr "ШАГ 2:"
  7945. #: flatcamTools/ToolSolderPaste.py:310
  7946. msgid ""
  7947. "Second step is to create a solder paste dispensing\n"
  7948. "geometry out of an Solder Paste Mask Gerber file."
  7949. msgstr ""
  7950. #: flatcamTools/ToolSolderPaste.py:326
  7951. msgid "Geo Result:"
  7952. msgstr ""
  7953. #: flatcamTools/ToolSolderPaste.py:328
  7954. msgid ""
  7955. "Geometry Solder Paste object.\n"
  7956. "The name of the object has to end in:\n"
  7957. "'_solderpaste' as a protection."
  7958. msgstr ""
  7959. #: flatcamTools/ToolSolderPaste.py:337
  7960. msgid "STEP 3:"
  7961. msgstr "ШАГ 3:"
  7962. #: flatcamTools/ToolSolderPaste.py:339
  7963. msgid ""
  7964. "Third step is to select a solder paste dispensing geometry,\n"
  7965. "and then generate a CNCJob object.\n"
  7966. "\n"
  7967. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  7968. "first you need to generate a geometry with those new params,\n"
  7969. "and only after that you can generate an updated CNCJob."
  7970. msgstr ""
  7971. #: flatcamTools/ToolSolderPaste.py:359
  7972. msgid "CNC Result:"
  7973. msgstr ""
  7974. #: flatcamTools/ToolSolderPaste.py:361
  7975. msgid ""
  7976. "CNCJob Solder paste object.\n"
  7977. "In order to enable the GCode save section,\n"
  7978. "the name of the object has to end in:\n"
  7979. "'_solderpaste' as a protection."
  7980. msgstr ""
  7981. #: flatcamTools/ToolSolderPaste.py:371
  7982. msgid "View GCode"
  7983. msgstr "Посмотреть GCode"
  7984. #: flatcamTools/ToolSolderPaste.py:373
  7985. msgid ""
  7986. "View the generated GCode for Solder Paste dispensing\n"
  7987. "on PCB pads."
  7988. msgstr ""
  7989. "Просмотр сгенерированного GCode для подачи паяльной пасты\n"
  7990. "на печатную платау."
  7991. #: flatcamTools/ToolSolderPaste.py:377
  7992. msgid "Save GCode"
  7993. msgstr "Сохранить GCode"
  7994. #: flatcamTools/ToolSolderPaste.py:379
  7995. msgid ""
  7996. "Save the generated GCode for Solder Paste dispensing\n"
  7997. "on PCB pads, to a file."
  7998. msgstr ""
  7999. "Сохранение сгенерированного GCode для подачи паяльной пасты\n"
  8000. "на печатную платау, в файл."
  8001. #: flatcamTools/ToolSolderPaste.py:383
  8002. msgid "STEP 4:"
  8003. msgstr "ШАГ 4:"
  8004. #: flatcamTools/ToolSolderPaste.py:385
  8005. msgid ""
  8006. "Fourth step (and last) is to select a CNCJob made from \n"
  8007. "a solder paste dispensing geometry, and then view/save it's GCode."
  8008. msgstr ""
  8009. "Четвертый шаг (и последний) - выбор CNCJob, сделанного из \n"
  8010. "геометрии распределения паяльной пасты, а затем просмотр/сохранение ее GCode."
  8011. #: flatcamTools/ToolSolderPaste.py:413
  8012. msgid "Delete Object"
  8013. msgstr "Удалить объект"
  8014. #: flatcamTools/ToolSolderPaste.py:789
  8015. msgid ""
  8016. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8017. msgstr ""
  8018. #: flatcamTools/ToolSolderPaste.py:794
  8019. msgid "[success] New Nozzle tool added to Tool Table."
  8020. msgstr ""
  8021. #: flatcamTools/ToolSolderPaste.py:836
  8022. msgid "[success] Nozzle tool from Tool Table was edited."
  8023. msgstr ""
  8024. #: flatcamTools/ToolSolderPaste.py:892
  8025. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8026. msgstr ""
  8027. #: flatcamTools/ToolSolderPaste.py:897
  8028. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  8029. msgstr ""
  8030. #: flatcamTools/ToolSolderPaste.py:952
  8031. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8032. msgstr ""
  8033. #: flatcamTools/ToolSolderPaste.py:969
  8034. msgid "Creating Solder Paste dispensing geometry."
  8035. msgstr "Создание геометрии дозирования паяльной пасты."
  8036. #: flatcamTools/ToolSolderPaste.py:981
  8037. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8038. msgstr ""
  8039. #: flatcamTools/ToolSolderPaste.py:1110
  8040. msgid "[success] Solder Paste geometry generated successfully..."
  8041. msgstr ""
  8042. #: flatcamTools/ToolSolderPaste.py:1116
  8043. msgid ""
  8044. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  8045. "diameters..."
  8046. msgstr ""
  8047. #: flatcamTools/ToolSolderPaste.py:1130
  8048. msgid "Generating Solder Paste dispensing geometry..."
  8049. msgstr "Генерация геометрии дозирования паяльной пасты ..."
  8050. #: flatcamTools/ToolSolderPaste.py:1150
  8051. msgid "[WARNING_NOTCL] There is no Geometry object available."
  8052. msgstr ""
  8053. #: flatcamTools/ToolSolderPaste.py:1154
  8054. msgid ""
  8055. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  8056. "geometry."
  8057. msgstr ""
  8058. #: flatcamTools/ToolSolderPaste.py:1259
  8059. #, python-format
  8060. msgid "[success] ToolSolderPaste CNCjob created: %s"
  8061. msgstr ""
  8062. #: flatcamTools/ToolSolderPaste.py:1291 flatcamTools/ToolSolderPaste.py:1295
  8063. #: flatcamTools/ToolSolderPaste.py:1346
  8064. msgid ""
  8065. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  8066. "solder_paste_tool CNCJob object."
  8067. msgstr ""
  8068. #: flatcamTools/ToolSolderPaste.py:1318
  8069. msgid "[ERROR_NOTCL] No Gcode in the object..."
  8070. msgstr ""
  8071. #: flatcamTools/ToolSolderPaste.py:1327
  8072. #, python-format
  8073. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8074. msgstr ""
  8075. #: flatcamTools/ToolSolderPaste.py:1356
  8076. msgid "Export GCode ..."
  8077. msgstr "Экспорт GCode ..."
  8078. #: flatcamTools/ToolSolderPaste.py:1396
  8079. #, python-format
  8080. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  8081. msgstr ""
  8082. #: flatcamTools/ToolSub.py:55
  8083. msgid "<b>Gerber Objects</b>"
  8084. msgstr "<b>Объекты Gerber</b>"
  8085. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  8086. msgid "Target:"
  8087. msgstr "Цель:"
  8088. #: flatcamTools/ToolSub.py:66
  8089. msgid ""
  8090. "Gerber object from which to substract\n"
  8091. "the substractor Gerber object."
  8092. msgstr ""
  8093. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  8094. msgid "Substractor:"
  8095. msgstr "Вычитатель:"
  8096. #: flatcamTools/ToolSub.py:80
  8097. msgid ""
  8098. "Gerber object that will be substracted\n"
  8099. "from the target Gerber object."
  8100. msgstr ""
  8101. #: flatcamTools/ToolSub.py:87
  8102. msgid "Substract Gerber"
  8103. msgstr ""
  8104. #: flatcamTools/ToolSub.py:89
  8105. msgid ""
  8106. "Will remove the area occupied by the substractor\n"
  8107. "Gerber from the Target Gerber.\n"
  8108. "Can be used to remove the overlapping silkscreen\n"
  8109. "over the soldermask."
  8110. msgstr ""
  8111. #: flatcamTools/ToolSub.py:101
  8112. msgid "<b>Geometry Objects</b>"
  8113. msgstr "<b>Объекты Geometry</b>"
  8114. #: flatcamTools/ToolSub.py:112
  8115. msgid ""
  8116. "Geometry object from which to substract\n"
  8117. "the substractor Geometry object."
  8118. msgstr ""
  8119. "Объект геометрии, из которого будет вычетать\n"
  8120. "вычитатель объекта Geometry."
  8121. #: flatcamTools/ToolSub.py:126
  8122. msgid ""
  8123. "Geometry object that will be substracted\n"
  8124. "from the target Geometry object."
  8125. msgstr ""
  8126. "Объект Geometry, который будет вычтен\n"
  8127. "от целевого объекта Geometry."
  8128. #: flatcamTools/ToolSub.py:133
  8129. msgid "Substract Geometry"
  8130. msgstr "Вычесть геометрию"
  8131. #: flatcamTools/ToolSub.py:135
  8132. msgid ""
  8133. "Will remove the area occupied by the substractor\n"
  8134. "Geometry from the Target Geometry."
  8135. msgstr ""
  8136. "Удалит область, занятую вычитателем\n"
  8137. "из целевой геометрии."
  8138. #: flatcamTools/ToolSub.py:215
  8139. msgid "Sub Tool"
  8140. msgstr "Инструмент вычитания"
  8141. #: flatcamTools/ToolSub.py:230 flatcamTools/ToolSub.py:421
  8142. msgid "[ERROR_NOTCL] No Target object loaded."
  8143. msgstr ""
  8144. #: flatcamTools/ToolSub.py:242 flatcamTools/ToolSub.py:433
  8145. msgid "[ERROR_NOTCL] No Substractor object loaded."
  8146. msgstr ""
  8147. #: flatcamTools/ToolSub.py:294
  8148. #, python-format
  8149. msgid "Parsing aperture %s geometry ..."
  8150. msgstr ""
  8151. #: flatcamTools/ToolSub.py:396 flatcamTools/ToolSub.py:539
  8152. msgid "Generating new object ..."
  8153. msgstr "Генерация нового объекта ..."
  8154. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:542
  8155. msgid "[ERROR_NOTCL] Generating new object failed."
  8156. msgstr ""
  8157. #: flatcamTools/ToolSub.py:403 flatcamTools/ToolSub.py:547
  8158. #, python-format
  8159. msgid "[success] Created: %s"
  8160. msgstr ""
  8161. #: flatcamTools/ToolSub.py:444
  8162. msgid ""
  8163. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  8164. msgstr ""
  8165. #: flatcamTools/ToolSub.py:489
  8166. msgid "Parsing solid_geometry ..."
  8167. msgstr ""
  8168. #: flatcamTools/ToolSub.py:491
  8169. #, python-format
  8170. msgid "Parsing tool %s geometry ..."
  8171. msgstr ""
  8172. #: flatcamTools/ToolTransform.py:23
  8173. msgid "Object Transform"
  8174. msgstr "Преобразование объекта"
  8175. #: flatcamTools/ToolTransform.py:84
  8176. msgid ""
  8177. "Rotate the selected object(s).\n"
  8178. "The point of reference is the middle of\n"
  8179. "the bounding box for all selected objects."
  8180. msgstr ""
  8181. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  8182. msgid ""
  8183. "Skew/shear the selected object(s).\n"
  8184. "The point of reference is the middle of\n"
  8185. "the bounding box for all selected objects."
  8186. msgstr ""
  8187. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  8188. msgid ""
  8189. "Scale the selected object(s).\n"
  8190. "The point of reference depends on \n"
  8191. "the Scale reference checkbox state."
  8192. msgstr ""
  8193. #: flatcamTools/ToolTransform.py:202
  8194. msgid ""
  8195. "Scale the selected object(s)\n"
  8196. "using the Scale Factor X for both axis."
  8197. msgstr ""
  8198. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  8199. msgid ""
  8200. "Offset the selected object(s).\n"
  8201. "The point of reference is the middle of\n"
  8202. "the bounding box for all selected objects.\n"
  8203. msgstr ""
  8204. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  8205. msgid ""
  8206. "Flip the selected object(s) over the X axis.\n"
  8207. "Does not create a new object.\n"
  8208. " "
  8209. msgstr ""
  8210. #: flatcamTools/ToolTransform.py:637
  8211. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  8212. msgstr ""
  8213. #: flatcamTools/ToolTransform.py:665
  8214. msgid "CNCJob objects can't be rotated."
  8215. msgstr ""
  8216. #: flatcamTools/ToolTransform.py:673
  8217. msgid "[success] Rotate done ..."
  8218. msgstr "[success] Поворот выполнен ..."
  8219. #: flatcamTools/ToolTransform.py:688
  8220. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  8221. msgstr ""
  8222. #: flatcamTools/ToolTransform.py:723
  8223. msgid "CNCJob objects can't be mirrored/flipped."
  8224. msgstr "Объекты CNCJob не могут быть зеркалировны/отражены."
  8225. #: flatcamTools/ToolTransform.py:757
  8226. msgid ""
  8227. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  8228. msgstr ""
  8229. #: flatcamTools/ToolTransform.py:779
  8230. msgid "CNCJob objects can't be skewed."
  8231. msgstr "CNCJob объекты не могут быть наклонены."
  8232. #: flatcamTools/ToolTransform.py:806
  8233. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  8234. msgstr ""
  8235. #: flatcamTools/ToolTransform.py:839
  8236. msgid "CNCJob objects can't be scaled."
  8237. msgstr "CNCJob объекты не могут быть масштабированы."
  8238. #: flatcamTools/ToolTransform.py:858
  8239. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  8240. msgstr ""
  8241. #: flatcamTools/ToolTransform.py:867
  8242. msgid "CNCJob objects can't be offseted."
  8243. msgstr "Объекты CNCJob не могут быть смещены."
  8244. #~ msgid ""
  8245. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  8246. #~ "Example:\n"
  8247. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8248. #~ "\n"
  8249. #~ "Adjust the value starting with lower values\n"
  8250. #~ "and increasing it if areas that should be painted are still \n"
  8251. #~ "not painted.\n"
  8252. #~ "Lower values = faster processing, faster execution on PCB.\n"
  8253. #~ "Higher values = slow processing and slow execution on CNC\n"
  8254. #~ "due of too many paths."
  8255. #~ msgstr ""
  8256. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  8257. #~ "Example:\n"
  8258. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  8259. #~ "\n"
  8260. #~ "Adjust the value starting with lower values\n"
  8261. #~ "and increasing it if areas that should be painted are still \n"
  8262. #~ "not painted.\n"
  8263. #~ "Lower values = faster processing, faster execution on PCB.\n"
  8264. #~ "Higher values = slow processing and slow execution on CNC\n"
  8265. #~ "due of too many paths."
  8266. #~ msgid "z_cut = Z coord for Toolchange"
  8267. #~ msgstr "z_cut = Z coord for Toolchange"
  8268. #~ msgid "z_move = Z coord for Toolchange"
  8269. #~ msgstr "z_move = Z coord for Toolchange"
  8270. #~ msgid "%s/Project_%s"
  8271. #~ msgstr "%s/Project_%s"
  8272. #~ msgid "tool_tab"
  8273. #~ msgstr "tool_tab"