strings.po 443 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584
  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-08-18 14:51+0300\n"
  9. "PO-Revision-Date: 2019-08-18 14:51+0300\n"
  10. "Last-Translator: \n"
  11. "Language-Team: \n"
  12. "Language: en\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.2.3\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Poedit-Basepath: ../../..\n"
  20. "X-Poedit-SearchPath-0: .\n"
  21. "X-Poedit-SearchPathExcluded-0: build\n"
  22. "X-Poedit-SearchPathExcluded-1: doc\n"
  23. "X-Poedit-SearchPathExcluded-2: tests\n"
  24. #: FlatCAMApp.py:1019
  25. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  26. msgstr ""
  27. "[ERROR] Could not find the Language files. The App strings are missing."
  28. #: FlatCAMApp.py:1932
  29. msgid ""
  30. "(Type help to get started)\n"
  31. "\n"
  32. msgstr ""
  33. "(Type help to get started)\n"
  34. "\n"
  35. #: FlatCAMApp.py:2124 FlatCAMApp.py:6446
  36. msgid "New Project - Not saved"
  37. msgstr "New Project - Not saved"
  38. #: FlatCAMApp.py:2157 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  39. #: flatcamTools/ToolPcbWizard.py:296 flatcamTools/ToolPcbWizard.py:319
  40. msgid "Open cancelled."
  41. msgstr "Open cancelled."
  42. #: FlatCAMApp.py:2172
  43. msgid "Open Config file failed."
  44. msgstr "Open Config file failed."
  45. #: FlatCAMApp.py:2186
  46. msgid "Open Script file failed."
  47. msgstr "Open Script file failed."
  48. #: FlatCAMApp.py:2392
  49. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  50. msgstr "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  51. #: FlatCAMApp.py:2405
  52. msgid ""
  53. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  54. "Geometry is not possible.\n"
  55. "Edit only one geometry at a time."
  56. msgstr ""
  57. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  58. "Geometry is not possible.\n"
  59. "Edit only one geometry at a time."
  60. #: FlatCAMApp.py:2459
  61. msgid "[WARNING_NOTCL] Editor is activated ..."
  62. msgstr "[WARNING_NOTCL] Editor is activated ..."
  63. #: FlatCAMApp.py:2477
  64. msgid "Do you want to save the edited object?"
  65. msgstr "Do you want to save the edited object?"
  66. #: FlatCAMApp.py:2478 flatcamGUI/FlatCAMGUI.py:1701
  67. msgid "Close Editor"
  68. msgstr "Close Editor"
  69. #: FlatCAMApp.py:2481 FlatCAMApp.py:3597 FlatCAMApp.py:5478 FlatCAMApp.py:6355
  70. #: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
  71. #: flatcamGUI/FlatCAMGUI.py:3895
  72. msgid "Yes"
  73. msgstr "Yes"
  74. #: FlatCAMApp.py:2482 FlatCAMApp.py:3598 FlatCAMApp.py:5479 FlatCAMApp.py:6356
  75. #: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
  76. #: flatcamGUI/FlatCAMGUI.py:3896 flatcamGUI/FlatCAMGUI.py:6118
  77. #: flatcamTools/ToolNonCopperClear.py:122
  78. msgid "No"
  79. msgstr "No"
  80. #: FlatCAMApp.py:2483 FlatCAMApp.py:3599 FlatCAMApp.py:4034 FlatCAMApp.py:5014
  81. #: FlatCAMApp.py:6357
  82. msgid "Cancel"
  83. msgstr "Cancel"
  84. #: FlatCAMApp.py:2510
  85. msgid "[WARNING] Object empty after edit."
  86. msgstr "[WARNING] Object empty after edit."
  87. #: FlatCAMApp.py:2532 FlatCAMApp.py:2551 FlatCAMApp.py:2563
  88. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  89. msgstr ""
  90. "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  91. #: FlatCAMApp.py:2535
  92. #, python-format
  93. msgid "[selected] %s is updated, returning to App..."
  94. msgstr "[selected] %s is updated, returning to App..."
  95. #: FlatCAMApp.py:2900
  96. msgid "[ERROR] Could not load defaults file."
  97. msgstr "[ERROR] Could not load defaults file."
  98. #: FlatCAMApp.py:2912
  99. msgid "[ERROR] Failed to parse defaults file."
  100. msgstr "[ERROR] Failed to parse defaults file."
  101. #: FlatCAMApp.py:2933 FlatCAMApp.py:2937
  102. msgid "Import FlatCAM Preferences"
  103. msgstr "Import FlatCAM Preferences"
  104. #: FlatCAMApp.py:2943
  105. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  106. msgstr "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  107. #: FlatCAMApp.py:2951 FlatCAMApp.py:3010 FlatCAMApp.py:3476
  108. msgid "[ERROR_NOTCL] Could not load defaults file."
  109. msgstr "[ERROR_NOTCL] Could not load defaults file."
  110. #: FlatCAMApp.py:2959 FlatCAMApp.py:3485
  111. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  112. msgstr "[ERROR_NOTCL] Failed to parse defaults file."
  113. #: FlatCAMApp.py:2963
  114. #, python-format
  115. msgid "[success] Imported Defaults from %s"
  116. msgstr "[success] Imported Defaults from %s"
  117. #: FlatCAMApp.py:2978 FlatCAMApp.py:2983
  118. msgid "Export FlatCAM Preferences"
  119. msgstr "Export FlatCAM Preferences"
  120. #: FlatCAMApp.py:2990
  121. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  122. msgstr "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  123. #: FlatCAMApp.py:2998 FlatCAMApp.py:4825 FlatCAMApp.py:7291 FlatCAMApp.py:7401
  124. #: FlatCAMApp.py:7522 FlatCAMApp.py:7577 FlatCAMApp.py:7688 FlatCAMApp.py:7811
  125. #: FlatCAMObj.py:5884 flatcamTools/ToolSolderPaste.py:1400
  126. msgid ""
  127. "[WARNING] Permission denied, saving not possible.\n"
  128. "Most likely another app is holding the file open and not accessible."
  129. msgstr ""
  130. "[WARNING] Permission denied, saving not possible.\n"
  131. "Most likely another app is holding the file open and not accessible."
  132. #: FlatCAMApp.py:3029 FlatCAMApp.py:3530
  133. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  134. msgstr "[ERROR_NOTCL] Failed to write defaults to file."
  135. #: FlatCAMApp.py:3089
  136. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  137. msgstr "[ERROR_NOTCL] Failed to open recent files file for writing."
  138. #: FlatCAMApp.py:3099
  139. msgid "[ERROR_NOTCL] Failed to open recent projects file for writing."
  140. msgstr "[ERROR_NOTCL] Failed to open recent projects file for writing."
  141. #: FlatCAMApp.py:3176 camlib.py:4490
  142. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  143. msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  144. #: FlatCAMApp.py:3177
  145. #, python-brace-format
  146. msgid ""
  147. "Object ({kind}) failed because: {error} \n"
  148. "\n"
  149. msgstr ""
  150. "Object ({kind}) failed because: {error} \n"
  151. "\n"
  152. #: FlatCAMApp.py:3197
  153. msgid "Converting units to "
  154. msgstr "Converting units to "
  155. #: FlatCAMApp.py:3276 FlatCAMApp.py:3279 FlatCAMApp.py:3282 FlatCAMApp.py:3285
  156. #, python-brace-format
  157. msgid ""
  158. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  159. "span>"
  160. msgstr ""
  161. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  162. "span>"
  163. #: FlatCAMApp.py:3381
  164. #, python-brace-format
  165. msgid ""
  166. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  167. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  168. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  169. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  170. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  171. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  172. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  173. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  174. "downloads/\">here.</a><BR>"
  175. msgstr ""
  176. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  177. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  178. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  179. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  180. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  181. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  182. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  183. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  184. "downloads/\">here.</a><BR>"
  185. #: FlatCAMApp.py:3414
  186. msgid "Close"
  187. msgstr "Close"
  188. #: FlatCAMApp.py:3534
  189. msgid "[success] Defaults saved."
  190. msgstr "[success] Defaults saved."
  191. #: FlatCAMApp.py:3555
  192. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  193. msgstr "[ERROR_NOTCL] Could not load factory defaults file."
  194. #: FlatCAMApp.py:3564
  195. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  196. msgstr "[ERROR_NOTCL] Failed to parse factory defaults file."
  197. #: FlatCAMApp.py:3578
  198. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  199. msgstr "[ERROR_NOTCL] Failed to write factory defaults to file."
  200. #: FlatCAMApp.py:3582
  201. msgid "Factory defaults saved."
  202. msgstr "Factory defaults saved."
  203. #: FlatCAMApp.py:3587 flatcamGUI/FlatCAMGUI.py:3231
  204. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  205. msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  206. #: FlatCAMApp.py:3592 FlatCAMTranslation.py:164
  207. msgid ""
  208. "There are files/objects modified in FlatCAM. \n"
  209. "Do you want to Save the project?"
  210. msgstr ""
  211. "There are files/objects modified in FlatCAM. \n"
  212. "Do you want to Save the project?"
  213. #: FlatCAMApp.py:3595 FlatCAMApp.py:6353 FlatCAMTranslation.py:167
  214. msgid "Save changes"
  215. msgstr "Save changes"
  216. #: FlatCAMApp.py:3666
  217. msgid ""
  218. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  219. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  220. "is to convert from one to another and retry joining \n"
  221. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  222. "be lost and the result may not be what was expected. \n"
  223. "Check the generated GCODE."
  224. msgstr ""
  225. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  226. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  227. "is to convert from one to another and retry joining \n"
  228. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  229. "be lost and the result may not be what was expected. \n"
  230. "Check the generated GCODE."
  231. #: FlatCAMApp.py:3707
  232. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  233. msgstr "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  234. #: FlatCAMApp.py:3729
  235. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  236. msgstr "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  237. #: FlatCAMApp.py:3744 FlatCAMApp.py:3769
  238. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  239. msgstr "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  240. #: FlatCAMApp.py:3748 FlatCAMApp.py:3773
  241. #, python-format
  242. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  243. msgstr "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  244. #: FlatCAMApp.py:3761
  245. msgid "[success] A Geometry object was converted to MultiGeo type."
  246. msgstr "[success] A Geometry object was converted to MultiGeo type."
  247. #: FlatCAMApp.py:3787
  248. msgid "[success] A Geometry object was converted to SingleGeo type."
  249. msgstr "[success] A Geometry object was converted to SingleGeo type."
  250. #: FlatCAMApp.py:4028
  251. msgid "Toggle Units"
  252. msgstr "Toggle Units"
  253. #: FlatCAMApp.py:4030
  254. #| msgid "<B>Change project units ...</B>"
  255. msgid "Change project units ..."
  256. msgstr "Change project units ..."
  257. #: FlatCAMApp.py:4031
  258. msgid ""
  259. "Changing the units of the project causes all geometrical properties of all "
  260. "objects to be scaled accordingly.\n"
  261. "Continue?"
  262. msgstr ""
  263. "Changing the units of the project causes all geometrical properties of all "
  264. "objects to be scaled accordingly.\n"
  265. "Continue?"
  266. #: FlatCAMApp.py:4033 FlatCAMApp.py:4908 FlatCAMApp.py:5013 FlatCAMApp.py:6631
  267. #: FlatCAMApp.py:6644 FlatCAMApp.py:6884 FlatCAMApp.py:6894
  268. msgid "Ok"
  269. msgstr "Ok"
  270. #: FlatCAMApp.py:4081
  271. #, python-format
  272. msgid "[success] Converted units to %s"
  273. msgstr "[success] Converted units to %s"
  274. #: FlatCAMApp.py:4092
  275. msgid "[WARNING_NOTCL] Units conversion cancelled."
  276. msgstr "[WARNING_NOTCL] Units conversion cancelled."
  277. #: FlatCAMApp.py:4774
  278. msgid "Open file"
  279. msgstr "Open file"
  280. #: FlatCAMApp.py:4805 FlatCAMApp.py:4810
  281. msgid "Export G-Code ..."
  282. msgstr "Export G-Code ..."
  283. #: FlatCAMApp.py:4813
  284. msgid "[WARNING_NOTCL] Export Code cancelled."
  285. msgstr "[WARNING_NOTCL] Export Code cancelled."
  286. #: FlatCAMApp.py:4822
  287. msgid "[WARNING] No such file or directory"
  288. msgstr "[WARNING] No such file or directory"
  289. #: FlatCAMApp.py:4833
  290. #, python-format
  291. msgid "Saved to: %s"
  292. msgstr "Saved to: %s"
  293. #: FlatCAMApp.py:4896 FlatCAMApp.py:4929 FlatCAMApp.py:4940 FlatCAMApp.py:4951
  294. #: flatcamTools/ToolNonCopperClear.py:652 flatcamTools/ToolSolderPaste.py:767
  295. msgid ""
  296. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  297. "format."
  298. msgstr ""
  299. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  300. "format."
  301. #: FlatCAMApp.py:4901 FlatCAMApp.py:4934 FlatCAMApp.py:4945 FlatCAMApp.py:4956
  302. #: flatcamGUI/FlatCAMGUI.py:3111
  303. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  304. msgstr "[WARNING_NOTCL] Adding Tool cancelled ..."
  305. #: FlatCAMApp.py:4904
  306. msgid ""
  307. "Adding Tool works only when Advanced is checked.\n"
  308. "Go to Preferences -> General - Show Advanced Options."
  309. msgstr ""
  310. "Adding Tool works only when Advanced is checked.\n"
  311. "Go to Preferences -> General - Show Advanced Options."
  312. #: FlatCAMApp.py:5008
  313. msgid "Delete objects"
  314. msgstr "Delete objects"
  315. #: FlatCAMApp.py:5011
  316. msgid ""
  317. "Are you sure you want to permanently delete\n"
  318. "the selected objects?"
  319. msgstr ""
  320. "Are you sure you want to permanently delete\n"
  321. "the selected objects?"
  322. #: FlatCAMApp.py:5040
  323. msgid "Object(s) deleted ..."
  324. msgstr "Object(s) deleted ..."
  325. #: FlatCAMApp.py:5044
  326. msgid "Failed. No object(s) selected..."
  327. msgstr "Failed. No object(s) selected..."
  328. #: FlatCAMApp.py:5046
  329. msgid "Save the work in Editor and try again ..."
  330. msgstr "Save the work in Editor and try again ..."
  331. #: FlatCAMApp.py:5076
  332. msgid "Click to set the origin ..."
  333. msgstr "Click to set the origin ..."
  334. #: FlatCAMApp.py:5088
  335. msgid "Jump to ..."
  336. msgstr "Jump to ..."
  337. #: FlatCAMApp.py:5089
  338. msgid "Enter the coordinates in format X,Y:"
  339. msgstr "Enter the coordinates in format X,Y:"
  340. #: FlatCAMApp.py:5096
  341. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  342. msgstr "Wrong coordinates. Enter coordinates in format: X,Y"
  343. #: FlatCAMApp.py:5114 flatcamEditors/FlatCAMExcEditor.py:3418
  344. #: flatcamEditors/FlatCAMExcEditor.py:3425
  345. #: flatcamEditors/FlatCAMGeoEditor.py:3739
  346. #: flatcamEditors/FlatCAMGeoEditor.py:3753
  347. #: flatcamEditors/FlatCAMGrbEditor.py:1057
  348. #: flatcamEditors/FlatCAMGrbEditor.py:1160
  349. #: flatcamEditors/FlatCAMGrbEditor.py:1433
  350. #: flatcamEditors/FlatCAMGrbEditor.py:1690
  351. #: flatcamEditors/FlatCAMGrbEditor.py:4147
  352. #: flatcamEditors/FlatCAMGrbEditor.py:4161 flatcamGUI/FlatCAMGUI.py:2503
  353. #: flatcamGUI/FlatCAMGUI.py:2515
  354. msgid "[success] Done."
  355. msgstr "[success] Done."
  356. #: FlatCAMApp.py:5246 FlatCAMApp.py:5313
  357. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  358. msgstr "[WARNING_NOTCL] No object is selected. Select an object and try again."
  359. #: FlatCAMApp.py:5354
  360. msgid "[success] Origin set ..."
  361. msgstr "[success] Origin set ..."
  362. #: FlatCAMApp.py:5373 flatcamGUI/GUIElements.py:1375
  363. msgid "Preferences"
  364. msgstr "Preferences"
  365. #: FlatCAMApp.py:5439
  366. msgid "[WARNING_NOTCL] Preferences edited but not saved."
  367. msgstr "[WARNING_NOTCL] Preferences edited but not saved."
  368. #: FlatCAMApp.py:5473
  369. msgid ""
  370. "One or more values are changed.\n"
  371. "Do you want to save the Preferences?"
  372. msgstr ""
  373. "One or more values are changed.\n"
  374. "Do you want to save the Preferences?"
  375. #: FlatCAMApp.py:5475 flatcamGUI/FlatCAMGUI.py:197 flatcamGUI/FlatCAMGUI.py:977
  376. msgid "Save Preferences"
  377. msgstr "Save Preferences"
  378. #: FlatCAMApp.py:5487
  379. msgid "[success] Preferences saved."
  380. msgstr "[success] Preferences saved."
  381. #: FlatCAMApp.py:5502
  382. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  383. msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis."
  384. #: FlatCAMApp.py:5527
  385. msgid "[success] Flip on Y axis done."
  386. msgstr "[success] Flip on Y axis done."
  387. #: FlatCAMApp.py:5529 FlatCAMApp.py:5569
  388. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  389. #: flatcamEditors/FlatCAMGrbEditor.py:5575 flatcamTools/ToolTransform.py:747
  390. #, python-format
  391. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  392. msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  393. #: FlatCAMApp.py:5542
  394. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  395. msgstr "[WARNING_NOTCL] No object selected to Flip on X axis."
  396. #: FlatCAMApp.py:5567
  397. msgid "[success] Flip on X axis done."
  398. msgstr "[success] Flip on X axis done."
  399. #: FlatCAMApp.py:5582
  400. msgid "[WARNING_NOTCL] No object selected to Rotate."
  401. msgstr "[WARNING_NOTCL] No object selected to Rotate."
  402. #: FlatCAMApp.py:5585 FlatCAMApp.py:5630 FlatCAMApp.py:5661
  403. msgid "Transform"
  404. msgstr "Transform"
  405. #: FlatCAMApp.py:5585 FlatCAMApp.py:5630 FlatCAMApp.py:5661
  406. msgid "Enter the Angle value:"
  407. msgstr "Enter the Angle value:"
  408. #: FlatCAMApp.py:5615
  409. msgid "[success] Rotation done."
  410. msgstr "[success] Rotation done."
  411. #: FlatCAMApp.py:5617 flatcamEditors/FlatCAMGeoEditor.py:1298
  412. #: flatcamEditors/FlatCAMGrbEditor.py:5504 flatcamTools/ToolTransform.py:676
  413. #, python-format
  414. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  415. msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  416. #: FlatCAMApp.py:5628
  417. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  418. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  419. #: FlatCAMApp.py:5649
  420. msgid "[success] Skew on X axis done."
  421. msgstr "[success] Skew on X axis done."
  422. #: FlatCAMApp.py:5659
  423. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  424. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  425. #: FlatCAMApp.py:5680
  426. msgid "[success] Skew on Y axis done."
  427. msgstr "[success] Skew on Y axis done."
  428. #: FlatCAMApp.py:5731
  429. msgid "Grid On/Off"
  430. msgstr "Grid On/Off"
  431. #: FlatCAMApp.py:5744 flatcamEditors/FlatCAMGeoEditor.py:937
  432. #: flatcamEditors/FlatCAMGrbEditor.py:2451
  433. #: flatcamEditors/FlatCAMGrbEditor.py:5093 flatcamGUI/ObjectUI.py:990
  434. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  435. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:132
  436. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  437. #: flatcamTools/ToolTransform.py:337
  438. msgid "Add"
  439. msgstr "Add"
  440. #: FlatCAMApp.py:5745 FlatCAMObj.py:3397
  441. #: flatcamEditors/FlatCAMGrbEditor.py:2456 flatcamGUI/FlatCAMGUI.py:544
  442. #: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1699
  443. #: flatcamGUI/FlatCAMGUI.py:2042 flatcamGUI/ObjectUI.py:1006
  444. #: flatcamTools/ToolNonCopperClear.py:160 flatcamTools/ToolPaint.py:144
  445. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  446. msgid "Delete"
  447. msgstr "Delete"
  448. #: FlatCAMApp.py:5758
  449. msgid "New Grid ..."
  450. msgstr "New Grid ..."
  451. #: FlatCAMApp.py:5759
  452. msgid "Enter a Grid Value:"
  453. msgstr "Enter a Grid Value:"
  454. #: FlatCAMApp.py:5767 FlatCAMApp.py:5794
  455. msgid ""
  456. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  457. "format."
  458. msgstr ""
  459. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  460. "format."
  461. #: FlatCAMApp.py:5773
  462. msgid "[success] New Grid added ..."
  463. msgstr "[success] New Grid added ..."
  464. #: FlatCAMApp.py:5776
  465. msgid "[WARNING_NOTCL] Grid already exists ..."
  466. msgstr "[WARNING_NOTCL] Grid already exists ..."
  467. #: FlatCAMApp.py:5779
  468. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  469. msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..."
  470. #: FlatCAMApp.py:5801
  471. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  472. msgstr "[ERROR_NOTCL] Grid Value does not exist ..."
  473. #: FlatCAMApp.py:5804
  474. msgid "[success] Grid Value deleted ..."
  475. msgstr "[success] Grid Value deleted ..."
  476. #: FlatCAMApp.py:5807
  477. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  478. msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..."
  479. #: FlatCAMApp.py:5813
  480. msgid "Key Shortcut List"
  481. msgstr "Key Shortcut List"
  482. #: FlatCAMApp.py:5846
  483. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  484. msgstr "[WARNING_NOTCL] No object selected to copy it's name"
  485. #: FlatCAMApp.py:5850
  486. msgid "Name copied on clipboard ..."
  487. msgstr "Name copied on clipboard ..."
  488. #: FlatCAMApp.py:5892 flatcamEditors/FlatCAMGrbEditor.py:4088
  489. msgid "[success] Coordinates copied to clipboard."
  490. msgstr "[success] Coordinates copied to clipboard."
  491. #: FlatCAMApp.py:6141 FlatCAMApp.py:6144 FlatCAMApp.py:6147 FlatCAMApp.py:6150
  492. #: FlatCAMApp.py:6165 FlatCAMApp.py:6168 FlatCAMApp.py:6171 FlatCAMApp.py:6174
  493. #: FlatCAMApp.py:6214 FlatCAMApp.py:6217 FlatCAMApp.py:6220 FlatCAMApp.py:6223
  494. #: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
  495. #: ObjectCollection.py:734
  496. #, python-brace-format
  497. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  498. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selected"
  499. #: FlatCAMApp.py:6350
  500. msgid ""
  501. "There are files/objects opened in FlatCAM.\n"
  502. "Creating a New project will delete them.\n"
  503. "Do you want to Save the project?"
  504. msgstr ""
  505. "There are files/objects opened in FlatCAM.\n"
  506. "Creating a New project will delete them.\n"
  507. "Do you want to Save the project?"
  508. #: FlatCAMApp.py:6371
  509. msgid "[success] New Project created..."
  510. msgstr "[success] New Project created..."
  511. #: FlatCAMApp.py:6490 FlatCAMApp.py:6493 flatcamGUI/FlatCAMGUI.py:625
  512. #: flatcamGUI/FlatCAMGUI.py:1918
  513. msgid "Open Gerber"
  514. msgstr "Open Gerber"
  515. #: FlatCAMApp.py:6498
  516. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  517. msgstr "[WARNING_NOTCL] Open Gerber cancelled."
  518. #: FlatCAMApp.py:6519 FlatCAMApp.py:6522 flatcamGUI/FlatCAMGUI.py:626
  519. #: flatcamGUI/FlatCAMGUI.py:1919
  520. msgid "Open Excellon"
  521. msgstr "Open Excellon"
  522. #: FlatCAMApp.py:6527
  523. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  524. msgstr "[WARNING_NOTCL] Open Excellon cancelled."
  525. #: FlatCAMApp.py:6549 FlatCAMApp.py:6552
  526. msgid "Open G-Code"
  527. msgstr "Open G-Code"
  528. #: FlatCAMApp.py:6557
  529. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  530. msgstr "[WARNING_NOTCL] Open G-Code cancelled."
  531. #: FlatCAMApp.py:6575 FlatCAMApp.py:6578
  532. msgid "Open Project"
  533. msgstr "Open Project"
  534. #: FlatCAMApp.py:6586
  535. msgid "[WARNING_NOTCL] Open Project cancelled."
  536. msgstr "[WARNING_NOTCL] Open Project cancelled."
  537. #: FlatCAMApp.py:6605 FlatCAMApp.py:6608
  538. msgid "Open Configuration File"
  539. msgstr "Open Configuration File"
  540. #: FlatCAMApp.py:6612
  541. msgid "[WARNING_NOTCL] Open Config cancelled."
  542. msgstr "[WARNING_NOTCL] Open Config cancelled."
  543. #: FlatCAMApp.py:6627 FlatCAMApp.py:6880 FlatCAMApp.py:9140 FlatCAMApp.py:9160
  544. #: FlatCAMApp.py:9181 FlatCAMApp.py:9203
  545. msgid "[WARNING_NOTCL] No object selected."
  546. msgstr "[WARNING_NOTCL] No object selected."
  547. #: FlatCAMApp.py:6628 FlatCAMApp.py:6881
  548. msgid "Please Select a Geometry object to export"
  549. msgstr "Please Select a Geometry object to export"
  550. #: FlatCAMApp.py:6641
  551. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  552. msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  553. #: FlatCAMApp.py:6654 FlatCAMApp.py:6658
  554. msgid "Export SVG"
  555. msgstr "Export SVG"
  556. #: FlatCAMApp.py:6663
  557. msgid "[WARNING_NOTCL] Export SVG cancelled."
  558. msgstr "[WARNING_NOTCL] Export SVG cancelled."
  559. #: FlatCAMApp.py:6682
  560. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  561. msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  562. #: FlatCAMApp.py:6688 FlatCAMApp.py:6692
  563. msgid "Export PNG Image"
  564. msgstr "Export PNG Image"
  565. #: FlatCAMApp.py:6697
  566. msgid "Export PNG cancelled."
  567. msgstr "Export PNG cancelled."
  568. #: FlatCAMApp.py:6716
  569. msgid ""
  570. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  571. msgstr ""
  572. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  573. #: FlatCAMApp.py:6721 FlatCAMApp.py:6844
  574. msgid ""
  575. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  576. msgstr ""
  577. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  578. #: FlatCAMApp.py:6733
  579. msgid "Save Gerber source file"
  580. msgstr "Save Gerber source file"
  581. #: FlatCAMApp.py:6738
  582. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  583. msgstr "[WARNING_NOTCL] Save Gerber source file cancelled."
  584. #: FlatCAMApp.py:6757
  585. msgid ""
  586. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  587. "export."
  588. msgstr ""
  589. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  590. "export."
  591. #: FlatCAMApp.py:6762 FlatCAMApp.py:6803
  592. msgid ""
  593. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  594. msgstr ""
  595. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  596. #: FlatCAMApp.py:6770 FlatCAMApp.py:6774
  597. msgid "Save Excellon source file"
  598. msgstr "Save Excellon source file"
  599. #: FlatCAMApp.py:6779
  600. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  601. msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled."
  602. #: FlatCAMApp.py:6798
  603. msgid ""
  604. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  605. "export."
  606. msgstr ""
  607. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  608. "export."
  609. #: FlatCAMApp.py:6811 FlatCAMApp.py:6815
  610. msgid "Export Excellon"
  611. msgstr "Export Excellon"
  612. #: FlatCAMApp.py:6820
  613. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  614. msgstr "[WARNING_NOTCL] Export Excellon cancelled."
  615. #: FlatCAMApp.py:6839
  616. msgid ""
  617. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  618. msgstr ""
  619. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  620. #: FlatCAMApp.py:6852 FlatCAMApp.py:6856
  621. msgid "Export Gerber"
  622. msgstr "Export Gerber"
  623. #: FlatCAMApp.py:6861
  624. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  625. msgstr "[WARNING_NOTCL] Export Gerber cancelled."
  626. #: FlatCAMApp.py:6891
  627. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  628. msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
  629. #: FlatCAMApp.py:6905 FlatCAMApp.py:6909
  630. msgid "Export DXF"
  631. msgstr "Export DXF"
  632. #: FlatCAMApp.py:6915
  633. msgid "[WARNING_NOTCL] Export DXF cancelled."
  634. msgstr "[WARNING_NOTCL] Export DXF cancelled."
  635. #: FlatCAMApp.py:6935 FlatCAMApp.py:6938
  636. msgid "Import SVG"
  637. msgstr "Import SVG"
  638. #: FlatCAMApp.py:6947
  639. msgid "[WARNING_NOTCL] Open SVG cancelled."
  640. msgstr "[WARNING_NOTCL] Open SVG cancelled."
  641. #: FlatCAMApp.py:6966 FlatCAMApp.py:6970
  642. msgid "Import DXF"
  643. msgstr "Import DXF"
  644. #: FlatCAMApp.py:6979
  645. msgid "[WARNING_NOTCL] Open DXF cancelled."
  646. msgstr "[WARNING_NOTCL] Open DXF cancelled."
  647. #: FlatCAMApp.py:6997
  648. #, python-format
  649. msgid "%s"
  650. msgstr "%s"
  651. #: FlatCAMApp.py:7017
  652. msgid ""
  653. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  654. msgstr ""
  655. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  656. #: FlatCAMApp.py:7024
  657. msgid ""
  658. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  659. "file code."
  660. msgstr ""
  661. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  662. "file code."
  663. #: FlatCAMApp.py:7032
  664. msgid "Source Editor"
  665. msgstr "Source Editor"
  666. #: FlatCAMApp.py:7042
  667. #, python-format
  668. msgid "[ERROR]App.on_view_source() -->%s"
  669. msgstr "[ERROR]App.on_view_source() -->%s"
  670. #: FlatCAMApp.py:7054 FlatCAMApp.py:8236 FlatCAMObj.py:5665
  671. #: flatcamTools/ToolSolderPaste.py:1284
  672. msgid "Code Editor"
  673. msgstr "Code Editor"
  674. #: FlatCAMApp.py:7066
  675. msgid "Script Editor"
  676. msgstr "Script Editor"
  677. #: FlatCAMApp.py:7069
  678. msgid ""
  679. "#\n"
  680. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  681. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  682. "html\n"
  683. "#\n"
  684. "\n"
  685. "# FlatCAM commands list:\n"
  686. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  687. "AlignDrillGrid, ClearShell, Cncjob,\n"
  688. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  689. "GeoUnion, GetNames, GetSys,\n"
  690. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  691. "ListSys, MillHoles, Mirror, New,\n"
  692. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  693. "Options, Paint, Panelize,\n"
  694. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  695. "SubtractRectangle, Version,\n"
  696. "# WriteGCode\n"
  697. "#\n"
  698. "\n"
  699. msgstr ""
  700. "#\n"
  701. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  702. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  703. "html\n"
  704. "#\n"
  705. "\n"
  706. "# FlatCAM commands list:\n"
  707. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  708. "AlignDrillGrid, ClearShell, Cncjob,\n"
  709. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  710. "GeoUnion, GetNames, GetSys,\n"
  711. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  712. "ListSys, MillHoles, Mirror, New,\n"
  713. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  714. "Options, Paint, Panelize,\n"
  715. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  716. "SubtractRectangle, Version,\n"
  717. "# WriteGCode\n"
  718. "#\n"
  719. "\n"
  720. #: FlatCAMApp.py:7092 FlatCAMApp.py:7095
  721. msgid "Open TCL script"
  722. msgstr "Open TCL script"
  723. #: FlatCAMApp.py:7103
  724. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  725. msgstr "[WARNING_NOTCL] Open TCL script cancelled."
  726. #: FlatCAMApp.py:7115
  727. #, python-format
  728. msgid "[ERROR]App.on_fileopenscript() -->%s"
  729. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  730. #: FlatCAMApp.py:7141 FlatCAMApp.py:7144
  731. msgid "Run TCL script"
  732. msgstr "Run TCL script"
  733. #: FlatCAMApp.py:7152
  734. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  735. msgstr "[WARNING_NOTCL] Run TCL script cancelled."
  736. #: FlatCAMApp.py:7204 FlatCAMApp.py:7208
  737. msgid "Save Project As ..."
  738. msgstr "Save Project As ..."
  739. #: FlatCAMApp.py:7205
  740. #, python-brace-format
  741. msgid "{l_save}/Project_{date}"
  742. msgstr "{l_save}/Project_{date}"
  743. #: FlatCAMApp.py:7213
  744. msgid "[WARNING_NOTCL] Save Project cancelled."
  745. msgstr "[WARNING_NOTCL] Save Project cancelled."
  746. #: FlatCAMApp.py:7258
  747. msgid "Exporting SVG"
  748. msgstr "Exporting SVG"
  749. #: FlatCAMApp.py:7298 FlatCAMApp.py:7409 FlatCAMApp.py:7530
  750. #, python-format
  751. msgid "[success] SVG file exported to %s"
  752. msgstr "[success] SVG file exported to %s"
  753. #: FlatCAMApp.py:7329 FlatCAMApp.py:7455
  754. #, python-format
  755. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  756. msgstr "[WARNING_NOTCL] No object Box. Using instead %s"
  757. #: FlatCAMApp.py:7412 FlatCAMApp.py:7533
  758. msgid "Generating Film ... Please wait."
  759. msgstr "Generating Film ... Please wait."
  760. #: FlatCAMApp.py:7695
  761. #, python-format
  762. msgid "[success] Excellon file exported to %s"
  763. msgstr "[success] Excellon file exported to %s"
  764. #: FlatCAMApp.py:7702
  765. msgid "Exporting Excellon"
  766. msgstr "Exporting Excellon"
  767. #: FlatCAMApp.py:7707 FlatCAMApp.py:7714
  768. msgid "[ERROR_NOTCL] Could not export Excellon file."
  769. msgstr "[ERROR_NOTCL] Could not export Excellon file."
  770. #: FlatCAMApp.py:7818
  771. #, python-format
  772. msgid "[success] Gerber file exported to %s"
  773. msgstr "[success] Gerber file exported to %s"
  774. #: FlatCAMApp.py:7825
  775. msgid "Exporting Gerber"
  776. msgstr "Exporting Gerber"
  777. #: FlatCAMApp.py:7830 FlatCAMApp.py:7837
  778. msgid "[ERROR_NOTCL] Could not export Gerber file."
  779. msgstr "[ERROR_NOTCL] Could not export Gerber file."
  780. #: FlatCAMApp.py:7877
  781. #, python-format
  782. msgid "[success] DXF file exported to %s"
  783. msgstr "[success] DXF file exported to %s"
  784. #: FlatCAMApp.py:7883
  785. msgid "Exporting DXF"
  786. msgstr "Exporting DXF"
  787. #: FlatCAMApp.py:7888 FlatCAMApp.py:7895
  788. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  789. msgstr "[[WARNING_NOTCL]] Could not export DXF file."
  790. #: FlatCAMApp.py:7915 FlatCAMApp.py:7957 FlatCAMApp.py:8001
  791. msgid ""
  792. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  793. "Gerber are supported"
  794. msgstr ""
  795. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  796. "Gerber are supported"
  797. #: FlatCAMApp.py:7925
  798. msgid "Importing SVG"
  799. msgstr "Importing SVG"
  800. #: FlatCAMApp.py:7936 FlatCAMApp.py:7978 FlatCAMApp.py:8021 FlatCAMApp.py:8098
  801. #: FlatCAMApp.py:8159 FlatCAMApp.py:8222 flatcamTools/ToolPDF.py:212
  802. #, python-format
  803. msgid "[success] Opened: %s"
  804. msgstr "[success] Opened: %s"
  805. #: FlatCAMApp.py:7967
  806. msgid "Importing DXF"
  807. msgstr "Importing DXF"
  808. #: FlatCAMApp.py:8009
  809. msgid "Importing Image"
  810. msgstr "Importing Image"
  811. #: FlatCAMApp.py:8050 FlatCAMApp.py:8052
  812. #, python-format
  813. msgid "[ERROR_NOTCL] Failed to open file: %s"
  814. msgstr "[ERROR_NOTCL] Failed to open file: %s"
  815. #: FlatCAMApp.py:8055
  816. #, python-brace-format
  817. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  818. msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  819. #: FlatCAMApp.py:8062 FlatCAMObj.py:4344
  820. #: flatcamEditors/FlatCAMGrbEditor.py:3908
  821. msgid "[ERROR] An internal error has occurred. See shell.\n"
  822. msgstr "[ERROR] An internal error has occurred. See shell.\n"
  823. #: FlatCAMApp.py:8071
  824. msgid ""
  825. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  826. msgstr ""
  827. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  828. #: FlatCAMApp.py:8079
  829. msgid "Opening Gerber"
  830. msgstr "Opening Gerber"
  831. #: FlatCAMApp.py:8089
  832. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  833. msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  834. #: FlatCAMApp.py:8122 flatcamTools/ToolPcbWizard.py:418
  835. msgid "[ERROR_NOTCL] This is not Excellon file."
  836. msgstr "[ERROR_NOTCL] This is not Excellon file."
  837. #: FlatCAMApp.py:8125
  838. #, python-format
  839. msgid "[ERROR_NOTCL] Cannot open file: %s"
  840. msgstr "[ERROR_NOTCL] Cannot open file: %s"
  841. #: FlatCAMApp.py:8130 flatcamTools/ToolPcbWizard.py:427
  842. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  843. msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  844. #: FlatCAMApp.py:8143 flatcamTools/ToolPDF.py:262
  845. #: flatcamTools/ToolPcbWizard.py:440
  846. #, python-format
  847. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  848. msgstr "[ERROR_NOTCL] No geometry found in file: %s"
  849. #: FlatCAMApp.py:8146
  850. msgid "Opening Excellon."
  851. msgstr "Opening Excellon."
  852. #: FlatCAMApp.py:8152
  853. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  854. msgstr ""
  855. "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  856. #: FlatCAMApp.py:8189
  857. #, python-format
  858. msgid "[ERROR_NOTCL] Failed to open %s"
  859. msgstr "[ERROR_NOTCL] Failed to open %s"
  860. #: FlatCAMApp.py:8199
  861. msgid "[ERROR_NOTCL] This is not GCODE"
  862. msgstr "[ERROR_NOTCL] This is not GCODE"
  863. #: FlatCAMApp.py:8205
  864. msgid "Opening G-Code."
  865. msgstr "Opening G-Code."
  866. #: FlatCAMApp.py:8213
  867. msgid ""
  868. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  869. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  870. "processing"
  871. msgstr ""
  872. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  873. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  874. "processing"
  875. #: FlatCAMApp.py:8253
  876. #, python-format
  877. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  878. msgstr "[ERROR_NOTCL] Failed to open config file: %s"
  879. #: FlatCAMApp.py:8274
  880. #| msgid "Generating panel ... Please wait."
  881. msgid "Loading Project ... Please Wait ..."
  882. msgstr "Loading Project ... Please Wait ..."
  883. #: FlatCAMApp.py:8281 FlatCAMApp.py:8299
  884. #, python-format
  885. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  886. msgstr "[ERROR_NOTCL] Failed to open project file: %s"
  887. #: FlatCAMApp.py:8323
  888. msgid "Loading Project ... restoring"
  889. msgstr "Loading Project ... restoring"
  890. #: FlatCAMApp.py:8328
  891. #, python-format
  892. msgid "[success] Project loaded from: %s"
  893. msgstr "[success] Project loaded from: %s"
  894. #: FlatCAMApp.py:8434
  895. msgid "Available commands:\n"
  896. msgstr "Available commands:\n"
  897. #: FlatCAMApp.py:8436
  898. msgid ""
  899. "\n"
  900. "\n"
  901. "Type help <command_name> for usage.\n"
  902. " Example: help open_gerber"
  903. msgstr ""
  904. "\n"
  905. "\n"
  906. "Type help <command_name> for usage.\n"
  907. " Example: help open_gerber"
  908. #: FlatCAMApp.py:8586
  909. msgid "Shows list of commands."
  910. msgstr "Shows list of commands."
  911. #: FlatCAMApp.py:8643
  912. msgid "[ERROR_NOTCL] Failed to load recent item list."
  913. msgstr "[ERROR_NOTCL] Failed to load recent item list."
  914. #: FlatCAMApp.py:8650
  915. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  916. msgstr "[ERROR_NOTCL] Failed to parse recent item list."
  917. #: FlatCAMApp.py:8660
  918. msgid "[ERROR_NOTCL] Failed to load recent projects item list."
  919. msgstr "[ERROR_NOTCL] Failed to load recent projects item list."
  920. #: FlatCAMApp.py:8667
  921. msgid "[ERROR_NOTCL] Failed to parse recent project item list."
  922. msgstr "[ERROR_NOTCL] Failed to parse recent project item list."
  923. #: FlatCAMApp.py:8726 FlatCAMApp.py:8749
  924. msgid "Clear Recent files"
  925. msgstr "Clear Recent files"
  926. #: FlatCAMApp.py:8766 flatcamGUI/FlatCAMGUI.py:994
  927. msgid "<b>Shortcut Key List</b>"
  928. msgstr "<b>Shortcut Key List</b>"
  929. #: FlatCAMApp.py:8778
  930. #, python-brace-format
  931. msgid ""
  932. "\n"
  933. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  934. "from Project Tab</strong></span></p>\n"
  935. "\n"
  936. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  937. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  938. "\n"
  939. "<ol>\n"
  940. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  941. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  942. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  943. "GUI.<br />\n"
  944. "\t<br />\n"
  945. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  946. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  947. "through the menu/toolbar links offered within the app.</span><br />\n"
  948. "\t&nbsp;</li>\n"
  949. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  950. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  951. "strong>(more simpler is to double click the object name in the Project Tab), "
  952. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  953. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  954. ">\n"
  955. "\t<br />\n"
  956. "\tIf the selection of the object is done on the canvas by single click "
  957. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  958. "properties will be displayed into the Selected Tab. Alternatively, double "
  959. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  960. "strong> and populate it even if it was out of focus.<br />\n"
  961. "\t<br />\n"
  962. "\tYou can change the parameters in this screen and the flow direction is "
  963. "like this:<br />\n"
  964. "\t<br />\n"
  965. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  966. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  967. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  968. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  969. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  970. "span></li>\n"
  971. "</ol>\n"
  972. "\n"
  973. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  974. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  975. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  976. "\n"
  977. " "
  978. msgstr ""
  979. "\n"
  980. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  981. "from Project Tab</strong></span></p>\n"
  982. "\n"
  983. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  984. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  985. "\n"
  986. "<ol>\n"
  987. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  988. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  989. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  990. "GUI.<br />\n"
  991. "\t<br />\n"
  992. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  993. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  994. "through the menu/toolbar links offered within the app.</span><br />\n"
  995. "\t&nbsp;</li>\n"
  996. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  997. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  998. "strong>(more simpler is to double click the object name in the Project Tab), "
  999. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  1000. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  1001. ">\n"
  1002. "\t<br />\n"
  1003. "\tIf the selection of the object is done on the canvas by single click "
  1004. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  1005. "properties will be displayed into the Selected Tab. Alternatively, double "
  1006. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  1007. "strong> and populate it even if it was out of focus.<br />\n"
  1008. "\t<br />\n"
  1009. "\tYou can change the parameters in this screen and the flow direction is "
  1010. "like this:<br />\n"
  1011. "\t<br />\n"
  1012. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  1013. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  1014. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  1015. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  1016. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  1017. "span></li>\n"
  1018. "</ol>\n"
  1019. "\n"
  1020. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  1021. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  1022. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  1023. "\n"
  1024. " "
  1025. #: FlatCAMApp.py:8856
  1026. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  1027. msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  1028. #: FlatCAMApp.py:8863
  1029. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  1030. msgstr "[ERROR_NOTCL] Could not parse information about latest version."
  1031. #: FlatCAMApp.py:8873
  1032. msgid "[success] FlatCAM is up to date!"
  1033. msgstr "[success] FlatCAM is up to date!"
  1034. #: FlatCAMApp.py:8878
  1035. msgid "Newer Version Available"
  1036. msgstr "Newer Version Available"
  1037. #: FlatCAMApp.py:8879
  1038. msgid ""
  1039. "There is a newer version of FlatCAM available for download:\n"
  1040. "\n"
  1041. msgstr ""
  1042. "There is a newer version of FlatCAM available for download:\n"
  1043. "\n"
  1044. #: FlatCAMApp.py:8881
  1045. msgid "info"
  1046. msgstr "info"
  1047. #: FlatCAMApp.py:8900
  1048. msgid "[success] All plots disabled."
  1049. msgstr "[success] All plots disabled."
  1050. #: FlatCAMApp.py:8906
  1051. msgid "[success] All non selected plots disabled."
  1052. msgstr "[success] All non selected plots disabled."
  1053. #: FlatCAMApp.py:8912
  1054. msgid "[success] All plots enabled."
  1055. msgstr "[success] All plots enabled."
  1056. #: FlatCAMApp.py:8918
  1057. msgid "[success] Selected plots enabled..."
  1058. msgstr "[success] Selected plots enabled..."
  1059. #: FlatCAMApp.py:8926
  1060. msgid "[success] Selected plots disabled..."
  1061. msgstr "[success] Selected plots disabled..."
  1062. #: FlatCAMApp.py:8936 FlatCAMApp.py:8954 FlatCAMApp.py:8972
  1063. msgid "Working ..."
  1064. msgstr "Working ..."
  1065. #: FlatCAMApp.py:9009
  1066. msgid "Saving FlatCAM Project"
  1067. msgstr "Saving FlatCAM Project"
  1068. #: FlatCAMApp.py:9030 FlatCAMApp.py:9061
  1069. #, python-format
  1070. msgid "[success] Project saved to: %s"
  1071. msgstr "[success] Project saved to: %s"
  1072. #: FlatCAMApp.py:9048
  1073. #, python-format
  1074. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1075. msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1076. #: FlatCAMApp.py:9055
  1077. #, python-format
  1078. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1079. msgstr ""
  1080. "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1081. #: FlatCAMApp.py:9063
  1082. #, python-format
  1083. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1084. msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1085. #: FlatCAMObj.py:209
  1086. #, python-brace-format
  1087. msgid "[success] Name changed from {old} to {new}"
  1088. msgstr "[success] Name changed from {old} to {new}"
  1089. #: FlatCAMObj.py:558 FlatCAMObj.py:2128 FlatCAMObj.py:3402 FlatCAMObj.py:5558
  1090. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1091. msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
  1092. #: FlatCAMObj.py:570 FlatCAMObj.py:2144 FlatCAMObj.py:3424 FlatCAMObj.py:5564
  1093. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1094. msgstr "<span style=\"color:red;\"><b>Advanced</b></span>"
  1095. #: FlatCAMObj.py:948 FlatCAMObj.py:1051
  1096. msgid "[ERROR_NOTCL] Isolation geometry could not be generated."
  1097. msgstr "[ERROR_NOTCL] Isolation geometry could not be generated."
  1098. #: FlatCAMObj.py:985 FlatCAMObj.py:3097 FlatCAMObj.py:3359 FlatCAMObj.py:3637
  1099. msgid "Rough"
  1100. msgstr "Rough"
  1101. #: FlatCAMObj.py:1003 FlatCAMObj.py:1067
  1102. #, python-format
  1103. msgid "[success] Isolation geometry created: %s"
  1104. msgstr "[success] Isolation geometry created: %s"
  1105. #: FlatCAMObj.py:1246
  1106. msgid "Plotting Apertures"
  1107. msgstr "Plotting Apertures"
  1108. #: FlatCAMObj.py:1969 flatcamEditors/FlatCAMExcEditor.py:2286
  1109. msgid "Total Drills"
  1110. msgstr "Total Drills"
  1111. #: FlatCAMObj.py:1995 flatcamEditors/FlatCAMExcEditor.py:2318
  1112. msgid "Total Slots"
  1113. msgstr "Total Slots"
  1114. #: FlatCAMObj.py:2202 FlatCAMObj.py:3475 FlatCAMObj.py:3765 FlatCAMObj.py:3952
  1115. #: FlatCAMObj.py:3963 FlatCAMObj.py:4081 FlatCAMObj.py:4486 FlatCAMObj.py:4712
  1116. #: FlatCAMObj.py:5124 flatcamEditors/FlatCAMExcEditor.py:2392
  1117. #: flatcamTools/ToolCalculators.py:304 flatcamTools/ToolCalculators.py:315
  1118. #: flatcamTools/ToolCalculators.py:327 flatcamTools/ToolCalculators.py:342
  1119. #: flatcamTools/ToolCalculators.py:355 flatcamTools/ToolCalculators.py:369
  1120. #: flatcamTools/ToolCalculators.py:380 flatcamTools/ToolCalculators.py:391
  1121. #: flatcamTools/ToolCalculators.py:402 flatcamTools/ToolFilm.py:241
  1122. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:643
  1123. #: flatcamTools/ToolNonCopperClear.py:715
  1124. #: flatcamTools/ToolNonCopperClear.py:794
  1125. #: flatcamTools/ToolNonCopperClear.py:811
  1126. #: flatcamTools/ToolNonCopperClear.py:819 flatcamTools/ToolPaint.py:608
  1127. #: flatcamTools/ToolPaint.py:680 flatcamTools/ToolPaint.py:817
  1128. #: flatcamTools/ToolPaint.py:1022 flatcamTools/ToolPaint.py:1176
  1129. #: flatcamTools/ToolPaint.py:1476 flatcamTools/ToolPanelize.py:387
  1130. #: flatcamTools/ToolPanelize.py:399 flatcamTools/ToolPanelize.py:412
  1131. #: flatcamTools/ToolPanelize.py:425 flatcamTools/ToolPanelize.py:437
  1132. #: flatcamTools/ToolPanelize.py:448 flatcamTools/ToolSolderPaste.py:758
  1133. #: flatcamTools/ToolSolderPaste.py:830
  1134. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1135. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  1136. #: FlatCAMObj.py:2444 FlatCAMObj.py:2536 FlatCAMObj.py:2659
  1137. msgid ""
  1138. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1139. msgstr ""
  1140. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1141. #: FlatCAMObj.py:2451
  1142. msgid ""
  1143. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1144. msgstr ""
  1145. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1146. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1147. msgid "Tool_nr"
  1148. msgstr "Tool_nr"
  1149. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1150. #: flatcamEditors/FlatCAMExcEditor.py:1477
  1151. #: flatcamEditors/FlatCAMExcEditor.py:3110 flatcamGUI/ObjectUI.py:554
  1152. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:81
  1153. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1154. msgid "Diameter"
  1155. msgstr "Diameter"
  1156. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1157. msgid "Drills_Nr"
  1158. msgstr "Drills_Nr"
  1159. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1160. msgid "Slots_Nr"
  1161. msgstr "Slots_Nr"
  1162. #: FlatCAMObj.py:2546
  1163. msgid ""
  1164. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1165. msgstr ""
  1166. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1167. #: FlatCAMObj.py:2720 FlatCAMObj.py:4379 FlatCAMObj.py:4585 FlatCAMObj.py:4891
  1168. msgid ""
  1169. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1170. "options[\"z_pdepth\"]"
  1171. msgstr ""
  1172. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1173. "options[\"z_pdepth\"]"
  1174. #: FlatCAMObj.py:2730 FlatCAMObj.py:4389 FlatCAMObj.py:4595 FlatCAMObj.py:4901
  1175. msgid ""
  1176. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1177. "self.options[\"feedrate_probe\"]"
  1178. msgstr ""
  1179. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1180. "self.options[\"feedrate_probe\"]"
  1181. #: FlatCAMObj.py:2760 FlatCAMObj.py:4781 FlatCAMObj.py:4786 FlatCAMObj.py:4933
  1182. msgid "Generating CNC Code"
  1183. msgstr "Generating CNC Code"
  1184. #: FlatCAMObj.py:2785 FlatCAMObj.py:5084 camlib.py:5225 camlib.py:5721
  1185. #: camlib.py:6011
  1186. msgid ""
  1187. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1188. "format (x, y) \n"
  1189. "but now there is only one value, not two. "
  1190. msgstr ""
  1191. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1192. "format (x, y) \n"
  1193. "but now there is only one value, not two. "
  1194. #: FlatCAMObj.py:3097 FlatCAMObj.py:4004 FlatCAMObj.py:4005 FlatCAMObj.py:4014
  1195. msgid "Iso"
  1196. msgstr "Iso"
  1197. #: FlatCAMObj.py:3097
  1198. msgid "Finish"
  1199. msgstr "Finish"
  1200. #: FlatCAMObj.py:3395 flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:745
  1201. #: flatcamGUI/FlatCAMGUI.py:1698 flatcamGUI/FlatCAMGUI.py:2040
  1202. #: flatcamGUI/ObjectUI.py:998
  1203. msgid "Copy"
  1204. msgstr "Copy"
  1205. #: FlatCAMObj.py:3607
  1206. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1207. msgstr "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1208. #: FlatCAMObj.py:3681
  1209. msgid "[success] Tool added in Tool Table."
  1210. msgstr "[success] Tool added in Tool Table."
  1211. #: FlatCAMObj.py:3684
  1212. msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
  1213. msgstr "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
  1214. #: FlatCAMObj.py:3716 FlatCAMObj.py:3724
  1215. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1216. msgstr "[WARNING_NOTCL] Failed. Select a tool to copy."
  1217. #: FlatCAMObj.py:3751
  1218. msgid "[success] Tool was copied in Tool Table."
  1219. msgstr "[success] Tool was copied in Tool Table."
  1220. #: FlatCAMObj.py:3780
  1221. msgid "[success] Tool was edited in Tool Table."
  1222. msgstr "[success] Tool was edited in Tool Table."
  1223. #: FlatCAMObj.py:3808 FlatCAMObj.py:3816
  1224. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1225. msgstr "[WARNING_NOTCL] Failed. Select a tool to delete."
  1226. #: FlatCAMObj.py:3838
  1227. msgid "[success] Tool was deleted in Tool Table."
  1228. msgstr "[success] Tool was deleted in Tool Table."
  1229. #: FlatCAMObj.py:4267
  1230. #, python-format
  1231. msgid ""
  1232. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1233. msgstr ""
  1234. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1235. #: FlatCAMObj.py:4283
  1236. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1237. msgstr "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1238. #: FlatCAMObj.py:4308
  1239. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1240. msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1241. #: FlatCAMObj.py:4345
  1242. #, python-format
  1243. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1244. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1245. #: FlatCAMObj.py:4492 FlatCAMObj.py:4718
  1246. msgid ""
  1247. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1248. "Add a Tool Offset or change the Offset Type."
  1249. msgstr ""
  1250. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1251. "Add a Tool Offset or change the Offset Type."
  1252. #: FlatCAMObj.py:4605 flatcamTools/ToolSolderPaste.py:1112
  1253. #: flatcamTools/ToolSolderPaste.py:1168
  1254. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1255. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1256. #: FlatCAMObj.py:4966 FlatCAMObj.py:4975 camlib.py:3367 camlib.py:3376
  1257. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1258. msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1259. #: FlatCAMObj.py:5018
  1260. msgid "[success] Geometry Scale done."
  1261. msgstr "[success] Geometry Scale done."
  1262. #: FlatCAMObj.py:5035 camlib.py:3448
  1263. msgid ""
  1264. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1265. "one value in the Offset field."
  1266. msgstr ""
  1267. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1268. "one value in the Offset field."
  1269. #: FlatCAMObj.py:5057
  1270. msgid "[success] Geometry Offset done."
  1271. msgstr "[success] Geometry Offset done."
  1272. #: FlatCAMObj.py:5626 FlatCAMObj.py:5631 flatcamTools/ToolSolderPaste.py:1368
  1273. msgid "Export Machine Code ..."
  1274. msgstr "Export Machine Code ..."
  1275. #: FlatCAMObj.py:5637 flatcamTools/ToolSolderPaste.py:1371
  1276. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1277. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1278. #: FlatCAMObj.py:5654
  1279. #, python-format
  1280. msgid "[success] Machine Code file saved to: %s"
  1281. msgstr "[success] Machine Code file saved to: %s"
  1282. #: FlatCAMObj.py:5676
  1283. #, python-format
  1284. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1285. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1286. #: FlatCAMObj.py:5793
  1287. #, python-format
  1288. msgid ""
  1289. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1290. "CNCJob object."
  1291. msgstr ""
  1292. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1293. "CNCJob object."
  1294. #: FlatCAMObj.py:5846
  1295. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1296. msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1297. #: FlatCAMObj.py:5859
  1298. msgid ""
  1299. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1300. "empty."
  1301. msgstr ""
  1302. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1303. "empty."
  1304. #: FlatCAMObj.py:5866
  1305. msgid "[success] Toolchange G-code was replaced by a custom code."
  1306. msgstr "[success] Toolchange G-code was replaced by a custom code."
  1307. #: FlatCAMObj.py:5880 flatcamTools/ToolSolderPaste.py:1397
  1308. msgid "[WARNING_NOTCL] No such file or directory"
  1309. msgstr "[WARNING_NOTCL] No such file or directory"
  1310. #: FlatCAMObj.py:5904 FlatCAMObj.py:5916
  1311. msgid ""
  1312. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1313. "'toolchange_custom'"
  1314. msgstr ""
  1315. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1316. "'toolchange_custom'"
  1317. #: FlatCAMObj.py:5922
  1318. msgid "[ERROR] There is no postprocessor file."
  1319. msgstr "[ERROR] There is no postprocessor file."
  1320. #: FlatCAMTranslation.py:91
  1321. msgid "The application will restart."
  1322. msgstr "The application will restart."
  1323. #: FlatCAMTranslation.py:92
  1324. #, python-format
  1325. msgid "Are you sure do you want to change the current language to %s?"
  1326. msgstr "Are you sure do you want to change the current language to %s?"
  1327. #: FlatCAMTranslation.py:94
  1328. msgid "Apply Language ..."
  1329. msgstr "Apply Language ..."
  1330. #: ObjectCollection.py:426
  1331. #, python-brace-format
  1332. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1333. msgstr "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1334. #: ObjectCollection.py:765
  1335. #, python-format
  1336. msgid "[ERROR] Cause of error: %s"
  1337. msgstr "[ERROR] Cause of error: %s"
  1338. #: camlib.py:197
  1339. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1340. msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1341. #: camlib.py:1403
  1342. msgid "[success] Object was mirrored ..."
  1343. msgstr "[success] Object was mirrored ..."
  1344. #: camlib.py:1405
  1345. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1346. msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
  1347. #: camlib.py:1444
  1348. msgid "[success] Object was rotated ..."
  1349. msgstr "[success] Object was rotated ..."
  1350. #: camlib.py:1446
  1351. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1352. msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
  1353. #: camlib.py:1483
  1354. msgid "[success] Object was skewed ..."
  1355. msgstr "[success] Object was skewed ..."
  1356. #: camlib.py:1485
  1357. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1358. msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
  1359. #: camlib.py:2747 camlib.py:2832
  1360. #, python-format
  1361. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1362. msgstr "[WARNING] Coordinates missing, line ignored: %s"
  1363. #: camlib.py:2748 camlib.py:2833
  1364. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1365. msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1366. #: camlib.py:2797
  1367. #, python-format
  1368. msgid ""
  1369. "[ERROR] Region does not have enough points. File will be processed but there "
  1370. "are parser errors. Line number: %s"
  1371. msgstr ""
  1372. "[ERROR] Region does not have enough points. File will be processed but there "
  1373. "are parser errors. Line number: %s"
  1374. #: camlib.py:3189
  1375. #, python-format
  1376. msgid ""
  1377. "[ERROR]Gerber Parser ERROR.\n"
  1378. "%s:"
  1379. msgstr ""
  1380. "[ERROR]Gerber Parser ERROR.\n"
  1381. "%s:"
  1382. #: camlib.py:3416
  1383. msgid "[success] Gerber Scale done."
  1384. msgstr "[success] Gerber Scale done."
  1385. #: camlib.py:3484
  1386. msgid "[success] Gerber Offset done."
  1387. msgstr "[success] Gerber Offset done."
  1388. #: camlib.py:3541
  1389. msgid "[success] Gerber Mirror done."
  1390. msgstr "[success] Gerber Mirror done."
  1391. #: camlib.py:3590
  1392. msgid "[success] Gerber Skew done."
  1393. msgstr "[success] Gerber Skew done."
  1394. #: camlib.py:3631
  1395. msgid "[success] Gerber Rotate done."
  1396. msgstr "[success] Gerber Rotate done."
  1397. #: camlib.py:3912
  1398. #, python-format
  1399. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1400. msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
  1401. #: camlib.py:4027
  1402. #, python-format
  1403. msgid ""
  1404. "[WARNING] No tool diameter info's. See shell.\n"
  1405. "A tool change event: T%s was found but the Excellon file have no "
  1406. "informations regarding the tool diameters therefore the application will try "
  1407. "to load it by using some 'fake' diameters.\n"
  1408. "The user needs to edit the resulting Excellon object and change the "
  1409. "diameters to reflect the real diameters."
  1410. msgstr ""
  1411. "[WARNING] No tool diameter info's. See shell.\n"
  1412. "A tool change event: T%s was found but the Excellon file have no "
  1413. "informations regarding the tool diameters therefore the application will try "
  1414. "to load it by using some 'fake' diameters.\n"
  1415. "The user needs to edit the resulting Excellon object and change the "
  1416. "diameters to reflect the real diameters."
  1417. #: camlib.py:4491
  1418. #, python-brace-format
  1419. msgid ""
  1420. "[ERROR] Excellon Parser error.\n"
  1421. "Parsing Failed. Line {l_nr}: {line}\n"
  1422. msgstr ""
  1423. "[ERROR] Excellon Parser error.\n"
  1424. "Parsing Failed. Line {l_nr}: {line}\n"
  1425. #: camlib.py:4573
  1426. msgid ""
  1427. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1428. "not having a tool associated.\n"
  1429. "Check the resulting GCode."
  1430. msgstr ""
  1431. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1432. "not having a tool associated.\n"
  1433. "Check the resulting GCode."
  1434. #: camlib.py:5134
  1435. #, python-format
  1436. msgid "[ERROR] There is no such parameter: %s"
  1437. msgstr "[ERROR] There is no such parameter: %s"
  1438. #: camlib.py:5204
  1439. msgid ""
  1440. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1441. "drill into material.\n"
  1442. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1443. "therefore the app will convert the value to negative. Check the resulting "
  1444. "CNC code (Gcode etc)."
  1445. msgstr ""
  1446. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1447. "drill into material.\n"
  1448. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1449. "therefore the app will convert the value to negative. Check the resulting "
  1450. "CNC code (Gcode etc)."
  1451. #: camlib.py:5211 camlib.py:5744 camlib.py:6034
  1452. #, python-format
  1453. msgid ""
  1454. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1455. msgstr ""
  1456. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1457. #: camlib.py:5451 camlib.py:5557 camlib.py:5623
  1458. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1459. msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1460. #: camlib.py:5562
  1461. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1462. msgstr "[ERROR_NOTCL] Wrong optimization type selected."
  1463. #: camlib.py:5732 camlib.py:6022
  1464. msgid ""
  1465. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1466. "combinations of other parameters."
  1467. msgstr ""
  1468. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1469. "combinations of other parameters."
  1470. #: camlib.py:5737 camlib.py:6027
  1471. msgid ""
  1472. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1473. "cut into material.\n"
  1474. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1475. "therefore the app will convert the value to negative.Check the resulting CNC "
  1476. "code (Gcode etc)."
  1477. msgstr ""
  1478. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1479. "cut into material.\n"
  1480. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1481. "therefore the app will convert the value to negative.Check the resulting CNC "
  1482. "code (Gcode etc)."
  1483. #: camlib.py:5753 camlib.py:6039
  1484. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1485. msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1486. #: camlib.py:5757 camlib.py:6043
  1487. msgid ""
  1488. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1489. "to travel between cuts.\n"
  1490. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1491. "therefore the app will convert the value to positive.Check the resulting CNC "
  1492. "code (Gcode etc)."
  1493. msgstr ""
  1494. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1495. "to travel between cuts.\n"
  1496. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1497. "therefore the app will convert the value to positive.Check the resulting CNC "
  1498. "code (Gcode etc)."
  1499. #: camlib.py:5764 camlib.py:6050
  1500. #, python-format
  1501. msgid ""
  1502. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1503. msgstr ""
  1504. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1505. #: camlib.py:5917
  1506. #, python-format
  1507. msgid "[ERROR]Expected a Geometry, got %s"
  1508. msgstr "[ERROR]Expected a Geometry, got %s"
  1509. #: camlib.py:5923
  1510. msgid ""
  1511. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1512. "solid_geometry."
  1513. msgstr ""
  1514. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1515. "solid_geometry."
  1516. #: camlib.py:5962
  1517. msgid ""
  1518. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1519. "current_geometry.\n"
  1520. "Raise the value (in module) and try again."
  1521. msgstr ""
  1522. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1523. "current_geometry.\n"
  1524. "Raise the value (in module) and try again."
  1525. #: camlib.py:6196
  1526. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1527. msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1528. #: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:69
  1529. #: flatcamEditors/FlatCAMExcEditor.py:150
  1530. #: flatcamEditors/FlatCAMExcEditor.py:350
  1531. #: flatcamEditors/FlatCAMExcEditor.py:540
  1532. #: flatcamEditors/FlatCAMGrbEditor.py:237
  1533. #: flatcamEditors/FlatCAMGrbEditor.py:242
  1534. msgid "Click to place ..."
  1535. msgstr "Click to place ..."
  1536. #: flatcamEditors/FlatCAMExcEditor.py:53
  1537. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1538. msgstr "[WARNING_NOTCL] To add a drill first select a tool"
  1539. #: flatcamEditors/FlatCAMExcEditor.py:115
  1540. msgid "[success] Done. Drill added."
  1541. msgstr "[success] Done. Drill added."
  1542. #: flatcamEditors/FlatCAMExcEditor.py:157
  1543. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1544. msgstr ""
  1545. "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1546. #: flatcamEditors/FlatCAMExcEditor.py:173
  1547. #: flatcamEditors/FlatCAMExcEditor.py:379
  1548. #: flatcamEditors/FlatCAMExcEditor.py:587
  1549. #: flatcamEditors/FlatCAMExcEditor.py:1083
  1550. #: flatcamEditors/FlatCAMExcEditor.py:1108
  1551. #: flatcamEditors/FlatCAMGrbEditor.py:459
  1552. #: flatcamEditors/FlatCAMGrbEditor.py:1845
  1553. #: flatcamEditors/FlatCAMGrbEditor.py:1873
  1554. msgid "Click on target location ..."
  1555. msgstr "Click on target location ..."
  1556. #: flatcamEditors/FlatCAMExcEditor.py:190
  1557. msgid "Click on the Drill Circular Array Start position"
  1558. msgstr "Click on the Drill Circular Array Start position"
  1559. #: flatcamEditors/FlatCAMExcEditor.py:212
  1560. #: flatcamEditors/FlatCAMExcEditor.py:626
  1561. #: flatcamEditors/FlatCAMGrbEditor.py:502
  1562. msgid ""
  1563. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1564. "separator."
  1565. msgstr ""
  1566. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1567. "separator."
  1568. #: flatcamEditors/FlatCAMExcEditor.py:215
  1569. #, python-format
  1570. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1571. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1572. #: flatcamEditors/FlatCAMExcEditor.py:313
  1573. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1574. msgstr "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1575. #: flatcamEditors/FlatCAMExcEditor.py:330
  1576. msgid "[success] Done. Drill Array added."
  1577. msgstr "[success] Done. Drill Array added."
  1578. #: flatcamEditors/FlatCAMExcEditor.py:358
  1579. msgid "[WARNING_NOTCL] To add a slot first select a tool"
  1580. msgstr "[WARNING_NOTCL] To add a slot first select a tool"
  1581. #: flatcamEditors/FlatCAMExcEditor.py:415
  1582. #: flatcamEditors/FlatCAMExcEditor.py:422
  1583. #: flatcamEditors/FlatCAMExcEditor.py:690
  1584. #: flatcamEditors/FlatCAMExcEditor.py:697
  1585. msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
  1586. msgstr "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
  1587. #: flatcamEditors/FlatCAMExcEditor.py:521
  1588. msgid "[success] Done. Adding Slot completed."
  1589. msgstr "[success] Done. Adding Slot completed."
  1590. #: flatcamEditors/FlatCAMExcEditor.py:547
  1591. msgid "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
  1592. msgstr "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
  1593. #: flatcamEditors/FlatCAMExcEditor.py:604
  1594. msgid "Click on the Slot Circular Array Start position"
  1595. msgstr "Click on the Slot Circular Array Start position"
  1596. #: flatcamEditors/FlatCAMExcEditor.py:629
  1597. #: flatcamEditors/FlatCAMGrbEditor.py:505
  1598. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  1599. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value."
  1600. #: flatcamEditors/FlatCAMExcEditor.py:807
  1601. msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
  1602. msgstr "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
  1603. #: flatcamEditors/FlatCAMExcEditor.py:829
  1604. msgid "[success] Done. Slot Array added."
  1605. msgstr "[success] Done. Slot Array added."
  1606. #: flatcamEditors/FlatCAMExcEditor.py:846
  1607. msgid "Click on the Drill(s) to resize ..."
  1608. msgstr "Click on the Drill(s) to resize ..."
  1609. #: flatcamEditors/FlatCAMExcEditor.py:876
  1610. msgid ""
  1611. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1612. msgstr ""
  1613. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1614. #: flatcamEditors/FlatCAMExcEditor.py:966
  1615. #: flatcamEditors/FlatCAMExcEditor.py:1035
  1616. msgid "[ERROR_NOTCL] Cancelled."
  1617. msgstr "[ERROR_NOTCL] Cancelled."
  1618. #: flatcamEditors/FlatCAMExcEditor.py:1055
  1619. msgid "[success] Done. Drill/Slot Resize completed."
  1620. msgstr "[success] Done. Drill/Slot Resize completed."
  1621. #: flatcamEditors/FlatCAMExcEditor.py:1057
  1622. msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
  1623. msgstr "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
  1624. #: flatcamEditors/FlatCAMExcEditor.py:1085
  1625. #: flatcamEditors/FlatCAMGrbEditor.py:1847
  1626. msgid "Click on reference location ..."
  1627. msgstr "Click on reference location ..."
  1628. #: flatcamEditors/FlatCAMExcEditor.py:1140
  1629. msgid "[success] Done. Drill(s) Move completed."
  1630. msgstr "[success] Done. Drill(s) Move completed."
  1631. #: flatcamEditors/FlatCAMExcEditor.py:1237
  1632. msgid "[success] Done. Drill(s) copied."
  1633. msgstr "[success] Done. Drill(s) copied."
  1634. #: flatcamEditors/FlatCAMExcEditor.py:1450 flatcamGUI/FlatCAMGUI.py:5206
  1635. msgid "Excellon Editor"
  1636. msgstr "Excellon Editor"
  1637. #: flatcamEditors/FlatCAMExcEditor.py:1457
  1638. #: flatcamEditors/FlatCAMGrbEditor.py:2335
  1639. msgid "Name:"
  1640. msgstr "Name:"
  1641. #: flatcamEditors/FlatCAMExcEditor.py:1463
  1642. #: flatcamTools/ToolNonCopperClear.py:72 flatcamTools/ToolPaint.py:70
  1643. #: flatcamTools/ToolSolderPaste.py:70
  1644. msgid "Tools Table"
  1645. msgstr "Tools Table"
  1646. #: flatcamEditors/FlatCAMExcEditor.py:1465 flatcamGUI/ObjectUI.py:536
  1647. msgid ""
  1648. "Tools in this Excellon object\n"
  1649. "when are used for drilling."
  1650. msgstr ""
  1651. "Tools in this Excellon object\n"
  1652. "when are used for drilling."
  1653. #: flatcamEditors/FlatCAMExcEditor.py:1485
  1654. msgid "Add/Delete Tool"
  1655. msgstr "Add/Delete Tool"
  1656. #: flatcamEditors/FlatCAMExcEditor.py:1487
  1657. msgid ""
  1658. "Add/Delete a tool to the tool list\n"
  1659. "for this Excellon object."
  1660. msgstr ""
  1661. "Add/Delete a tool to the tool list\n"
  1662. "for this Excellon object."
  1663. #: flatcamEditors/FlatCAMExcEditor.py:1495 flatcamTools/ToolCutOut.py:92
  1664. msgid "Tool Dia:"
  1665. msgstr "Tool Dia:"
  1666. #: flatcamEditors/FlatCAMExcEditor.py:1497 flatcamGUI/FlatCAMGUI.py:5235
  1667. #: flatcamGUI/ObjectUI.py:977
  1668. msgid "Diameter for the new tool"
  1669. msgstr "Diameter for the new tool"
  1670. #: flatcamEditors/FlatCAMExcEditor.py:1505
  1671. msgid "Add Tool"
  1672. msgstr "Add Tool"
  1673. #: flatcamEditors/FlatCAMExcEditor.py:1507
  1674. msgid ""
  1675. "Add a new tool to the tool list\n"
  1676. "with the diameter specified above."
  1677. msgstr ""
  1678. "Add a new tool to the tool list\n"
  1679. "with the diameter specified above."
  1680. #: flatcamEditors/FlatCAMExcEditor.py:1519
  1681. msgid "Delete Tool"
  1682. msgstr "Delete Tool"
  1683. #: flatcamEditors/FlatCAMExcEditor.py:1521
  1684. msgid ""
  1685. "Delete a tool in the tool list\n"
  1686. "by selecting a row in the tool table."
  1687. msgstr ""
  1688. "Delete a tool in the tool list\n"
  1689. "by selecting a row in the tool table."
  1690. #: flatcamEditors/FlatCAMExcEditor.py:1539
  1691. msgid "Resize Drill(s)"
  1692. msgstr "Resize Drill(s)"
  1693. #: flatcamEditors/FlatCAMExcEditor.py:1541
  1694. msgid "Resize a drill or a selection of drills."
  1695. msgstr "Resize a drill or a selection of drills."
  1696. #: flatcamEditors/FlatCAMExcEditor.py:1548
  1697. msgid "Resize Dia:"
  1698. msgstr "Resize Dia:"
  1699. #: flatcamEditors/FlatCAMExcEditor.py:1550
  1700. msgid "Diameter to resize to."
  1701. msgstr "Diameter to resize to."
  1702. #: flatcamEditors/FlatCAMExcEditor.py:1558
  1703. msgid "Resize"
  1704. msgstr "Resize"
  1705. #: flatcamEditors/FlatCAMExcEditor.py:1560
  1706. msgid "Resize drill(s)"
  1707. msgstr "Resize drill(s)"
  1708. #: flatcamEditors/FlatCAMExcEditor.py:1585 flatcamGUI/FlatCAMGUI.py:1690
  1709. msgid "Add Drill Array"
  1710. msgstr "Add Drill Array"
  1711. #: flatcamEditors/FlatCAMExcEditor.py:1587
  1712. msgid "Add an array of drills (linear or circular array)"
  1713. msgstr "Add an array of drills (linear or circular array)"
  1714. #: flatcamEditors/FlatCAMExcEditor.py:1593
  1715. msgid ""
  1716. "Select the type of drills array to create.\n"
  1717. "It can be Linear X(Y) or Circular"
  1718. msgstr ""
  1719. "Select the type of drills array to create.\n"
  1720. "It can be Linear X(Y) or Circular"
  1721. #: flatcamEditors/FlatCAMExcEditor.py:1596
  1722. #: flatcamEditors/FlatCAMExcEditor.py:1798
  1723. #: flatcamEditors/FlatCAMGrbEditor.py:2622
  1724. msgid "Linear"
  1725. msgstr "Linear"
  1726. #: flatcamEditors/FlatCAMExcEditor.py:1597
  1727. #: flatcamEditors/FlatCAMExcEditor.py:1799
  1728. #: flatcamEditors/FlatCAMGrbEditor.py:2623
  1729. msgid "Circular"
  1730. msgstr "Circular"
  1731. #: flatcamEditors/FlatCAMExcEditor.py:1605 flatcamGUI/FlatCAMGUI.py:5245
  1732. msgid "Nr of drills:"
  1733. msgstr "Nr of drills:"
  1734. #: flatcamEditors/FlatCAMExcEditor.py:1606 flatcamGUI/FlatCAMGUI.py:5247
  1735. msgid "Specify how many drills to be in the array."
  1736. msgstr "Specify how many drills to be in the array."
  1737. #: flatcamEditors/FlatCAMExcEditor.py:1623
  1738. #: flatcamEditors/FlatCAMExcEditor.py:1670
  1739. #: flatcamEditors/FlatCAMExcEditor.py:1734
  1740. #: flatcamEditors/FlatCAMExcEditor.py:1825
  1741. #: flatcamEditors/FlatCAMExcEditor.py:1872
  1742. #: flatcamEditors/FlatCAMGrbEditor.py:2649
  1743. #: flatcamEditors/FlatCAMGrbEditor.py:2694 flatcamGUI/FlatCAMGUI.py:5339
  1744. msgid "Direction:"
  1745. msgstr "Direction:"
  1746. #: flatcamEditors/FlatCAMExcEditor.py:1625
  1747. #: flatcamEditors/FlatCAMExcEditor.py:1827
  1748. #: flatcamEditors/FlatCAMGrbEditor.py:2651 flatcamGUI/FlatCAMGUI.py:5262
  1749. #: flatcamGUI/FlatCAMGUI.py:5393
  1750. msgid ""
  1751. "Direction on which the linear array is oriented:\n"
  1752. "- 'X' - horizontal axis \n"
  1753. "- 'Y' - vertical axis or \n"
  1754. "- 'Angle' - a custom angle for the array inclination"
  1755. msgstr ""
  1756. "Direction on which the linear array is oriented:\n"
  1757. "- 'X' - horizontal axis \n"
  1758. "- 'Y' - vertical axis or \n"
  1759. "- 'Angle' - a custom angle for the array inclination"
  1760. #: flatcamEditors/FlatCAMExcEditor.py:1632
  1761. #: flatcamEditors/FlatCAMExcEditor.py:1743
  1762. #: flatcamEditors/FlatCAMExcEditor.py:1834
  1763. #: flatcamEditors/FlatCAMGrbEditor.py:2658 flatcamGUI/FlatCAMGUI.py:5268
  1764. #: flatcamGUI/FlatCAMGUI.py:5348 flatcamGUI/FlatCAMGUI.py:5399
  1765. msgid "X"
  1766. msgstr "X"
  1767. #: flatcamEditors/FlatCAMExcEditor.py:1633
  1768. #: flatcamEditors/FlatCAMExcEditor.py:1744
  1769. #: flatcamEditors/FlatCAMExcEditor.py:1835
  1770. #: flatcamEditors/FlatCAMGrbEditor.py:2659 flatcamGUI/FlatCAMGUI.py:5269
  1771. #: flatcamGUI/FlatCAMGUI.py:5349 flatcamGUI/FlatCAMGUI.py:5400
  1772. msgid "Y"
  1773. msgstr "Y"
  1774. #: flatcamEditors/FlatCAMExcEditor.py:1634
  1775. #: flatcamEditors/FlatCAMExcEditor.py:1745
  1776. #: flatcamEditors/FlatCAMExcEditor.py:1836
  1777. #: flatcamEditors/FlatCAMGrbEditor.py:2660 flatcamGUI/FlatCAMGUI.py:5270
  1778. #: flatcamGUI/FlatCAMGUI.py:5350 flatcamGUI/FlatCAMGUI.py:5401
  1779. msgid "Angle"
  1780. msgstr "Angle"
  1781. #: flatcamEditors/FlatCAMExcEditor.py:1638
  1782. #: flatcamEditors/FlatCAMExcEditor.py:1840
  1783. #: flatcamEditors/FlatCAMGrbEditor.py:2664 flatcamGUI/FlatCAMGUI.py:5276
  1784. #: flatcamGUI/FlatCAMGUI.py:5407
  1785. msgid "Pitch:"
  1786. msgstr "Pitch:"
  1787. #: flatcamEditors/FlatCAMExcEditor.py:1640
  1788. #: flatcamEditors/FlatCAMExcEditor.py:1842
  1789. #: flatcamEditors/FlatCAMGrbEditor.py:2666 flatcamGUI/FlatCAMGUI.py:5278
  1790. #: flatcamGUI/FlatCAMGUI.py:5409
  1791. msgid "Pitch = Distance between elements of the array."
  1792. msgstr "Pitch = Distance between elements of the array."
  1793. #: flatcamEditors/FlatCAMExcEditor.py:1648
  1794. #: flatcamEditors/FlatCAMExcEditor.py:1682
  1795. #: flatcamEditors/FlatCAMExcEditor.py:1749
  1796. #: flatcamEditors/FlatCAMExcEditor.py:1850
  1797. #: flatcamEditors/FlatCAMExcEditor.py:1884
  1798. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1799. #: flatcamEditors/FlatCAMGrbEditor.py:2673
  1800. #: flatcamEditors/FlatCAMGrbEditor.py:2709
  1801. #: flatcamEditors/FlatCAMGrbEditor.py:4820 flatcamGUI/FlatCAMGUI.py:5287
  1802. #: flatcamGUI/FlatCAMGUI.py:5355 flatcamGUI/FlatCAMGUI.py:5418
  1803. #: flatcamTools/ToolTransform.py:68
  1804. msgid "Angle:"
  1805. msgstr "Angle:"
  1806. #: flatcamEditors/FlatCAMExcEditor.py:1650
  1807. #: flatcamEditors/FlatCAMExcEditor.py:1852
  1808. #: flatcamEditors/FlatCAMGrbEditor.py:2675
  1809. msgid ""
  1810. "Angle at which the linear array is placed.\n"
  1811. "The precision is of max 2 decimals.\n"
  1812. "Min value is: -359.99 degrees.\n"
  1813. "Max value is: 360.00 degrees."
  1814. msgstr ""
  1815. "Angle at which the linear array is placed.\n"
  1816. "The precision is of max 2 decimals.\n"
  1817. "Min value is: -359.99 degrees.\n"
  1818. "Max value is: 360.00 degrees."
  1819. #: flatcamEditors/FlatCAMExcEditor.py:1671
  1820. #: flatcamEditors/FlatCAMExcEditor.py:1873
  1821. #: flatcamEditors/FlatCAMGrbEditor.py:2696
  1822. msgid ""
  1823. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1824. "clockwise."
  1825. msgstr ""
  1826. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1827. "clockwise."
  1828. #: flatcamEditors/FlatCAMExcEditor.py:1678
  1829. #: flatcamEditors/FlatCAMExcEditor.py:1880
  1830. #: flatcamEditors/FlatCAMGrbEditor.py:2704 flatcamGUI/FlatCAMGUI.py:4848
  1831. #: flatcamGUI/FlatCAMGUI.py:5306 flatcamGUI/FlatCAMGUI.py:5437
  1832. #: flatcamGUI/FlatCAMGUI.py:5626
  1833. msgid "CW"
  1834. msgstr "CW"
  1835. #: flatcamEditors/FlatCAMExcEditor.py:1679
  1836. #: flatcamEditors/FlatCAMExcEditor.py:1881
  1837. #: flatcamEditors/FlatCAMGrbEditor.py:2705 flatcamGUI/FlatCAMGUI.py:4849
  1838. #: flatcamGUI/FlatCAMGUI.py:5307 flatcamGUI/FlatCAMGUI.py:5438
  1839. #: flatcamGUI/FlatCAMGUI.py:5627
  1840. msgid "CCW"
  1841. msgstr "CCW"
  1842. #: flatcamEditors/FlatCAMExcEditor.py:1683
  1843. #: flatcamEditors/FlatCAMExcEditor.py:1885
  1844. #: flatcamEditors/FlatCAMGrbEditor.py:2711 flatcamGUI/FlatCAMGUI.py:5289
  1845. #: flatcamGUI/FlatCAMGUI.py:5315 flatcamGUI/FlatCAMGUI.py:5420
  1846. #: flatcamGUI/FlatCAMGUI.py:5446
  1847. msgid "Angle at which each element in circular array is placed."
  1848. msgstr "Angle at which each element in circular array is placed."
  1849. #: flatcamEditors/FlatCAMExcEditor.py:1713
  1850. msgid "Slot Parameters"
  1851. msgstr "Slot Parameters"
  1852. #: flatcamEditors/FlatCAMExcEditor.py:1715
  1853. msgid ""
  1854. "Parameters for adding a slot (hole with oval shape)\n"
  1855. "either single or as an part of an array."
  1856. msgstr ""
  1857. "Parameters for adding a slot (hole with oval shape)\n"
  1858. "either single or as an part of an array."
  1859. #: flatcamEditors/FlatCAMExcEditor.py:1724 flatcamGUI/FlatCAMGUI.py:5328
  1860. msgid "Length:"
  1861. msgstr "Length:"
  1862. #: flatcamEditors/FlatCAMExcEditor.py:1726 flatcamGUI/FlatCAMGUI.py:5330
  1863. msgid "Length = The length of the slot."
  1864. msgstr "Length = The length of the slot."
  1865. #: flatcamEditors/FlatCAMExcEditor.py:1736 flatcamGUI/FlatCAMGUI.py:5341
  1866. msgid ""
  1867. "Direction on which the slot is oriented:\n"
  1868. "- 'X' - horizontal axis \n"
  1869. "- 'Y' - vertical axis or \n"
  1870. "- 'Angle' - a custom angle for the slot inclination"
  1871. msgstr ""
  1872. "Direction on which the slot is oriented:\n"
  1873. "- 'X' - horizontal axis \n"
  1874. "- 'Y' - vertical axis or \n"
  1875. "- 'Angle' - a custom angle for the slot inclination"
  1876. #: flatcamEditors/FlatCAMExcEditor.py:1751 flatcamGUI/FlatCAMGUI.py:5357
  1877. msgid ""
  1878. "Angle at which the slot is placed.\n"
  1879. "The precision is of max 2 decimals.\n"
  1880. "Min value is: -359.99 degrees.\n"
  1881. "Max value is: 360.00 degrees."
  1882. msgstr ""
  1883. "Angle at which the slot is placed.\n"
  1884. "The precision is of max 2 decimals.\n"
  1885. "Min value is: -359.99 degrees.\n"
  1886. "Max value is: 360.00 degrees."
  1887. #: flatcamEditors/FlatCAMExcEditor.py:1784
  1888. msgid "Slot Array Parameters"
  1889. msgstr "Slot Array Parameters"
  1890. #: flatcamEditors/FlatCAMExcEditor.py:1786
  1891. msgid "Parameters for the array of slots (linear or circular array)"
  1892. msgstr "Parameters for the array of slots (linear or circular array)"
  1893. #: flatcamEditors/FlatCAMExcEditor.py:1795
  1894. msgid ""
  1895. "Select the type of slot array to create.\n"
  1896. "It can be Linear X(Y) or Circular"
  1897. msgstr ""
  1898. "Select the type of slot array to create.\n"
  1899. "It can be Linear X(Y) or Circular"
  1900. #: flatcamEditors/FlatCAMExcEditor.py:1807 flatcamGUI/FlatCAMGUI.py:5379
  1901. msgid "Nr of slots:"
  1902. msgstr "Nr of slots:"
  1903. #: flatcamEditors/FlatCAMExcEditor.py:1808 flatcamGUI/FlatCAMGUI.py:5381
  1904. msgid "Specify how many slots to be in the array."
  1905. msgstr "Specify how many slots to be in the array."
  1906. #: flatcamEditors/FlatCAMExcEditor.py:2405
  1907. msgid ""
  1908. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1909. "Save and reedit Excellon if you need to add this tool. "
  1910. msgstr ""
  1911. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1912. "Save and reedit Excellon if you need to add this tool. "
  1913. #: flatcamEditors/FlatCAMExcEditor.py:2414 flatcamGUI/FlatCAMGUI.py:3107
  1914. #, python-brace-format
  1915. msgid "[success] Added new tool with dia: {dia} {units}"
  1916. msgstr "[success] Added new tool with dia: {dia} {units}"
  1917. #: flatcamEditors/FlatCAMExcEditor.py:2446
  1918. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1919. msgstr "[WARNING_NOTCL] Select a tool in Tool Table"
  1920. #: flatcamEditors/FlatCAMExcEditor.py:2478
  1921. #, python-brace-format
  1922. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1923. msgstr "[success] Deleted tool with dia: {del_dia} {units}"
  1924. #: flatcamEditors/FlatCAMExcEditor.py:2629
  1925. msgid "[success] Done. Tool edit completed."
  1926. msgstr "[success] Done. Tool edit completed."
  1927. #: flatcamEditors/FlatCAMExcEditor.py:3164
  1928. msgid ""
  1929. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1930. "creation."
  1931. msgstr ""
  1932. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1933. "creation."
  1934. #: flatcamEditors/FlatCAMExcEditor.py:3167
  1935. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  1936. msgstr "[ERROR] An internal error has ocurred. See shell.\n"
  1937. #: flatcamEditors/FlatCAMExcEditor.py:3173
  1938. msgid "Creating Excellon."
  1939. msgstr "Creating Excellon."
  1940. #: flatcamEditors/FlatCAMExcEditor.py:3182
  1941. msgid "[success] Excellon editing finished."
  1942. msgstr "[success] Excellon editing finished."
  1943. #: flatcamEditors/FlatCAMExcEditor.py:3199
  1944. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1945. msgstr "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1946. #: flatcamEditors/FlatCAMExcEditor.py:3781
  1947. msgid "[success] Done. Drill(s) deleted."
  1948. msgstr "[success] Done. Drill(s) deleted."
  1949. #: flatcamEditors/FlatCAMExcEditor.py:3853
  1950. #: flatcamEditors/FlatCAMExcEditor.py:3863
  1951. #: flatcamEditors/FlatCAMGrbEditor.py:4538
  1952. msgid "Click on the circular array Center position"
  1953. msgstr "Click on the circular array Center position"
  1954. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1955. #: flatcamEditors/FlatCAMGrbEditor.py:2487
  1956. msgid "Buffer distance:"
  1957. msgstr "Buffer distance:"
  1958. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1959. #: flatcamEditors/FlatCAMGrbEditor.py:2488
  1960. msgid "Buffer corner:"
  1961. msgstr "Buffer corner:"
  1962. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1963. msgid ""
  1964. "There are 3 types of corners:\n"
  1965. " - 'Round': the corner is rounded for exterior buffer.\n"
  1966. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1967. " - 'Beveled:' the corner is a line that directly connects the features "
  1968. "meeting in the corner"
  1969. msgstr ""
  1970. "There are 3 types of corners:\n"
  1971. " - 'Round': the corner is rounded for exterior buffer.\n"
  1972. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1973. " - 'Beveled:' the corner is a line that directly connects the features "
  1974. "meeting in the corner"
  1975. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1976. #: flatcamEditors/FlatCAMGrbEditor.py:2496
  1977. msgid "Round"
  1978. msgstr "Round"
  1979. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1980. #: flatcamEditors/FlatCAMGrbEditor.py:2497
  1981. msgid "Square"
  1982. msgstr "Square"
  1983. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1984. #: flatcamEditors/FlatCAMGrbEditor.py:2498
  1985. msgid "Beveled"
  1986. msgstr "Beveled"
  1987. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1988. msgid "Buffer Interior"
  1989. msgstr "Buffer Interior"
  1990. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1991. msgid "Buffer Exterior"
  1992. msgstr "Buffer Exterior"
  1993. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1994. msgid "Full Buffer"
  1995. msgstr "Full Buffer"
  1996. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1997. #: flatcamEditors/FlatCAMGeoEditor.py:2687
  1998. msgid "Buffer Tool"
  1999. msgstr "Buffer Tool"
  2000. #: flatcamEditors/FlatCAMGeoEditor.py:138
  2001. #: flatcamEditors/FlatCAMGeoEditor.py:155
  2002. #: flatcamEditors/FlatCAMGeoEditor.py:172
  2003. #: flatcamEditors/FlatCAMGeoEditor.py:2705
  2004. #: flatcamEditors/FlatCAMGeoEditor.py:2731
  2005. #: flatcamEditors/FlatCAMGeoEditor.py:2757
  2006. #: flatcamEditors/FlatCAMGrbEditor.py:4590
  2007. msgid ""
  2008. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  2009. "retry."
  2010. msgstr ""
  2011. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  2012. "retry."
  2013. #: flatcamEditors/FlatCAMGeoEditor.py:343
  2014. msgid "Text Tool"
  2015. msgstr "Text Tool"
  2016. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:825
  2017. msgid "Tool"
  2018. msgstr "Tool"
  2019. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4228
  2020. #: flatcamGUI/FlatCAMGUI.py:5492 flatcamGUI/FlatCAMGUI.py:5926
  2021. #: flatcamGUI/FlatCAMGUI.py:6267 flatcamGUI/FlatCAMGUI.py:6422
  2022. #: flatcamGUI/ObjectUI.py:259
  2023. msgid "Tool dia:"
  2024. msgstr "Tool dia:"
  2025. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6424
  2026. msgid ""
  2027. "Diameter of the tool to\n"
  2028. "be used in the operation."
  2029. msgstr ""
  2030. "Diameter of the tool to\n"
  2031. "be used in the operation."
  2032. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:6131
  2033. #: flatcamGUI/FlatCAMGUI.py:6433 flatcamTools/ToolNonCopperClear.py:179
  2034. #: flatcamTools/ToolPaint.py:161
  2035. msgid "Overlap Rate:"
  2036. msgstr "Overlap Rate:"
  2037. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:163
  2038. #, python-format
  2039. msgid ""
  2040. "How much (fraction) of the tool width to overlap each tool pass.\n"
  2041. "Example:\n"
  2042. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  2043. "\n"
  2044. "Adjust the value starting with lower values\n"
  2045. "and increasing it if areas that should be painted are still \n"
  2046. "not painted.\n"
  2047. "Lower values = faster processing, faster execution on PCB.\n"
  2048. "Higher values = slow processing and slow execution on CNC\n"
  2049. "due of too many paths."
  2050. msgstr ""
  2051. "How much (fraction) of the tool width to overlap each tool pass.\n"
  2052. "Example:\n"
  2053. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  2054. "\n"
  2055. "Adjust the value starting with lower values\n"
  2056. "and increasing it if areas that should be painted are still \n"
  2057. "not painted.\n"
  2058. "Lower values = faster processing, faster execution on PCB.\n"
  2059. "Higher values = slow processing and slow execution on CNC\n"
  2060. "due of too many paths."
  2061. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:6147
  2062. #: flatcamGUI/FlatCAMGUI.py:6290 flatcamGUI/FlatCAMGUI.py:6443
  2063. #: flatcamTools/ToolCutOut.py:101 flatcamTools/ToolNonCopperClear.py:195
  2064. #: flatcamTools/ToolPaint.py:178
  2065. msgid "Margin:"
  2066. msgstr "Margin:"
  2067. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6445
  2068. #: flatcamTools/ToolPaint.py:180
  2069. msgid ""
  2070. "Distance by which to avoid\n"
  2071. "the edges of the polygon to\n"
  2072. "be painted."
  2073. msgstr ""
  2074. "Distance by which to avoid\n"
  2075. "the edges of the polygon to\n"
  2076. "be painted."
  2077. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:6156
  2078. #: flatcamGUI/FlatCAMGUI.py:6454 flatcamTools/ToolNonCopperClear.py:204
  2079. #: flatcamTools/ToolPaint.py:189
  2080. msgid "Method:"
  2081. msgstr "Method:"
  2082. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6456
  2083. msgid ""
  2084. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  2085. "<BR><B>Seed-based</B>: Outwards from seed."
  2086. msgstr ""
  2087. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  2088. "<BR><B>Seed-based</B>: Outwards from seed."
  2089. #: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:6165
  2090. #: flatcamGUI/FlatCAMGUI.py:6462 flatcamTools/ToolNonCopperClear.py:213
  2091. #: flatcamTools/ToolPaint.py:198
  2092. msgid "Standard"
  2093. msgstr "Standard"
  2094. #: flatcamEditors/FlatCAMGeoEditor.py:481 flatcamGUI/FlatCAMGUI.py:6166
  2095. #: flatcamGUI/FlatCAMGUI.py:6463 flatcamTools/ToolNonCopperClear.py:214
  2096. #: flatcamTools/ToolPaint.py:199
  2097. msgid "Seed-based"
  2098. msgstr "Seed-based"
  2099. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6167
  2100. #: flatcamGUI/FlatCAMGUI.py:6464 flatcamTools/ToolNonCopperClear.py:215
  2101. #: flatcamTools/ToolPaint.py:200
  2102. msgid "Straight lines"
  2103. msgstr "Straight lines"
  2104. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:6172
  2105. #: flatcamGUI/FlatCAMGUI.py:6469 flatcamTools/ToolNonCopperClear.py:220
  2106. #: flatcamTools/ToolPaint.py:205
  2107. msgid "Connect:"
  2108. msgstr "Connect:"
  2109. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:6174
  2110. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamTools/ToolNonCopperClear.py:222
  2111. #: flatcamTools/ToolPaint.py:207
  2112. msgid ""
  2113. "Draw lines between resulting\n"
  2114. "segments to minimize tool lifts."
  2115. msgstr ""
  2116. "Draw lines between resulting\n"
  2117. "segments to minimize tool lifts."
  2118. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:6181
  2119. #: flatcamGUI/FlatCAMGUI.py:6479 flatcamTools/ToolNonCopperClear.py:229
  2120. #: flatcamTools/ToolPaint.py:214
  2121. msgid "Contour:"
  2122. msgstr "Contour:"
  2123. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:6183
  2124. #: flatcamGUI/FlatCAMGUI.py:6481 flatcamTools/ToolNonCopperClear.py:231
  2125. #: flatcamTools/ToolPaint.py:216
  2126. msgid ""
  2127. "Cut around the perimeter of the polygon\n"
  2128. "to trim rough edges."
  2129. msgstr ""
  2130. "Cut around the perimeter of the polygon\n"
  2131. "to trim rough edges."
  2132. #: flatcamEditors/FlatCAMGeoEditor.py:509 flatcamGUI/FlatCAMGUI.py:1654
  2133. msgid "Paint"
  2134. msgstr "Paint"
  2135. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:660
  2136. #: flatcamGUI/FlatCAMGUI.py:1952 flatcamGUI/ObjectUI.py:1321
  2137. #: flatcamTools/ToolPaint.py:392
  2138. msgid "Paint Tool"
  2139. msgstr "Paint Tool"
  2140. #: flatcamEditors/FlatCAMGeoEditor.py:563
  2141. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  2142. msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected."
  2143. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:372
  2144. #: flatcamTools/ToolCutOut.py:565 flatcamTools/ToolCutOut.py:727
  2145. #: flatcamTools/ToolCutOut.py:834 flatcamTools/ToolDblSided.py:362
  2146. msgid ""
  2147. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  2148. "retry."
  2149. msgstr ""
  2150. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  2151. "retry."
  2152. #: flatcamEditors/FlatCAMGeoEditor.py:585
  2153. msgid ""
  2154. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  2155. msgstr ""
  2156. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  2157. #: flatcamEditors/FlatCAMGeoEditor.py:597
  2158. msgid ""
  2159. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  2160. "retry."
  2161. msgstr ""
  2162. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  2163. "retry."
  2164. #: flatcamEditors/FlatCAMGeoEditor.py:606
  2165. #: flatcamEditors/FlatCAMGeoEditor.py:2712
  2166. #: flatcamEditors/FlatCAMGeoEditor.py:2738
  2167. #: flatcamEditors/FlatCAMGeoEditor.py:2764 flatcamGUI/FlatCAMGUI.py:5488
  2168. #: flatcamTools/ToolNonCopperClear.py:1034 flatcamTools/ToolProperties.py:104
  2169. msgid "Tools"
  2170. msgstr "Tools"
  2171. #: flatcamEditors/FlatCAMGeoEditor.py:617
  2172. #: flatcamEditors/FlatCAMGeoEditor.py:990
  2173. #: flatcamEditors/FlatCAMGrbEditor.py:4771
  2174. #: flatcamEditors/FlatCAMGrbEditor.py:5156 flatcamGUI/FlatCAMGUI.py:671
  2175. #: flatcamGUI/FlatCAMGUI.py:1965 flatcamTools/ToolTransform.py:397
  2176. msgid "Transform Tool"
  2177. msgstr "Transform Tool"
  2178. #: flatcamEditors/FlatCAMGeoEditor.py:618
  2179. #: flatcamEditors/FlatCAMGeoEditor.py:679
  2180. #: flatcamEditors/FlatCAMGrbEditor.py:4772
  2181. #: flatcamEditors/FlatCAMGrbEditor.py:4834 flatcamTools/ToolTransform.py:24
  2182. #: flatcamTools/ToolTransform.py:82
  2183. msgid "Rotate"
  2184. msgstr "Rotate"
  2185. #: flatcamEditors/FlatCAMGeoEditor.py:619
  2186. #: flatcamEditors/FlatCAMGrbEditor.py:4773 flatcamTools/ToolTransform.py:25
  2187. msgid "Skew/Shear"
  2188. msgstr "Skew/Shear"
  2189. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2190. #: flatcamEditors/FlatCAMGrbEditor.py:2543
  2191. #: flatcamEditors/FlatCAMGrbEditor.py:4774 flatcamGUI/FlatCAMGUI.py:738
  2192. #: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:2034
  2193. #: flatcamGUI/ObjectUI.py:100 flatcamTools/ToolTransform.py:26
  2194. msgid "Scale"
  2195. msgstr "Scale"
  2196. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2197. #: flatcamEditors/FlatCAMGrbEditor.py:4775 flatcamTools/ToolTransform.py:27
  2198. msgid "Mirror (Flip)"
  2199. msgstr "Mirror (Flip)"
  2200. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2201. #: flatcamEditors/FlatCAMGrbEditor.py:4776 flatcamGUI/ObjectUI.py:127
  2202. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1483
  2203. #: flatcamTools/ToolTransform.py:28
  2204. msgid "Offset"
  2205. msgstr "Offset"
  2206. #: flatcamEditors/FlatCAMGeoEditor.py:633
  2207. #: flatcamEditors/FlatCAMGrbEditor.py:4788
  2208. #, python-format
  2209. msgid "Editor %s"
  2210. msgstr "Editor %s"
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:667
  2212. #: flatcamEditors/FlatCAMGrbEditor.py:4822 flatcamTools/ToolTransform.py:70
  2213. msgid ""
  2214. "Angle for Rotation action, in degrees.\n"
  2215. "Float number between -360 and 359.\n"
  2216. "Positive numbers for CW motion.\n"
  2217. "Negative numbers for CCW motion."
  2218. msgstr ""
  2219. "Angle for Rotation action, in degrees.\n"
  2220. "Float number between -360 and 359.\n"
  2221. "Positive numbers for CW motion.\n"
  2222. "Negative numbers for CCW motion."
  2223. #: flatcamEditors/FlatCAMGeoEditor.py:681
  2224. #: flatcamEditors/FlatCAMGrbEditor.py:4836
  2225. msgid ""
  2226. "Rotate the selected shape(s).\n"
  2227. "The point of reference is the middle of\n"
  2228. "the bounding box for all selected shapes."
  2229. msgstr ""
  2230. "Rotate the selected shape(s).\n"
  2231. "The point of reference is the middle of\n"
  2232. "the bounding box for all selected shapes."
  2233. #: flatcamEditors/FlatCAMGeoEditor.py:704
  2234. #: flatcamEditors/FlatCAMGrbEditor.py:4859 flatcamTools/ToolTransform.py:107
  2235. msgid "Angle X:"
  2236. msgstr "Angle X:"
  2237. #: flatcamEditors/FlatCAMGeoEditor.py:706
  2238. #: flatcamEditors/FlatCAMGeoEditor.py:724
  2239. #: flatcamEditors/FlatCAMGrbEditor.py:4861
  2240. #: flatcamEditors/FlatCAMGrbEditor.py:4879 flatcamTools/ToolTransform.py:109
  2241. #: flatcamTools/ToolTransform.py:127
  2242. msgid ""
  2243. "Angle for Skew action, in degrees.\n"
  2244. "Float number between -360 and 359."
  2245. msgstr ""
  2246. "Angle for Skew action, in degrees.\n"
  2247. "Float number between -360 and 359."
  2248. #: flatcamEditors/FlatCAMGeoEditor.py:715
  2249. #: flatcamEditors/FlatCAMGrbEditor.py:4870 flatcamTools/ToolTransform.py:118
  2250. msgid "Skew X"
  2251. msgstr "Skew X"
  2252. #: flatcamEditors/FlatCAMGeoEditor.py:717
  2253. #: flatcamEditors/FlatCAMGeoEditor.py:735
  2254. #: flatcamEditors/FlatCAMGrbEditor.py:4872
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:4890
  2256. msgid ""
  2257. "Skew/shear the selected shape(s).\n"
  2258. "The point of reference is the middle of\n"
  2259. "the bounding box for all selected shapes."
  2260. msgstr ""
  2261. "Skew/shear the selected shape(s).\n"
  2262. "The point of reference is the middle of\n"
  2263. "the bounding box for all selected shapes."
  2264. #: flatcamEditors/FlatCAMGeoEditor.py:722
  2265. #: flatcamEditors/FlatCAMGrbEditor.py:4877 flatcamTools/ToolTransform.py:125
  2266. msgid "Angle Y:"
  2267. msgstr "Angle Y:"
  2268. #: flatcamEditors/FlatCAMGeoEditor.py:733
  2269. #: flatcamEditors/FlatCAMGrbEditor.py:4888 flatcamTools/ToolTransform.py:136
  2270. msgid "Skew Y"
  2271. msgstr "Skew Y"
  2272. #: flatcamEditors/FlatCAMGeoEditor.py:761
  2273. #: flatcamEditors/FlatCAMGrbEditor.py:4916 flatcamTools/ToolTransform.py:164
  2274. msgid "Factor X:"
  2275. msgstr "Factor X:"
  2276. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2277. #: flatcamEditors/FlatCAMGrbEditor.py:4918 flatcamTools/ToolTransform.py:166
  2278. msgid "Factor for Scale action over X axis."
  2279. msgstr "Factor for Scale action over X axis."
  2280. #: flatcamEditors/FlatCAMGeoEditor.py:771
  2281. #: flatcamEditors/FlatCAMGrbEditor.py:4926 flatcamTools/ToolTransform.py:174
  2282. msgid "Scale X"
  2283. msgstr "Scale X"
  2284. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2285. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2286. #: flatcamEditors/FlatCAMGrbEditor.py:4928
  2287. #: flatcamEditors/FlatCAMGrbEditor.py:4945
  2288. msgid ""
  2289. "Scale the selected shape(s).\n"
  2290. "The point of reference depends on \n"
  2291. "the Scale reference checkbox state."
  2292. msgstr ""
  2293. "Scale the selected shape(s).\n"
  2294. "The point of reference depends on \n"
  2295. "the Scale reference checkbox state."
  2296. #: flatcamEditors/FlatCAMGeoEditor.py:778
  2297. #: flatcamEditors/FlatCAMGrbEditor.py:4933 flatcamTools/ToolTransform.py:181
  2298. msgid "Factor Y:"
  2299. msgstr "Factor Y:"
  2300. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2301. #: flatcamEditors/FlatCAMGrbEditor.py:4935 flatcamTools/ToolTransform.py:183
  2302. msgid "Factor for Scale action over Y axis."
  2303. msgstr "Factor for Scale action over Y axis."
  2304. #: flatcamEditors/FlatCAMGeoEditor.py:788
  2305. #: flatcamEditors/FlatCAMGrbEditor.py:4943 flatcamTools/ToolTransform.py:191
  2306. msgid "Scale Y"
  2307. msgstr "Scale Y"
  2308. #: flatcamEditors/FlatCAMGeoEditor.py:797
  2309. #: flatcamEditors/FlatCAMGrbEditor.py:4952 flatcamGUI/FlatCAMGUI.py:6834
  2310. #: flatcamTools/ToolTransform.py:200
  2311. msgid "Link"
  2312. msgstr "Link"
  2313. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2314. #: flatcamEditors/FlatCAMGrbEditor.py:4954
  2315. msgid ""
  2316. "Scale the selected shape(s)\n"
  2317. "using the Scale Factor X for both axis."
  2318. msgstr ""
  2319. "Scale the selected shape(s)\n"
  2320. "using the Scale Factor X for both axis."
  2321. #: flatcamEditors/FlatCAMGeoEditor.py:805
  2322. #: flatcamEditors/FlatCAMGrbEditor.py:4960 flatcamGUI/FlatCAMGUI.py:6842
  2323. #: flatcamTools/ToolTransform.py:208
  2324. msgid "Scale Reference"
  2325. msgstr "Scale Reference"
  2326. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:4962
  2328. msgid ""
  2329. "Scale the selected shape(s)\n"
  2330. "using the origin reference when checked,\n"
  2331. "and the center of the biggest bounding box\n"
  2332. "of the selected shapes when unchecked."
  2333. msgstr ""
  2334. "Scale the selected shape(s)\n"
  2335. "using the origin reference when checked,\n"
  2336. "and the center of the biggest bounding box\n"
  2337. "of the selected shapes when unchecked."
  2338. #: flatcamEditors/FlatCAMGeoEditor.py:835
  2339. #: flatcamEditors/FlatCAMGrbEditor.py:4991 flatcamTools/ToolTransform.py:238
  2340. msgid "Value X:"
  2341. msgstr "Value X:"
  2342. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2343. #: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamTools/ToolTransform.py:240
  2344. msgid "Value for Offset action on X axis."
  2345. msgstr "Value for Offset action on X axis."
  2346. #: flatcamEditors/FlatCAMGeoEditor.py:845
  2347. #: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamTools/ToolTransform.py:248
  2348. msgid "Offset X"
  2349. msgstr "Offset X"
  2350. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2351. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2352. #: flatcamEditors/FlatCAMGrbEditor.py:5003
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:5021
  2354. msgid ""
  2355. "Offset the selected shape(s).\n"
  2356. "The point of reference is the middle of\n"
  2357. "the bounding box for all selected shapes.\n"
  2358. msgstr ""
  2359. "Offset the selected shape(s).\n"
  2360. "The point of reference is the middle of\n"
  2361. "the bounding box for all selected shapes.\n"
  2362. #: flatcamEditors/FlatCAMGeoEditor.py:853
  2363. #: flatcamEditors/FlatCAMGrbEditor.py:5009 flatcamTools/ToolTransform.py:255
  2364. msgid "Value Y:"
  2365. msgstr "Value Y:"
  2366. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2367. #: flatcamEditors/FlatCAMGrbEditor.py:5011 flatcamTools/ToolTransform.py:257
  2368. msgid "Value for Offset action on Y axis."
  2369. msgstr "Value for Offset action on Y axis."
  2370. #: flatcamEditors/FlatCAMGeoEditor.py:863
  2371. #: flatcamEditors/FlatCAMGrbEditor.py:5019 flatcamTools/ToolTransform.py:265
  2372. msgid "Offset Y"
  2373. msgstr "Offset Y"
  2374. #: flatcamEditors/FlatCAMGeoEditor.py:894
  2375. #: flatcamEditors/FlatCAMGrbEditor.py:5050 flatcamTools/ToolTransform.py:295
  2376. msgid "Flip on X"
  2377. msgstr "Flip on X"
  2378. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2379. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2380. #: flatcamEditors/FlatCAMGrbEditor.py:5052
  2381. #: flatcamEditors/FlatCAMGrbEditor.py:5060
  2382. msgid ""
  2383. "Flip the selected shape(s) over the X axis.\n"
  2384. "Does not create a new shape."
  2385. msgstr ""
  2386. "Flip the selected shape(s) over the X axis.\n"
  2387. "Does not create a new shape."
  2388. #: flatcamEditors/FlatCAMGeoEditor.py:902
  2389. #: flatcamEditors/FlatCAMGrbEditor.py:5058 flatcamTools/ToolTransform.py:303
  2390. msgid "Flip on Y"
  2391. msgstr "Flip on Y"
  2392. #: flatcamEditors/FlatCAMGeoEditor.py:911
  2393. #: flatcamEditors/FlatCAMGrbEditor.py:5067 flatcamTools/ToolTransform.py:312
  2394. msgid "Ref Pt"
  2395. msgstr "Ref Pt"
  2396. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2397. #: flatcamEditors/FlatCAMGrbEditor.py:5069
  2398. msgid ""
  2399. "Flip the selected shape(s)\n"
  2400. "around the point in Point Entry Field.\n"
  2401. "\n"
  2402. "The point coordinates can be captured by\n"
  2403. "left click on canvas together with pressing\n"
  2404. "SHIFT key. \n"
  2405. "Then click Add button to insert coordinates.\n"
  2406. "Or enter the coords in format (x, y) in the\n"
  2407. "Point Entry field and click Flip on X(Y)"
  2408. msgstr ""
  2409. "Flip the selected shape(s)\n"
  2410. "around the point in Point Entry Field.\n"
  2411. "\n"
  2412. "The point coordinates can be captured by\n"
  2413. "left click on canvas together with pressing\n"
  2414. "SHIFT key. \n"
  2415. "Then click Add button to insert coordinates.\n"
  2416. "Or enter the coords in format (x, y) in the\n"
  2417. "Point Entry field and click Flip on X(Y)"
  2418. #: flatcamEditors/FlatCAMGeoEditor.py:925
  2419. #: flatcamEditors/FlatCAMGrbEditor.py:5081 flatcamTools/ToolTransform.py:325
  2420. msgid "Point:"
  2421. msgstr "Point:"
  2422. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2423. #: flatcamEditors/FlatCAMGrbEditor.py:5083
  2424. msgid ""
  2425. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2426. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2427. "the 'y' in (x, y) will be used when using Flip on Y."
  2428. msgstr ""
  2429. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2430. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2431. "the 'y' in (x, y) will be used when using Flip on Y."
  2432. #: flatcamEditors/FlatCAMGeoEditor.py:939
  2433. #: flatcamEditors/FlatCAMGrbEditor.py:5095 flatcamTools/ToolTransform.py:339
  2434. msgid ""
  2435. "The point coordinates can be captured by\n"
  2436. "left click on canvas together with pressing\n"
  2437. "SHIFT key. Then click Add button to insert."
  2438. msgstr ""
  2439. "The point coordinates can be captured by\n"
  2440. "left click on canvas together with pressing\n"
  2441. "SHIFT key. Then click Add button to insert."
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5220
  2444. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2445. msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2447. #: flatcamEditors/FlatCAMGrbEditor.py:5240 flatcamTools/ToolTransform.py:467
  2448. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2449. msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2451. #: flatcamEditors/FlatCAMGrbEditor.py:5283 flatcamTools/ToolTransform.py:501
  2452. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2453. msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2454. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2455. #: flatcamEditors/FlatCAMGrbEditor.py:5310 flatcamTools/ToolTransform.py:519
  2456. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2457. msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2458. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2459. #: flatcamEditors/FlatCAMGrbEditor.py:5337 flatcamTools/ToolTransform.py:537
  2460. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2461. msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2462. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2463. #: flatcamEditors/FlatCAMGrbEditor.py:5378 flatcamTools/ToolTransform.py:571
  2464. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2465. msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2466. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2467. #: flatcamEditors/FlatCAMGrbEditor.py:5416 flatcamTools/ToolTransform.py:600
  2468. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2469. msgstr "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2470. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2471. #: flatcamEditors/FlatCAMGrbEditor.py:5442 flatcamTools/ToolTransform.py:618
  2472. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2473. msgstr "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2474. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2475. #: flatcamEditors/FlatCAMGrbEditor.py:5465
  2476. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2477. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2478. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2479. #: flatcamEditors/FlatCAMGrbEditor.py:5468 flatcamTools/ToolTransform.py:639
  2480. msgid "Appying Rotate"
  2481. msgstr "Appying Rotate"
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:5501
  2484. msgid "[success] Done. Rotate completed."
  2485. msgstr "[success] Done. Rotate completed."
  2486. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2487. #: flatcamEditors/FlatCAMGrbEditor.py:5520
  2488. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2489. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2490. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2491. #: flatcamEditors/FlatCAMGrbEditor.py:5523 flatcamTools/ToolTransform.py:690
  2492. msgid "Applying Flip"
  2493. msgstr "Applying Flip"
  2494. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2495. #: flatcamEditors/FlatCAMGrbEditor.py:5562 flatcamTools/ToolTransform.py:732
  2496. msgid "[success] Flip on the Y axis done ..."
  2497. msgstr "[success] Flip on the Y axis done ..."
  2498. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2499. #: flatcamEditors/FlatCAMGrbEditor.py:5570 flatcamTools/ToolTransform.py:741
  2500. msgid "[success] Flip on the X axis done ..."
  2501. msgstr "[success] Flip on the X axis done ..."
  2502. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2503. #: flatcamEditors/FlatCAMGrbEditor.py:5590
  2504. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2505. msgstr ""
  2506. "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2507. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2508. #: flatcamEditors/FlatCAMGrbEditor.py:5593 flatcamTools/ToolTransform.py:759
  2509. msgid "Applying Skew"
  2510. msgstr "Applying Skew"
  2511. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2512. #: flatcamEditors/FlatCAMGrbEditor.py:5628 flatcamTools/ToolTransform.py:790
  2513. #, python-format
  2514. msgid "[success] Skew on the %s axis done ..."
  2515. msgstr "[success] Skew on the %s axis done ..."
  2516. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2517. #: flatcamEditors/FlatCAMGrbEditor.py:5632 flatcamTools/ToolTransform.py:794
  2518. #, python-format
  2519. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2520. msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2521. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2522. #: flatcamEditors/FlatCAMGrbEditor.py:5651
  2523. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2524. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2525. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2526. #: flatcamEditors/FlatCAMGrbEditor.py:5654 flatcamTools/ToolTransform.py:808
  2527. msgid "Applying Scale"
  2528. msgstr "Applying Scale"
  2529. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2530. #: flatcamEditors/FlatCAMGrbEditor.py:5692 flatcamTools/ToolTransform.py:847
  2531. #, python-format
  2532. msgid "[success] Scale on the %s axis done ..."
  2533. msgstr "[success] Scale on the %s axis done ..."
  2534. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2535. #: flatcamEditors/FlatCAMGrbEditor.py:5695 flatcamTools/ToolTransform.py:850
  2536. #, python-format
  2537. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2538. msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2539. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2540. #: flatcamEditors/FlatCAMGrbEditor.py:5708
  2541. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2542. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2543. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2544. #: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:860
  2545. msgid "Applying Offset"
  2546. msgstr "Applying Offset"
  2547. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2548. #: flatcamEditors/FlatCAMGrbEditor.py:5733 flatcamTools/ToolTransform.py:879
  2549. #, python-format
  2550. msgid "[success] Offset on the %s axis done ..."
  2551. msgstr "[success] Offset on the %s axis done ..."
  2552. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2553. #: flatcamEditors/FlatCAMGrbEditor.py:5737 flatcamTools/ToolTransform.py:883
  2554. #, python-format
  2555. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2556. msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2557. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2558. #: flatcamEditors/FlatCAMGrbEditor.py:5741
  2559. msgid "Rotate ..."
  2560. msgstr "Rotate ..."
  2561. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2562. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2563. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2564. #: flatcamEditors/FlatCAMGrbEditor.py:5742
  2565. #: flatcamEditors/FlatCAMGrbEditor.py:5799
  2566. #: flatcamEditors/FlatCAMGrbEditor.py:5816
  2567. msgid "Enter an Angle Value (degrees):"
  2568. msgstr "Enter an Angle Value (degrees):"
  2569. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2570. #: flatcamEditors/FlatCAMGrbEditor.py:5751
  2571. msgid "[success] Geometry shape rotate done..."
  2572. msgstr "[success] Geometry shape rotate done..."
  2573. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2574. #: flatcamEditors/FlatCAMGrbEditor.py:5756
  2575. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2576. msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2577. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2578. #: flatcamEditors/FlatCAMGrbEditor.py:5762
  2579. msgid "Offset on X axis ..."
  2580. msgstr "Offset on X axis ..."
  2581. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2582. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2583. #: flatcamEditors/FlatCAMGrbEditor.py:5763
  2584. #: flatcamEditors/FlatCAMGrbEditor.py:5782
  2585. #, python-format
  2586. msgid "Enter a distance Value (%s):"
  2587. msgstr "Enter a distance Value (%s):"
  2588. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2589. #: flatcamEditors/FlatCAMGrbEditor.py:5772
  2590. msgid "[success] Geometry shape offset on X axis done..."
  2591. msgstr "[success] Geometry shape offset on X axis done..."
  2592. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2593. #: flatcamEditors/FlatCAMGrbEditor.py:5776
  2594. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2595. msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2596. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2597. #: flatcamEditors/FlatCAMGrbEditor.py:5781
  2598. msgid "Offset on Y axis ..."
  2599. msgstr "Offset on Y axis ..."
  2600. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2601. #: flatcamEditors/FlatCAMGrbEditor.py:5791
  2602. msgid "[success] Geometry shape offset on Y axis done..."
  2603. msgstr "[success] Geometry shape offset on Y axis done..."
  2604. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2605. #: flatcamEditors/FlatCAMGrbEditor.py:5795
  2606. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2607. msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2608. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2609. #: flatcamEditors/FlatCAMGrbEditor.py:5798
  2610. msgid "Skew on X axis ..."
  2611. msgstr "Skew on X axis ..."
  2612. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2613. #: flatcamEditors/FlatCAMGrbEditor.py:5808
  2614. msgid "[success] Geometry shape skew on X axis done..."
  2615. msgstr "[success] Geometry shape skew on X axis done..."
  2616. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2617. #: flatcamEditors/FlatCAMGrbEditor.py:5812
  2618. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2619. msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2620. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2621. #: flatcamEditors/FlatCAMGrbEditor.py:5815
  2622. msgid "Skew on Y axis ..."
  2623. msgstr "Skew on Y axis ..."
  2624. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2625. #: flatcamEditors/FlatCAMGrbEditor.py:5825
  2626. msgid "[success] Geometry shape skew on Y axis done..."
  2627. msgstr "[success] Geometry shape skew on Y axis done..."
  2628. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2629. #: flatcamEditors/FlatCAMGrbEditor.py:5829
  2630. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2631. msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2632. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2633. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2634. #: flatcamEditors/FlatCAMGrbEditor.py:1385
  2635. #: flatcamEditors/FlatCAMGrbEditor.py:1454
  2636. msgid "Click on Center point ..."
  2637. msgstr "Click on Center point ..."
  2638. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2639. #: flatcamEditors/FlatCAMGrbEditor.py:1393
  2640. msgid "Click on Perimeter point to complete ..."
  2641. msgstr "Click on Perimeter point to complete ..."
  2642. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2643. msgid "[success] Done. Adding Circle completed."
  2644. msgstr "[success] Done. Adding Circle completed."
  2645. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2646. #: flatcamEditors/FlatCAMGrbEditor.py:1486
  2647. msgid "Click on Start point ..."
  2648. msgstr "Click on Start point ..."
  2649. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2650. #: flatcamEditors/FlatCAMGrbEditor.py:1488
  2651. msgid "Click on Point3 ..."
  2652. msgstr "Click on Point3 ..."
  2653. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2654. #: flatcamEditors/FlatCAMGrbEditor.py:1490
  2655. msgid "Click on Stop point ..."
  2656. msgstr "Click on Stop point ..."
  2657. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2658. #: flatcamEditors/FlatCAMGrbEditor.py:1495
  2659. msgid "Click on Stop point to complete ..."
  2660. msgstr "Click on Stop point to complete ..."
  2661. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2662. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2663. msgid "Click on Point2 to complete ..."
  2664. msgstr "Click on Point2 to complete ..."
  2665. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2666. #: flatcamEditors/FlatCAMGrbEditor.py:1499
  2667. msgid "Click on Center point to complete ..."
  2668. msgstr "Click on Center point to complete ..."
  2669. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2670. #: flatcamEditors/FlatCAMGrbEditor.py:1511
  2671. #, python-format
  2672. msgid "Direction: %s"
  2673. msgstr "Direction: %s"
  2674. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2675. #: flatcamEditors/FlatCAMGrbEditor.py:1521
  2676. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2677. msgstr "Mode: Start -> Stop -> Center. Click on Start point ..."
  2678. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2679. #: flatcamEditors/FlatCAMGrbEditor.py:1524
  2680. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2681. msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2682. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2683. #: flatcamEditors/FlatCAMGrbEditor.py:1527
  2684. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2685. msgstr "Mode: Center -> Start -> Stop. Click on Center point ..."
  2686. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2687. msgid "[success] Done. Arc completed."
  2688. msgstr "[success] Done. Arc completed."
  2689. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2690. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2691. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2692. msgid "Click on 1st corner ..."
  2693. msgstr "Click on 1st corner ..."
  2694. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2695. msgid "Click on opposite corner to complete ..."
  2696. msgstr "Click on opposite corner to complete ..."
  2697. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2698. msgid "[success] Done. Rectangle completed."
  2699. msgstr "[success] Done. Rectangle completed."
  2700. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2701. msgid "Click on next Point or click right mouse button to complete ..."
  2702. msgstr "Click on next Point or click right mouse button to complete ..."
  2703. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2704. msgid "[success] Done. Polygon completed."
  2705. msgstr "[success] Done. Polygon completed."
  2706. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2707. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2708. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2709. #: flatcamEditors/FlatCAMGrbEditor.py:1276
  2710. msgid "Backtracked one point ..."
  2711. msgstr "Backtracked one point ..."
  2712. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2713. msgid "[success] Done. Path completed."
  2714. msgstr "[success] Done. Path completed."
  2715. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2716. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2717. msgstr "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2718. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2719. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2720. msgid " MOVE: Click on reference point ..."
  2721. msgstr " MOVE: Click on reference point ..."
  2722. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2723. msgid " Click on destination point ..."
  2724. msgstr " Click on destination point ..."
  2725. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2726. msgid "[success] Done. Geometry(s) Move completed."
  2727. msgstr "[success] Done. Geometry(s) Move completed."
  2728. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2729. msgid "[success] Done. Geometry(s) Copy completed."
  2730. msgstr "[success] Done. Geometry(s) Copy completed."
  2731. #: flatcamEditors/FlatCAMGeoEditor.py:2642
  2732. #, python-format
  2733. msgid ""
  2734. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2735. "supported. Error: %s"
  2736. msgstr ""
  2737. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2738. "supported. Error: %s"
  2739. #: flatcamEditors/FlatCAMGeoEditor.py:2649
  2740. msgid "[WARNING_NOTCL] No text to add."
  2741. msgstr "[WARNING_NOTCL] No text to add."
  2742. #: flatcamEditors/FlatCAMGeoEditor.py:2655
  2743. msgid "[success] Done. Adding Text completed."
  2744. msgstr "[success] Done. Adding Text completed."
  2745. #: flatcamEditors/FlatCAMGeoEditor.py:2683
  2746. msgid "Create buffer geometry ..."
  2747. msgstr "Create buffer geometry ..."
  2748. #: flatcamEditors/FlatCAMGeoEditor.py:2694
  2749. #: flatcamEditors/FlatCAMGeoEditor.py:2720
  2750. #: flatcamEditors/FlatCAMGeoEditor.py:2746
  2751. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2752. msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2753. #: flatcamEditors/FlatCAMGeoEditor.py:2716
  2754. #: flatcamEditors/FlatCAMGrbEditor.py:4635
  2755. msgid "[success] Done. Buffer Tool completed."
  2756. msgstr "[success] Done. Buffer Tool completed."
  2757. #: flatcamEditors/FlatCAMGeoEditor.py:2742
  2758. msgid "[success] Done. Buffer Int Tool completed."
  2759. msgstr "[success] Done. Buffer Int Tool completed."
  2760. #: flatcamEditors/FlatCAMGeoEditor.py:2768
  2761. msgid "[success] Done. Buffer Ext Tool completed."
  2762. msgstr "[success] Done. Buffer Ext Tool completed."
  2763. #: flatcamEditors/FlatCAMGeoEditor.py:2803
  2764. #: flatcamEditors/FlatCAMGrbEditor.py:2052
  2765. msgid "Select a shape to act as deletion area ..."
  2766. msgstr "Select a shape to act as deletion area ..."
  2767. #: flatcamEditors/FlatCAMGeoEditor.py:2805
  2768. #: flatcamEditors/FlatCAMGeoEditor.py:2824
  2769. #: flatcamEditors/FlatCAMGeoEditor.py:2830
  2770. #: flatcamEditors/FlatCAMGrbEditor.py:2054
  2771. msgid "Click to pick-up the erase shape..."
  2772. msgstr "Click to pick-up the erase shape..."
  2773. #: flatcamEditors/FlatCAMGeoEditor.py:2834
  2774. #: flatcamEditors/FlatCAMGrbEditor.py:2111
  2775. msgid "Click to erase ..."
  2776. msgstr "Click to erase ..."
  2777. #: flatcamEditors/FlatCAMGeoEditor.py:2863
  2778. #: flatcamEditors/FlatCAMGrbEditor.py:2144
  2779. msgid "[success] Done. Eraser tool action completed."
  2780. msgstr "[success] Done. Eraser tool action completed."
  2781. #: flatcamEditors/FlatCAMGeoEditor.py:2906
  2782. msgid "Create Paint geometry ..."
  2783. msgstr "Create Paint geometry ..."
  2784. #: flatcamEditors/FlatCAMGeoEditor.py:2920
  2785. #: flatcamEditors/FlatCAMGrbEditor.py:2286
  2786. msgid "Shape transformations ..."
  2787. msgstr "Shape transformations ..."
  2788. #: flatcamEditors/FlatCAMGeoEditor.py:3498
  2789. #, python-brace-format
  2790. msgid ""
  2791. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2792. msgstr ""
  2793. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2794. #: flatcamEditors/FlatCAMGeoEditor.py:3855
  2795. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2796. msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2797. #: flatcamEditors/FlatCAMGeoEditor.py:3862 flatcamGUI/FlatCAMGUI.py:2825
  2798. #: flatcamGUI/FlatCAMGUI.py:2871 flatcamGUI/FlatCAMGUI.py:2889
  2799. #: flatcamGUI/FlatCAMGUI.py:3020 flatcamGUI/FlatCAMGUI.py:3032
  2800. #: flatcamGUI/FlatCAMGUI.py:3066 flatcamGUI/FlatCAMGUI.py:3123
  2801. msgid "Click on target point."
  2802. msgstr "Click on target point."
  2803. #: flatcamEditors/FlatCAMGeoEditor.py:4106
  2804. #: flatcamEditors/FlatCAMGeoEditor.py:4141
  2805. msgid ""
  2806. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2807. "Intersection."
  2808. msgstr ""
  2809. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2810. "Intersection."
  2811. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2812. #: flatcamEditors/FlatCAMGeoEditor.py:4265
  2813. #: flatcamEditors/FlatCAMGeoEditor.py:4341
  2814. msgid ""
  2815. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2816. "generate an 'inside' shape"
  2817. msgstr ""
  2818. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2819. "generate an 'inside' shape"
  2820. #: flatcamEditors/FlatCAMGeoEditor.py:4236
  2821. #: flatcamEditors/FlatCAMGeoEditor.py:4274
  2822. #: flatcamEditors/FlatCAMGeoEditor.py:4349
  2823. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2824. msgstr "[WARNING_NOTCL] Nothing selected for buffering."
  2825. #: flatcamEditors/FlatCAMGeoEditor.py:4240
  2826. #: flatcamEditors/FlatCAMGeoEditor.py:4278
  2827. #: flatcamEditors/FlatCAMGeoEditor.py:4353
  2828. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2829. msgstr "[WARNING_NOTCL] Invalid distance for buffering."
  2830. #: flatcamEditors/FlatCAMGeoEditor.py:4250
  2831. #: flatcamEditors/FlatCAMGeoEditor.py:4362
  2832. msgid ""
  2833. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2834. msgstr ""
  2835. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2836. #: flatcamEditors/FlatCAMGeoEditor.py:4258
  2837. msgid "[success] Full buffer geometry created."
  2838. msgstr "[success] Full buffer geometry created."
  2839. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2840. msgid ""
  2841. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2842. msgstr ""
  2843. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2844. #: flatcamEditors/FlatCAMGeoEditor.py:4303
  2845. msgid "[success] Interior buffer geometry created."
  2846. msgstr "[success] Interior buffer geometry created."
  2847. #: flatcamEditors/FlatCAMGeoEditor.py:4374
  2848. msgid "[success] Exterior buffer geometry created."
  2849. msgstr "[success] Exterior buffer geometry created."
  2850. #: flatcamEditors/FlatCAMGeoEditor.py:4438
  2851. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2852. msgstr "[WARNING_NOTCL] Nothing selected for painting."
  2853. #: flatcamEditors/FlatCAMGeoEditor.py:4444
  2854. msgid "[WARNING] Invalid value for {}"
  2855. msgstr "[WARNING] Invalid value for {}"
  2856. #: flatcamEditors/FlatCAMGeoEditor.py:4450
  2857. msgid ""
  2858. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2859. "(100%)."
  2860. msgstr ""
  2861. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2862. "(100%)."
  2863. #: flatcamEditors/FlatCAMGeoEditor.py:4509
  2864. #, python-format
  2865. msgid ""
  2866. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2867. "different method of Paint\n"
  2868. "%s"
  2869. msgstr ""
  2870. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2871. "different method of Paint\n"
  2872. "%s"
  2873. #: flatcamEditors/FlatCAMGeoEditor.py:4520
  2874. msgid "[success] Paint done."
  2875. msgstr "[success] Paint done."
  2876. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2877. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2878. msgstr ""
  2879. "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2880. #: flatcamEditors/FlatCAMGrbEditor.py:214
  2881. #: flatcamEditors/FlatCAMGrbEditor.py:406
  2882. msgid ""
  2883. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2884. msgstr ""
  2885. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2886. #: flatcamEditors/FlatCAMGrbEditor.py:365
  2887. #: flatcamEditors/FlatCAMGrbEditor.py:670
  2888. msgid ""
  2889. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2890. msgstr ""
  2891. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2892. #: flatcamEditors/FlatCAMGrbEditor.py:377
  2893. msgid "[success] Done. Adding Pad completed."
  2894. msgstr "[success] Done. Adding Pad completed."
  2895. #: flatcamEditors/FlatCAMGrbEditor.py:399
  2896. msgid ""
  2897. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2898. msgstr ""
  2899. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2900. #: flatcamEditors/FlatCAMGrbEditor.py:476
  2901. msgid "Click on the Pad Circular Array Start position"
  2902. msgstr "Click on the Pad Circular Array Start position"
  2903. #: flatcamEditors/FlatCAMGrbEditor.py:695
  2904. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2905. msgstr "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2906. #: flatcamEditors/FlatCAMGrbEditor.py:717
  2907. msgid "[success] Done. Pad Array added."
  2908. msgstr "[success] Done. Pad Array added."
  2909. #: flatcamEditors/FlatCAMGrbEditor.py:738
  2910. msgid "Select shape(s) and then click ..."
  2911. msgstr "Select shape(s) and then click ..."
  2912. #: flatcamEditors/FlatCAMGrbEditor.py:749
  2913. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2914. msgstr "[ERROR_NOTCL] Failed. Nothing selected."
  2915. #: flatcamEditors/FlatCAMGrbEditor.py:764
  2916. msgid ""
  2917. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2918. "same aperture."
  2919. msgstr ""
  2920. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2921. "same aperture."
  2922. #: flatcamEditors/FlatCAMGrbEditor.py:817
  2923. msgid "[success] Done. Poligonize completed."
  2924. msgstr "[success] Done. Poligonize completed."
  2925. #: flatcamEditors/FlatCAMGrbEditor.py:870
  2926. #: flatcamEditors/FlatCAMGrbEditor.py:1092
  2927. #: flatcamEditors/FlatCAMGrbEditor.py:1116
  2928. msgid "Corner Mode 1: 45 degrees ..."
  2929. msgstr "Corner Mode 1: 45 degrees ..."
  2930. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2931. msgid "Click on 1st point ..."
  2932. msgstr "Click on 1st point ..."
  2933. #: flatcamEditors/FlatCAMGrbEditor.py:882
  2934. #: flatcamEditors/FlatCAMGrbEditor.py:1191
  2935. msgid "Click on next Point or click Right mouse button to complete ..."
  2936. msgstr "Click on next Point or click Right mouse button to complete ..."
  2937. #: flatcamEditors/FlatCAMGrbEditor.py:1080
  2938. #: flatcamEditors/FlatCAMGrbEditor.py:1113
  2939. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2940. msgstr "Corner Mode 2: Reverse 45 degrees ..."
  2941. #: flatcamEditors/FlatCAMGrbEditor.py:1083
  2942. #: flatcamEditors/FlatCAMGrbEditor.py:1110
  2943. msgid "Corner Mode 3: 90 degrees ..."
  2944. msgstr "Corner Mode 3: 90 degrees ..."
  2945. #: flatcamEditors/FlatCAMGrbEditor.py:1086
  2946. #: flatcamEditors/FlatCAMGrbEditor.py:1107
  2947. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2948. msgstr "Corner Mode 4: Reverse 90 degrees ..."
  2949. #: flatcamEditors/FlatCAMGrbEditor.py:1089
  2950. #: flatcamEditors/FlatCAMGrbEditor.py:1104
  2951. msgid "Corner Mode 5: Free angle ..."
  2952. msgstr "Corner Mode 5: Free angle ..."
  2953. #: flatcamEditors/FlatCAMGrbEditor.py:1143
  2954. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2955. #: flatcamEditors/FlatCAMGrbEditor.py:1347
  2956. msgid "Track Mode 1: 45 degrees ..."
  2957. msgstr "Track Mode 1: 45 degrees ..."
  2958. #: flatcamEditors/FlatCAMGrbEditor.py:1288
  2959. #: flatcamEditors/FlatCAMGrbEditor.py:1342
  2960. msgid "Track Mode 2: Reverse 45 degrees ..."
  2961. msgstr "Track Mode 2: Reverse 45 degrees ..."
  2962. #: flatcamEditors/FlatCAMGrbEditor.py:1293
  2963. #: flatcamEditors/FlatCAMGrbEditor.py:1337
  2964. msgid "Track Mode 3: 90 degrees ..."
  2965. msgstr "Track Mode 3: 90 degrees ..."
  2966. #: flatcamEditors/FlatCAMGrbEditor.py:1298
  2967. #: flatcamEditors/FlatCAMGrbEditor.py:1332
  2968. msgid "Track Mode 4: Reverse 90 degrees ..."
  2969. msgstr "Track Mode 4: Reverse 90 degrees ..."
  2970. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2971. #: flatcamEditors/FlatCAMGrbEditor.py:1327
  2972. msgid "Track Mode 5: Free angle ..."
  2973. msgstr "Track Mode 5: Free angle ..."
  2974. #: flatcamEditors/FlatCAMGrbEditor.py:1707
  2975. msgid "Scale the selected Gerber apertures ..."
  2976. msgstr "Scale the selected Gerber apertures ..."
  2977. #: flatcamEditors/FlatCAMGrbEditor.py:1749
  2978. msgid "Buffer the selected apertures ..."
  2979. msgstr "Buffer the selected apertures ..."
  2980. #: flatcamEditors/FlatCAMGrbEditor.py:1791
  2981. msgid "Mark polygon areas in the edited Gerber ..."
  2982. msgstr "Mark polygon areas in the edited Gerber ..."
  2983. #: flatcamEditors/FlatCAMGrbEditor.py:1838
  2984. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2985. msgstr "[WARNING_NOTCL] Nothing selected to move ..."
  2986. #: flatcamEditors/FlatCAMGrbEditor.py:1961
  2987. msgid "[success] Done. Apertures Move completed."
  2988. msgstr "[success] Done. Apertures Move completed."
  2989. #: flatcamEditors/FlatCAMGrbEditor.py:2037
  2990. msgid "[success] Done. Apertures copied."
  2991. msgstr "[success] Done. Apertures copied."
  2992. #: flatcamEditors/FlatCAMGrbEditor.py:2328 flatcamGUI/FlatCAMGUI.py:1667
  2993. #: flatcamGUI/FlatCAMGUI.py:4498
  2994. msgid "Gerber Editor"
  2995. msgstr "Gerber Editor"
  2996. #: flatcamEditors/FlatCAMGrbEditor.py:2348 flatcamGUI/ObjectUI.py:192
  2997. msgid "<b>Apertures:</b>"
  2998. msgstr "<b>Apertures:</b>"
  2999. #: flatcamEditors/FlatCAMGrbEditor.py:2350 flatcamGUI/ObjectUI.py:194
  3000. msgid "Apertures Table for the Gerber Object."
  3001. msgstr "Apertures Table for the Gerber Object."
  3002. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/ObjectUI.py:227
  3004. msgid "Code"
  3005. msgstr "Code"
  3006. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  3007. #: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/ObjectUI.py:227
  3008. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1483
  3009. msgid "Type"
  3010. msgstr "Type"
  3011. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  3012. #: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/ObjectUI.py:227
  3013. msgid "Size"
  3014. msgstr "Size"
  3015. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  3016. #: flatcamEditors/FlatCAMGrbEditor.py:3788 flatcamGUI/ObjectUI.py:227
  3017. msgid "Dim"
  3018. msgstr "Dim"
  3019. #: flatcamEditors/FlatCAMGrbEditor.py:2365 flatcamGUI/ObjectUI.py:231
  3020. msgid "Index"
  3021. msgstr "Index"
  3022. #: flatcamEditors/FlatCAMGrbEditor.py:2367 flatcamGUI/ObjectUI.py:233
  3023. msgid "Aperture Code"
  3024. msgstr "Aperture Code"
  3025. #: flatcamEditors/FlatCAMGrbEditor.py:2369 flatcamGUI/ObjectUI.py:235
  3026. msgid "Type of aperture: circular, rectangle, macros etc"
  3027. msgstr "Type of aperture: circular, rectangle, macros etc"
  3028. #: flatcamEditors/FlatCAMGrbEditor.py:2371
  3029. #: flatcamEditors/FlatCAMGrbEditor.py:2404 flatcamGUI/ObjectUI.py:237
  3030. msgid "Aperture Size:"
  3031. msgstr "Aperture Size:"
  3032. #: flatcamEditors/FlatCAMGrbEditor.py:2373 flatcamGUI/ObjectUI.py:239
  3033. msgid ""
  3034. "Aperture Dimensions:\n"
  3035. " - (width, height) for R, O type.\n"
  3036. " - (dia, nVertices) for P type"
  3037. msgstr ""
  3038. "Aperture Dimensions:\n"
  3039. " - (width, height) for R, O type.\n"
  3040. " - (dia, nVertices) for P type"
  3041. #: flatcamEditors/FlatCAMGrbEditor.py:2394
  3042. msgid "Aperture Code:"
  3043. msgstr "Aperture Code:"
  3044. #: flatcamEditors/FlatCAMGrbEditor.py:2396
  3045. msgid "Code for the new aperture"
  3046. msgstr "Code for the new aperture"
  3047. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  3048. msgid ""
  3049. "Size for the new aperture.\n"
  3050. "If aperture type is 'R' or 'O' then\n"
  3051. "this value is automatically\n"
  3052. "calculated as:\n"
  3053. "sqrt(width**2 + height**2)"
  3054. msgstr ""
  3055. "Size for the new aperture.\n"
  3056. "If aperture type is 'R' or 'O' then\n"
  3057. "this value is automatically\n"
  3058. "calculated as:\n"
  3059. "sqrt(width**2 + height**2)"
  3060. #: flatcamEditors/FlatCAMGrbEditor.py:2418
  3061. msgid "Aperture Type:"
  3062. msgstr "Aperture Type:"
  3063. #: flatcamEditors/FlatCAMGrbEditor.py:2420
  3064. msgid ""
  3065. "Select the type of new aperture. Can be:\n"
  3066. "C = circular\n"
  3067. "R = rectangular\n"
  3068. "O = oblong"
  3069. msgstr ""
  3070. "Select the type of new aperture. Can be:\n"
  3071. "C = circular\n"
  3072. "R = rectangular\n"
  3073. "O = oblong"
  3074. #: flatcamEditors/FlatCAMGrbEditor.py:2431
  3075. msgid "Aperture Dim:"
  3076. msgstr "Aperture Dim:"
  3077. #: flatcamEditors/FlatCAMGrbEditor.py:2433
  3078. msgid ""
  3079. "Dimensions for the new aperture.\n"
  3080. "Active only for rectangular apertures (type R).\n"
  3081. "The format is (width, height)"
  3082. msgstr ""
  3083. "Dimensions for the new aperture.\n"
  3084. "Active only for rectangular apertures (type R).\n"
  3085. "The format is (width, height)"
  3086. #: flatcamEditors/FlatCAMGrbEditor.py:2442
  3087. msgid "Add/Delete Aperture:"
  3088. msgstr "Add/Delete Aperture:"
  3089. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  3090. msgid "Add/Delete an aperture in the aperture table"
  3091. msgstr "Add/Delete an aperture in the aperture table"
  3092. #: flatcamEditors/FlatCAMGrbEditor.py:2453
  3093. msgid "Add a new aperture to the aperture list."
  3094. msgstr "Add a new aperture to the aperture list."
  3095. #: flatcamEditors/FlatCAMGrbEditor.py:2458
  3096. msgid "Delete a aperture in the aperture list"
  3097. msgstr "Delete a aperture in the aperture list"
  3098. #: flatcamEditors/FlatCAMGrbEditor.py:2475
  3099. msgid "Buffer Aperture:"
  3100. msgstr "Buffer Aperture:"
  3101. #: flatcamEditors/FlatCAMGrbEditor.py:2477
  3102. msgid "Buffer a aperture in the aperture list"
  3103. msgstr "Buffer a aperture in the aperture list"
  3104. #: flatcamEditors/FlatCAMGrbEditor.py:2490
  3105. msgid ""
  3106. "There are 3 types of corners:\n"
  3107. " - 'Round': the corner is rounded.\n"
  3108. " - 'Square:' the corner is met in a sharp angle.\n"
  3109. " - 'Beveled:' the corner is a line that directly connects the features "
  3110. "meeting in the corner"
  3111. msgstr ""
  3112. "There are 3 types of corners:\n"
  3113. " - 'Round': the corner is rounded.\n"
  3114. " - 'Square:' the corner is met in a sharp angle.\n"
  3115. " - 'Beveled:' the corner is a line that directly connects the features "
  3116. "meeting in the corner"
  3117. #: flatcamEditors/FlatCAMGrbEditor.py:2505 flatcamGUI/FlatCAMGUI.py:737
  3118. #: flatcamGUI/FlatCAMGUI.py:1653 flatcamGUI/FlatCAMGUI.py:1679
  3119. #: flatcamGUI/FlatCAMGUI.py:2033
  3120. msgid "Buffer"
  3121. msgstr "Buffer"
  3122. #: flatcamEditors/FlatCAMGrbEditor.py:2520
  3123. msgid "Scale Aperture:"
  3124. msgstr "Scale Aperture:"
  3125. #: flatcamEditors/FlatCAMGrbEditor.py:2522
  3126. msgid "Scale a aperture in the aperture list"
  3127. msgstr "Scale a aperture in the aperture list"
  3128. #: flatcamEditors/FlatCAMGrbEditor.py:2530
  3129. msgid "Scale factor:"
  3130. msgstr "Scale factor:"
  3131. #: flatcamEditors/FlatCAMGrbEditor.py:2532
  3132. msgid ""
  3133. "The factor by which to scale the selected aperture.\n"
  3134. "Values can be between 0.0000 and 999.9999"
  3135. msgstr ""
  3136. "The factor by which to scale the selected aperture.\n"
  3137. "Values can be between 0.0000 and 999.9999"
  3138. #: flatcamEditors/FlatCAMGrbEditor.py:2558
  3139. msgid "Mark polygon areas:"
  3140. msgstr "Mark polygon areas:"
  3141. #: flatcamEditors/FlatCAMGrbEditor.py:2560
  3142. msgid "Mark the polygon areas."
  3143. msgstr "Mark the polygon areas."
  3144. #: flatcamEditors/FlatCAMGrbEditor.py:2568
  3145. msgid "Area UPPER threshold:"
  3146. msgstr "Area UPPER threshold:"
  3147. #: flatcamEditors/FlatCAMGrbEditor.py:2570
  3148. msgid ""
  3149. "The threshold value, all areas less than this are marked.\n"
  3150. "Can have a value between 0.0000 and 9999.9999"
  3151. msgstr ""
  3152. "The threshold value, all areas less than this are marked.\n"
  3153. "Can have a value between 0.0000 and 9999.9999"
  3154. #: flatcamEditors/FlatCAMGrbEditor.py:2576
  3155. msgid "Area LOWER threshold:"
  3156. msgstr "Area LOWER threshold:"
  3157. #: flatcamEditors/FlatCAMGrbEditor.py:2578
  3158. msgid ""
  3159. "The threshold value, all areas more than this are marked.\n"
  3160. "Can have a value between 0.0000 and 9999.9999"
  3161. msgstr ""
  3162. "The threshold value, all areas more than this are marked.\n"
  3163. "Can have a value between 0.0000 and 9999.9999"
  3164. #: flatcamEditors/FlatCAMGrbEditor.py:2591
  3165. msgid "Go"
  3166. msgstr "Go"
  3167. #: flatcamEditors/FlatCAMGrbEditor.py:2611 flatcamGUI/FlatCAMGUI.py:727
  3168. #: flatcamGUI/FlatCAMGUI.py:2023
  3169. msgid "Add Pad Array"
  3170. msgstr "Add Pad Array"
  3171. #: flatcamEditors/FlatCAMGrbEditor.py:2613
  3172. msgid "Add an array of pads (linear or circular array)"
  3173. msgstr "Add an array of pads (linear or circular array)"
  3174. #: flatcamEditors/FlatCAMGrbEditor.py:2619
  3175. msgid ""
  3176. "Select the type of pads array to create.\n"
  3177. "It can be Linear X(Y) or Circular"
  3178. msgstr ""
  3179. "Select the type of pads array to create.\n"
  3180. "It can be Linear X(Y) or Circular"
  3181. #: flatcamEditors/FlatCAMGrbEditor.py:2630
  3182. msgid "Nr of pads:"
  3183. msgstr "Nr of pads:"
  3184. #: flatcamEditors/FlatCAMGrbEditor.py:2632
  3185. msgid "Specify how many pads to be in the array."
  3186. msgstr "Specify how many pads to be in the array."
  3187. #: flatcamEditors/FlatCAMGrbEditor.py:3126
  3188. #: flatcamEditors/FlatCAMGrbEditor.py:3130
  3189. msgid ""
  3190. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  3191. "retry."
  3192. msgstr ""
  3193. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  3194. "retry."
  3195. #: flatcamEditors/FlatCAMGrbEditor.py:3166
  3196. msgid ""
  3197. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3198. "in format (width, height) and retry."
  3199. msgstr ""
  3200. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3201. "in format (width, height) and retry."
  3202. #: flatcamEditors/FlatCAMGrbEditor.py:3178
  3203. msgid ""
  3204. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3205. "retry."
  3206. msgstr ""
  3207. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3208. "retry."
  3209. #: flatcamEditors/FlatCAMGrbEditor.py:3189
  3210. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  3211. msgstr "[WARNING_NOTCL] Aperture already in the aperture table."
  3212. #: flatcamEditors/FlatCAMGrbEditor.py:3196
  3213. #, python-brace-format
  3214. msgid "[success] Added new aperture with code: {apid}"
  3215. msgstr "[success] Added new aperture with code: {apid}"
  3216. #: flatcamEditors/FlatCAMGrbEditor.py:3224
  3217. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3218. msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3219. #: flatcamEditors/FlatCAMGrbEditor.py:3230
  3220. #, python-format
  3221. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3222. msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3223. #: flatcamEditors/FlatCAMGrbEditor.py:3253
  3224. #, python-brace-format
  3225. msgid "[success] Deleted aperture with code: {del_dia}"
  3226. msgstr "[success] Deleted aperture with code: {del_dia}"
  3227. #: flatcamEditors/FlatCAMGrbEditor.py:3717
  3228. #, python-format
  3229. msgid "Adding aperture: %s geo ..."
  3230. msgstr "Adding aperture: %s geo ..."
  3231. #: flatcamEditors/FlatCAMGrbEditor.py:3905
  3232. msgid ""
  3233. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3234. "creation."
  3235. msgstr ""
  3236. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3237. "creation."
  3238. #: flatcamEditors/FlatCAMGrbEditor.py:3913
  3239. msgid "Creating Gerber."
  3240. msgstr "Creating Gerber."
  3241. #: flatcamEditors/FlatCAMGrbEditor.py:3921
  3242. msgid "[success] Gerber editing finished."
  3243. msgstr "[success] Gerber editing finished."
  3244. #: flatcamEditors/FlatCAMGrbEditor.py:3937
  3245. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3246. msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3247. #: flatcamEditors/FlatCAMGrbEditor.py:4468
  3248. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3249. msgstr "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3250. #: flatcamEditors/FlatCAMGrbEditor.py:4476
  3251. msgid "[success] Done. Apertures geometry deleted."
  3252. msgstr "[success] Done. Apertures geometry deleted."
  3253. #: flatcamEditors/FlatCAMGrbEditor.py:4619
  3254. msgid ""
  3255. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3256. "again."
  3257. msgstr ""
  3258. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3259. "again."
  3260. #: flatcamEditors/FlatCAMGrbEditor.py:4632
  3261. #, python-format
  3262. msgid ""
  3263. "[ERROR_NOTCL] Failed.\n"
  3264. "%s"
  3265. msgstr ""
  3266. "[ERROR_NOTCL] Failed.\n"
  3267. "%s"
  3268. #: flatcamEditors/FlatCAMGrbEditor.py:4649
  3269. msgid ""
  3270. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3271. "retry."
  3272. msgstr ""
  3273. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3274. "retry."
  3275. #: flatcamEditors/FlatCAMGrbEditor.py:4682
  3276. msgid ""
  3277. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3278. "again."
  3279. msgstr ""
  3280. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3281. "again."
  3282. #: flatcamEditors/FlatCAMGrbEditor.py:4698
  3283. msgid "[success] Done. Scale Tool completed."
  3284. msgstr "[success] Done. Scale Tool completed."
  3285. #: flatcamEditors/FlatCAMGrbEditor.py:4735
  3286. msgid "[success] Polygon areas marked."
  3287. msgstr "[success] Polygon areas marked."
  3288. #: flatcamEditors/FlatCAMGrbEditor.py:4737
  3289. msgid "[WARNING_NOTCL] There are no polygons to mark area."
  3290. msgstr "[WARNING_NOTCL] There are no polygons to mark area."
  3291. #: flatcamGUI/FlatCAMGUI.py:51
  3292. msgid "&File"
  3293. msgstr "&File"
  3294. #: flatcamGUI/FlatCAMGUI.py:56
  3295. msgid "&New Project ...\tCTRL+N"
  3296. msgstr "&New Project ...\tCTRL+N"
  3297. #: flatcamGUI/FlatCAMGUI.py:58
  3298. msgid "Will create a new, blank project"
  3299. msgstr "Will create a new, blank project"
  3300. #: flatcamGUI/FlatCAMGUI.py:63
  3301. msgid "&New"
  3302. msgstr "&New"
  3303. #: flatcamGUI/FlatCAMGUI.py:66
  3304. msgid "Geometry\tN"
  3305. msgstr "Geometry\tN"
  3306. #: flatcamGUI/FlatCAMGUI.py:68
  3307. msgid "Will create a new, empty Geometry Object."
  3308. msgstr "Will create a new, empty Geometry Object."
  3309. #: flatcamGUI/FlatCAMGUI.py:70
  3310. msgid "Gerber\tB"
  3311. msgstr "Gerber\tB"
  3312. #: flatcamGUI/FlatCAMGUI.py:72
  3313. msgid "Will create a new, empty Gerber Object."
  3314. msgstr "Will create a new, empty Gerber Object."
  3315. #: flatcamGUI/FlatCAMGUI.py:74
  3316. msgid "Excellon\tL"
  3317. msgstr "Excellon\tL"
  3318. #: flatcamGUI/FlatCAMGUI.py:76
  3319. msgid "Will create a new, empty Excellon Object."
  3320. msgstr "Will create a new, empty Excellon Object."
  3321. #: flatcamGUI/FlatCAMGUI.py:79 flatcamTools/ToolPcbWizard.py:62
  3322. #: flatcamTools/ToolPcbWizard.py:69
  3323. msgid "Open"
  3324. msgstr "Open"
  3325. #: flatcamGUI/FlatCAMGUI.py:83
  3326. msgid "Open &Project ..."
  3327. msgstr "Open &Project ..."
  3328. #: flatcamGUI/FlatCAMGUI.py:89
  3329. msgid "Open &Gerber ...\tCTRL+G"
  3330. msgstr "Open &Gerber ...\tCTRL+G"
  3331. #: flatcamGUI/FlatCAMGUI.py:94
  3332. msgid "Open &Excellon ...\tCTRL+E"
  3333. msgstr "Open &Excellon ...\tCTRL+E"
  3334. #: flatcamGUI/FlatCAMGUI.py:98
  3335. msgid "Open G-&Code ..."
  3336. msgstr "Open G-&Code ..."
  3337. #: flatcamGUI/FlatCAMGUI.py:104
  3338. msgid "Open Config ..."
  3339. msgstr "Open Config ..."
  3340. #: flatcamGUI/FlatCAMGUI.py:108
  3341. msgid "Recent projects"
  3342. msgstr "Recent projects"
  3343. #: flatcamGUI/FlatCAMGUI.py:109
  3344. msgid "Recent files"
  3345. msgstr "Recent files"
  3346. #: flatcamGUI/FlatCAMGUI.py:115
  3347. msgid "Scripting"
  3348. msgstr "Scripting"
  3349. #: flatcamGUI/FlatCAMGUI.py:118
  3350. msgid "New Script ..."
  3351. msgstr "New Script ..."
  3352. #: flatcamGUI/FlatCAMGUI.py:119
  3353. msgid "Open Script ..."
  3354. msgstr "Open Script ..."
  3355. #: flatcamGUI/FlatCAMGUI.py:121
  3356. msgid "Run Script ...\tSHIFT+S"
  3357. msgstr "Run Script ...\tSHIFT+S"
  3358. #: flatcamGUI/FlatCAMGUI.py:123
  3359. msgid ""
  3360. "Will run the opened Tcl Script thus\n"
  3361. "enabling the automation of certain\n"
  3362. "functions of FlatCAM."
  3363. msgstr ""
  3364. "Will run the opened Tcl Script thus\n"
  3365. "enabling the automation of certain\n"
  3366. "functions of FlatCAM."
  3367. #: flatcamGUI/FlatCAMGUI.py:136
  3368. msgid "Import"
  3369. msgstr "Import"
  3370. #: flatcamGUI/FlatCAMGUI.py:138
  3371. msgid "&SVG as Geometry Object ..."
  3372. msgstr "&SVG as Geometry Object ..."
  3373. #: flatcamGUI/FlatCAMGUI.py:141
  3374. msgid "&SVG as Gerber Object ..."
  3375. msgstr "&SVG as Gerber Object ..."
  3376. #: flatcamGUI/FlatCAMGUI.py:146
  3377. msgid "&DXF as Geometry Object ..."
  3378. msgstr "&DXF as Geometry Object ..."
  3379. #: flatcamGUI/FlatCAMGUI.py:149
  3380. msgid "&DXF as Gerber Object ..."
  3381. msgstr "&DXF as Gerber Object ..."
  3382. #: flatcamGUI/FlatCAMGUI.py:154
  3383. msgid "Export"
  3384. msgstr "Export"
  3385. #: flatcamGUI/FlatCAMGUI.py:157
  3386. msgid "Export &SVG ..."
  3387. msgstr "Export &SVG ..."
  3388. #: flatcamGUI/FlatCAMGUI.py:160
  3389. msgid "Export DXF ..."
  3390. msgstr "Export DXF ..."
  3391. #: flatcamGUI/FlatCAMGUI.py:165
  3392. msgid "Export &PNG ..."
  3393. msgstr "Export &PNG ..."
  3394. #: flatcamGUI/FlatCAMGUI.py:167
  3395. msgid ""
  3396. "Will export an image in PNG format,\n"
  3397. "the saved image will contain the visual \n"
  3398. "information currently in FlatCAM Plot Area."
  3399. msgstr ""
  3400. "Will export an image in PNG format,\n"
  3401. "the saved image will contain the visual \n"
  3402. "information currently in FlatCAM Plot Area."
  3403. #: flatcamGUI/FlatCAMGUI.py:176
  3404. msgid "Export &Excellon ..."
  3405. msgstr "Export &Excellon ..."
  3406. #: flatcamGUI/FlatCAMGUI.py:178
  3407. msgid ""
  3408. "Will export an Excellon Object as Excellon file,\n"
  3409. "the coordinates format, the file units and zeros\n"
  3410. "are set in Preferences -> Excellon Export."
  3411. msgstr ""
  3412. "Will export an Excellon Object as Excellon file,\n"
  3413. "the coordinates format, the file units and zeros\n"
  3414. "are set in Preferences -> Excellon Export."
  3415. #: flatcamGUI/FlatCAMGUI.py:185
  3416. msgid "Export &Gerber ..."
  3417. msgstr "Export &Gerber ..."
  3418. #: flatcamGUI/FlatCAMGUI.py:187
  3419. msgid ""
  3420. "Will export an Gerber Object as Gerber file,\n"
  3421. "the coordinates format, the file units and zeros\n"
  3422. "are set in Preferences -> Gerber Export."
  3423. msgstr ""
  3424. "Will export an Gerber Object as Gerber file,\n"
  3425. "the coordinates format, the file units and zeros\n"
  3426. "are set in Preferences -> Gerber Export."
  3427. #: flatcamGUI/FlatCAMGUI.py:203
  3428. msgid "Backup"
  3429. msgstr "Backup"
  3430. #: flatcamGUI/FlatCAMGUI.py:207
  3431. msgid "Import Preferences from file ..."
  3432. msgstr "Import Preferences from file ..."
  3433. #: flatcamGUI/FlatCAMGUI.py:212
  3434. msgid "Export Preferences to file ..."
  3435. msgstr "Export Preferences to file ..."
  3436. #: flatcamGUI/FlatCAMGUI.py:218 flatcamGUI/FlatCAMGUI.py:545
  3437. msgid "Save"
  3438. msgstr "Save"
  3439. #: flatcamGUI/FlatCAMGUI.py:221
  3440. msgid "&Save Project ..."
  3441. msgstr "&Save Project ..."
  3442. #: flatcamGUI/FlatCAMGUI.py:226
  3443. msgid "Save Project &As ...\tCTRL+S"
  3444. msgstr "Save Project &As ...\tCTRL+S"
  3445. #: flatcamGUI/FlatCAMGUI.py:231
  3446. msgid "Save Project C&opy ..."
  3447. msgstr "Save Project C&opy ..."
  3448. #: flatcamGUI/FlatCAMGUI.py:238
  3449. msgid "E&xit"
  3450. msgstr "E&xit"
  3451. #: flatcamGUI/FlatCAMGUI.py:244
  3452. msgid "&Edit"
  3453. msgstr "&Edit"
  3454. #: flatcamGUI/FlatCAMGUI.py:247
  3455. msgid "Edit Object\tE"
  3456. msgstr "Edit Object\tE"
  3457. #: flatcamGUI/FlatCAMGUI.py:248
  3458. msgid "Close Editor\tCTRL+S"
  3459. msgstr "Close Editor\tCTRL+S"
  3460. #: flatcamGUI/FlatCAMGUI.py:256
  3461. msgid "Conversion"
  3462. msgstr "Conversion"
  3463. #: flatcamGUI/FlatCAMGUI.py:258
  3464. msgid "&Join Geo/Gerber/Exc -> Geo"
  3465. msgstr "&Join Geo/Gerber/Exc -> Geo"
  3466. #: flatcamGUI/FlatCAMGUI.py:260
  3467. msgid ""
  3468. "Merge a selection of objects, which can be of type:\n"
  3469. "- Gerber\n"
  3470. "- Excellon\n"
  3471. "- Geometry\n"
  3472. "into a new combo Geometry object."
  3473. msgstr ""
  3474. "Merge a selection of objects, which can be of type:\n"
  3475. "- Gerber\n"
  3476. "- Excellon\n"
  3477. "- Geometry\n"
  3478. "into a new combo Geometry object."
  3479. #: flatcamGUI/FlatCAMGUI.py:267
  3480. msgid "Join Excellon(s) -> Excellon"
  3481. msgstr "Join Excellon(s) -> Excellon"
  3482. #: flatcamGUI/FlatCAMGUI.py:269
  3483. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3484. msgstr ""
  3485. "Merge a selection of Excellon objects into a new combo Excellon object."
  3486. #: flatcamGUI/FlatCAMGUI.py:272
  3487. msgid "Join Gerber(s) -> Gerber"
  3488. msgstr "Join Gerber(s) -> Gerber"
  3489. #: flatcamGUI/FlatCAMGUI.py:274
  3490. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3491. msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
  3492. #: flatcamGUI/FlatCAMGUI.py:279
  3493. msgid "Convert Single to MultiGeo"
  3494. msgstr "Convert Single to MultiGeo"
  3495. #: flatcamGUI/FlatCAMGUI.py:281
  3496. msgid ""
  3497. "Will convert a Geometry object from single_geometry type\n"
  3498. "to a multi_geometry type."
  3499. msgstr ""
  3500. "Will convert a Geometry object from single_geometry type\n"
  3501. "to a multi_geometry type."
  3502. #: flatcamGUI/FlatCAMGUI.py:285
  3503. msgid "Convert Multi to SingleGeo"
  3504. msgstr "Convert Multi to SingleGeo"
  3505. #: flatcamGUI/FlatCAMGUI.py:287
  3506. msgid ""
  3507. "Will convert a Geometry object from multi_geometry type\n"
  3508. "to a single_geometry type."
  3509. msgstr ""
  3510. "Will convert a Geometry object from multi_geometry type\n"
  3511. "to a single_geometry type."
  3512. #: flatcamGUI/FlatCAMGUI.py:293
  3513. msgid "Convert Any to Geo"
  3514. msgstr "Convert Any to Geo"
  3515. #: flatcamGUI/FlatCAMGUI.py:295
  3516. msgid "Convert Any to Gerber"
  3517. msgstr "Convert Any to Gerber"
  3518. #: flatcamGUI/FlatCAMGUI.py:300
  3519. msgid "&Copy\tCTRL+C"
  3520. msgstr "&Copy\tCTRL+C"
  3521. #: flatcamGUI/FlatCAMGUI.py:304
  3522. msgid "&Delete\tDEL"
  3523. msgstr "&Delete\tDEL"
  3524. #: flatcamGUI/FlatCAMGUI.py:308
  3525. msgid "Se&t Origin\tO"
  3526. msgstr "Se&t Origin\tO"
  3527. #: flatcamGUI/FlatCAMGUI.py:309
  3528. msgid "Jump to Location\tJ"
  3529. msgstr "Jump to Location\tJ"
  3530. #: flatcamGUI/FlatCAMGUI.py:314
  3531. msgid "Toggle Units\tQ"
  3532. msgstr "Toggle Units\tQ"
  3533. #: flatcamGUI/FlatCAMGUI.py:315
  3534. msgid "&Select All\tCTRL+A"
  3535. msgstr "&Select All\tCTRL+A"
  3536. #: flatcamGUI/FlatCAMGUI.py:319
  3537. msgid "&Preferences\tSHIFT+P"
  3538. msgstr "&Preferences\tSHIFT+P"
  3539. #: flatcamGUI/FlatCAMGUI.py:322
  3540. msgid "&Options"
  3541. msgstr "&Options"
  3542. #: flatcamGUI/FlatCAMGUI.py:337
  3543. msgid "&Rotate Selection\tSHIFT+(R)"
  3544. msgstr "&Rotate Selection\tSHIFT+(R)"
  3545. #: flatcamGUI/FlatCAMGUI.py:342
  3546. msgid "&Skew on X axis\tSHIFT+X"
  3547. msgstr "&Skew on X axis\tSHIFT+X"
  3548. #: flatcamGUI/FlatCAMGUI.py:344
  3549. msgid "S&kew on Y axis\tSHIFT+Y"
  3550. msgstr "S&kew on Y axis\tSHIFT+Y"
  3551. #: flatcamGUI/FlatCAMGUI.py:349
  3552. msgid "Flip on &X axis\tX"
  3553. msgstr "Flip on &X axis\tX"
  3554. #: flatcamGUI/FlatCAMGUI.py:351
  3555. msgid "Flip on &Y axis\tY"
  3556. msgstr "Flip on &Y axis\tY"
  3557. #: flatcamGUI/FlatCAMGUI.py:356
  3558. msgid "View source\tALT+S"
  3559. msgstr "View source\tALT+S"
  3560. #: flatcamGUI/FlatCAMGUI.py:361
  3561. msgid "&View"
  3562. msgstr "&View"
  3563. #: flatcamGUI/FlatCAMGUI.py:362
  3564. msgid "Enable all plots\tALT+1"
  3565. msgstr "Enable all plots\tALT+1"
  3566. #: flatcamGUI/FlatCAMGUI.py:364
  3567. msgid "Disable all plots\tALT+2"
  3568. msgstr "Disable all plots\tALT+2"
  3569. #: flatcamGUI/FlatCAMGUI.py:366
  3570. msgid "Disable non-selected\tALT+3"
  3571. msgstr "Disable non-selected\tALT+3"
  3572. #: flatcamGUI/FlatCAMGUI.py:369
  3573. msgid "&Zoom Fit\tV"
  3574. msgstr "&Zoom Fit\tV"
  3575. #: flatcamGUI/FlatCAMGUI.py:370
  3576. msgid "&Zoom In\t="
  3577. msgstr "&Zoom In\t="
  3578. #: flatcamGUI/FlatCAMGUI.py:371
  3579. msgid "&Zoom Out\t-"
  3580. msgstr "&Zoom Out\t-"
  3581. #: flatcamGUI/FlatCAMGUI.py:375
  3582. msgid "Toggle Code Editor\tCTRL+E"
  3583. msgstr "Toggle Code Editor\tCTRL+E"
  3584. #: flatcamGUI/FlatCAMGUI.py:378
  3585. msgid "&Toggle FullScreen\tALT+F10"
  3586. msgstr "&Toggle FullScreen\tALT+F10"
  3587. #: flatcamGUI/FlatCAMGUI.py:380
  3588. msgid "&Toggle Plot Area\tCTRL+F10"
  3589. msgstr "&Toggle Plot Area\tCTRL+F10"
  3590. #: flatcamGUI/FlatCAMGUI.py:382
  3591. msgid "&Toggle Project/Sel/Tool\t`"
  3592. msgstr "&Toggle Project/Sel/Tool\t`"
  3593. #: flatcamGUI/FlatCAMGUI.py:385
  3594. msgid "&Toggle Grid Snap\tG"
  3595. msgstr "&Toggle Grid Snap\tG"
  3596. #: flatcamGUI/FlatCAMGUI.py:387
  3597. msgid "&Toggle Axis\tSHIFT+G"
  3598. msgstr "&Toggle Axis\tSHIFT+G"
  3599. #: flatcamGUI/FlatCAMGUI.py:390
  3600. msgid "Toggle Workspace\tSHIFT+W"
  3601. msgstr "Toggle Workspace\tSHIFT+W"
  3602. #: flatcamGUI/FlatCAMGUI.py:393
  3603. msgid "&Tool"
  3604. msgstr "&Tool"
  3605. #: flatcamGUI/FlatCAMGUI.py:395
  3606. msgid "&Command Line\tS"
  3607. msgstr "&Command Line\tS"
  3608. #: flatcamGUI/FlatCAMGUI.py:398
  3609. msgid "&Help"
  3610. msgstr "&Help"
  3611. #: flatcamGUI/FlatCAMGUI.py:399
  3612. msgid "Help\tF1"
  3613. msgstr "Help\tF1"
  3614. #: flatcamGUI/FlatCAMGUI.py:400
  3615. msgid "FlatCAM.org"
  3616. msgstr "FlatCAM.org"
  3617. #: flatcamGUI/FlatCAMGUI.py:403
  3618. msgid "Shortcuts List\tF3"
  3619. msgstr "Shortcuts List\tF3"
  3620. #: flatcamGUI/FlatCAMGUI.py:404
  3621. msgid "YouTube Channel\tF4"
  3622. msgstr "YouTube Channel\tF4"
  3623. #: flatcamGUI/FlatCAMGUI.py:406
  3624. msgid "About"
  3625. msgstr "About"
  3626. #: flatcamGUI/FlatCAMGUI.py:413
  3627. msgid "Add Circle\tO"
  3628. msgstr "Add Circle\tO"
  3629. #: flatcamGUI/FlatCAMGUI.py:415
  3630. msgid "Add Arc\tA"
  3631. msgstr "Add Arc\tA"
  3632. #: flatcamGUI/FlatCAMGUI.py:418
  3633. msgid "Add Rectangle\tR"
  3634. msgstr "Add Rectangle\tR"
  3635. #: flatcamGUI/FlatCAMGUI.py:421
  3636. msgid "Add Polygon\tN"
  3637. msgstr "Add Polygon\tN"
  3638. #: flatcamGUI/FlatCAMGUI.py:423
  3639. msgid "Add Path\tP"
  3640. msgstr "Add Path\tP"
  3641. #: flatcamGUI/FlatCAMGUI.py:425
  3642. msgid "Add Text\tT"
  3643. msgstr "Add Text\tT"
  3644. #: flatcamGUI/FlatCAMGUI.py:428
  3645. msgid "Polygon Union\tU"
  3646. msgstr "Polygon Union\tU"
  3647. #: flatcamGUI/FlatCAMGUI.py:430
  3648. msgid "Polygon Intersection\tE"
  3649. msgstr "Polygon Intersection\tE"
  3650. #: flatcamGUI/FlatCAMGUI.py:432
  3651. msgid "Polygon Subtraction\tS"
  3652. msgstr "Polygon Subtraction\tS"
  3653. #: flatcamGUI/FlatCAMGUI.py:436
  3654. msgid "Cut Path\tX"
  3655. msgstr "Cut Path\tX"
  3656. #: flatcamGUI/FlatCAMGUI.py:438
  3657. msgid "Copy Geom\tC"
  3658. msgstr "Copy Geom\tC"
  3659. #: flatcamGUI/FlatCAMGUI.py:440
  3660. msgid "Delete Shape\tDEL"
  3661. msgstr "Delete Shape\tDEL"
  3662. #: flatcamGUI/FlatCAMGUI.py:443 flatcamGUI/FlatCAMGUI.py:520
  3663. msgid "Move\tM"
  3664. msgstr "Move\tM"
  3665. #: flatcamGUI/FlatCAMGUI.py:445
  3666. msgid "Buffer Tool\tB"
  3667. msgstr "Buffer Tool\tB"
  3668. #: flatcamGUI/FlatCAMGUI.py:448
  3669. msgid "Paint Tool\tI"
  3670. msgstr "Paint Tool\tI"
  3671. #: flatcamGUI/FlatCAMGUI.py:451
  3672. msgid "Transform Tool\tALT+R"
  3673. msgstr "Transform Tool\tALT+R"
  3674. #: flatcamGUI/FlatCAMGUI.py:455
  3675. msgid "Toggle Corner Snap\tK"
  3676. msgstr "Toggle Corner Snap\tK"
  3677. #: flatcamGUI/FlatCAMGUI.py:458
  3678. msgid ">Excellon Editor<"
  3679. msgstr ">Excellon Editor<"
  3680. #: flatcamGUI/FlatCAMGUI.py:462
  3681. msgid "Add Drill Array\tA"
  3682. msgstr "Add Drill Array\tA"
  3683. #: flatcamGUI/FlatCAMGUI.py:464
  3684. msgid "Add Drill\tD"
  3685. msgstr "Add Drill\tD"
  3686. #: flatcamGUI/FlatCAMGUI.py:468
  3687. msgid "Add Slot Array\tQ"
  3688. msgstr "Add Slot Array\tQ"
  3689. #: flatcamGUI/FlatCAMGUI.py:470
  3690. msgid "Add Slot\tW"
  3691. msgstr "Add Slot\tW"
  3692. #: flatcamGUI/FlatCAMGUI.py:474
  3693. msgid "Resize Drill(S)\tR"
  3694. msgstr "Resize Drill(S)\tR"
  3695. #: flatcamGUI/FlatCAMGUI.py:476 flatcamGUI/FlatCAMGUI.py:515
  3696. msgid "Copy\tC"
  3697. msgstr "Copy\tC"
  3698. #: flatcamGUI/FlatCAMGUI.py:478 flatcamGUI/FlatCAMGUI.py:517
  3699. msgid "Delete\tDEL"
  3700. msgstr "Delete\tDEL"
  3701. #: flatcamGUI/FlatCAMGUI.py:483
  3702. msgid "Move Drill(s)\tM"
  3703. msgstr "Move Drill(s)\tM"
  3704. #: flatcamGUI/FlatCAMGUI.py:486
  3705. msgid ">Gerber Editor<"
  3706. msgstr ">Gerber Editor<"
  3707. #: flatcamGUI/FlatCAMGUI.py:490
  3708. msgid "Add Pad\tP"
  3709. msgstr "Add Pad\tP"
  3710. #: flatcamGUI/FlatCAMGUI.py:492
  3711. msgid "Add Pad Array\tA"
  3712. msgstr "Add Pad Array\tA"
  3713. #: flatcamGUI/FlatCAMGUI.py:494
  3714. msgid "Add Track\tT"
  3715. msgstr "Add Track\tT"
  3716. #: flatcamGUI/FlatCAMGUI.py:496
  3717. msgid "Add Region\tN"
  3718. msgstr "Add Region\tN"
  3719. #: flatcamGUI/FlatCAMGUI.py:500
  3720. msgid "Poligonize\tALT+N"
  3721. msgstr "Poligonize\tALT+N"
  3722. #: flatcamGUI/FlatCAMGUI.py:502
  3723. msgid "Add SemiDisc\tE"
  3724. msgstr "Add SemiDisc\tE"
  3725. #: flatcamGUI/FlatCAMGUI.py:503
  3726. msgid "Add Disc\tD"
  3727. msgstr "Add Disc\tD"
  3728. #: flatcamGUI/FlatCAMGUI.py:505
  3729. msgid "Buffer\tB"
  3730. msgstr "Buffer\tB"
  3731. #: flatcamGUI/FlatCAMGUI.py:506
  3732. msgid "Scale\tS"
  3733. msgstr "Scale\tS"
  3734. #: flatcamGUI/FlatCAMGUI.py:508
  3735. msgid "Mark Area\tALT+A"
  3736. msgstr "Mark Area\tALT+A"
  3737. #: flatcamGUI/FlatCAMGUI.py:510
  3738. msgid "Eraser\tCTRL+E"
  3739. msgstr "Eraser\tCTRL+E"
  3740. #: flatcamGUI/FlatCAMGUI.py:512
  3741. msgid "Transform\tALT+R"
  3742. msgstr "Transform\tALT+R"
  3743. #: flatcamGUI/FlatCAMGUI.py:536
  3744. msgid "Enable Plot"
  3745. msgstr "Enable Plot"
  3746. #: flatcamGUI/FlatCAMGUI.py:537
  3747. msgid "Disable Plot"
  3748. msgstr "Disable Plot"
  3749. #: flatcamGUI/FlatCAMGUI.py:539
  3750. msgid "Generate CNC"
  3751. msgstr "Generate CNC"
  3752. #: flatcamGUI/FlatCAMGUI.py:540
  3753. msgid "View Source"
  3754. msgstr "View Source"
  3755. #: flatcamGUI/FlatCAMGUI.py:542 flatcamGUI/FlatCAMGUI.py:1700
  3756. msgid "Edit"
  3757. msgstr "Edit"
  3758. #: flatcamGUI/FlatCAMGUI.py:548 flatcamGUI/FlatCAMGUI.py:1706
  3759. #: flatcamTools/ToolProperties.py:25
  3760. msgid "Properties"
  3761. msgstr "Properties"
  3762. #: flatcamGUI/FlatCAMGUI.py:577
  3763. msgid "File Toolbar"
  3764. msgstr "File Toolbar"
  3765. #: flatcamGUI/FlatCAMGUI.py:581
  3766. msgid "Edit Toolbar"
  3767. msgstr "Edit Toolbar"
  3768. #: flatcamGUI/FlatCAMGUI.py:585
  3769. msgid "View Toolbar"
  3770. msgstr "View Toolbar"
  3771. #: flatcamGUI/FlatCAMGUI.py:589
  3772. msgid "Shell Toolbar"
  3773. msgstr "Shell Toolbar"
  3774. #: flatcamGUI/FlatCAMGUI.py:593
  3775. msgid "Tools Toolbar"
  3776. msgstr "Tools Toolbar"
  3777. #: flatcamGUI/FlatCAMGUI.py:597
  3778. msgid "Excellon Editor Toolbar"
  3779. msgstr "Excellon Editor Toolbar"
  3780. #: flatcamGUI/FlatCAMGUI.py:601
  3781. msgid "Geometry Editor Toolbar"
  3782. msgstr "Geometry Editor Toolbar"
  3783. #: flatcamGUI/FlatCAMGUI.py:605
  3784. msgid "Gerber Editor Toolbar"
  3785. msgstr "Gerber Editor Toolbar"
  3786. #: flatcamGUI/FlatCAMGUI.py:609
  3787. msgid "Grid Toolbar"
  3788. msgstr "Grid Toolbar"
  3789. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1921
  3790. msgid "Open project"
  3791. msgstr "Open project"
  3792. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1922
  3793. msgid "Save project"
  3794. msgstr "Save project"
  3795. #: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1925
  3796. msgid "New Blank Geometry"
  3797. msgstr "New Blank Geometry"
  3798. #: flatcamGUI/FlatCAMGUI.py:633
  3799. msgid "New Blank Gerber"
  3800. msgstr "New Blank Gerber"
  3801. #: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1926
  3802. msgid "New Blank Excellon"
  3803. msgstr "New Blank Excellon"
  3804. #: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1928
  3805. msgid "Editor"
  3806. msgstr "Editor"
  3807. #: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1930
  3808. msgid "Save Object and close the Editor"
  3809. msgstr "Save Object and close the Editor"
  3810. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1934
  3811. msgid "&Delete"
  3812. msgstr "&Delete"
  3813. #: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1937
  3814. msgid "&Replot"
  3815. msgstr "&Replot"
  3816. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1938
  3817. msgid "&Clear plot"
  3818. msgstr "&Clear plot"
  3819. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1939
  3820. msgid "Zoom In"
  3821. msgstr "Zoom In"
  3822. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1940
  3823. msgid "Zoom Out"
  3824. msgstr "Zoom Out"
  3825. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1638
  3826. #: flatcamGUI/FlatCAMGUI.py:1941
  3827. msgid "Zoom Fit"
  3828. msgstr "Zoom Fit"
  3829. #: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1946
  3830. msgid "&Command Line"
  3831. msgstr "&Command Line"
  3832. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1949
  3833. msgid "2Sided Tool"
  3834. msgstr "2Sided Tool"
  3835. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1950
  3836. msgid "&Cutout Tool"
  3837. msgstr "&Cutout Tool"
  3838. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:1951
  3839. #: flatcamGUI/ObjectUI.py:390 flatcamTools/ToolNonCopperClear.py:396
  3840. msgid "NCC Tool"
  3841. msgstr "NCC Tool"
  3842. #: flatcamGUI/FlatCAMGUI.py:663 flatcamGUI/FlatCAMGUI.py:1955
  3843. msgid "Panel Tool"
  3844. msgstr "Panel Tool"
  3845. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1956
  3846. #: flatcamTools/ToolFilm.py:204
  3847. msgid "Film Tool"
  3848. msgstr "Film Tool"
  3849. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1958
  3850. #: flatcamTools/ToolSolderPaste.py:450
  3851. msgid "SolderPaste Tool"
  3852. msgstr "SolderPaste Tool"
  3853. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1959
  3854. #: flatcamTools/ToolSub.py:26
  3855. msgid "Substract Tool"
  3856. msgstr "Substract Tool"
  3857. #: flatcamGUI/FlatCAMGUI.py:670 flatcamGUI/FlatCAMGUI.py:1964
  3858. msgid "Calculators Tool"
  3859. msgstr "Calculators Tool"
  3860. #: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:691
  3861. #: flatcamGUI/FlatCAMGUI.py:725 flatcamGUI/FlatCAMGUI.py:1968
  3862. #: flatcamGUI/FlatCAMGUI.py:2021
  3863. msgid "Select"
  3864. msgstr "Select"
  3865. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1969
  3866. msgid "Add Drill Hole"
  3867. msgstr "Add Drill Hole"
  3868. #: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1971
  3869. msgid "Add Drill Hole Array"
  3870. msgstr "Add Drill Hole Array"
  3871. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1692
  3872. #: flatcamGUI/FlatCAMGUI.py:1973
  3873. msgid "Add Slot"
  3874. msgstr "Add Slot"
  3875. #: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:1693
  3876. #: flatcamGUI/FlatCAMGUI.py:1975
  3877. msgid "Add Slot Array"
  3878. msgstr "Add Slot Array"
  3879. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1695
  3880. #: flatcamGUI/FlatCAMGUI.py:1972
  3881. msgid "Resize Drill"
  3882. msgstr "Resize Drill"
  3883. #: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:1978
  3884. msgid "Copy Drill"
  3885. msgstr "Copy Drill"
  3886. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1980
  3887. msgid "Delete Drill"
  3888. msgstr "Delete Drill"
  3889. #: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:1983
  3890. msgid "Move Drill"
  3891. msgstr "Move Drill"
  3892. #: flatcamGUI/FlatCAMGUI.py:692 flatcamGUI/FlatCAMGUI.py:1987
  3893. msgid "Add Circle"
  3894. msgstr "Add Circle"
  3895. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:1988
  3896. msgid "Add Arc"
  3897. msgstr "Add Arc"
  3898. #: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1990
  3899. msgid "Add Rectangle"
  3900. msgstr "Add Rectangle"
  3901. #: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1993
  3902. msgid "Add Path"
  3903. msgstr "Add Path"
  3904. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:1995
  3905. msgid "Add Polygon"
  3906. msgstr "Add Polygon"
  3907. #: flatcamGUI/FlatCAMGUI.py:701 flatcamGUI/FlatCAMGUI.py:1997
  3908. msgid "Add Text"
  3909. msgstr "Add Text"
  3910. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1998
  3911. msgid "Add Buffer"
  3912. msgstr "Add Buffer"
  3913. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:1999
  3914. msgid "Paint Shape"
  3915. msgstr "Paint Shape"
  3916. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:742
  3917. #: flatcamGUI/FlatCAMGUI.py:1655 flatcamGUI/FlatCAMGUI.py:1682
  3918. #: flatcamGUI/FlatCAMGUI.py:2000 flatcamGUI/FlatCAMGUI.py:2037
  3919. msgid "Eraser"
  3920. msgstr "Eraser"
  3921. #: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:2003
  3922. msgid "Polygon Union"
  3923. msgstr "Polygon Union"
  3924. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:2005
  3925. msgid "Polygon Intersection"
  3926. msgstr "Polygon Intersection"
  3927. #: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:2007
  3928. msgid "Polygon Subtraction"
  3929. msgstr "Polygon Subtraction"
  3930. #: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:2010
  3931. msgid "Cut Path"
  3932. msgstr "Cut Path"
  3933. #: flatcamGUI/FlatCAMGUI.py:715
  3934. msgid "Copy Shape(s)"
  3935. msgstr "Copy Shape(s)"
  3936. #: flatcamGUI/FlatCAMGUI.py:718
  3937. msgid "Delete Shape '-'"
  3938. msgstr "Delete Shape '-'"
  3939. #: flatcamGUI/FlatCAMGUI.py:720 flatcamGUI/FlatCAMGUI.py:749
  3940. #: flatcamGUI/FlatCAMGUI.py:1662 flatcamGUI/FlatCAMGUI.py:1686
  3941. #: flatcamGUI/FlatCAMGUI.py:2015 flatcamGUI/FlatCAMGUI.py:2044
  3942. msgid "Transformations"
  3943. msgstr "Transformations"
  3944. #: flatcamGUI/FlatCAMGUI.py:722
  3945. msgid "Move Objects "
  3946. msgstr "Move Objects "
  3947. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2022
  3948. msgid "Add Pad"
  3949. msgstr "Add Pad"
  3950. #: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:2024
  3951. msgid "Add Track"
  3952. msgstr "Add Track"
  3953. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2025
  3954. msgid "Add Region"
  3955. msgstr "Add Region"
  3956. #: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1674
  3957. #: flatcamGUI/FlatCAMGUI.py:2027
  3958. msgid "Poligonize"
  3959. msgstr "Poligonize"
  3960. #: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1675
  3961. #: flatcamGUI/FlatCAMGUI.py:2029
  3962. msgid "SemiDisc"
  3963. msgstr "SemiDisc"
  3964. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1676
  3965. #: flatcamGUI/FlatCAMGUI.py:2030
  3966. msgid "Disc"
  3967. msgstr "Disc"
  3968. #: flatcamGUI/FlatCAMGUI.py:740 flatcamGUI/FlatCAMGUI.py:1681
  3969. #: flatcamGUI/FlatCAMGUI.py:2036
  3970. msgid "Mark Area"
  3971. msgstr "Mark Area"
  3972. #: flatcamGUI/FlatCAMGUI.py:751 flatcamGUI/FlatCAMGUI.py:1665
  3973. #: flatcamGUI/FlatCAMGUI.py:1705 flatcamGUI/FlatCAMGUI.py:2046
  3974. #: flatcamTools/ToolMove.py:26
  3975. msgid "Move"
  3976. msgstr "Move"
  3977. #: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:2052
  3978. msgid "Snap to grid"
  3979. msgstr "Snap to grid"
  3980. #: flatcamGUI/FlatCAMGUI.py:760 flatcamGUI/FlatCAMGUI.py:2055
  3981. msgid "Grid X snapping distance"
  3982. msgstr "Grid X snapping distance"
  3983. #: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2060
  3984. msgid "Grid Y snapping distance"
  3985. msgstr "Grid Y snapping distance"
  3986. #: flatcamGUI/FlatCAMGUI.py:771 flatcamGUI/FlatCAMGUI.py:2066
  3987. msgid ""
  3988. "When active, value on Grid_X\n"
  3989. "is copied to the Grid_Y value."
  3990. msgstr ""
  3991. "When active, value on Grid_X\n"
  3992. "is copied to the Grid_Y value."
  3993. #: flatcamGUI/FlatCAMGUI.py:777 flatcamGUI/FlatCAMGUI.py:2072
  3994. msgid "Snap to corner"
  3995. msgstr "Snap to corner"
  3996. #: flatcamGUI/FlatCAMGUI.py:781 flatcamGUI/FlatCAMGUI.py:2076
  3997. #: flatcamGUI/FlatCAMGUI.py:3473
  3998. msgid "Max. magnet distance"
  3999. msgstr "Max. magnet distance"
  4000. #: flatcamGUI/FlatCAMGUI.py:808 flatcamGUI/FlatCAMGUI.py:1632
  4001. msgid "Project"
  4002. msgstr "Project"
  4003. #: flatcamGUI/FlatCAMGUI.py:818
  4004. msgid "Selected"
  4005. msgstr "Selected"
  4006. #: flatcamGUI/FlatCAMGUI.py:837 flatcamGUI/FlatCAMGUI.py:845
  4007. msgid "Plot Area"
  4008. msgstr "Plot Area"
  4009. #: flatcamGUI/FlatCAMGUI.py:870
  4010. msgid "General"
  4011. msgstr "General"
  4012. #: flatcamGUI/FlatCAMGUI.py:879
  4013. msgid "APP. DEFAULTS"
  4014. msgstr "APP. DEFAULTS"
  4015. #: flatcamGUI/FlatCAMGUI.py:880
  4016. msgid "PROJ. OPTIONS "
  4017. msgstr "PROJ. OPTIONS "
  4018. #: flatcamGUI/FlatCAMGUI.py:892 flatcamTools/ToolDblSided.py:47
  4019. msgid "GERBER"
  4020. msgstr "GERBER"
  4021. #: flatcamGUI/FlatCAMGUI.py:902 flatcamTools/ToolDblSided.py:71
  4022. msgid "EXCELLON"
  4023. msgstr "EXCELLON"
  4024. #: flatcamGUI/FlatCAMGUI.py:912 flatcamTools/ToolDblSided.py:95
  4025. msgid "GEOMETRY"
  4026. msgstr "GEOMETRY"
  4027. #: flatcamGUI/FlatCAMGUI.py:922
  4028. msgid "CNC-JOB"
  4029. msgstr "CNC-JOB"
  4030. #: flatcamGUI/FlatCAMGUI.py:931
  4031. msgid "TOOLS"
  4032. msgstr "TOOLS"
  4033. #: flatcamGUI/FlatCAMGUI.py:948
  4034. msgid "Import Preferences"
  4035. msgstr "Import Preferences"
  4036. #: flatcamGUI/FlatCAMGUI.py:951
  4037. msgid ""
  4038. "Import a full set of FlatCAM settings from a file\n"
  4039. "previously saved on HDD.\n"
  4040. "\n"
  4041. "FlatCAM automatically save a 'factory_defaults' file\n"
  4042. "on the first start. Do not delete that file."
  4043. msgstr ""
  4044. "Import a full set of FlatCAM settings from a file\n"
  4045. "previously saved on HDD.\n"
  4046. "\n"
  4047. "FlatCAM automatically save a 'factory_defaults' file\n"
  4048. "on the first start. Do not delete that file."
  4049. #: flatcamGUI/FlatCAMGUI.py:958
  4050. msgid "Export Preferences"
  4051. msgstr "Export Preferences"
  4052. #: flatcamGUI/FlatCAMGUI.py:961
  4053. msgid ""
  4054. "Export a full set of FlatCAM settings in a file\n"
  4055. "that is saved on HDD."
  4056. msgstr ""
  4057. "Export a full set of FlatCAM settings in a file\n"
  4058. "that is saved on HDD."
  4059. #: flatcamGUI/FlatCAMGUI.py:966
  4060. msgid "Open Pref Folder"
  4061. msgstr "Open Pref Folder"
  4062. #: flatcamGUI/FlatCAMGUI.py:969
  4063. msgid "Open the folder where FlatCAM save the preferences files."
  4064. msgstr "Open the folder where FlatCAM save the preferences files."
  4065. #: flatcamGUI/FlatCAMGUI.py:980
  4066. msgid ""
  4067. "Save the current settings in the 'current_defaults' file\n"
  4068. "which is the file storing the working default preferences."
  4069. msgstr ""
  4070. "Save the current settings in the 'current_defaults' file\n"
  4071. "which is the file storing the working default preferences."
  4072. #: flatcamGUI/FlatCAMGUI.py:1006
  4073. msgid ""
  4074. "<b>General Shortcut list</b><br>\n"
  4075. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4076. "\"width:283px\">\n"
  4077. " <tbody>\n"
  4078. " <tr height=\"20\">\n"
  4079. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4080. "td>\n"
  4081. " <td width=\"194\"><span style=\"color:"
  4082. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4083. " </tr>\n"
  4084. " <tr height=\"20\">\n"
  4085. " <td height=\"20\">&nbsp;</td>\n"
  4086. " <td>&nbsp;</td>\n"
  4087. " </tr>\n"
  4088. " <tr height=\"20\">\n"
  4089. " <td height=\"20\"><strong>1</strong></td>\n"
  4090. " <td>&nbsp;Switch to Project Tab</td>\n"
  4091. " </tr>\n"
  4092. " <tr height=\"20\">\n"
  4093. " <td height=\"20\"><strong>2</strong></td>\n"
  4094. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4095. " </tr>\n"
  4096. " <tr height=\"20\">\n"
  4097. " <td height=\"20\"><strong>3</strong></td>\n"
  4098. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4099. " </tr>\n"
  4100. " <tr height=\"20\">\n"
  4101. " <td height=\"20\">&nbsp;</td>\n"
  4102. " <td>&nbsp;</td>\n"
  4103. " </tr>\n"
  4104. " <tr height=\"20\">\n"
  4105. " <td height=\"20\"><strong>B</strong></td>\n"
  4106. " <td>&nbsp;New Gerber</td>\n"
  4107. " </tr>\n"
  4108. " <tr height=\"20\">\n"
  4109. " <td height=\"20\"><strong>E</strong></td>\n"
  4110. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4111. " </tr>\n"
  4112. " <tr height=\"20\">\n"
  4113. " <td height=\"20\"><strong>G</strong></td>\n"
  4114. " <td>&nbsp;Grid On/Off</td>\n"
  4115. " </tr>\n"
  4116. " <tr height=\"20\">\n"
  4117. " <td height=\"20\"><strong>J</strong></td>\n"
  4118. " <td>&nbsp;Jump to Coordinates</td>\n"
  4119. " </tr>\n"
  4120. " <tr height=\"20\">\n"
  4121. " <td height=\"20\"><strong>L</strong></td>\n"
  4122. " <td>&nbsp;New Excellon</td>\n"
  4123. " </tr>\n"
  4124. " <tr height=\"20\">\n"
  4125. " <td height=\"20\"><strong>M</strong></td>\n"
  4126. " <td>&nbsp;Move Obj</td>\n"
  4127. " </tr>\n"
  4128. " <tr height=\"20\">\n"
  4129. " <td height=\"20\"><strong>N</strong></td>\n"
  4130. " <td>&nbsp;New Geometry</td>\n"
  4131. " </tr>\n"
  4132. " <tr height=\"20\">\n"
  4133. " <td height=\"20\"><strong>O</strong></td>\n"
  4134. " <td>&nbsp;Set Origin</td>\n"
  4135. " </tr>\n"
  4136. " <tr height=\"20\">\n"
  4137. " <td height=\"20\"><strong>Q</strong></td>\n"
  4138. " <td>&nbsp;Change Units</td>\n"
  4139. " </tr>\n"
  4140. " <tr height=\"20\">\n"
  4141. " <td height=\"20\"><strong>P</strong></td>\n"
  4142. " <td>&nbsp;Open Properties Tool</td>\n"
  4143. " </tr>\n"
  4144. " <tr height=\"20\">\n"
  4145. " <td height=\"20\"><strong>R</strong></td>\n"
  4146. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4147. " </tr>\n"
  4148. " <tr height=\"20\">\n"
  4149. " <td height=\"20\"><strong>S</strong></td>\n"
  4150. " <td>&nbsp;Shell Toggle</td>\n"
  4151. " </tr>\n"
  4152. " <tr height=\"20\">\n"
  4153. " <td height=\"20\"><strong>T</strong></td>\n"
  4154. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4155. "or in Tools NCC or Tools Paint)</td>\n"
  4156. " </tr>\n"
  4157. " <tr height=\"20\">\n"
  4158. " <td height=\"20\"><strong>V</strong></td>\n"
  4159. " <td>&nbsp;Zoom Fit</td>\n"
  4160. " </tr>\n"
  4161. " <tr height=\"20\">\n"
  4162. " <td height=\"20\"><strong>X</strong></td>\n"
  4163. " <td>&nbsp;Flip on X_axis</td>\n"
  4164. " </tr>\n"
  4165. " <tr height=\"20\">\n"
  4166. " <td height=\"20\"><strong>Y</strong></td>\n"
  4167. " <td>&nbsp;Flip on Y_axis</td>\n"
  4168. " </tr>\n"
  4169. " <tr height=\"20\">\n"
  4170. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4171. " <td>&nbsp;Zoom Out</td>\n"
  4172. " </tr>\n"
  4173. " <tr height=\"20\">\n"
  4174. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4175. " <td>&nbsp;Zoom In</td>\n"
  4176. " </tr>\n"
  4177. " <tr height=\"20\">\n"
  4178. " <td height=\"20\">&nbsp;</td>\n"
  4179. " <td>&nbsp;</td>\n"
  4180. " </tr>\n"
  4181. " <tr height=\"20\">\n"
  4182. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4183. " <td>&nbsp;Select All</td>\n"
  4184. " </tr>\n"
  4185. " <tr height=\"20\">\n"
  4186. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4187. " <td>&nbsp;Copy Obj</td>\n"
  4188. " </tr>\n"
  4189. " <tr height=\"20\">\n"
  4190. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4191. " <td>&nbsp;Open Excellon File</td>\n"
  4192. " </tr>\n"
  4193. " <tr height=\"20\">\n"
  4194. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4195. " <td>&nbsp;Open Gerber File</td>\n"
  4196. " </tr>\n"
  4197. " <tr height=\"20\">\n"
  4198. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4199. " <td>&nbsp;New Project</td>\n"
  4200. " </tr>\n"
  4201. " <tr height=\"20\">\n"
  4202. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4203. " <td>&nbsp;Measurement Tool</td>\n"
  4204. " </tr>\n"
  4205. " <tr height=\"20\">\n"
  4206. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4207. " <td>&nbsp;Open Project</td>\n"
  4208. " </tr>\n"
  4209. " <tr height=\"20\">\n"
  4210. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4211. " <td>&nbsp;Save Project As</td>\n"
  4212. " </tr>\n"
  4213. " <tr height=\"20\">\n"
  4214. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4215. " <td>&nbsp;Toggle Plot Area</td>\n"
  4216. " </tr>\n"
  4217. " <tr height=\"20\">\n"
  4218. " <td height=\"20\">&nbsp;</td>\n"
  4219. " <td>&nbsp;</td>\n"
  4220. " </tr>\n"
  4221. " <tr height=\"20\">\n"
  4222. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4223. " <td>&nbsp;Copy Obj_Name</td>\n"
  4224. " </tr>\n"
  4225. " <tr height=\"20\">\n"
  4226. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4227. " <td>&nbsp;Toggle Code Editor</td>\n"
  4228. " </tr>\n"
  4229. " <tr height=\"20\">\n"
  4230. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4231. " <td>&nbsp;Toggle the axis</td>\n"
  4232. " </tr>\n"
  4233. " <tr height=\"20\">\n"
  4234. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4235. " <td>&nbsp;Open Preferences Window</td>\n"
  4236. " </tr>\n"
  4237. " <tr height=\"20\">\n"
  4238. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4239. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4240. " </tr>\n"
  4241. " <tr height=\"20\">\n"
  4242. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4243. " <td>&nbsp;Run a Script</td>\n"
  4244. " </tr>\n"
  4245. " <tr height=\"20\">\n"
  4246. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4247. " <td>&nbsp;Toggle the workspace</td>\n"
  4248. " </tr>\n"
  4249. " <tr height=\"20\">\n"
  4250. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4251. " <td>&nbsp;Skew on X axis</td>\n"
  4252. " </tr>\n"
  4253. " <tr height=\"20\">\n"
  4254. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4255. " <td>&nbsp;Skew on Y axis</td>\n"
  4256. " </tr>\n"
  4257. " <tr height=\"20\">\n"
  4258. " <td height=\"20\">&nbsp;</td>\n"
  4259. " <td>&nbsp;</td>\n"
  4260. " </tr>\n"
  4261. " <tr height=\"20\">\n"
  4262. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4263. " <td>&nbsp;Calculators Tool</td>\n"
  4264. " </tr>\n"
  4265. " <tr height=\"20\">\n"
  4266. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4267. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4268. " </tr>\n"
  4269. " <tr height=\"20\">\n"
  4270. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4271. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4272. " </tr>\n"
  4273. " <tr height=\"20\">\n"
  4274. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4275. " <td>&nbsp;Film PCB Tool</td>\n"
  4276. " </tr>\n"
  4277. " <tr height=\"20\">\n"
  4278. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4279. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4280. " </tr>\n"
  4281. " <tr height=\"20\">\n"
  4282. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4283. " <td>&nbsp;Paint Area Tool</td>\n"
  4284. " </tr>\n"
  4285. " <tr height=\"20\">\n"
  4286. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4287. " <td>&nbsp;PDF Import Tool</td>\n"
  4288. " </tr>\n"
  4289. " <tr height=\"20\">\n"
  4290. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4291. " <td>&nbsp;Transformations Tool</td>\n"
  4292. " </tr>\n"
  4293. " <tr height=\"20\">\n"
  4294. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4295. " <td>&nbsp;View File Source</td>\n"
  4296. " </tr>\n"
  4297. " <tr height=\"20\">\n"
  4298. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4299. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4300. " </tr>\n"
  4301. " <tr height=\"20\">\n"
  4302. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4303. " <td>&nbsp;Enable all Plots</td>\n"
  4304. " </tr>\n"
  4305. " <tr height=\"20\">\n"
  4306. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4307. " <td>&nbsp;Disable all Plots</td>\n"
  4308. " </tr>\n"
  4309. " <tr height=\"20\">\n"
  4310. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4311. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4312. " </tr>\n"
  4313. " <tr height=\"20\">\n"
  4314. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4315. " <td>&nbsp;Toggle Full Screen</td>\n"
  4316. " </tr>\n"
  4317. " <tr height=\"20\">\n"
  4318. " <td height=\"20\">&nbsp;</td>\n"
  4319. " <td>&nbsp;</td>\n"
  4320. " </tr>\n"
  4321. " <tr height=\"20\">\n"
  4322. " <td height=\"20\"><strong>F1</strong></td>\n"
  4323. " <td>&nbsp;Open Online Manual</td>\n"
  4324. " </tr>\n"
  4325. " <tr height=\"20\">\n"
  4326. " <td height=\"20\"><strong>F4</strong></td>\n"
  4327. " <td>&nbsp;Open Online Tutorials</td>\n"
  4328. " </tr>\n"
  4329. " <tr height=\"20\">\n"
  4330. " <td height=\"20\"><strong>Del</strong></td>\n"
  4331. " <td>&nbsp;Delete Object</td>\n"
  4332. " </tr>\n"
  4333. " <tr height=\"20\">\n"
  4334. " <td height=\"20\"><strong>Del</strong></td>\n"
  4335. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4336. " </tr>\n"
  4337. " <tr height=\"20\">\n"
  4338. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4339. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4340. "Side)</td>\n"
  4341. " </tr>\n"
  4342. " <tr height=\"20\">\n"
  4343. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4344. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4345. " </tr>\n"
  4346. " <tr height=\"20\">\n"
  4347. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4348. " <td>&nbsp;Deselects all objects</td>\n"
  4349. " </tr>\n"
  4350. " </tbody>\n"
  4351. " </table>\n"
  4352. " \n"
  4353. " "
  4354. msgstr ""
  4355. "<b>General Shortcut list</b><br>\n"
  4356. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4357. "\"width:283px\">\n"
  4358. " <tbody>\n"
  4359. " <tr height=\"20\">\n"
  4360. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4361. "td>\n"
  4362. " <td width=\"194\"><span style=\"color:"
  4363. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4364. " </tr>\n"
  4365. " <tr height=\"20\">\n"
  4366. " <td height=\"20\">&nbsp;</td>\n"
  4367. " <td>&nbsp;</td>\n"
  4368. " </tr>\n"
  4369. " <tr height=\"20\">\n"
  4370. " <td height=\"20\"><strong>1</strong></td>\n"
  4371. " <td>&nbsp;Switch to Project Tab</td>\n"
  4372. " </tr>\n"
  4373. " <tr height=\"20\">\n"
  4374. " <td height=\"20\"><strong>2</strong></td>\n"
  4375. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4376. " </tr>\n"
  4377. " <tr height=\"20\">\n"
  4378. " <td height=\"20\"><strong>3</strong></td>\n"
  4379. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4380. " </tr>\n"
  4381. " <tr height=\"20\">\n"
  4382. " <td height=\"20\">&nbsp;</td>\n"
  4383. " <td>&nbsp;</td>\n"
  4384. " </tr>\n"
  4385. " <tr height=\"20\">\n"
  4386. " <td height=\"20\"><strong>B</strong></td>\n"
  4387. " <td>&nbsp;New Gerber</td>\n"
  4388. " </tr>\n"
  4389. " <tr height=\"20\">\n"
  4390. " <td height=\"20\"><strong>E</strong></td>\n"
  4391. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4392. " </tr>\n"
  4393. " <tr height=\"20\">\n"
  4394. " <td height=\"20\"><strong>G</strong></td>\n"
  4395. " <td>&nbsp;Grid On/Off</td>\n"
  4396. " </tr>\n"
  4397. " <tr height=\"20\">\n"
  4398. " <td height=\"20\"><strong>J</strong></td>\n"
  4399. " <td>&nbsp;Jump to Coordinates</td>\n"
  4400. " </tr>\n"
  4401. " <tr height=\"20\">\n"
  4402. " <td height=\"20\"><strong>L</strong></td>\n"
  4403. " <td>&nbsp;New Excellon</td>\n"
  4404. " </tr>\n"
  4405. " <tr height=\"20\">\n"
  4406. " <td height=\"20\"><strong>M</strong></td>\n"
  4407. " <td>&nbsp;Move Obj</td>\n"
  4408. " </tr>\n"
  4409. " <tr height=\"20\">\n"
  4410. " <td height=\"20\"><strong>N</strong></td>\n"
  4411. " <td>&nbsp;New Geometry</td>\n"
  4412. " </tr>\n"
  4413. " <tr height=\"20\">\n"
  4414. " <td height=\"20\"><strong>O</strong></td>\n"
  4415. " <td>&nbsp;Set Origin</td>\n"
  4416. " </tr>\n"
  4417. " <tr height=\"20\">\n"
  4418. " <td height=\"20\"><strong>Q</strong></td>\n"
  4419. " <td>&nbsp;Change Units</td>\n"
  4420. " </tr>\n"
  4421. " <tr height=\"20\">\n"
  4422. " <td height=\"20\"><strong>P</strong></td>\n"
  4423. " <td>&nbsp;Open Properties Tool</td>\n"
  4424. " </tr>\n"
  4425. " <tr height=\"20\">\n"
  4426. " <td height=\"20\"><strong>R</strong></td>\n"
  4427. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4428. " </tr>\n"
  4429. " <tr height=\"20\">\n"
  4430. " <td height=\"20\"><strong>S</strong></td>\n"
  4431. " <td>&nbsp;Shell Toggle</td>\n"
  4432. " </tr>\n"
  4433. " <tr height=\"20\">\n"
  4434. " <td height=\"20\"><strong>T</strong></td>\n"
  4435. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4436. "or in Tools NCC or Tools Paint)</td>\n"
  4437. " </tr>\n"
  4438. " <tr height=\"20\">\n"
  4439. " <td height=\"20\"><strong>V</strong></td>\n"
  4440. " <td>&nbsp;Zoom Fit</td>\n"
  4441. " </tr>\n"
  4442. " <tr height=\"20\">\n"
  4443. " <td height=\"20\"><strong>X</strong></td>\n"
  4444. " <td>&nbsp;Flip on X_axis</td>\n"
  4445. " </tr>\n"
  4446. " <tr height=\"20\">\n"
  4447. " <td height=\"20\"><strong>Y</strong></td>\n"
  4448. " <td>&nbsp;Flip on Y_axis</td>\n"
  4449. " </tr>\n"
  4450. " <tr height=\"20\">\n"
  4451. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4452. " <td>&nbsp;Zoom Out</td>\n"
  4453. " </tr>\n"
  4454. " <tr height=\"20\">\n"
  4455. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4456. " <td>&nbsp;Zoom In</td>\n"
  4457. " </tr>\n"
  4458. " <tr height=\"20\">\n"
  4459. " <td height=\"20\">&nbsp;</td>\n"
  4460. " <td>&nbsp;</td>\n"
  4461. " </tr>\n"
  4462. " <tr height=\"20\">\n"
  4463. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4464. " <td>&nbsp;Select All</td>\n"
  4465. " </tr>\n"
  4466. " <tr height=\"20\">\n"
  4467. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4468. " <td>&nbsp;Copy Obj</td>\n"
  4469. " </tr>\n"
  4470. " <tr height=\"20\">\n"
  4471. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4472. " <td>&nbsp;Open Excellon File</td>\n"
  4473. " </tr>\n"
  4474. " <tr height=\"20\">\n"
  4475. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4476. " <td>&nbsp;Open Gerber File</td>\n"
  4477. " </tr>\n"
  4478. " <tr height=\"20\">\n"
  4479. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4480. " <td>&nbsp;New Project</td>\n"
  4481. " </tr>\n"
  4482. " <tr height=\"20\">\n"
  4483. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4484. " <td>&nbsp;Measurement Tool</td>\n"
  4485. " </tr>\n"
  4486. " <tr height=\"20\">\n"
  4487. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4488. " <td>&nbsp;Open Project</td>\n"
  4489. " </tr>\n"
  4490. " <tr height=\"20\">\n"
  4491. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4492. " <td>&nbsp;Save Project As</td>\n"
  4493. " </tr>\n"
  4494. " <tr height=\"20\">\n"
  4495. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4496. " <td>&nbsp;Toggle Plot Area</td>\n"
  4497. " </tr>\n"
  4498. " <tr height=\"20\">\n"
  4499. " <td height=\"20\">&nbsp;</td>\n"
  4500. " <td>&nbsp;</td>\n"
  4501. " </tr>\n"
  4502. " <tr height=\"20\">\n"
  4503. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4504. " <td>&nbsp;Copy Obj_Name</td>\n"
  4505. " </tr>\n"
  4506. " <tr height=\"20\">\n"
  4507. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4508. " <td>&nbsp;Toggle Code Editor</td>\n"
  4509. " </tr>\n"
  4510. " <tr height=\"20\">\n"
  4511. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4512. " <td>&nbsp;Toggle the axis</td>\n"
  4513. " </tr>\n"
  4514. " <tr height=\"20\">\n"
  4515. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4516. " <td>&nbsp;Open Preferences Window</td>\n"
  4517. " </tr>\n"
  4518. " <tr height=\"20\">\n"
  4519. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4520. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4521. " </tr>\n"
  4522. " <tr height=\"20\">\n"
  4523. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4524. " <td>&nbsp;Run a Script</td>\n"
  4525. " </tr>\n"
  4526. " <tr height=\"20\">\n"
  4527. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4528. " <td>&nbsp;Toggle the workspace</td>\n"
  4529. " </tr>\n"
  4530. " <tr height=\"20\">\n"
  4531. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4532. " <td>&nbsp;Skew on X axis</td>\n"
  4533. " </tr>\n"
  4534. " <tr height=\"20\">\n"
  4535. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4536. " <td>&nbsp;Skew on Y axis</td>\n"
  4537. " </tr>\n"
  4538. " <tr height=\"20\">\n"
  4539. " <td height=\"20\">&nbsp;</td>\n"
  4540. " <td>&nbsp;</td>\n"
  4541. " </tr>\n"
  4542. " <tr height=\"20\">\n"
  4543. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4544. " <td>&nbsp;Calculators Tool</td>\n"
  4545. " </tr>\n"
  4546. " <tr height=\"20\">\n"
  4547. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4548. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4549. " </tr>\n"
  4550. " <tr height=\"20\">\n"
  4551. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4552. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4553. " </tr>\n"
  4554. " <tr height=\"20\">\n"
  4555. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4556. " <td>&nbsp;Film PCB Tool</td>\n"
  4557. " </tr>\n"
  4558. " <tr height=\"20\">\n"
  4559. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4560. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4561. " </tr>\n"
  4562. " <tr height=\"20\">\n"
  4563. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4564. " <td>&nbsp;Paint Area Tool</td>\n"
  4565. " </tr>\n"
  4566. " <tr height=\"20\">\n"
  4567. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4568. " <td>&nbsp;PDF Import Tool</td>\n"
  4569. " </tr>\n"
  4570. " <tr height=\"20\">\n"
  4571. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4572. " <td>&nbsp;Transformations Tool</td>\n"
  4573. " </tr>\n"
  4574. " <tr height=\"20\">\n"
  4575. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4576. " <td>&nbsp;View File Source</td>\n"
  4577. " </tr>\n"
  4578. " <tr height=\"20\">\n"
  4579. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4580. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4581. " </tr>\n"
  4582. " <tr height=\"20\">\n"
  4583. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4584. " <td>&nbsp;Enable all Plots</td>\n"
  4585. " </tr>\n"
  4586. " <tr height=\"20\">\n"
  4587. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4588. " <td>&nbsp;Disable all Plots</td>\n"
  4589. " </tr>\n"
  4590. " <tr height=\"20\">\n"
  4591. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4592. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4593. " </tr>\n"
  4594. " <tr height=\"20\">\n"
  4595. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4596. " <td>&nbsp;Toggle Full Screen</td>\n"
  4597. " </tr>\n"
  4598. " <tr height=\"20\">\n"
  4599. " <td height=\"20\">&nbsp;</td>\n"
  4600. " <td>&nbsp;</td>\n"
  4601. " </tr>\n"
  4602. " <tr height=\"20\">\n"
  4603. " <td height=\"20\"><strong>F1</strong></td>\n"
  4604. " <td>&nbsp;Open Online Manual</td>\n"
  4605. " </tr>\n"
  4606. " <tr height=\"20\">\n"
  4607. " <td height=\"20\"><strong>F4</strong></td>\n"
  4608. " <td>&nbsp;Open Online Tutorials</td>\n"
  4609. " </tr>\n"
  4610. " <tr height=\"20\">\n"
  4611. " <td height=\"20\"><strong>Del</strong></td>\n"
  4612. " <td>&nbsp;Delete Object</td>\n"
  4613. " </tr>\n"
  4614. " <tr height=\"20\">\n"
  4615. " <td height=\"20\"><strong>Del</strong></td>\n"
  4616. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4617. " </tr>\n"
  4618. " <tr height=\"20\">\n"
  4619. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4620. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4621. "Side)</td>\n"
  4622. " </tr>\n"
  4623. " <tr height=\"20\">\n"
  4624. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4625. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4626. " </tr>\n"
  4627. " <tr height=\"20\">\n"
  4628. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4629. " <td>&nbsp;Deselects all objects</td>\n"
  4630. " </tr>\n"
  4631. " </tbody>\n"
  4632. " </table>\n"
  4633. " \n"
  4634. " "
  4635. #: flatcamGUI/FlatCAMGUI.py:1291
  4636. msgid ""
  4637. "<b>Editor Shortcut list</b><br>\n"
  4638. " <br>\n"
  4639. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4640. "strong><br>\n"
  4641. " \n"
  4642. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4643. "\"width:283px\">\n"
  4644. " <tbody>\n"
  4645. " <tr height=\"20\">\n"
  4646. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4647. "td>\n"
  4648. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4649. " </tr>\n"
  4650. " <tr height=\"20\">\n"
  4651. " <td height=\"20\"><strong>B</strong></td>\n"
  4652. " <td>&nbsp;Buffer Tool</td>\n"
  4653. " </tr>\n"
  4654. " <tr height=\"20\">\n"
  4655. " <td height=\"20\"><strong>C</strong></td>\n"
  4656. " <td>&nbsp;Copy Geo Item</td>\n"
  4657. " </tr>\n"
  4658. " <tr height=\"20\">\n"
  4659. " <td height=\"20\"><strong>D</strong></td>\n"
  4660. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4661. "direction: CW or CCW</td>\n"
  4662. " </tr>\n"
  4663. " <tr height=\"20\">\n"
  4664. " <td height=\"20\"><strong>E</strong></td>\n"
  4665. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4666. " </tr>\n"
  4667. " <tr height=\"20\">\n"
  4668. " <td height=\"20\"><strong>I</strong></td>\n"
  4669. " <td>&nbsp;Paint Tool</td>\n"
  4670. " </tr>\n"
  4671. " <tr height=\"20\">\n"
  4672. " <td height=\"20\"><strong>J</strong></td>\n"
  4673. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4674. " </tr>\n"
  4675. " <tr height=\"20\">\n"
  4676. " <td height=\"20\"><strong>K</strong></td>\n"
  4677. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4678. " </tr>\n"
  4679. " <tr height=\"20\">\n"
  4680. " <td height=\"20\"><strong>M</strong></td>\n"
  4681. " <td>&nbsp;Move Geo Item</td>\n"
  4682. " </tr>\n"
  4683. " <tr height=\"20\">\n"
  4684. " <td height=\"20\"><strong>M</strong></td>\n"
  4685. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4686. "modes</td>\n"
  4687. " </tr>\n"
  4688. " <tr height=\"20\">\n"
  4689. " <td height=\"20\"><strong>N</strong></td>\n"
  4690. " <td>&nbsp;Draw a Polygon</td>\n"
  4691. " </tr>\n"
  4692. " <tr height=\"20\">\n"
  4693. " <td height=\"20\"><strong>O</strong></td>\n"
  4694. " <td>&nbsp;Draw a Circle</td>\n"
  4695. " </tr>\n"
  4696. " <tr height=\"20\">\n"
  4697. " <td height=\"20\"><strong>P</strong></td>\n"
  4698. " <td>&nbsp;Draw a Path</td>\n"
  4699. " </tr>\n"
  4700. " <tr height=\"20\">\n"
  4701. " <td height=\"20\"><strong>R</strong></td>\n"
  4702. " <td>&nbsp;Draw Rectangle</td>\n"
  4703. " </tr>\n"
  4704. " <tr height=\"20\">\n"
  4705. " <td height=\"20\"><strong>S</strong></td>\n"
  4706. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4707. " </tr>\n"
  4708. " <tr height=\"20\">\n"
  4709. " <td height=\"20\"><strong>T</strong></td>\n"
  4710. " <td>&nbsp;Add Text Tool</td>\n"
  4711. " </tr>\n"
  4712. " <tr height=\"20\">\n"
  4713. " <td height=\"20\"><strong>U</strong></td>\n"
  4714. " <td>&nbsp;Polygon Union Tool</td>\n"
  4715. " </tr>\n"
  4716. " <tr height=\"20\">\n"
  4717. " <td height=\"20\"><strong>X</strong></td>\n"
  4718. " <td>&nbsp;Flip shape on X axis</td>\n"
  4719. " </tr>\n"
  4720. " <tr height=\"20\">\n"
  4721. " <td height=\"20\"><strong>Y</strong></td>\n"
  4722. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4723. " </tr>\n"
  4724. " <tr height=\"20\">\n"
  4725. " <td height=\"20\">&nbsp;</td>\n"
  4726. " <td>&nbsp;</td>\n"
  4727. " </tr>\n"
  4728. " <tr height=\"20\">\n"
  4729. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4730. " <td>&nbsp;Skew shape on X axis</td>\n"
  4731. " </tr>\n"
  4732. " <tr height=\"20\">\n"
  4733. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4734. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4735. " </tr>\n"
  4736. " <tr height=\"20\">\n"
  4737. " <td height=\"20\">&nbsp;</td>\n"
  4738. " <td>&nbsp;</td>\n"
  4739. " </tr>\n"
  4740. " <tr height=\"20\">\n"
  4741. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4742. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4743. " </tr>\n"
  4744. " <tr height=\"20\">\n"
  4745. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4746. " <td>&nbsp;Offset shape on X axis</td>\n"
  4747. " </tr>\n"
  4748. " <tr height=\"20\">\n"
  4749. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4750. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4751. " </tr>\n"
  4752. " <tr height=\"20\">\n"
  4753. " <td height=\"20\">&nbsp;</td>\n"
  4754. " <td>&nbsp;</td>\n"
  4755. " </tr>\n"
  4756. " <tr height=\"20\">\n"
  4757. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4758. " <td>&nbsp;Measurement Tool</td>\n"
  4759. " </tr>\n"
  4760. " <tr height=\"20\">\n"
  4761. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4762. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4763. " </tr>\n"
  4764. " <tr height=\"20\">\n"
  4765. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4766. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4767. " </tr>\n"
  4768. " <tr height=\"20\">\n"
  4769. " <td height=\"20\">&nbsp;</td>\n"
  4770. " <td>&nbsp;</td>\n"
  4771. " </tr>\n"
  4772. " <tr height=\"20\">\n"
  4773. " <td height=\"20\"><strong>Space</strong></td>\n"
  4774. " <td>&nbsp;Rotate Geometry</td>\n"
  4775. " </tr>\n"
  4776. " <tr height=\"20\">\n"
  4777. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4778. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4779. " </tr>\n"
  4780. " <tr height=\"20\">\n"
  4781. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4782. " <td>&nbsp;Abort and return to Select</td>\n"
  4783. " </tr>\n"
  4784. " <tr height=\"20\">\n"
  4785. " <td height=\"20\"><strong>Del</strong></td>\n"
  4786. " <td>&nbsp;Delete Shape</td>\n"
  4787. " </tr>\n"
  4788. " </tbody>\n"
  4789. " </table>\n"
  4790. " <br>\n"
  4791. " <br>\n"
  4792. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4793. "strong><br>\n"
  4794. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4795. "\"width:283px\">\n"
  4796. " <tbody>\n"
  4797. " <tr height=\"20\">\n"
  4798. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4799. "td>\n"
  4800. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4801. " </tr>\n"
  4802. " <tr height=\"20\">\n"
  4803. " <td height=\"20\"><strong>C</strong></td>\n"
  4804. " <td>&nbsp;Copy Drill(s)</td>\n"
  4805. " </tr>\n"
  4806. " <tr height=\"20\">\n"
  4807. " <td height=\"20\"><strong>D</strong></td>\n"
  4808. " <td>&nbsp;Add Drill</td>\n"
  4809. " </tr>\n"
  4810. " <tr height=\"20\">\n"
  4811. " <td height=\"20\"><strong>J</strong></td>\n"
  4812. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4813. " </tr>\n"
  4814. " <tr height=\"20\">\n"
  4815. " <td height=\"20\"><strong>M</strong></td>\n"
  4816. " <td>&nbsp;Move Drill(s)</td>\n"
  4817. " </tr>\n"
  4818. " <tr height=\"20\">\n"
  4819. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4820. "td>\n"
  4821. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4822. " </tr>\n"
  4823. " <tr height=\"20\">\n"
  4824. " <td height=\"20\"><strong>R</strong></td>\n"
  4825. " <td>&nbsp;Resize Drill(s)</td>\n"
  4826. " </tr>\n"
  4827. " <tr height=\"20\">\n"
  4828. " <td height=\"20\"><strong>T</strong></td>\n"
  4829. " <td>&nbsp;Add a new Tool</td>\n"
  4830. " </tr>\n"
  4831. " <tr height=\"20\">\n"
  4832. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4833. "td>\n"
  4834. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4835. " </tr>\n"
  4836. " <tr height=\"20\">\n"
  4837. " <td height=\"20\">&nbsp;</td>\n"
  4838. " <td>&nbsp;</td>\n"
  4839. " </tr>\n"
  4840. " <tr height=\"20\">\n"
  4841. " <td height=\"20\"><strong>Del</strong></td>\n"
  4842. " <td>&nbsp;Delete Drill(s)</td>\n"
  4843. " </tr>\n"
  4844. " <tr height=\"20\">\n"
  4845. " <td height=\"20\"><strong>Del</strong></td>\n"
  4846. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4847. " </tr>\n"
  4848. " <tr height=\"20\">\n"
  4849. " <td height=\"20\">&nbsp;</td>\n"
  4850. " <td>&nbsp;</td>\n"
  4851. " </tr>\n"
  4852. " <tr height=\"20\">\n"
  4853. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4854. " <td>&nbsp;Abort and return to Select</td>\n"
  4855. " </tr>\n"
  4856. " <tr height=\"20\">\n"
  4857. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4858. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4859. " </tr>\n"
  4860. " </tbody>\n"
  4861. " </table>\n"
  4862. " <br>\n"
  4863. " <br>\n"
  4864. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4865. "strong><br>\n"
  4866. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4867. "\"width:283px\">\n"
  4868. " <tbody>\n"
  4869. " <tr height=\"20\">\n"
  4870. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4871. "td>\n"
  4872. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4873. " </tr>\n"
  4874. " <tr height=\"20\">\n"
  4875. " <td height=\"20\"><strong>B</strong></td>\n"
  4876. " <td>&nbsp;Buffer</td>\n"
  4877. " </tr>\n"
  4878. " <tr height=\"20\">\n"
  4879. " <td height=\"20\"><strong>C</strong></td>\n"
  4880. " <td>&nbsp;Copy</td>\n"
  4881. " </tr>\n"
  4882. " <tr height=\"20\">\n"
  4883. " <td height=\"20\"><strong>D</strong></td>\n"
  4884. " <td>&nbsp;Add Disc</td>\n"
  4885. " </tr>\n"
  4886. " <tr height=\"20\">\n"
  4887. " <td height=\"20\"><strong>E</strong></td>\n"
  4888. " <td>&nbsp;Add SemiDisc</td>\n"
  4889. " </tr>\n"
  4890. " <tr height=\"20\">\n"
  4891. " <td height=\"20\"><strong>J</strong></td>\n"
  4892. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4893. " </tr>\n"
  4894. " <tr height=\"20\">\n"
  4895. " <td height=\"20\"><strong>M</strong></td>\n"
  4896. " <td>&nbsp;Move</td>\n"
  4897. " </tr>\n"
  4898. " <tr height=\"20\">\n"
  4899. " <td height=\"20\"><strong>N</strong></td>\n"
  4900. " <td>&nbsp;Add Region</td>\n"
  4901. " </tr>\n"
  4902. " <tr height=\"20\">\n"
  4903. " <td height=\"20\"><strong>P</strong></td>\n"
  4904. " <td>&nbsp;Add Pad</td>\n"
  4905. " </tr>\n"
  4906. " <tr height=\"20\">\n"
  4907. " <td height=\"20\"><strong>R</strong></td>\n"
  4908. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4909. "REVERSE the bend modes</td>\n"
  4910. " </tr>\n"
  4911. " <tr height=\"20\">\n"
  4912. " <td height=\"20\"><strong>S</strong></td>\n"
  4913. " <td>&nbsp;Scale</td>\n"
  4914. " </tr>\n"
  4915. " <tr height=\"20\">\n"
  4916. " <td height=\"20\"><strong>T</strong></td>\n"
  4917. " <td>&nbsp;Add Track</td>\n"
  4918. " </tr>\n"
  4919. " <tr height=\"20\">\n"
  4920. " <td height=\"20\"><strong>T</strong></td>\n"
  4921. " <td>&nbsp;Within Track & Region Tools will cycle "
  4922. "FORWARD the bend modes</td>\n"
  4923. " </tr>\n"
  4924. " <tr height=\"20\">\n"
  4925. " <td height=\"20\">&nbsp;</td>\n"
  4926. " <td>&nbsp;</td>\n"
  4927. " </tr>\n"
  4928. " <tr height=\"20\">\n"
  4929. " <td height=\"20\"><strong>Del</strong></td>\n"
  4930. " <td>&nbsp;Delete</td>\n"
  4931. " </tr>\n"
  4932. " <tr height=\"20\">\n"
  4933. " <td height=\"20\"><strong>Del</strong></td>\n"
  4934. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4935. " </tr>\n"
  4936. " <tr height=\"20\">\n"
  4937. " <td height=\"20\">&nbsp;</td>\n"
  4938. " <td>&nbsp;</td>\n"
  4939. " </tr>\n"
  4940. " <tr height=\"20\">\n"
  4941. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4942. " <td>&nbsp;Abort and return to Select</td>\n"
  4943. " </tr>\n"
  4944. " <tr height=\"20\">\n"
  4945. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4946. " <td>&nbsp;Eraser Tool</td>\n"
  4947. " </tr>\n"
  4948. " <tr height=\"20\">\n"
  4949. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4950. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4951. " </tr>\n"
  4952. " <tr height=\"20\">\n"
  4953. " <td height=\"20\">&nbsp;</td>\n"
  4954. " <td>&nbsp;</td>\n"
  4955. " </tr>\n"
  4956. " <tr height=\"20\">\n"
  4957. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4958. " <td>&nbsp;Mark Area Tool</td>\n"
  4959. " </tr>\n"
  4960. " <tr height=\"20\">\n"
  4961. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4962. " <td>&nbsp;Poligonize Tool</td>\n"
  4963. " </tr>\n"
  4964. " <tr height=\"20\">\n"
  4965. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4966. " <td>&nbsp;Transformation Tool</td>\n"
  4967. " </tr>\n"
  4968. " </tbody>\n"
  4969. " </table>\n"
  4970. " "
  4971. msgstr ""
  4972. "<b>Editor Shortcut list</b><br>\n"
  4973. " <br>\n"
  4974. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4975. "strong><br>\n"
  4976. " \n"
  4977. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4978. "\"width:283px\">\n"
  4979. " <tbody>\n"
  4980. " <tr height=\"20\">\n"
  4981. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4982. "td>\n"
  4983. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4984. " </tr>\n"
  4985. " <tr height=\"20\">\n"
  4986. " <td height=\"20\"><strong>B</strong></td>\n"
  4987. " <td>&nbsp;Buffer Tool</td>\n"
  4988. " </tr>\n"
  4989. " <tr height=\"20\">\n"
  4990. " <td height=\"20\"><strong>C</strong></td>\n"
  4991. " <td>&nbsp;Copy Geo Item</td>\n"
  4992. " </tr>\n"
  4993. " <tr height=\"20\">\n"
  4994. " <td height=\"20\"><strong>D</strong></td>\n"
  4995. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4996. "direction: CW or CCW</td>\n"
  4997. " </tr>\n"
  4998. " <tr height=\"20\">\n"
  4999. " <td height=\"20\"><strong>E</strong></td>\n"
  5000. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  5001. " </tr>\n"
  5002. " <tr height=\"20\">\n"
  5003. " <td height=\"20\"><strong>I</strong></td>\n"
  5004. " <td>&nbsp;Paint Tool</td>\n"
  5005. " </tr>\n"
  5006. " <tr height=\"20\">\n"
  5007. " <td height=\"20\"><strong>J</strong></td>\n"
  5008. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  5009. " </tr>\n"
  5010. " <tr height=\"20\">\n"
  5011. " <td height=\"20\"><strong>K</strong></td>\n"
  5012. " <td>&nbsp;Toggle Corner Snap</td>\n"
  5013. " </tr>\n"
  5014. " <tr height=\"20\">\n"
  5015. " <td height=\"20\"><strong>M</strong></td>\n"
  5016. " <td>&nbsp;Move Geo Item</td>\n"
  5017. " </tr>\n"
  5018. " <tr height=\"20\">\n"
  5019. " <td height=\"20\"><strong>M</strong></td>\n"
  5020. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  5021. "modes</td>\n"
  5022. " </tr>\n"
  5023. " <tr height=\"20\">\n"
  5024. " <td height=\"20\"><strong>N</strong></td>\n"
  5025. " <td>&nbsp;Draw a Polygon</td>\n"
  5026. " </tr>\n"
  5027. " <tr height=\"20\">\n"
  5028. " <td height=\"20\"><strong>O</strong></td>\n"
  5029. " <td>&nbsp;Draw a Circle</td>\n"
  5030. " </tr>\n"
  5031. " <tr height=\"20\">\n"
  5032. " <td height=\"20\"><strong>P</strong></td>\n"
  5033. " <td>&nbsp;Draw a Path</td>\n"
  5034. " </tr>\n"
  5035. " <tr height=\"20\">\n"
  5036. " <td height=\"20\"><strong>R</strong></td>\n"
  5037. " <td>&nbsp;Draw Rectangle</td>\n"
  5038. " </tr>\n"
  5039. " <tr height=\"20\">\n"
  5040. " <td height=\"20\"><strong>S</strong></td>\n"
  5041. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  5042. " </tr>\n"
  5043. " <tr height=\"20\">\n"
  5044. " <td height=\"20\"><strong>T</strong></td>\n"
  5045. " <td>&nbsp;Add Text Tool</td>\n"
  5046. " </tr>\n"
  5047. " <tr height=\"20\">\n"
  5048. " <td height=\"20\"><strong>U</strong></td>\n"
  5049. " <td>&nbsp;Polygon Union Tool</td>\n"
  5050. " </tr>\n"
  5051. " <tr height=\"20\">\n"
  5052. " <td height=\"20\"><strong>X</strong></td>\n"
  5053. " <td>&nbsp;Flip shape on X axis</td>\n"
  5054. " </tr>\n"
  5055. " <tr height=\"20\">\n"
  5056. " <td height=\"20\"><strong>Y</strong></td>\n"
  5057. " <td>&nbsp;Flip shape on Y axis</td>\n"
  5058. " </tr>\n"
  5059. " <tr height=\"20\">\n"
  5060. " <td height=\"20\">&nbsp;</td>\n"
  5061. " <td>&nbsp;</td>\n"
  5062. " </tr>\n"
  5063. " <tr height=\"20\">\n"
  5064. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  5065. " <td>&nbsp;Skew shape on X axis</td>\n"
  5066. " </tr>\n"
  5067. " <tr height=\"20\">\n"
  5068. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  5069. " <td>&nbsp;Skew shape on Y axis</td>\n"
  5070. " </tr>\n"
  5071. " <tr height=\"20\">\n"
  5072. " <td height=\"20\">&nbsp;</td>\n"
  5073. " <td>&nbsp;</td>\n"
  5074. " </tr>\n"
  5075. " <tr height=\"20\">\n"
  5076. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5077. " <td>&nbsp;Editor Transformation Tool</td>\n"
  5078. " </tr>\n"
  5079. " <tr height=\"20\">\n"
  5080. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  5081. " <td>&nbsp;Offset shape on X axis</td>\n"
  5082. " </tr>\n"
  5083. " <tr height=\"20\">\n"
  5084. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  5085. " <td>&nbsp;Offset shape on Y axis</td>\n"
  5086. " </tr>\n"
  5087. " <tr height=\"20\">\n"
  5088. " <td height=\"20\">&nbsp;</td>\n"
  5089. " <td>&nbsp;</td>\n"
  5090. " </tr>\n"
  5091. " <tr height=\"20\">\n"
  5092. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  5093. " <td>&nbsp;Measurement Tool</td>\n"
  5094. " </tr>\n"
  5095. " <tr height=\"20\">\n"
  5096. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5097. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5098. " </tr>\n"
  5099. " <tr height=\"20\">\n"
  5100. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  5101. " <td>&nbsp;Polygon Cut Tool</td>\n"
  5102. " </tr>\n"
  5103. " <tr height=\"20\">\n"
  5104. " <td height=\"20\">&nbsp;</td>\n"
  5105. " <td>&nbsp;</td>\n"
  5106. " </tr>\n"
  5107. " <tr height=\"20\">\n"
  5108. " <td height=\"20\"><strong>Space</strong></td>\n"
  5109. " <td>&nbsp;Rotate Geometry</td>\n"
  5110. " </tr>\n"
  5111. " <tr height=\"20\">\n"
  5112. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  5113. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  5114. " </tr>\n"
  5115. " <tr height=\"20\">\n"
  5116. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5117. " <td>&nbsp;Abort and return to Select</td>\n"
  5118. " </tr>\n"
  5119. " <tr height=\"20\">\n"
  5120. " <td height=\"20\"><strong>Del</strong></td>\n"
  5121. " <td>&nbsp;Delete Shape</td>\n"
  5122. " </tr>\n"
  5123. " </tbody>\n"
  5124. " </table>\n"
  5125. " <br>\n"
  5126. " <br>\n"
  5127. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  5128. "strong><br>\n"
  5129. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5130. "\"width:283px\">\n"
  5131. " <tbody>\n"
  5132. " <tr height=\"20\">\n"
  5133. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5134. "td>\n"
  5135. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  5136. " </tr>\n"
  5137. " <tr height=\"20\">\n"
  5138. " <td height=\"20\"><strong>C</strong></td>\n"
  5139. " <td>&nbsp;Copy Drill(s)</td>\n"
  5140. " </tr>\n"
  5141. " <tr height=\"20\">\n"
  5142. " <td height=\"20\"><strong>D</strong></td>\n"
  5143. " <td>&nbsp;Add Drill</td>\n"
  5144. " </tr>\n"
  5145. " <tr height=\"20\">\n"
  5146. " <td height=\"20\"><strong>J</strong></td>\n"
  5147. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  5148. " </tr>\n"
  5149. " <tr height=\"20\">\n"
  5150. " <td height=\"20\"><strong>M</strong></td>\n"
  5151. " <td>&nbsp;Move Drill(s)</td>\n"
  5152. " </tr>\n"
  5153. " <tr height=\"20\">\n"
  5154. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  5155. "td>\n"
  5156. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  5157. " </tr>\n"
  5158. " <tr height=\"20\">\n"
  5159. " <td height=\"20\"><strong>R</strong></td>\n"
  5160. " <td>&nbsp;Resize Drill(s)</td>\n"
  5161. " </tr>\n"
  5162. " <tr height=\"20\">\n"
  5163. " <td height=\"20\"><strong>T</strong></td>\n"
  5164. " <td>&nbsp;Add a new Tool</td>\n"
  5165. " </tr>\n"
  5166. " <tr height=\"20\">\n"
  5167. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  5168. "td>\n"
  5169. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  5170. " </tr>\n"
  5171. " <tr height=\"20\">\n"
  5172. " <td height=\"20\">&nbsp;</td>\n"
  5173. " <td>&nbsp;</td>\n"
  5174. " </tr>\n"
  5175. " <tr height=\"20\">\n"
  5176. " <td height=\"20\"><strong>Del</strong></td>\n"
  5177. " <td>&nbsp;Delete Drill(s)</td>\n"
  5178. " </tr>\n"
  5179. " <tr height=\"20\">\n"
  5180. " <td height=\"20\"><strong>Del</strong></td>\n"
  5181. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  5182. " </tr>\n"
  5183. " <tr height=\"20\">\n"
  5184. " <td height=\"20\">&nbsp;</td>\n"
  5185. " <td>&nbsp;</td>\n"
  5186. " </tr>\n"
  5187. " <tr height=\"20\">\n"
  5188. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5189. " <td>&nbsp;Abort and return to Select</td>\n"
  5190. " </tr>\n"
  5191. " <tr height=\"20\">\n"
  5192. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5193. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5194. " </tr>\n"
  5195. " </tbody>\n"
  5196. " </table>\n"
  5197. " <br>\n"
  5198. " <br>\n"
  5199. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  5200. "strong><br>\n"
  5201. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5202. "\"width:283px\">\n"
  5203. " <tbody>\n"
  5204. " <tr height=\"20\">\n"
  5205. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5206. "td>\n"
  5207. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  5208. " </tr>\n"
  5209. " <tr height=\"20\">\n"
  5210. " <td height=\"20\"><strong>B</strong></td>\n"
  5211. " <td>&nbsp;Buffer</td>\n"
  5212. " </tr>\n"
  5213. " <tr height=\"20\">\n"
  5214. " <td height=\"20\"><strong>C</strong></td>\n"
  5215. " <td>&nbsp;Copy</td>\n"
  5216. " </tr>\n"
  5217. " <tr height=\"20\">\n"
  5218. " <td height=\"20\"><strong>D</strong></td>\n"
  5219. " <td>&nbsp;Add Disc</td>\n"
  5220. " </tr>\n"
  5221. " <tr height=\"20\">\n"
  5222. " <td height=\"20\"><strong>E</strong></td>\n"
  5223. " <td>&nbsp;Add SemiDisc</td>\n"
  5224. " </tr>\n"
  5225. " <tr height=\"20\">\n"
  5226. " <td height=\"20\"><strong>J</strong></td>\n"
  5227. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  5228. " </tr>\n"
  5229. " <tr height=\"20\">\n"
  5230. " <td height=\"20\"><strong>M</strong></td>\n"
  5231. " <td>&nbsp;Move</td>\n"
  5232. " </tr>\n"
  5233. " <tr height=\"20\">\n"
  5234. " <td height=\"20\"><strong>N</strong></td>\n"
  5235. " <td>&nbsp;Add Region</td>\n"
  5236. " </tr>\n"
  5237. " <tr height=\"20\">\n"
  5238. " <td height=\"20\"><strong>P</strong></td>\n"
  5239. " <td>&nbsp;Add Pad</td>\n"
  5240. " </tr>\n"
  5241. " <tr height=\"20\">\n"
  5242. " <td height=\"20\"><strong>R</strong></td>\n"
  5243. " <td>&nbsp;Within Track & Region Tools will cycle in "
  5244. "REVERSE the bend modes</td>\n"
  5245. " </tr>\n"
  5246. " <tr height=\"20\">\n"
  5247. " <td height=\"20\"><strong>S</strong></td>\n"
  5248. " <td>&nbsp;Scale</td>\n"
  5249. " </tr>\n"
  5250. " <tr height=\"20\">\n"
  5251. " <td height=\"20\"><strong>T</strong></td>\n"
  5252. " <td>&nbsp;Add Track</td>\n"
  5253. " </tr>\n"
  5254. " <tr height=\"20\">\n"
  5255. " <td height=\"20\"><strong>T</strong></td>\n"
  5256. " <td>&nbsp;Within Track & Region Tools will cycle "
  5257. "FORWARD the bend modes</td>\n"
  5258. " </tr>\n"
  5259. " <tr height=\"20\">\n"
  5260. " <td height=\"20\">&nbsp;</td>\n"
  5261. " <td>&nbsp;</td>\n"
  5262. " </tr>\n"
  5263. " <tr height=\"20\">\n"
  5264. " <td height=\"20\"><strong>Del</strong></td>\n"
  5265. " <td>&nbsp;Delete</td>\n"
  5266. " </tr>\n"
  5267. " <tr height=\"20\">\n"
  5268. " <td height=\"20\"><strong>Del</strong></td>\n"
  5269. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  5270. " </tr>\n"
  5271. " <tr height=\"20\">\n"
  5272. " <td height=\"20\">&nbsp;</td>\n"
  5273. " <td>&nbsp;</td>\n"
  5274. " </tr>\n"
  5275. " <tr height=\"20\">\n"
  5276. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5277. " <td>&nbsp;Abort and return to Select</td>\n"
  5278. " </tr>\n"
  5279. " <tr height=\"20\">\n"
  5280. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5281. " <td>&nbsp;Eraser Tool</td>\n"
  5282. " </tr>\n"
  5283. " <tr height=\"20\">\n"
  5284. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5285. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5286. " </tr>\n"
  5287. " <tr height=\"20\">\n"
  5288. " <td height=\"20\">&nbsp;</td>\n"
  5289. " <td>&nbsp;</td>\n"
  5290. " </tr>\n"
  5291. " <tr height=\"20\">\n"
  5292. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5293. " <td>&nbsp;Mark Area Tool</td>\n"
  5294. " </tr>\n"
  5295. " <tr height=\"20\">\n"
  5296. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5297. " <td>&nbsp;Poligonize Tool</td>\n"
  5298. " </tr>\n"
  5299. " <tr height=\"20\">\n"
  5300. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5301. " <td>&nbsp;Transformation Tool</td>\n"
  5302. " </tr>\n"
  5303. " </tbody>\n"
  5304. " </table>\n"
  5305. " "
  5306. #: flatcamGUI/FlatCAMGUI.py:1623
  5307. msgid "Toggle Visibility"
  5308. msgstr "Toggle Visibility"
  5309. #: flatcamGUI/FlatCAMGUI.py:1624
  5310. msgid "Toggle Panel"
  5311. msgstr "Toggle Panel"
  5312. #: flatcamGUI/FlatCAMGUI.py:1627
  5313. msgid "New"
  5314. msgstr "New"
  5315. #: flatcamGUI/FlatCAMGUI.py:1628
  5316. msgid "Geometry"
  5317. msgstr "Geometry"
  5318. #: flatcamGUI/FlatCAMGUI.py:1630
  5319. msgid "Excellon"
  5320. msgstr "Excellon"
  5321. #: flatcamGUI/FlatCAMGUI.py:1635
  5322. msgid "Grids"
  5323. msgstr "Grids"
  5324. #: flatcamGUI/FlatCAMGUI.py:1637
  5325. msgid "View"
  5326. msgstr "View"
  5327. #: flatcamGUI/FlatCAMGUI.py:1639
  5328. msgid "Clear Plot"
  5329. msgstr "Clear Plot"
  5330. #: flatcamGUI/FlatCAMGUI.py:1640
  5331. msgid "Replot"
  5332. msgstr "Replot"
  5333. #: flatcamGUI/FlatCAMGUI.py:1643
  5334. msgid "Geo Editor"
  5335. msgstr "Geo Editor"
  5336. #: flatcamGUI/FlatCAMGUI.py:1644
  5337. msgid "Path"
  5338. msgstr "Path"
  5339. #: flatcamGUI/FlatCAMGUI.py:1645
  5340. msgid "Rectangle"
  5341. msgstr "Rectangle"
  5342. #: flatcamGUI/FlatCAMGUI.py:1647
  5343. msgid "Circle"
  5344. msgstr "Circle"
  5345. #: flatcamGUI/FlatCAMGUI.py:1648
  5346. msgid "Polygon"
  5347. msgstr "Polygon"
  5348. #: flatcamGUI/FlatCAMGUI.py:1649
  5349. msgid "Arc"
  5350. msgstr "Arc"
  5351. #: flatcamGUI/FlatCAMGUI.py:1652
  5352. msgid "Text"
  5353. msgstr "Text"
  5354. #: flatcamGUI/FlatCAMGUI.py:1658
  5355. msgid "Union"
  5356. msgstr "Union"
  5357. #: flatcamGUI/FlatCAMGUI.py:1659
  5358. msgid "Intersection"
  5359. msgstr "Intersection"
  5360. #: flatcamGUI/FlatCAMGUI.py:1660
  5361. msgid "Substraction"
  5362. msgstr "Substraction"
  5363. #: flatcamGUI/FlatCAMGUI.py:1661 flatcamGUI/FlatCAMGUI.py:5861
  5364. #: flatcamGUI/ObjectUI.py:1372
  5365. msgid "Cut"
  5366. msgstr "Cut"
  5367. #: flatcamGUI/FlatCAMGUI.py:1668
  5368. msgid "Pad"
  5369. msgstr "Pad"
  5370. #: flatcamGUI/FlatCAMGUI.py:1669
  5371. msgid "Pad Array"
  5372. msgstr "Pad Array"
  5373. #: flatcamGUI/FlatCAMGUI.py:1672
  5374. msgid "Track"
  5375. msgstr "Track"
  5376. #: flatcamGUI/FlatCAMGUI.py:1673
  5377. msgid "Region"
  5378. msgstr "Region"
  5379. #: flatcamGUI/FlatCAMGUI.py:1688
  5380. msgid "Exc Editor"
  5381. msgstr "Exc Editor"
  5382. #: flatcamGUI/FlatCAMGUI.py:1689
  5383. msgid "Add Drill"
  5384. msgstr "Add Drill"
  5385. #: flatcamGUI/FlatCAMGUI.py:1725
  5386. msgid "Print Preview"
  5387. msgstr "Print Preview"
  5388. #: flatcamGUI/FlatCAMGUI.py:1726
  5389. msgid "Print Code"
  5390. msgstr "Print Code"
  5391. #: flatcamGUI/FlatCAMGUI.py:1727
  5392. msgid "Find in Code"
  5393. msgstr "Find in Code"
  5394. #: flatcamGUI/FlatCAMGUI.py:1732
  5395. msgid "Replace With"
  5396. msgstr "Replace With"
  5397. #: flatcamGUI/FlatCAMGUI.py:1736 flatcamGUI/FlatCAMGUI.py:5859
  5398. #: flatcamGUI/FlatCAMGUI.py:6502 flatcamGUI/ObjectUI.py:1370
  5399. msgid "All"
  5400. msgstr "All"
  5401. #: flatcamGUI/FlatCAMGUI.py:1738
  5402. msgid ""
  5403. "When checked it will replace all instances in the 'Find' box\n"
  5404. "with the text in the 'Replace' box.."
  5405. msgstr ""
  5406. "When checked it will replace all instances in the 'Find' box\n"
  5407. "with the text in the 'Replace' box.."
  5408. #: flatcamGUI/FlatCAMGUI.py:1741
  5409. msgid "Open Code"
  5410. msgstr "Open Code"
  5411. #: flatcamGUI/FlatCAMGUI.py:1742
  5412. msgid "Save Code"
  5413. msgstr "Save Code"
  5414. #: flatcamGUI/FlatCAMGUI.py:1777
  5415. msgid ""
  5416. "Relative neasurement.\n"
  5417. "Reference is last click position"
  5418. msgstr ""
  5419. "Relative neasurement.\n"
  5420. "Reference is last click position"
  5421. #: flatcamGUI/FlatCAMGUI.py:1783
  5422. msgid ""
  5423. "Absolute neasurement.\n"
  5424. "Reference is (X=0, Y= 0) position"
  5425. msgstr ""
  5426. "Absolute neasurement.\n"
  5427. "Reference is (X=0, Y= 0) position"
  5428. #: flatcamGUI/FlatCAMGUI.py:1986
  5429. msgid "Select 'Esc'"
  5430. msgstr "Select 'Esc'"
  5431. #: flatcamGUI/FlatCAMGUI.py:2011
  5432. msgid "Copy Objects"
  5433. msgstr "Copy Objects"
  5434. #: flatcamGUI/FlatCAMGUI.py:2013
  5435. msgid "Delete Shape"
  5436. msgstr "Delete Shape"
  5437. #: flatcamGUI/FlatCAMGUI.py:2018
  5438. msgid "Move Objects"
  5439. msgstr "Move Objects"
  5440. #: flatcamGUI/FlatCAMGUI.py:2449
  5441. msgid ""
  5442. "Please first select a geometry item to be cutted\n"
  5443. "then select the geometry item that will be cutted\n"
  5444. "out of the first item. In the end press ~X~ key or\n"
  5445. "the toolbar button."
  5446. msgstr ""
  5447. "Please first select a geometry item to be cutted\n"
  5448. "then select the geometry item that will be cutted\n"
  5449. "out of the first item. In the end press ~X~ key or\n"
  5450. "the toolbar button."
  5451. #: flatcamGUI/FlatCAMGUI.py:2456 flatcamGUI/FlatCAMGUI.py:2593
  5452. #: flatcamGUI/FlatCAMGUI.py:2652 flatcamGUI/FlatCAMGUI.py:2672
  5453. msgid "Warning"
  5454. msgstr "Warning"
  5455. #: flatcamGUI/FlatCAMGUI.py:2523 flatcamGUI/FlatCAMGUI.py:2731
  5456. #: flatcamGUI/FlatCAMGUI.py:2942
  5457. msgid "[WARNING_NOTCL] Cancelled."
  5458. msgstr "[WARNING_NOTCL] Cancelled."
  5459. #: flatcamGUI/FlatCAMGUI.py:2588
  5460. msgid ""
  5461. "Please select geometry items \n"
  5462. "on which to perform Intersection Tool."
  5463. msgstr ""
  5464. "Please select geometry items \n"
  5465. "on which to perform Intersection Tool."
  5466. #: flatcamGUI/FlatCAMGUI.py:2647
  5467. msgid ""
  5468. "Please select geometry items \n"
  5469. "on which to perform Substraction Tool."
  5470. msgstr ""
  5471. "Please select geometry items \n"
  5472. "on which to perform Substraction Tool."
  5473. #: flatcamGUI/FlatCAMGUI.py:2667
  5474. msgid ""
  5475. "Please select geometry items \n"
  5476. "on which to perform union."
  5477. msgstr ""
  5478. "Please select geometry items \n"
  5479. "on which to perform union."
  5480. #: flatcamGUI/FlatCAMGUI.py:2747 flatcamGUI/FlatCAMGUI.py:2959
  5481. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5482. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5483. #: flatcamGUI/FlatCAMGUI.py:2831 flatcamGUI/FlatCAMGUI.py:3026
  5484. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5485. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5486. #: flatcamGUI/FlatCAMGUI.py:2877 flatcamGUI/FlatCAMGUI.py:3072
  5487. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5488. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5489. #: flatcamGUI/FlatCAMGUI.py:3098
  5490. msgid "New Tool ..."
  5491. msgstr "New Tool ..."
  5492. #: flatcamGUI/FlatCAMGUI.py:3099
  5493. msgid "Enter a Tool Diameter:"
  5494. msgstr "Enter a Tool Diameter:"
  5495. #: flatcamGUI/FlatCAMGUI.py:3154
  5496. msgid "Measurement Tool exit..."
  5497. msgstr "Measurement Tool exit..."
  5498. #: flatcamGUI/FlatCAMGUI.py:3452
  5499. msgid "GUI Preferences"
  5500. msgstr "GUI Preferences"
  5501. #: flatcamGUI/FlatCAMGUI.py:3458
  5502. msgid "Grid X value:"
  5503. msgstr "Grid X value:"
  5504. #: flatcamGUI/FlatCAMGUI.py:3460
  5505. msgid "This is the Grid snap value on X axis."
  5506. msgstr "This is the Grid snap value on X axis."
  5507. #: flatcamGUI/FlatCAMGUI.py:3465
  5508. msgid "Grid Y value:"
  5509. msgstr "Grid Y value:"
  5510. #: flatcamGUI/FlatCAMGUI.py:3467
  5511. msgid "This is the Grid snap value on Y axis."
  5512. msgstr "This is the Grid snap value on Y axis."
  5513. #: flatcamGUI/FlatCAMGUI.py:3472
  5514. msgid "Snap Max:"
  5515. msgstr "Snap Max:"
  5516. #: flatcamGUI/FlatCAMGUI.py:3477
  5517. msgid "Workspace:"
  5518. msgstr "Workspace:"
  5519. #: flatcamGUI/FlatCAMGUI.py:3479
  5520. msgid ""
  5521. "Draw a delimiting rectangle on canvas.\n"
  5522. "The purpose is to illustrate the limits for our work."
  5523. msgstr ""
  5524. "Draw a delimiting rectangle on canvas.\n"
  5525. "The purpose is to illustrate the limits for our work."
  5526. #: flatcamGUI/FlatCAMGUI.py:3482
  5527. msgid "Wk. format:"
  5528. msgstr "Wk. format:"
  5529. #: flatcamGUI/FlatCAMGUI.py:3484
  5530. msgid ""
  5531. "Select the type of rectangle to be used on canvas,\n"
  5532. "as valid workspace."
  5533. msgstr ""
  5534. "Select the type of rectangle to be used on canvas,\n"
  5535. "as valid workspace."
  5536. #: flatcamGUI/FlatCAMGUI.py:3497
  5537. msgid "Plot Fill:"
  5538. msgstr "Plot Fill:"
  5539. #: flatcamGUI/FlatCAMGUI.py:3499
  5540. msgid ""
  5541. "Set the fill color for plotted objects.\n"
  5542. "First 6 digits are the color and the last 2\n"
  5543. "digits are for alpha (transparency) level."
  5544. msgstr ""
  5545. "Set the fill color for plotted objects.\n"
  5546. "First 6 digits are the color and the last 2\n"
  5547. "digits are for alpha (transparency) level."
  5548. #: flatcamGUI/FlatCAMGUI.py:3513 flatcamGUI/FlatCAMGUI.py:3563
  5549. #: flatcamGUI/FlatCAMGUI.py:3613
  5550. msgid "Alpha Level:"
  5551. msgstr "Alpha Level:"
  5552. #: flatcamGUI/FlatCAMGUI.py:3515
  5553. msgid "Set the fill transparency for plotted objects."
  5554. msgstr "Set the fill transparency for plotted objects."
  5555. #: flatcamGUI/FlatCAMGUI.py:3532
  5556. msgid "Plot Line:"
  5557. msgstr "Plot Line:"
  5558. #: flatcamGUI/FlatCAMGUI.py:3534
  5559. msgid "Set the line color for plotted objects."
  5560. msgstr "Set the line color for plotted objects."
  5561. #: flatcamGUI/FlatCAMGUI.py:3546
  5562. msgid "Sel. Fill:"
  5563. msgstr "Sel. Fill:"
  5564. #: flatcamGUI/FlatCAMGUI.py:3548
  5565. msgid ""
  5566. "Set the fill color for the selection box\n"
  5567. "in case that the selection is done from left to right.\n"
  5568. "First 6 digits are the color and the last 2\n"
  5569. "digits are for alpha (transparency) level."
  5570. msgstr ""
  5571. "Set the fill color for the selection box\n"
  5572. "in case that the selection is done from left to right.\n"
  5573. "First 6 digits are the color and the last 2\n"
  5574. "digits are for alpha (transparency) level."
  5575. #: flatcamGUI/FlatCAMGUI.py:3565
  5576. msgid "Set the fill transparency for the 'left to right' selection box."
  5577. msgstr "Set the fill transparency for the 'left to right' selection box."
  5578. #: flatcamGUI/FlatCAMGUI.py:3582
  5579. msgid "Sel. Line:"
  5580. msgstr "Sel. Line:"
  5581. #: flatcamGUI/FlatCAMGUI.py:3584
  5582. msgid "Set the line color for the 'left to right' selection box."
  5583. msgstr "Set the line color for the 'left to right' selection box."
  5584. #: flatcamGUI/FlatCAMGUI.py:3596
  5585. msgid "Sel2. Fill:"
  5586. msgstr "Sel2. Fill:"
  5587. #: flatcamGUI/FlatCAMGUI.py:3598
  5588. msgid ""
  5589. "Set the fill color for the selection box\n"
  5590. "in case that the selection is done from right to left.\n"
  5591. "First 6 digits are the color and the last 2\n"
  5592. "digits are for alpha (transparency) level."
  5593. msgstr ""
  5594. "Set the fill color for the selection box\n"
  5595. "in case that the selection is done from right to left.\n"
  5596. "First 6 digits are the color and the last 2\n"
  5597. "digits are for alpha (transparency) level."
  5598. #: flatcamGUI/FlatCAMGUI.py:3615
  5599. msgid "Set the fill transparency for selection 'right to left' box."
  5600. msgstr "Set the fill transparency for selection 'right to left' box."
  5601. #: flatcamGUI/FlatCAMGUI.py:3632
  5602. msgid "Sel2. Line:"
  5603. msgstr "Sel2. Line:"
  5604. #: flatcamGUI/FlatCAMGUI.py:3634
  5605. msgid "Set the line color for the 'right to left' selection box."
  5606. msgstr "Set the line color for the 'right to left' selection box."
  5607. #: flatcamGUI/FlatCAMGUI.py:3646
  5608. msgid "Editor Draw:"
  5609. msgstr "Editor Draw:"
  5610. #: flatcamGUI/FlatCAMGUI.py:3648
  5611. msgid "Set the color for the shape."
  5612. msgstr "Set the color for the shape."
  5613. #: flatcamGUI/FlatCAMGUI.py:3660
  5614. msgid "Editor Draw Sel.:"
  5615. msgstr "Editor Draw Sel.:"
  5616. #: flatcamGUI/FlatCAMGUI.py:3662
  5617. msgid "Set the color of the shape when selected."
  5618. msgstr "Set the color of the shape when selected."
  5619. #: flatcamGUI/FlatCAMGUI.py:3674
  5620. msgid "Project Items:"
  5621. msgstr "Project Items:"
  5622. #: flatcamGUI/FlatCAMGUI.py:3676
  5623. msgid "Set the color of the items in Project Tab Tree."
  5624. msgstr "Set the color of the items in Project Tab Tree."
  5625. #: flatcamGUI/FlatCAMGUI.py:3687
  5626. msgid "Proj. Dis. Items:"
  5627. msgstr "Proj. Dis. Items:"
  5628. #: flatcamGUI/FlatCAMGUI.py:3689
  5629. msgid ""
  5630. "Set the color of the items in Project Tab Tree,\n"
  5631. "for the case when the items are disabled."
  5632. msgstr ""
  5633. "Set the color of the items in Project Tab Tree,\n"
  5634. "for the case when the items are disabled."
  5635. #: flatcamGUI/FlatCAMGUI.py:3740
  5636. msgid "GUI Settings"
  5637. msgstr "GUI Settings"
  5638. #: flatcamGUI/FlatCAMGUI.py:3746
  5639. msgid "Layout:"
  5640. msgstr "Layout:"
  5641. #: flatcamGUI/FlatCAMGUI.py:3748
  5642. msgid ""
  5643. "Select an layout for FlatCAM.\n"
  5644. "It is applied immediately."
  5645. msgstr ""
  5646. "Select an layout for FlatCAM.\n"
  5647. "It is applied immediately."
  5648. #: flatcamGUI/FlatCAMGUI.py:3764
  5649. msgid "Style:"
  5650. msgstr "Style:"
  5651. #: flatcamGUI/FlatCAMGUI.py:3766
  5652. msgid ""
  5653. "Select an style for FlatCAM.\n"
  5654. "It will be applied at the next app start."
  5655. msgstr ""
  5656. "Select an style for FlatCAM.\n"
  5657. "It will be applied at the next app start."
  5658. #: flatcamGUI/FlatCAMGUI.py:3777
  5659. msgid "HDPI Support:"
  5660. msgstr "HDPI Support:"
  5661. #: flatcamGUI/FlatCAMGUI.py:3779
  5662. msgid ""
  5663. "Enable High DPI support for FlatCAM.\n"
  5664. "It will be applied at the next app start."
  5665. msgstr ""
  5666. "Enable High DPI support for FlatCAM.\n"
  5667. "It will be applied at the next app start."
  5668. #: flatcamGUI/FlatCAMGUI.py:3792
  5669. msgid "Clear GUI Settings:"
  5670. msgstr "Clear GUI Settings:"
  5671. #: flatcamGUI/FlatCAMGUI.py:3794
  5672. msgid ""
  5673. "Clear the GUI settings for FlatCAM,\n"
  5674. "such as: layout, gui state, style, hdpi support etc."
  5675. msgstr ""
  5676. "Clear the GUI settings for FlatCAM,\n"
  5677. "such as: layout, gui state, style, hdpi support etc."
  5678. #: flatcamGUI/FlatCAMGUI.py:3797
  5679. msgid "Clear"
  5680. msgstr "Clear"
  5681. #: flatcamGUI/FlatCAMGUI.py:3801
  5682. msgid "Hover Shape:"
  5683. msgstr "Hover Shape:"
  5684. #: flatcamGUI/FlatCAMGUI.py:3803
  5685. msgid ""
  5686. "Enable display of a hover shape for FlatCAM objects.\n"
  5687. "It is displayed whenever the mouse cursor is hovering\n"
  5688. "over any kind of not-selected object."
  5689. msgstr ""
  5690. "Enable display of a hover shape for FlatCAM objects.\n"
  5691. "It is displayed whenever the mouse cursor is hovering\n"
  5692. "over any kind of not-selected object."
  5693. #: flatcamGUI/FlatCAMGUI.py:3810
  5694. msgid "Sel. Shape:"
  5695. msgstr "Sel. Shape:"
  5696. #: flatcamGUI/FlatCAMGUI.py:3812
  5697. msgid ""
  5698. "Enable the display of a selection shape for FlatCAM objects.\n"
  5699. "It is displayed whenever the mouse selects an object\n"
  5700. "either by clicking or dragging mouse from left to right or\n"
  5701. "right to left."
  5702. msgstr ""
  5703. "Enable the display of a selection shape for FlatCAM objects.\n"
  5704. "It is displayed whenever the mouse selects an object\n"
  5705. "either by clicking or dragging mouse from left to right or\n"
  5706. "right to left."
  5707. #: flatcamGUI/FlatCAMGUI.py:3819
  5708. msgid "NB Font Size:"
  5709. msgstr "NB Font Size:"
  5710. #: flatcamGUI/FlatCAMGUI.py:3821
  5711. msgid ""
  5712. "This sets the font size for the elements found in the Notebook.\n"
  5713. "The notebook is the collapsible area in the left side of the GUI,\n"
  5714. "and include the Project, Selected and Tool tabs."
  5715. msgstr ""
  5716. "This sets the font size for the elements found in the Notebook.\n"
  5717. "The notebook is the collapsible area in the left side of the GUI,\n"
  5718. "and include the Project, Selected and Tool tabs."
  5719. #: flatcamGUI/FlatCAMGUI.py:3836
  5720. msgid "Axis Font Size:"
  5721. msgstr "Axis Font Size:"
  5722. #: flatcamGUI/FlatCAMGUI.py:3838
  5723. msgid "This sets the font size for canvas axis."
  5724. msgstr "This sets the font size for canvas axis."
  5725. #: flatcamGUI/FlatCAMGUI.py:3890
  5726. msgid "Are you sure you want to delete the GUI Settings? \n"
  5727. msgstr "Are you sure you want to delete the GUI Settings? \n"
  5728. #: flatcamGUI/FlatCAMGUI.py:3893
  5729. msgid "Clear GUI Settings"
  5730. msgstr "Clear GUI Settings"
  5731. #: flatcamGUI/FlatCAMGUI.py:3914
  5732. msgid "App Preferences"
  5733. msgstr "App Preferences"
  5734. #: flatcamGUI/FlatCAMGUI.py:3920
  5735. msgid "<b>Units:</b>"
  5736. msgstr "<b>Units:</b>"
  5737. #: flatcamGUI/FlatCAMGUI.py:3921
  5738. msgid ""
  5739. "The default value for FlatCAM units.\n"
  5740. "Whatever is selected here is set every time\n"
  5741. "FLatCAM is started."
  5742. msgstr ""
  5743. "The default value for FlatCAM units.\n"
  5744. "Whatever is selected here is set every time\n"
  5745. "FLatCAM is started."
  5746. #: flatcamGUI/FlatCAMGUI.py:3924
  5747. msgid "IN"
  5748. msgstr "IN"
  5749. #: flatcamGUI/FlatCAMGUI.py:3925 flatcamGUI/FlatCAMGUI.py:4424
  5750. #: flatcamGUI/FlatCAMGUI.py:4685 flatcamGUI/FlatCAMGUI.py:5076
  5751. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5752. msgid "MM"
  5753. msgstr "MM"
  5754. #: flatcamGUI/FlatCAMGUI.py:3928
  5755. msgid "<b>APP. LEVEL:</b>"
  5756. msgstr "<b>APP. LEVEL:</b>"
  5757. #: flatcamGUI/FlatCAMGUI.py:3929
  5758. msgid ""
  5759. "Choose the default level of usage for FlatCAM.\n"
  5760. "BASIC level -> reduced functionality, best for beginner's.\n"
  5761. "ADVANCED level -> full functionality.\n"
  5762. "\n"
  5763. "The choice here will influence the parameters in\n"
  5764. "the Selected Tab for all kinds of FlatCAM objects."
  5765. msgstr ""
  5766. "Choose the default level of usage for FlatCAM.\n"
  5767. "BASIC level -> reduced functionality, best for beginner's.\n"
  5768. "ADVANCED level -> full functionality.\n"
  5769. "\n"
  5770. "The choice here will influence the parameters in\n"
  5771. "the Selected Tab for all kinds of FlatCAM objects."
  5772. #: flatcamGUI/FlatCAMGUI.py:3934 flatcamGUI/FlatCAMGUI.py:4712
  5773. msgid "Basic"
  5774. msgstr "Basic"
  5775. #: flatcamGUI/FlatCAMGUI.py:3935
  5776. msgid "Advanced"
  5777. msgstr "Advanced"
  5778. #: flatcamGUI/FlatCAMGUI.py:3938
  5779. msgid "<b>Languages:</b>"
  5780. msgstr "<b>Languages:</b>"
  5781. #: flatcamGUI/FlatCAMGUI.py:3939
  5782. msgid "Set the language used throughout FlatCAM."
  5783. msgstr "Set the language used throughout FlatCAM."
  5784. #: flatcamGUI/FlatCAMGUI.py:3942
  5785. msgid "Apply Language"
  5786. msgstr "Apply Language"
  5787. #: flatcamGUI/FlatCAMGUI.py:3943
  5788. msgid ""
  5789. "Set the language used throughout FlatCAM.\n"
  5790. "The app will restart after click.Windows: When FlatCAM is installed in "
  5791. "Program Files\n"
  5792. "directory, it is possible that the app will not\n"
  5793. "restart after the button is clicked due of Windows\n"
  5794. "security features. In this case the language will be\n"
  5795. "applied at the next app start."
  5796. msgstr ""
  5797. "Set the language used throughout FlatCAM.\n"
  5798. "The app will restart after click.Windows: When FlatCAM is installed in "
  5799. "Program Files\n"
  5800. "directory, it is possible that the app will not\n"
  5801. "restart after the button is clicked due of Windows\n"
  5802. "security features. In this case the language will be\n"
  5803. "applied at the next app start."
  5804. #: flatcamGUI/FlatCAMGUI.py:3952
  5805. msgid "Shell at StartUp:"
  5806. msgstr "Shell at StartUp:"
  5807. #: flatcamGUI/FlatCAMGUI.py:3954 flatcamGUI/FlatCAMGUI.py:3959
  5808. msgid ""
  5809. "Check this box if you want the shell to\n"
  5810. "start automatically at startup."
  5811. msgstr ""
  5812. "Check this box if you want the shell to\n"
  5813. "start automatically at startup."
  5814. #: flatcamGUI/FlatCAMGUI.py:3964
  5815. msgid "Version Check:"
  5816. msgstr "Version Check:"
  5817. #: flatcamGUI/FlatCAMGUI.py:3966 flatcamGUI/FlatCAMGUI.py:3971
  5818. msgid ""
  5819. "Check this box if you want to check\n"
  5820. "for a new version automatically at startup."
  5821. msgstr ""
  5822. "Check this box if you want to check\n"
  5823. "for a new version automatically at startup."
  5824. #: flatcamGUI/FlatCAMGUI.py:3976
  5825. msgid "Send Stats:"
  5826. msgstr "Send Stats:"
  5827. #: flatcamGUI/FlatCAMGUI.py:3978 flatcamGUI/FlatCAMGUI.py:3983
  5828. msgid ""
  5829. "Check this box if you agree to send anonymous\n"
  5830. "stats automatically at startup, to help improve FlatCAM."
  5831. msgstr ""
  5832. "Check this box if you agree to send anonymous\n"
  5833. "stats automatically at startup, to help improve FlatCAM."
  5834. #: flatcamGUI/FlatCAMGUI.py:3990
  5835. msgid "<b>Pan Button:</b>"
  5836. msgstr "<b>Pan Button:</b>"
  5837. #: flatcamGUI/FlatCAMGUI.py:3991
  5838. msgid ""
  5839. "Select the mouse button to use for panning:\n"
  5840. "- MMB --> Middle Mouse Button\n"
  5841. "- RMB --> Right Mouse Button"
  5842. msgstr ""
  5843. "Select the mouse button to use for panning:\n"
  5844. "- MMB --> Middle Mouse Button\n"
  5845. "- RMB --> Right Mouse Button"
  5846. #: flatcamGUI/FlatCAMGUI.py:3994
  5847. msgid "MMB"
  5848. msgstr "MMB"
  5849. #: flatcamGUI/FlatCAMGUI.py:3995
  5850. msgid "RMB"
  5851. msgstr "RMB"
  5852. #: flatcamGUI/FlatCAMGUI.py:3998
  5853. msgid "<b>Multiple Sel:</b>"
  5854. msgstr "<b>Multiple Sel:</b>"
  5855. #: flatcamGUI/FlatCAMGUI.py:3999
  5856. msgid "Select the key used for multiple selection."
  5857. msgstr "Select the key used for multiple selection."
  5858. #: flatcamGUI/FlatCAMGUI.py:4000
  5859. msgid "CTRL"
  5860. msgstr "CTRL"
  5861. #: flatcamGUI/FlatCAMGUI.py:4001
  5862. msgid "SHIFT"
  5863. msgstr "SHIFT"
  5864. #: flatcamGUI/FlatCAMGUI.py:4004
  5865. msgid "Project at StartUp:"
  5866. msgstr "Project at StartUp:"
  5867. #: flatcamGUI/FlatCAMGUI.py:4006 flatcamGUI/FlatCAMGUI.py:4011
  5868. msgid ""
  5869. "Check this box if you want the project/selected/tool tab area to\n"
  5870. "to be shown automatically at startup."
  5871. msgstr ""
  5872. "Check this box if you want the project/selected/tool tab area to\n"
  5873. "to be shown automatically at startup."
  5874. #: flatcamGUI/FlatCAMGUI.py:4016
  5875. msgid "Project AutoHide:"
  5876. msgstr "Project AutoHide:"
  5877. #: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/FlatCAMGUI.py:4024
  5878. msgid ""
  5879. "Check this box if you want the project/selected/tool tab area to\n"
  5880. "hide automatically when there are no objects loaded and\n"
  5881. "to show whenever a new object is created."
  5882. msgstr ""
  5883. "Check this box if you want the project/selected/tool tab area to\n"
  5884. "hide automatically when there are no objects loaded and\n"
  5885. "to show whenever a new object is created."
  5886. #: flatcamGUI/FlatCAMGUI.py:4030
  5887. msgid "<b>Enable ToolTips:</b>"
  5888. msgstr "<b>Enable ToolTips:</b>"
  5889. #: flatcamGUI/FlatCAMGUI.py:4032 flatcamGUI/FlatCAMGUI.py:4037
  5890. msgid ""
  5891. "Check this box if you want to have toolTips displayed\n"
  5892. "when hovering with mouse over items throughout the App."
  5893. msgstr ""
  5894. "Check this box if you want to have toolTips displayed\n"
  5895. "when hovering with mouse over items throughout the App."
  5896. #: flatcamGUI/FlatCAMGUI.py:4040
  5897. msgid "Workers number:"
  5898. msgstr "Workers number:"
  5899. #: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/FlatCAMGUI.py:4051
  5900. msgid ""
  5901. "The number of Qthreads made available to the App.\n"
  5902. "A bigger number may finish the jobs more quickly but\n"
  5903. "depending on your computer speed, may make the App\n"
  5904. "unresponsive. Can have a value between 2 and 16.\n"
  5905. "Default value is 2.\n"
  5906. "After change, it will be applied at next App start."
  5907. msgstr ""
  5908. "The number of Qthreads made available to the App.\n"
  5909. "A bigger number may finish the jobs more quickly but\n"
  5910. "depending on your computer speed, may make the App\n"
  5911. "unresponsive. Can have a value between 2 and 16.\n"
  5912. "Default value is 2.\n"
  5913. "After change, it will be applied at next App start."
  5914. #: flatcamGUI/FlatCAMGUI.py:4061
  5915. msgid "Geo Tolerance:"
  5916. msgstr "Geo Tolerance:"
  5917. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4072
  5918. msgid ""
  5919. "This value can counter the effect of the Circle Steps\n"
  5920. "parameter. Default value is 0.01.\n"
  5921. "A lower value will increase the detail both in image\n"
  5922. "and in Gcode for the circles, with a higher cost in\n"
  5923. "performance. Higher value will provide more\n"
  5924. "performance at the expense of level of detail."
  5925. msgstr ""
  5926. "This value can counter the effect of the Circle Steps\n"
  5927. "parameter. Default value is 0.01.\n"
  5928. "A lower value will increase the detail both in image\n"
  5929. "and in Gcode for the circles, with a higher cost in\n"
  5930. "performance. Higher value will provide more\n"
  5931. "performance at the expense of level of detail."
  5932. #: flatcamGUI/FlatCAMGUI.py:4108
  5933. msgid "\"Open\" behavior"
  5934. msgstr "\"Open\" behavior"
  5935. #: flatcamGUI/FlatCAMGUI.py:4110
  5936. msgid ""
  5937. "When checked the path for the last saved file is used when saving files,\n"
  5938. "and the path for the last opened file is used when opening files.\n"
  5939. "\n"
  5940. "When unchecked the path for opening files is the one used last: either the\n"
  5941. "path for saving files or the path for opening files."
  5942. msgstr ""
  5943. "When checked the path for the last saved file is used when saving files,\n"
  5944. "and the path for the last opened file is used when opening files.\n"
  5945. "\n"
  5946. "When unchecked the path for opening files is the one used last: either the\n"
  5947. "path for saving files or the path for opening files."
  5948. #: flatcamGUI/FlatCAMGUI.py:4119
  5949. msgid "Delete object confirmation"
  5950. msgstr "Delete object confirmation"
  5951. #: flatcamGUI/FlatCAMGUI.py:4121
  5952. msgid ""
  5953. "When checked the application will ask for user confirmation\n"
  5954. "whenever the Delete object(s) event is triggered, either by\n"
  5955. "menu shortcut or key shortcut."
  5956. msgstr ""
  5957. "When checked the application will ask for user confirmation\n"
  5958. "whenever the Delete object(s) event is triggered, either by\n"
  5959. "menu shortcut or key shortcut."
  5960. #: flatcamGUI/FlatCAMGUI.py:4128
  5961. msgid "Save Compressed Project"
  5962. msgstr "Save Compressed Project"
  5963. #: flatcamGUI/FlatCAMGUI.py:4130
  5964. msgid ""
  5965. "Whether to save a compressed or uncompressed project.\n"
  5966. "When checked it will save a compressed FlatCAM project."
  5967. msgstr ""
  5968. "Whether to save a compressed or uncompressed project.\n"
  5969. "When checked it will save a compressed FlatCAM project."
  5970. #: flatcamGUI/FlatCAMGUI.py:4141
  5971. msgid "Compression Level:"
  5972. msgstr "Compression Level:"
  5973. #: flatcamGUI/FlatCAMGUI.py:4143
  5974. msgid ""
  5975. "The level of compression used when saving\n"
  5976. "a FlatCAM project. Higher value means better compression\n"
  5977. "but require more RAM usage and more processing time."
  5978. msgstr ""
  5979. "The level of compression used when saving\n"
  5980. "a FlatCAM project. Higher value means better compression\n"
  5981. "but require more RAM usage and more processing time."
  5982. #: flatcamGUI/FlatCAMGUI.py:4166
  5983. msgid "Gerber General"
  5984. msgstr "Gerber General"
  5985. #: flatcamGUI/FlatCAMGUI.py:4169 flatcamGUI/FlatCAMGUI.py:4536
  5986. #: flatcamGUI/FlatCAMGUI.py:5464 flatcamGUI/FlatCAMGUI.py:5833
  5987. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:503
  5988. #: flatcamGUI/ObjectUI.py:831 flatcamGUI/ObjectUI.py:1356
  5989. #| msgid "<b>Plot Options:</b>"
  5990. msgid "Plot Options"
  5991. msgstr "Plot Options"
  5992. #: flatcamGUI/FlatCAMGUI.py:4176 flatcamGUI/FlatCAMGUI.py:4548
  5993. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:504
  5994. msgid "Solid"
  5995. msgstr "Solid"
  5996. #: flatcamGUI/FlatCAMGUI.py:4178 flatcamGUI/ObjectUI.py:158
  5997. msgid "Solid color polygons."
  5998. msgstr "Solid color polygons."
  5999. #: flatcamGUI/FlatCAMGUI.py:4183 flatcamGUI/ObjectUI.py:164
  6000. msgid "M-Color"
  6001. msgstr "M-Color"
  6002. #: flatcamGUI/FlatCAMGUI.py:4185 flatcamGUI/ObjectUI.py:166
  6003. msgid "Draw polygons in different colors."
  6004. msgstr "Draw polygons in different colors."
  6005. #: flatcamGUI/FlatCAMGUI.py:4190 flatcamGUI/FlatCAMGUI.py:4542
  6006. #: flatcamGUI/FlatCAMGUI.py:5468 flatcamGUI/ObjectUI.py:172
  6007. msgid "Plot"
  6008. msgstr "Plot"
  6009. #: flatcamGUI/FlatCAMGUI.py:4192 flatcamGUI/FlatCAMGUI.py:5470
  6010. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:544
  6011. #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1468
  6012. msgid "Plot (show) this object."
  6013. msgstr "Plot (show) this object."
  6014. #: flatcamGUI/FlatCAMGUI.py:4197 flatcamGUI/FlatCAMGUI.py:5478
  6015. #: flatcamGUI/FlatCAMGUI.py:5916
  6016. msgid "Circle Steps:"
  6017. msgstr "Circle Steps:"
  6018. #: flatcamGUI/FlatCAMGUI.py:4199
  6019. msgid ""
  6020. "The number of circle steps for Gerber \n"
  6021. "circular aperture linear approximation."
  6022. msgstr ""
  6023. "The number of circle steps for Gerber \n"
  6024. "circular aperture linear approximation."
  6025. #: flatcamGUI/FlatCAMGUI.py:4214
  6026. msgid "Gerber Options"
  6027. msgstr "Gerber Options"
  6028. #: flatcamGUI/FlatCAMGUI.py:4217 flatcamGUI/ObjectUI.py:250
  6029. #| msgid "<b>Isolation Routing:</b>"
  6030. msgid "Isolation Routing"
  6031. msgstr "Isolation Routing"
  6032. #: flatcamGUI/FlatCAMGUI.py:4219 flatcamGUI/ObjectUI.py:252
  6033. msgid ""
  6034. "Create a Geometry object with\n"
  6035. "toolpaths to cut outside polygons."
  6036. msgstr ""
  6037. "Create a Geometry object with\n"
  6038. "toolpaths to cut outside polygons."
  6039. #: flatcamGUI/FlatCAMGUI.py:4230 flatcamGUI/FlatCAMGUI.py:4910
  6040. #: flatcamGUI/FlatCAMGUI.py:6269 flatcamGUI/ObjectUI.py:786
  6041. #: flatcamGUI/ObjectUI.py:802
  6042. msgid "Diameter of the cutting tool."
  6043. msgstr "Diameter of the cutting tool."
  6044. #: flatcamGUI/FlatCAMGUI.py:4237
  6045. msgid "Width (# passes):"
  6046. msgstr "Width (# passes):"
  6047. #: flatcamGUI/FlatCAMGUI.py:4239 flatcamGUI/ObjectUI.py:274
  6048. msgid ""
  6049. "Width of the isolation gap in\n"
  6050. "number (integer) of tool widths."
  6051. msgstr ""
  6052. "Width of the isolation gap in\n"
  6053. "number (integer) of tool widths."
  6054. #: flatcamGUI/FlatCAMGUI.py:4248 flatcamGUI/ObjectUI.py:283
  6055. msgid "Pass overlap:"
  6056. msgstr "Pass overlap:"
  6057. #: flatcamGUI/FlatCAMGUI.py:4250 flatcamGUI/ObjectUI.py:285
  6058. #, python-format
  6059. msgid ""
  6060. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6061. "Example:\n"
  6062. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  6063. "above."
  6064. msgstr ""
  6065. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6066. "Example:\n"
  6067. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  6068. "above."
  6069. #: flatcamGUI/FlatCAMGUI.py:4258 flatcamGUI/ObjectUI.py:295
  6070. msgid "Milling Type:"
  6071. msgstr "Milling Type:"
  6072. #: flatcamGUI/FlatCAMGUI.py:4260 flatcamGUI/ObjectUI.py:297
  6073. msgid ""
  6074. "Milling type:\n"
  6075. "- climb / best for precision milling and to reduce tool usage\n"
  6076. "- conventional / useful when there is no backlash compensation"
  6077. msgstr ""
  6078. "Milling type:\n"
  6079. "- climb / best for precision milling and to reduce tool usage\n"
  6080. "- conventional / useful when there is no backlash compensation"
  6081. #: flatcamGUI/FlatCAMGUI.py:4265 flatcamGUI/ObjectUI.py:302
  6082. msgid "Climb"
  6083. msgstr "Climb"
  6084. #: flatcamGUI/FlatCAMGUI.py:4266 flatcamGUI/ObjectUI.py:303
  6085. msgid "Conv."
  6086. msgstr "Conv."
  6087. #: flatcamGUI/FlatCAMGUI.py:4270
  6088. msgid "Combine Passes"
  6089. msgstr "Combine Passes"
  6090. #: flatcamGUI/FlatCAMGUI.py:4272 flatcamGUI/ObjectUI.py:309
  6091. msgid "Combine all passes into one object"
  6092. msgstr "Combine all passes into one object"
  6093. #: flatcamGUI/FlatCAMGUI.py:4277
  6094. #| msgid "<b>Clear non-copper:</b>"
  6095. msgid "Clear non-copper"
  6096. msgstr "Clear non-copper"
  6097. #: flatcamGUI/FlatCAMGUI.py:4279 flatcamGUI/FlatCAMGUI.py:6093
  6098. #: flatcamGUI/ObjectUI.py:384
  6099. msgid ""
  6100. "Create a Geometry object with\n"
  6101. "toolpaths to cut all non-copper regions."
  6102. msgstr ""
  6103. "Create a Geometry object with\n"
  6104. "toolpaths to cut all non-copper regions."
  6105. #: flatcamGUI/FlatCAMGUI.py:4288 flatcamGUI/FlatCAMGUI.py:4314
  6106. #: flatcamGUI/ObjectUI.py:428 flatcamGUI/ObjectUI.py:462
  6107. msgid "Boundary Margin:"
  6108. msgstr "Boundary Margin:"
  6109. #: flatcamGUI/FlatCAMGUI.py:4290 flatcamGUI/ObjectUI.py:430
  6110. msgid ""
  6111. "Specify the edge of the PCB\n"
  6112. "by drawing a box around all\n"
  6113. "objects with this minimum\n"
  6114. "distance."
  6115. msgstr ""
  6116. "Specify the edge of the PCB\n"
  6117. "by drawing a box around all\n"
  6118. "objects with this minimum\n"
  6119. "distance."
  6120. #: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/FlatCAMGUI.py:4323
  6121. msgid "Rounded corners"
  6122. msgstr "Rounded corners"
  6123. #: flatcamGUI/FlatCAMGUI.py:4302
  6124. msgid ""
  6125. "Creates a Geometry objects with polygons\n"
  6126. "covering the copper-free areas of the PCB."
  6127. msgstr ""
  6128. "Creates a Geometry objects with polygons\n"
  6129. "covering the copper-free areas of the PCB."
  6130. #: flatcamGUI/FlatCAMGUI.py:4308 flatcamGUI/ObjectUI.py:452
  6131. msgid "<b>Bounding Box:</b>"
  6132. msgstr "<b>Bounding Box:</b>"
  6133. #: flatcamGUI/FlatCAMGUI.py:4316 flatcamGUI/ObjectUI.py:464
  6134. msgid ""
  6135. "Distance of the edges of the box\n"
  6136. "to the nearest polygon."
  6137. msgstr ""
  6138. "Distance of the edges of the box\n"
  6139. "to the nearest polygon."
  6140. #: flatcamGUI/FlatCAMGUI.py:4325 flatcamGUI/ObjectUI.py:474
  6141. msgid ""
  6142. "If the bounding box is \n"
  6143. "to have rounded corners\n"
  6144. "their radius is equal to\n"
  6145. "the margin."
  6146. msgstr ""
  6147. "If the bounding box is \n"
  6148. "to have rounded corners\n"
  6149. "their radius is equal to\n"
  6150. "the margin."
  6151. #: flatcamGUI/FlatCAMGUI.py:4339
  6152. msgid "Gerber Adv. Options"
  6153. msgstr "Gerber Adv. Options"
  6154. #: flatcamGUI/FlatCAMGUI.py:4342
  6155. #| msgid "<b>Advanced Param.:</b>"
  6156. msgid "Advanced Param."
  6157. msgstr "Advanced Param."
  6158. #: flatcamGUI/FlatCAMGUI.py:4344
  6159. msgid ""
  6160. "A list of Gerber advanced parameters.\n"
  6161. "Those parameters are available only for\n"
  6162. "Advanced App. Level."
  6163. msgstr ""
  6164. "A list of Gerber advanced parameters.\n"
  6165. "Those parameters are available only for\n"
  6166. "Advanced App. Level."
  6167. #: flatcamGUI/FlatCAMGUI.py:4354 flatcamGUI/ObjectUI.py:314
  6168. msgid "\"Follow\""
  6169. msgstr "\"Follow\""
  6170. #: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/ObjectUI.py:316
  6171. msgid ""
  6172. "Generate a 'Follow' geometry.\n"
  6173. "This means that it will cut through\n"
  6174. "the middle of the trace."
  6175. msgstr ""
  6176. "Generate a 'Follow' geometry.\n"
  6177. "This means that it will cut through\n"
  6178. "the middle of the trace."
  6179. #: flatcamGUI/FlatCAMGUI.py:4363
  6180. msgid "Table Show/Hide"
  6181. msgstr "Table Show/Hide"
  6182. #: flatcamGUI/FlatCAMGUI.py:4365
  6183. msgid ""
  6184. "Toggle the display of the Gerber Apertures Table.\n"
  6185. "Also, on hide, it will delete all mark shapes\n"
  6186. "that are drawn on canvas."
  6187. msgstr ""
  6188. "Toggle the display of the Gerber Apertures Table.\n"
  6189. "Also, on hide, it will delete all mark shapes\n"
  6190. "that are drawn on canvas."
  6191. #: flatcamGUI/FlatCAMGUI.py:4404
  6192. msgid "Gerber Export"
  6193. msgstr "Gerber Export"
  6194. #: flatcamGUI/FlatCAMGUI.py:4407 flatcamGUI/FlatCAMGUI.py:5059
  6195. #| msgid "<b>Export Options:</b>"
  6196. msgid "Export Options"
  6197. msgstr "Export Options"
  6198. #: flatcamGUI/FlatCAMGUI.py:4409
  6199. msgid ""
  6200. "The parameters set here are used in the file exported\n"
  6201. "when using the File -> Export -> Export Gerber menu entry."
  6202. msgstr ""
  6203. "The parameters set here are used in the file exported\n"
  6204. "when using the File -> Export -> Export Gerber menu entry."
  6205. #: flatcamGUI/FlatCAMGUI.py:4418 flatcamGUI/FlatCAMGUI.py:5070
  6206. msgid "<b>Units</b>:"
  6207. msgstr "<b>Units</b>:"
  6208. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4426
  6209. msgid "The units used in the Gerber file."
  6210. msgstr "The units used in the Gerber file."
  6211. #: flatcamGUI/FlatCAMGUI.py:4423 flatcamGUI/FlatCAMGUI.py:4684
  6212. #: flatcamGUI/FlatCAMGUI.py:5075 flatcamTools/ToolCalculators.py:60
  6213. #: flatcamTools/ToolPcbWizard.py:125
  6214. msgid "INCH"
  6215. msgstr "INCH"
  6216. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:5084
  6217. #| msgid "<b>Int/Decimals:</b>"
  6218. msgid "Int/Decimals"
  6219. msgstr "Int/Decimals"
  6220. #: flatcamGUI/FlatCAMGUI.py:4434
  6221. msgid ""
  6222. "The number of digits in the whole part of the number\n"
  6223. "and in the fractional part of the number."
  6224. msgstr ""
  6225. "The number of digits in the whole part of the number\n"
  6226. "and in the fractional part of the number."
  6227. #: flatcamGUI/FlatCAMGUI.py:4445
  6228. msgid ""
  6229. "This numbers signify the number of digits in\n"
  6230. "the whole part of Gerber coordinates."
  6231. msgstr ""
  6232. "This numbers signify the number of digits in\n"
  6233. "the whole part of Gerber coordinates."
  6234. #: flatcamGUI/FlatCAMGUI.py:4459
  6235. msgid ""
  6236. "This numbers signify the number of digits in\n"
  6237. "the decimal part of Gerber coordinates."
  6238. msgstr ""
  6239. "This numbers signify the number of digits in\n"
  6240. "the decimal part of Gerber coordinates."
  6241. #: flatcamGUI/FlatCAMGUI.py:4468 flatcamGUI/FlatCAMGUI.py:5145
  6242. msgid "<b>Zeros</b>:"
  6243. msgstr "<b>Zeros</b>:"
  6244. #: flatcamGUI/FlatCAMGUI.py:4471 flatcamGUI/FlatCAMGUI.py:4481
  6245. msgid ""
  6246. "This sets the type of Gerber zeros.\n"
  6247. "If LZ then Leading Zeros are removed and\n"
  6248. "Trailing Zeros are kept.\n"
  6249. "If TZ is checked then Trailing Zeros are removed\n"
  6250. "and Leading Zeros are kept."
  6251. msgstr ""
  6252. "This sets the type of Gerber zeros.\n"
  6253. "If LZ then Leading Zeros are removed and\n"
  6254. "Trailing Zeros are kept.\n"
  6255. "If TZ is checked then Trailing Zeros are removed\n"
  6256. "and Leading Zeros are kept."
  6257. #: flatcamGUI/FlatCAMGUI.py:4478 flatcamGUI/FlatCAMGUI.py:4660
  6258. #: flatcamGUI/FlatCAMGUI.py:5155 flatcamTools/ToolPcbWizard.py:111
  6259. msgid "LZ"
  6260. msgstr "LZ"
  6261. #: flatcamGUI/FlatCAMGUI.py:4479 flatcamGUI/FlatCAMGUI.py:4661
  6262. #: flatcamGUI/FlatCAMGUI.py:5156 flatcamTools/ToolPcbWizard.py:112
  6263. msgid "TZ"
  6264. msgstr "TZ"
  6265. #: flatcamGUI/FlatCAMGUI.py:4501 flatcamGUI/FlatCAMGUI.py:5209
  6266. #: flatcamGUI/FlatCAMGUI.py:5799 flatcamGUI/FlatCAMGUI.py:6052
  6267. #: flatcamGUI/FlatCAMGUI.py:6091 flatcamGUI/FlatCAMGUI.py:6256
  6268. #: flatcamGUI/FlatCAMGUI.py:6350 flatcamGUI/FlatCAMGUI.py:6518
  6269. #: flatcamGUI/FlatCAMGUI.py:6579 flatcamGUI/FlatCAMGUI.py:6778
  6270. #: flatcamGUI/FlatCAMGUI.py:6905 flatcamGUI/FlatCAMGUI.py:7078
  6271. #: flatcamGUI/ObjectUI.py:1582 flatcamTools/ToolNonCopperClear.py:176
  6272. msgid "Parameters"
  6273. msgstr "Parameters"
  6274. #: flatcamGUI/FlatCAMGUI.py:4503
  6275. msgid "A list of Gerber Editor parameters."
  6276. msgstr "A list of Gerber Editor parameters."
  6277. #: flatcamGUI/FlatCAMGUI.py:4511 flatcamGUI/FlatCAMGUI.py:5219
  6278. #: flatcamGUI/FlatCAMGUI.py:5809
  6279. msgid "Selection limit:"
  6280. msgstr "Selection limit:"
  6281. #: flatcamGUI/FlatCAMGUI.py:4513
  6282. msgid ""
  6283. "Set the number of selected Gerber geometry\n"
  6284. "items above which the utility geometry\n"
  6285. "becomes just a selection rectangle.\n"
  6286. "Increases the performance when moving a\n"
  6287. "large number of geometric elements."
  6288. msgstr ""
  6289. "Set the number of selected Gerber geometry\n"
  6290. "items above which the utility geometry\n"
  6291. "becomes just a selection rectangle.\n"
  6292. "Increases the performance when moving a\n"
  6293. "large number of geometric elements."
  6294. #: flatcamGUI/FlatCAMGUI.py:4533
  6295. msgid "Excellon General"
  6296. msgstr "Excellon General"
  6297. #: flatcamGUI/FlatCAMGUI.py:4555
  6298. #| msgid "Excellon Export"
  6299. msgid "Excellon Format"
  6300. msgstr "Excellon Format"
  6301. #: flatcamGUI/FlatCAMGUI.py:4557
  6302. msgid ""
  6303. "The NC drill files, usually named Excellon files\n"
  6304. "are files that can be found in different formats.\n"
  6305. "Here we set the format used when the provided\n"
  6306. "coordinates are not using period.\n"
  6307. "\n"
  6308. "Possible presets:\n"
  6309. "\n"
  6310. "PROTEUS 3:3 MM LZ\n"
  6311. "DipTrace 5:2 MM TZ\n"
  6312. "DipTrace 4:3 MM LZ\n"
  6313. "\n"
  6314. "EAGLE 3:3 MM TZ\n"
  6315. "EAGLE 4:3 MM TZ\n"
  6316. "EAGLE 2:5 INCH TZ\n"
  6317. "EAGLE 3:5 INCH TZ\n"
  6318. "\n"
  6319. "ALTIUM 2:4 INCH LZ\n"
  6320. "Sprint Layout 2:4 INCH LZ\n"
  6321. "KiCAD 3:5 INCH TZ"
  6322. msgstr ""
  6323. "The NC drill files, usually named Excellon files\n"
  6324. "are files that can be found in different formats.\n"
  6325. "Here we set the format used when the provided\n"
  6326. "coordinates are not using period.\n"
  6327. "\n"
  6328. "Possible presets:\n"
  6329. "\n"
  6330. "PROTEUS 3:3 MM LZ\n"
  6331. "DipTrace 5:2 MM TZ\n"
  6332. "DipTrace 4:3 MM LZ\n"
  6333. "\n"
  6334. "EAGLE 3:3 MM TZ\n"
  6335. "EAGLE 4:3 MM TZ\n"
  6336. "EAGLE 2:5 INCH TZ\n"
  6337. "EAGLE 3:5 INCH TZ\n"
  6338. "\n"
  6339. "ALTIUM 2:4 INCH LZ\n"
  6340. "Sprint Layout 2:4 INCH LZ\n"
  6341. "KiCAD 3:5 INCH TZ"
  6342. #: flatcamGUI/FlatCAMGUI.py:4582
  6343. msgid "INCH:"
  6344. msgstr "INCH:"
  6345. #: flatcamGUI/FlatCAMGUI.py:4585
  6346. msgid "Default values for INCH are 2:4"
  6347. msgstr "Default values for INCH are 2:4"
  6348. #: flatcamGUI/FlatCAMGUI.py:4593 flatcamGUI/FlatCAMGUI.py:4626
  6349. #: flatcamGUI/FlatCAMGUI.py:5099
  6350. msgid ""
  6351. "This numbers signify the number of digits in\n"
  6352. "the whole part of Excellon coordinates."
  6353. msgstr ""
  6354. "This numbers signify the number of digits in\n"
  6355. "the whole part of Excellon coordinates."
  6356. #: flatcamGUI/FlatCAMGUI.py:4607 flatcamGUI/FlatCAMGUI.py:4640
  6357. #: flatcamGUI/FlatCAMGUI.py:5113
  6358. msgid ""
  6359. "This numbers signify the number of digits in\n"
  6360. "the decimal part of Excellon coordinates."
  6361. msgstr ""
  6362. "This numbers signify the number of digits in\n"
  6363. "the decimal part of Excellon coordinates."
  6364. #: flatcamGUI/FlatCAMGUI.py:4615
  6365. msgid "METRIC:"
  6366. msgstr "METRIC:"
  6367. #: flatcamGUI/FlatCAMGUI.py:4618
  6368. msgid "Default values for METRIC are 3:3"
  6369. msgstr "Default values for METRIC are 3:3"
  6370. #: flatcamGUI/FlatCAMGUI.py:4649
  6371. msgid "Default <b>Zeros</b>:"
  6372. msgstr "Default <b>Zeros</b>:"
  6373. #: flatcamGUI/FlatCAMGUI.py:4652 flatcamGUI/FlatCAMGUI.py:5148
  6374. msgid ""
  6375. "This sets the type of Excellon zeros.\n"
  6376. "If LZ then Leading Zeros are kept and\n"
  6377. "Trailing Zeros are removed.\n"
  6378. "If TZ is checked then Trailing Zeros are kept\n"
  6379. "and Leading Zeros are removed."
  6380. msgstr ""
  6381. "This sets the type of Excellon zeros.\n"
  6382. "If LZ then Leading Zeros are kept and\n"
  6383. "Trailing Zeros are removed.\n"
  6384. "If TZ is checked then Trailing Zeros are kept\n"
  6385. "and Leading Zeros are removed."
  6386. #: flatcamGUI/FlatCAMGUI.py:4663
  6387. msgid ""
  6388. "This sets the default type of Excellon zeros.\n"
  6389. "If it is not detected in the parsed file the value here\n"
  6390. "will be used.If LZ then Leading Zeros are kept and\n"
  6391. "Trailing Zeros are removed.\n"
  6392. "If TZ is checked then Trailing Zeros are kept\n"
  6393. "and Leading Zeros are removed."
  6394. msgstr ""
  6395. "This sets the default type of Excellon zeros.\n"
  6396. "If it is not detected in the parsed file the value here\n"
  6397. "will be used.If LZ then Leading Zeros are kept and\n"
  6398. "Trailing Zeros are removed.\n"
  6399. "If TZ is checked then Trailing Zeros are kept\n"
  6400. "and Leading Zeros are removed."
  6401. #: flatcamGUI/FlatCAMGUI.py:4673
  6402. msgid "Default <b>Units</b>:"
  6403. msgstr "Default <b>Units</b>:"
  6404. #: flatcamGUI/FlatCAMGUI.py:4676
  6405. msgid ""
  6406. "This sets the default units of Excellon files.\n"
  6407. "If it is not detected in the parsed file the value here\n"
  6408. "will be used.Some Excellon files don't have an header\n"
  6409. "therefore this parameter will be used."
  6410. msgstr ""
  6411. "This sets the default units of Excellon files.\n"
  6412. "If it is not detected in the parsed file the value here\n"
  6413. "will be used.Some Excellon files don't have an header\n"
  6414. "therefore this parameter will be used."
  6415. #: flatcamGUI/FlatCAMGUI.py:4687
  6416. msgid ""
  6417. "This sets the units of Excellon files.\n"
  6418. "Some Excellon files don't have an header\n"
  6419. "therefore this parameter will be used."
  6420. msgstr ""
  6421. "This sets the units of Excellon files.\n"
  6422. "Some Excellon files don't have an header\n"
  6423. "therefore this parameter will be used."
  6424. #: flatcamGUI/FlatCAMGUI.py:4695
  6425. #| msgid "<b>Excellon Optimization:</b>"
  6426. msgid "Excellon Optimization"
  6427. msgstr "Excellon Optimization"
  6428. #: flatcamGUI/FlatCAMGUI.py:4698
  6429. msgid "Algorithm: "
  6430. msgstr "Algorithm: "
  6431. #: flatcamGUI/FlatCAMGUI.py:4700 flatcamGUI/FlatCAMGUI.py:4714
  6432. msgid ""
  6433. "This sets the optimization type for the Excellon drill path.\n"
  6434. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6435. "Guided Local Path is used. Default search time is 3sec.\n"
  6436. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6437. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6438. "\n"
  6439. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6440. "Travelling Salesman algorithm for path optimization."
  6441. msgstr ""
  6442. "This sets the optimization type for the Excellon drill path.\n"
  6443. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6444. "Guided Local Path is used. Default search time is 3sec.\n"
  6445. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6446. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6447. "\n"
  6448. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6449. "Travelling Salesman algorithm for path optimization."
  6450. #: flatcamGUI/FlatCAMGUI.py:4711
  6451. msgid "MH"
  6452. msgstr "MH"
  6453. #: flatcamGUI/FlatCAMGUI.py:4725
  6454. msgid "Optimization Time: "
  6455. msgstr "Optimization Time: "
  6456. #: flatcamGUI/FlatCAMGUI.py:4728
  6457. msgid ""
  6458. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6459. "maximum threshold for how much time is spent doing the\n"
  6460. "path optimization. This max duration is set here.\n"
  6461. "In seconds."
  6462. msgstr ""
  6463. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6464. "maximum threshold for how much time is spent doing the\n"
  6465. "path optimization. This max duration is set here.\n"
  6466. "In seconds."
  6467. #: flatcamGUI/FlatCAMGUI.py:4771
  6468. msgid "Excellon Options"
  6469. msgstr "Excellon Options"
  6470. #: flatcamGUI/FlatCAMGUI.py:4774 flatcamGUI/ObjectUI.py:582
  6471. msgid "<b>Create CNC Job</b>"
  6472. msgstr "<b>Create CNC Job</b>"
  6473. #: flatcamGUI/FlatCAMGUI.py:4776
  6474. msgid ""
  6475. "Parameters used to create a CNC Job object\n"
  6476. "for this drill object."
  6477. msgstr ""
  6478. "Parameters used to create a CNC Job object\n"
  6479. "for this drill object."
  6480. #: flatcamGUI/FlatCAMGUI.py:4784 flatcamGUI/FlatCAMGUI.py:5525
  6481. #: flatcamGUI/FlatCAMGUI.py:6714 flatcamGUI/ObjectUI.py:593
  6482. #: flatcamGUI/ObjectUI.py:1069 flatcamTools/ToolCalculators.py:106
  6483. msgid "Cut Z:"
  6484. msgstr "Cut Z:"
  6485. #: flatcamGUI/FlatCAMGUI.py:4786 flatcamGUI/ObjectUI.py:595
  6486. msgid ""
  6487. "Drill depth (negative)\n"
  6488. "below the copper surface."
  6489. msgstr ""
  6490. "Drill depth (negative)\n"
  6491. "below the copper surface."
  6492. #: flatcamGUI/FlatCAMGUI.py:4793 flatcamGUI/FlatCAMGUI.py:5558
  6493. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:1105
  6494. msgid "Travel Z:"
  6495. msgstr "Travel Z:"
  6496. #: flatcamGUI/FlatCAMGUI.py:4795 flatcamGUI/ObjectUI.py:605
  6497. msgid ""
  6498. "Tool height when travelling\n"
  6499. "across the XY plane."
  6500. msgstr ""
  6501. "Tool height when travelling\n"
  6502. "across the XY plane."
  6503. #: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/FlatCAMGUI.py:5568
  6504. msgid "Tool change:"
  6505. msgstr "Tool change:"
  6506. #: flatcamGUI/FlatCAMGUI.py:4805 flatcamGUI/FlatCAMGUI.py:5570
  6507. #: flatcamGUI/ObjectUI.py:615
  6508. msgid ""
  6509. "Include tool-change sequence\n"
  6510. "in G-Code (Pause for tool change)."
  6511. msgstr ""
  6512. "Include tool-change sequence\n"
  6513. "in G-Code (Pause for tool change)."
  6514. #: flatcamGUI/FlatCAMGUI.py:4812 flatcamGUI/FlatCAMGUI.py:5578
  6515. msgid "Toolchange Z:"
  6516. msgstr "Toolchange Z:"
  6517. #: flatcamGUI/FlatCAMGUI.py:4814 flatcamGUI/FlatCAMGUI.py:5580
  6518. msgid "Toolchange Z position."
  6519. msgstr "Toolchange Z position."
  6520. #: flatcamGUI/FlatCAMGUI.py:4820
  6521. msgid "Feedrate:"
  6522. msgstr "Feedrate:"
  6523. #: flatcamGUI/FlatCAMGUI.py:4822
  6524. msgid ""
  6525. "Tool speed while drilling\n"
  6526. "(in units per minute)."
  6527. msgstr ""
  6528. "Tool speed while drilling\n"
  6529. "(in units per minute)."
  6530. #: flatcamGUI/FlatCAMGUI.py:4830
  6531. msgid "Spindle Speed:"
  6532. msgstr "Spindle Speed:"
  6533. #: flatcamGUI/FlatCAMGUI.py:4832 flatcamGUI/FlatCAMGUI.py:5610
  6534. #: flatcamGUI/ObjectUI.py:682
  6535. msgid ""
  6536. "Speed of the spindle\n"
  6537. "in RPM (optional)"
  6538. msgstr ""
  6539. "Speed of the spindle\n"
  6540. "in RPM (optional)"
  6541. #: flatcamGUI/FlatCAMGUI.py:4840 flatcamGUI/FlatCAMGUI.py:5618
  6542. msgid "Spindle dir.:"
  6543. msgstr "Spindle dir.:"
  6544. #: flatcamGUI/FlatCAMGUI.py:4842 flatcamGUI/FlatCAMGUI.py:5620
  6545. msgid ""
  6546. "This sets the direction that the spindle is rotating.\n"
  6547. "It can be either:\n"
  6548. "- CW = clockwise or\n"
  6549. "- CCW = counter clockwise"
  6550. msgstr ""
  6551. "This sets the direction that the spindle is rotating.\n"
  6552. "It can be either:\n"
  6553. "- CW = clockwise or\n"
  6554. "- CCW = counter clockwise"
  6555. #: flatcamGUI/FlatCAMGUI.py:4854 flatcamGUI/FlatCAMGUI.py:5632
  6556. #: flatcamGUI/ObjectUI.py:690 flatcamGUI/ObjectUI.py:1231
  6557. msgid "Dwell:"
  6558. msgstr "Dwell:"
  6559. #: flatcamGUI/FlatCAMGUI.py:4856 flatcamGUI/FlatCAMGUI.py:5634
  6560. #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1234
  6561. msgid ""
  6562. "Pause to allow the spindle to reach its\n"
  6563. "speed before cutting."
  6564. msgstr ""
  6565. "Pause to allow the spindle to reach its\n"
  6566. "speed before cutting."
  6567. #: flatcamGUI/FlatCAMGUI.py:4859 flatcamGUI/FlatCAMGUI.py:5637
  6568. msgid "Duration:"
  6569. msgstr "Duration:"
  6570. #: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5639
  6571. #: flatcamGUI/ObjectUI.py:697 flatcamGUI/ObjectUI.py:1241
  6572. msgid "Number of milliseconds for spindle to dwell."
  6573. msgstr "Number of milliseconds for spindle to dwell."
  6574. #: flatcamGUI/FlatCAMGUI.py:4873 flatcamGUI/FlatCAMGUI.py:5649
  6575. #: flatcamGUI/ObjectUI.py:705
  6576. msgid "Postprocessor:"
  6577. msgstr "Postprocessor:"
  6578. #: flatcamGUI/FlatCAMGUI.py:4875
  6579. msgid ""
  6580. "The postprocessor file that dictates\n"
  6581. "gcode output."
  6582. msgstr ""
  6583. "The postprocessor file that dictates\n"
  6584. "gcode output."
  6585. #: flatcamGUI/FlatCAMGUI.py:4884
  6586. msgid "<b>Gcode: </b>"
  6587. msgstr "<b>Gcode: </b>"
  6588. #: flatcamGUI/FlatCAMGUI.py:4886
  6589. msgid ""
  6590. "Choose what to use for GCode generation:\n"
  6591. "'Drills', 'Slots' or 'Both'.\n"
  6592. "When choosing 'Slots' or 'Both', slots will be\n"
  6593. "converted to drills."
  6594. msgstr ""
  6595. "Choose what to use for GCode generation:\n"
  6596. "'Drills', 'Slots' or 'Both'.\n"
  6597. "When choosing 'Slots' or 'Both', slots will be\n"
  6598. "converted to drills."
  6599. #: flatcamGUI/FlatCAMGUI.py:4902 flatcamGUI/ObjectUI.py:770
  6600. msgid "<b>Mill Holes</b>"
  6601. msgstr "<b>Mill Holes</b>"
  6602. #: flatcamGUI/FlatCAMGUI.py:4904 flatcamGUI/ObjectUI.py:772
  6603. msgid "Create Geometry for milling holes."
  6604. msgstr "Create Geometry for milling holes."
  6605. #: flatcamGUI/FlatCAMGUI.py:4908
  6606. msgid "Drill Tool dia:"
  6607. msgstr "Drill Tool dia:"
  6608. #: flatcamGUI/FlatCAMGUI.py:4915
  6609. msgid "Slot Tool dia:"
  6610. msgstr "Slot Tool dia:"
  6611. #: flatcamGUI/FlatCAMGUI.py:4917
  6612. msgid ""
  6613. "Diameter of the cutting tool\n"
  6614. "when milling slots."
  6615. msgstr ""
  6616. "Diameter of the cutting tool\n"
  6617. "when milling slots."
  6618. #: flatcamGUI/FlatCAMGUI.py:4929
  6619. msgid "Defaults"
  6620. msgstr "Defaults"
  6621. #: flatcamGUI/FlatCAMGUI.py:4942
  6622. msgid "Excellon Adv. Options"
  6623. msgstr "Excellon Adv. Options"
  6624. #: flatcamGUI/FlatCAMGUI.py:4948 flatcamGUI/FlatCAMGUI.py:5672
  6625. msgid "<b>Advanced Options:</b>"
  6626. msgstr "<b>Advanced Options:</b>"
  6627. #: flatcamGUI/FlatCAMGUI.py:4950
  6628. msgid ""
  6629. "Parameters used to create a CNC Job object\n"
  6630. "for this drill object that are shown when App Level is Advanced."
  6631. msgstr ""
  6632. "Parameters used to create a CNC Job object\n"
  6633. "for this drill object that are shown when App Level is Advanced."
  6634. #: flatcamGUI/FlatCAMGUI.py:4958
  6635. msgid "Offset Z:"
  6636. msgstr "Offset Z:"
  6637. #: flatcamGUI/FlatCAMGUI.py:4960 flatcamGUI/ObjectUI.py:572
  6638. msgid ""
  6639. "Some drill bits (the larger ones) need to drill deeper\n"
  6640. "to create the desired exit hole diameter due of the tip shape.\n"
  6641. "The value here can compensate the Cut Z parameter."
  6642. msgstr ""
  6643. "Some drill bits (the larger ones) need to drill deeper\n"
  6644. "to create the desired exit hole diameter due of the tip shape.\n"
  6645. "The value here can compensate the Cut Z parameter."
  6646. #: flatcamGUI/FlatCAMGUI.py:4967 flatcamGUI/FlatCAMGUI.py:5683
  6647. msgid "Toolchange X,Y:"
  6648. msgstr "Toolchange X,Y:"
  6649. #: flatcamGUI/FlatCAMGUI.py:4969 flatcamGUI/FlatCAMGUI.py:5685
  6650. msgid "Toolchange X,Y position."
  6651. msgstr "Toolchange X,Y position."
  6652. #: flatcamGUI/FlatCAMGUI.py:4975 flatcamGUI/FlatCAMGUI.py:5692
  6653. #: flatcamGUI/ObjectUI.py:632
  6654. msgid "Start move Z:"
  6655. msgstr "Start move Z:"
  6656. #: flatcamGUI/FlatCAMGUI.py:4977
  6657. msgid ""
  6658. "Height of the tool just after start.\n"
  6659. "Delete the value if you don't need this feature."
  6660. msgstr ""
  6661. "Height of the tool just after start.\n"
  6662. "Delete the value if you don't need this feature."
  6663. #: flatcamGUI/FlatCAMGUI.py:4984 flatcamGUI/FlatCAMGUI.py:5702
  6664. #: flatcamGUI/ObjectUI.py:642 flatcamGUI/ObjectUI.py:1151
  6665. msgid "End move Z:"
  6666. msgstr "End move Z:"
  6667. #: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5704
  6668. msgid ""
  6669. "Height of the tool after\n"
  6670. "the last move at the end of the job."
  6671. msgstr ""
  6672. "Height of the tool after\n"
  6673. "the last move at the end of the job."
  6674. #: flatcamGUI/FlatCAMGUI.py:4993 flatcamGUI/FlatCAMGUI.py:5712
  6675. #: flatcamGUI/ObjectUI.py:663
  6676. msgid "Feedrate Rapids:"
  6677. msgstr "Feedrate Rapids:"
  6678. #: flatcamGUI/FlatCAMGUI.py:4995 flatcamGUI/ObjectUI.py:665
  6679. msgid ""
  6680. "Tool speed while drilling\n"
  6681. "(in units per minute).\n"
  6682. "This is for the rapid move G00.\n"
  6683. "It is useful only for Marlin,\n"
  6684. "ignore for any other cases."
  6685. msgstr ""
  6686. "Tool speed while drilling\n"
  6687. "(in units per minute).\n"
  6688. "This is for the rapid move G00.\n"
  6689. "It is useful only for Marlin,\n"
  6690. "ignore for any other cases."
  6691. #: flatcamGUI/FlatCAMGUI.py:5006 flatcamGUI/FlatCAMGUI.py:5736
  6692. #: flatcamGUI/ObjectUI.py:716 flatcamGUI/ObjectUI.py:1263
  6693. msgid "Probe Z depth:"
  6694. msgstr "Probe Z depth:"
  6695. #: flatcamGUI/FlatCAMGUI.py:5008 flatcamGUI/FlatCAMGUI.py:5738
  6696. #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1266
  6697. msgid ""
  6698. "The maximum depth that the probe is allowed\n"
  6699. "to probe. Negative value, in current units."
  6700. msgstr ""
  6701. "The maximum depth that the probe is allowed\n"
  6702. "to probe. Negative value, in current units."
  6703. #: flatcamGUI/FlatCAMGUI.py:5016 flatcamGUI/FlatCAMGUI.py:5746
  6704. #: flatcamGUI/ObjectUI.py:728 flatcamGUI/ObjectUI.py:1277
  6705. msgid "Feedrate Probe:"
  6706. msgstr "Feedrate Probe:"
  6707. #: flatcamGUI/FlatCAMGUI.py:5018 flatcamGUI/FlatCAMGUI.py:5748
  6708. #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1280
  6709. msgid "The feedrate used while the probe is probing."
  6710. msgstr "The feedrate used while the probe is probing."
  6711. #: flatcamGUI/FlatCAMGUI.py:5024 flatcamGUI/FlatCAMGUI.py:5755
  6712. msgid "Fast Plunge:"
  6713. msgstr "Fast Plunge:"
  6714. #: flatcamGUI/FlatCAMGUI.py:5026 flatcamGUI/FlatCAMGUI.py:5757
  6715. msgid ""
  6716. "By checking this, the vertical move from\n"
  6717. "Z_Toolchange to Z_move is done with G0,\n"
  6718. "meaning the fastest speed available.\n"
  6719. "WARNING: the move is done at Toolchange X,Y coords."
  6720. msgstr ""
  6721. "By checking this, the vertical move from\n"
  6722. "Z_Toolchange to Z_move is done with G0,\n"
  6723. "meaning the fastest speed available.\n"
  6724. "WARNING: the move is done at Toolchange X,Y coords."
  6725. #: flatcamGUI/FlatCAMGUI.py:5035
  6726. msgid "Fast Retract:"
  6727. msgstr "Fast Retract:"
  6728. #: flatcamGUI/FlatCAMGUI.py:5037
  6729. msgid ""
  6730. "Exit hole strategy.\n"
  6731. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6732. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6733. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6734. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6735. "(travel height) is done as fast as possible (G0) in one move."
  6736. msgstr ""
  6737. "Exit hole strategy.\n"
  6738. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6739. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6740. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6741. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6742. "(travel height) is done as fast as possible (G0) in one move."
  6743. #: flatcamGUI/FlatCAMGUI.py:5056
  6744. msgid "Excellon Export"
  6745. msgstr "Excellon Export"
  6746. #: flatcamGUI/FlatCAMGUI.py:5061
  6747. msgid ""
  6748. "The parameters set here are used in the file exported\n"
  6749. "when using the File -> Export -> Export Excellon menu entry."
  6750. msgstr ""
  6751. "The parameters set here are used in the file exported\n"
  6752. "when using the File -> Export -> Export Excellon menu entry."
  6753. #: flatcamGUI/FlatCAMGUI.py:5072 flatcamGUI/FlatCAMGUI.py:5078
  6754. msgid "The units used in the Excellon file."
  6755. msgstr "The units used in the Excellon file."
  6756. #: flatcamGUI/FlatCAMGUI.py:5086
  6757. msgid ""
  6758. "The NC drill files, usually named Excellon files\n"
  6759. "are files that can be found in different formats.\n"
  6760. "Here we set the format used when the provided\n"
  6761. "coordinates are not using period."
  6762. msgstr ""
  6763. "The NC drill files, usually named Excellon files\n"
  6764. "are files that can be found in different formats.\n"
  6765. "Here we set the format used when the provided\n"
  6766. "coordinates are not using period."
  6767. #: flatcamGUI/FlatCAMGUI.py:5122
  6768. #| msgid "<b>Format:</b>"
  6769. msgid "Format"
  6770. msgstr "Format"
  6771. #: flatcamGUI/FlatCAMGUI.py:5124 flatcamGUI/FlatCAMGUI.py:5134
  6772. msgid ""
  6773. "Select the kind of coordinates format used.\n"
  6774. "Coordinates can be saved with decimal point or without.\n"
  6775. "When there is no decimal point, it is required to specify\n"
  6776. "the number of digits for integer part and the number of decimals.\n"
  6777. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6778. "or TZ = trailing zeros are kept."
  6779. msgstr ""
  6780. "Select the kind of coordinates format used.\n"
  6781. "Coordinates can be saved with decimal point or without.\n"
  6782. "When there is no decimal point, it is required to specify\n"
  6783. "the number of digits for integer part and the number of decimals.\n"
  6784. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6785. "or TZ = trailing zeros are kept."
  6786. #: flatcamGUI/FlatCAMGUI.py:5131
  6787. msgid "Decimal"
  6788. msgstr "Decimal"
  6789. #: flatcamGUI/FlatCAMGUI.py:5132
  6790. msgid "No-Decimal"
  6791. msgstr "No-Decimal"
  6792. #: flatcamGUI/FlatCAMGUI.py:5158
  6793. msgid ""
  6794. "This sets the default type of Excellon zeros.\n"
  6795. "If LZ then Leading Zeros are kept and\n"
  6796. "Trailing Zeros are removed.\n"
  6797. "If TZ is checked then Trailing Zeros are kept\n"
  6798. "and Leading Zeros are removed."
  6799. msgstr ""
  6800. "This sets the default type of Excellon zeros.\n"
  6801. "If LZ then Leading Zeros are kept and\n"
  6802. "Trailing Zeros are removed.\n"
  6803. "If TZ is checked then Trailing Zeros are kept\n"
  6804. "and Leading Zeros are removed."
  6805. #: flatcamGUI/FlatCAMGUI.py:5168
  6806. msgid "<b>Slot type</b>:"
  6807. msgstr "<b>Slot type</b>:"
  6808. #: flatcamGUI/FlatCAMGUI.py:5171 flatcamGUI/FlatCAMGUI.py:5181
  6809. msgid ""
  6810. "This sets how the slots will be exported.\n"
  6811. "If ROUTED then the slots will be routed\n"
  6812. "using M15/M16 commands.\n"
  6813. "If DRILLED(G85) the slots will be exported\n"
  6814. "using the Drilled slot command (G85)."
  6815. msgstr ""
  6816. "This sets how the slots will be exported.\n"
  6817. "If ROUTED then the slots will be routed\n"
  6818. "using M15/M16 commands.\n"
  6819. "If DRILLED(G85) the slots will be exported\n"
  6820. "using the Drilled slot command (G85)."
  6821. #: flatcamGUI/FlatCAMGUI.py:5178
  6822. msgid "Routed"
  6823. msgstr "Routed"
  6824. #: flatcamGUI/FlatCAMGUI.py:5179
  6825. msgid "Drilled(G85)"
  6826. msgstr "Drilled(G85)"
  6827. #: flatcamGUI/FlatCAMGUI.py:5211
  6828. msgid "A list of Excellon Editor parameters."
  6829. msgstr "A list of Excellon Editor parameters."
  6830. #: flatcamGUI/FlatCAMGUI.py:5221
  6831. msgid ""
  6832. "Set the number of selected Excellon geometry\n"
  6833. "items above which the utility geometry\n"
  6834. "becomes just a selection rectangle.\n"
  6835. "Increases the performance when moving a\n"
  6836. "large number of geometric elements."
  6837. msgstr ""
  6838. "Set the number of selected Excellon geometry\n"
  6839. "items above which the utility geometry\n"
  6840. "becomes just a selection rectangle.\n"
  6841. "Increases the performance when moving a\n"
  6842. "large number of geometric elements."
  6843. #: flatcamGUI/FlatCAMGUI.py:5233
  6844. msgid "New Tool Dia:"
  6845. msgstr "New Tool Dia:"
  6846. #: flatcamGUI/FlatCAMGUI.py:5256
  6847. msgid "<b>Linear Drill Array:</b>"
  6848. msgstr "<b>Linear Drill Array:</b>"
  6849. #: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/FlatCAMGUI.py:5391
  6850. msgid "Linear Dir.:"
  6851. msgstr "Linear Dir.:"
  6852. #: flatcamGUI/FlatCAMGUI.py:5296
  6853. msgid "<b>Circular Drill Array:</b>"
  6854. msgstr "<b>Circular Drill Array:</b>"
  6855. #: flatcamGUI/FlatCAMGUI.py:5300 flatcamGUI/FlatCAMGUI.py:5431
  6856. msgid "Circular Dir.:"
  6857. msgstr "Circular Dir.:"
  6858. #: flatcamGUI/FlatCAMGUI.py:5302 flatcamGUI/FlatCAMGUI.py:5433
  6859. msgid ""
  6860. "Direction for circular array.\n"
  6861. "Can be CW = clockwise or CCW = counter clockwise."
  6862. msgstr ""
  6863. "Direction for circular array.\n"
  6864. "Can be CW = clockwise or CCW = counter clockwise."
  6865. #: flatcamGUI/FlatCAMGUI.py:5313 flatcamGUI/FlatCAMGUI.py:5444
  6866. msgid "Circ. Angle:"
  6867. msgstr "Circ. Angle:"
  6868. #: flatcamGUI/FlatCAMGUI.py:5324
  6869. msgid "<b>Slots:</b>"
  6870. msgstr "<b>Slots:</b>"
  6871. #: flatcamGUI/FlatCAMGUI.py:5375
  6872. msgid "<b>Linear Slot Array:</b>"
  6873. msgstr "<b>Linear Slot Array:</b>"
  6874. #: flatcamGUI/FlatCAMGUI.py:5427
  6875. msgid "<b>Circular Slot Array:</b>"
  6876. msgstr "<b>Circular Slot Array:</b>"
  6877. #: flatcamGUI/FlatCAMGUI.py:5461
  6878. msgid "Geometry General"
  6879. msgstr "Geometry General"
  6880. #: flatcamGUI/FlatCAMGUI.py:5480
  6881. msgid ""
  6882. "The number of circle steps for <b>Geometry</b> \n"
  6883. "circle and arc shapes linear approximation."
  6884. msgstr ""
  6885. "The number of circle steps for <b>Geometry</b> \n"
  6886. "circle and arc shapes linear approximation."
  6887. #: flatcamGUI/FlatCAMGUI.py:5494 flatcamGUI/FlatCAMGUI.py:6103
  6888. msgid "Diameters of the cutting tools, separated by ','"
  6889. msgstr "Diameters of the cutting tools, separated by ','"
  6890. #: flatcamGUI/FlatCAMGUI.py:5508
  6891. msgid "Geometry Options"
  6892. msgstr "Geometry Options"
  6893. #: flatcamGUI/FlatCAMGUI.py:5513
  6894. msgid "<b>Create CNC Job:</b>"
  6895. msgstr "<b>Create CNC Job:</b>"
  6896. #: flatcamGUI/FlatCAMGUI.py:5515
  6897. msgid ""
  6898. "Create a CNC Job object\n"
  6899. "tracing the contours of this\n"
  6900. "Geometry object."
  6901. msgstr ""
  6902. "Create a CNC Job object\n"
  6903. "tracing the contours of this\n"
  6904. "Geometry object."
  6905. #: flatcamGUI/FlatCAMGUI.py:5527 flatcamGUI/ObjectUI.py:1072
  6906. msgid ""
  6907. "Cutting depth (negative)\n"
  6908. "below the copper surface."
  6909. msgstr ""
  6910. "Cutting depth (negative)\n"
  6911. "below the copper surface."
  6912. #: flatcamGUI/FlatCAMGUI.py:5535
  6913. msgid "Multidepth"
  6914. msgstr "Multidepth"
  6915. #: flatcamGUI/FlatCAMGUI.py:5537
  6916. msgid "Multidepth usage: True or False."
  6917. msgstr "Multidepth usage: True or False."
  6918. #: flatcamGUI/FlatCAMGUI.py:5542
  6919. msgid "Depth/Pass:"
  6920. msgstr "Depth/Pass:"
  6921. #: flatcamGUI/FlatCAMGUI.py:5544
  6922. msgid ""
  6923. "The depth to cut on each pass,\n"
  6924. "when multidepth is enabled.\n"
  6925. "It has positive value although\n"
  6926. "it is a fraction from the depth\n"
  6927. "which has negative value."
  6928. msgstr ""
  6929. "The depth to cut on each pass,\n"
  6930. "when multidepth is enabled.\n"
  6931. "It has positive value although\n"
  6932. "it is a fraction from the depth\n"
  6933. "which has negative value."
  6934. #: flatcamGUI/FlatCAMGUI.py:5560 flatcamGUI/ObjectUI.py:1108
  6935. msgid ""
  6936. "Height of the tool when\n"
  6937. "moving without cutting."
  6938. msgstr ""
  6939. "Height of the tool when\n"
  6940. "moving without cutting."
  6941. #: flatcamGUI/FlatCAMGUI.py:5587 flatcamGUI/ObjectUI.py:1163
  6942. msgid "Feed Rate X-Y:"
  6943. msgstr "Feed Rate X-Y:"
  6944. #: flatcamGUI/FlatCAMGUI.py:5589 flatcamGUI/ObjectUI.py:1166
  6945. msgid ""
  6946. "Cutting speed in the XY\n"
  6947. "plane in units per minute"
  6948. msgstr ""
  6949. "Cutting speed in the XY\n"
  6950. "plane in units per minute"
  6951. #: flatcamGUI/FlatCAMGUI.py:5597
  6952. msgid "Feed Rate Z:"
  6953. msgstr "Feed Rate Z:"
  6954. #: flatcamGUI/FlatCAMGUI.py:5599
  6955. msgid ""
  6956. "Cutting speed in the XY\n"
  6957. "plane in units per minute.\n"
  6958. "It is called also Plunge."
  6959. msgstr ""
  6960. "Cutting speed in the XY\n"
  6961. "plane in units per minute.\n"
  6962. "It is called also Plunge."
  6963. #: flatcamGUI/FlatCAMGUI.py:5608 flatcamGUI/ObjectUI.py:680
  6964. #: flatcamGUI/ObjectUI.py:1218
  6965. msgid "Spindle speed:"
  6966. msgstr "Spindle speed:"
  6967. #: flatcamGUI/FlatCAMGUI.py:5651
  6968. msgid ""
  6969. "The postprocessor file that dictates\n"
  6970. "Machine Code output."
  6971. msgstr ""
  6972. "The postprocessor file that dictates\n"
  6973. "Machine Code output."
  6974. #: flatcamGUI/FlatCAMGUI.py:5667
  6975. msgid "Geometry Adv. Options"
  6976. msgstr "Geometry Adv. Options"
  6977. #: flatcamGUI/FlatCAMGUI.py:5674
  6978. msgid ""
  6979. "Parameters to create a CNC Job object\n"
  6980. "tracing the contours of a Geometry object."
  6981. msgstr ""
  6982. "Parameters to create a CNC Job object\n"
  6983. "tracing the contours of a Geometry object."
  6984. #: flatcamGUI/FlatCAMGUI.py:5694
  6985. msgid ""
  6986. "Height of the tool just after starting the work.\n"
  6987. "Delete the value if you don't need this feature."
  6988. msgstr ""
  6989. "Height of the tool just after starting the work.\n"
  6990. "Delete the value if you don't need this feature."
  6991. #: flatcamGUI/FlatCAMGUI.py:5714
  6992. msgid ""
  6993. "Cutting speed in the XY plane\n"
  6994. "(in units per minute).\n"
  6995. "This is for the rapid move G00.\n"
  6996. "It is useful only for Marlin,\n"
  6997. "ignore for any other cases."
  6998. msgstr ""
  6999. "Cutting speed in the XY plane\n"
  7000. "(in units per minute).\n"
  7001. "This is for the rapid move G00.\n"
  7002. "It is useful only for Marlin,\n"
  7003. "ignore for any other cases."
  7004. #: flatcamGUI/FlatCAMGUI.py:5726
  7005. msgid "Re-cut 1st pt."
  7006. msgstr "Re-cut 1st pt."
  7007. #: flatcamGUI/FlatCAMGUI.py:5728 flatcamGUI/ObjectUI.py:1209
  7008. msgid ""
  7009. "In order to remove possible\n"
  7010. "copper leftovers where first cut\n"
  7011. "meet with last cut, we generate an\n"
  7012. "extended cut over the first cut section."
  7013. msgstr ""
  7014. "In order to remove possible\n"
  7015. "copper leftovers where first cut\n"
  7016. "meet with last cut, we generate an\n"
  7017. "extended cut over the first cut section."
  7018. #: flatcamGUI/FlatCAMGUI.py:5767
  7019. msgid "Seg. X size:"
  7020. msgstr "Seg. X size:"
  7021. #: flatcamGUI/FlatCAMGUI.py:5769
  7022. msgid ""
  7023. "The size of the trace segment on the X axis.\n"
  7024. "Useful for auto-leveling.\n"
  7025. "A value of 0 means no segmentation on the X axis."
  7026. msgstr ""
  7027. "The size of the trace segment on the X axis.\n"
  7028. "Useful for auto-leveling.\n"
  7029. "A value of 0 means no segmentation on the X axis."
  7030. #: flatcamGUI/FlatCAMGUI.py:5778
  7031. msgid "Seg. Y size:"
  7032. msgstr "Seg. Y size:"
  7033. #: flatcamGUI/FlatCAMGUI.py:5780
  7034. msgid ""
  7035. "The size of the trace segment on the Y axis.\n"
  7036. "Useful for auto-leveling.\n"
  7037. "A value of 0 means no segmentation on the Y axis."
  7038. msgstr ""
  7039. "The size of the trace segment on the Y axis.\n"
  7040. "Useful for auto-leveling.\n"
  7041. "A value of 0 means no segmentation on the Y axis."
  7042. #: flatcamGUI/FlatCAMGUI.py:5796
  7043. msgid "Geometry Editor"
  7044. msgstr "Geometry Editor"
  7045. #: flatcamGUI/FlatCAMGUI.py:5801
  7046. msgid "A list of Geometry Editor parameters."
  7047. msgstr "A list of Geometry Editor parameters."
  7048. #: flatcamGUI/FlatCAMGUI.py:5811
  7049. msgid ""
  7050. "Set the number of selected geometry\n"
  7051. "items above which the utility geometry\n"
  7052. "becomes just a selection rectangle.\n"
  7053. "Increases the performance when moving a\n"
  7054. "large number of geometric elements."
  7055. msgstr ""
  7056. "Set the number of selected geometry\n"
  7057. "items above which the utility geometry\n"
  7058. "becomes just a selection rectangle.\n"
  7059. "Increases the performance when moving a\n"
  7060. "large number of geometric elements."
  7061. #: flatcamGUI/FlatCAMGUI.py:5830
  7062. msgid "CNC Job General"
  7063. msgstr "CNC Job General"
  7064. #: flatcamGUI/FlatCAMGUI.py:5843 flatcamGUI/ObjectUI.py:542
  7065. #: flatcamGUI/ObjectUI.py:875 flatcamGUI/ObjectUI.py:1465
  7066. msgid "Plot Object"
  7067. msgstr "Plot Object"
  7068. #: flatcamGUI/FlatCAMGUI.py:5850
  7069. msgid "Plot kind:"
  7070. msgstr "Plot kind:"
  7071. #: flatcamGUI/FlatCAMGUI.py:5852 flatcamGUI/ObjectUI.py:1362
  7072. msgid ""
  7073. "This selects the kind of geometries on the canvas to plot.\n"
  7074. "Those can be either of type 'Travel' which means the moves\n"
  7075. "above the work piece or it can be of type 'Cut',\n"
  7076. "which means the moves that cut into the material."
  7077. msgstr ""
  7078. "This selects the kind of geometries on the canvas to plot.\n"
  7079. "Those can be either of type 'Travel' which means the moves\n"
  7080. "above the work piece or it can be of type 'Cut',\n"
  7081. "which means the moves that cut into the material."
  7082. #: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1371
  7083. msgid "Travel"
  7084. msgstr "Travel"
  7085. #: flatcamGUI/FlatCAMGUI.py:5869
  7086. msgid "Display Annotation:"
  7087. msgstr "Display Annotation:"
  7088. #: flatcamGUI/FlatCAMGUI.py:5871 flatcamGUI/ObjectUI.py:1377
  7089. msgid ""
  7090. "This selects if to display text annotation on the plot.\n"
  7091. "When checked it will display numbers in order for each end\n"
  7092. "of a travel line."
  7093. msgstr ""
  7094. "This selects if to display text annotation on the plot.\n"
  7095. "When checked it will display numbers in order for each end\n"
  7096. "of a travel line."
  7097. #: flatcamGUI/FlatCAMGUI.py:5883
  7098. msgid "Annotation Size:"
  7099. msgstr "Annotation Size:"
  7100. #: flatcamGUI/FlatCAMGUI.py:5885
  7101. msgid "The font size of the annotation text. In pixels."
  7102. msgstr "The font size of the annotation text. In pixels."
  7103. #: flatcamGUI/FlatCAMGUI.py:5893
  7104. msgid "Annotation Color:"
  7105. msgstr "Annotation Color:"
  7106. #: flatcamGUI/FlatCAMGUI.py:5895
  7107. msgid "Set the font color for the annotation texts."
  7108. msgstr "Set the font color for the annotation texts."
  7109. #: flatcamGUI/FlatCAMGUI.py:5918
  7110. msgid ""
  7111. "The number of circle steps for <b>GCode</b> \n"
  7112. "circle and arc shapes linear approximation."
  7113. msgstr ""
  7114. "The number of circle steps for <b>GCode</b> \n"
  7115. "circle and arc shapes linear approximation."
  7116. #: flatcamGUI/FlatCAMGUI.py:5928
  7117. msgid ""
  7118. "Diameter of the tool to be\n"
  7119. "rendered in the plot."
  7120. msgstr ""
  7121. "Diameter of the tool to be\n"
  7122. "rendered in the plot."
  7123. #: flatcamGUI/FlatCAMGUI.py:5936
  7124. msgid "Coords dec.:"
  7125. msgstr "Coords dec.:"
  7126. #: flatcamGUI/FlatCAMGUI.py:5938
  7127. msgid ""
  7128. "The number of decimals to be used for \n"
  7129. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  7130. msgstr ""
  7131. "The number of decimals to be used for \n"
  7132. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  7133. #: flatcamGUI/FlatCAMGUI.py:5946
  7134. msgid "Feedrate dec.:"
  7135. msgstr "Feedrate dec.:"
  7136. #: flatcamGUI/FlatCAMGUI.py:5948
  7137. msgid ""
  7138. "The number of decimals to be used for \n"
  7139. "the Feedrate parameter in CNC code (GCODE, etc.)"
  7140. msgstr ""
  7141. "The number of decimals to be used for \n"
  7142. "the Feedrate parameter in CNC code (GCODE, etc.)"
  7143. #: flatcamGUI/FlatCAMGUI.py:5963
  7144. msgid "CNC Job Options"
  7145. msgstr "CNC Job Options"
  7146. #: flatcamGUI/FlatCAMGUI.py:5966 flatcamGUI/FlatCAMGUI.py:6007
  7147. #| msgid "Export G-Code ..."
  7148. msgid "Export G-Code"
  7149. msgstr "Export G-Code"
  7150. #: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/FlatCAMGUI.py:6009
  7151. #: flatcamGUI/ObjectUI.py:1501
  7152. msgid ""
  7153. "Export and save G-Code to\n"
  7154. "make this object to a file."
  7155. msgstr ""
  7156. "Export and save G-Code to\n"
  7157. "make this object to a file."
  7158. #: flatcamGUI/FlatCAMGUI.py:5974
  7159. msgid "Prepend to G-Code:"
  7160. msgstr "Prepend to G-Code:"
  7161. #: flatcamGUI/FlatCAMGUI.py:5976
  7162. msgid ""
  7163. "Type here any G-Code commands you would\n"
  7164. "like to add at the beginning of the G-Code file."
  7165. msgstr ""
  7166. "Type here any G-Code commands you would\n"
  7167. "like to add at the beginning of the G-Code file."
  7168. #: flatcamGUI/FlatCAMGUI.py:5985
  7169. msgid "Append to G-Code:"
  7170. msgstr "Append to G-Code:"
  7171. #: flatcamGUI/FlatCAMGUI.py:5987 flatcamGUI/ObjectUI.py:1523
  7172. msgid ""
  7173. "Type here any G-Code commands you would\n"
  7174. "like to append to the generated file.\n"
  7175. "I.e.: M2 (End of program)"
  7176. msgstr ""
  7177. "Type here any G-Code commands you would\n"
  7178. "like to append to the generated file.\n"
  7179. "I.e.: M2 (End of program)"
  7180. #: flatcamGUI/FlatCAMGUI.py:6004
  7181. msgid "CNC Job Adv. Options"
  7182. msgstr "CNC Job Adv. Options"
  7183. #: flatcamGUI/FlatCAMGUI.py:6015 flatcamGUI/ObjectUI.py:1541
  7184. msgid "Toolchange G-Code:"
  7185. msgstr "Toolchange G-Code:"
  7186. #: flatcamGUI/FlatCAMGUI.py:6017
  7187. msgid ""
  7188. "Type here any G-Code commands you would\n"
  7189. "like to be executed when Toolchange event is encountered.\n"
  7190. "This will constitute a Custom Toolchange GCode,\n"
  7191. "or a Toolchange Macro."
  7192. msgstr ""
  7193. "Type here any G-Code commands you would\n"
  7194. "like to be executed when Toolchange event is encountered.\n"
  7195. "This will constitute a Custom Toolchange GCode,\n"
  7196. "or a Toolchange Macro."
  7197. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1563
  7198. msgid "Use Toolchange Macro"
  7199. msgstr "Use Toolchange Macro"
  7200. #: flatcamGUI/FlatCAMGUI.py:6033 flatcamGUI/ObjectUI.py:1566
  7201. msgid ""
  7202. "Check this box if you want to use\n"
  7203. "a Custom Toolchange GCode (macro)."
  7204. msgstr ""
  7205. "Check this box if you want to use\n"
  7206. "a Custom Toolchange GCode (macro)."
  7207. #: flatcamGUI/FlatCAMGUI.py:6045 flatcamGUI/ObjectUI.py:1575
  7208. msgid ""
  7209. "A list of the FlatCAM variables that can be used\n"
  7210. "in the Toolchange event.\n"
  7211. "They have to be surrounded by the '%' symbol"
  7212. msgstr ""
  7213. "A list of the FlatCAM variables that can be used\n"
  7214. "in the Toolchange event.\n"
  7215. "They have to be surrounded by the '%' symbol"
  7216. #: flatcamGUI/FlatCAMGUI.py:6055 flatcamGUI/ObjectUI.py:1585
  7217. msgid "FlatCAM CNC parameters"
  7218. msgstr "FlatCAM CNC parameters"
  7219. #: flatcamGUI/FlatCAMGUI.py:6056 flatcamGUI/ObjectUI.py:1586
  7220. msgid "tool = tool number"
  7221. msgstr "tool = tool number"
  7222. #: flatcamGUI/FlatCAMGUI.py:6057 flatcamGUI/ObjectUI.py:1587
  7223. msgid "tooldia = tool diameter"
  7224. msgstr "tooldia = tool diameter"
  7225. #: flatcamGUI/FlatCAMGUI.py:6058 flatcamGUI/ObjectUI.py:1588
  7226. msgid "t_drills = for Excellon, total number of drills"
  7227. msgstr "t_drills = for Excellon, total number of drills"
  7228. #: flatcamGUI/FlatCAMGUI.py:6059 flatcamGUI/ObjectUI.py:1589
  7229. msgid "x_toolchange = X coord for Toolchange"
  7230. msgstr "x_toolchange = X coord for Toolchange"
  7231. #: flatcamGUI/FlatCAMGUI.py:6060 flatcamGUI/ObjectUI.py:1590
  7232. msgid "y_toolchange = Y coord for Toolchange"
  7233. msgstr "y_toolchange = Y coord for Toolchange"
  7234. #: flatcamGUI/FlatCAMGUI.py:6061 flatcamGUI/ObjectUI.py:1591
  7235. msgid "z_toolchange = Z coord for Toolchange"
  7236. msgstr "z_toolchange = Z coord for Toolchange"
  7237. #: flatcamGUI/FlatCAMGUI.py:6062
  7238. msgid "z_cut = Z depth for the cut"
  7239. msgstr "z_cut = Z depth for the cut"
  7240. #: flatcamGUI/FlatCAMGUI.py:6063
  7241. msgid "z_move = Z height for travel"
  7242. msgstr "z_move = Z height for travel"
  7243. #: flatcamGUI/FlatCAMGUI.py:6064 flatcamGUI/ObjectUI.py:1594
  7244. msgid "z_depthpercut = the step value for multidepth cut"
  7245. msgstr "z_depthpercut = the step value for multidepth cut"
  7246. #: flatcamGUI/FlatCAMGUI.py:6065 flatcamGUI/ObjectUI.py:1595
  7247. msgid "spindlesspeed = the value for the spindle speed"
  7248. msgstr "spindlesspeed = the value for the spindle speed"
  7249. #: flatcamGUI/FlatCAMGUI.py:6067 flatcamGUI/ObjectUI.py:1596
  7250. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  7251. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  7252. #: flatcamGUI/FlatCAMGUI.py:6088
  7253. msgid "NCC Tool Options"
  7254. msgstr "NCC Tool Options"
  7255. #: flatcamGUI/FlatCAMGUI.py:6101 flatcamGUI/FlatCAMGUI.py:6916
  7256. msgid "Tools dia:"
  7257. msgstr "Tools dia:"
  7258. #: flatcamGUI/FlatCAMGUI.py:6109 flatcamTools/ToolNonCopperClear.py:113
  7259. #| msgid "Tool Number"
  7260. msgid "Tool order"
  7261. msgstr "Tool order"
  7262. #: flatcamGUI/FlatCAMGUI.py:6110 flatcamGUI/FlatCAMGUI.py:6121
  7263. #: flatcamTools/ToolNonCopperClear.py:114
  7264. #: flatcamTools/ToolNonCopperClear.py:125
  7265. msgid ""
  7266. "This set the way that the tools in the tools table are used\n"
  7267. "for copper clearing.\n"
  7268. "'No' --> means that the used order is the one in the tool table\n"
  7269. "'Forward' --> means that the tools will be ordered from small to big\n"
  7270. "'Reverse' --> menas that the tools will ordered from big to small\n"
  7271. "\n"
  7272. "WARNING: using rest machining will automatically set the order\n"
  7273. "in reverse and disable this control."
  7274. msgstr ""
  7275. "This set the way that the tools in the tools table are used\n"
  7276. "for copper clearing.\n"
  7277. "'No' --> means that the used order is the one in the tool table\n"
  7278. "'Forward' --> means that the tools will be ordered from small to big\n"
  7279. "'Reverse' --> menas that the tools will ordered from big to small\n"
  7280. "\n"
  7281. "WARNING: using rest machining will automatically set the order\n"
  7282. "in reverse and disable this control."
  7283. #: flatcamGUI/FlatCAMGUI.py:6119 flatcamTools/ToolNonCopperClear.py:123
  7284. msgid "Forward"
  7285. msgstr "Forward"
  7286. #: flatcamGUI/FlatCAMGUI.py:6120 flatcamTools/ToolNonCopperClear.py:124
  7287. msgid "Reverse"
  7288. msgstr "Reverse"
  7289. #: flatcamGUI/FlatCAMGUI.py:6133 flatcamTools/ToolNonCopperClear.py:181
  7290. #, python-format
  7291. msgid ""
  7292. "How much (fraction) of the tool width to overlap each tool pass.\n"
  7293. "Example:\n"
  7294. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  7295. "\n"
  7296. "Adjust the value starting with lower values\n"
  7297. "and increasing it if areas that should be cleared are still \n"
  7298. "not cleared.\n"
  7299. "Lower values = faster processing, faster execution on PCB.\n"
  7300. "Higher values = slow processing and slow execution on CNC\n"
  7301. "due of too many paths."
  7302. msgstr ""
  7303. "How much (fraction) of the tool width to overlap each tool pass.\n"
  7304. "Example:\n"
  7305. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  7306. "\n"
  7307. "Adjust the value starting with lower values\n"
  7308. "and increasing it if areas that should be cleared are still \n"
  7309. "not cleared.\n"
  7310. "Lower values = faster processing, faster execution on PCB.\n"
  7311. "Higher values = slow processing and slow execution on CNC\n"
  7312. "due of too many paths."
  7313. #: flatcamGUI/FlatCAMGUI.py:6149 flatcamTools/ToolNonCopperClear.py:197
  7314. msgid "Bounding box margin."
  7315. msgstr "Bounding box margin."
  7316. #: flatcamGUI/FlatCAMGUI.py:6158 flatcamTools/ToolNonCopperClear.py:206
  7317. #: flatcamTools/ToolPaint.py:191
  7318. msgid ""
  7319. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  7320. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  7321. "lines."
  7322. msgstr ""
  7323. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  7324. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  7325. "lines."
  7326. #: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolNonCopperClear.py:238
  7327. #: flatcamTools/ToolPaint.py:223
  7328. msgid "Rest M.:"
  7329. msgstr "Rest M.:"
  7330. #: flatcamGUI/FlatCAMGUI.py:6192
  7331. msgid ""
  7332. "If checked, use 'rest machining'.\n"
  7333. "Basically it will clear copper outside PCB features,\n"
  7334. "using the biggest tool and continue with the next tools,\n"
  7335. "from bigger to smaller, to clear areas of copper that\n"
  7336. "could not be cleared by previous tool.\n"
  7337. "If not checked, use the standard algorithm."
  7338. msgstr ""
  7339. "If checked, use 'rest machining'.\n"
  7340. "Basically it will clear copper outside PCB features,\n"
  7341. "using the biggest tool and continue with the next tools,\n"
  7342. "from bigger to smaller, to clear areas of copper that\n"
  7343. "could not be cleared by previous tool.\n"
  7344. "If not checked, use the standard algorithm."
  7345. #: flatcamGUI/FlatCAMGUI.py:6204 flatcamTools/ToolNonCopperClear.py:253
  7346. msgid "Offset:"
  7347. msgstr "Offset:"
  7348. #: flatcamGUI/FlatCAMGUI.py:6206 flatcamGUI/FlatCAMGUI.py:6218
  7349. #: flatcamTools/ToolNonCopperClear.py:255
  7350. #: flatcamTools/ToolNonCopperClear.py:267
  7351. msgid ""
  7352. "If used, it will add an offset to the copper features.\n"
  7353. "The copper clearing will finish to a distance\n"
  7354. "from the copper features.\n"
  7355. "The value can be between 0 and 10 FlatCAM units."
  7356. msgstr ""
  7357. "If used, it will add an offset to the copper features.\n"
  7358. "The copper clearing will finish to a distance\n"
  7359. "from the copper features.\n"
  7360. "The value can be between 0 and 10 FlatCAM units."
  7361. #: flatcamGUI/FlatCAMGUI.py:6216 flatcamTools/ToolNonCopperClear.py:265
  7362. msgid "Offset value:"
  7363. msgstr "Offset value:"
  7364. #: flatcamGUI/FlatCAMGUI.py:6233 flatcamTools/ToolNonCopperClear.py:290
  7365. msgid "Itself"
  7366. msgstr "Itself"
  7367. #: flatcamGUI/FlatCAMGUI.py:6234 flatcamGUI/FlatCAMGUI.py:6385
  7368. #: flatcamTools/ToolDblSided.py:132 flatcamTools/ToolNonCopperClear.py:291
  7369. msgid "Box"
  7370. msgstr "Box"
  7371. #: flatcamGUI/FlatCAMGUI.py:6235 flatcamTools/ToolNonCopperClear.py:292
  7372. msgid "Reference:"
  7373. msgstr "Reference:"
  7374. #: flatcamGUI/FlatCAMGUI.py:6237
  7375. msgid ""
  7376. "When choosing the 'Itself' option the non copper clearing extent\n"
  7377. "is based on the object that is copper cleared.\n"
  7378. " Choosing the 'Box' option will do non copper clearing within the box\n"
  7379. "specified by another object different than the one that is copper cleared."
  7380. msgstr ""
  7381. "When choosing the 'Itself' option the non copper clearing extent\n"
  7382. "is based on the object that is copper cleared.\n"
  7383. " Choosing the 'Box' option will do non copper clearing within the box\n"
  7384. "specified by another object different than the one that is copper cleared."
  7385. #: flatcamGUI/FlatCAMGUI.py:6253
  7386. msgid "Cutout Tool Options"
  7387. msgstr "Cutout Tool Options"
  7388. #: flatcamGUI/FlatCAMGUI.py:6258 flatcamGUI/ObjectUI.py:400
  7389. msgid ""
  7390. "Create toolpaths to cut around\n"
  7391. "the PCB and separate it from\n"
  7392. "the original board."
  7393. msgstr ""
  7394. "Create toolpaths to cut around\n"
  7395. "the PCB and separate it from\n"
  7396. "the original board."
  7397. #: flatcamGUI/FlatCAMGUI.py:6276 flatcamTools/ToolCutOut.py:77
  7398. msgid "Obj kind:"
  7399. msgstr "Obj kind:"
  7400. #: flatcamGUI/FlatCAMGUI.py:6278 flatcamTools/ToolCutOut.py:79
  7401. msgid ""
  7402. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  7403. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  7404. "Gerber object, which is made\n"
  7405. "out of many individual PCB outlines."
  7406. msgstr ""
  7407. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  7408. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  7409. "Gerber object, which is made\n"
  7410. "out of many individual PCB outlines."
  7411. #: flatcamGUI/FlatCAMGUI.py:6285 flatcamGUI/FlatCAMGUI.py:6500
  7412. #: flatcamTools/ToolCutOut.py:85
  7413. msgid "Single"
  7414. msgstr "Single"
  7415. #: flatcamGUI/FlatCAMGUI.py:6286 flatcamTools/ToolCutOut.py:86
  7416. msgid "Panel"
  7417. msgstr "Panel"
  7418. #: flatcamGUI/FlatCAMGUI.py:6292
  7419. msgid ""
  7420. "Distance from objects at which\n"
  7421. "to draw the cutout."
  7422. msgstr ""
  7423. "Distance from objects at which\n"
  7424. "to draw the cutout."
  7425. #: flatcamGUI/FlatCAMGUI.py:6299 flatcamTools/ToolCutOut.py:111
  7426. msgid "Gap size:"
  7427. msgstr "Gap size:"
  7428. #: flatcamGUI/FlatCAMGUI.py:6301
  7429. msgid ""
  7430. "Size of the gaps in the toolpath\n"
  7431. "that will remain to hold the\n"
  7432. "board in place."
  7433. msgstr ""
  7434. "Size of the gaps in the toolpath\n"
  7435. "that will remain to hold the\n"
  7436. "board in place."
  7437. #: flatcamGUI/FlatCAMGUI.py:6309 flatcamTools/ToolCutOut.py:149
  7438. msgid "Gaps:"
  7439. msgstr "Gaps:"
  7440. #: flatcamGUI/FlatCAMGUI.py:6311
  7441. msgid ""
  7442. "Number of bridge gaps used for the cutout.\n"
  7443. "There can be maximum 8 bridges/gaps.\n"
  7444. "The choices are:\n"
  7445. "- lr - left + right\n"
  7446. "- tb - top + bottom\n"
  7447. "- 4 - left + right +top + bottom\n"
  7448. "- 2lr - 2*left + 2*right\n"
  7449. "- 2tb - 2*top + 2*bottom\n"
  7450. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7451. msgstr ""
  7452. "Number of bridge gaps used for the cutout.\n"
  7453. "There can be maximum 8 bridges/gaps.\n"
  7454. "The choices are:\n"
  7455. "- lr - left + right\n"
  7456. "- tb - top + bottom\n"
  7457. "- 4 - left + right +top + bottom\n"
  7458. "- 2lr - 2*left + 2*right\n"
  7459. "- 2tb - 2*top + 2*bottom\n"
  7460. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7461. #: flatcamGUI/FlatCAMGUI.py:6332 flatcamTools/ToolCutOut.py:130
  7462. msgid "Convex Sh.:"
  7463. msgstr "Convex Sh.:"
  7464. #: flatcamGUI/FlatCAMGUI.py:6334
  7465. msgid "Create a convex shape surrounding the entire PCB."
  7466. msgstr "Create a convex shape surrounding the entire PCB."
  7467. #: flatcamGUI/FlatCAMGUI.py:6347
  7468. msgid "2Sided Tool Options"
  7469. msgstr "2Sided Tool Options"
  7470. #: flatcamGUI/FlatCAMGUI.py:6352
  7471. msgid ""
  7472. "A tool to help in creating a double sided\n"
  7473. "PCB using alignment holes."
  7474. msgstr ""
  7475. "A tool to help in creating a double sided\n"
  7476. "PCB using alignment holes."
  7477. #: flatcamGUI/FlatCAMGUI.py:6362 flatcamTools/ToolDblSided.py:234
  7478. msgid "Drill diam.:"
  7479. msgstr "Drill diam.:"
  7480. #: flatcamGUI/FlatCAMGUI.py:6364 flatcamTools/ToolDblSided.py:225
  7481. #: flatcamTools/ToolDblSided.py:236
  7482. msgid "Diameter of the drill for the alignment holes."
  7483. msgstr "Diameter of the drill for the alignment holes."
  7484. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolDblSided.py:120
  7485. msgid "Mirror Axis:"
  7486. msgstr "Mirror Axis:"
  7487. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamTools/ToolDblSided.py:122
  7488. msgid "Mirror vertically (X) or horizontally (Y)."
  7489. msgstr "Mirror vertically (X) or horizontally (Y)."
  7490. #: flatcamGUI/FlatCAMGUI.py:6384 flatcamTools/ToolDblSided.py:131
  7491. msgid "Point"
  7492. msgstr "Point"
  7493. #: flatcamGUI/FlatCAMGUI.py:6386 flatcamTools/ToolDblSided.py:133
  7494. msgid "Axis Ref:"
  7495. msgstr "Axis Ref:"
  7496. #: flatcamGUI/FlatCAMGUI.py:6388
  7497. msgid ""
  7498. "The axis should pass through a <b>point</b> or cut\n"
  7499. " a specified <b>box</b> (in a Geometry object) in \n"
  7500. "the middle."
  7501. msgstr ""
  7502. "The axis should pass through a <b>point</b> or cut\n"
  7503. " a specified <b>box</b> (in a Geometry object) in \n"
  7504. "the middle."
  7505. #: flatcamGUI/FlatCAMGUI.py:6404
  7506. msgid "Paint Tool Options"
  7507. msgstr "Paint Tool Options"
  7508. #: flatcamGUI/FlatCAMGUI.py:6409
  7509. msgid "<b>Parameters:</b>"
  7510. msgstr "<b>Parameters:</b>"
  7511. #: flatcamGUI/FlatCAMGUI.py:6411 flatcamGUI/ObjectUI.py:1312
  7512. msgid ""
  7513. "Creates tool paths to cover the\n"
  7514. "whole area of a polygon (remove\n"
  7515. "all copper). You will be asked\n"
  7516. "to click on the desired polygon."
  7517. msgstr ""
  7518. "Creates tool paths to cover the\n"
  7519. "whole area of a polygon (remove\n"
  7520. "all copper). You will be asked\n"
  7521. "to click on the desired polygon."
  7522. #: flatcamGUI/FlatCAMGUI.py:6435
  7523. msgid ""
  7524. "How much (fraction) of the tool\n"
  7525. "width to overlap each tool pass."
  7526. msgstr ""
  7527. "How much (fraction) of the tool\n"
  7528. "width to overlap each tool pass."
  7529. #: flatcamGUI/FlatCAMGUI.py:6489 flatcamTools/ToolPaint.py:238
  7530. msgid "Selection:"
  7531. msgstr "Selection:"
  7532. #: flatcamGUI/FlatCAMGUI.py:6491
  7533. #| msgid ""
  7534. #| "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  7535. #| "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  7536. #| "polygons."
  7537. msgid ""
  7538. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  7539. "mouse click on the polygon to be painted.<BR>- <B>Area</B>: left mouse click "
  7540. "to start selection of the area to be painted.<BR>- <B>All</B>: paint all "
  7541. "polygons.<BR>- <B>Ref</B>: paint an area described by an external reference "
  7542. "object."
  7543. msgstr ""
  7544. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  7545. "mouse click on the polygon to be painted.<BR>- <B>Area</B>: left mouse click "
  7546. "to start selection of the area to be painted.<BR>- <B>All</B>: paint all "
  7547. "polygons.<BR>- <B>Ref</B>: paint an area described by an external reference "
  7548. "object."
  7549. #: flatcamGUI/FlatCAMGUI.py:6501
  7550. msgid "Area"
  7551. msgstr "Area"
  7552. #: flatcamGUI/FlatCAMGUI.py:6503
  7553. msgid "Ref."
  7554. msgstr "Ref."
  7555. #: flatcamGUI/FlatCAMGUI.py:6515
  7556. msgid "Film Tool Options"
  7557. msgstr "Film Tool Options"
  7558. #: flatcamGUI/FlatCAMGUI.py:6520
  7559. msgid ""
  7560. "Create a PCB film from a Gerber or Geometry\n"
  7561. "FlatCAM object.\n"
  7562. "The file is saved in SVG format."
  7563. msgstr ""
  7564. "Create a PCB film from a Gerber or Geometry\n"
  7565. "FlatCAM object.\n"
  7566. "The file is saved in SVG format."
  7567. #: flatcamGUI/FlatCAMGUI.py:6531 flatcamTools/ToolFilm.py:116
  7568. msgid "Film Type:"
  7569. msgstr "Film Type:"
  7570. #: flatcamGUI/FlatCAMGUI.py:6533 flatcamTools/ToolFilm.py:118
  7571. msgid ""
  7572. "Generate a Positive black film or a Negative film.\n"
  7573. "Positive means that it will print the features\n"
  7574. "with black on a white canvas.\n"
  7575. "Negative means that it will print the features\n"
  7576. "with white on a black canvas.\n"
  7577. "The Film format is SVG."
  7578. msgstr ""
  7579. "Generate a Positive black film or a Negative film.\n"
  7580. "Positive means that it will print the features\n"
  7581. "with black on a white canvas.\n"
  7582. "Negative means that it will print the features\n"
  7583. "with white on a black canvas.\n"
  7584. "The Film format is SVG."
  7585. #: flatcamGUI/FlatCAMGUI.py:6544 flatcamTools/ToolFilm.py:130
  7586. msgid "Border:"
  7587. msgstr "Border:"
  7588. #: flatcamGUI/FlatCAMGUI.py:6546 flatcamTools/ToolFilm.py:132
  7589. msgid ""
  7590. "Specify a border around the object.\n"
  7591. "Only for negative film.\n"
  7592. "It helps if we use as a Box Object the same \n"
  7593. "object as in Film Object. It will create a thick\n"
  7594. "black bar around the actual print allowing for a\n"
  7595. "better delimitation of the outline features which are of\n"
  7596. "white color like the rest and which may confound with the\n"
  7597. "surroundings if not for this border."
  7598. msgstr ""
  7599. "Specify a border around the object.\n"
  7600. "Only for negative film.\n"
  7601. "It helps if we use as a Box Object the same \n"
  7602. "object as in Film Object. It will create a thick\n"
  7603. "black bar around the actual print allowing for a\n"
  7604. "better delimitation of the outline features which are of\n"
  7605. "white color like the rest and which may confound with the\n"
  7606. "surroundings if not for this border."
  7607. #: flatcamGUI/FlatCAMGUI.py:6559 flatcamTools/ToolFilm.py:144
  7608. msgid "Scale Stroke:"
  7609. msgstr "Scale Stroke:"
  7610. #: flatcamGUI/FlatCAMGUI.py:6561 flatcamTools/ToolFilm.py:146
  7611. msgid ""
  7612. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7613. "It means that the line that envelope each SVG feature will be thicker or "
  7614. "thinner,\n"
  7615. "therefore the fine features may be more affected by this parameter."
  7616. msgstr ""
  7617. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7618. "It means that the line that envelope each SVG feature will be thicker or "
  7619. "thinner,\n"
  7620. "therefore the fine features may be more affected by this parameter."
  7621. #: flatcamGUI/FlatCAMGUI.py:6576
  7622. msgid "Panelize Tool Options"
  7623. msgstr "Panelize Tool Options"
  7624. #: flatcamGUI/FlatCAMGUI.py:6581
  7625. msgid ""
  7626. "Create an object that contains an array of (x, y) elements,\n"
  7627. "each element is a copy of the source object spaced\n"
  7628. "at a X distance, Y distance of each other."
  7629. msgstr ""
  7630. "Create an object that contains an array of (x, y) elements,\n"
  7631. "each element is a copy of the source object spaced\n"
  7632. "at a X distance, Y distance of each other."
  7633. #: flatcamGUI/FlatCAMGUI.py:6592 flatcamTools/ToolPanelize.py:147
  7634. msgid "Spacing cols:"
  7635. msgstr "Spacing cols:"
  7636. #: flatcamGUI/FlatCAMGUI.py:6594 flatcamTools/ToolPanelize.py:149
  7637. msgid ""
  7638. "Spacing between columns of the desired panel.\n"
  7639. "In current units."
  7640. msgstr ""
  7641. "Spacing between columns of the desired panel.\n"
  7642. "In current units."
  7643. #: flatcamGUI/FlatCAMGUI.py:6602 flatcamTools/ToolPanelize.py:156
  7644. msgid "Spacing rows:"
  7645. msgstr "Spacing rows:"
  7646. #: flatcamGUI/FlatCAMGUI.py:6604 flatcamTools/ToolPanelize.py:158
  7647. msgid ""
  7648. "Spacing between rows of the desired panel.\n"
  7649. "In current units."
  7650. msgstr ""
  7651. "Spacing between rows of the desired panel.\n"
  7652. "In current units."
  7653. #: flatcamGUI/FlatCAMGUI.py:6612 flatcamTools/ToolPanelize.py:165
  7654. msgid "Columns:"
  7655. msgstr "Columns:"
  7656. #: flatcamGUI/FlatCAMGUI.py:6614 flatcamTools/ToolPanelize.py:167
  7657. msgid "Number of columns of the desired panel"
  7658. msgstr "Number of columns of the desired panel"
  7659. #: flatcamGUI/FlatCAMGUI.py:6621 flatcamTools/ToolPanelize.py:173
  7660. msgid "Rows:"
  7661. msgstr "Rows:"
  7662. #: flatcamGUI/FlatCAMGUI.py:6623 flatcamTools/ToolPanelize.py:175
  7663. msgid "Number of rows of the desired panel"
  7664. msgstr "Number of rows of the desired panel"
  7665. #: flatcamGUI/FlatCAMGUI.py:6629 flatcamTools/ToolPanelize.py:181
  7666. msgid "Gerber"
  7667. msgstr "Gerber"
  7668. #: flatcamGUI/FlatCAMGUI.py:6630 flatcamTools/ToolPanelize.py:182
  7669. msgid "Geo"
  7670. msgstr "Geo"
  7671. #: flatcamGUI/FlatCAMGUI.py:6631
  7672. msgid "Panel Type:"
  7673. msgstr "Panel Type:"
  7674. #: flatcamGUI/FlatCAMGUI.py:6633
  7675. msgid ""
  7676. "Choose the type of object for the panel object:\n"
  7677. "- Gerber\n"
  7678. "- Geometry"
  7679. msgstr ""
  7680. "Choose the type of object for the panel object:\n"
  7681. "- Gerber\n"
  7682. "- Geometry"
  7683. #: flatcamGUI/FlatCAMGUI.py:6642
  7684. msgid "Constrain within:"
  7685. msgstr "Constrain within:"
  7686. #: flatcamGUI/FlatCAMGUI.py:6644 flatcamTools/ToolPanelize.py:195
  7687. msgid ""
  7688. "Area define by DX and DY within to constrain the panel.\n"
  7689. "DX and DY values are in current units.\n"
  7690. "Regardless of how many columns and rows are desired,\n"
  7691. "the final panel will have as many columns and rows as\n"
  7692. "they fit completely within selected area."
  7693. msgstr ""
  7694. "Area define by DX and DY within to constrain the panel.\n"
  7695. "DX and DY values are in current units.\n"
  7696. "Regardless of how many columns and rows are desired,\n"
  7697. "the final panel will have as many columns and rows as\n"
  7698. "they fit completely within selected area."
  7699. #: flatcamGUI/FlatCAMGUI.py:6653 flatcamTools/ToolPanelize.py:204
  7700. msgid "Width (DX):"
  7701. msgstr "Width (DX):"
  7702. #: flatcamGUI/FlatCAMGUI.py:6655 flatcamTools/ToolPanelize.py:206
  7703. msgid ""
  7704. "The width (DX) within which the panel must fit.\n"
  7705. "In current units."
  7706. msgstr ""
  7707. "The width (DX) within which the panel must fit.\n"
  7708. "In current units."
  7709. #: flatcamGUI/FlatCAMGUI.py:6662 flatcamTools/ToolPanelize.py:212
  7710. msgid "Height (DY):"
  7711. msgstr "Height (DY):"
  7712. #: flatcamGUI/FlatCAMGUI.py:6664 flatcamTools/ToolPanelize.py:214
  7713. msgid ""
  7714. "The height (DY)within which the panel must fit.\n"
  7715. "In current units."
  7716. msgstr ""
  7717. "The height (DY)within which the panel must fit.\n"
  7718. "In current units."
  7719. #: flatcamGUI/FlatCAMGUI.py:6678
  7720. msgid "Calculators Tool Options"
  7721. msgstr "Calculators Tool Options"
  7722. #: flatcamGUI/FlatCAMGUI.py:6681 flatcamTools/ToolCalculators.py:25
  7723. msgid "V-Shape Tool Calculator"
  7724. msgstr "V-Shape Tool Calculator"
  7725. #: flatcamGUI/FlatCAMGUI.py:6683
  7726. msgid ""
  7727. "Calculate the tool diameter for a given V-shape tool,\n"
  7728. "having the tip diameter, tip angle and\n"
  7729. "depth-of-cut as parameters."
  7730. msgstr ""
  7731. "Calculate the tool diameter for a given V-shape tool,\n"
  7732. "having the tip diameter, tip angle and\n"
  7733. "depth-of-cut as parameters."
  7734. #: flatcamGUI/FlatCAMGUI.py:6694 flatcamTools/ToolCalculators.py:92
  7735. msgid "Tip Diameter:"
  7736. msgstr "Tip Diameter:"
  7737. #: flatcamGUI/FlatCAMGUI.py:6696
  7738. msgid ""
  7739. "This is the tool tip diameter.\n"
  7740. "It is specified by manufacturer."
  7741. msgstr ""
  7742. "This is the tool tip diameter.\n"
  7743. "It is specified by manufacturer."
  7744. #: flatcamGUI/FlatCAMGUI.py:6704
  7745. msgid "Tip angle:"
  7746. msgstr "Tip angle:"
  7747. #: flatcamGUI/FlatCAMGUI.py:6706
  7748. msgid ""
  7749. "This is the angle on the tip of the tool.\n"
  7750. "It is specified by manufacturer."
  7751. msgstr ""
  7752. "This is the angle on the tip of the tool.\n"
  7753. "It is specified by manufacturer."
  7754. #: flatcamGUI/FlatCAMGUI.py:6716
  7755. msgid ""
  7756. "This is depth to cut into material.\n"
  7757. "In the CNCJob object it is the CutZ parameter."
  7758. msgstr ""
  7759. "This is depth to cut into material.\n"
  7760. "In the CNCJob object it is the CutZ parameter."
  7761. #: flatcamGUI/FlatCAMGUI.py:6723 flatcamTools/ToolCalculators.py:27
  7762. msgid "ElectroPlating Calculator"
  7763. msgstr "ElectroPlating Calculator"
  7764. #: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCalculators.py:148
  7765. msgid ""
  7766. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7767. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7768. "chloride."
  7769. msgstr ""
  7770. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7771. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7772. "chloride."
  7773. #: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCalculators.py:157
  7774. msgid "Board Length:"
  7775. msgstr "Board Length:"
  7776. #: flatcamGUI/FlatCAMGUI.py:6737 flatcamTools/ToolCalculators.py:161
  7777. msgid "This is the board length. In centimeters."
  7778. msgstr "This is the board length. In centimeters."
  7779. #: flatcamGUI/FlatCAMGUI.py:6743 flatcamTools/ToolCalculators.py:163
  7780. msgid "Board Width:"
  7781. msgstr "Board Width:"
  7782. #: flatcamGUI/FlatCAMGUI.py:6745 flatcamTools/ToolCalculators.py:167
  7783. msgid "This is the board width.In centimeters."
  7784. msgstr "This is the board width.In centimeters."
  7785. #: flatcamGUI/FlatCAMGUI.py:6750 flatcamTools/ToolCalculators.py:169
  7786. msgid "Current Density:"
  7787. msgstr "Current Density:"
  7788. #: flatcamGUI/FlatCAMGUI.py:6753 flatcamTools/ToolCalculators.py:173
  7789. msgid ""
  7790. "Current density to pass through the board. \n"
  7791. "In Amps per Square Feet ASF."
  7792. msgstr ""
  7793. "Current density to pass through the board. \n"
  7794. "In Amps per Square Feet ASF."
  7795. #: flatcamGUI/FlatCAMGUI.py:6759 flatcamTools/ToolCalculators.py:176
  7796. msgid "Copper Growth:"
  7797. msgstr "Copper Growth:"
  7798. #: flatcamGUI/FlatCAMGUI.py:6762 flatcamTools/ToolCalculators.py:180
  7799. msgid ""
  7800. "How thick the copper growth is intended to be.\n"
  7801. "In microns."
  7802. msgstr ""
  7803. "How thick the copper growth is intended to be.\n"
  7804. "In microns."
  7805. #: flatcamGUI/FlatCAMGUI.py:6775
  7806. msgid "Transform Tool Options"
  7807. msgstr "Transform Tool Options"
  7808. #: flatcamGUI/FlatCAMGUI.py:6780
  7809. msgid ""
  7810. "Various transformations that can be applied\n"
  7811. "on a FlatCAM object."
  7812. msgstr ""
  7813. "Various transformations that can be applied\n"
  7814. "on a FlatCAM object."
  7815. #: flatcamGUI/FlatCAMGUI.py:6790
  7816. msgid "Rotate Angle:"
  7817. msgstr "Rotate Angle:"
  7818. #: flatcamGUI/FlatCAMGUI.py:6792
  7819. msgid "Angle for rotation. In degrees."
  7820. msgstr "Angle for rotation. In degrees."
  7821. #: flatcamGUI/FlatCAMGUI.py:6799
  7822. msgid "Skew_X angle:"
  7823. msgstr "Skew_X angle:"
  7824. #: flatcamGUI/FlatCAMGUI.py:6801
  7825. msgid "Angle for Skew/Shear on X axis. In degrees."
  7826. msgstr "Angle for Skew/Shear on X axis. In degrees."
  7827. #: flatcamGUI/FlatCAMGUI.py:6808
  7828. msgid "Skew_Y angle:"
  7829. msgstr "Skew_Y angle:"
  7830. #: flatcamGUI/FlatCAMGUI.py:6810
  7831. msgid "Angle for Skew/Shear on Y axis. In degrees."
  7832. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  7833. #: flatcamGUI/FlatCAMGUI.py:6817
  7834. msgid "Scale_X factor:"
  7835. msgstr "Scale_X factor:"
  7836. #: flatcamGUI/FlatCAMGUI.py:6819
  7837. msgid "Factor for scaling on X axis."
  7838. msgstr "Factor for scaling on X axis."
  7839. #: flatcamGUI/FlatCAMGUI.py:6826
  7840. msgid "Scale_Y factor:"
  7841. msgstr "Scale_Y factor:"
  7842. #: flatcamGUI/FlatCAMGUI.py:6828
  7843. msgid "Factor for scaling on Y axis."
  7844. msgstr "Factor for scaling on Y axis."
  7845. #: flatcamGUI/FlatCAMGUI.py:6836
  7846. msgid ""
  7847. "Scale the selected object(s)\n"
  7848. "using the Scale_X factor for both axis."
  7849. msgstr ""
  7850. "Scale the selected object(s)\n"
  7851. "using the Scale_X factor for both axis."
  7852. #: flatcamGUI/FlatCAMGUI.py:6844 flatcamTools/ToolTransform.py:210
  7853. msgid ""
  7854. "Scale the selected object(s)\n"
  7855. "using the origin reference when checked,\n"
  7856. "and the center of the biggest bounding box\n"
  7857. "of the selected objects when unchecked."
  7858. msgstr ""
  7859. "Scale the selected object(s)\n"
  7860. "using the origin reference when checked,\n"
  7861. "and the center of the biggest bounding box\n"
  7862. "of the selected objects when unchecked."
  7863. #: flatcamGUI/FlatCAMGUI.py:6853
  7864. msgid "Offset_X val:"
  7865. msgstr "Offset_X val:"
  7866. #: flatcamGUI/FlatCAMGUI.py:6855
  7867. msgid "Distance to offset on X axis. In current units."
  7868. msgstr "Distance to offset on X axis. In current units."
  7869. #: flatcamGUI/FlatCAMGUI.py:6862
  7870. msgid "Offset_Y val:"
  7871. msgstr "Offset_Y val:"
  7872. #: flatcamGUI/FlatCAMGUI.py:6864
  7873. msgid "Distance to offset on Y axis. In current units."
  7874. msgstr "Distance to offset on Y axis. In current units."
  7875. #: flatcamGUI/FlatCAMGUI.py:6870
  7876. msgid "Mirror Reference"
  7877. msgstr "Mirror Reference"
  7878. #: flatcamGUI/FlatCAMGUI.py:6872 flatcamTools/ToolTransform.py:314
  7879. msgid ""
  7880. "Flip the selected object(s)\n"
  7881. "around the point in Point Entry Field.\n"
  7882. "\n"
  7883. "The point coordinates can be captured by\n"
  7884. "left click on canvas together with pressing\n"
  7885. "SHIFT key. \n"
  7886. "Then click Add button to insert coordinates.\n"
  7887. "Or enter the coords in format (x, y) in the\n"
  7888. "Point Entry field and click Flip on X(Y)"
  7889. msgstr ""
  7890. "Flip the selected object(s)\n"
  7891. "around the point in Point Entry Field.\n"
  7892. "\n"
  7893. "The point coordinates can be captured by\n"
  7894. "left click on canvas together with pressing\n"
  7895. "SHIFT key. \n"
  7896. "Then click Add button to insert coordinates.\n"
  7897. "Or enter the coords in format (x, y) in the\n"
  7898. "Point Entry field and click Flip on X(Y)"
  7899. #: flatcamGUI/FlatCAMGUI.py:6883
  7900. msgid " Mirror Ref. Point:"
  7901. msgstr " Mirror Ref. Point:"
  7902. #: flatcamGUI/FlatCAMGUI.py:6885 flatcamTools/ToolTransform.py:327
  7903. msgid ""
  7904. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7905. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7906. "the 'y' in (x, y) will be used when using Flip on Y and"
  7907. msgstr ""
  7908. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7909. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7910. "the 'y' in (x, y) will be used when using Flip on Y and"
  7911. #: flatcamGUI/FlatCAMGUI.py:6902
  7912. msgid "SolderPaste Tool Options"
  7913. msgstr "SolderPaste Tool Options"
  7914. #: flatcamGUI/FlatCAMGUI.py:6907
  7915. msgid ""
  7916. "A tool to create GCode for dispensing\n"
  7917. "solder paste onto a PCB."
  7918. msgstr ""
  7919. "A tool to create GCode for dispensing\n"
  7920. "solder paste onto a PCB."
  7921. #: flatcamGUI/FlatCAMGUI.py:6918
  7922. msgid "Diameters of nozzle tools, separated by ','"
  7923. msgstr "Diameters of nozzle tools, separated by ','"
  7924. #: flatcamGUI/FlatCAMGUI.py:6925
  7925. msgid "<b>New Nozzle Dia:</b>"
  7926. msgstr "<b>New Nozzle Dia:</b>"
  7927. #: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolSolderPaste.py:103
  7928. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7929. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  7930. #: flatcamGUI/FlatCAMGUI.py:6935 flatcamTools/ToolSolderPaste.py:166
  7931. msgid "Z Dispense Start:"
  7932. msgstr "Z Dispense Start:"
  7933. #: flatcamGUI/FlatCAMGUI.py:6937 flatcamTools/ToolSolderPaste.py:168
  7934. msgid "The height (Z) when solder paste dispensing starts."
  7935. msgstr "The height (Z) when solder paste dispensing starts."
  7936. #: flatcamGUI/FlatCAMGUI.py:6944 flatcamTools/ToolSolderPaste.py:174
  7937. msgid "Z Dispense:"
  7938. msgstr "Z Dispense:"
  7939. #: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolSolderPaste.py:176
  7940. msgid "The height (Z) when doing solder paste dispensing."
  7941. msgstr "The height (Z) when doing solder paste dispensing."
  7942. #: flatcamGUI/FlatCAMGUI.py:6953 flatcamTools/ToolSolderPaste.py:182
  7943. msgid "Z Dispense Stop:"
  7944. msgstr "Z Dispense Stop:"
  7945. #: flatcamGUI/FlatCAMGUI.py:6955 flatcamTools/ToolSolderPaste.py:184
  7946. msgid "The height (Z) when solder paste dispensing stops."
  7947. msgstr "The height (Z) when solder paste dispensing stops."
  7948. #: flatcamGUI/FlatCAMGUI.py:6962 flatcamTools/ToolSolderPaste.py:190
  7949. msgid "Z Travel:"
  7950. msgstr "Z Travel:"
  7951. #: flatcamGUI/FlatCAMGUI.py:6964 flatcamTools/ToolSolderPaste.py:192
  7952. msgid ""
  7953. "The height (Z) for travel between pads\n"
  7954. "(without dispensing solder paste)."
  7955. msgstr ""
  7956. "The height (Z) for travel between pads\n"
  7957. "(without dispensing solder paste)."
  7958. #: flatcamGUI/FlatCAMGUI.py:6972 flatcamTools/ToolSolderPaste.py:199
  7959. msgid "Z Toolchange:"
  7960. msgstr "Z Toolchange:"
  7961. #: flatcamGUI/FlatCAMGUI.py:6974 flatcamTools/ToolSolderPaste.py:201
  7962. msgid "The height (Z) for tool (nozzle) change."
  7963. msgstr "The height (Z) for tool (nozzle) change."
  7964. #: flatcamGUI/FlatCAMGUI.py:6981 flatcamTools/ToolSolderPaste.py:207
  7965. msgid "XY Toolchange:"
  7966. msgstr "XY Toolchange:"
  7967. #: flatcamGUI/FlatCAMGUI.py:6983 flatcamTools/ToolSolderPaste.py:209
  7968. msgid ""
  7969. "The X,Y location for tool (nozzle) change.\n"
  7970. "The format is (x, y) where x and y are real numbers."
  7971. msgstr ""
  7972. "The X,Y location for tool (nozzle) change.\n"
  7973. "The format is (x, y) where x and y are real numbers."
  7974. #: flatcamGUI/FlatCAMGUI.py:6991 flatcamTools/ToolSolderPaste.py:216
  7975. msgid "Feedrate X-Y:"
  7976. msgstr "Feedrate X-Y:"
  7977. #: flatcamGUI/FlatCAMGUI.py:6993 flatcamTools/ToolSolderPaste.py:218
  7978. msgid "Feedrate (speed) while moving on the X-Y plane."
  7979. msgstr "Feedrate (speed) while moving on the X-Y plane."
  7980. #: flatcamGUI/FlatCAMGUI.py:7000 flatcamTools/ToolSolderPaste.py:224
  7981. msgid "Feedrate Z:"
  7982. msgstr "Feedrate Z:"
  7983. #: flatcamGUI/FlatCAMGUI.py:7002 flatcamTools/ToolSolderPaste.py:226
  7984. msgid ""
  7985. "Feedrate (speed) while moving vertically\n"
  7986. "(on Z plane)."
  7987. msgstr ""
  7988. "Feedrate (speed) while moving vertically\n"
  7989. "(on Z plane)."
  7990. #: flatcamGUI/FlatCAMGUI.py:7010 flatcamTools/ToolSolderPaste.py:233
  7991. msgid "Feedrate Z Dispense:"
  7992. msgstr "Feedrate Z Dispense:"
  7993. #: flatcamGUI/FlatCAMGUI.py:7012
  7994. msgid ""
  7995. "Feedrate (speed) while moving up vertically\n"
  7996. "to Dispense position (on Z plane)."
  7997. msgstr ""
  7998. "Feedrate (speed) while moving up vertically\n"
  7999. "to Dispense position (on Z plane)."
  8000. #: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolSolderPaste.py:242
  8001. msgid "Spindle Speed FWD:"
  8002. msgstr "Spindle Speed FWD:"
  8003. #: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolSolderPaste.py:244
  8004. msgid ""
  8005. "The dispenser speed while pushing solder paste\n"
  8006. "through the dispenser nozzle."
  8007. msgstr ""
  8008. "The dispenser speed while pushing solder paste\n"
  8009. "through the dispenser nozzle."
  8010. #: flatcamGUI/FlatCAMGUI.py:7030 flatcamTools/ToolSolderPaste.py:251
  8011. msgid "Dwell FWD:"
  8012. msgstr "Dwell FWD:"
  8013. #: flatcamGUI/FlatCAMGUI.py:7032 flatcamTools/ToolSolderPaste.py:253
  8014. msgid "Pause after solder dispensing."
  8015. msgstr "Pause after solder dispensing."
  8016. #: flatcamGUI/FlatCAMGUI.py:7039 flatcamTools/ToolSolderPaste.py:259
  8017. msgid "Spindle Speed REV:"
  8018. msgstr "Spindle Speed REV:"
  8019. #: flatcamGUI/FlatCAMGUI.py:7041 flatcamTools/ToolSolderPaste.py:261
  8020. msgid ""
  8021. "The dispenser speed while retracting solder paste\n"
  8022. "through the dispenser nozzle."
  8023. msgstr ""
  8024. "The dispenser speed while retracting solder paste\n"
  8025. "through the dispenser nozzle."
  8026. #: flatcamGUI/FlatCAMGUI.py:7049 flatcamTools/ToolSolderPaste.py:268
  8027. msgid "Dwell REV:"
  8028. msgstr "Dwell REV:"
  8029. #: flatcamGUI/FlatCAMGUI.py:7051 flatcamTools/ToolSolderPaste.py:270
  8030. msgid ""
  8031. "Pause after solder paste dispenser retracted,\n"
  8032. "to allow pressure equilibrium."
  8033. msgstr ""
  8034. "Pause after solder paste dispenser retracted,\n"
  8035. "to allow pressure equilibrium."
  8036. #: flatcamGUI/FlatCAMGUI.py:7058 flatcamTools/ToolSolderPaste.py:276
  8037. msgid "PostProcessors:"
  8038. msgstr "PostProcessors:"
  8039. #: flatcamGUI/FlatCAMGUI.py:7060 flatcamTools/ToolSolderPaste.py:278
  8040. msgid "Files that control the GCode generation."
  8041. msgstr "Files that control the GCode generation."
  8042. #: flatcamGUI/FlatCAMGUI.py:7075
  8043. msgid "Substractor Tool Options"
  8044. msgstr "Substractor Tool Options"
  8045. #: flatcamGUI/FlatCAMGUI.py:7080
  8046. msgid ""
  8047. "A tool to substract one Gerber or Geometry object\n"
  8048. "from another of the same type."
  8049. msgstr ""
  8050. "A tool to substract one Gerber or Geometry object\n"
  8051. "from another of the same type."
  8052. #: flatcamGUI/FlatCAMGUI.py:7085 flatcamTools/ToolSub.py:133
  8053. msgid "Close paths"
  8054. msgstr "Close paths"
  8055. #: flatcamGUI/FlatCAMGUI.py:7086 flatcamTools/ToolSub.py:134
  8056. msgid ""
  8057. "Checking this will close the paths cut by the Geometry substractor object."
  8058. msgstr ""
  8059. "Checking this will close the paths cut by the Geometry substractor object."
  8060. #: flatcamGUI/FlatCAMGUI.py:7112 flatcamGUI/FlatCAMGUI.py:7118
  8061. msgid "Idle."
  8062. msgstr "Idle."
  8063. #: flatcamGUI/FlatCAMGUI.py:7142
  8064. msgid "Application started ..."
  8065. msgstr "Application started ..."
  8066. #: flatcamGUI/FlatCAMGUI.py:7143
  8067. msgid "Hello!"
  8068. msgstr "Hello!"
  8069. #: flatcamGUI/ObjectUI.py:33
  8070. msgid "FlatCAM Object"
  8071. msgstr "FlatCAM Object"
  8072. #: flatcamGUI/ObjectUI.py:58
  8073. msgid ""
  8074. "BASIC is suitable for a beginner. Many parameters\n"
  8075. "are hidden from the user in this mode.\n"
  8076. "ADVANCED mode will make available all parameters.\n"
  8077. "\n"
  8078. "To change the application LEVEL, go to:\n"
  8079. "Edit -> Preferences -> General and check:\n"
  8080. "'APP. LEVEL' radio button."
  8081. msgstr ""
  8082. "BASIC is suitable for a beginner. Many parameters\n"
  8083. "are hidden from the user in this mode.\n"
  8084. "ADVANCED mode will make available all parameters.\n"
  8085. "\n"
  8086. "To change the application LEVEL, go to:\n"
  8087. "Edit -> Preferences -> General and check:\n"
  8088. "'APP. LEVEL' radio button."
  8089. #: flatcamGUI/ObjectUI.py:79
  8090. msgid "<b>Scale:</b>"
  8091. msgstr "<b>Scale:</b>"
  8092. #: flatcamGUI/ObjectUI.py:81
  8093. msgid "Change the size of the object."
  8094. msgstr "Change the size of the object."
  8095. #: flatcamGUI/ObjectUI.py:89
  8096. msgid "Factor:"
  8097. msgstr "Factor:"
  8098. #: flatcamGUI/ObjectUI.py:91
  8099. msgid ""
  8100. "Factor by which to multiply\n"
  8101. "geometric features of this object."
  8102. msgstr ""
  8103. "Factor by which to multiply\n"
  8104. "geometric features of this object."
  8105. #: flatcamGUI/ObjectUI.py:102
  8106. msgid "Perform scaling operation."
  8107. msgstr "Perform scaling operation."
  8108. #: flatcamGUI/ObjectUI.py:108
  8109. msgid "<b>Offset:</b>"
  8110. msgstr "<b>Offset:</b>"
  8111. #: flatcamGUI/ObjectUI.py:110
  8112. msgid "Change the position of this object."
  8113. msgstr "Change the position of this object."
  8114. #: flatcamGUI/ObjectUI.py:117
  8115. msgid "Vector:"
  8116. msgstr "Vector:"
  8117. #: flatcamGUI/ObjectUI.py:119
  8118. msgid ""
  8119. "Amount by which to move the object\n"
  8120. "in the x and y axes in (x, y) format."
  8121. msgstr ""
  8122. "Amount by which to move the object\n"
  8123. "in the x and y axes in (x, y) format."
  8124. #: flatcamGUI/ObjectUI.py:129
  8125. msgid "Perform the offset operation."
  8126. msgstr "Perform the offset operation."
  8127. #: flatcamGUI/ObjectUI.py:143
  8128. msgid "Gerber Object"
  8129. msgstr "Gerber Object"
  8130. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:515
  8131. #: flatcamGUI/ObjectUI.py:837 flatcamGUI/ObjectUI.py:1387
  8132. #| msgid "Name:"
  8133. msgid "Name"
  8134. msgstr "Name"
  8135. #: flatcamGUI/ObjectUI.py:203
  8136. msgid ""
  8137. "Toggle the display of the Gerber Apertures Table.\n"
  8138. "When unchecked, it will delete all mark shapes\n"
  8139. "that are drawn on canvas."
  8140. msgstr ""
  8141. "Toggle the display of the Gerber Apertures Table.\n"
  8142. "When unchecked, it will delete all mark shapes\n"
  8143. "that are drawn on canvas."
  8144. #: flatcamGUI/ObjectUI.py:213
  8145. msgid "Mark All"
  8146. msgstr "Mark All"
  8147. #: flatcamGUI/ObjectUI.py:215
  8148. msgid ""
  8149. "When checked it will display all the apertures.\n"
  8150. "When unchecked, it will delete all mark shapes\n"
  8151. "that are drawn on canvas."
  8152. msgstr ""
  8153. "When checked it will display all the apertures.\n"
  8154. "When unchecked, it will delete all mark shapes\n"
  8155. "that are drawn on canvas."
  8156. #: flatcamGUI/ObjectUI.py:243
  8157. msgid "Mark the aperture instances on canvas."
  8158. msgstr "Mark the aperture instances on canvas."
  8159. #: flatcamGUI/ObjectUI.py:261
  8160. msgid ""
  8161. "Diameter of the cutting tool.\n"
  8162. "If you want to have an isolation path\n"
  8163. "inside the actual shape of the Gerber\n"
  8164. "feature, use a negative value for\n"
  8165. "this parameter."
  8166. msgstr ""
  8167. "Diameter of the cutting tool.\n"
  8168. "If you want to have an isolation path\n"
  8169. "inside the actual shape of the Gerber\n"
  8170. "feature, use a negative value for\n"
  8171. "this parameter."
  8172. #: flatcamGUI/ObjectUI.py:272
  8173. msgid "Passes:"
  8174. msgstr "Passes:"
  8175. #: flatcamGUI/ObjectUI.py:307
  8176. msgid "Combine"
  8177. msgstr "Combine"
  8178. #: flatcamGUI/ObjectUI.py:323
  8179. #| msgid "<b>Generate Isolation Geometry:</b>"
  8180. msgid "Generate Isolation Geometry"
  8181. msgstr "Generate Isolation Geometry"
  8182. #: flatcamGUI/ObjectUI.py:325
  8183. msgid ""
  8184. "Create a Geometry object with toolpaths to cut \n"
  8185. "isolation outside, inside or on both sides of the\n"
  8186. "object. For a Gerber object outside means outside\n"
  8187. "of the Gerber feature and inside means inside of\n"
  8188. "the Gerber feature, if possible at all. This means\n"
  8189. "that only if the Gerber feature has openings inside, they\n"
  8190. "will be isolated. If what is wanted is to cut isolation\n"
  8191. "inside the actual Gerber feature, use a negative tool\n"
  8192. "diameter above."
  8193. msgstr ""
  8194. "Create a Geometry object with toolpaths to cut \n"
  8195. "isolation outside, inside or on both sides of the\n"
  8196. "object. For a Gerber object outside means outside\n"
  8197. "of the Gerber feature and inside means inside of\n"
  8198. "the Gerber feature, if possible at all. This means\n"
  8199. "that only if the Gerber feature has openings inside, they\n"
  8200. "will be isolated. If what is wanted is to cut isolation\n"
  8201. "inside the actual Gerber feature, use a negative tool\n"
  8202. "diameter above."
  8203. #: flatcamGUI/ObjectUI.py:344
  8204. msgid "FULL Geo"
  8205. msgstr "FULL Geo"
  8206. #: flatcamGUI/ObjectUI.py:346
  8207. msgid ""
  8208. "Create the Geometry Object\n"
  8209. "for isolation routing. It contains both\n"
  8210. "the interiors and exteriors geometry."
  8211. msgstr ""
  8212. "Create the Geometry Object\n"
  8213. "for isolation routing. It contains both\n"
  8214. "the interiors and exteriors geometry."
  8215. #: flatcamGUI/ObjectUI.py:355
  8216. msgid "Ext Geo"
  8217. msgstr "Ext Geo"
  8218. #: flatcamGUI/ObjectUI.py:357
  8219. msgid ""
  8220. "Create the Geometry Object\n"
  8221. "for isolation routing containing\n"
  8222. "only the exteriors geometry."
  8223. msgstr ""
  8224. "Create the Geometry Object\n"
  8225. "for isolation routing containing\n"
  8226. "only the exteriors geometry."
  8227. #: flatcamGUI/ObjectUI.py:364
  8228. msgid "Int Geo"
  8229. msgstr "Int Geo"
  8230. #: flatcamGUI/ObjectUI.py:366
  8231. msgid ""
  8232. "Create the Geometry Object\n"
  8233. "for isolation routing containing\n"
  8234. "only the interiors geometry."
  8235. msgstr ""
  8236. "Create the Geometry Object\n"
  8237. "for isolation routing containing\n"
  8238. "only the interiors geometry."
  8239. #: flatcamGUI/ObjectUI.py:382
  8240. #| msgid "<b>Clear N-copper:</b>"
  8241. msgid "Clear N-copper"
  8242. msgstr "Clear N-copper"
  8243. #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:336
  8244. msgid ""
  8245. "Create the Geometry Object\n"
  8246. "for non-copper routing."
  8247. msgstr ""
  8248. "Create the Geometry Object\n"
  8249. "for non-copper routing."
  8250. #: flatcamGUI/ObjectUI.py:398
  8251. #| msgid "<b>Board cutout:</b>"
  8252. msgid "Board cutout"
  8253. msgstr "Board cutout"
  8254. #: flatcamGUI/ObjectUI.py:406 flatcamTools/ToolCutOut.py:328
  8255. msgid "Cutout Tool"
  8256. msgstr "Cutout Tool"
  8257. #: flatcamGUI/ObjectUI.py:408
  8258. msgid ""
  8259. "Generate the geometry for\n"
  8260. "the board cutout."
  8261. msgstr ""
  8262. "Generate the geometry for\n"
  8263. "the board cutout."
  8264. #: flatcamGUI/ObjectUI.py:414
  8265. #| msgid "<b>Non-copper regions:</b>"
  8266. msgid "Non-copper regions"
  8267. msgstr "Non-copper regions"
  8268. #: flatcamGUI/ObjectUI.py:416
  8269. msgid ""
  8270. "Create polygons covering the\n"
  8271. "areas without copper on the PCB.\n"
  8272. "Equivalent to the inverse of this\n"
  8273. "object. Can be used to remove all\n"
  8274. "copper from a specified region."
  8275. msgstr ""
  8276. "Create polygons covering the\n"
  8277. "areas without copper on the PCB.\n"
  8278. "Equivalent to the inverse of this\n"
  8279. "object. Can be used to remove all\n"
  8280. "copper from a specified region."
  8281. #: flatcamGUI/ObjectUI.py:441 flatcamGUI/ObjectUI.py:472
  8282. msgid "Rounded Geo"
  8283. msgstr "Rounded Geo"
  8284. #: flatcamGUI/ObjectUI.py:443
  8285. msgid "Resulting geometry will have rounded corners."
  8286. msgstr "Resulting geometry will have rounded corners."
  8287. #: flatcamGUI/ObjectUI.py:448 flatcamGUI/ObjectUI.py:482
  8288. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  8289. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  8290. msgid "Generate Geo"
  8291. msgstr "Generate Geo"
  8292. #: flatcamGUI/ObjectUI.py:454
  8293. msgid ""
  8294. "Create a geometry surrounding the Gerber object.\n"
  8295. "Square shape."
  8296. msgstr ""
  8297. "Create a geometry surrounding the Gerber object.\n"
  8298. "Square shape."
  8299. #: flatcamGUI/ObjectUI.py:484
  8300. msgid "Generate the Geometry object."
  8301. msgstr "Generate the Geometry object."
  8302. #: flatcamGUI/ObjectUI.py:495
  8303. msgid "Excellon Object"
  8304. msgstr "Excellon Object"
  8305. #: flatcamGUI/ObjectUI.py:506
  8306. msgid "Solid circles."
  8307. msgstr "Solid circles."
  8308. #: flatcamGUI/ObjectUI.py:534 flatcamGUI/ObjectUI.py:856
  8309. msgid "<b>Tools Table</b>"
  8310. msgstr "<b>Tools Table</b>"
  8311. #: flatcamGUI/ObjectUI.py:554
  8312. msgid "Drills"
  8313. msgstr "Drills"
  8314. #: flatcamGUI/ObjectUI.py:554
  8315. msgid "Slots"
  8316. msgstr "Slots"
  8317. #: flatcamGUI/ObjectUI.py:555
  8318. msgid "Offset Z"
  8319. msgstr "Offset Z"
  8320. #: flatcamGUI/ObjectUI.py:559
  8321. msgid ""
  8322. "This is the Tool Number.\n"
  8323. "When ToolChange is checked, on toolchange event this value\n"
  8324. "will be showed as a T1, T2 ... Tn in the Machine Code."
  8325. msgstr ""
  8326. "This is the Tool Number.\n"
  8327. "When ToolChange is checked, on toolchange event this value\n"
  8328. "will be showed as a T1, T2 ... Tn in the Machine Code."
  8329. #: flatcamGUI/ObjectUI.py:563 flatcamGUI/ObjectUI.py:902
  8330. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:95
  8331. msgid ""
  8332. "Tool Diameter. It's value (in current FlatCAM units) \n"
  8333. "is the cut width into the material."
  8334. msgstr ""
  8335. "Tool Diameter. It's value (in current FlatCAM units) \n"
  8336. "is the cut width into the material."
  8337. #: flatcamGUI/ObjectUI.py:566
  8338. msgid ""
  8339. "The number of Drill holes. Holes that are drilled with\n"
  8340. "a drill bit."
  8341. msgstr ""
  8342. "The number of Drill holes. Holes that are drilled with\n"
  8343. "a drill bit."
  8344. #: flatcamGUI/ObjectUI.py:569
  8345. msgid ""
  8346. "The number of Slot holes. Holes that are created by\n"
  8347. "milling them with an endmill bit."
  8348. msgstr ""
  8349. "The number of Slot holes. Holes that are created by\n"
  8350. "milling them with an endmill bit."
  8351. #: flatcamGUI/ObjectUI.py:576
  8352. msgid "Toggle display of the drills for the current tool."
  8353. msgstr "Toggle display of the drills for the current tool."
  8354. #: flatcamGUI/ObjectUI.py:584
  8355. msgid ""
  8356. "Create a CNC Job object\n"
  8357. "for this drill object."
  8358. msgstr ""
  8359. "Create a CNC Job object\n"
  8360. "for this drill object."
  8361. #: flatcamGUI/ObjectUI.py:613 flatcamGUI/ObjectUI.py:1125
  8362. msgid "Tool change"
  8363. msgstr "Tool change"
  8364. #: flatcamGUI/ObjectUI.py:621 flatcamGUI/ObjectUI.py:1118
  8365. msgid "Tool change Z:"
  8366. msgstr "Tool change Z:"
  8367. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1121
  8368. msgid ""
  8369. "Z-axis position (height) for\n"
  8370. "tool change."
  8371. msgstr ""
  8372. "Z-axis position (height) for\n"
  8373. "tool change."
  8374. #: flatcamGUI/ObjectUI.py:634
  8375. msgid ""
  8376. "Tool height just before starting the work.\n"
  8377. "Delete the value if you don't need this feature."
  8378. msgstr ""
  8379. "Tool height just before starting the work.\n"
  8380. "Delete the value if you don't need this feature."
  8381. #: flatcamGUI/ObjectUI.py:644
  8382. msgid ""
  8383. "Z-axis position (height) for\n"
  8384. "the last move."
  8385. msgstr ""
  8386. "Z-axis position (height) for\n"
  8387. "the last move."
  8388. #: flatcamGUI/ObjectUI.py:652
  8389. msgid "Feedrate (Plunge):"
  8390. msgstr "Feedrate (Plunge):"
  8391. #: flatcamGUI/ObjectUI.py:654
  8392. msgid ""
  8393. "Tool speed while drilling\n"
  8394. "(in units per minute).\n"
  8395. "This is for linear move G01."
  8396. msgstr ""
  8397. "Tool speed while drilling\n"
  8398. "(in units per minute).\n"
  8399. "This is for linear move G01."
  8400. #: flatcamGUI/ObjectUI.py:707
  8401. msgid ""
  8402. "The json file that dictates\n"
  8403. "gcode output."
  8404. msgstr ""
  8405. "The json file that dictates\n"
  8406. "gcode output."
  8407. #: flatcamGUI/ObjectUI.py:739
  8408. msgid ""
  8409. "Select from the Tools Table above\n"
  8410. "the tools you want to include."
  8411. msgstr ""
  8412. "Select from the Tools Table above\n"
  8413. "the tools you want to include."
  8414. #: flatcamGUI/ObjectUI.py:746
  8415. msgid "<b>Type: </b>"
  8416. msgstr "<b>Type: </b>"
  8417. #: flatcamGUI/ObjectUI.py:748
  8418. msgid ""
  8419. "Choose what to use for GCode generation:\n"
  8420. "'Drills', 'Slots' or 'Both'.\n"
  8421. "When choosing 'Slots' or 'Both', slots will be\n"
  8422. "converted to a series of drills."
  8423. msgstr ""
  8424. "Choose what to use for GCode generation:\n"
  8425. "'Drills', 'Slots' or 'Both'.\n"
  8426. "When choosing 'Slots' or 'Both', slots will be\n"
  8427. "converted to a series of drills."
  8428. #: flatcamGUI/ObjectUI.py:763
  8429. msgid "Create GCode"
  8430. msgstr "Create GCode"
  8431. #: flatcamGUI/ObjectUI.py:765
  8432. msgid "Generate the CNC Job."
  8433. msgstr "Generate the CNC Job."
  8434. #: flatcamGUI/ObjectUI.py:777
  8435. msgid ""
  8436. "Select from the Tools Table above\n"
  8437. " the hole dias that are to be milled."
  8438. msgstr ""
  8439. "Select from the Tools Table above\n"
  8440. " the hole dias that are to be milled."
  8441. #: flatcamGUI/ObjectUI.py:784
  8442. msgid "Drills Tool dia:"
  8443. msgstr "Drills Tool dia:"
  8444. #: flatcamGUI/ObjectUI.py:791
  8445. msgid "Mill Drills Geo"
  8446. msgstr "Mill Drills Geo"
  8447. #: flatcamGUI/ObjectUI.py:793
  8448. msgid ""
  8449. "Create the Geometry Object\n"
  8450. "for milling DRILLS toolpaths."
  8451. msgstr ""
  8452. "Create the Geometry Object\n"
  8453. "for milling DRILLS toolpaths."
  8454. #: flatcamGUI/ObjectUI.py:800
  8455. msgid "Slots Tool dia:"
  8456. msgstr "Slots Tool dia:"
  8457. #: flatcamGUI/ObjectUI.py:807
  8458. msgid "Mill Slots Geo"
  8459. msgstr "Mill Slots Geo"
  8460. #: flatcamGUI/ObjectUI.py:809
  8461. msgid ""
  8462. "Create the Geometry Object\n"
  8463. "for milling SLOTS toolpaths."
  8464. msgstr ""
  8465. "Create the Geometry Object\n"
  8466. "for milling SLOTS toolpaths."
  8467. #: flatcamGUI/ObjectUI.py:827
  8468. msgid "Geometry Object"
  8469. msgstr "Geometry Object"
  8470. #: flatcamGUI/ObjectUI.py:858
  8471. msgid ""
  8472. "Tools in this Geometry object used for cutting.\n"
  8473. "The 'Offset' entry will set an offset for the cut.\n"
  8474. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8475. "'Type' entry is only informative and it allow to know the \n"
  8476. "intent of using the current tool. \n"
  8477. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8478. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8479. "ball(B), or V-Shaped(V). \n"
  8480. "When V-shaped is selected the 'Type' entry is automatically \n"
  8481. "set to Isolation, the CutZ parameter in the UI form is\n"
  8482. "grayed out and Cut Z is automatically calculated from the newly \n"
  8483. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8484. msgstr ""
  8485. "Tools in this Geometry object used for cutting.\n"
  8486. "The 'Offset' entry will set an offset for the cut.\n"
  8487. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8488. "'Type' entry is only informative and it allow to know the \n"
  8489. "intent of using the current tool. \n"
  8490. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8491. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8492. "ball(B), or V-Shaped(V). \n"
  8493. "When V-shaped is selected the 'Type' entry is automatically \n"
  8494. "set to Isolation, the CutZ parameter in the UI form is\n"
  8495. "grayed out and Cut Z is automatically calculated from the newly \n"
  8496. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8497. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1483
  8498. msgid "Dia"
  8499. msgstr "Dia"
  8500. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1483
  8501. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:81
  8502. msgid "TT"
  8503. msgstr "TT"
  8504. #: flatcamGUI/ObjectUI.py:896
  8505. msgid ""
  8506. "This is the Tool Number.\n"
  8507. "When ToolChange is checked, on toolchange event this value\n"
  8508. "will be showed as a T1, T2 ... Tn"
  8509. msgstr ""
  8510. "This is the Tool Number.\n"
  8511. "When ToolChange is checked, on toolchange event this value\n"
  8512. "will be showed as a T1, T2 ... Tn"
  8513. #: flatcamGUI/ObjectUI.py:907
  8514. msgid ""
  8515. "The value for the Offset can be:\n"
  8516. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8517. "line.\n"
  8518. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8519. "'pocket'.\n"
  8520. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8521. msgstr ""
  8522. "The value for the Offset can be:\n"
  8523. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8524. "line.\n"
  8525. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8526. "'pocket'.\n"
  8527. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8528. #: flatcamGUI/ObjectUI.py:914
  8529. msgid ""
  8530. "The (Operation) Type has only informative value. Usually the UI form "
  8531. "values \n"
  8532. "are choosed based on the operation type and this will serve as a reminder.\n"
  8533. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8534. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8535. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8536. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8537. "tip."
  8538. msgstr ""
  8539. "The (Operation) Type has only informative value. Usually the UI form "
  8540. "values \n"
  8541. "are choosed based on the operation type and this will serve as a reminder.\n"
  8542. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8543. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8544. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8545. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8546. "tip."
  8547. #: flatcamGUI/ObjectUI.py:923
  8548. msgid ""
  8549. "The Tool Type (TT) can be:\n"
  8550. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8551. "cut width in material\n"
  8552. "is exactly the tool diameter.\n"
  8553. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8554. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8555. "two additional UI form\n"
  8556. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8557. "the Z-Cut parameter such\n"
  8558. "as the cut width into material will be equal with the value in the Tool "
  8559. "Diameter column of this table.\n"
  8560. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8561. "as Isolation."
  8562. msgstr ""
  8563. "The Tool Type (TT) can be:\n"
  8564. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8565. "cut width in material\n"
  8566. "is exactly the tool diameter.\n"
  8567. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8568. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8569. "two additional UI form\n"
  8570. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8571. "the Z-Cut parameter such\n"
  8572. "as the cut width into material will be equal with the value in the Tool "
  8573. "Diameter column of this table.\n"
  8574. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8575. "as Isolation."
  8576. #: flatcamGUI/ObjectUI.py:935
  8577. msgid ""
  8578. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8579. "that holds the geometry\n"
  8580. "data into the tools. For those geometries, deleting the tool will delete the "
  8581. "geometry data also,\n"
  8582. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8583. "plot on canvas\n"
  8584. "for the corresponding tool."
  8585. msgstr ""
  8586. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8587. "that holds the geometry\n"
  8588. "data into the tools. For those geometries, deleting the tool will delete the "
  8589. "geometry data also,\n"
  8590. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8591. "plot on canvas\n"
  8592. "for the corresponding tool."
  8593. #: flatcamGUI/ObjectUI.py:948
  8594. msgid "Tool Offset:"
  8595. msgstr "Tool Offset:"
  8596. #: flatcamGUI/ObjectUI.py:951
  8597. msgid ""
  8598. "The value to offset the cut when \n"
  8599. "the Offset type selected is 'Offset'.\n"
  8600. "The value can be positive for 'outside'\n"
  8601. "cut and negative for 'inside' cut."
  8602. msgstr ""
  8603. "The value to offset the cut when \n"
  8604. "the Offset type selected is 'Offset'.\n"
  8605. "The value can be positive for 'outside'\n"
  8606. "cut and negative for 'inside' cut."
  8607. #: flatcamGUI/ObjectUI.py:974
  8608. msgid "<b>Tool Dia:</b>"
  8609. msgstr "<b>Tool Dia:</b>"
  8610. #: flatcamGUI/ObjectUI.py:993 flatcamTools/ToolNonCopperClear.py:150
  8611. #: flatcamTools/ToolPaint.py:134
  8612. msgid ""
  8613. "Add a new tool to the Tool Table\n"
  8614. "with the diameter specified above."
  8615. msgstr ""
  8616. "Add a new tool to the Tool Table\n"
  8617. "with the diameter specified above."
  8618. #: flatcamGUI/ObjectUI.py:1001
  8619. msgid ""
  8620. "Copy a selection of tools in the Tool Table\n"
  8621. "by first selecting a row in the Tool Table."
  8622. msgstr ""
  8623. "Copy a selection of tools in the Tool Table\n"
  8624. "by first selecting a row in the Tool Table."
  8625. #: flatcamGUI/ObjectUI.py:1009
  8626. msgid ""
  8627. "Delete a selection of tools in the Tool Table\n"
  8628. "by first selecting a row in the Tool Table."
  8629. msgstr ""
  8630. "Delete a selection of tools in the Tool Table\n"
  8631. "by first selecting a row in the Tool Table."
  8632. #: flatcamGUI/ObjectUI.py:1025
  8633. msgid "<b>Tool Data</b>"
  8634. msgstr "<b>Tool Data</b>"
  8635. #: flatcamGUI/ObjectUI.py:1028
  8636. msgid ""
  8637. "The data used for creating GCode.\n"
  8638. "Each tool store it's own set of such data."
  8639. msgstr ""
  8640. "The data used for creating GCode.\n"
  8641. "Each tool store it's own set of such data."
  8642. #: flatcamGUI/ObjectUI.py:1046
  8643. msgid "V-Tip Dia:"
  8644. msgstr "V-Tip Dia:"
  8645. #: flatcamGUI/ObjectUI.py:1049
  8646. msgid "The tip diameter for V-Shape Tool"
  8647. msgstr "The tip diameter for V-Shape Tool"
  8648. #: flatcamGUI/ObjectUI.py:1057
  8649. msgid "V-Tip Angle:"
  8650. msgstr "V-Tip Angle:"
  8651. #: flatcamGUI/ObjectUI.py:1060
  8652. msgid ""
  8653. "The tip angle for V-Shape Tool.\n"
  8654. "In degree."
  8655. msgstr ""
  8656. "The tip angle for V-Shape Tool.\n"
  8657. "In degree."
  8658. #: flatcamGUI/ObjectUI.py:1081
  8659. msgid "Multi-Depth:"
  8660. msgstr "Multi-Depth:"
  8661. #: flatcamGUI/ObjectUI.py:1084
  8662. msgid ""
  8663. "Use multiple passes to limit\n"
  8664. "the cut depth in each pass. Will\n"
  8665. "cut multiple times until Cut Z is\n"
  8666. "reached.\n"
  8667. "To the right, input the depth of \n"
  8668. "each pass (positive value)."
  8669. msgstr ""
  8670. "Use multiple passes to limit\n"
  8671. "the cut depth in each pass. Will\n"
  8672. "cut multiple times until Cut Z is\n"
  8673. "reached.\n"
  8674. "To the right, input the depth of \n"
  8675. "each pass (positive value)."
  8676. #: flatcamGUI/ObjectUI.py:1097
  8677. msgid "Depth of each pass (positive)."
  8678. msgstr "Depth of each pass (positive)."
  8679. #: flatcamGUI/ObjectUI.py:1128
  8680. msgid ""
  8681. "Include tool-change sequence\n"
  8682. "in the Machine Code (Pause for tool change)."
  8683. msgstr ""
  8684. "Include tool-change sequence\n"
  8685. "in the Machine Code (Pause for tool change)."
  8686. #: flatcamGUI/ObjectUI.py:1154
  8687. msgid ""
  8688. "This is the height (Z) at which the CNC\n"
  8689. "will go as the last move."
  8690. msgstr ""
  8691. "This is the height (Z) at which the CNC\n"
  8692. "will go as the last move."
  8693. #: flatcamGUI/ObjectUI.py:1175
  8694. msgid "Feed Rate Z (Plunge):"
  8695. msgstr "Feed Rate Z (Plunge):"
  8696. #: flatcamGUI/ObjectUI.py:1178
  8697. msgid ""
  8698. "Cutting speed in the Z\n"
  8699. "plane in units per minute"
  8700. msgstr ""
  8701. "Cutting speed in the Z\n"
  8702. "plane in units per minute"
  8703. #: flatcamGUI/ObjectUI.py:1187
  8704. msgid "Feed Rate Rapids:"
  8705. msgstr "Feed Rate Rapids:"
  8706. #: flatcamGUI/ObjectUI.py:1190
  8707. msgid ""
  8708. "Cutting speed in the XY\n"
  8709. "plane in units per minute\n"
  8710. "(in units per minute).\n"
  8711. "This is for the rapid move G00.\n"
  8712. "It is useful only for Marlin,\n"
  8713. "ignore for any other cases."
  8714. msgstr ""
  8715. "Cutting speed in the XY\n"
  8716. "plane in units per minute\n"
  8717. "(in units per minute).\n"
  8718. "This is for the rapid move G00.\n"
  8719. "It is useful only for Marlin,\n"
  8720. "ignore for any other cases."
  8721. #: flatcamGUI/ObjectUI.py:1206
  8722. msgid "Cut over 1st pt"
  8723. msgstr "Cut over 1st pt"
  8724. #: flatcamGUI/ObjectUI.py:1221
  8725. msgid ""
  8726. "Speed of the spindle in RPM (optional).\n"
  8727. "If LASER postprocessor is used,\n"
  8728. "this value is the power of laser."
  8729. msgstr ""
  8730. "Speed of the spindle in RPM (optional).\n"
  8731. "If LASER postprocessor is used,\n"
  8732. "this value is the power of laser."
  8733. #: flatcamGUI/ObjectUI.py:1250
  8734. msgid "PostProcessor:"
  8735. msgstr "PostProcessor:"
  8736. #: flatcamGUI/ObjectUI.py:1253
  8737. msgid ""
  8738. "The Postprocessor file that dictates\n"
  8739. "the Machine Code (like GCode, RML, HPGL) output."
  8740. msgstr ""
  8741. "The Postprocessor file that dictates\n"
  8742. "the Machine Code (like GCode, RML, HPGL) output."
  8743. #: flatcamGUI/ObjectUI.py:1291
  8744. msgid ""
  8745. "Add at least one tool in the tool-table.\n"
  8746. "Click the header to select all, or Ctrl + LMB\n"
  8747. "for custom selection of tools."
  8748. msgstr ""
  8749. "Add at least one tool in the tool-table.\n"
  8750. "Click the header to select all, or Ctrl + LMB\n"
  8751. "for custom selection of tools."
  8752. #: flatcamGUI/ObjectUI.py:1298
  8753. msgid "Generate"
  8754. msgstr "Generate"
  8755. #: flatcamGUI/ObjectUI.py:1301
  8756. msgid "Generate the CNC Job object."
  8757. msgstr "Generate the CNC Job object."
  8758. #: flatcamGUI/ObjectUI.py:1309
  8759. msgid "<b>Paint Area:</b>"
  8760. msgstr "<b>Paint Area:</b>"
  8761. #: flatcamGUI/ObjectUI.py:1324
  8762. msgid "Launch Paint Tool in Tools Tab."
  8763. msgstr "Launch Paint Tool in Tools Tab."
  8764. #: flatcamGUI/ObjectUI.py:1341
  8765. msgid "CNC Job Object"
  8766. msgstr "CNC Job Object"
  8767. #: flatcamGUI/ObjectUI.py:1359
  8768. #| msgid "Plot kind:"
  8769. msgid "Plot kind"
  8770. msgstr "Plot kind"
  8771. #: flatcamGUI/ObjectUI.py:1375
  8772. #| msgid "Display Annotation:"
  8773. msgid "Display Annotation"
  8774. msgstr "Display Annotation"
  8775. #: flatcamGUI/ObjectUI.py:1393
  8776. #| msgid "<b>Travelled dist.:</b>"
  8777. msgid "Travelled dist."
  8778. msgstr "Travelled dist."
  8779. #: flatcamGUI/ObjectUI.py:1395 flatcamGUI/ObjectUI.py:1400
  8780. msgid ""
  8781. "This is the total travelled distance on X-Y plane.\n"
  8782. "In current units."
  8783. msgstr ""
  8784. "This is the total travelled distance on X-Y plane.\n"
  8785. "In current units."
  8786. #: flatcamGUI/ObjectUI.py:1405
  8787. #| msgid "<b>Estimated time:</b>"
  8788. msgid "Estimated time"
  8789. msgstr "Estimated time"
  8790. #: flatcamGUI/ObjectUI.py:1407 flatcamGUI/ObjectUI.py:1412
  8791. msgid ""
  8792. "This is the estimated time to do the routing/drilling,\n"
  8793. "without the time spent in ToolChange events."
  8794. msgstr ""
  8795. "This is the estimated time to do the routing/drilling,\n"
  8796. "without the time spent in ToolChange events."
  8797. #: flatcamGUI/ObjectUI.py:1447
  8798. msgid "<b>CNC Tools Table</b>"
  8799. msgstr "<b>CNC Tools Table</b>"
  8800. #: flatcamGUI/ObjectUI.py:1450
  8801. msgid ""
  8802. "Tools in this CNCJob object used for cutting.\n"
  8803. "The tool diameter is used for plotting on canvas.\n"
  8804. "The 'Offset' entry will set an offset for the cut.\n"
  8805. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8806. "'Type' entry is only informative and it allow to know the \n"
  8807. "intent of using the current tool. \n"
  8808. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8809. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8810. "ball(B), or V-Shaped(V)."
  8811. msgstr ""
  8812. "Tools in this CNCJob object used for cutting.\n"
  8813. "The tool diameter is used for plotting on canvas.\n"
  8814. "The 'Offset' entry will set an offset for the cut.\n"
  8815. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8816. "'Type' entry is only informative and it allow to know the \n"
  8817. "intent of using the current tool. \n"
  8818. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8819. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8820. "ball(B), or V-Shaped(V)."
  8821. #: flatcamGUI/ObjectUI.py:1484
  8822. msgid "P"
  8823. msgstr "P"
  8824. #: flatcamGUI/ObjectUI.py:1490
  8825. msgid "Update Plot"
  8826. msgstr "Update Plot"
  8827. #: flatcamGUI/ObjectUI.py:1492
  8828. msgid "Update the plot."
  8829. msgstr "Update the plot."
  8830. #: flatcamGUI/ObjectUI.py:1499
  8831. #| msgid "<b>Export CNC Code:</b>"
  8832. msgid "Export CNC Code"
  8833. msgstr "Export CNC Code"
  8834. #: flatcamGUI/ObjectUI.py:1507
  8835. msgid "Prepend to CNC Code:"
  8836. msgstr "Prepend to CNC Code:"
  8837. #: flatcamGUI/ObjectUI.py:1510
  8838. msgid ""
  8839. "Type here any G-Code commands you would\n"
  8840. "like to add to the beginning of the generated file."
  8841. msgstr ""
  8842. "Type here any G-Code commands you would\n"
  8843. "like to add to the beginning of the generated file."
  8844. #: flatcamGUI/ObjectUI.py:1520
  8845. msgid "Append to CNC Code:"
  8846. msgstr "Append to CNC Code:"
  8847. #: flatcamGUI/ObjectUI.py:1544
  8848. msgid ""
  8849. "Type here any G-Code commands you would\n"
  8850. "like to be executed when Toolchange event is encountered.\n"
  8851. "This will constitute a Custom Toolchange GCode,\n"
  8852. "or a Toolchange Macro.\n"
  8853. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8854. "\n"
  8855. "WARNING: it can be used only with a postprocessor file\n"
  8856. "that has 'toolchange_custom' in it's name and this is built\n"
  8857. "having as template the 'Toolchange Custom' posprocessor file."
  8858. msgstr ""
  8859. "Type here any G-Code commands you would\n"
  8860. "like to be executed when Toolchange event is encountered.\n"
  8861. "This will constitute a Custom Toolchange GCode,\n"
  8862. "or a Toolchange Macro.\n"
  8863. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8864. "\n"
  8865. "WARNING: it can be used only with a postprocessor file\n"
  8866. "that has 'toolchange_custom' in it's name and this is built\n"
  8867. "having as template the 'Toolchange Custom' posprocessor file."
  8868. #: flatcamGUI/ObjectUI.py:1592
  8869. msgid "z_cut = depth where to cut"
  8870. msgstr "z_cut = depth where to cut"
  8871. #: flatcamGUI/ObjectUI.py:1593
  8872. msgid "z_move = height where to travel"
  8873. msgstr "z_move = height where to travel"
  8874. #: flatcamGUI/ObjectUI.py:1612
  8875. msgid "View CNC Code"
  8876. msgstr "View CNC Code"
  8877. #: flatcamGUI/ObjectUI.py:1615
  8878. msgid ""
  8879. "Opens TAB to view/modify/print G-Code\n"
  8880. "file."
  8881. msgstr ""
  8882. "Opens TAB to view/modify/print G-Code\n"
  8883. "file."
  8884. #: flatcamGUI/ObjectUI.py:1621
  8885. msgid "Save CNC Code"
  8886. msgstr "Save CNC Code"
  8887. #: flatcamGUI/ObjectUI.py:1624
  8888. msgid ""
  8889. "Opens dialog to save G-Code\n"
  8890. "file."
  8891. msgstr ""
  8892. "Opens dialog to save G-Code\n"
  8893. "file."
  8894. #: flatcamTools/ToolCalculators.py:24
  8895. msgid "Calculators"
  8896. msgstr "Calculators"
  8897. #: flatcamTools/ToolCalculators.py:26
  8898. msgid "Units Calculator"
  8899. msgstr "Units Calculator"
  8900. #: flatcamTools/ToolCalculators.py:68
  8901. msgid "Here you enter the value to be converted from INCH to MM"
  8902. msgstr "Here you enter the value to be converted from INCH to MM"
  8903. #: flatcamTools/ToolCalculators.py:73
  8904. msgid "Here you enter the value to be converted from MM to INCH"
  8905. msgstr "Here you enter the value to be converted from MM to INCH"
  8906. #: flatcamTools/ToolCalculators.py:96
  8907. msgid ""
  8908. "This is the diameter of the tool tip.\n"
  8909. "The manufacturer specifies it."
  8910. msgstr ""
  8911. "This is the diameter of the tool tip.\n"
  8912. "The manufacturer specifies it."
  8913. #: flatcamTools/ToolCalculators.py:99
  8914. msgid "Tip Angle:"
  8915. msgstr "Tip Angle:"
  8916. #: flatcamTools/ToolCalculators.py:103
  8917. msgid ""
  8918. "This is the angle of the tip of the tool.\n"
  8919. "It is specified by manufacturer."
  8920. msgstr ""
  8921. "This is the angle of the tip of the tool.\n"
  8922. "It is specified by manufacturer."
  8923. #: flatcamTools/ToolCalculators.py:110
  8924. msgid ""
  8925. "This is the depth to cut into the material.\n"
  8926. "In the CNCJob is the CutZ parameter."
  8927. msgstr ""
  8928. "This is the depth to cut into the material.\n"
  8929. "In the CNCJob is the CutZ parameter."
  8930. #: flatcamTools/ToolCalculators.py:113
  8931. msgid "Tool Diameter:"
  8932. msgstr "Tool Diameter:"
  8933. #: flatcamTools/ToolCalculators.py:117
  8934. msgid ""
  8935. "This is the tool diameter to be entered into\n"
  8936. "FlatCAM Gerber section.\n"
  8937. "In the CNCJob section it is called >Tool dia<."
  8938. msgstr ""
  8939. "This is the tool diameter to be entered into\n"
  8940. "FlatCAM Gerber section.\n"
  8941. "In the CNCJob section it is called >Tool dia<."
  8942. #: flatcamTools/ToolCalculators.py:128 flatcamTools/ToolCalculators.py:209
  8943. msgid "Calculate"
  8944. msgstr "Calculate"
  8945. #: flatcamTools/ToolCalculators.py:131
  8946. msgid ""
  8947. "Calculate either the Cut Z or the effective tool diameter,\n"
  8948. " depending on which is desired and which is known. "
  8949. msgstr ""
  8950. "Calculate either the Cut Z or the effective tool diameter,\n"
  8951. " depending on which is desired and which is known. "
  8952. #: flatcamTools/ToolCalculators.py:185
  8953. msgid "Current Value:"
  8954. msgstr "Current Value:"
  8955. #: flatcamTools/ToolCalculators.py:189
  8956. msgid ""
  8957. "This is the current intensity value\n"
  8958. "to be set on the Power Supply. In Amps."
  8959. msgstr ""
  8960. "This is the current intensity value\n"
  8961. "to be set on the Power Supply. In Amps."
  8962. #: flatcamTools/ToolCalculators.py:193
  8963. msgid "Time:"
  8964. msgstr "Time:"
  8965. #: flatcamTools/ToolCalculators.py:197
  8966. msgid ""
  8967. "This is the calculated time required for the procedure.\n"
  8968. "In minutes."
  8969. msgstr ""
  8970. "This is the calculated time required for the procedure.\n"
  8971. "In minutes."
  8972. #: flatcamTools/ToolCalculators.py:212
  8973. msgid ""
  8974. "Calculate the current intensity value and the procedure time,\n"
  8975. "depending on the parameters above"
  8976. msgstr ""
  8977. "Calculate the current intensity value and the procedure time,\n"
  8978. "depending on the parameters above"
  8979. #: flatcamTools/ToolCalculators.py:256
  8980. msgid "Calc. Tool"
  8981. msgstr "Calc. Tool"
  8982. #: flatcamTools/ToolCutOut.py:18
  8983. msgid "Cutout PCB"
  8984. msgstr "Cutout PCB"
  8985. #: flatcamTools/ToolCutOut.py:54
  8986. msgid "Obj Type:"
  8987. msgstr "Obj Type:"
  8988. #: flatcamTools/ToolCutOut.py:56
  8989. msgid ""
  8990. "Specify the type of object to be cutout.\n"
  8991. "It can be of type: Gerber or Geometry.\n"
  8992. "What is selected here will dictate the kind\n"
  8993. "of objects that will populate the 'Object' combobox."
  8994. msgstr ""
  8995. "Specify the type of object to be cutout.\n"
  8996. "It can be of type: Gerber or Geometry.\n"
  8997. "What is selected here will dictate the kind\n"
  8998. "of objects that will populate the 'Object' combobox."
  8999. #: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolPanelize.py:71
  9000. msgid "Object:"
  9001. msgstr "Object:"
  9002. #: flatcamTools/ToolCutOut.py:72
  9003. msgid "Object to be cutout. "
  9004. msgstr "Object to be cutout. "
  9005. #: flatcamTools/ToolCutOut.py:94
  9006. msgid ""
  9007. "Diameter of the tool used to cutout\n"
  9008. "the PCB shape out of the surrounding material."
  9009. msgstr ""
  9010. "Diameter of the tool used to cutout\n"
  9011. "the PCB shape out of the surrounding material."
  9012. #: flatcamTools/ToolCutOut.py:103
  9013. msgid ""
  9014. "Margin over bounds. A positive value here\n"
  9015. "will make the cutout of the PCB further from\n"
  9016. "the actual PCB border"
  9017. msgstr ""
  9018. "Margin over bounds. A positive value here\n"
  9019. "will make the cutout of the PCB further from\n"
  9020. "the actual PCB border"
  9021. #: flatcamTools/ToolCutOut.py:113
  9022. msgid ""
  9023. "The size of the bridge gaps in the cutout\n"
  9024. "used to keep the board connected to\n"
  9025. "the surrounding material (the one \n"
  9026. "from which the PCB is cutout)."
  9027. msgstr ""
  9028. "The size of the bridge gaps in the cutout\n"
  9029. "used to keep the board connected to\n"
  9030. "the surrounding material (the one \n"
  9031. "from which the PCB is cutout)."
  9032. #: flatcamTools/ToolCutOut.py:132
  9033. msgid ""
  9034. "Create a convex shape surrounding the entire PCB.\n"
  9035. "Used only if the source object type is Gerber."
  9036. msgstr ""
  9037. "Create a convex shape surrounding the entire PCB.\n"
  9038. "Used only if the source object type is Gerber."
  9039. #: flatcamTools/ToolCutOut.py:138
  9040. msgid "A. Automatic Bridge Gaps"
  9041. msgstr "A. Automatic Bridge Gaps"
  9042. #: flatcamTools/ToolCutOut.py:140
  9043. msgid "This section handle creation of automatic bridge gaps."
  9044. msgstr "This section handle creation of automatic bridge gaps."
  9045. #: flatcamTools/ToolCutOut.py:151
  9046. msgid ""
  9047. "Number of gaps used for the Automatic cutout.\n"
  9048. "There can be maximum 8 bridges/gaps.\n"
  9049. "The choices are:\n"
  9050. "- lr - left + right\n"
  9051. "- tb - top + bottom\n"
  9052. "- 4 - left + right +top + bottom\n"
  9053. "- 2lr - 2*left + 2*right\n"
  9054. "- 2tb - 2*top + 2*bottom\n"
  9055. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  9056. msgstr ""
  9057. "Number of gaps used for the Automatic cutout.\n"
  9058. "There can be maximum 8 bridges/gaps.\n"
  9059. "The choices are:\n"
  9060. "- lr - left + right\n"
  9061. "- tb - top + bottom\n"
  9062. "- 4 - left + right +top + bottom\n"
  9063. "- 2lr - 2*left + 2*right\n"
  9064. "- 2tb - 2*top + 2*bottom\n"
  9065. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  9066. #: flatcamTools/ToolCutOut.py:174
  9067. msgid "FreeForm:"
  9068. msgstr "FreeForm:"
  9069. #: flatcamTools/ToolCutOut.py:176
  9070. msgid ""
  9071. "The cutout shape can be of ny shape.\n"
  9072. "Useful when the PCB has a non-rectangular shape."
  9073. msgstr ""
  9074. "The cutout shape can be of ny shape.\n"
  9075. "Useful when the PCB has a non-rectangular shape."
  9076. #: flatcamTools/ToolCutOut.py:185
  9077. msgid ""
  9078. "Cutout the selected object.\n"
  9079. "The cutout shape can be of any shape.\n"
  9080. "Useful when the PCB has a non-rectangular shape."
  9081. msgstr ""
  9082. "Cutout the selected object.\n"
  9083. "The cutout shape can be of any shape.\n"
  9084. "Useful when the PCB has a non-rectangular shape."
  9085. #: flatcamTools/ToolCutOut.py:194
  9086. msgid "Rectangular:"
  9087. msgstr "Rectangular:"
  9088. #: flatcamTools/ToolCutOut.py:196
  9089. msgid ""
  9090. "The resulting cutout shape is\n"
  9091. "always a rectangle shape and it will be\n"
  9092. "the bounding box of the Object."
  9093. msgstr ""
  9094. "The resulting cutout shape is\n"
  9095. "always a rectangle shape and it will be\n"
  9096. "the bounding box of the Object."
  9097. #: flatcamTools/ToolCutOut.py:205
  9098. msgid ""
  9099. "Cutout the selected object.\n"
  9100. "The resulting cutout shape is\n"
  9101. "always a rectangle shape and it will be\n"
  9102. "the bounding box of the Object."
  9103. msgstr ""
  9104. "Cutout the selected object.\n"
  9105. "The resulting cutout shape is\n"
  9106. "always a rectangle shape and it will be\n"
  9107. "the bounding box of the Object."
  9108. #: flatcamTools/ToolCutOut.py:213
  9109. msgid "B. Manual Bridge Gaps"
  9110. msgstr "B. Manual Bridge Gaps"
  9111. #: flatcamTools/ToolCutOut.py:215
  9112. msgid ""
  9113. "This section handle creation of manual bridge gaps.\n"
  9114. "This is done by mouse clicking on the perimeter of the\n"
  9115. "Geometry object that is used as a cutout object. "
  9116. msgstr ""
  9117. "This section handle creation of manual bridge gaps.\n"
  9118. "This is done by mouse clicking on the perimeter of the\n"
  9119. "Geometry object that is used as a cutout object. "
  9120. #: flatcamTools/ToolCutOut.py:231
  9121. msgid "Geo Obj:"
  9122. msgstr "Geo Obj:"
  9123. #: flatcamTools/ToolCutOut.py:233
  9124. msgid "Geometry object used to create the manual cutout."
  9125. msgstr "Geometry object used to create the manual cutout."
  9126. #: flatcamTools/ToolCutOut.py:244
  9127. msgid "Manual Geo:"
  9128. msgstr "Manual Geo:"
  9129. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  9130. msgid ""
  9131. "If the object to be cutout is a Gerber\n"
  9132. "first create a Geometry that surrounds it,\n"
  9133. "to be used as the cutout, if one doesn't exist yet.\n"
  9134. "Select the source Gerber file in the top object combobox."
  9135. msgstr ""
  9136. "If the object to be cutout is a Gerber\n"
  9137. "first create a Geometry that surrounds it,\n"
  9138. "to be used as the cutout, if one doesn't exist yet.\n"
  9139. "Select the source Gerber file in the top object combobox."
  9140. #: flatcamTools/ToolCutOut.py:266
  9141. msgid "Manual Add Bridge Gaps:"
  9142. msgstr "Manual Add Bridge Gaps:"
  9143. #: flatcamTools/ToolCutOut.py:268
  9144. msgid ""
  9145. "Use the left mouse button (LMB) click\n"
  9146. "to create a bridge gap to separate the PCB from\n"
  9147. "the surrounding material."
  9148. msgstr ""
  9149. "Use the left mouse button (LMB) click\n"
  9150. "to create a bridge gap to separate the PCB from\n"
  9151. "the surrounding material."
  9152. #: flatcamTools/ToolCutOut.py:275
  9153. msgid "Generate Gap"
  9154. msgstr "Generate Gap"
  9155. #: flatcamTools/ToolCutOut.py:277
  9156. msgid ""
  9157. "Use the left mouse button (LMB) click\n"
  9158. "to create a bridge gap to separate the PCB from\n"
  9159. "the surrounding material.\n"
  9160. "The LMB click has to be done on the perimeter of\n"
  9161. "the Geometry object used as a cutout geometry."
  9162. msgstr ""
  9163. "Use the left mouse button (LMB) click\n"
  9164. "to create a bridge gap to separate the PCB from\n"
  9165. "the surrounding material.\n"
  9166. "The LMB click has to be done on the perimeter of\n"
  9167. "the Geometry object used as a cutout geometry."
  9168. #: flatcamTools/ToolCutOut.py:358 flatcamTools/ToolCutOut.py:552
  9169. #: flatcamTools/ToolNonCopperClear.py:843
  9170. #: flatcamTools/ToolNonCopperClear.py:851
  9171. #: flatcamTools/ToolNonCopperClear.py:859 flatcamTools/ToolPaint.py:839
  9172. #: flatcamTools/ToolPaint.py:968 flatcamTools/ToolPanelize.py:353
  9173. #: flatcamTools/ToolPanelize.py:368 flatcamTools/ToolSub.py:244
  9174. #: flatcamTools/ToolSub.py:257 flatcamTools/ToolSub.py:437
  9175. #: flatcamTools/ToolSub.py:450
  9176. #, python-format
  9177. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  9178. msgstr "[ERROR_NOTCL] Could not retrieve object: %s"
  9179. #: flatcamTools/ToolCutOut.py:362
  9180. msgid ""
  9181. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  9182. "Select one and try again."
  9183. msgstr ""
  9184. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  9185. "Select one and try again."
  9186. #: flatcamTools/ToolCutOut.py:377
  9187. msgid ""
  9188. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9189. "number."
  9190. msgstr ""
  9191. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9192. "number."
  9193. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:585
  9194. #: flatcamTools/ToolCutOut.py:854
  9195. msgid ""
  9196. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  9197. msgstr ""
  9198. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  9199. #: flatcamTools/ToolCutOut.py:403 flatcamTools/ToolCutOut.py:596
  9200. #: flatcamTools/ToolCutOut.py:742
  9201. msgid ""
  9202. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  9203. msgstr ""
  9204. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  9205. #: flatcamTools/ToolCutOut.py:410 flatcamTools/ToolCutOut.py:603
  9206. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  9207. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  9208. #: flatcamTools/ToolCutOut.py:414 flatcamTools/ToolCutOut.py:607
  9209. msgid ""
  9210. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  9211. "or 8. Fill in a correct value and retry. "
  9212. msgstr ""
  9213. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  9214. "or 8. Fill in a correct value and retry. "
  9215. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:612
  9216. msgid ""
  9217. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  9218. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  9219. "Geometry,\n"
  9220. "and after that perform Cutout."
  9221. msgstr ""
  9222. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  9223. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  9224. "Geometry,\n"
  9225. "and after that perform Cutout."
  9226. #: flatcamTools/ToolCutOut.py:535 flatcamTools/ToolCutOut.py:712
  9227. msgid "[success] Any form CutOut operation finished."
  9228. msgstr "[success] Any form CutOut operation finished."
  9229. #: flatcamTools/ToolCutOut.py:556 flatcamTools/ToolPaint.py:843
  9230. #: flatcamTools/ToolPanelize.py:359
  9231. #, python-format
  9232. msgid "[ERROR_NOTCL] Object not found: %s"
  9233. msgstr "[ERROR_NOTCL] Object not found: %s"
  9234. #: flatcamTools/ToolCutOut.py:570 flatcamTools/ToolCutOut.py:732
  9235. #: flatcamTools/ToolCutOut.py:839
  9236. msgid ""
  9237. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9238. "number."
  9239. msgstr ""
  9240. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9241. "number."
  9242. #: flatcamTools/ToolCutOut.py:717
  9243. msgid ""
  9244. "Click on the selected geometry object perimeter to create a bridge gap ..."
  9245. msgstr ""
  9246. "Click on the selected geometry object perimeter to create a bridge gap ..."
  9247. #: flatcamTools/ToolCutOut.py:758
  9248. msgid "Making manual bridge gap..."
  9249. msgstr "Making manual bridge gap..."
  9250. #: flatcamTools/ToolCutOut.py:782
  9251. #, python-format
  9252. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  9253. msgstr "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  9254. #: flatcamTools/ToolCutOut.py:786
  9255. #, python-format
  9256. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  9257. msgstr "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  9258. #: flatcamTools/ToolCutOut.py:796
  9259. msgid "[success] Added manual Bridge Gap."
  9260. msgstr "[success] Added manual Bridge Gap."
  9261. #: flatcamTools/ToolCutOut.py:814
  9262. #, python-format
  9263. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  9264. msgstr "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  9265. #: flatcamTools/ToolCutOut.py:818
  9266. msgid ""
  9267. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  9268. "Select one and try again."
  9269. msgstr ""
  9270. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  9271. "Select one and try again."
  9272. #: flatcamTools/ToolCutOut.py:823
  9273. msgid ""
  9274. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  9275. "Select a Gerber file and try again."
  9276. msgstr ""
  9277. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  9278. "Select a Gerber file and try again."
  9279. #: flatcamTools/ToolDblSided.py:18
  9280. msgid "2-Sided PCB"
  9281. msgstr "2-Sided PCB"
  9282. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  9283. #: flatcamTools/ToolDblSided.py:100
  9284. msgid "Mirror"
  9285. msgstr "Mirror"
  9286. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  9287. #: flatcamTools/ToolDblSided.py:102
  9288. msgid ""
  9289. "Mirrors (flips) the specified object around \n"
  9290. "the specified axis. Does not create a new \n"
  9291. "object, but modifies it."
  9292. msgstr ""
  9293. "Mirrors (flips) the specified object around \n"
  9294. "the specified axis. Does not create a new \n"
  9295. "object, but modifies it."
  9296. #: flatcamTools/ToolDblSided.py:73
  9297. msgid "Excellon Object to be mirrored."
  9298. msgstr "Excellon Object to be mirrored."
  9299. #: flatcamTools/ToolDblSided.py:97
  9300. msgid "Geometry Obj to be mirrored."
  9301. msgstr "Geometry Obj to be mirrored."
  9302. #: flatcamTools/ToolDblSided.py:135
  9303. msgid ""
  9304. "The axis should pass through a <b>point</b> or cut\n"
  9305. " a specified <b>box</b> (in a FlatCAM object) through \n"
  9306. "the center."
  9307. msgstr ""
  9308. "The axis should pass through a <b>point</b> or cut\n"
  9309. " a specified <b>box</b> (in a FlatCAM object) through \n"
  9310. "the center."
  9311. #: flatcamTools/ToolDblSided.py:152
  9312. msgid "Point/Box Reference:"
  9313. msgstr "Point/Box Reference:"
  9314. #: flatcamTools/ToolDblSided.py:154
  9315. msgid ""
  9316. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  9317. "the mirroring axis passes.\n"
  9318. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  9319. "Geo).\n"
  9320. "Through the center of this object pass the mirroring axis selected above."
  9321. msgstr ""
  9322. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  9323. "the mirroring axis passes.\n"
  9324. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  9325. "Geo).\n"
  9326. "Through the center of this object pass the mirroring axis selected above."
  9327. #: flatcamTools/ToolDblSided.py:162
  9328. msgid ""
  9329. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  9330. "axis \n"
  9331. " selected in 'MIRROR AXIS' pass.\n"
  9332. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  9333. "and left mouse button click on canvas or you can enter the coords manually."
  9334. msgstr ""
  9335. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  9336. "axis \n"
  9337. " selected in 'MIRROR AXIS' pass.\n"
  9338. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  9339. "and left mouse button click on canvas or you can enter the coords manually."
  9340. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:311
  9341. #: flatcamTools/ToolPaint.py:274
  9342. msgid "Gerber Reference Box Object"
  9343. msgstr "Gerber Reference Box Object"
  9344. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:312
  9345. #: flatcamTools/ToolPaint.py:275
  9346. msgid "Excellon Reference Box Object"
  9347. msgstr "Excellon Reference Box Object"
  9348. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:313
  9349. #: flatcamTools/ToolPaint.py:276
  9350. msgid "Geometry Reference Box Object"
  9351. msgstr "Geometry Reference Box Object"
  9352. #: flatcamTools/ToolDblSided.py:192
  9353. msgid "Alignment Drill Coordinates:"
  9354. msgstr "Alignment Drill Coordinates:"
  9355. #: flatcamTools/ToolDblSided.py:194
  9356. msgid ""
  9357. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  9358. "each set of (x, y) coordinates\n"
  9359. "entered here, a pair of drills will be created:\n"
  9360. "\n"
  9361. "- one drill at the coordinates from the field\n"
  9362. "- one drill in mirror position over the axis selected above in the 'Mirror "
  9363. "Axis'."
  9364. msgstr ""
  9365. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  9366. "each set of (x, y) coordinates\n"
  9367. "entered here, a pair of drills will be created:\n"
  9368. "\n"
  9369. "- one drill at the coordinates from the field\n"
  9370. "- one drill in mirror position over the axis selected above in the 'Mirror "
  9371. "Axis'."
  9372. #: flatcamTools/ToolDblSided.py:209
  9373. msgid ""
  9374. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  9375. "on one side of the mirror axis.\n"
  9376. "\n"
  9377. "The coordinates set can be obtained:\n"
  9378. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  9379. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  9380. "field.\n"
  9381. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  9382. "field and click Paste.\n"
  9383. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  9384. msgstr ""
  9385. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  9386. "on one side of the mirror axis.\n"
  9387. "\n"
  9388. "The coordinates set can be obtained:\n"
  9389. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  9390. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  9391. "field.\n"
  9392. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  9393. "field and click Paste.\n"
  9394. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  9395. #: flatcamTools/ToolDblSided.py:223
  9396. msgid "Alignment Drill Diameter"
  9397. msgstr "Alignment Drill Diameter"
  9398. #: flatcamTools/ToolDblSided.py:246
  9399. msgid "Create Excellon Object"
  9400. msgstr "Create Excellon Object"
  9401. #: flatcamTools/ToolDblSided.py:248
  9402. msgid ""
  9403. "Creates an Excellon Object containing the\n"
  9404. "specified alignment holes and their mirror\n"
  9405. "images."
  9406. msgstr ""
  9407. "Creates an Excellon Object containing the\n"
  9408. "specified alignment holes and their mirror\n"
  9409. "images."
  9410. #: flatcamTools/ToolDblSided.py:254
  9411. msgid "Reset"
  9412. msgstr "Reset"
  9413. #: flatcamTools/ToolDblSided.py:256
  9414. msgid "Resets all the fields."
  9415. msgstr "Resets all the fields."
  9416. #: flatcamTools/ToolDblSided.py:301
  9417. msgid "2-Sided Tool"
  9418. msgstr "2-Sided Tool"
  9419. #: flatcamTools/ToolDblSided.py:326
  9420. msgid ""
  9421. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  9422. "missing. Add them and retry."
  9423. msgstr ""
  9424. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  9425. "missing. Add them and retry."
  9426. #: flatcamTools/ToolDblSided.py:345
  9427. msgid ""
  9428. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  9429. msgstr ""
  9430. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  9431. #: flatcamTools/ToolDblSided.py:367
  9432. msgid ""
  9433. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  9434. "retry."
  9435. msgstr ""
  9436. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  9437. "retry."
  9438. #: flatcamTools/ToolDblSided.py:374
  9439. msgid ""
  9440. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  9441. "and retry."
  9442. msgstr ""
  9443. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  9444. "and retry."
  9445. #: flatcamTools/ToolDblSided.py:397
  9446. msgid "[success] Excellon object with alignment drills created..."
  9447. msgstr "[success] Excellon object with alignment drills created..."
  9448. #: flatcamTools/ToolDblSided.py:406
  9449. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  9450. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  9451. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  9452. #: flatcamTools/ToolDblSided.py:497
  9453. msgid ""
  9454. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  9455. msgstr ""
  9456. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  9457. #: flatcamTools/ToolDblSided.py:420
  9458. msgid ""
  9459. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  9460. "mirroring reference."
  9461. msgstr ""
  9462. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  9463. "mirroring reference."
  9464. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  9465. #: flatcamTools/ToolDblSided.py:511
  9466. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  9467. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  9468. #: flatcamTools/ToolDblSided.py:440
  9469. #, python-format
  9470. msgid "[success] Gerber %s was mirrored..."
  9471. msgstr "[success] Gerber %s was mirrored..."
  9472. #: flatcamTools/ToolDblSided.py:449
  9473. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9474. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9475. #: flatcamTools/ToolDblSided.py:464
  9476. msgid ""
  9477. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9478. "coords and try again ..."
  9479. msgstr ""
  9480. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9481. "coords and try again ..."
  9482. #: flatcamTools/ToolDblSided.py:484
  9483. #, python-format
  9484. msgid "[success] Excellon %s was mirrored..."
  9485. msgstr "[success] Excellon %s was mirrored..."
  9486. #: flatcamTools/ToolDblSided.py:493
  9487. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9488. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9489. #: flatcamTools/ToolDblSided.py:521
  9490. #, python-format
  9491. msgid "[success] Geometry %s was mirrored..."
  9492. msgstr "[success] Geometry %s was mirrored..."
  9493. #: flatcamTools/ToolFilm.py:25
  9494. msgid "Film PCB"
  9495. msgstr "Film PCB"
  9496. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9497. #: flatcamTools/ToolPanelize.py:56
  9498. msgid "Object Type:"
  9499. msgstr "Object Type:"
  9500. #: flatcamTools/ToolFilm.py:58
  9501. msgid ""
  9502. "Specify the type of object for which to create the film.\n"
  9503. "The object can be of type: Gerber or Geometry.\n"
  9504. "The selection here decide the type of objects that will be\n"
  9505. "in the Film Object combobox."
  9506. msgstr ""
  9507. "Specify the type of object for which to create the film.\n"
  9508. "The object can be of type: Gerber or Geometry.\n"
  9509. "The selection here decide the type of objects that will be\n"
  9510. "in the Film Object combobox."
  9511. #: flatcamTools/ToolFilm.py:71
  9512. msgid "Film Object:"
  9513. msgstr "Film Object:"
  9514. #: flatcamTools/ToolFilm.py:73
  9515. msgid "Object for which to create the film."
  9516. msgstr "Object for which to create the film."
  9517. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  9518. msgid "Box Type:"
  9519. msgstr "Box Type:"
  9520. #: flatcamTools/ToolFilm.py:91
  9521. msgid ""
  9522. "Specify the type of object to be used as an container for\n"
  9523. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9524. "the type of objects that will be\n"
  9525. "in the Box Object combobox."
  9526. msgstr ""
  9527. "Specify the type of object to be used as an container for\n"
  9528. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9529. "the type of objects that will be\n"
  9530. "in the Box Object combobox."
  9531. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9532. msgid "Box Object:"
  9533. msgstr "Box Object:"
  9534. #: flatcamTools/ToolFilm.py:106
  9535. msgid ""
  9536. "The actual object that is used a container for the\n"
  9537. " selected object for which we create the film.\n"
  9538. "Usually it is the PCB outline but it can be also the\n"
  9539. "same object for which the film is created."
  9540. msgstr ""
  9541. "The actual object that is used a container for the\n"
  9542. " selected object for which we create the film.\n"
  9543. "Usually it is the PCB outline but it can be also the\n"
  9544. "same object for which the film is created."
  9545. #: flatcamTools/ToolFilm.py:114
  9546. msgid "Positive"
  9547. msgstr "Positive"
  9548. #: flatcamTools/ToolFilm.py:115
  9549. msgid "Negative"
  9550. msgstr "Negative"
  9551. #: flatcamTools/ToolFilm.py:157
  9552. msgid "Save Film"
  9553. msgstr "Save Film"
  9554. #: flatcamTools/ToolFilm.py:159
  9555. msgid ""
  9556. "Create a Film for the selected object, within\n"
  9557. "the specified box. Does not create a new \n"
  9558. " FlatCAM object, but directly save it in SVG format\n"
  9559. "which can be opened with Inkscape."
  9560. msgstr ""
  9561. "Create a Film for the selected object, within\n"
  9562. "the specified box. Does not create a new \n"
  9563. " FlatCAM object, but directly save it in SVG format\n"
  9564. "which can be opened with Inkscape."
  9565. #: flatcamTools/ToolFilm.py:225
  9566. msgid ""
  9567. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9568. msgstr ""
  9569. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9570. #: flatcamTools/ToolFilm.py:231
  9571. msgid ""
  9572. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9573. msgstr ""
  9574. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9575. #: flatcamTools/ToolFilm.py:255
  9576. msgid "Generating Film ..."
  9577. msgstr "Generating Film ..."
  9578. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  9579. msgid "Export SVG positive"
  9580. msgstr "Export SVG positive"
  9581. #: flatcamTools/ToolFilm.py:269
  9582. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  9583. msgstr "[WARNING_NOTCL] Export SVG positive cancelled."
  9584. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  9585. msgid "Export SVG negative"
  9586. msgstr "Export SVG negative"
  9587. #: flatcamTools/ToolFilm.py:285
  9588. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  9589. msgstr "[WARNING_NOTCL] Export SVG negative cancelled."
  9590. #: flatcamTools/ToolImage.py:25
  9591. msgid "Image as Object"
  9592. msgstr "Image as Object"
  9593. #: flatcamTools/ToolImage.py:31
  9594. msgid "Image to PCB"
  9595. msgstr "Image to PCB"
  9596. #: flatcamTools/ToolImage.py:55
  9597. msgid ""
  9598. "Specify the type of object to create from the image.\n"
  9599. "It can be of type: Gerber or Geometry."
  9600. msgstr ""
  9601. "Specify the type of object to create from the image.\n"
  9602. "It can be of type: Gerber or Geometry."
  9603. #: flatcamTools/ToolImage.py:63
  9604. msgid "DPI value:"
  9605. msgstr "DPI value:"
  9606. #: flatcamTools/ToolImage.py:65
  9607. msgid "Specify a DPI value for the image."
  9608. msgstr "Specify a DPI value for the image."
  9609. #: flatcamTools/ToolImage.py:72
  9610. msgid "Level of detail"
  9611. msgstr "Level of detail"
  9612. #: flatcamTools/ToolImage.py:81
  9613. msgid "Image type"
  9614. msgstr "Image type"
  9615. #: flatcamTools/ToolImage.py:83
  9616. msgid ""
  9617. "Choose a method for the image interpretation.\n"
  9618. "B/W means a black & white image. Color means a colored image."
  9619. msgstr ""
  9620. "Choose a method for the image interpretation.\n"
  9621. "B/W means a black & white image. Color means a colored image."
  9622. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9623. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9624. msgid "Mask value"
  9625. msgstr "Mask value"
  9626. #: flatcamTools/ToolImage.py:92
  9627. msgid ""
  9628. "Mask for monochrome image.\n"
  9629. "Takes values between [0 ... 255].\n"
  9630. "Decides the level of details to include\n"
  9631. "in the resulting geometry.\n"
  9632. "0 means no detail and 255 means everything \n"
  9633. "(which is totally black)."
  9634. msgstr ""
  9635. "Mask for monochrome image.\n"
  9636. "Takes values between [0 ... 255].\n"
  9637. "Decides the level of details to include\n"
  9638. "in the resulting geometry.\n"
  9639. "0 means no detail and 255 means everything \n"
  9640. "(which is totally black)."
  9641. #: flatcamTools/ToolImage.py:105
  9642. msgid ""
  9643. "Mask for RED color.\n"
  9644. "Takes values between [0 ... 255].\n"
  9645. "Decides the level of details to include\n"
  9646. "in the resulting geometry."
  9647. msgstr ""
  9648. "Mask for RED color.\n"
  9649. "Takes values between [0 ... 255].\n"
  9650. "Decides the level of details to include\n"
  9651. "in the resulting geometry."
  9652. #: flatcamTools/ToolImage.py:116
  9653. msgid ""
  9654. "Mask for GREEN color.\n"
  9655. "Takes values between [0 ... 255].\n"
  9656. "Decides the level of details to include\n"
  9657. "in the resulting geometry."
  9658. msgstr ""
  9659. "Mask for GREEN color.\n"
  9660. "Takes values between [0 ... 255].\n"
  9661. "Decides the level of details to include\n"
  9662. "in the resulting geometry."
  9663. #: flatcamTools/ToolImage.py:127
  9664. msgid ""
  9665. "Mask for BLUE color.\n"
  9666. "Takes values between [0 ... 255].\n"
  9667. "Decides the level of details to include\n"
  9668. "in the resulting geometry."
  9669. msgstr ""
  9670. "Mask for BLUE color.\n"
  9671. "Takes values between [0 ... 255].\n"
  9672. "Decides the level of details to include\n"
  9673. "in the resulting geometry."
  9674. #: flatcamTools/ToolImage.py:139
  9675. msgid "Import image"
  9676. msgstr "Import image"
  9677. #: flatcamTools/ToolImage.py:141
  9678. msgid "Open a image of raster type and then import it in FlatCAM."
  9679. msgstr "Open a image of raster type and then import it in FlatCAM."
  9680. #: flatcamTools/ToolImage.py:170
  9681. msgid "Image Tool"
  9682. msgstr "Image Tool"
  9683. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  9684. msgid "Import IMAGE"
  9685. msgstr "Import IMAGE"
  9686. #: flatcamTools/ToolMeasurement.py:26
  9687. msgid "Measurement"
  9688. msgstr "Measurement"
  9689. #: flatcamTools/ToolMeasurement.py:43
  9690. msgid "Units:"
  9691. msgstr "Units:"
  9692. #: flatcamTools/ToolMeasurement.py:44
  9693. msgid "Those are the units in which the distance is measured."
  9694. msgstr "Those are the units in which the distance is measured."
  9695. #: flatcamTools/ToolMeasurement.py:45
  9696. msgid "METRIC (mm)"
  9697. msgstr "METRIC (mm)"
  9698. #: flatcamTools/ToolMeasurement.py:45
  9699. msgid "INCH (in)"
  9700. msgstr "INCH (in)"
  9701. #: flatcamTools/ToolMeasurement.py:48
  9702. msgid "Start"
  9703. msgstr "Start"
  9704. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  9705. msgid "Coords"
  9706. msgstr "Coords"
  9707. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  9708. msgid "This is measuring Start point coordinates."
  9709. msgstr "This is measuring Start point coordinates."
  9710. #: flatcamTools/ToolMeasurement.py:51
  9711. msgid "Stop"
  9712. msgstr "Stop"
  9713. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  9714. msgid "This is the measuring Stop point coordinates."
  9715. msgstr "This is the measuring Stop point coordinates."
  9716. #: flatcamTools/ToolMeasurement.py:54
  9717. msgid "Dx:"
  9718. msgstr "Dx:"
  9719. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  9720. msgid "This is the distance measured over the X axis."
  9721. msgstr "This is the distance measured over the X axis."
  9722. #: flatcamTools/ToolMeasurement.py:57
  9723. msgid "Dy:"
  9724. msgstr "Dy:"
  9725. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  9726. msgid "This is the distance measured over the Y axis."
  9727. msgstr "This is the distance measured over the Y axis."
  9728. #: flatcamTools/ToolMeasurement.py:60
  9729. msgid "DISTANCE"
  9730. msgstr "DISTANCE"
  9731. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  9732. msgid "This is the point to point Euclidian distance."
  9733. msgstr "This is the point to point Euclidian distance."
  9734. #: flatcamTools/ToolMeasurement.py:83
  9735. msgid "Measure"
  9736. msgstr "Measure"
  9737. #: flatcamTools/ToolMeasurement.py:131
  9738. msgid "Meas. Tool"
  9739. msgstr "Meas. Tool"
  9740. #: flatcamTools/ToolMeasurement.py:176
  9741. msgid "MEASURING: Click on the Start point ..."
  9742. msgstr "MEASURING: Click on the Start point ..."
  9743. #: flatcamTools/ToolMeasurement.py:269
  9744. msgid "MEASURING: Click on the Destination point ..."
  9745. msgstr "MEASURING: Click on the Destination point ..."
  9746. #: flatcamTools/ToolMeasurement.py:277
  9747. #, python-brace-format
  9748. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9749. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9750. #: flatcamTools/ToolMove.py:81
  9751. msgid "MOVE: Click on the Start point ..."
  9752. msgstr "MOVE: Click on the Start point ..."
  9753. #: flatcamTools/ToolMove.py:88
  9754. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9755. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9756. #: flatcamTools/ToolMove.py:110
  9757. msgid "MOVE: Click on the Destination point ..."
  9758. msgstr "MOVE: Click on the Destination point ..."
  9759. #: flatcamTools/ToolMove.py:128
  9760. msgid "Moving ..."
  9761. msgstr "Moving ..."
  9762. #: flatcamTools/ToolMove.py:135
  9763. msgid "[WARNING_NOTCL] No object(s) selected."
  9764. msgstr "[WARNING_NOTCL] No object(s) selected."
  9765. #: flatcamTools/ToolMove.py:158
  9766. #, python-format
  9767. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9768. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9769. #: flatcamTools/ToolMove.py:164
  9770. #, python-format
  9771. msgid "[success] %s object was moved ..."
  9772. msgstr "[success] %s object was moved ..."
  9773. #: flatcamTools/ToolMove.py:174
  9774. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9775. msgstr ""
  9776. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9777. #: flatcamTools/ToolMove.py:202
  9778. msgid "[WARNING_NOTCL] Move action cancelled."
  9779. msgstr "[WARNING_NOTCL] Move action cancelled."
  9780. #: flatcamTools/ToolMove.py:214
  9781. msgid "[WARNING_NOTCL] Object(s) not selected"
  9782. msgstr "[WARNING_NOTCL] Object(s) not selected"
  9783. #: flatcamTools/ToolNonCopperClear.py:26
  9784. msgid "Non-Copper Clearing"
  9785. msgstr "Non-Copper Clearing"
  9786. #: flatcamTools/ToolNonCopperClear.py:64
  9787. msgid "Gerber object to be cleared of excess copper. "
  9788. msgstr "Gerber object to be cleared of excess copper. "
  9789. #: flatcamTools/ToolNonCopperClear.py:74
  9790. msgid ""
  9791. "Tools pool from which the algorithm\n"
  9792. "will pick the ones used for copper clearing."
  9793. msgstr ""
  9794. "Tools pool from which the algorithm\n"
  9795. "will pick the ones used for copper clearing."
  9796. #: flatcamTools/ToolNonCopperClear.py:89
  9797. msgid ""
  9798. "This is the Tool Number.\n"
  9799. "Non copper clearing will start with the tool with the biggest \n"
  9800. "diameter, continuing until there are no more tools.\n"
  9801. "Only tools that create NCC clearing geometry will still be present\n"
  9802. "in the resulting geometry. This is because with some tools\n"
  9803. "this function will not be able to create painting geometry."
  9804. msgstr ""
  9805. "This is the Tool Number.\n"
  9806. "Non copper clearing will start with the tool with the biggest \n"
  9807. "diameter, continuing until there are no more tools.\n"
  9808. "Only tools that create NCC clearing geometry will still be present\n"
  9809. "in the resulting geometry. This is because with some tools\n"
  9810. "this function will not be able to create painting geometry."
  9811. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:99
  9812. msgid ""
  9813. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9814. "informative only. Being circular, <BR>the cut width in material is exactly "
  9815. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9816. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9817. "parameter in the resulting geometry UI form and enable two additional UI "
  9818. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9819. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9820. "material will be equal with the value in the Tool Diameter column of this "
  9821. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9822. "the Operation Type in the resulting geometry as Isolation."
  9823. msgstr ""
  9824. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9825. "informative only. Being circular, <BR>the cut width in material is exactly "
  9826. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9827. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9828. "parameter in the resulting geometry UI form and enable two additional UI "
  9829. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9830. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9831. "material will be equal with the value in the Tool Diameter column of this "
  9832. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9833. "the Operation Type in the resulting geometry as Isolation."
  9834. #: flatcamTools/ToolNonCopperClear.py:138 flatcamTools/ToolPaint.py:118
  9835. msgid "Tool Dia"
  9836. msgstr "Tool Dia"
  9837. #: flatcamTools/ToolNonCopperClear.py:140
  9838. msgid "Diameter for the new tool to add in the Tool Table"
  9839. msgstr "Diameter for the new tool to add in the Tool Table"
  9840. #: flatcamTools/ToolNonCopperClear.py:162 flatcamTools/ToolPaint.py:146
  9841. #: flatcamTools/ToolSolderPaste.py:123
  9842. msgid ""
  9843. "Delete a selection of tools in the Tool Table\n"
  9844. "by first selecting a row(s) in the Tool Table."
  9845. msgstr ""
  9846. "Delete a selection of tools in the Tool Table\n"
  9847. "by first selecting a row(s) in the Tool Table."
  9848. #: flatcamTools/ToolNonCopperClear.py:240
  9849. msgid ""
  9850. "If checked, use 'rest machining'.\n"
  9851. "Basically it will clear copper outside PCB features,\n"
  9852. "using the biggest tool and continue with the next tools,\n"
  9853. "from bigger to smaller, to clear areas of copper that\n"
  9854. "could not be cleared by previous tool, until there is\n"
  9855. "no more copper to clear or there are no more tools.\n"
  9856. "If not checked, use the standard algorithm."
  9857. msgstr ""
  9858. "If checked, use 'rest machining'.\n"
  9859. "Basically it will clear copper outside PCB features,\n"
  9860. "using the biggest tool and continue with the next tools,\n"
  9861. "from bigger to smaller, to clear areas of copper that\n"
  9862. "could not be cleared by previous tool, until there is\n"
  9863. "no more copper to clear or there are no more tools.\n"
  9864. "If not checked, use the standard algorithm."
  9865. #: flatcamTools/ToolNonCopperClear.py:294
  9866. msgid ""
  9867. "- 'Itself': the non copper clearing extent\n"
  9868. "is based on the object that is copper cleared.\n"
  9869. " - 'Box': will do non copper clearing within the box\n"
  9870. "specified by the object selected in the Ref. Object combobox."
  9871. msgstr ""
  9872. "- 'Itself': the non copper clearing extent\n"
  9873. "is based on the object that is copper cleared.\n"
  9874. " - 'Box': will do non copper clearing within the box\n"
  9875. "specified by the object selected in the Ref. Object combobox."
  9876. #: flatcamTools/ToolNonCopperClear.py:305 flatcamTools/ToolPaint.py:268
  9877. msgid "Ref. Type:"
  9878. msgstr "Ref. Type:"
  9879. #: flatcamTools/ToolNonCopperClear.py:307
  9880. msgid ""
  9881. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  9882. "It can be Gerber, Excellon or Geometry."
  9883. msgstr ""
  9884. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  9885. "It can be Gerber, Excellon or Geometry."
  9886. #: flatcamTools/ToolNonCopperClear.py:318 flatcamTools/ToolPaint.py:281
  9887. msgid "Ref. Object:"
  9888. msgstr "Ref. Object:"
  9889. #: flatcamTools/ToolNonCopperClear.py:320 flatcamTools/ToolPaint.py:283
  9890. msgid "The FlatCAM object to be used as non copper clearing reference."
  9891. msgstr "The FlatCAM object to be used as non copper clearing reference."
  9892. #: flatcamTools/ToolNonCopperClear.py:334
  9893. msgid "Generate Geometry"
  9894. msgstr "Generate Geometry"
  9895. #: flatcamTools/ToolNonCopperClear.py:648 flatcamTools/ToolPaint.py:614
  9896. #: flatcamTools/ToolSolderPaste.py:763
  9897. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9898. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9899. #: flatcamTools/ToolNonCopperClear.py:677 flatcamTools/ToolPaint.py:638
  9900. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9901. msgstr "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9902. #: flatcamTools/ToolNonCopperClear.py:682 flatcamTools/ToolPaint.py:643
  9903. msgid "[success] New tool added to Tool Table."
  9904. msgstr "[success] New tool added to Tool Table."
  9905. #: flatcamTools/ToolNonCopperClear.py:724 flatcamTools/ToolPaint.py:688
  9906. msgid "[success] Tool from Tool Table was edited."
  9907. msgstr "[success] Tool from Tool Table was edited."
  9908. #: flatcamTools/ToolNonCopperClear.py:735 flatcamTools/ToolPaint.py:699
  9909. #: flatcamTools/ToolSolderPaste.py:850
  9910. msgid ""
  9911. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9912. "Table."
  9913. msgstr ""
  9914. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9915. "Table."
  9916. #: flatcamTools/ToolNonCopperClear.py:775 flatcamTools/ToolPaint.py:798
  9917. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9918. msgstr "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9919. #: flatcamTools/ToolNonCopperClear.py:780 flatcamTools/ToolPaint.py:803
  9920. msgid "[success] Tool(s) deleted from Tool Table."
  9921. msgstr "[success] Tool(s) deleted from Tool Table."
  9922. #: flatcamTools/ToolNonCopperClear.py:800 flatcamTools/ToolPaint.py:822
  9923. msgid ""
  9924. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9925. msgstr ""
  9926. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9927. #: flatcamTools/ToolNonCopperClear.py:876 flatcamTools/ToolPaint.py:984
  9928. msgid "[ERROR_NOTCL] No object available."
  9929. msgstr "[ERROR_NOTCL] No object available."
  9930. #: flatcamTools/ToolNonCopperClear.py:881
  9931. msgid "[WARNING_NOTCL] Buffering ..."
  9932. msgstr "[WARNING_NOTCL] Buffering ..."
  9933. #: flatcamTools/ToolNonCopperClear.py:883
  9934. msgid "[success] Buffering finished ..."
  9935. msgstr "[success] Buffering finished ..."
  9936. #: flatcamTools/ToolNonCopperClear.py:892
  9937. msgid ""
  9938. "[ERROR_NOTCL] Could not get the extent of the area to be non copper cleared."
  9939. msgstr ""
  9940. "[ERROR_NOTCL] Could not get the extent of the area to be non copper cleared."
  9941. #: flatcamTools/ToolNonCopperClear.py:932
  9942. #: flatcamTools/ToolNonCopperClear.py:1054
  9943. msgid "Clearing Non-Copper areas."
  9944. msgstr "Clearing Non-Copper areas."
  9945. #: flatcamTools/ToolNonCopperClear.py:950
  9946. #, python-format
  9947. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9948. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  9949. #: flatcamTools/ToolNonCopperClear.py:1019
  9950. #, python-format
  9951. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9952. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9953. #: flatcamTools/ToolNonCopperClear.py:1024
  9954. msgid "[success] NCC Tool finished."
  9955. msgstr "[success] NCC Tool finished."
  9956. #: flatcamTools/ToolNonCopperClear.py:1026
  9957. msgid ""
  9958. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9959. "cleared. Check the result."
  9960. msgstr ""
  9961. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9962. "cleared. Check the result."
  9963. #: flatcamTools/ToolNonCopperClear.py:1072
  9964. #, python-format
  9965. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9966. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9967. #: flatcamTools/ToolNonCopperClear.py:1170
  9968. #, python-format
  9969. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9970. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9971. #: flatcamTools/ToolNonCopperClear.py:1178
  9972. msgid ""
  9973. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9974. "settings."
  9975. msgstr ""
  9976. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9977. "settings."
  9978. #: flatcamTools/ToolPDF.py:38
  9979. msgid "PDF Import Tool"
  9980. msgstr "PDF Import Tool"
  9981. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9982. msgid "Open PDF"
  9983. msgstr "Open PDF"
  9984. #: flatcamTools/ToolPDF.py:159
  9985. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9986. msgstr "[WARNING_NOTCL] Open PDF cancelled."
  9987. #: flatcamTools/ToolPDF.py:186
  9988. msgid "Parsing PDF file ..."
  9989. msgstr "Parsing PDF file ..."
  9990. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9991. #, python-format
  9992. msgid "Rendering PDF layer #%d ..."
  9993. msgstr "Rendering PDF layer #%d ..."
  9994. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9995. msgid "[ERROR_NOTCL] Open PDF file failed."
  9996. msgstr "[ERROR_NOTCL] Open PDF file failed."
  9997. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9998. #, python-format
  9999. msgid "[success] Rendered: %s"
  10000. msgstr "[success] Rendered: %s"
  10001. #: flatcamTools/ToolPaint.py:25
  10002. msgid "Paint Area"
  10003. msgstr "Paint Area"
  10004. #: flatcamTools/ToolPaint.py:61
  10005. msgid "Geometry:"
  10006. msgstr "Geometry:"
  10007. #: flatcamTools/ToolPaint.py:63
  10008. msgid "Geometry object to be painted. "
  10009. msgstr "Geometry object to be painted. "
  10010. #: flatcamTools/ToolPaint.py:72
  10011. msgid ""
  10012. "Tools pool from which the algorithm\n"
  10013. "will pick the ones used for painting."
  10014. msgstr ""
  10015. "Tools pool from which the algorithm\n"
  10016. "will pick the ones used for painting."
  10017. #: flatcamTools/ToolPaint.py:87
  10018. msgid ""
  10019. "This is the Tool Number.\n"
  10020. "Painting will start with the tool with the biggest diameter,\n"
  10021. "continuing until there are no more tools.\n"
  10022. "Only tools that create painting geometry will still be present\n"
  10023. "in the resulting geometry. This is because with some tools\n"
  10024. "this function will not be able to create painting geometry."
  10025. msgstr ""
  10026. "This is the Tool Number.\n"
  10027. "Painting will start with the tool with the biggest diameter,\n"
  10028. "continuing until there are no more tools.\n"
  10029. "Only tools that create painting geometry will still be present\n"
  10030. "in the resulting geometry. This is because with some tools\n"
  10031. "this function will not be able to create painting geometry."
  10032. #: flatcamTools/ToolPaint.py:120
  10033. msgid "Diameter for the new tool."
  10034. msgstr "Diameter for the new tool."
  10035. #: flatcamTools/ToolPaint.py:225
  10036. msgid ""
  10037. "If checked, use 'rest machining'.\n"
  10038. "Basically it will clear copper outside PCB features,\n"
  10039. "using the biggest tool and continue with the next tools,\n"
  10040. "from bigger to smaller, to clear areas of copper that\n"
  10041. "could not be cleared by previous tool, until there is\n"
  10042. "no more copper to clear or there are no more tools.\n"
  10043. "\n"
  10044. "If not checked, use the standard algorithm."
  10045. msgstr ""
  10046. "If checked, use 'rest machining'.\n"
  10047. "Basically it will clear copper outside PCB features,\n"
  10048. "using the biggest tool and continue with the next tools,\n"
  10049. "from bigger to smaller, to clear areas of copper that\n"
  10050. "could not be cleared by previous tool, until there is\n"
  10051. "no more copper to clear or there are no more tools.\n"
  10052. "\n"
  10053. "If not checked, use the standard algorithm."
  10054. #: flatcamTools/ToolPaint.py:240 flatcamTools/ToolPaint.py:256
  10055. #| msgid ""
  10056. #| "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  10057. #| "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  10058. #| "polygons."
  10059. msgid ""
  10060. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single Polygons</"
  10061. "B>: left mouse click on the polygon to be painted.<BR>- <B>Area Selection</"
  10062. "B>: left mouse click to start selection of the area to be painted.<BR>- "
  10063. "<B>All Polygons</B>: paint all polygons.<BR>- <B>Reference Object</B>: paint "
  10064. "an area described by an external reference object."
  10065. msgstr ""
  10066. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single Polygons</"
  10067. "B>: left mouse click on the polygon to be painted.<BR>- <B>Area Selection</"
  10068. "B>: left mouse click to start selection of the area to be painted.<BR>- "
  10069. "<B>All Polygons</B>: paint all polygons.<BR>- <B>Reference Object</B>: paint "
  10070. "an area described by an external reference object."
  10071. #: flatcamTools/ToolPaint.py:250
  10072. #| msgid "Polygon"
  10073. msgid "Single Polygon"
  10074. msgstr "Single Polygon"
  10075. #: flatcamTools/ToolPaint.py:251
  10076. #| msgid "Selection:"
  10077. msgid "Area Selection"
  10078. msgstr "Area Selection"
  10079. #: flatcamTools/ToolPaint.py:252
  10080. #| msgid "Add Polygon"
  10081. msgid "All Polygons"
  10082. msgstr "All Polygons"
  10083. #: flatcamTools/ToolPaint.py:253
  10084. #| msgid "Ref. Object:"
  10085. msgid "Reference Object"
  10086. msgstr "Reference Object"
  10087. #: flatcamTools/ToolPaint.py:270
  10088. #| msgid ""
  10089. #| "The type of FlatCAM object to be used as non copper clearing reference.\n"
  10090. #| "It can be Gerber, Excellon or Geometry."
  10091. msgid ""
  10092. "The type of FlatCAM object to be used as paint reference.\n"
  10093. "It can be Gerber, Excellon or Geometry."
  10094. msgstr ""
  10095. "The type of FlatCAM object to be used as paint reference.\n"
  10096. "It can be Gerber, Excellon or Geometry."
  10097. #: flatcamTools/ToolPaint.py:298
  10098. msgid "Create Paint Geometry"
  10099. msgstr "Create Paint Geometry"
  10100. #: flatcamTools/ToolPaint.py:300
  10101. #| msgid ""
  10102. #| "After clicking here, click inside<BR>the polygon you wish to be painted "
  10103. #| "if <B>Single</B> is selected.<BR>If <B>All</B> is selected then the "
  10104. #| "Paint will start after click.<BR>A new Geometry object with the "
  10105. #| "tool<BR>paths will be created."
  10106. msgid ""
  10107. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  10108. "<B>Single</B> is selected.<BR>If <B>Area</B> is selected, then the selection "
  10109. "of the area to be painted<BR>will be initiated by a first click and finished "
  10110. "by the second mouse click.<BR>If <B>All</B> is selected then the Paint will "
  10111. "start after click.<BR>If <B>Ref</B> is selected then the Paint will start "
  10112. "after click,<BR>and the painted area will be described by a selected object."
  10113. "<BR>A new Geometry object with the tool paths will be created."
  10114. msgstr ""
  10115. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  10116. "<B>Single</B> is selected.<BR>If <B>Area</B> is selected, then the selection "
  10117. "of the area to be painted<BR>will be initiated by a first click and finished "
  10118. "by the second mouse click.<BR>If <B>All</B> is selected then the Paint will "
  10119. "start after click.<BR>If <B>Ref</B> is selected then the Paint will start "
  10120. "after click,<BR>and the painted area will be described by a selected object."
  10121. "<BR>A new Geometry object with the tool paths will be created."
  10122. #: flatcamTools/ToolPaint.py:807
  10123. msgid "geometry_on_paint_button"
  10124. msgstr "geometry_on_paint_button"
  10125. #: flatcamTools/ToolPaint.py:826 flatcamTools/ToolPaint.py:862
  10126. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  10127. msgstr "[WARNING_NOTCL] Click inside the desired polygon."
  10128. #: flatcamTools/ToolPaint.py:849
  10129. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  10130. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  10131. #: flatcamTools/ToolPaint.py:871 flatcamTools/ToolPaint.py:1180
  10132. #: flatcamTools/ToolPaint.py:1480
  10133. msgid "Painting polygon..."
  10134. msgstr "Painting polygon..."
  10135. #: flatcamTools/ToolPaint.py:890
  10136. msgid "[WARNING_NOTCL] Click the start point of the paint area."
  10137. msgstr "[WARNING_NOTCL] Click the start point of the paint area."
  10138. #: flatcamTools/ToolPaint.py:901
  10139. msgid "[WARNING_NOTCL] Click the end point of the paint area."
  10140. msgstr "[WARNING_NOTCL] Click the end point of the paint area."
  10141. #: flatcamTools/ToolPaint.py:907
  10142. msgid "Done."
  10143. msgstr "Done."
  10144. #: flatcamTools/ToolPaint.py:1029
  10145. msgid "[WARNING] No polygon found."
  10146. msgstr "[WARNING] No polygon found."
  10147. #: flatcamTools/ToolPaint.py:1032
  10148. msgid "Painting polygon."
  10149. msgstr "Painting polygon."
  10150. #: flatcamTools/ToolPaint.py:1074
  10151. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  10152. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  10153. #: flatcamTools/ToolPaint.py:1100
  10154. #, python-format
  10155. msgid ""
  10156. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  10157. "different strategy of paint\n"
  10158. "%s"
  10159. msgstr ""
  10160. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  10161. "different strategy of paint\n"
  10162. "%s"
  10163. #: flatcamTools/ToolPaint.py:1142
  10164. #, python-format
  10165. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  10166. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  10167. #: flatcamTools/ToolPaint.py:1148 flatcamTools/ToolPaint.py:1447
  10168. #: flatcamTools/ToolPaint.py:1738
  10169. msgid "Polygon Paint started ..."
  10170. msgstr "Polygon Paint started ..."
  10171. #: flatcamTools/ToolPaint.py:1301 flatcamTools/ToolPaint.py:1392
  10172. #: flatcamTools/ToolPaint.py:1592 flatcamTools/ToolPaint.py:1683
  10173. #, python-format
  10174. msgid ""
  10175. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  10176. "Or a different Method of paint\n"
  10177. "%s"
  10178. msgstr ""
  10179. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  10180. "Or a different Method of paint\n"
  10181. "%s"
  10182. #: flatcamTools/ToolPaint.py:1325 flatcamTools/ToolPaint.py:1616
  10183. msgid ""
  10184. "[ERROR] There is no Painting Geometry in the file.\n"
  10185. "Usually it means that the tool diameter is too big for the painted "
  10186. "geometry.\n"
  10187. "Change the painting parameters and try again."
  10188. msgstr ""
  10189. "[ERROR] There is no Painting Geometry in the file.\n"
  10190. "Usually it means that the tool diameter is too big for the painted "
  10191. "geometry.\n"
  10192. "Change the painting parameters and try again."
  10193. #: flatcamTools/ToolPaint.py:1334 flatcamTools/ToolPaint.py:1625
  10194. msgid "[success] Paint All Done."
  10195. msgstr "[success] Paint All Done."
  10196. #: flatcamTools/ToolPaint.py:1422 flatcamTools/ToolPaint.py:1713
  10197. msgid ""
  10198. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  10199. "Usually it means that the tool diameter is too big for the painted "
  10200. "geometry.\n"
  10201. "Change the painting parameters and try again."
  10202. msgstr ""
  10203. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  10204. "Usually it means that the tool diameter is too big for the painted "
  10205. "geometry.\n"
  10206. "Change the painting parameters and try again."
  10207. #: flatcamTools/ToolPaint.py:1431 flatcamTools/ToolPaint.py:1722
  10208. msgid "[success] Paint All with Rest-Machining done."
  10209. msgstr "[success] Paint All with Rest-Machining done."
  10210. #: flatcamTools/ToolPanelize.py:25
  10211. msgid "Panelize PCB"
  10212. msgstr "Panelize PCB"
  10213. #: flatcamTools/ToolPanelize.py:58
  10214. msgid ""
  10215. "Specify the type of object to be panelized\n"
  10216. "It can be of type: Gerber, Excellon or Geometry.\n"
  10217. "The selection here decide the type of objects that will be\n"
  10218. "in the Object combobox."
  10219. msgstr ""
  10220. "Specify the type of object to be panelized\n"
  10221. "It can be of type: Gerber, Excellon or Geometry.\n"
  10222. "The selection here decide the type of objects that will be\n"
  10223. "in the Object combobox."
  10224. #: flatcamTools/ToolPanelize.py:73
  10225. msgid ""
  10226. "Object to be panelized. This means that it will\n"
  10227. "be duplicated in an array of rows and columns."
  10228. msgstr ""
  10229. "Object to be panelized. This means that it will\n"
  10230. "be duplicated in an array of rows and columns."
  10231. #: flatcamTools/ToolPanelize.py:84
  10232. msgid "Object"
  10233. msgstr "Object"
  10234. #: flatcamTools/ToolPanelize.py:85
  10235. msgid "Bounding Box"
  10236. msgstr "Bounding Box"
  10237. #: flatcamTools/ToolPanelize.py:86
  10238. #| msgid "<b>Penelization Reference:</b>"
  10239. msgid "Penelization Reference"
  10240. msgstr "Penelization Reference"
  10241. #: flatcamTools/ToolPanelize.py:88
  10242. msgid ""
  10243. "Choose the reference for panelization:\n"
  10244. "- Object = the bounding box of a different object\n"
  10245. "- Bounding Box = the bounding box of the object to be panelized\n"
  10246. "\n"
  10247. "The reference is useful when doing panelization for more than one\n"
  10248. "object. The spacings (really offsets) will be applied in reference\n"
  10249. "to this reference object therefore maintaining the panelized\n"
  10250. "objects in sync."
  10251. msgstr ""
  10252. "Choose the reference for panelization:\n"
  10253. "- Object = the bounding box of a different object\n"
  10254. "- Bounding Box = the bounding box of the object to be panelized\n"
  10255. "\n"
  10256. "The reference is useful when doing panelization for more than one\n"
  10257. "object. The spacings (really offsets) will be applied in reference\n"
  10258. "to this reference object therefore maintaining the panelized\n"
  10259. "objects in sync."
  10260. #: flatcamTools/ToolPanelize.py:113
  10261. msgid ""
  10262. "Specify the type of object to be used as an container for\n"
  10263. "panelization. It can be: Gerber or Geometry type.\n"
  10264. "The selection here decide the type of objects that will be\n"
  10265. "in the Box Object combobox."
  10266. msgstr ""
  10267. "Specify the type of object to be used as an container for\n"
  10268. "panelization. It can be: Gerber or Geometry type.\n"
  10269. "The selection here decide the type of objects that will be\n"
  10270. "in the Box Object combobox."
  10271. #: flatcamTools/ToolPanelize.py:128
  10272. msgid ""
  10273. "The actual object that is used a container for the\n"
  10274. " selected object that is to be panelized."
  10275. msgstr ""
  10276. "The actual object that is used a container for the\n"
  10277. " selected object that is to be panelized."
  10278. #: flatcamTools/ToolPanelize.py:134
  10279. #| msgid "<b>Panel Data:</b>"
  10280. msgid "Panel Data"
  10281. msgstr "Panel Data"
  10282. #: flatcamTools/ToolPanelize.py:136
  10283. msgid ""
  10284. "This informations will shape the resulting panel.\n"
  10285. "The number of rows and columns will set how many\n"
  10286. "duplicates of the original geometry will be generated.\n"
  10287. "\n"
  10288. "The spacings will set the distance between any two\n"
  10289. "elements of the panel array."
  10290. msgstr ""
  10291. "This informations will shape the resulting panel.\n"
  10292. "The number of rows and columns will set how many\n"
  10293. "duplicates of the original geometry will be generated.\n"
  10294. "\n"
  10295. "The spacings will set the distance between any two\n"
  10296. "elements of the panel array."
  10297. #: flatcamTools/ToolPanelize.py:183
  10298. #| msgid "Panel Type:"
  10299. msgid "Panel Type"
  10300. msgstr "Panel Type"
  10301. #: flatcamTools/ToolPanelize.py:185
  10302. msgid ""
  10303. "Choose the type of object for the panel object:\n"
  10304. "- Geometry\n"
  10305. "- Gerber"
  10306. msgstr ""
  10307. "Choose the type of object for the panel object:\n"
  10308. "- Geometry\n"
  10309. "- Gerber"
  10310. #: flatcamTools/ToolPanelize.py:193
  10311. msgid "Constrain panel within:"
  10312. msgstr "Constrain panel within:"
  10313. #: flatcamTools/ToolPanelize.py:227
  10314. msgid "Panelize Object"
  10315. msgstr "Panelize Object"
  10316. #: flatcamTools/ToolPanelize.py:229
  10317. msgid ""
  10318. "Panelize the specified object around the specified box.\n"
  10319. "In other words it creates multiple copies of the source object,\n"
  10320. "arranged in a 2D array of rows and columns."
  10321. msgstr ""
  10322. "Panelize the specified object around the specified box.\n"
  10323. "In other words it creates multiple copies of the source object,\n"
  10324. "arranged in a 2D array of rows and columns."
  10325. #: flatcamTools/ToolPanelize.py:272
  10326. msgid "Panel. Tool"
  10327. msgstr "Panel. Tool"
  10328. #: flatcamTools/ToolPanelize.py:372
  10329. #, python-format
  10330. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  10331. msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
  10332. #: flatcamTools/ToolPanelize.py:455
  10333. msgid ""
  10334. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  10335. "integer."
  10336. msgstr ""
  10337. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  10338. "integer."
  10339. #: flatcamTools/ToolPanelize.py:480 flatcamTools/ToolPanelize.py:637
  10340. msgid "Generating panel ... Please wait."
  10341. msgstr "Generating panel ... Please wait."
  10342. #: flatcamTools/ToolPanelize.py:630
  10343. msgid "[success] Panel done..."
  10344. msgstr "[success] Panel done..."
  10345. #: flatcamTools/ToolPanelize.py:633
  10346. #, python-brace-format
  10347. msgid ""
  10348. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  10349. "{row} rows"
  10350. msgstr ""
  10351. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  10352. "{row} rows"
  10353. #: flatcamTools/ToolPanelize.py:642
  10354. msgid "[success] Panel created successfully."
  10355. msgstr "[success] Panel created successfully."
  10356. #: flatcamTools/ToolPcbWizard.py:32
  10357. msgid "PcbWizard Import Tool"
  10358. msgstr "PcbWizard Import Tool"
  10359. #: flatcamTools/ToolPcbWizard.py:40
  10360. msgid "Import 2-file Excellon"
  10361. msgstr "Import 2-file Excellon"
  10362. #: flatcamTools/ToolPcbWizard.py:51
  10363. #| msgid "<b>Load files:</b>"
  10364. msgid "Load files"
  10365. msgstr "Load files"
  10366. #: flatcamTools/ToolPcbWizard.py:57
  10367. msgid "Excellon file:"
  10368. msgstr "Excellon file:"
  10369. #: flatcamTools/ToolPcbWizard.py:59
  10370. msgid ""
  10371. "Load the Excellon file.\n"
  10372. "Usually it has a .DRL extension"
  10373. msgstr ""
  10374. "Load the Excellon file.\n"
  10375. "Usually it has a .DRL extension"
  10376. #: flatcamTools/ToolPcbWizard.py:65
  10377. msgid "INF file:"
  10378. msgstr "INF file:"
  10379. #: flatcamTools/ToolPcbWizard.py:67
  10380. msgid "Load the INF file."
  10381. msgstr "Load the INF file."
  10382. #: flatcamTools/ToolPcbWizard.py:79
  10383. msgid "Tool Number"
  10384. msgstr "Tool Number"
  10385. #: flatcamTools/ToolPcbWizard.py:81
  10386. msgid "Tool diameter in file units."
  10387. msgstr "Tool diameter in file units."
  10388. #: flatcamTools/ToolPcbWizard.py:87
  10389. #| msgid "Excellon Export"
  10390. msgid "Excellon format"
  10391. msgstr "Excellon format"
  10392. #: flatcamTools/ToolPcbWizard.py:95
  10393. msgid "Int. digits:"
  10394. msgstr "Int. digits:"
  10395. #: flatcamTools/ToolPcbWizard.py:97
  10396. msgid "The number of digits for the integral part of the coordinates."
  10397. msgstr "The number of digits for the integral part of the coordinates."
  10398. #: flatcamTools/ToolPcbWizard.py:104
  10399. msgid "Frac. digits:"
  10400. msgstr "Frac. digits:"
  10401. #: flatcamTools/ToolPcbWizard.py:106
  10402. msgid "The number of digits for the fractional part of the coordinates."
  10403. msgstr "The number of digits for the fractional part of the coordinates."
  10404. #: flatcamTools/ToolPcbWizard.py:113
  10405. msgid "No Suppression"
  10406. msgstr "No Suppression"
  10407. #: flatcamTools/ToolPcbWizard.py:114
  10408. msgid "Zeros supp.:"
  10409. msgstr "Zeros supp.:"
  10410. #: flatcamTools/ToolPcbWizard.py:116
  10411. msgid ""
  10412. "The type of zeros suppression used.\n"
  10413. "Can be of type:\n"
  10414. "- LZ = leading zeros are kept\n"
  10415. "- TZ = trailing zeros are kept\n"
  10416. "- No Suppression = no zero suppression"
  10417. msgstr ""
  10418. "The type of zeros suppression used.\n"
  10419. "Can be of type:\n"
  10420. "- LZ = leading zeros are kept\n"
  10421. "- TZ = trailing zeros are kept\n"
  10422. "- No Suppression = no zero suppression"
  10423. #: flatcamTools/ToolPcbWizard.py:127
  10424. msgid "Units"
  10425. msgstr "Units"
  10426. #: flatcamTools/ToolPcbWizard.py:129
  10427. msgid ""
  10428. "The type of units that the coordinates and tool\n"
  10429. "diameters are using. Can be INCH or MM."
  10430. msgstr ""
  10431. "The type of units that the coordinates and tool\n"
  10432. "diameters are using. Can be INCH or MM."
  10433. #: flatcamTools/ToolPcbWizard.py:136
  10434. msgid "Import Excellon"
  10435. msgstr "Import Excellon"
  10436. #: flatcamTools/ToolPcbWizard.py:138
  10437. msgid ""
  10438. "Import in FlatCAM an Excellon file\n"
  10439. "that store it's information's in 2 files.\n"
  10440. "One usually has .DRL extension while\n"
  10441. "the other has .INF extension."
  10442. msgstr ""
  10443. "Import in FlatCAM an Excellon file\n"
  10444. "that store it's information's in 2 files.\n"
  10445. "One usually has .DRL extension while\n"
  10446. "the other has .INF extension."
  10447. #: flatcamTools/ToolPcbWizard.py:192
  10448. msgid "PCBWizard Tool"
  10449. msgstr "PCBWizard Tool"
  10450. #: flatcamTools/ToolPcbWizard.py:286 flatcamTools/ToolPcbWizard.py:290
  10451. msgid "Load PcbWizard Excellon file"
  10452. msgstr "Load PcbWizard Excellon file"
  10453. #: flatcamTools/ToolPcbWizard.py:309 flatcamTools/ToolPcbWizard.py:313
  10454. msgid "Load PcbWizard INF file"
  10455. msgstr "Load PcbWizard INF file"
  10456. #: flatcamTools/ToolPcbWizard.py:360
  10457. msgid ""
  10458. "[ERROR] The INF file does not contain the tool table.\n"
  10459. "Try to open the Excellon file from File -> Open -> Excellon\n"
  10460. "and edit the drill diameters manually."
  10461. msgstr ""
  10462. "[ERROR] The INF file does not contain the tool table.\n"
  10463. "Try to open the Excellon file from File -> Open -> Excellon\n"
  10464. "and edit the drill diameters manually."
  10465. #: flatcamTools/ToolPcbWizard.py:380
  10466. msgid "[success] PcbWizard .INF file loaded."
  10467. msgstr "[success] PcbWizard .INF file loaded."
  10468. #: flatcamTools/ToolPcbWizard.py:384
  10469. msgid "[success] Main PcbWizard Excellon file loaded."
  10470. msgstr "[success] Main PcbWizard Excellon file loaded."
  10471. #: flatcamTools/ToolPcbWizard.py:421
  10472. #, python-format
  10473. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  10474. msgstr "[ERROR_NOTCL] Cannot parse file: %s"
  10475. #: flatcamTools/ToolPcbWizard.py:445
  10476. msgid "Importing Excellon."
  10477. msgstr "Importing Excellon."
  10478. #: flatcamTools/ToolPcbWizard.py:452
  10479. msgid "[ERROR_NOTCL] Import Excellon file failed."
  10480. msgstr "[ERROR_NOTCL] Import Excellon file failed."
  10481. #: flatcamTools/ToolPcbWizard.py:459
  10482. #, python-format
  10483. msgid "[success] Imported: %s"
  10484. msgstr "[success] Imported: %s"
  10485. #: flatcamTools/ToolPcbWizard.py:462
  10486. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  10487. msgstr "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  10488. #: flatcamTools/ToolPcbWizard.py:464
  10489. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  10490. msgstr "[ERROR_NOTCL] The imported Excellon file is None."
  10491. #: flatcamTools/ToolProperties.py:103
  10492. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  10493. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  10494. #: flatcamTools/ToolProperties.py:110
  10495. msgid "[success] Object Properties are displayed."
  10496. msgstr "[success] Object Properties are displayed."
  10497. #: flatcamTools/ToolProperties.py:111
  10498. msgid "Properties Tool"
  10499. msgstr "Properties Tool"
  10500. #: flatcamTools/ToolShell.py:69
  10501. msgid "...proccessing..."
  10502. msgstr "...proccessing..."
  10503. #: flatcamTools/ToolShell.py:71
  10504. #, python-format
  10505. msgid "...proccessing... [%s]"
  10506. msgstr "...proccessing... [%s]"
  10507. #: flatcamTools/ToolSolderPaste.py:37
  10508. msgid "Solder Paste Tool"
  10509. msgstr "Solder Paste Tool"
  10510. #: flatcamTools/ToolSolderPaste.py:65
  10511. msgid "Gerber Solder paste object. "
  10512. msgstr "Gerber Solder paste object. "
  10513. #: flatcamTools/ToolSolderPaste.py:72
  10514. msgid ""
  10515. "Tools pool from which the algorithm\n"
  10516. "will pick the ones used for dispensing solder paste."
  10517. msgstr ""
  10518. "Tools pool from which the algorithm\n"
  10519. "will pick the ones used for dispensing solder paste."
  10520. #: flatcamTools/ToolSolderPaste.py:87
  10521. msgid ""
  10522. "This is the Tool Number.\n"
  10523. "The solder dispensing will start with the tool with the biggest \n"
  10524. "diameter, continuing until there are no more Nozzle tools.\n"
  10525. "If there are no longer tools but there are still pads not covered\n"
  10526. " with solder paste, the app will issue a warning message box."
  10527. msgstr ""
  10528. "This is the Tool Number.\n"
  10529. "The solder dispensing will start with the tool with the biggest \n"
  10530. "diameter, continuing until there are no more Nozzle tools.\n"
  10531. "If there are no longer tools but there are still pads not covered\n"
  10532. " with solder paste, the app will issue a warning message box."
  10533. #: flatcamTools/ToolSolderPaste.py:94
  10534. msgid ""
  10535. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  10536. "is the width of the solder paste dispensed."
  10537. msgstr ""
  10538. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  10539. "is the width of the solder paste dispensed."
  10540. #: flatcamTools/ToolSolderPaste.py:101
  10541. msgid "New Nozzle Tool"
  10542. msgstr "New Nozzle Tool"
  10543. #: flatcamTools/ToolSolderPaste.py:117
  10544. msgid ""
  10545. "Add a new nozzle tool to the Tool Table\n"
  10546. "with the diameter specified above."
  10547. msgstr ""
  10548. "Add a new nozzle tool to the Tool Table\n"
  10549. "with the diameter specified above."
  10550. #: flatcamTools/ToolSolderPaste.py:129
  10551. msgid "Generate solder paste dispensing geometry."
  10552. msgstr "Generate solder paste dispensing geometry."
  10553. #: flatcamTools/ToolSolderPaste.py:142
  10554. msgid "STEP 1:"
  10555. msgstr "STEP 1:"
  10556. #: flatcamTools/ToolSolderPaste.py:144
  10557. msgid ""
  10558. "First step is to select a number of nozzle tools for usage\n"
  10559. "and then optionally modify the GCode parameters bellow."
  10560. msgstr ""
  10561. "First step is to select a number of nozzle tools for usage\n"
  10562. "and then optionally modify the GCode parameters bellow."
  10563. #: flatcamTools/ToolSolderPaste.py:147
  10564. msgid ""
  10565. "Select tools.\n"
  10566. "Modify parameters."
  10567. msgstr ""
  10568. "Select tools.\n"
  10569. "Modify parameters."
  10570. #: flatcamTools/ToolSolderPaste.py:235
  10571. msgid ""
  10572. "Feedrate (speed) while moving up vertically\n"
  10573. " to Dispense position (on Z plane)."
  10574. msgstr ""
  10575. "Feedrate (speed) while moving up vertically\n"
  10576. " to Dispense position (on Z plane)."
  10577. #: flatcamTools/ToolSolderPaste.py:289
  10578. msgid "Generate GCode"
  10579. msgstr "Generate GCode"
  10580. #: flatcamTools/ToolSolderPaste.py:291
  10581. msgid ""
  10582. "Generate GCode for Solder Paste dispensing\n"
  10583. "on PCB pads."
  10584. msgstr ""
  10585. "Generate GCode for Solder Paste dispensing\n"
  10586. "on PCB pads."
  10587. #: flatcamTools/ToolSolderPaste.py:306
  10588. msgid "STEP 2:"
  10589. msgstr "STEP 2:"
  10590. #: flatcamTools/ToolSolderPaste.py:308
  10591. msgid ""
  10592. "Second step is to create a solder paste dispensing\n"
  10593. "geometry out of an Solder Paste Mask Gerber file."
  10594. msgstr ""
  10595. "Second step is to create a solder paste dispensing\n"
  10596. "geometry out of an Solder Paste Mask Gerber file."
  10597. #: flatcamTools/ToolSolderPaste.py:324
  10598. msgid "Geo Result:"
  10599. msgstr "Geo Result:"
  10600. #: flatcamTools/ToolSolderPaste.py:326
  10601. msgid ""
  10602. "Geometry Solder Paste object.\n"
  10603. "The name of the object has to end in:\n"
  10604. "'_solderpaste' as a protection."
  10605. msgstr ""
  10606. "Geometry Solder Paste object.\n"
  10607. "The name of the object has to end in:\n"
  10608. "'_solderpaste' as a protection."
  10609. #: flatcamTools/ToolSolderPaste.py:335
  10610. msgid "STEP 3:"
  10611. msgstr "STEP 3:"
  10612. #: flatcamTools/ToolSolderPaste.py:337
  10613. msgid ""
  10614. "Third step is to select a solder paste dispensing geometry,\n"
  10615. "and then generate a CNCJob object.\n"
  10616. "\n"
  10617. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10618. "first you need to generate a geometry with those new params,\n"
  10619. "and only after that you can generate an updated CNCJob."
  10620. msgstr ""
  10621. "Third step is to select a solder paste dispensing geometry,\n"
  10622. "and then generate a CNCJob object.\n"
  10623. "\n"
  10624. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10625. "first you need to generate a geometry with those new params,\n"
  10626. "and only after that you can generate an updated CNCJob."
  10627. #: flatcamTools/ToolSolderPaste.py:357
  10628. msgid "CNC Result:"
  10629. msgstr "CNC Result:"
  10630. #: flatcamTools/ToolSolderPaste.py:359
  10631. msgid ""
  10632. "CNCJob Solder paste object.\n"
  10633. "In order to enable the GCode save section,\n"
  10634. "the name of the object has to end in:\n"
  10635. "'_solderpaste' as a protection."
  10636. msgstr ""
  10637. "CNCJob Solder paste object.\n"
  10638. "In order to enable the GCode save section,\n"
  10639. "the name of the object has to end in:\n"
  10640. "'_solderpaste' as a protection."
  10641. #: flatcamTools/ToolSolderPaste.py:369
  10642. msgid "View GCode"
  10643. msgstr "View GCode"
  10644. #: flatcamTools/ToolSolderPaste.py:371
  10645. msgid ""
  10646. "View the generated GCode for Solder Paste dispensing\n"
  10647. "on PCB pads."
  10648. msgstr ""
  10649. "View the generated GCode for Solder Paste dispensing\n"
  10650. "on PCB pads."
  10651. #: flatcamTools/ToolSolderPaste.py:375
  10652. msgid "Save GCode"
  10653. msgstr "Save GCode"
  10654. #: flatcamTools/ToolSolderPaste.py:377
  10655. msgid ""
  10656. "Save the generated GCode for Solder Paste dispensing\n"
  10657. "on PCB pads, to a file."
  10658. msgstr ""
  10659. "Save the generated GCode for Solder Paste dispensing\n"
  10660. "on PCB pads, to a file."
  10661. #: flatcamTools/ToolSolderPaste.py:381
  10662. msgid "STEP 4:"
  10663. msgstr "STEP 4:"
  10664. #: flatcamTools/ToolSolderPaste.py:383
  10665. msgid ""
  10666. "Fourth step (and last) is to select a CNCJob made from \n"
  10667. "a solder paste dispensing geometry, and then view/save it's GCode."
  10668. msgstr ""
  10669. "Fourth step (and last) is to select a CNCJob made from \n"
  10670. "a solder paste dispensing geometry, and then view/save it's GCode."
  10671. #: flatcamTools/ToolSolderPaste.py:412
  10672. msgid "Delete Object"
  10673. msgstr "Delete Object"
  10674. #: flatcamTools/ToolSolderPaste.py:792
  10675. msgid ""
  10676. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10677. msgstr ""
  10678. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10679. #: flatcamTools/ToolSolderPaste.py:797
  10680. msgid "[success] New Nozzle tool added to Tool Table."
  10681. msgstr "[success] New Nozzle tool added to Tool Table."
  10682. #: flatcamTools/ToolSolderPaste.py:839
  10683. msgid "[success] Nozzle tool from Tool Table was edited."
  10684. msgstr "[success] Nozzle tool from Tool Table was edited."
  10685. #: flatcamTools/ToolSolderPaste.py:896
  10686. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10687. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10688. #: flatcamTools/ToolSolderPaste.py:901
  10689. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  10690. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  10691. #: flatcamTools/ToolSolderPaste.py:956
  10692. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10693. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10694. #: flatcamTools/ToolSolderPaste.py:974
  10695. msgid "Creating Solder Paste dispensing geometry."
  10696. msgstr "Creating Solder Paste dispensing geometry."
  10697. #: flatcamTools/ToolSolderPaste.py:986
  10698. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10699. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10700. #: flatcamTools/ToolSolderPaste.py:1115
  10701. msgid "[success] Solder Paste geometry generated successfully..."
  10702. msgstr "[success] Solder Paste geometry generated successfully..."
  10703. #: flatcamTools/ToolSolderPaste.py:1121
  10704. msgid ""
  10705. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10706. "diameters..."
  10707. msgstr ""
  10708. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10709. "diameters..."
  10710. #: flatcamTools/ToolSolderPaste.py:1135
  10711. msgid "Generating Solder Paste dispensing geometry..."
  10712. msgstr "Generating Solder Paste dispensing geometry..."
  10713. #: flatcamTools/ToolSolderPaste.py:1155
  10714. msgid "[WARNING_NOTCL] There is no Geometry object available."
  10715. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  10716. #: flatcamTools/ToolSolderPaste.py:1159
  10717. msgid ""
  10718. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10719. "geometry."
  10720. msgstr ""
  10721. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10722. "geometry."
  10723. #: flatcamTools/ToolSolderPaste.py:1265
  10724. #, python-format
  10725. msgid "[success] ToolSolderPaste CNCjob created: %s"
  10726. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  10727. #: flatcamTools/ToolSolderPaste.py:1297 flatcamTools/ToolSolderPaste.py:1301
  10728. #: flatcamTools/ToolSolderPaste.py:1353
  10729. msgid ""
  10730. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10731. "solder_paste_tool CNCJob object."
  10732. msgstr ""
  10733. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10734. "solder_paste_tool CNCJob object."
  10735. #: flatcamTools/ToolSolderPaste.py:1325
  10736. msgid "[ERROR_NOTCL] No Gcode in the object..."
  10737. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  10738. #: flatcamTools/ToolSolderPaste.py:1334
  10739. #, python-format
  10740. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10741. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10742. #: flatcamTools/ToolSolderPaste.py:1363
  10743. msgid "Export GCode ..."
  10744. msgstr "Export GCode ..."
  10745. #: flatcamTools/ToolSolderPaste.py:1407
  10746. #, python-format
  10747. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  10748. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  10749. #: flatcamTools/ToolSub.py:55
  10750. #| msgid "Gerber Object"
  10751. msgid "Gerber Objects"
  10752. msgstr "Gerber Objects"
  10753. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  10754. msgid "Target:"
  10755. msgstr "Target:"
  10756. #: flatcamTools/ToolSub.py:66
  10757. msgid ""
  10758. "Gerber object from which to substract\n"
  10759. "the substractor Gerber object."
  10760. msgstr ""
  10761. "Gerber object from which to substract\n"
  10762. "the substractor Gerber object."
  10763. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  10764. msgid "Substractor:"
  10765. msgstr "Substractor:"
  10766. #: flatcamTools/ToolSub.py:80
  10767. msgid ""
  10768. "Gerber object that will be substracted\n"
  10769. "from the target Gerber object."
  10770. msgstr ""
  10771. "Gerber object that will be substracted\n"
  10772. "from the target Gerber object."
  10773. #: flatcamTools/ToolSub.py:87
  10774. msgid "Substract Gerber"
  10775. msgstr "Substract Gerber"
  10776. #: flatcamTools/ToolSub.py:89
  10777. msgid ""
  10778. "Will remove the area occupied by the substractor\n"
  10779. "Gerber from the Target Gerber.\n"
  10780. "Can be used to remove the overlapping silkscreen\n"
  10781. "over the soldermask."
  10782. msgstr ""
  10783. "Will remove the area occupied by the substractor\n"
  10784. "Gerber from the Target Gerber.\n"
  10785. "Can be used to remove the overlapping silkscreen\n"
  10786. "over the soldermask."
  10787. #: flatcamTools/ToolSub.py:101
  10788. #| msgid "Geometry Object"
  10789. msgid "Geometry Objects"
  10790. msgstr "Geometry Objects"
  10791. #: flatcamTools/ToolSub.py:112
  10792. msgid ""
  10793. "Geometry object from which to substract\n"
  10794. "the substractor Geometry object."
  10795. msgstr ""
  10796. "Geometry object from which to substract\n"
  10797. "the substractor Geometry object."
  10798. #: flatcamTools/ToolSub.py:126
  10799. msgid ""
  10800. "Geometry object that will be substracted\n"
  10801. "from the target Geometry object."
  10802. msgstr ""
  10803. "Geometry object that will be substracted\n"
  10804. "from the target Geometry object."
  10805. #: flatcamTools/ToolSub.py:137
  10806. msgid "Substract Geometry"
  10807. msgstr "Substract Geometry"
  10808. #: flatcamTools/ToolSub.py:139
  10809. msgid ""
  10810. "Will remove the area occupied by the substractor\n"
  10811. "Geometry from the Target Geometry."
  10812. msgstr ""
  10813. "Will remove the area occupied by the substractor\n"
  10814. "Geometry from the Target Geometry."
  10815. #: flatcamTools/ToolSub.py:220
  10816. msgid "Sub Tool"
  10817. msgstr "Sub Tool"
  10818. #: flatcamTools/ToolSub.py:236 flatcamTools/ToolSub.py:429
  10819. msgid "[ERROR_NOTCL] No Target object loaded."
  10820. msgstr "[ERROR_NOTCL] No Target object loaded."
  10821. #: flatcamTools/ToolSub.py:249 flatcamTools/ToolSub.py:442
  10822. msgid "[ERROR_NOTCL] No Substractor object loaded."
  10823. msgstr "[ERROR_NOTCL] No Substractor object loaded."
  10824. #: flatcamTools/ToolSub.py:302
  10825. #, python-format
  10826. msgid "Parsing aperture %s geometry ..."
  10827. msgstr "Parsing aperture %s geometry ..."
  10828. #: flatcamTools/ToolSub.py:404 flatcamTools/ToolSub.py:597
  10829. msgid "Generating new object ..."
  10830. msgstr "Generating new object ..."
  10831. #: flatcamTools/ToolSub.py:407 flatcamTools/ToolSub.py:600
  10832. msgid "[ERROR_NOTCL] Generating new object failed."
  10833. msgstr "[ERROR_NOTCL] Generating new object failed."
  10834. #: flatcamTools/ToolSub.py:411 flatcamTools/ToolSub.py:605
  10835. #, python-format
  10836. msgid "[success] Created: %s"
  10837. msgstr "[success] Created: %s"
  10838. #: flatcamTools/ToolSub.py:454
  10839. msgid ""
  10840. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10841. msgstr ""
  10842. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10843. #: flatcamTools/ToolSub.py:499
  10844. msgid "Parsing solid_geometry ..."
  10845. msgstr "Parsing solid_geometry ..."
  10846. #: flatcamTools/ToolSub.py:501
  10847. #, python-format
  10848. msgid "Parsing tool %s geometry ..."
  10849. msgstr "Parsing tool %s geometry ..."
  10850. #: flatcamTools/ToolTransform.py:23
  10851. msgid "Object Transform"
  10852. msgstr "Object Transform"
  10853. #: flatcamTools/ToolTransform.py:84
  10854. msgid ""
  10855. "Rotate the selected object(s).\n"
  10856. "The point of reference is the middle of\n"
  10857. "the bounding box for all selected objects."
  10858. msgstr ""
  10859. "Rotate the selected object(s).\n"
  10860. "The point of reference is the middle of\n"
  10861. "the bounding box for all selected objects."
  10862. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10863. msgid ""
  10864. "Skew/shear the selected object(s).\n"
  10865. "The point of reference is the middle of\n"
  10866. "the bounding box for all selected objects."
  10867. msgstr ""
  10868. "Skew/shear the selected object(s).\n"
  10869. "The point of reference is the middle of\n"
  10870. "the bounding box for all selected objects."
  10871. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10872. msgid ""
  10873. "Scale the selected object(s).\n"
  10874. "The point of reference depends on \n"
  10875. "the Scale reference checkbox state."
  10876. msgstr ""
  10877. "Scale the selected object(s).\n"
  10878. "The point of reference depends on \n"
  10879. "the Scale reference checkbox state."
  10880. #: flatcamTools/ToolTransform.py:202
  10881. msgid ""
  10882. "Scale the selected object(s)\n"
  10883. "using the Scale Factor X for both axis."
  10884. msgstr ""
  10885. "Scale the selected object(s)\n"
  10886. "using the Scale Factor X for both axis."
  10887. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  10888. msgid ""
  10889. "Offset the selected object(s).\n"
  10890. "The point of reference is the middle of\n"
  10891. "the bounding box for all selected objects.\n"
  10892. msgstr ""
  10893. "Offset the selected object(s).\n"
  10894. "The point of reference is the middle of\n"
  10895. "the bounding box for all selected objects.\n"
  10896. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  10897. msgid ""
  10898. "Flip the selected object(s) over the X axis.\n"
  10899. "Does not create a new object.\n"
  10900. " "
  10901. msgstr ""
  10902. "Flip the selected object(s) over the X axis.\n"
  10903. "Does not create a new object.\n"
  10904. " "
  10905. #: flatcamTools/ToolTransform.py:636
  10906. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10907. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10908. #: flatcamTools/ToolTransform.py:664
  10909. msgid "CNCJob objects can't be rotated."
  10910. msgstr "CNCJob objects can't be rotated."
  10911. #: flatcamTools/ToolTransform.py:672
  10912. msgid "[success] Rotate done ..."
  10913. msgstr "[success] Rotate done ..."
  10914. #: flatcamTools/ToolTransform.py:687
  10915. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10916. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10917. #: flatcamTools/ToolTransform.py:722
  10918. msgid "CNCJob objects can't be mirrored/flipped."
  10919. msgstr "CNCJob objects can't be mirrored/flipped."
  10920. #: flatcamTools/ToolTransform.py:756
  10921. msgid ""
  10922. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10923. msgstr ""
  10924. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10925. #: flatcamTools/ToolTransform.py:778
  10926. msgid "CNCJob objects can't be skewed."
  10927. msgstr "CNCJob objects can't be skewed."
  10928. #: flatcamTools/ToolTransform.py:805
  10929. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10930. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10931. #: flatcamTools/ToolTransform.py:838
  10932. msgid "CNCJob objects can't be scaled."
  10933. msgstr "CNCJob objects can't be scaled."
  10934. #: flatcamTools/ToolTransform.py:857
  10935. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10936. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10937. #: flatcamTools/ToolTransform.py:866
  10938. msgid "CNCJob objects can't be offseted."
  10939. msgstr "CNCJob objects can't be offseted."
  10940. #~ msgid "<b>Excellon Format:</b>"
  10941. #~ msgstr "<b>Excellon Format:</b>"
  10942. #~ msgid "<b>Tools:</b>"
  10943. #~ msgstr "<b>Tools:</b>"
  10944. #~ msgid "<b>Export G-Code:</b>"
  10945. #~ msgstr "<b>Export G-Code:</b>"
  10946. #~ msgid "How to select the polygons to paint."
  10947. #~ msgstr "How to select the polygons to paint."
  10948. #~ msgid "<b>V-Shape Tool Calculator:</b>"
  10949. #~ msgstr "<b>V-Shape Tool Calculator:</b>"
  10950. #~ msgid "<b>ElectroPlating Calculator:</b>"
  10951. #~ msgstr "<b>ElectroPlating Calculator:</b>"
  10952. #~ msgid "<b>Name:</b>"
  10953. #~ msgstr "<b>Name:</b>"
  10954. #~ msgid "<b>Plot kind:</b>"
  10955. #~ msgstr "<b>Plot kind:</b>"
  10956. #~ msgid "<b>Display Annotation:</b>"
  10957. #~ msgstr "<b>Display Annotation:</b>"
  10958. #~ msgid "<b>GERBER:</b>"
  10959. #~ msgstr "<b>GERBER:</b>"
  10960. #~ msgid "<b>EXCELLON:</b>"
  10961. #~ msgstr "<b>EXCELLON:</b>"
  10962. #~ msgid "<b>GEOMETRY</b>:"
  10963. #~ msgstr "<b>GEOMETRY</b>:"
  10964. #~ msgid "<b>Panel Type:</b>"
  10965. #~ msgstr "<b>Panel Type:</b>"
  10966. #~ msgid "<b>Excellon format:</b>"
  10967. #~ msgstr "<b>Excellon format:</b>"
  10968. #~ msgid "<b>Gerber Objects</b>"
  10969. #~ msgstr "<b>Gerber Objects</b>"
  10970. #~ msgid "<b>Geometry Objects</b>"
  10971. #~ msgstr "<b>Geometry Objects</b>"
  10972. #~ msgid "Save &Defaults"
  10973. #~ msgstr "Save &Defaults"
  10974. #~ msgid "Line"
  10975. #~ msgstr "Line"
  10976. #~ msgid "Tool dia: "
  10977. #~ msgstr "Tool dia: "
  10978. #~ msgid ""
  10979. #~ "The diameter of the cutting\n"
  10980. #~ "tool.."
  10981. #~ msgstr ""
  10982. #~ "The diameter of the cutting\n"
  10983. #~ "tool.."
  10984. #~ msgid "Disable"
  10985. #~ msgstr "Disable"
  10986. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  10987. #~ msgstr "[WARNING_NOTCL] Move cancelled. No shape selected."
  10988. #~ msgid "Click on the Destination point..."
  10989. #~ msgstr "Click on the Destination point..."
  10990. #~ msgid "Copy as &Geom"
  10991. #~ msgstr "Copy as &Geom"
  10992. #~ msgid "Ap. Scale Factor:"
  10993. #~ msgstr "Ap. Scale Factor:"
  10994. #~ msgid ""
  10995. #~ "Change the size of the selected apertures.\n"
  10996. #~ "Factor by which to multiply\n"
  10997. #~ "geometric features of this object."
  10998. #~ msgstr ""
  10999. #~ "Change the size of the selected apertures.\n"
  11000. #~ "Factor by which to multiply\n"
  11001. #~ "geometric features of this object."
  11002. #~ msgid "Ap. Buffer Factor:"
  11003. #~ msgstr "Ap. Buffer Factor:"
  11004. #~ msgid ""
  11005. #~ "Change the size of the selected apertures.\n"
  11006. #~ "Factor by which to expand/shrink\n"
  11007. #~ "geometric features of this object."
  11008. #~ msgstr ""
  11009. #~ "Change the size of the selected apertures.\n"
  11010. #~ "Factor by which to expand/shrink\n"
  11011. #~ "geometric features of this object."
  11012. #~ msgid "[WARNING]No object Box. Using instead %s"
  11013. #~ msgstr "[WARNING]No object Box. Using instead %s"
  11014. #~ msgid "In"
  11015. #~ msgstr "In"
  11016. #~ msgid "Out"
  11017. #~ msgstr "Out"
  11018. #~ msgid "Custom"
  11019. #~ msgstr "Custom"
  11020. #~ msgid "Copy Drill(s)"
  11021. #~ msgstr "Copy Drill(s)"
  11022. #~ msgid "Both"
  11023. #~ msgstr "Both"
  11024. #~ msgid "Pos"
  11025. #~ msgstr "Pos"
  11026. #~ msgid "Neg"
  11027. #~ msgstr "Neg"
  11028. #~ msgid "Solid "
  11029. #~ msgstr "Solid "
  11030. #~ msgid "M-Color "
  11031. #~ msgstr "M-Color "
  11032. #~ msgid "Click on CENTER ..."
  11033. #~ msgstr "Click on CENTER ..."
  11034. #~ msgid "[success] Done. Region completed."
  11035. #~ msgstr "[success] Done. Region completed."
  11036. #~ msgid "Add an aperture to the aperture list"
  11037. #~ msgstr "Add an aperture to the aperture list"
  11038. #~ msgid "Del Aperture:"
  11039. #~ msgstr "Del Aperture:"
  11040. #~ msgid ""
  11041. #~ "Delete a aperture in the aperture list.\n"
  11042. #~ "It will delete also the associated geometry."
  11043. #~ msgstr ""
  11044. #~ "Delete a aperture in the aperture list.\n"
  11045. #~ "It will delete also the associated geometry."
  11046. #~ msgid "Save && Close Edit"
  11047. #~ msgstr "Save && Close Edit"
  11048. #~ msgid ""
  11049. #~ "<b>Editor Shortcut list</b><br>\n"
  11050. #~ " <br>\n"
  11051. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  11052. #~ "strong><br>\n"
  11053. #~ " \n"
  11054. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11055. #~ "\"width:283px\">\n"
  11056. #~ " <tbody>\n"
  11057. #~ " <tr height=\"20\">\n"
  11058. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11059. #~ "strong></td>\n"
  11060. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  11061. #~ " </tr>\n"
  11062. #~ " <tr height=\"20\">\n"
  11063. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  11064. #~ " <td>&nbsp;Buffer Tool</td>\n"
  11065. #~ " </tr>\n"
  11066. #~ " <tr height=\"20\">\n"
  11067. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11068. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  11069. #~ " </tr>\n"
  11070. #~ " <tr height=\"20\">\n"
  11071. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  11072. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  11073. #~ " </tr>\n"
  11074. #~ " <tr height=\"20\">\n"
  11075. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  11076. #~ " <td>&nbsp;Paint Tool</td>\n"
  11077. #~ " </tr>\n"
  11078. #~ " <tr height=\"20\">\n"
  11079. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11080. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11081. #~ " </tr>\n"
  11082. #~ " <tr height=\"20\">\n"
  11083. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  11084. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  11085. #~ " </tr>\n"
  11086. #~ " <tr height=\"20\">\n"
  11087. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11088. #~ " <td>&nbsp;Move Geo Item</td>\n"
  11089. #~ " </tr>\n"
  11090. #~ " <tr height=\"20\">\n"
  11091. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  11092. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  11093. #~ " </tr>\n"
  11094. #~ " <tr height=\"20\">\n"
  11095. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  11096. #~ " <td>&nbsp;Draw a Circle</td>\n"
  11097. #~ " </tr>\n"
  11098. #~ " <tr height=\"20\">\n"
  11099. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  11100. #~ " <td>&nbsp;Draw a Path</td>\n"
  11101. #~ " </tr>\n"
  11102. #~ " <tr height=\"20\">\n"
  11103. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11104. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  11105. #~ " </tr>\n"
  11106. #~ " <tr height=\"20\">\n"
  11107. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  11108. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  11109. #~ " </tr>\n"
  11110. #~ " <tr height=\"20\">\n"
  11111. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11112. #~ " <td>&nbsp;Add Text Tool</td>\n"
  11113. #~ " </tr>\n"
  11114. #~ " <tr height=\"20\">\n"
  11115. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  11116. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  11117. #~ " </tr>\n"
  11118. #~ " <tr height=\"20\">\n"
  11119. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  11120. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  11121. #~ " </tr>\n"
  11122. #~ " <tr height=\"20\">\n"
  11123. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  11124. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  11125. #~ " </tr>\n"
  11126. #~ " <tr height=\"20\">\n"
  11127. #~ " <td height=\"20\">&nbsp;</td>\n"
  11128. #~ " <td>&nbsp;</td>\n"
  11129. #~ " </tr>\n"
  11130. #~ " <tr height=\"20\">\n"
  11131. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  11132. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  11133. #~ " </tr>\n"
  11134. #~ " <tr height=\"20\">\n"
  11135. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  11136. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  11137. #~ " </tr>\n"
  11138. #~ " <tr height=\"20\">\n"
  11139. #~ " <td height=\"20\">&nbsp;</td>\n"
  11140. #~ " <td>&nbsp;</td>\n"
  11141. #~ " </tr>\n"
  11142. #~ " <tr height=\"20\">\n"
  11143. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  11144. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  11145. #~ " </tr>\n"
  11146. #~ " <tr height=\"20\">\n"
  11147. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  11148. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  11149. #~ " </tr>\n"
  11150. #~ " <tr height=\"20\">\n"
  11151. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  11152. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  11153. #~ " </tr>\n"
  11154. #~ " <tr height=\"20\">\n"
  11155. #~ " <td height=\"20\">&nbsp;</td>\n"
  11156. #~ " <td>&nbsp;</td>\n"
  11157. #~ " </tr>\n"
  11158. #~ " <tr height=\"20\">\n"
  11159. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  11160. #~ " <td>&nbsp;Measurement Tool</td>\n"
  11161. #~ " </tr>\n"
  11162. #~ " <tr height=\"20\">\n"
  11163. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11164. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11165. #~ " </tr>\n"
  11166. #~ " <tr height=\"20\">\n"
  11167. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  11168. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  11169. #~ " </tr>\n"
  11170. #~ " <tr height=\"20\">\n"
  11171. #~ " <td height=\"20\">&nbsp;</td>\n"
  11172. #~ " <td>&nbsp;</td>\n"
  11173. #~ " </tr>\n"
  11174. #~ " <tr height=\"20\">\n"
  11175. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  11176. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  11177. #~ " </tr>\n"
  11178. #~ " <tr height=\"20\">\n"
  11179. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  11180. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  11181. #~ " </tr>\n"
  11182. #~ " <tr height=\"20\">\n"
  11183. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11184. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11185. #~ " </tr>\n"
  11186. #~ " <tr height=\"20\">\n"
  11187. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11188. #~ " <td>&nbsp;Delete Shape</td>\n"
  11189. #~ " </tr>\n"
  11190. #~ " </tbody>\n"
  11191. #~ " </table>\n"
  11192. #~ " <br>\n"
  11193. #~ " <br>\n"
  11194. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  11195. #~ "strong><br>\n"
  11196. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11197. #~ "\"width:283px\">\n"
  11198. #~ " <tbody>\n"
  11199. #~ " <tr height=\"20\">\n"
  11200. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11201. #~ "strong></td>\n"
  11202. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  11203. #~ " </tr>\n"
  11204. #~ " <tr height=\"20\">\n"
  11205. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11206. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11207. #~ " </tr>\n"
  11208. #~ " <tr height=\"20\">\n"
  11209. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11210. #~ " <td>&nbsp;Add Drill</td>\n"
  11211. #~ " </tr>\n"
  11212. #~ " <tr height=\"20\">\n"
  11213. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11214. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11215. #~ " </tr>\n"
  11216. #~ " <tr height=\"20\">\n"
  11217. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11218. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11219. #~ " </tr>\n"
  11220. #~ " <tr height=\"20\">\n"
  11221. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11222. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11223. #~ " </tr>\n"
  11224. #~ " <tr height=\"20\">\n"
  11225. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11226. #~ " <td>&nbsp;Add a new Tool</td>\n"
  11227. #~ " </tr>\n"
  11228. #~ " <tr height=\"20\">\n"
  11229. #~ " <td height=\"20\">&nbsp;</td>\n"
  11230. #~ " <td>&nbsp;</td>\n"
  11231. #~ " </tr>\n"
  11232. #~ " <tr height=\"20\">\n"
  11233. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11234. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11235. #~ " </tr>\n"
  11236. #~ " <tr height=\"20\">\n"
  11237. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11238. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11239. #~ " </tr>\n"
  11240. #~ " <tr height=\"20\">\n"
  11241. #~ " <td height=\"20\">&nbsp;</td>\n"
  11242. #~ " <td>&nbsp;</td>\n"
  11243. #~ " </tr>\n"
  11244. #~ " <tr height=\"20\">\n"
  11245. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11246. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11247. #~ " </tr>\n"
  11248. #~ " <tr height=\"20\">\n"
  11249. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11250. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11251. #~ " </tr>\n"
  11252. #~ " </tbody>\n"
  11253. #~ " </table>\n"
  11254. #~ " "
  11255. #~ msgstr ""
  11256. #~ "<b>Editor Shortcut list</b><br>\n"
  11257. #~ " <br>\n"
  11258. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  11259. #~ "strong><br>\n"
  11260. #~ " \n"
  11261. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11262. #~ "\"width:283px\">\n"
  11263. #~ " <tbody>\n"
  11264. #~ " <tr height=\"20\">\n"
  11265. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11266. #~ "strong></td>\n"
  11267. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  11268. #~ " </tr>\n"
  11269. #~ " <tr height=\"20\">\n"
  11270. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  11271. #~ " <td>&nbsp;Buffer Tool</td>\n"
  11272. #~ " </tr>\n"
  11273. #~ " <tr height=\"20\">\n"
  11274. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11275. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  11276. #~ " </tr>\n"
  11277. #~ " <tr height=\"20\">\n"
  11278. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  11279. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  11280. #~ " </tr>\n"
  11281. #~ " <tr height=\"20\">\n"
  11282. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  11283. #~ " <td>&nbsp;Paint Tool</td>\n"
  11284. #~ " </tr>\n"
  11285. #~ " <tr height=\"20\">\n"
  11286. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11287. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11288. #~ " </tr>\n"
  11289. #~ " <tr height=\"20\">\n"
  11290. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  11291. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  11292. #~ " </tr>\n"
  11293. #~ " <tr height=\"20\">\n"
  11294. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11295. #~ " <td>&nbsp;Move Geo Item</td>\n"
  11296. #~ " </tr>\n"
  11297. #~ " <tr height=\"20\">\n"
  11298. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  11299. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  11300. #~ " </tr>\n"
  11301. #~ " <tr height=\"20\">\n"
  11302. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  11303. #~ " <td>&nbsp;Draw a Circle</td>\n"
  11304. #~ " </tr>\n"
  11305. #~ " <tr height=\"20\">\n"
  11306. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  11307. #~ " <td>&nbsp;Draw a Path</td>\n"
  11308. #~ " </tr>\n"
  11309. #~ " <tr height=\"20\">\n"
  11310. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11311. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  11312. #~ " </tr>\n"
  11313. #~ " <tr height=\"20\">\n"
  11314. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  11315. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  11316. #~ " </tr>\n"
  11317. #~ " <tr height=\"20\">\n"
  11318. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11319. #~ " <td>&nbsp;Add Text Tool</td>\n"
  11320. #~ " </tr>\n"
  11321. #~ " <tr height=\"20\">\n"
  11322. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  11323. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  11324. #~ " </tr>\n"
  11325. #~ " <tr height=\"20\">\n"
  11326. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  11327. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  11328. #~ " </tr>\n"
  11329. #~ " <tr height=\"20\">\n"
  11330. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  11331. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  11332. #~ " </tr>\n"
  11333. #~ " <tr height=\"20\">\n"
  11334. #~ " <td height=\"20\">&nbsp;</td>\n"
  11335. #~ " <td>&nbsp;</td>\n"
  11336. #~ " </tr>\n"
  11337. #~ " <tr height=\"20\">\n"
  11338. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  11339. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  11340. #~ " </tr>\n"
  11341. #~ " <tr height=\"20\">\n"
  11342. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  11343. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  11344. #~ " </tr>\n"
  11345. #~ " <tr height=\"20\">\n"
  11346. #~ " <td height=\"20\">&nbsp;</td>\n"
  11347. #~ " <td>&nbsp;</td>\n"
  11348. #~ " </tr>\n"
  11349. #~ " <tr height=\"20\">\n"
  11350. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  11351. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  11352. #~ " </tr>\n"
  11353. #~ " <tr height=\"20\">\n"
  11354. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  11355. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  11356. #~ " </tr>\n"
  11357. #~ " <tr height=\"20\">\n"
  11358. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  11359. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  11360. #~ " </tr>\n"
  11361. #~ " <tr height=\"20\">\n"
  11362. #~ " <td height=\"20\">&nbsp;</td>\n"
  11363. #~ " <td>&nbsp;</td>\n"
  11364. #~ " </tr>\n"
  11365. #~ " <tr height=\"20\">\n"
  11366. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  11367. #~ " <td>&nbsp;Measurement Tool</td>\n"
  11368. #~ " </tr>\n"
  11369. #~ " <tr height=\"20\">\n"
  11370. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11371. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11372. #~ " </tr>\n"
  11373. #~ " <tr height=\"20\">\n"
  11374. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  11375. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  11376. #~ " </tr>\n"
  11377. #~ " <tr height=\"20\">\n"
  11378. #~ " <td height=\"20\">&nbsp;</td>\n"
  11379. #~ " <td>&nbsp;</td>\n"
  11380. #~ " </tr>\n"
  11381. #~ " <tr height=\"20\">\n"
  11382. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  11383. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  11384. #~ " </tr>\n"
  11385. #~ " <tr height=\"20\">\n"
  11386. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  11387. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  11388. #~ " </tr>\n"
  11389. #~ " <tr height=\"20\">\n"
  11390. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11391. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11392. #~ " </tr>\n"
  11393. #~ " <tr height=\"20\">\n"
  11394. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11395. #~ " <td>&nbsp;Delete Shape</td>\n"
  11396. #~ " </tr>\n"
  11397. #~ " </tbody>\n"
  11398. #~ " </table>\n"
  11399. #~ " <br>\n"
  11400. #~ " <br>\n"
  11401. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  11402. #~ "strong><br>\n"
  11403. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11404. #~ "\"width:283px\">\n"
  11405. #~ " <tbody>\n"
  11406. #~ " <tr height=\"20\">\n"
  11407. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11408. #~ "strong></td>\n"
  11409. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  11410. #~ " </tr>\n"
  11411. #~ " <tr height=\"20\">\n"
  11412. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11413. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11414. #~ " </tr>\n"
  11415. #~ " <tr height=\"20\">\n"
  11416. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11417. #~ " <td>&nbsp;Add Drill</td>\n"
  11418. #~ " </tr>\n"
  11419. #~ " <tr height=\"20\">\n"
  11420. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11421. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11422. #~ " </tr>\n"
  11423. #~ " <tr height=\"20\">\n"
  11424. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11425. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11426. #~ " </tr>\n"
  11427. #~ " <tr height=\"20\">\n"
  11428. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11429. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11430. #~ " </tr>\n"
  11431. #~ " <tr height=\"20\">\n"
  11432. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11433. #~ " <td>&nbsp;Add a new Tool</td>\n"
  11434. #~ " </tr>\n"
  11435. #~ " <tr height=\"20\">\n"
  11436. #~ " <td height=\"20\">&nbsp;</td>\n"
  11437. #~ " <td>&nbsp;</td>\n"
  11438. #~ " </tr>\n"
  11439. #~ " <tr height=\"20\">\n"
  11440. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11441. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11442. #~ " </tr>\n"
  11443. #~ " <tr height=\"20\">\n"
  11444. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11445. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11446. #~ " </tr>\n"
  11447. #~ " <tr height=\"20\">\n"
  11448. #~ " <td height=\"20\">&nbsp;</td>\n"
  11449. #~ " <td>&nbsp;</td>\n"
  11450. #~ " </tr>\n"
  11451. #~ " <tr height=\"20\">\n"
  11452. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11453. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11454. #~ " </tr>\n"
  11455. #~ " <tr height=\"20\">\n"
  11456. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11457. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11458. #~ " </tr>\n"
  11459. #~ " </tbody>\n"
  11460. #~ " </table>\n"
  11461. #~ " "
  11462. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  11463. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  11464. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  11465. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  11466. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  11467. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  11468. #~ msgid ""
  11469. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11470. #~ msgstr ""
  11471. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11472. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  11473. #~ msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  11474. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11475. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11476. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11477. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11478. #~ msgid "[success] GUI settings deleted ..."
  11479. #~ msgstr "[success] GUI settings deleted ..."
  11480. #~ msgid "Scale Factor:"
  11481. #~ msgstr "Scale Factor:"
  11482. #~ msgid "Buffer Factor:"
  11483. #~ msgstr "Buffer Factor:"
  11484. #~ msgid "<b>Generate new Gerber Object:</b>"
  11485. #~ msgstr "<b>Generate new Gerber Object:</b>"
  11486. #~ msgid "Will generate a new Gerber object from the changed apertures."
  11487. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  11488. #~ msgid ""
  11489. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11490. #~ "This new object can then be isolated etc."
  11491. #~ msgstr ""
  11492. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11493. #~ "This new object can then be isolated etc."
  11494. #~ msgid "[success]Flip on the Y axis done ..."
  11495. #~ msgstr "[success]Flip on the Y axis done ..."
  11496. #~ msgid "[success]Flip on the X axis done ..."
  11497. #~ msgstr "[success]Flip on the X axis done ..."
  11498. #~ msgid "[success]Skew on the %s axis done ..."
  11499. #~ msgstr "[success]Skew on the %s axis done ..."
  11500. #~ msgid "[success]Offset on the %s axis done ..."
  11501. #~ msgstr "[success]Offset on the %s axis done ..."
  11502. #~ msgid ""
  11503. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11504. #~ "Example:\n"
  11505. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11506. #~ "\n"
  11507. #~ "Adjust the value starting with lower values\n"
  11508. #~ "and increasing it if areas that should be painted are still \n"
  11509. #~ "not painted.\n"
  11510. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11511. #~ "Higher values = slow processing and slow execution on CNC\n"
  11512. #~ "due of too many paths."
  11513. #~ msgstr ""
  11514. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11515. #~ "Example:\n"
  11516. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11517. #~ "\n"
  11518. #~ "Adjust the value starting with lower values\n"
  11519. #~ "and increasing it if areas that should be painted are still \n"
  11520. #~ "not painted.\n"
  11521. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11522. #~ "Higher values = slow processing and slow execution on CNC\n"
  11523. #~ "due of too many paths."
  11524. #~| msgid "z_toolchange = Z coord for Toolchange"
  11525. #~ msgid "z_cut = Z coord for Toolchange"
  11526. #~ msgstr "z_cut = Z coord for Toolchange"
  11527. #~| msgid "z_toolchange = Z coord for Toolchange"
  11528. #~ msgid "z_move = Z coord for Toolchange"
  11529. #~ msgstr "z_move = Z coord for Toolchange"
  11530. #~ msgid "%s/Project_%s"
  11531. #~ msgstr "%s/Project_%s"
  11532. #~ msgid "tool_tab"
  11533. #~ msgstr "tool_tab"