strings.po 419 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR ORGANIZATION
  3. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: \n"
  8. "POT-Creation-Date: 2019-07-30 13:12+0300\n"
  9. "PO-Revision-Date: 2019-07-30 13:12+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:928
  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:1841
  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:2026 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  36. #: flatcamTools/ToolPcbWizard.py:296 flatcamTools/ToolPcbWizard.py:319
  37. msgid "Open cancelled."
  38. msgstr "Open cancelled."
  39. #: FlatCAMApp.py:2040
  40. msgid "Open Config file failed."
  41. msgstr "Open Config file failed."
  42. #: FlatCAMApp.py:2054
  43. msgid "Open Script file failed."
  44. msgstr "Open Script file failed."
  45. #: FlatCAMApp.py:2252
  46. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  47. msgstr "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  48. #: FlatCAMApp.py:2262
  49. msgid ""
  50. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  51. "Geometry is not possible.\n"
  52. "Edit only one geometry at a time."
  53. msgstr ""
  54. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  55. "Geometry is not possible.\n"
  56. "Edit only one geometry at a time."
  57. #: FlatCAMApp.py:2317
  58. msgid "[WARNING_NOTCL] Editor is activated ..."
  59. msgstr "[WARNING_NOTCL] Editor is activated ..."
  60. #: FlatCAMApp.py:2335
  61. msgid "Do you want to save the edited object?"
  62. msgstr "Do you want to save the edited object?"
  63. #: FlatCAMApp.py:2336 flatcamGUI/FlatCAMGUI.py:1629
  64. msgid "Close Editor"
  65. msgstr "Close Editor"
  66. #: FlatCAMApp.py:2339 FlatCAMApp.py:3431 FlatCAMApp.py:6027
  67. #: FlatCAMTranslation.py:96 flatcamGUI/FlatCAMGUI.py:3749
  68. msgid "Yes"
  69. msgstr "Yes"
  70. #: FlatCAMApp.py:2340 FlatCAMApp.py:3432 FlatCAMApp.py:6028
  71. #: FlatCAMTranslation.py:97 flatcamGUI/FlatCAMGUI.py:3750
  72. msgid "No"
  73. msgstr "No"
  74. #: FlatCAMApp.py:2341 FlatCAMApp.py:3433 FlatCAMApp.py:3864 FlatCAMApp.py:6029
  75. msgid "Cancel"
  76. msgstr "Cancel"
  77. #: FlatCAMApp.py:2368
  78. msgid "[WARNING] Object empty after edit."
  79. msgstr "[WARNING] Object empty after edit."
  80. #: FlatCAMApp.py:2390 FlatCAMApp.py:2409 FlatCAMApp.py:2421
  81. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  82. msgstr ""
  83. "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  84. #: FlatCAMApp.py:2393
  85. #, python-format
  86. msgid "[selected] %s is updated, returning to App..."
  87. msgstr "[selected] %s is updated, returning to App..."
  88. #: FlatCAMApp.py:2758
  89. msgid "[ERROR] Could not load defaults file."
  90. msgstr "[ERROR] Could not load defaults file."
  91. #: FlatCAMApp.py:2770
  92. msgid "[ERROR] Failed to parse defaults file."
  93. msgstr "[ERROR] Failed to parse defaults file."
  94. #: FlatCAMApp.py:2791 FlatCAMApp.py:2795
  95. msgid "Import FlatCAM Preferences"
  96. msgstr "Import FlatCAM Preferences"
  97. #: FlatCAMApp.py:2801
  98. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  99. msgstr "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  100. #: FlatCAMApp.py:2809 FlatCAMApp.py:2863 FlatCAMApp.py:3310
  101. msgid "[ERROR_NOTCL] Could not load defaults file."
  102. msgstr "[ERROR_NOTCL] Could not load defaults file."
  103. #: FlatCAMApp.py:2817 FlatCAMApp.py:3319
  104. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  105. msgstr "[ERROR_NOTCL] Failed to parse defaults file."
  106. #: FlatCAMApp.py:2820
  107. #, python-format
  108. msgid "[success] Imported Defaults from %s"
  109. msgstr "[success] Imported Defaults from %s"
  110. #: FlatCAMApp.py:2835 FlatCAMApp.py:2840
  111. msgid "Export FlatCAM Preferences"
  112. msgstr "Export FlatCAM Preferences"
  113. #: FlatCAMApp.py:2847
  114. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  115. msgstr "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  116. #: FlatCAMApp.py:2882 FlatCAMApp.py:3364
  117. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  118. msgstr "[ERROR_NOTCL] Failed to write defaults to file."
  119. #: FlatCAMApp.py:2935
  120. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  121. msgstr "[ERROR_NOTCL] Failed to open recent files file for writing."
  122. #: FlatCAMApp.py:3012 camlib.py:4458
  123. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  124. msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  125. #: FlatCAMApp.py:3013
  126. #, python-brace-format
  127. msgid ""
  128. "Object ({kind}) failed because: {error} \n"
  129. "\n"
  130. msgstr ""
  131. "Object ({kind}) failed because: {error} \n"
  132. "\n"
  133. #: FlatCAMApp.py:3033
  134. msgid "Converting units to "
  135. msgstr "Converting units to "
  136. #: FlatCAMApp.py:3112 FlatCAMApp.py:3115 FlatCAMApp.py:3118 FlatCAMApp.py:3121
  137. #, python-brace-format
  138. msgid ""
  139. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  140. "span>"
  141. msgstr ""
  142. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  143. "span>"
  144. #: FlatCAMApp.py:3215
  145. #, python-brace-format
  146. msgid ""
  147. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  148. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  149. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  150. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  151. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  152. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  153. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  154. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  155. "downloads/\">here.</a><BR>"
  156. msgstr ""
  157. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  158. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  159. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  160. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  161. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  162. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  163. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  164. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  165. "downloads/\">here.</a><BR>"
  166. #: FlatCAMApp.py:3368
  167. msgid "[success] Defaults saved."
  168. msgstr "[success] Defaults saved."
  169. #: FlatCAMApp.py:3389
  170. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  171. msgstr "[ERROR_NOTCL] Could not load factory defaults file."
  172. #: FlatCAMApp.py:3398
  173. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  174. msgstr "[ERROR_NOTCL] Failed to parse factory defaults file."
  175. #: FlatCAMApp.py:3412
  176. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  177. msgstr "[ERROR_NOTCL] Failed to write factory defaults to file."
  178. #: FlatCAMApp.py:3416
  179. msgid "Factory defaults saved."
  180. msgstr "Factory defaults saved."
  181. #: FlatCAMApp.py:3421 flatcamGUI/FlatCAMGUI.py:3125
  182. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  183. msgstr "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  184. #: FlatCAMApp.py:3426
  185. msgid ""
  186. "There are files/objects modified in FlatCAM. \n"
  187. "Do you want to Save the project?"
  188. msgstr ""
  189. "There are files/objects modified in FlatCAM. \n"
  190. "Do you want to Save the project?"
  191. #: FlatCAMApp.py:3429 FlatCAMApp.py:6025
  192. msgid "Save changes"
  193. msgstr "Save changes"
  194. #: FlatCAMApp.py:3496
  195. msgid ""
  196. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  197. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  198. "is to convert from one to another and retry joining \n"
  199. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  200. "be lost and the result may not be what was expected. \n"
  201. "Check the generated GCODE."
  202. msgstr ""
  203. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  204. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  205. "is to convert from one to another and retry joining \n"
  206. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  207. "be lost and the result may not be what was expected. \n"
  208. "Check the generated GCODE."
  209. #: FlatCAMApp.py:3537
  210. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  211. msgstr "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  212. #: FlatCAMApp.py:3559
  213. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  214. msgstr "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  215. #: FlatCAMApp.py:3574 FlatCAMApp.py:3599
  216. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  217. msgstr "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  218. #: FlatCAMApp.py:3578 FlatCAMApp.py:3603
  219. #, python-format
  220. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  221. msgstr "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  222. #: FlatCAMApp.py:3591
  223. msgid "[success] A Geometry object was converted to MultiGeo type."
  224. msgstr "[success] A Geometry object was converted to MultiGeo type."
  225. #: FlatCAMApp.py:3617
  226. msgid "[success] A Geometry object was converted to SingleGeo type."
  227. msgstr "[success] A Geometry object was converted to SingleGeo type."
  228. #: FlatCAMApp.py:3858
  229. msgid "Toggle Units"
  230. msgstr "Toggle Units"
  231. #: FlatCAMApp.py:3860
  232. msgid "<B>Change project units ...</B>"
  233. msgstr "<B>Change project units ...</B>"
  234. #: FlatCAMApp.py:3861
  235. msgid ""
  236. "Changing the units of the project causes all geometrical properties of all "
  237. "objects to be scaled accordingly.\n"
  238. "Continue?"
  239. msgstr ""
  240. "Changing the units of the project causes all geometrical properties of all "
  241. "objects to be scaled accordingly.\n"
  242. "Continue?"
  243. #: FlatCAMApp.py:3863 FlatCAMApp.py:4712 FlatCAMApp.py:6301 FlatCAMApp.py:6312
  244. #: FlatCAMApp.py:6552 FlatCAMApp.py:6562
  245. msgid "Ok"
  246. msgstr "Ok"
  247. #: FlatCAMApp.py:3911
  248. #, python-format
  249. msgid "[success] Converted units to %s"
  250. msgstr "[success] Converted units to %s"
  251. #: FlatCAMApp.py:3922
  252. msgid "[WARNING_NOTCL] Units conversion cancelled."
  253. msgstr "[WARNING_NOTCL] Units conversion cancelled."
  254. #: FlatCAMApp.py:4581
  255. msgid "Open file"
  256. msgstr "Open file"
  257. #: FlatCAMApp.py:4612 FlatCAMApp.py:4617
  258. msgid "Export G-Code ..."
  259. msgstr "Export G-Code ..."
  260. #: FlatCAMApp.py:4620
  261. msgid "[WARNING_NOTCL] Export Code cancelled."
  262. msgstr "[WARNING_NOTCL] Export Code cancelled."
  263. #: FlatCAMApp.py:4630
  264. msgid "[WARNING] No such file or directory"
  265. msgstr "[WARNING] No such file or directory"
  266. #: FlatCAMApp.py:4637
  267. #, python-format
  268. msgid "Saved to: %s"
  269. msgstr "Saved to: %s"
  270. #: FlatCAMApp.py:4700 FlatCAMApp.py:4733 FlatCAMApp.py:4744 FlatCAMApp.py:4755
  271. #: flatcamTools/ToolNonCopperClear.py:490 flatcamTools/ToolSolderPaste.py:767
  272. msgid ""
  273. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  274. "format."
  275. msgstr ""
  276. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  277. "format."
  278. #: FlatCAMApp.py:4705 FlatCAMApp.py:4738 FlatCAMApp.py:4749 FlatCAMApp.py:4760
  279. #: flatcamGUI/FlatCAMGUI.py:3020
  280. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  281. msgstr "[WARNING_NOTCL] Adding Tool cancelled ..."
  282. #: FlatCAMApp.py:4708
  283. msgid ""
  284. "Adding Tool works only when Advanced is checked.\n"
  285. "Go to Preferences -> General - Show Advanced Options."
  286. msgstr ""
  287. "Adding Tool works only when Advanced is checked.\n"
  288. "Go to Preferences -> General - Show Advanced Options."
  289. #: FlatCAMApp.py:4821
  290. msgid "Object(s) deleted ..."
  291. msgstr "Object(s) deleted ..."
  292. #: FlatCAMApp.py:4825
  293. msgid "Failed. No object(s) selected..."
  294. msgstr "Failed. No object(s) selected..."
  295. #: FlatCAMApp.py:4827
  296. msgid "Save the work in Editor and try again ..."
  297. msgstr "Save the work in Editor and try again ..."
  298. #: FlatCAMApp.py:4840
  299. msgid "Click to set the origin ..."
  300. msgstr "Click to set the origin ..."
  301. #: FlatCAMApp.py:4852
  302. msgid "Jump to ..."
  303. msgstr "Jump to ..."
  304. #: FlatCAMApp.py:4853
  305. msgid "Enter the coordinates in format X,Y:"
  306. msgstr "Enter the coordinates in format X,Y:"
  307. #: FlatCAMApp.py:4860
  308. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  309. msgstr "Wrong coordinates. Enter coordinates in format: X,Y"
  310. #: FlatCAMApp.py:4878 flatcamEditors/FlatCAMExcEditor.py:2321
  311. #: flatcamEditors/FlatCAMExcEditor.py:2328
  312. #: flatcamEditors/FlatCAMGeoEditor.py:3648
  313. #: flatcamEditors/FlatCAMGeoEditor.py:3662
  314. #: flatcamEditors/FlatCAMGrbEditor.py:1040
  315. #: flatcamEditors/FlatCAMGrbEditor.py:1141
  316. #: flatcamEditors/FlatCAMGrbEditor.py:1409
  317. #: flatcamEditors/FlatCAMGrbEditor.py:1666
  318. #: flatcamEditors/FlatCAMGrbEditor.py:4071
  319. #: flatcamEditors/FlatCAMGrbEditor.py:4085 flatcamGUI/FlatCAMGUI.py:2424
  320. #: flatcamGUI/FlatCAMGUI.py:2436
  321. msgid "[success] Done."
  322. msgstr "[success] Done."
  323. #: FlatCAMApp.py:5010 FlatCAMApp.py:5077
  324. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  325. msgstr "[WARNING_NOTCL] No object is selected. Select an object and try again."
  326. #: FlatCAMApp.py:5118
  327. msgid "[success] Origin set ..."
  328. msgstr "[success] Origin set ..."
  329. #: FlatCAMApp.py:5138
  330. msgid "Preferences"
  331. msgstr "Preferences"
  332. #: FlatCAMApp.py:5158
  333. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  334. msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis."
  335. #: FlatCAMApp.py:5183
  336. msgid "[success] Flip on Y axis done."
  337. msgstr "[success] Flip on Y axis done."
  338. #: FlatCAMApp.py:5185 FlatCAMApp.py:5225
  339. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  340. #: flatcamEditors/FlatCAMGrbEditor.py:5498 flatcamTools/ToolTransform.py:747
  341. #, python-format
  342. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  343. msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  344. #: FlatCAMApp.py:5198
  345. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  346. msgstr "[WARNING_NOTCL] No object selected to Flip on X axis."
  347. #: FlatCAMApp.py:5223
  348. msgid "[success] Flip on X axis done."
  349. msgstr "[success] Flip on X axis done."
  350. #: FlatCAMApp.py:5238
  351. msgid "[WARNING_NOTCL] No object selected to Rotate."
  352. msgstr "[WARNING_NOTCL] No object selected to Rotate."
  353. #: FlatCAMApp.py:5241 FlatCAMApp.py:5286 FlatCAMApp.py:5317
  354. msgid "Transform"
  355. msgstr "Transform"
  356. #: FlatCAMApp.py:5241 FlatCAMApp.py:5286 FlatCAMApp.py:5317
  357. msgid "Enter the Angle value:"
  358. msgstr "Enter the Angle value:"
  359. #: FlatCAMApp.py:5271
  360. msgid "[success] Rotation done."
  361. msgstr "[success] Rotation done."
  362. #: FlatCAMApp.py:5273 flatcamEditors/FlatCAMGeoEditor.py:1298
  363. #: flatcamEditors/FlatCAMGrbEditor.py:5427 flatcamTools/ToolTransform.py:676
  364. #, python-format
  365. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  366. msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  367. #: FlatCAMApp.py:5284
  368. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  369. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  370. #: FlatCAMApp.py:5305
  371. msgid "[success] Skew on X axis done."
  372. msgstr "[success] Skew on X axis done."
  373. #: FlatCAMApp.py:5315
  374. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  375. msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  376. #: FlatCAMApp.py:5336
  377. msgid "[success] Skew on Y axis done."
  378. msgstr "[success] Skew on Y axis done."
  379. #: FlatCAMApp.py:5406
  380. msgid "Grid On/Off"
  381. msgstr "Grid On/Off"
  382. #: FlatCAMApp.py:5419 flatcamEditors/FlatCAMGeoEditor.py:937
  383. #: flatcamEditors/FlatCAMGrbEditor.py:2424
  384. #: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:989
  385. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  386. #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131
  387. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  388. #: flatcamTools/ToolTransform.py:337
  389. msgid "Add"
  390. msgstr "Add"
  391. #: FlatCAMApp.py:5420 FlatCAMObj.py:3350
  392. #: flatcamEditors/FlatCAMGrbEditor.py:2429 flatcamGUI/FlatCAMGUI.py:523
  393. #: flatcamGUI/FlatCAMGUI.py:723 flatcamGUI/FlatCAMGUI.py:1627
  394. #: flatcamGUI/FlatCAMGUI.py:1963 flatcamGUI/ObjectUI.py:1005
  395. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143
  396. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  397. msgid "Delete"
  398. msgstr "Delete"
  399. #: FlatCAMApp.py:5433
  400. msgid "New Grid ..."
  401. msgstr "New Grid ..."
  402. #: FlatCAMApp.py:5434
  403. msgid "Enter a Grid Value:"
  404. msgstr "Enter a Grid Value:"
  405. #: FlatCAMApp.py:5442 FlatCAMApp.py:5469
  406. msgid ""
  407. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  408. "format."
  409. msgstr ""
  410. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  411. "format."
  412. #: FlatCAMApp.py:5448
  413. msgid "[success] New Grid added ..."
  414. msgstr "[success] New Grid added ..."
  415. #: FlatCAMApp.py:5451
  416. msgid "[WARNING_NOTCL] Grid already exists ..."
  417. msgstr "[WARNING_NOTCL] Grid already exists ..."
  418. #: FlatCAMApp.py:5454
  419. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  420. msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..."
  421. #: FlatCAMApp.py:5476
  422. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  423. msgstr "[ERROR_NOTCL] Grid Value does not exist ..."
  424. #: FlatCAMApp.py:5479
  425. msgid "[success] Grid Value deleted ..."
  426. msgstr "[success] Grid Value deleted ..."
  427. #: FlatCAMApp.py:5482
  428. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  429. msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..."
  430. #: FlatCAMApp.py:5488
  431. msgid "Key Shortcut List"
  432. msgstr "Key Shortcut List"
  433. #: FlatCAMApp.py:5521
  434. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  435. msgstr "[WARNING_NOTCL] No object selected to copy it's name"
  436. #: FlatCAMApp.py:5525
  437. msgid "Name copied on clipboard ..."
  438. msgstr "Name copied on clipboard ..."
  439. #: FlatCAMApp.py:5567 flatcamEditors/FlatCAMGrbEditor.py:4012
  440. msgid "[success] Coordinates copied to clipboard."
  441. msgstr "[success] Coordinates copied to clipboard."
  442. #: FlatCAMApp.py:5823 FlatCAMApp.py:5826 FlatCAMApp.py:5829 FlatCAMApp.py:5832
  443. #: FlatCAMApp.py:5847 FlatCAMApp.py:5850 FlatCAMApp.py:5853 FlatCAMApp.py:5856
  444. #: FlatCAMApp.py:5896 FlatCAMApp.py:5899 FlatCAMApp.py:5902 FlatCAMApp.py:5905
  445. #: ObjectCollection.py:719 ObjectCollection.py:722 ObjectCollection.py:725
  446. #: ObjectCollection.py:728
  447. #, python-brace-format
  448. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  449. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selected"
  450. #: FlatCAMApp.py:6022
  451. msgid ""
  452. "There are files/objects opened in FlatCAM.\n"
  453. "Creating a New project will delete them.\n"
  454. "Do you want to Save the project?"
  455. msgstr ""
  456. "There are files/objects opened in FlatCAM.\n"
  457. "Creating a New project will delete them.\n"
  458. "Do you want to Save the project?"
  459. #: FlatCAMApp.py:6043
  460. msgid "[success] New Project created..."
  461. msgstr "[success] New Project created..."
  462. #: FlatCAMApp.py:6160 FlatCAMApp.py:6163 flatcamGUI/FlatCAMGUI.py:604
  463. #: flatcamGUI/FlatCAMGUI.py:1842
  464. msgid "Open Gerber"
  465. msgstr "Open Gerber"
  466. #: FlatCAMApp.py:6168
  467. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  468. msgstr "[WARNING_NOTCL] Open Gerber cancelled."
  469. #: FlatCAMApp.py:6189 FlatCAMApp.py:6192 flatcamGUI/FlatCAMGUI.py:605
  470. #: flatcamGUI/FlatCAMGUI.py:1843
  471. msgid "Open Excellon"
  472. msgstr "Open Excellon"
  473. #: FlatCAMApp.py:6197
  474. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  475. msgstr "[WARNING_NOTCL] Open Excellon cancelled."
  476. #: FlatCAMApp.py:6219 FlatCAMApp.py:6222
  477. msgid "Open G-Code"
  478. msgstr "Open G-Code"
  479. #: FlatCAMApp.py:6227
  480. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  481. msgstr "[WARNING_NOTCL] Open G-Code cancelled."
  482. #: FlatCAMApp.py:6245 FlatCAMApp.py:6248
  483. msgid "Open Project"
  484. msgstr "Open Project"
  485. #: FlatCAMApp.py:6256
  486. msgid "[WARNING_NOTCL] Open Project cancelled."
  487. msgstr "[WARNING_NOTCL] Open Project cancelled."
  488. #: FlatCAMApp.py:6275 FlatCAMApp.py:6278
  489. msgid "Open Configuration File"
  490. msgstr "Open Configuration File"
  491. #: FlatCAMApp.py:6282
  492. msgid "[WARNING_NOTCL] Open Config cancelled."
  493. msgstr "[WARNING_NOTCL] Open Config cancelled."
  494. #: FlatCAMApp.py:6297 FlatCAMApp.py:6548 FlatCAMApp.py:8701 FlatCAMApp.py:8721
  495. #: FlatCAMApp.py:8742 FlatCAMApp.py:8764
  496. msgid "[WARNING_NOTCL] No object selected."
  497. msgstr "[WARNING_NOTCL] No object selected."
  498. #: FlatCAMApp.py:6298 FlatCAMApp.py:6549
  499. msgid "Please Select a Geometry object to export"
  500. msgstr "Please Select a Geometry object to export"
  501. #: FlatCAMApp.py:6309
  502. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  503. msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  504. #: FlatCAMApp.py:6322 FlatCAMApp.py:6326
  505. msgid "Export SVG"
  506. msgstr "Export SVG"
  507. #: FlatCAMApp.py:6331
  508. msgid "[WARNING_NOTCL] Export SVG cancelled."
  509. msgstr "[WARNING_NOTCL] Export SVG cancelled."
  510. #: FlatCAMApp.py:6350
  511. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  512. msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  513. #: FlatCAMApp.py:6356 FlatCAMApp.py:6360
  514. msgid "Export PNG Image"
  515. msgstr "Export PNG Image"
  516. #: FlatCAMApp.py:6365
  517. msgid "Export PNG cancelled."
  518. msgstr "Export PNG cancelled."
  519. #: FlatCAMApp.py:6384
  520. msgid ""
  521. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  522. msgstr ""
  523. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  524. #: FlatCAMApp.py:6389 FlatCAMApp.py:6512
  525. msgid ""
  526. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  527. msgstr ""
  528. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  529. #: FlatCAMApp.py:6401
  530. msgid "Save Gerber source file"
  531. msgstr "Save Gerber source file"
  532. #: FlatCAMApp.py:6406
  533. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  534. msgstr "[WARNING_NOTCL] Save Gerber source file cancelled."
  535. #: FlatCAMApp.py:6425
  536. msgid ""
  537. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  538. "export."
  539. msgstr ""
  540. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  541. "export."
  542. #: FlatCAMApp.py:6430 FlatCAMApp.py:6471
  543. msgid ""
  544. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  545. msgstr ""
  546. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  547. #: FlatCAMApp.py:6438 FlatCAMApp.py:6442
  548. msgid "Save Excellon source file"
  549. msgstr "Save Excellon source file"
  550. #: FlatCAMApp.py:6447
  551. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  552. msgstr "[WARNING_NOTCL] Saving Excellon source file cancelled."
  553. #: FlatCAMApp.py:6466
  554. msgid ""
  555. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  556. "export."
  557. msgstr ""
  558. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  559. "export."
  560. #: FlatCAMApp.py:6479 FlatCAMApp.py:6483
  561. msgid "Export Excellon"
  562. msgstr "Export Excellon"
  563. #: FlatCAMApp.py:6488
  564. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  565. msgstr "[WARNING_NOTCL] Export Excellon cancelled."
  566. #: FlatCAMApp.py:6507
  567. msgid ""
  568. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  569. msgstr ""
  570. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  571. #: FlatCAMApp.py:6520 FlatCAMApp.py:6524
  572. msgid "Export Gerber"
  573. msgstr "Export Gerber"
  574. #: FlatCAMApp.py:6529
  575. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  576. msgstr "[WARNING_NOTCL] Export Gerber cancelled."
  577. #: FlatCAMApp.py:6559
  578. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  579. msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
  580. #: FlatCAMApp.py:6573 FlatCAMApp.py:6577
  581. msgid "Export DXF"
  582. msgstr "Export DXF"
  583. #: FlatCAMApp.py:6583
  584. msgid "[WARNING_NOTCL] Export DXF cancelled."
  585. msgstr "[WARNING_NOTCL] Export DXF cancelled."
  586. #: FlatCAMApp.py:6603 FlatCAMApp.py:6606
  587. msgid "Import SVG"
  588. msgstr "Import SVG"
  589. #: FlatCAMApp.py:6615
  590. msgid "[WARNING_NOTCL] Open SVG cancelled."
  591. msgstr "[WARNING_NOTCL] Open SVG cancelled."
  592. #: FlatCAMApp.py:6634 FlatCAMApp.py:6638
  593. msgid "Import DXF"
  594. msgstr "Import DXF"
  595. #: FlatCAMApp.py:6647
  596. msgid "[WARNING_NOTCL] Open DXF cancelled."
  597. msgstr "[WARNING_NOTCL] Open DXF cancelled."
  598. #: FlatCAMApp.py:6665
  599. #, python-format
  600. msgid "%s"
  601. msgstr "%s"
  602. #: FlatCAMApp.py:6685
  603. msgid ""
  604. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  605. msgstr ""
  606. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  607. #: FlatCAMApp.py:6692
  608. msgid ""
  609. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  610. "file code."
  611. msgstr ""
  612. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  613. "file code."
  614. #: FlatCAMApp.py:6700
  615. msgid "Source Editor"
  616. msgstr "Source Editor"
  617. #: FlatCAMApp.py:6710
  618. #, python-format
  619. msgid "[ERROR]App.on_view_source() -->%s"
  620. msgstr "[ERROR]App.on_view_source() -->%s"
  621. #: FlatCAMApp.py:6722 FlatCAMApp.py:7864 FlatCAMObj.py:5662
  622. #: flatcamTools/ToolSolderPaste.py:1284
  623. msgid "Code Editor"
  624. msgstr "Code Editor"
  625. #: FlatCAMApp.py:6734
  626. msgid "Script Editor"
  627. msgstr "Script Editor"
  628. #: FlatCAMApp.py:6737
  629. msgid ""
  630. "#\n"
  631. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  632. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  633. "html\n"
  634. "#\n"
  635. "\n"
  636. "# FlatCAM commands list:\n"
  637. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  638. "AlignDrillGrid, ClearShell, Cncjob,\n"
  639. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  640. "GeoUnion, GetNames, GetSys,\n"
  641. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  642. "ListSys, MillHoles, Mirror, New,\n"
  643. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  644. "Options, Paint, Panelize,\n"
  645. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  646. "SubtractRectangle, Version,\n"
  647. "# WriteGCode\n"
  648. "#\n"
  649. "\n"
  650. msgstr ""
  651. "#\n"
  652. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  653. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  654. "html\n"
  655. "#\n"
  656. "\n"
  657. "# FlatCAM commands list:\n"
  658. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  659. "AlignDrillGrid, ClearShell, Cncjob,\n"
  660. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  661. "GeoUnion, GetNames, GetSys,\n"
  662. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  663. "ListSys, MillHoles, Mirror, New,\n"
  664. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  665. "Options, Paint, Panelize,\n"
  666. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  667. "SubtractRectangle, Version,\n"
  668. "# WriteGCode\n"
  669. "#\n"
  670. "\n"
  671. #: FlatCAMApp.py:6760 FlatCAMApp.py:6763
  672. msgid "Open TCL script"
  673. msgstr "Open TCL script"
  674. #: FlatCAMApp.py:6771
  675. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  676. msgstr "[WARNING_NOTCL] Open TCL script cancelled."
  677. #: FlatCAMApp.py:6783
  678. #, python-format
  679. msgid "[ERROR]App.on_fileopenscript() -->%s"
  680. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  681. #: FlatCAMApp.py:6809 FlatCAMApp.py:6812
  682. msgid "Run TCL script"
  683. msgstr "Run TCL script"
  684. #: FlatCAMApp.py:6820
  685. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  686. msgstr "[WARNING_NOTCL] Run TCL script cancelled."
  687. #: FlatCAMApp.py:6870 FlatCAMApp.py:6874
  688. msgid "Save Project As ..."
  689. msgstr "Save Project As ..."
  690. #: FlatCAMApp.py:6871
  691. #, python-brace-format
  692. msgid "{l_save}/Project_{date}"
  693. msgstr "{l_save}/Project_{date}"
  694. #: FlatCAMApp.py:6879
  695. msgid "[WARNING_NOTCL] Save Project cancelled."
  696. msgstr "[WARNING_NOTCL] Save Project cancelled."
  697. #: FlatCAMApp.py:6923
  698. msgid "Exporting SVG"
  699. msgstr "Exporting SVG"
  700. #: FlatCAMApp.py:6957 FlatCAMApp.py:7063 FlatCAMApp.py:7178
  701. #, python-format
  702. msgid "[success] SVG file exported to %s"
  703. msgstr "[success] SVG file exported to %s"
  704. #: FlatCAMApp.py:6988 FlatCAMApp.py:7109
  705. #, python-format
  706. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  707. msgstr "[WARNING_NOTCL] No object Box. Using instead %s"
  708. #: FlatCAMApp.py:7066 FlatCAMApp.py:7181
  709. msgid "Generating Film ... Please wait."
  710. msgstr "Generating Film ... Please wait."
  711. #: FlatCAMApp.py:7329
  712. #, python-format
  713. msgid "[success] Excellon file exported to %s"
  714. msgstr "[success] Excellon file exported to %s"
  715. #: FlatCAMApp.py:7336
  716. msgid "Exporting Excellon"
  717. msgstr "Exporting Excellon"
  718. #: FlatCAMApp.py:7341 FlatCAMApp.py:7348
  719. msgid "[ERROR_NOTCL] Could not export Excellon file."
  720. msgstr "[ERROR_NOTCL] Could not export Excellon file."
  721. #: FlatCAMApp.py:7446
  722. #, python-format
  723. msgid "[success] Gerber file exported to %s"
  724. msgstr "[success] Gerber file exported to %s"
  725. #: FlatCAMApp.py:7453
  726. msgid "Exporting Gerber"
  727. msgstr "Exporting Gerber"
  728. #: FlatCAMApp.py:7458 FlatCAMApp.py:7465
  729. msgid "[ERROR_NOTCL] Could not export Gerber file."
  730. msgstr "[ERROR_NOTCL] Could not export Gerber file."
  731. #: FlatCAMApp.py:7505
  732. #, python-format
  733. msgid "[success] DXF file exported to %s"
  734. msgstr "[success] DXF file exported to %s"
  735. #: FlatCAMApp.py:7511
  736. msgid "Exporting DXF"
  737. msgstr "Exporting DXF"
  738. #: FlatCAMApp.py:7516 FlatCAMApp.py:7523
  739. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  740. msgstr "[[WARNING_NOTCL]] Could not export DXF file."
  741. #: FlatCAMApp.py:7543 FlatCAMApp.py:7585 FlatCAMApp.py:7629
  742. msgid ""
  743. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  744. "Gerber are supported"
  745. msgstr ""
  746. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  747. "Gerber are supported"
  748. #: FlatCAMApp.py:7553
  749. msgid "Importing SVG"
  750. msgstr "Importing SVG"
  751. #: FlatCAMApp.py:7564 FlatCAMApp.py:7606 FlatCAMApp.py:7649 FlatCAMApp.py:7726
  752. #: FlatCAMApp.py:7787 FlatCAMApp.py:7850 flatcamTools/ToolPDF.py:212
  753. #, python-format
  754. msgid "[success] Opened: %s"
  755. msgstr "[success] Opened: %s"
  756. #: FlatCAMApp.py:7595
  757. msgid "Importing DXF"
  758. msgstr "Importing DXF"
  759. #: FlatCAMApp.py:7637
  760. msgid "Importing Image"
  761. msgstr "Importing Image"
  762. #: FlatCAMApp.py:7678 FlatCAMApp.py:7680
  763. #, python-format
  764. msgid "[ERROR_NOTCL] Failed to open file: %s"
  765. msgstr "[ERROR_NOTCL] Failed to open file: %s"
  766. #: FlatCAMApp.py:7683
  767. #, python-brace-format
  768. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  769. msgstr "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  770. #: FlatCAMApp.py:7690 flatcamEditors/FlatCAMGrbEditor.py:3832
  771. msgid "[ERROR] An internal error has occurred. See shell.\n"
  772. msgstr "[ERROR] An internal error has occurred. See shell.\n"
  773. #: FlatCAMApp.py:7699
  774. msgid ""
  775. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  776. msgstr ""
  777. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  778. #: FlatCAMApp.py:7707
  779. msgid "Opening Gerber"
  780. msgstr "Opening Gerber"
  781. #: FlatCAMApp.py:7717
  782. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  783. msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  784. #: FlatCAMApp.py:7750 flatcamTools/ToolPcbWizard.py:418
  785. msgid "[ERROR_NOTCL] This is not Excellon file."
  786. msgstr "[ERROR_NOTCL] This is not Excellon file."
  787. #: FlatCAMApp.py:7753
  788. #, python-format
  789. msgid "[ERROR_NOTCL] Cannot open file: %s"
  790. msgstr "[ERROR_NOTCL] Cannot open file: %s"
  791. #: FlatCAMApp.py:7758 flatcamTools/ToolPcbWizard.py:427
  792. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  793. msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  794. #: FlatCAMApp.py:7771 flatcamTools/ToolPDF.py:262
  795. #: flatcamTools/ToolPcbWizard.py:440
  796. #, python-format
  797. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  798. msgstr "[ERROR_NOTCL] No geometry found in file: %s"
  799. #: FlatCAMApp.py:7774
  800. msgid "Opening Excellon."
  801. msgstr "Opening Excellon."
  802. #: FlatCAMApp.py:7780
  803. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  804. msgstr ""
  805. "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  806. #: FlatCAMApp.py:7817
  807. #, python-format
  808. msgid "[ERROR_NOTCL] Failed to open %s"
  809. msgstr "[ERROR_NOTCL] Failed to open %s"
  810. #: FlatCAMApp.py:7827
  811. msgid "[ERROR_NOTCL] This is not GCODE"
  812. msgstr "[ERROR_NOTCL] This is not GCODE"
  813. #: FlatCAMApp.py:7833
  814. msgid "Opening G-Code."
  815. msgstr "Opening G-Code."
  816. #: FlatCAMApp.py:7841
  817. msgid ""
  818. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  819. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  820. "processing"
  821. msgstr ""
  822. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  823. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  824. "processing"
  825. #: FlatCAMApp.py:7881
  826. #, python-format
  827. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  828. msgstr "[ERROR_NOTCL] Failed to open config file: %s"
  829. #: FlatCAMApp.py:7907 FlatCAMApp.py:7924
  830. #, python-format
  831. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  832. msgstr "[ERROR_NOTCL] Failed to open project file: %s"
  833. #: FlatCAMApp.py:7947
  834. #, python-format
  835. msgid "[success] Project loaded from: %s"
  836. msgstr "[success] Project loaded from: %s"
  837. #: FlatCAMApp.py:8052
  838. msgid "Available commands:\n"
  839. msgstr "Available commands:\n"
  840. #: FlatCAMApp.py:8054
  841. msgid ""
  842. "\n"
  843. "\n"
  844. "Type help <command_name> for usage.\n"
  845. " Example: help open_gerber"
  846. msgstr ""
  847. "\n"
  848. "\n"
  849. "Type help <command_name> for usage.\n"
  850. " Example: help open_gerber"
  851. #: FlatCAMApp.py:8204
  852. msgid "Shows list of commands."
  853. msgstr "Shows list of commands."
  854. #: FlatCAMApp.py:8261
  855. msgid "[ERROR_NOTCL] Failed to load recent item list."
  856. msgstr "[ERROR_NOTCL] Failed to load recent item list."
  857. #: FlatCAMApp.py:8268
  858. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  859. msgstr "[ERROR_NOTCL] Failed to parse recent item list."
  860. #: FlatCAMApp.py:8312
  861. msgid "Clear Recent files"
  862. msgstr "Clear Recent files"
  863. #: FlatCAMApp.py:8329 flatcamGUI/FlatCAMGUI.py:967
  864. msgid "<b>Shortcut Key List</b>"
  865. msgstr "<b>Shortcut Key List</b>"
  866. #: FlatCAMApp.py:8336
  867. msgid ""
  868. "\n"
  869. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  870. "Project Tab</strong></span></p>\n"
  871. "\n"
  872. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  873. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  874. "\n"
  875. "<ol>\n"
  876. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  877. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  878. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  879. "<br />\n"
  880. "\t<br />\n"
  881. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  882. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  883. "through the menu/toolbar links offered within the app.</span><br />\n"
  884. "\t&nbsp;</li>\n"
  885. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  886. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  887. "strong>(more simpler is to double click the object name in the Project Tab), "
  888. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  889. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  890. ">\n"
  891. "\t<br />\n"
  892. "\tIf the selection of the object is done on the canvas by single click "
  893. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  894. "properties will be displayed into the Selected Tab. Alternatively, double "
  895. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  896. "strong> and populate it even if it was out of focus.<br />\n"
  897. "\t<br />\n"
  898. "\tYou can change the parameters in this screen and the flow direction is "
  899. "like this:<br />\n"
  900. "\t<br />\n"
  901. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  902. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  903. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  904. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  905. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  906. "span></li>\n"
  907. "</ol>\n"
  908. "\n"
  909. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  910. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  911. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  912. "\n"
  913. " "
  914. msgstr ""
  915. "\n"
  916. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  917. "Project Tab</strong></span></p>\n"
  918. "\n"
  919. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  920. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  921. "\n"
  922. "<ol>\n"
  923. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  924. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  925. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  926. "<br />\n"
  927. "\t<br />\n"
  928. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  929. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  930. "through the menu/toolbar links offered within the app.</span><br />\n"
  931. "\t&nbsp;</li>\n"
  932. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  933. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  934. "strong>(more simpler is to double click the object name in the Project Tab), "
  935. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  936. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  937. ">\n"
  938. "\t<br />\n"
  939. "\tIf the selection of the object is done on the canvas by single click "
  940. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  941. "properties will be displayed into the Selected Tab. Alternatively, double "
  942. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  943. "strong> and populate it even if it was out of focus.<br />\n"
  944. "\t<br />\n"
  945. "\tYou can change the parameters in this screen and the flow direction is "
  946. "like this:<br />\n"
  947. "\t<br />\n"
  948. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  949. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  950. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  951. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  952. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  953. "span></li>\n"
  954. "</ol>\n"
  955. "\n"
  956. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  957. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  958. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  959. "\n"
  960. " "
  961. #: FlatCAMApp.py:8443
  962. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  963. msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  964. #: FlatCAMApp.py:8450
  965. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  966. msgstr "[ERROR_NOTCL] Could not parse information about latest version."
  967. #: FlatCAMApp.py:8460
  968. msgid "[success] FlatCAM is up to date!"
  969. msgstr "[success] FlatCAM is up to date!"
  970. #: FlatCAMApp.py:8465
  971. msgid "Newer Version Available"
  972. msgstr "Newer Version Available"
  973. #: FlatCAMApp.py:8466
  974. msgid ""
  975. "There is a newer version of FlatCAM available for download:\n"
  976. "\n"
  977. msgstr ""
  978. "There is a newer version of FlatCAM available for download:\n"
  979. "\n"
  980. #: FlatCAMApp.py:8468
  981. msgid "info"
  982. msgstr "info"
  983. #: FlatCAMApp.py:8487
  984. msgid "[success] All plots disabled."
  985. msgstr "[success] All plots disabled."
  986. #: FlatCAMApp.py:8493
  987. msgid "[success] All non selected plots disabled."
  988. msgstr "[success] All non selected plots disabled."
  989. #: FlatCAMApp.py:8499
  990. msgid "[success] All plots enabled."
  991. msgstr "[success] All plots enabled."
  992. #: FlatCAMApp.py:8505
  993. msgid "[success] Selected plots enabled..."
  994. msgstr "[success] Selected plots enabled..."
  995. #: FlatCAMApp.py:8513
  996. msgid "[success] Selected plots disabled..."
  997. msgstr "[success] Selected plots disabled..."
  998. #: FlatCAMApp.py:8523 FlatCAMApp.py:8536
  999. msgid "Working ..."
  1000. msgstr "Working ..."
  1001. #: FlatCAMApp.py:8570
  1002. msgid "Saving FlatCAM Project"
  1003. msgstr "Saving FlatCAM Project"
  1004. #: FlatCAMApp.py:8591 FlatCAMApp.py:8622
  1005. #, python-format
  1006. msgid "[success] Project saved to: %s"
  1007. msgstr "[success] Project saved to: %s"
  1008. #: FlatCAMApp.py:8609
  1009. #, python-format
  1010. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1011. msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1012. #: FlatCAMApp.py:8616
  1013. #, python-format
  1014. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1015. msgstr ""
  1016. "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1017. #: FlatCAMApp.py:8624
  1018. #, python-format
  1019. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1020. msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1021. #: FlatCAMObj.py:208
  1022. #, python-brace-format
  1023. msgid "[success] Name changed from {old} to {new}"
  1024. msgstr "[success] Name changed from {old} to {new}"
  1025. #: FlatCAMObj.py:554 FlatCAMObj.py:2084 FlatCAMObj.py:3355 FlatCAMObj.py:5559
  1026. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1027. msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
  1028. #: FlatCAMObj.py:566 FlatCAMObj.py:2100 FlatCAMObj.py:3377 FlatCAMObj.py:5565
  1029. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1030. msgstr "<span style=\"color:red;\"><b>Advanced</b></span>"
  1031. #: FlatCAMObj.py:949 FlatCAMObj.py:3050 FlatCAMObj.py:3312 FlatCAMObj.py:3621
  1032. msgid "Rough"
  1033. msgstr "Rough"
  1034. #: FlatCAMObj.py:967 FlatCAMObj.py:1023
  1035. #, python-format
  1036. msgid "[success] Isolation geometry created: %s"
  1037. msgstr "[success] Isolation geometry created: %s"
  1038. #: FlatCAMObj.py:1202
  1039. msgid "Plotting Apertures"
  1040. msgstr "Plotting Apertures"
  1041. #: FlatCAMObj.py:1925 flatcamEditors/FlatCAMExcEditor.py:1369
  1042. msgid "Total Drills"
  1043. msgstr "Total Drills"
  1044. #: FlatCAMObj.py:1951 flatcamEditors/FlatCAMExcEditor.py:1401
  1045. msgid "Total Slots"
  1046. msgstr "Total Slots"
  1047. #: FlatCAMObj.py:2158 FlatCAMObj.py:3429 FlatCAMObj.py:3760 FlatCAMObj.py:3951
  1048. #: FlatCAMObj.py:3964 FlatCAMObj.py:4084 FlatCAMObj.py:4500 FlatCAMObj.py:4736
  1049. #: FlatCAMObj.py:5140 flatcamEditors/FlatCAMExcEditor.py:1475
  1050. #: flatcamTools/ToolCalculators.py:304 flatcamTools/ToolCalculators.py:315
  1051. #: flatcamTools/ToolCalculators.py:327 flatcamTools/ToolCalculators.py:342
  1052. #: flatcamTools/ToolCalculators.py:355 flatcamTools/ToolCalculators.py:369
  1053. #: flatcamTools/ToolCalculators.py:380 flatcamTools/ToolCalculators.py:391
  1054. #: flatcamTools/ToolCalculators.py:402 flatcamTools/ToolFilm.py:241
  1055. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:481
  1056. #: flatcamTools/ToolNonCopperClear.py:553
  1057. #: flatcamTools/ToolNonCopperClear.py:630
  1058. #: flatcamTools/ToolNonCopperClear.py:647 flatcamTools/ToolPaint.py:537
  1059. #: flatcamTools/ToolPaint.py:609 flatcamTools/ToolPaint.py:746
  1060. #: flatcamTools/ToolPaint.py:846 flatcamTools/ToolPaint.py:1000
  1061. #: flatcamTools/ToolPanelize.py:387 flatcamTools/ToolPanelize.py:399
  1062. #: flatcamTools/ToolPanelize.py:412 flatcamTools/ToolPanelize.py:425
  1063. #: flatcamTools/ToolPanelize.py:437 flatcamTools/ToolPanelize.py:448
  1064. #: flatcamTools/ToolSolderPaste.py:758 flatcamTools/ToolSolderPaste.py:830
  1065. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1066. msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
  1067. #: FlatCAMObj.py:2382 FlatCAMObj.py:2474 FlatCAMObj.py:2597
  1068. msgid ""
  1069. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1070. msgstr ""
  1071. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1072. #: FlatCAMObj.py:2389
  1073. msgid ""
  1074. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1075. msgstr ""
  1076. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1077. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1078. msgid "Tool_nr"
  1079. msgstr "Tool_nr"
  1080. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1081. #: flatcamEditors/FlatCAMExcEditor.py:820
  1082. #: flatcamEditors/FlatCAMExcEditor.py:2021 flatcamGUI/ObjectUI.py:553
  1083. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  1084. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1085. msgid "Diameter"
  1086. msgstr "Diameter"
  1087. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1088. msgid "Drills_Nr"
  1089. msgstr "Drills_Nr"
  1090. #: FlatCAMObj.py:2403 FlatCAMObj.py:2498 FlatCAMObj.py:2617
  1091. msgid "Slots_Nr"
  1092. msgstr "Slots_Nr"
  1093. #: FlatCAMObj.py:2484
  1094. msgid ""
  1095. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1096. msgstr ""
  1097. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1098. #: FlatCAMObj.py:2659 FlatCAMObj.py:4389 FlatCAMObj.py:4604 FlatCAMObj.py:4915
  1099. msgid ""
  1100. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1101. "options[\"z_pdepth\"]"
  1102. msgstr ""
  1103. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1104. "options[\"z_pdepth\"]"
  1105. #: FlatCAMObj.py:2671 FlatCAMObj.py:4401 FlatCAMObj.py:4616 FlatCAMObj.py:4927
  1106. msgid ""
  1107. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1108. "self.options[\"feedrate_probe\"]"
  1109. msgstr ""
  1110. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1111. "self.options[\"feedrate_probe\"]"
  1112. #: FlatCAMObj.py:2703 FlatCAMObj.py:4803 FlatCAMObj.py:4808 FlatCAMObj.py:4958
  1113. msgid "Generating CNC Code"
  1114. msgstr "Generating CNC Code"
  1115. #: FlatCAMObj.py:2729 FlatCAMObj.py:5100 camlib.py:5168 camlib.py:5627
  1116. #: camlib.py:5890
  1117. msgid ""
  1118. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1119. "format (x, y) \n"
  1120. "but now there is only one value, not two. "
  1121. msgstr ""
  1122. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1123. "format (x, y) \n"
  1124. "but now there is only one value, not two. "
  1125. #: FlatCAMObj.py:3050 FlatCAMObj.py:4006 FlatCAMObj.py:4007 FlatCAMObj.py:4016
  1126. msgid "Iso"
  1127. msgstr "Iso"
  1128. #: FlatCAMObj.py:3050
  1129. msgid "Finish"
  1130. msgstr "Finish"
  1131. #: FlatCAMObj.py:3348 flatcamGUI/FlatCAMGUI.py:522 flatcamGUI/FlatCAMGUI.py:721
  1132. #: flatcamGUI/FlatCAMGUI.py:1626 flatcamGUI/FlatCAMGUI.py:1961
  1133. #: flatcamGUI/ObjectUI.py:997
  1134. msgid "Copy"
  1135. msgstr "Copy"
  1136. #: FlatCAMObj.py:3591
  1137. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1138. msgstr "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1139. #: FlatCAMObj.py:3666
  1140. msgid "[success] Tool added in Tool Table."
  1141. msgstr "[success] Tool added in Tool Table."
  1142. #: FlatCAMObj.py:3671
  1143. #| msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1144. msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
  1145. msgstr "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
  1146. #: FlatCAMObj.py:3705 FlatCAMObj.py:3715
  1147. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1148. msgstr "[WARNING_NOTCL] Failed. Select a tool to copy."
  1149. #: FlatCAMObj.py:3744
  1150. msgid "[success] Tool was copied in Tool Table."
  1151. msgstr "[success] Tool was copied in Tool Table."
  1152. #: FlatCAMObj.py:3777
  1153. msgid "[success] Tool was edited in Tool Table."
  1154. msgstr "[success] Tool was edited in Tool Table."
  1155. #: FlatCAMObj.py:3806 FlatCAMObj.py:3814
  1156. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1157. msgstr "[WARNING_NOTCL] Failed. Select a tool to delete."
  1158. #: FlatCAMObj.py:3836
  1159. msgid "[success] Tool was deleted in Tool Table."
  1160. msgstr "[success] Tool was deleted in Tool Table."
  1161. #: FlatCAMObj.py:4270
  1162. #, python-format
  1163. msgid ""
  1164. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1165. msgstr ""
  1166. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1167. #: FlatCAMObj.py:4287
  1168. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1169. msgstr "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1170. #: FlatCAMObj.py:4314
  1171. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1172. msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1173. #: FlatCAMObj.py:4351 flatcamEditors/FlatCAMExcEditor.py:2078
  1174. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  1175. msgstr "[ERROR] An internal error has ocurred. See shell.\n"
  1176. #: FlatCAMObj.py:4352
  1177. #, python-format
  1178. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1179. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1180. #: FlatCAMObj.py:4509 FlatCAMObj.py:4743
  1181. msgid ""
  1182. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1183. "Add a Tool Offset or change the Offset Type."
  1184. msgstr ""
  1185. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1186. "Add a Tool Offset or change the Offset Type."
  1187. #: FlatCAMObj.py:4628 flatcamTools/ToolSolderPaste.py:1112
  1188. #: flatcamTools/ToolSolderPaste.py:1168
  1189. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1190. msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1191. #: FlatCAMObj.py:4991 FlatCAMObj.py:5000 camlib.py:3349 camlib.py:3358
  1192. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1193. msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1194. #: FlatCAMObj.py:5037
  1195. msgid "[success] Geometry Scale done."
  1196. msgstr "[success] Geometry Scale done."
  1197. #: FlatCAMObj.py:5054 camlib.py:3427
  1198. msgid ""
  1199. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1200. "one value in the Offset field."
  1201. msgstr ""
  1202. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1203. "one value in the Offset field."
  1204. #: FlatCAMObj.py:5073
  1205. msgid "[success] Geometry Offset done."
  1206. msgstr "[success] Geometry Offset done."
  1207. #: FlatCAMObj.py:5627 FlatCAMObj.py:5632 flatcamTools/ToolSolderPaste.py:1368
  1208. msgid "Export Machine Code ..."
  1209. msgstr "Export Machine Code ..."
  1210. #: FlatCAMObj.py:5638 flatcamTools/ToolSolderPaste.py:1371
  1211. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1212. msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1213. #: FlatCAMObj.py:5651
  1214. #, python-format
  1215. msgid "[success] Machine Code file saved to: %s"
  1216. msgstr "[success] Machine Code file saved to: %s"
  1217. #: FlatCAMObj.py:5673
  1218. #, python-format
  1219. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1220. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1221. #: FlatCAMObj.py:5790
  1222. #, python-format
  1223. msgid ""
  1224. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1225. "CNCJob object."
  1226. msgstr ""
  1227. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1228. "CNCJob object."
  1229. #: FlatCAMObj.py:5843
  1230. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1231. msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1232. #: FlatCAMObj.py:5856
  1233. msgid ""
  1234. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1235. "empty."
  1236. msgstr ""
  1237. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1238. "empty."
  1239. #: FlatCAMObj.py:5863
  1240. msgid "[success] Toolchange G-code was replaced by a custom code."
  1241. msgstr "[success] Toolchange G-code was replaced by a custom code."
  1242. #: FlatCAMObj.py:5878 flatcamTools/ToolSolderPaste.py:1397
  1243. msgid "[WARNING_NOTCL] No such file or directory"
  1244. msgstr "[WARNING_NOTCL] No such file or directory"
  1245. #: FlatCAMObj.py:5898 FlatCAMObj.py:5910
  1246. msgid ""
  1247. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1248. "'toolchange_custom'"
  1249. msgstr ""
  1250. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1251. "'toolchange_custom'"
  1252. #: FlatCAMObj.py:5916
  1253. msgid "[ERROR] There is no postprocessor file."
  1254. msgstr "[ERROR] There is no postprocessor file."
  1255. #: FlatCAMTranslation.py:91
  1256. msgid "The application will restart."
  1257. msgstr "The application will restart."
  1258. #: FlatCAMTranslation.py:92
  1259. #, python-format
  1260. msgid "Are you sure do you want to change the current language to %s?"
  1261. msgstr "Are you sure do you want to change the current language to %s?"
  1262. #: FlatCAMTranslation.py:94
  1263. msgid "Apply Language ..."
  1264. msgstr "Apply Language ..."
  1265. #: ObjectCollection.py:420
  1266. #, python-brace-format
  1267. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1268. msgstr "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1269. #: ObjectCollection.py:759
  1270. #, python-format
  1271. msgid "[ERROR] Cause of error: %s"
  1272. msgstr "[ERROR] Cause of error: %s"
  1273. #: camlib.py:197
  1274. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1275. msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1276. #: camlib.py:1391
  1277. msgid "[success] Object was mirrored ..."
  1278. msgstr "[success] Object was mirrored ..."
  1279. #: camlib.py:1393
  1280. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1281. msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
  1282. #: camlib.py:1429
  1283. msgid "[success] Object was rotated ..."
  1284. msgstr "[success] Object was rotated ..."
  1285. #: camlib.py:1431
  1286. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1287. msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
  1288. #: camlib.py:1465
  1289. msgid "[success] Object was skewed ..."
  1290. msgstr "[success] Object was skewed ..."
  1291. #: camlib.py:1467
  1292. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1293. msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
  1294. #: camlib.py:2729 camlib.py:2814
  1295. #, python-format
  1296. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1297. msgstr "[WARNING] Coordinates missing, line ignored: %s"
  1298. #: camlib.py:2730 camlib.py:2815
  1299. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1300. msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1301. #: camlib.py:2779
  1302. #, python-format
  1303. msgid ""
  1304. "[ERROR] Region does not have enough points. File will be processed but there "
  1305. "are parser errors. Line number: %s"
  1306. msgstr ""
  1307. "[ERROR] Region does not have enough points. File will be processed but there "
  1308. "are parser errors. Line number: %s"
  1309. #: camlib.py:3171
  1310. #, python-format
  1311. msgid ""
  1312. "[ERROR]Gerber Parser ERROR.\n"
  1313. "%s:"
  1314. msgstr ""
  1315. "[ERROR]Gerber Parser ERROR.\n"
  1316. "%s:"
  1317. #: camlib.py:3395
  1318. msgid "[success] Gerber Scale done."
  1319. msgstr "[success] Gerber Scale done."
  1320. #: camlib.py:3460
  1321. msgid "[success] Gerber Offset done."
  1322. msgstr "[success] Gerber Offset done."
  1323. #: camlib.py:3514
  1324. msgid "[success] Gerber Mirror done."
  1325. msgstr "[success] Gerber Mirror done."
  1326. #: camlib.py:3560
  1327. msgid "[success] Gerber Skew done."
  1328. msgstr "[success] Gerber Skew done."
  1329. #: camlib.py:3598
  1330. msgid "[success] Gerber Rotate done."
  1331. msgstr "[success] Gerber Rotate done."
  1332. #: camlib.py:3879
  1333. #, python-format
  1334. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1335. msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
  1336. #: camlib.py:3994
  1337. #, python-format
  1338. msgid ""
  1339. "[WARNING] No tool diameter info's. See shell.\n"
  1340. "A tool change event: T%s was found but the Excellon file have no "
  1341. "informations regarding the tool diameters therefore the application will try "
  1342. "to load it by using some 'fake' diameters.\n"
  1343. "The user needs to edit the resulting Excellon object and change the "
  1344. "diameters to reflect the real diameters."
  1345. msgstr ""
  1346. "[WARNING] No tool diameter info's. See shell.\n"
  1347. "A tool change event: T%s was found but the Excellon file have no "
  1348. "informations regarding the tool diameters therefore the application will try "
  1349. "to load it by using some 'fake' diameters.\n"
  1350. "The user needs to edit the resulting Excellon object and change the "
  1351. "diameters to reflect the real diameters."
  1352. #: camlib.py:4459
  1353. #, python-brace-format
  1354. msgid ""
  1355. "[ERROR] Excellon Parser error.\n"
  1356. "Parsing Failed. Line {l_nr}: {line}\n"
  1357. msgstr ""
  1358. "[ERROR] Excellon Parser error.\n"
  1359. "Parsing Failed. Line {l_nr}: {line}\n"
  1360. #: camlib.py:4538
  1361. msgid ""
  1362. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1363. "not having a tool associated.\n"
  1364. "Check the resulting GCode."
  1365. msgstr ""
  1366. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1367. "not having a tool associated.\n"
  1368. "Check the resulting GCode."
  1369. #: camlib.py:5077
  1370. #, python-format
  1371. msgid "[ERROR] There is no such parameter: %s"
  1372. msgstr "[ERROR] There is no such parameter: %s"
  1373. #: camlib.py:5147
  1374. msgid ""
  1375. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1376. "drill into material.\n"
  1377. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1378. "therefore the app will convert the value to negative. Check the resulting "
  1379. "CNC code (Gcode etc)."
  1380. msgstr ""
  1381. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1382. "drill into material.\n"
  1383. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1384. "therefore the app will convert the value to negative. Check the resulting "
  1385. "CNC code (Gcode etc)."
  1386. #: camlib.py:5154 camlib.py:5650 camlib.py:5913
  1387. #, python-format
  1388. msgid ""
  1389. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1390. msgstr ""
  1391. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1392. #: camlib.py:5383 camlib.py:5480 camlib.py:5538
  1393. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1394. msgstr "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1395. #: camlib.py:5485
  1396. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1397. msgstr "[ERROR_NOTCL] Wrong optimization type selected."
  1398. #: camlib.py:5638 camlib.py:5901
  1399. msgid ""
  1400. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1401. "combinations of other parameters."
  1402. msgstr ""
  1403. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1404. "combinations of other parameters."
  1405. #: camlib.py:5643 camlib.py:5906
  1406. msgid ""
  1407. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1408. "cut into material.\n"
  1409. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1410. "therefore the app will convert the value to negative.Check the resulting CNC "
  1411. "code (Gcode etc)."
  1412. msgstr ""
  1413. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1414. "cut into material.\n"
  1415. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1416. "therefore the app will convert the value to negative.Check the resulting CNC "
  1417. "code (Gcode etc)."
  1418. #: camlib.py:5655 camlib.py:5918
  1419. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1420. msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1421. #: camlib.py:5659 camlib.py:5922
  1422. msgid ""
  1423. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1424. "to travel between cuts.\n"
  1425. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1426. "therefore the app will convert the value to positive.Check the resulting CNC "
  1427. "code (Gcode etc)."
  1428. msgstr ""
  1429. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1430. "to travel between cuts.\n"
  1431. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1432. "therefore the app will convert the value to positive.Check the resulting CNC "
  1433. "code (Gcode etc)."
  1434. #: camlib.py:5666 camlib.py:5929
  1435. #, python-format
  1436. msgid ""
  1437. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1438. msgstr ""
  1439. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1440. #: camlib.py:5796
  1441. #, python-format
  1442. msgid "[ERROR]Expected a Geometry, got %s"
  1443. msgstr "[ERROR]Expected a Geometry, got %s"
  1444. #: camlib.py:5802
  1445. msgid ""
  1446. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1447. "solid_geometry."
  1448. msgstr ""
  1449. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1450. "solid_geometry."
  1451. #: camlib.py:5841
  1452. msgid ""
  1453. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1454. "current_geometry.\n"
  1455. "Raise the value (in module) and try again."
  1456. msgstr ""
  1457. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1458. "current_geometry.\n"
  1459. "Raise the value (in module) and try again."
  1460. #: camlib.py:6053
  1461. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1462. msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1463. #: flatcamEditors/FlatCAMExcEditor.py:37 flatcamEditors/FlatCAMExcEditor.py:143
  1464. #: flatcamEditors/FlatCAMGrbEditor.py:229
  1465. #: flatcamEditors/FlatCAMGrbEditor.py:234
  1466. msgid "Click to place ..."
  1467. msgstr "Click to place ..."
  1468. #: flatcamEditors/FlatCAMExcEditor.py:46
  1469. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1470. msgstr "[WARNING_NOTCL] To add a drill first select a tool"
  1471. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:166
  1472. #: flatcamEditors/FlatCAMExcEditor.py:451
  1473. #: flatcamEditors/FlatCAMExcEditor.py:476
  1474. #: flatcamEditors/FlatCAMGrbEditor.py:451
  1475. #: flatcamEditors/FlatCAMGrbEditor.py:1818
  1476. #: flatcamEditors/FlatCAMGrbEditor.py:1846
  1477. msgid "Click on target location ..."
  1478. msgstr "Click on target location ..."
  1479. #: flatcamEditors/FlatCAMExcEditor.py:108
  1480. msgid "[success] Done. Drill added."
  1481. msgstr "[success] Done. Drill added."
  1482. #: flatcamEditors/FlatCAMExcEditor.py:150
  1483. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1484. msgstr ""
  1485. "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1486. #: flatcamEditors/FlatCAMExcEditor.py:183
  1487. msgid "Click on the Drill Circular Array Start position"
  1488. msgstr "Click on the Drill Circular Array Start position"
  1489. #: flatcamEditors/FlatCAMExcEditor.py:205
  1490. #: flatcamEditors/FlatCAMGrbEditor.py:494
  1491. msgid ""
  1492. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1493. "separator."
  1494. msgstr ""
  1495. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1496. "separator."
  1497. #: flatcamEditors/FlatCAMExcEditor.py:208
  1498. #, python-format
  1499. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1500. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1501. #: flatcamEditors/FlatCAMExcEditor.py:306
  1502. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1503. msgstr "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1504. #: flatcamEditors/FlatCAMExcEditor.py:323
  1505. msgid "[success] Done. Drill Array added."
  1506. msgstr "[success] Done. Drill Array added."
  1507. #: flatcamEditors/FlatCAMExcEditor.py:334
  1508. msgid "Click on the Drill(s) to resize ..."
  1509. msgstr "Click on the Drill(s) to resize ..."
  1510. #: flatcamEditors/FlatCAMExcEditor.py:355
  1511. msgid ""
  1512. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1513. msgstr ""
  1514. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1515. #: flatcamEditors/FlatCAMExcEditor.py:425
  1516. msgid "[success] Done. Drill Resize completed."
  1517. msgstr "[success] Done. Drill Resize completed."
  1518. #: flatcamEditors/FlatCAMExcEditor.py:428
  1519. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1520. msgstr "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1521. #: flatcamEditors/FlatCAMExcEditor.py:453
  1522. #: flatcamEditors/FlatCAMGrbEditor.py:1820
  1523. msgid "Click on reference location ..."
  1524. msgstr "Click on reference location ..."
  1525. #: flatcamEditors/FlatCAMExcEditor.py:508
  1526. msgid "[success] Done. Drill(s) Move completed."
  1527. msgstr "[success] Done. Drill(s) Move completed."
  1528. #: flatcamEditors/FlatCAMExcEditor.py:593
  1529. msgid "[success] Done. Drill(s) copied."
  1530. msgstr "[success] Done. Drill(s) copied."
  1531. #: flatcamEditors/FlatCAMExcEditor.py:793 flatcamGUI/FlatCAMGUI.py:5027
  1532. msgid "Excellon Editor"
  1533. msgstr "Excellon Editor"
  1534. #: flatcamEditors/FlatCAMExcEditor.py:800
  1535. #: flatcamEditors/FlatCAMGrbEditor.py:2308
  1536. msgid "Name:"
  1537. msgstr "Name:"
  1538. #: flatcamEditors/FlatCAMExcEditor.py:806 flatcamTools/ToolNonCopperClear.py:72
  1539. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1540. msgid "Tools Table"
  1541. msgstr "Tools Table"
  1542. #: flatcamEditors/FlatCAMExcEditor.py:808 flatcamGUI/ObjectUI.py:535
  1543. msgid ""
  1544. "Tools in this Excellon object\n"
  1545. "when are used for drilling."
  1546. msgstr ""
  1547. "Tools in this Excellon object\n"
  1548. "when are used for drilling."
  1549. #: flatcamEditors/FlatCAMExcEditor.py:828
  1550. msgid "Add/Delete Tool"
  1551. msgstr "Add/Delete Tool"
  1552. #: flatcamEditors/FlatCAMExcEditor.py:830
  1553. msgid ""
  1554. "Add/Delete a tool to the tool list\n"
  1555. "for this Excellon object."
  1556. msgstr ""
  1557. "Add/Delete a tool to the tool list\n"
  1558. "for this Excellon object."
  1559. #: flatcamEditors/FlatCAMExcEditor.py:838 flatcamTools/ToolCutOut.py:92
  1560. msgid "Tool Dia:"
  1561. msgstr "Tool Dia:"
  1562. #: flatcamEditors/FlatCAMExcEditor.py:840 flatcamGUI/FlatCAMGUI.py:5056
  1563. #: flatcamGUI/ObjectUI.py:976
  1564. msgid "Diameter for the new tool"
  1565. msgstr "Diameter for the new tool"
  1566. #: flatcamEditors/FlatCAMExcEditor.py:848
  1567. msgid "Add Tool"
  1568. msgstr "Add Tool"
  1569. #: flatcamEditors/FlatCAMExcEditor.py:850
  1570. msgid ""
  1571. "Add a new tool to the tool list\n"
  1572. "with the diameter specified above."
  1573. msgstr ""
  1574. "Add a new tool to the tool list\n"
  1575. "with the diameter specified above."
  1576. #: flatcamEditors/FlatCAMExcEditor.py:862
  1577. msgid "Delete Tool"
  1578. msgstr "Delete Tool"
  1579. #: flatcamEditors/FlatCAMExcEditor.py:864
  1580. msgid ""
  1581. "Delete a tool in the tool list\n"
  1582. "by selecting a row in the tool table."
  1583. msgstr ""
  1584. "Delete a tool in the tool list\n"
  1585. "by selecting a row in the tool table."
  1586. #: flatcamEditors/FlatCAMExcEditor.py:882
  1587. msgid "Resize Drill(s)"
  1588. msgstr "Resize Drill(s)"
  1589. #: flatcamEditors/FlatCAMExcEditor.py:884
  1590. msgid "Resize a drill or a selection of drills."
  1591. msgstr "Resize a drill or a selection of drills."
  1592. #: flatcamEditors/FlatCAMExcEditor.py:891
  1593. msgid "Resize Dia:"
  1594. msgstr "Resize Dia:"
  1595. #: flatcamEditors/FlatCAMExcEditor.py:893
  1596. msgid "Diameter to resize to."
  1597. msgstr "Diameter to resize to."
  1598. #: flatcamEditors/FlatCAMExcEditor.py:901
  1599. msgid "Resize"
  1600. msgstr "Resize"
  1601. #: flatcamEditors/FlatCAMExcEditor.py:903
  1602. msgid "Resize drill(s)"
  1603. msgstr "Resize drill(s)"
  1604. #: flatcamEditors/FlatCAMExcEditor.py:925 flatcamGUI/FlatCAMGUI.py:1623
  1605. msgid "Add Drill Array"
  1606. msgstr "Add Drill Array"
  1607. #: flatcamEditors/FlatCAMExcEditor.py:927
  1608. msgid "Add an array of drills (linear or circular array)"
  1609. msgstr "Add an array of drills (linear or circular array)"
  1610. #: flatcamEditors/FlatCAMExcEditor.py:933
  1611. msgid ""
  1612. "Select the type of drills array to create.\n"
  1613. "It can be Linear X(Y) or Circular"
  1614. msgstr ""
  1615. "Select the type of drills array to create.\n"
  1616. "It can be Linear X(Y) or Circular"
  1617. #: flatcamEditors/FlatCAMExcEditor.py:936
  1618. #: flatcamEditors/FlatCAMGrbEditor.py:2595
  1619. msgid "Linear"
  1620. msgstr "Linear"
  1621. #: flatcamEditors/FlatCAMExcEditor.py:937
  1622. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  1623. msgid "Circular"
  1624. msgstr "Circular"
  1625. #: flatcamEditors/FlatCAMExcEditor.py:945 flatcamGUI/FlatCAMGUI.py:5066
  1626. msgid "Nr of drills:"
  1627. msgstr "Nr of drills:"
  1628. #: flatcamEditors/FlatCAMExcEditor.py:947 flatcamGUI/FlatCAMGUI.py:5068
  1629. msgid "Specify how many drills to be in the array."
  1630. msgstr "Specify how many drills to be in the array."
  1631. #: flatcamEditors/FlatCAMExcEditor.py:965
  1632. #: flatcamEditors/FlatCAMExcEditor.py:1011
  1633. #: flatcamEditors/FlatCAMGrbEditor.py:2622
  1634. #: flatcamEditors/FlatCAMGrbEditor.py:2667
  1635. msgid "Direction:"
  1636. msgstr "Direction:"
  1637. #: flatcamEditors/FlatCAMExcEditor.py:967
  1638. #: flatcamEditors/FlatCAMGrbEditor.py:2624 flatcamGUI/FlatCAMGUI.py:5083
  1639. msgid ""
  1640. "Direction on which the linear array is oriented:\n"
  1641. "- 'X' - horizontal axis \n"
  1642. "- 'Y' - vertical axis or \n"
  1643. "- 'Angle' - a custom angle for the array inclination"
  1644. msgstr ""
  1645. "Direction on which the linear array is oriented:\n"
  1646. "- 'X' - horizontal axis \n"
  1647. "- 'Y' - vertical axis or \n"
  1648. "- 'Angle' - a custom angle for the array inclination"
  1649. #: flatcamEditors/FlatCAMExcEditor.py:974
  1650. #: flatcamEditors/FlatCAMGrbEditor.py:2631 flatcamGUI/FlatCAMGUI.py:5089
  1651. msgid "X"
  1652. msgstr "X"
  1653. #: flatcamEditors/FlatCAMExcEditor.py:975
  1654. #: flatcamEditors/FlatCAMGrbEditor.py:2632 flatcamGUI/FlatCAMGUI.py:5090
  1655. msgid "Y"
  1656. msgstr "Y"
  1657. #: flatcamEditors/FlatCAMExcEditor.py:976
  1658. #: flatcamEditors/FlatCAMGrbEditor.py:2633 flatcamGUI/FlatCAMGUI.py:5091
  1659. msgid "Angle"
  1660. msgstr "Angle"
  1661. #: flatcamEditors/FlatCAMExcEditor.py:980
  1662. #: flatcamEditors/FlatCAMGrbEditor.py:2637 flatcamGUI/FlatCAMGUI.py:5097
  1663. msgid "Pitch:"
  1664. msgstr "Pitch:"
  1665. #: flatcamEditors/FlatCAMExcEditor.py:982
  1666. #: flatcamEditors/FlatCAMGrbEditor.py:2639 flatcamGUI/FlatCAMGUI.py:5099
  1667. msgid "Pitch = Distance between elements of the array."
  1668. msgstr "Pitch = Distance between elements of the array."
  1669. #: flatcamEditors/FlatCAMExcEditor.py:990
  1670. #: flatcamEditors/FlatCAMExcEditor.py:1025
  1671. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1672. #: flatcamEditors/FlatCAMGrbEditor.py:2646
  1673. #: flatcamEditors/FlatCAMGrbEditor.py:2682
  1674. #: flatcamEditors/FlatCAMGrbEditor.py:4743 flatcamGUI/FlatCAMGUI.py:5108
  1675. #: flatcamTools/ToolTransform.py:68
  1676. msgid "Angle:"
  1677. msgstr "Angle:"
  1678. #: flatcamEditors/FlatCAMExcEditor.py:992
  1679. #: flatcamEditors/FlatCAMGrbEditor.py:2648
  1680. msgid ""
  1681. "Angle at which the linear array is placed.\n"
  1682. "The precision is of max 2 decimals.\n"
  1683. "Min value is: -359.99 degrees.\n"
  1684. "Max value is: 360.00 degrees."
  1685. msgstr ""
  1686. "Angle at which the linear array is placed.\n"
  1687. "The precision is of max 2 decimals.\n"
  1688. "Min value is: -359.99 degrees.\n"
  1689. "Max value is: 360.00 degrees."
  1690. #: flatcamEditors/FlatCAMExcEditor.py:1013
  1691. #: flatcamEditors/FlatCAMGrbEditor.py:2669
  1692. msgid ""
  1693. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1694. "clockwise."
  1695. msgstr ""
  1696. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1697. "clockwise."
  1698. #: flatcamEditors/FlatCAMExcEditor.py:1021
  1699. #: flatcamEditors/FlatCAMGrbEditor.py:2677 flatcamGUI/FlatCAMGUI.py:4692
  1700. #: flatcamGUI/FlatCAMGUI.py:5127 flatcamGUI/FlatCAMGUI.py:5316
  1701. msgid "CW"
  1702. msgstr "CW"
  1703. #: flatcamEditors/FlatCAMExcEditor.py:1022
  1704. #: flatcamEditors/FlatCAMGrbEditor.py:2678 flatcamGUI/FlatCAMGUI.py:4693
  1705. #: flatcamGUI/FlatCAMGUI.py:5128 flatcamGUI/FlatCAMGUI.py:5317
  1706. msgid "CCW"
  1707. msgstr "CCW"
  1708. #: flatcamEditors/FlatCAMExcEditor.py:1027
  1709. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:5110
  1710. #: flatcamGUI/FlatCAMGUI.py:5136
  1711. msgid "Angle at which each element in circular array is placed."
  1712. msgstr "Angle at which each element in circular array is placed."
  1713. #: flatcamEditors/FlatCAMExcEditor.py:1488
  1714. msgid ""
  1715. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1716. "Save and reedit Excellon if you need to add this tool. "
  1717. msgstr ""
  1718. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1719. "Save and reedit Excellon if you need to add this tool. "
  1720. #: flatcamEditors/FlatCAMExcEditor.py:1497 flatcamGUI/FlatCAMGUI.py:3016
  1721. #, python-brace-format
  1722. msgid "[success] Added new tool with dia: {dia} {units}"
  1723. msgstr "[success] Added new tool with dia: {dia} {units}"
  1724. #: flatcamEditors/FlatCAMExcEditor.py:1529
  1725. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1726. msgstr "[WARNING_NOTCL] Select a tool in Tool Table"
  1727. #: flatcamEditors/FlatCAMExcEditor.py:1561
  1728. #, python-brace-format
  1729. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1730. msgstr "[success] Deleted tool with dia: {del_dia} {units}"
  1731. #: flatcamEditors/FlatCAMExcEditor.py:2075
  1732. msgid ""
  1733. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1734. "creation."
  1735. msgstr ""
  1736. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1737. "creation."
  1738. #: flatcamEditors/FlatCAMExcEditor.py:2084
  1739. msgid "Creating Excellon."
  1740. msgstr "Creating Excellon."
  1741. #: flatcamEditors/FlatCAMExcEditor.py:2093
  1742. msgid "[success] Excellon editing finished."
  1743. msgstr "[success] Excellon editing finished."
  1744. #: flatcamEditors/FlatCAMExcEditor.py:2110
  1745. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1746. msgstr "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1747. #: flatcamEditors/FlatCAMExcEditor.py:2638
  1748. msgid "[success] Done. Drill(s) deleted."
  1749. msgstr "[success] Done. Drill(s) deleted."
  1750. #: flatcamEditors/FlatCAMExcEditor.py:2706
  1751. #: flatcamEditors/FlatCAMGrbEditor.py:4461
  1752. msgid "Click on the circular array Center position"
  1753. msgstr "Click on the circular array Center position"
  1754. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1755. #: flatcamEditors/FlatCAMGrbEditor.py:2460
  1756. msgid "Buffer distance:"
  1757. msgstr "Buffer distance:"
  1758. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1759. #: flatcamEditors/FlatCAMGrbEditor.py:2461
  1760. msgid "Buffer corner:"
  1761. msgstr "Buffer corner:"
  1762. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1763. msgid ""
  1764. "There are 3 types of corners:\n"
  1765. " - 'Round': the corner is rounded for exterior buffer.\n"
  1766. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1767. " - 'Beveled:' the corner is a line that directly connects the features "
  1768. "meeting in the corner"
  1769. msgstr ""
  1770. "There are 3 types of corners:\n"
  1771. " - 'Round': the corner is rounded for exterior buffer.\n"
  1772. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1773. " - 'Beveled:' the corner is a line that directly connects the features "
  1774. "meeting in the corner"
  1775. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1776. #: flatcamEditors/FlatCAMGrbEditor.py:2469
  1777. msgid "Round"
  1778. msgstr "Round"
  1779. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1780. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  1781. msgid "Square"
  1782. msgstr "Square"
  1783. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1784. #: flatcamEditors/FlatCAMGrbEditor.py:2471
  1785. msgid "Beveled"
  1786. msgstr "Beveled"
  1787. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1788. msgid "Buffer Interior"
  1789. msgstr "Buffer Interior"
  1790. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1791. msgid "Buffer Exterior"
  1792. msgstr "Buffer Exterior"
  1793. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1794. msgid "Full Buffer"
  1795. msgstr "Full Buffer"
  1796. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1797. #: flatcamEditors/FlatCAMGeoEditor.py:2682
  1798. msgid "Buffer Tool"
  1799. msgstr "Buffer Tool"
  1800. #: flatcamEditors/FlatCAMGeoEditor.py:138
  1801. #: flatcamEditors/FlatCAMGeoEditor.py:155
  1802. #: flatcamEditors/FlatCAMGeoEditor.py:172
  1803. #: flatcamEditors/FlatCAMGeoEditor.py:2700
  1804. #: flatcamEditors/FlatCAMGeoEditor.py:2726
  1805. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  1806. #: flatcamEditors/FlatCAMGrbEditor.py:4513
  1807. msgid ""
  1808. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1809. "retry."
  1810. msgstr ""
  1811. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1812. "retry."
  1813. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1814. msgid "Text Tool"
  1815. msgstr "Text Tool"
  1816. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:802
  1817. msgid "Tool"
  1818. msgstr "Tool"
  1819. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4073
  1820. #: flatcamGUI/FlatCAMGUI.py:5182 flatcamGUI/FlatCAMGUI.py:5616
  1821. #: flatcamGUI/FlatCAMGUI.py:5893 flatcamGUI/FlatCAMGUI.py:6048
  1822. #: flatcamGUI/ObjectUI.py:259
  1823. msgid "Tool dia:"
  1824. msgstr "Tool dia:"
  1825. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6050
  1826. msgid ""
  1827. "Diameter of the tool to\n"
  1828. "be used in the operation."
  1829. msgstr ""
  1830. "Diameter of the tool to\n"
  1831. "be used in the operation."
  1832. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5799
  1833. #: flatcamGUI/FlatCAMGUI.py:6059 flatcamTools/ToolNonCopperClear.py:165
  1834. #: flatcamTools/ToolPaint.py:160
  1835. msgid "Overlap Rate:"
  1836. msgstr "Overlap Rate:"
  1837. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1838. #, python-format
  1839. msgid ""
  1840. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1841. "Example:\n"
  1842. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1843. "\n"
  1844. "Adjust the value starting with lower values\n"
  1845. "and increasing it if areas that should be painted are still \n"
  1846. "not painted.\n"
  1847. "Lower values = faster processing, faster execution on PCB.\n"
  1848. "Higher values = slow processing and slow execution on CNC\n"
  1849. "due of too many paths."
  1850. msgstr ""
  1851. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1852. "Example:\n"
  1853. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1854. "\n"
  1855. "Adjust the value starting with lower values\n"
  1856. "and increasing it if areas that should be painted are still \n"
  1857. "not painted.\n"
  1858. "Lower values = faster processing, faster execution on PCB.\n"
  1859. "Higher values = slow processing and slow execution on CNC\n"
  1860. "due of too many paths."
  1861. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5815
  1862. #: flatcamGUI/FlatCAMGUI.py:5916 flatcamGUI/FlatCAMGUI.py:6069
  1863. #: flatcamTools/ToolCutOut.py:101 flatcamTools/ToolNonCopperClear.py:181
  1864. #: flatcamTools/ToolPaint.py:177
  1865. msgid "Margin:"
  1866. msgstr "Margin:"
  1867. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6071
  1868. #: flatcamTools/ToolPaint.py:179
  1869. msgid ""
  1870. "Distance by which to avoid\n"
  1871. "the edges of the polygon to\n"
  1872. "be painted."
  1873. msgstr ""
  1874. "Distance by which to avoid\n"
  1875. "the edges of the polygon to\n"
  1876. "be painted."
  1877. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5824
  1878. #: flatcamGUI/FlatCAMGUI.py:6080 flatcamTools/ToolNonCopperClear.py:190
  1879. #: flatcamTools/ToolPaint.py:188
  1880. msgid "Method:"
  1881. msgstr "Method:"
  1882. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6082
  1883. msgid ""
  1884. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1885. "<BR><B>Seed-based</B>: Outwards from seed."
  1886. msgstr ""
  1887. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1888. "<BR><B>Seed-based</B>: Outwards from seed."
  1889. #: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5833
  1890. #: flatcamGUI/FlatCAMGUI.py:6088 flatcamTools/ToolNonCopperClear.py:199
  1891. #: flatcamTools/ToolPaint.py:197
  1892. msgid "Standard"
  1893. msgstr "Standard"
  1894. #: flatcamEditors/FlatCAMGeoEditor.py:481 flatcamGUI/FlatCAMGUI.py:5834
  1895. #: flatcamGUI/FlatCAMGUI.py:6089 flatcamTools/ToolNonCopperClear.py:200
  1896. #: flatcamTools/ToolPaint.py:198
  1897. msgid "Seed-based"
  1898. msgstr "Seed-based"
  1899. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:5835
  1900. #: flatcamGUI/FlatCAMGUI.py:6090 flatcamTools/ToolNonCopperClear.py:201
  1901. #: flatcamTools/ToolPaint.py:199
  1902. msgid "Straight lines"
  1903. msgstr "Straight lines"
  1904. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5840
  1905. #: flatcamGUI/FlatCAMGUI.py:6095 flatcamTools/ToolNonCopperClear.py:206
  1906. #: flatcamTools/ToolPaint.py:204
  1907. msgid "Connect:"
  1908. msgstr "Connect:"
  1909. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5842
  1910. #: flatcamGUI/FlatCAMGUI.py:6097 flatcamTools/ToolNonCopperClear.py:208
  1911. #: flatcamTools/ToolPaint.py:206
  1912. msgid ""
  1913. "Draw lines between resulting\n"
  1914. "segments to minimize tool lifts."
  1915. msgstr ""
  1916. "Draw lines between resulting\n"
  1917. "segments to minimize tool lifts."
  1918. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5849
  1919. #: flatcamGUI/FlatCAMGUI.py:6105 flatcamTools/ToolNonCopperClear.py:215
  1920. #: flatcamTools/ToolPaint.py:213
  1921. msgid "Contour:"
  1922. msgstr "Contour:"
  1923. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5851
  1924. #: flatcamGUI/FlatCAMGUI.py:6107 flatcamTools/ToolNonCopperClear.py:217
  1925. #: flatcamTools/ToolPaint.py:215
  1926. msgid ""
  1927. "Cut around the perimeter of the polygon\n"
  1928. "to trim rough edges."
  1929. msgstr ""
  1930. "Cut around the perimeter of the polygon\n"
  1931. "to trim rough edges."
  1932. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1933. msgid "Paint"
  1934. msgstr "Paint"
  1935. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:639
  1936. #: flatcamGUI/FlatCAMGUI.py:1876 flatcamGUI/ObjectUI.py:1320
  1937. #: flatcamTools/ToolPaint.py:340
  1938. msgid "Paint Tool"
  1939. msgstr "Paint Tool"
  1940. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1941. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1942. msgstr "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1943. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:372
  1944. #: flatcamTools/ToolCutOut.py:565 flatcamTools/ToolCutOut.py:727
  1945. #: flatcamTools/ToolCutOut.py:834 flatcamTools/ToolDblSided.py:362
  1946. msgid ""
  1947. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1948. "retry."
  1949. msgstr ""
  1950. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  1951. "retry."
  1952. #: flatcamEditors/FlatCAMGeoEditor.py:585
  1953. msgid ""
  1954. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1955. msgstr ""
  1956. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1957. #: flatcamEditors/FlatCAMGeoEditor.py:597
  1958. msgid ""
  1959. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1960. "retry."
  1961. msgstr ""
  1962. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  1963. "retry."
  1964. #: flatcamEditors/FlatCAMGeoEditor.py:606
  1965. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  1966. #: flatcamEditors/FlatCAMGeoEditor.py:2733
  1967. #: flatcamEditors/FlatCAMGeoEditor.py:2759
  1968. #: flatcamTools/ToolNonCopperClear.py:817 flatcamTools/ToolProperties.py:104
  1969. msgid "Tools"
  1970. msgstr "Tools"
  1971. #: flatcamEditors/FlatCAMGeoEditor.py:617
  1972. #: flatcamEditors/FlatCAMGeoEditor.py:990
  1973. #: flatcamEditors/FlatCAMGrbEditor.py:4694
  1974. #: flatcamEditors/FlatCAMGrbEditor.py:5079 flatcamGUI/FlatCAMGUI.py:650
  1975. #: flatcamGUI/FlatCAMGUI.py:1889 flatcamTools/ToolTransform.py:397
  1976. msgid "Transform Tool"
  1977. msgstr "Transform Tool"
  1978. #: flatcamEditors/FlatCAMGeoEditor.py:618
  1979. #: flatcamEditors/FlatCAMGeoEditor.py:679
  1980. #: flatcamEditors/FlatCAMGrbEditor.py:4695
  1981. #: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:24
  1982. #: flatcamTools/ToolTransform.py:82
  1983. msgid "Rotate"
  1984. msgstr "Rotate"
  1985. #: flatcamEditors/FlatCAMGeoEditor.py:619
  1986. #: flatcamEditors/FlatCAMGrbEditor.py:4696 flatcamTools/ToolTransform.py:25
  1987. msgid "Skew/Shear"
  1988. msgstr "Skew/Shear"
  1989. #: flatcamEditors/FlatCAMGeoEditor.py:620
  1990. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  1991. #: flatcamEditors/FlatCAMGrbEditor.py:4697 flatcamGUI/FlatCAMGUI.py:714
  1992. #: flatcamGUI/FlatCAMGUI.py:1955 flatcamGUI/ObjectUI.py:100
  1993. #: flatcamTools/ToolTransform.py:26
  1994. msgid "Scale"
  1995. msgstr "Scale"
  1996. #: flatcamEditors/FlatCAMGeoEditor.py:621
  1997. #: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamTools/ToolTransform.py:27
  1998. msgid "Mirror (Flip)"
  1999. msgstr "Mirror (Flip)"
  2000. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2001. #: flatcamEditors/FlatCAMGrbEditor.py:4699 flatcamGUI/ObjectUI.py:127
  2002. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  2003. #: flatcamTools/ToolTransform.py:28
  2004. msgid "Offset"
  2005. msgstr "Offset"
  2006. #: flatcamEditors/FlatCAMGeoEditor.py:633
  2007. #: flatcamEditors/FlatCAMGrbEditor.py:4711
  2008. #, python-format
  2009. msgid "Editor %s"
  2010. msgstr "Editor %s"
  2011. #: flatcamEditors/FlatCAMGeoEditor.py:667
  2012. #: flatcamEditors/FlatCAMGrbEditor.py:4745 flatcamTools/ToolTransform.py:70
  2013. msgid ""
  2014. "Angle for Rotation action, in degrees.\n"
  2015. "Float number between -360 and 359.\n"
  2016. "Positive numbers for CW motion.\n"
  2017. "Negative numbers for CCW motion."
  2018. msgstr ""
  2019. "Angle for Rotation action, in degrees.\n"
  2020. "Float number between -360 and 359.\n"
  2021. "Positive numbers for CW motion.\n"
  2022. "Negative numbers for CCW motion."
  2023. #: flatcamEditors/FlatCAMGeoEditor.py:681
  2024. #: flatcamEditors/FlatCAMGrbEditor.py:4759
  2025. msgid ""
  2026. "Rotate the selected shape(s).\n"
  2027. "The point of reference is the middle of\n"
  2028. "the bounding box for all selected shapes."
  2029. msgstr ""
  2030. "Rotate the selected shape(s).\n"
  2031. "The point of reference is the middle of\n"
  2032. "the bounding box for all selected shapes."
  2033. #: flatcamEditors/FlatCAMGeoEditor.py:704
  2034. #: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamTools/ToolTransform.py:107
  2035. msgid "Angle X:"
  2036. msgstr "Angle X:"
  2037. #: flatcamEditors/FlatCAMGeoEditor.py:706
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:724
  2039. #: flatcamEditors/FlatCAMGrbEditor.py:4784
  2040. #: flatcamEditors/FlatCAMGrbEditor.py:4802 flatcamTools/ToolTransform.py:109
  2041. #: flatcamTools/ToolTransform.py:127
  2042. msgid ""
  2043. "Angle for Skew action, in degrees.\n"
  2044. "Float number between -360 and 359."
  2045. msgstr ""
  2046. "Angle for Skew action, in degrees.\n"
  2047. "Float number between -360 and 359."
  2048. #: flatcamEditors/FlatCAMGeoEditor.py:715
  2049. #: flatcamEditors/FlatCAMGrbEditor.py:4793 flatcamTools/ToolTransform.py:118
  2050. msgid "Skew X"
  2051. msgstr "Skew X"
  2052. #: flatcamEditors/FlatCAMGeoEditor.py:717
  2053. #: flatcamEditors/FlatCAMGeoEditor.py:735
  2054. #: flatcamEditors/FlatCAMGrbEditor.py:4795
  2055. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2056. msgid ""
  2057. "Skew/shear the selected shape(s).\n"
  2058. "The point of reference is the middle of\n"
  2059. "the bounding box for all selected shapes."
  2060. msgstr ""
  2061. "Skew/shear the selected shape(s).\n"
  2062. "The point of reference is the middle of\n"
  2063. "the bounding box for all selected shapes."
  2064. #: flatcamEditors/FlatCAMGeoEditor.py:722
  2065. #: flatcamEditors/FlatCAMGrbEditor.py:4800 flatcamTools/ToolTransform.py:125
  2066. msgid "Angle Y:"
  2067. msgstr "Angle Y:"
  2068. #: flatcamEditors/FlatCAMGeoEditor.py:733
  2069. #: flatcamEditors/FlatCAMGrbEditor.py:4811 flatcamTools/ToolTransform.py:136
  2070. msgid "Skew Y"
  2071. msgstr "Skew Y"
  2072. #: flatcamEditors/FlatCAMGeoEditor.py:761
  2073. #: flatcamEditors/FlatCAMGrbEditor.py:4839 flatcamTools/ToolTransform.py:164
  2074. msgid "Factor X:"
  2075. msgstr "Factor X:"
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2077. #: flatcamEditors/FlatCAMGrbEditor.py:4841 flatcamTools/ToolTransform.py:166
  2078. msgid "Factor for Scale action over X axis."
  2079. msgstr "Factor for Scale action over X axis."
  2080. #: flatcamEditors/FlatCAMGeoEditor.py:771
  2081. #: flatcamEditors/FlatCAMGrbEditor.py:4849 flatcamTools/ToolTransform.py:174
  2082. msgid "Scale X"
  2083. msgstr "Scale X"
  2084. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2085. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2086. #: flatcamEditors/FlatCAMGrbEditor.py:4851
  2087. #: flatcamEditors/FlatCAMGrbEditor.py:4868
  2088. msgid ""
  2089. "Scale the selected shape(s).\n"
  2090. "The point of reference depends on \n"
  2091. "the Scale reference checkbox state."
  2092. msgstr ""
  2093. "Scale the selected shape(s).\n"
  2094. "The point of reference depends on \n"
  2095. "the Scale reference checkbox state."
  2096. #: flatcamEditors/FlatCAMGeoEditor.py:778
  2097. #: flatcamEditors/FlatCAMGrbEditor.py:4856 flatcamTools/ToolTransform.py:181
  2098. msgid "Factor Y:"
  2099. msgstr "Factor Y:"
  2100. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2101. #: flatcamEditors/FlatCAMGrbEditor.py:4858 flatcamTools/ToolTransform.py:183
  2102. msgid "Factor for Scale action over Y axis."
  2103. msgstr "Factor for Scale action over Y axis."
  2104. #: flatcamEditors/FlatCAMGeoEditor.py:788
  2105. #: flatcamEditors/FlatCAMGrbEditor.py:4866 flatcamTools/ToolTransform.py:191
  2106. msgid "Scale Y"
  2107. msgstr "Scale Y"
  2108. #: flatcamEditors/FlatCAMGeoEditor.py:797
  2109. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamGUI/FlatCAMGUI.py:6454
  2110. #: flatcamTools/ToolTransform.py:200
  2111. msgid "Link"
  2112. msgstr "Link"
  2113. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2114. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2115. msgid ""
  2116. "Scale the selected shape(s)\n"
  2117. "using the Scale Factor X for both axis."
  2118. msgstr ""
  2119. "Scale the selected shape(s)\n"
  2120. "using the Scale Factor X for both axis."
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:805
  2122. #: flatcamEditors/FlatCAMGrbEditor.py:4883 flatcamGUI/FlatCAMGUI.py:6462
  2123. #: flatcamTools/ToolTransform.py:208
  2124. msgid "Scale Reference"
  2125. msgstr "Scale Reference"
  2126. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2127. #: flatcamEditors/FlatCAMGrbEditor.py:4885
  2128. msgid ""
  2129. "Scale the selected shape(s)\n"
  2130. "using the origin reference when checked,\n"
  2131. "and the center of the biggest bounding box\n"
  2132. "of the selected shapes when unchecked."
  2133. msgstr ""
  2134. "Scale the selected shape(s)\n"
  2135. "using the origin reference when checked,\n"
  2136. "and the center of the biggest bounding box\n"
  2137. "of the selected shapes when unchecked."
  2138. #: flatcamEditors/FlatCAMGeoEditor.py:835
  2139. #: flatcamEditors/FlatCAMGrbEditor.py:4914 flatcamTools/ToolTransform.py:238
  2140. msgid "Value X:"
  2141. msgstr "Value X:"
  2142. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2143. #: flatcamEditors/FlatCAMGrbEditor.py:4916 flatcamTools/ToolTransform.py:240
  2144. msgid "Value for Offset action on X axis."
  2145. msgstr "Value for Offset action on X axis."
  2146. #: flatcamEditors/FlatCAMGeoEditor.py:845
  2147. #: flatcamEditors/FlatCAMGrbEditor.py:4924 flatcamTools/ToolTransform.py:248
  2148. msgid "Offset X"
  2149. msgstr "Offset X"
  2150. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2151. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2152. #: flatcamEditors/FlatCAMGrbEditor.py:4926
  2153. #: flatcamEditors/FlatCAMGrbEditor.py:4944
  2154. msgid ""
  2155. "Offset the selected shape(s).\n"
  2156. "The point of reference is the middle of\n"
  2157. "the bounding box for all selected shapes.\n"
  2158. msgstr ""
  2159. "Offset the selected shape(s).\n"
  2160. "The point of reference is the middle of\n"
  2161. "the bounding box for all selected shapes.\n"
  2162. #: flatcamEditors/FlatCAMGeoEditor.py:853
  2163. #: flatcamEditors/FlatCAMGrbEditor.py:4932 flatcamTools/ToolTransform.py:255
  2164. msgid "Value Y:"
  2165. msgstr "Value Y:"
  2166. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2167. #: flatcamEditors/FlatCAMGrbEditor.py:4934 flatcamTools/ToolTransform.py:257
  2168. msgid "Value for Offset action on Y axis."
  2169. msgstr "Value for Offset action on Y axis."
  2170. #: flatcamEditors/FlatCAMGeoEditor.py:863
  2171. #: flatcamEditors/FlatCAMGrbEditor.py:4942 flatcamTools/ToolTransform.py:265
  2172. msgid "Offset Y"
  2173. msgstr "Offset Y"
  2174. #: flatcamEditors/FlatCAMGeoEditor.py:894
  2175. #: flatcamEditors/FlatCAMGrbEditor.py:4973 flatcamTools/ToolTransform.py:295
  2176. msgid "Flip on X"
  2177. msgstr "Flip on X"
  2178. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2179. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2180. #: flatcamEditors/FlatCAMGrbEditor.py:4975
  2181. #: flatcamEditors/FlatCAMGrbEditor.py:4983
  2182. msgid ""
  2183. "Flip the selected shape(s) over the X axis.\n"
  2184. "Does not create a new shape."
  2185. msgstr ""
  2186. "Flip the selected shape(s) over the X axis.\n"
  2187. "Does not create a new shape."
  2188. #: flatcamEditors/FlatCAMGeoEditor.py:902
  2189. #: flatcamEditors/FlatCAMGrbEditor.py:4981 flatcamTools/ToolTransform.py:303
  2190. msgid "Flip on Y"
  2191. msgstr "Flip on Y"
  2192. #: flatcamEditors/FlatCAMGeoEditor.py:911
  2193. #: flatcamEditors/FlatCAMGrbEditor.py:4990 flatcamTools/ToolTransform.py:312
  2194. msgid "Ref Pt"
  2195. msgstr "Ref Pt"
  2196. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2197. #: flatcamEditors/FlatCAMGrbEditor.py:4992
  2198. msgid ""
  2199. "Flip the selected shape(s)\n"
  2200. "around the point in Point Entry Field.\n"
  2201. "\n"
  2202. "The point coordinates can be captured by\n"
  2203. "left click on canvas together with pressing\n"
  2204. "SHIFT key. \n"
  2205. "Then click Add button to insert coordinates.\n"
  2206. "Or enter the coords in format (x, y) in the\n"
  2207. "Point Entry field and click Flip on X(Y)"
  2208. msgstr ""
  2209. "Flip the selected shape(s)\n"
  2210. "around the point in Point Entry Field.\n"
  2211. "\n"
  2212. "The point coordinates can be captured by\n"
  2213. "left click on canvas together with pressing\n"
  2214. "SHIFT key. \n"
  2215. "Then click Add button to insert coordinates.\n"
  2216. "Or enter the coords in format (x, y) in the\n"
  2217. "Point Entry field and click Flip on X(Y)"
  2218. #: flatcamEditors/FlatCAMGeoEditor.py:925
  2219. #: flatcamEditors/FlatCAMGrbEditor.py:5004 flatcamTools/ToolTransform.py:325
  2220. msgid "Point:"
  2221. msgstr "Point:"
  2222. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2223. #: flatcamEditors/FlatCAMGrbEditor.py:5006
  2224. msgid ""
  2225. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2226. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2227. "the 'y' in (x, y) will be used when using Flip on Y."
  2228. msgstr ""
  2229. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2230. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2231. "the 'y' in (x, y) will be used when using Flip on Y."
  2232. #: flatcamEditors/FlatCAMGeoEditor.py:939
  2233. #: flatcamEditors/FlatCAMGrbEditor.py:5018 flatcamTools/ToolTransform.py:339
  2234. msgid ""
  2235. "The point coordinates can be captured by\n"
  2236. "left click on canvas together with pressing\n"
  2237. "SHIFT key. Then click Add button to insert."
  2238. msgstr ""
  2239. "The point coordinates can be captured by\n"
  2240. "left click on canvas together with pressing\n"
  2241. "SHIFT key. Then click Add button to insert."
  2242. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2243. #: flatcamEditors/FlatCAMGrbEditor.py:5143
  2244. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2245. msgstr "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2246. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2247. #: flatcamEditors/FlatCAMGrbEditor.py:5163 flatcamTools/ToolTransform.py:467
  2248. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2249. msgstr "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2250. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2251. #: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:501
  2252. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2253. msgstr "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2254. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:5233 flatcamTools/ToolTransform.py:519
  2256. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2257. msgstr "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2258. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2259. #: flatcamEditors/FlatCAMGrbEditor.py:5260 flatcamTools/ToolTransform.py:537
  2260. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2261. msgstr "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2262. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2263. #: flatcamEditors/FlatCAMGrbEditor.py:5301 flatcamTools/ToolTransform.py:571
  2264. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2265. msgstr "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2266. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2267. #: flatcamEditors/FlatCAMGrbEditor.py:5339 flatcamTools/ToolTransform.py:600
  2268. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2269. msgstr "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2270. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2271. #: flatcamEditors/FlatCAMGrbEditor.py:5365 flatcamTools/ToolTransform.py:618
  2272. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2273. msgstr "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2274. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2275. #: flatcamEditors/FlatCAMGrbEditor.py:5388
  2276. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2277. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2278. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2279. #: flatcamEditors/FlatCAMGrbEditor.py:5391 flatcamTools/ToolTransform.py:639
  2280. msgid "Appying Rotate"
  2281. msgstr "Appying Rotate"
  2282. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2283. #: flatcamEditors/FlatCAMGrbEditor.py:5424
  2284. msgid "[success] Done. Rotate completed."
  2285. msgstr "[success] Done. Rotate completed."
  2286. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2287. #: flatcamEditors/FlatCAMGrbEditor.py:5443
  2288. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2289. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2290. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2291. #: flatcamEditors/FlatCAMGrbEditor.py:5446 flatcamTools/ToolTransform.py:690
  2292. msgid "Applying Flip"
  2293. msgstr "Applying Flip"
  2294. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2295. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolTransform.py:732
  2296. msgid "[success] Flip on the Y axis done ..."
  2297. msgstr "[success] Flip on the Y axis done ..."
  2298. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2299. #: flatcamEditors/FlatCAMGrbEditor.py:5493 flatcamTools/ToolTransform.py:741
  2300. msgid "[success] Flip on the X axis done ..."
  2301. msgstr "[success] Flip on the X axis done ..."
  2302. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2303. #: flatcamEditors/FlatCAMGrbEditor.py:5513
  2304. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2305. msgstr ""
  2306. "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2307. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2308. #: flatcamEditors/FlatCAMGrbEditor.py:5516 flatcamTools/ToolTransform.py:759
  2309. msgid "Applying Skew"
  2310. msgstr "Applying Skew"
  2311. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2312. #: flatcamEditors/FlatCAMGrbEditor.py:5551 flatcamTools/ToolTransform.py:790
  2313. #, python-format
  2314. msgid "[success] Skew on the %s axis done ..."
  2315. msgstr "[success] Skew on the %s axis done ..."
  2316. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2317. #: flatcamEditors/FlatCAMGrbEditor.py:5555 flatcamTools/ToolTransform.py:794
  2318. #, python-format
  2319. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2320. msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2321. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2322. #: flatcamEditors/FlatCAMGrbEditor.py:5574
  2323. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2324. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2325. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2326. #: flatcamEditors/FlatCAMGrbEditor.py:5577 flatcamTools/ToolTransform.py:808
  2327. msgid "Applying Scale"
  2328. msgstr "Applying Scale"
  2329. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2330. #: flatcamEditors/FlatCAMGrbEditor.py:5615 flatcamTools/ToolTransform.py:847
  2331. #, python-format
  2332. msgid "[success] Scale on the %s axis done ..."
  2333. msgstr "[success] Scale on the %s axis done ..."
  2334. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2335. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:850
  2336. #, python-format
  2337. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2338. msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2339. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2340. #: flatcamEditors/FlatCAMGrbEditor.py:5631
  2341. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2342. msgstr "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2343. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2344. #: flatcamEditors/FlatCAMGrbEditor.py:5634 flatcamTools/ToolTransform.py:860
  2345. msgid "Applying Offset"
  2346. msgstr "Applying Offset"
  2347. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2348. #: flatcamEditors/FlatCAMGrbEditor.py:5656 flatcamTools/ToolTransform.py:879
  2349. #, python-format
  2350. msgid "[success] Offset on the %s axis done ..."
  2351. msgstr "[success] Offset on the %s axis done ..."
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:883
  2354. #, python-format
  2355. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2356. msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2357. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2358. #: flatcamEditors/FlatCAMGrbEditor.py:5664
  2359. msgid "Rotate ..."
  2360. msgstr "Rotate ..."
  2361. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2362. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2363. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2364. #: flatcamEditors/FlatCAMGrbEditor.py:5665
  2365. #: flatcamEditors/FlatCAMGrbEditor.py:5722
  2366. #: flatcamEditors/FlatCAMGrbEditor.py:5739
  2367. msgid "Enter an Angle Value (degrees):"
  2368. msgstr "Enter an Angle Value (degrees):"
  2369. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2370. #: flatcamEditors/FlatCAMGrbEditor.py:5674
  2371. msgid "[success] Geometry shape rotate done..."
  2372. msgstr "[success] Geometry shape rotate done..."
  2373. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2374. #: flatcamEditors/FlatCAMGrbEditor.py:5679
  2375. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2376. msgstr "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2377. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2378. #: flatcamEditors/FlatCAMGrbEditor.py:5685
  2379. msgid "Offset on X axis ..."
  2380. msgstr "Offset on X axis ..."
  2381. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2382. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2383. #: flatcamEditors/FlatCAMGrbEditor.py:5686
  2384. #: flatcamEditors/FlatCAMGrbEditor.py:5705
  2385. #, python-format
  2386. msgid "Enter a distance Value (%s):"
  2387. msgstr "Enter a distance Value (%s):"
  2388. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2389. #: flatcamEditors/FlatCAMGrbEditor.py:5695
  2390. msgid "[success] Geometry shape offset on X axis done..."
  2391. msgstr "[success] Geometry shape offset on X axis done..."
  2392. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2393. #: flatcamEditors/FlatCAMGrbEditor.py:5699
  2394. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2395. msgstr "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2396. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2397. #: flatcamEditors/FlatCAMGrbEditor.py:5704
  2398. msgid "Offset on Y axis ..."
  2399. msgstr "Offset on Y axis ..."
  2400. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2401. #: flatcamEditors/FlatCAMGrbEditor.py:5714
  2402. msgid "[success] Geometry shape offset on Y axis done..."
  2403. msgstr "[success] Geometry shape offset on Y axis done..."
  2404. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2405. #: flatcamEditors/FlatCAMGrbEditor.py:5718
  2406. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2407. msgstr "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2408. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2409. #: flatcamEditors/FlatCAMGrbEditor.py:5721
  2410. msgid "Skew on X axis ..."
  2411. msgstr "Skew on X axis ..."
  2412. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2413. #: flatcamEditors/FlatCAMGrbEditor.py:5731
  2414. msgid "[success] Geometry shape skew on X axis done..."
  2415. msgstr "[success] Geometry shape skew on X axis done..."
  2416. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2417. #: flatcamEditors/FlatCAMGrbEditor.py:5735
  2418. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2419. msgstr "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2420. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2421. #: flatcamEditors/FlatCAMGrbEditor.py:5738
  2422. msgid "Skew on Y axis ..."
  2423. msgstr "Skew on Y axis ..."
  2424. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2425. #: flatcamEditors/FlatCAMGrbEditor.py:5748
  2426. msgid "[success] Geometry shape skew on Y axis done..."
  2427. msgstr "[success] Geometry shape skew on Y axis done..."
  2428. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2429. #: flatcamEditors/FlatCAMGrbEditor.py:5752
  2430. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2431. msgstr "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2432. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2433. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2434. #: flatcamEditors/FlatCAMGrbEditor.py:1361
  2435. #: flatcamEditors/FlatCAMGrbEditor.py:1430
  2436. msgid "Click on Center point ..."
  2437. msgstr "Click on Center point ..."
  2438. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2439. #: flatcamEditors/FlatCAMGrbEditor.py:1369
  2440. msgid "Click on Perimeter point to complete ..."
  2441. msgstr "Click on Perimeter point to complete ..."
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2443. msgid "[success] Done. Adding Circle completed."
  2444. msgstr "[success] Done. Adding Circle completed."
  2445. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2446. #: flatcamEditors/FlatCAMGrbEditor.py:1462
  2447. msgid "Click on Start point ..."
  2448. msgstr "Click on Start point ..."
  2449. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2450. #: flatcamEditors/FlatCAMGrbEditor.py:1464
  2451. msgid "Click on Point3 ..."
  2452. msgstr "Click on Point3 ..."
  2453. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2454. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2455. msgid "Click on Stop point ..."
  2456. msgstr "Click on Stop point ..."
  2457. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2458. #: flatcamEditors/FlatCAMGrbEditor.py:1471
  2459. msgid "Click on Stop point to complete ..."
  2460. msgstr "Click on Stop point to complete ..."
  2461. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2462. #: flatcamEditors/FlatCAMGrbEditor.py:1473
  2463. msgid "Click on Point2 to complete ..."
  2464. msgstr "Click on Point2 to complete ..."
  2465. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2466. #: flatcamEditors/FlatCAMGrbEditor.py:1475
  2467. msgid "Click on Center point to complete ..."
  2468. msgstr "Click on Center point to complete ..."
  2469. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2470. #: flatcamEditors/FlatCAMGrbEditor.py:1487
  2471. #, python-format
  2472. msgid "Direction: %s"
  2473. msgstr "Direction: %s"
  2474. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2475. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2476. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2477. msgstr "Mode: Start -> Stop -> Center. Click on Start point ..."
  2478. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2479. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2480. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2481. msgstr "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:1503
  2484. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2485. msgstr "Mode: Center -> Start -> Stop. Click on Center point ..."
  2486. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2487. msgid "[success] Done. Arc completed."
  2488. msgstr "[success] Done. Arc completed."
  2489. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2490. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2491. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2492. msgid "Click on 1st corner ..."
  2493. msgstr "Click on 1st corner ..."
  2494. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2495. msgid "Click on opposite corner to complete ..."
  2496. msgstr "Click on opposite corner to complete ..."
  2497. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2498. msgid "[success] Done. Rectangle completed."
  2499. msgstr "[success] Done. Rectangle completed."
  2500. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2501. msgid "Click on next Point or click right mouse button to complete ..."
  2502. msgstr "Click on next Point or click right mouse button to complete ..."
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2504. msgid "[success] Done. Polygon completed."
  2505. msgstr "[success] Done. Polygon completed."
  2506. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2507. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2508. #: flatcamEditors/FlatCAMGrbEditor.py:1058
  2509. #: flatcamEditors/FlatCAMGrbEditor.py:1252
  2510. msgid "Backtracked one point ..."
  2511. msgstr "Backtracked one point ..."
  2512. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2513. msgid "[success] Done. Path completed."
  2514. msgstr "[success] Done. Path completed."
  2515. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2516. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2517. msgstr "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2518. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2519. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2520. msgid " MOVE: Click on reference point ..."
  2521. msgstr " MOVE: Click on reference point ..."
  2522. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2523. msgid " Click on destination point ..."
  2524. msgstr " Click on destination point ..."
  2525. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2526. msgid "[success] Done. Geometry(s) Move completed."
  2527. msgstr "[success] Done. Geometry(s) Move completed."
  2528. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2529. msgid "[success] Done. Geometry(s) Copy completed."
  2530. msgstr "[success] Done. Geometry(s) Copy completed."
  2531. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  2532. #, python-format
  2533. msgid ""
  2534. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2535. "supported. Error: %s"
  2536. msgstr ""
  2537. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2538. "supported. Error: %s"
  2539. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  2540. msgid "[success] Done. Adding Text completed."
  2541. msgstr "[success] Done. Adding Text completed."
  2542. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  2543. msgid "Create buffer geometry ..."
  2544. msgstr "Create buffer geometry ..."
  2545. #: flatcamEditors/FlatCAMGeoEditor.py:2689
  2546. #: flatcamEditors/FlatCAMGeoEditor.py:2715
  2547. #: flatcamEditors/FlatCAMGeoEditor.py:2741
  2548. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2549. msgstr "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2550. #: flatcamEditors/FlatCAMGeoEditor.py:2711
  2551. #: flatcamEditors/FlatCAMGrbEditor.py:4558
  2552. msgid "[success] Done. Buffer Tool completed."
  2553. msgstr "[success] Done. Buffer Tool completed."
  2554. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  2555. msgid "[success] Done. Buffer Int Tool completed."
  2556. msgstr "[success] Done. Buffer Int Tool completed."
  2557. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2558. msgid "[success] Done. Buffer Ext Tool completed."
  2559. msgstr "[success] Done. Buffer Ext Tool completed."
  2560. #: flatcamEditors/FlatCAMGeoEditor.py:2798
  2561. #: flatcamEditors/FlatCAMGrbEditor.py:2025
  2562. msgid "Select a shape to act as deletion area ..."
  2563. msgstr "Select a shape to act as deletion area ..."
  2564. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2565. #: flatcamEditors/FlatCAMGeoEditor.py:2819
  2566. #: flatcamEditors/FlatCAMGeoEditor.py:2825
  2567. #: flatcamEditors/FlatCAMGrbEditor.py:2027
  2568. msgid "Click to pick-up the erase shape..."
  2569. msgstr "Click to pick-up the erase shape..."
  2570. #: flatcamEditors/FlatCAMGeoEditor.py:2829
  2571. #: flatcamEditors/FlatCAMGrbEditor.py:2084
  2572. msgid "Click to erase ..."
  2573. msgstr "Click to erase ..."
  2574. #: flatcamEditors/FlatCAMGeoEditor.py:2858
  2575. #: flatcamEditors/FlatCAMGrbEditor.py:2117
  2576. msgid "[success] Done. Eraser tool action completed."
  2577. msgstr "[success] Done. Eraser tool action completed."
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  2579. msgid "Create Paint geometry ..."
  2580. msgstr "Create Paint geometry ..."
  2581. #: flatcamEditors/FlatCAMGeoEditor.py:2915
  2582. #: flatcamEditors/FlatCAMGrbEditor.py:2259
  2583. msgid "Shape transformations ..."
  2584. msgstr "Shape transformations ..."
  2585. #: flatcamEditors/FlatCAMGeoEditor.py:3419
  2586. #, python-brace-format
  2587. msgid ""
  2588. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2589. msgstr ""
  2590. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2591. #: flatcamEditors/FlatCAMGeoEditor.py:3796
  2592. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2593. msgstr "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2594. #: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2746
  2595. #: flatcamGUI/FlatCAMGUI.py:2792 flatcamGUI/FlatCAMGUI.py:2810
  2596. #: flatcamGUI/FlatCAMGUI.py:2941 flatcamGUI/FlatCAMGUI.py:2953
  2597. #: flatcamGUI/FlatCAMGUI.py:2987
  2598. msgid "Click on target point."
  2599. msgstr "Click on target point."
  2600. #: flatcamEditors/FlatCAMGeoEditor.py:4047
  2601. #: flatcamEditors/FlatCAMGeoEditor.py:4082
  2602. msgid ""
  2603. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2604. "Intersection."
  2605. msgstr ""
  2606. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2607. "Intersection."
  2608. #: flatcamEditors/FlatCAMGeoEditor.py:4166
  2609. #: flatcamEditors/FlatCAMGeoEditor.py:4204
  2610. #: flatcamEditors/FlatCAMGeoEditor.py:4280
  2611. msgid ""
  2612. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2613. "generate an 'inside' shape"
  2614. msgstr ""
  2615. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2616. "generate an 'inside' shape"
  2617. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2618. #: flatcamEditors/FlatCAMGeoEditor.py:4213
  2619. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2620. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2621. msgstr "[WARNING_NOTCL] Nothing selected for buffering."
  2622. #: flatcamEditors/FlatCAMGeoEditor.py:4179
  2623. #: flatcamEditors/FlatCAMGeoEditor.py:4217
  2624. #: flatcamEditors/FlatCAMGeoEditor.py:4292
  2625. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2626. msgstr "[WARNING_NOTCL] Invalid distance for buffering."
  2627. #: flatcamEditors/FlatCAMGeoEditor.py:4189
  2628. #: flatcamEditors/FlatCAMGeoEditor.py:4301
  2629. msgid ""
  2630. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2631. msgstr ""
  2632. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2633. #: flatcamEditors/FlatCAMGeoEditor.py:4197
  2634. msgid "[success] Full buffer geometry created."
  2635. msgstr "[success] Full buffer geometry created."
  2636. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2637. msgid ""
  2638. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2639. msgstr ""
  2640. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2641. #: flatcamEditors/FlatCAMGeoEditor.py:4242
  2642. msgid "[success] Interior buffer geometry created."
  2643. msgstr "[success] Interior buffer geometry created."
  2644. #: flatcamEditors/FlatCAMGeoEditor.py:4313
  2645. msgid "[success] Exterior buffer geometry created."
  2646. msgstr "[success] Exterior buffer geometry created."
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:4377
  2648. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2649. msgstr "[WARNING_NOTCL] Nothing selected for painting."
  2650. #: flatcamEditors/FlatCAMGeoEditor.py:4383
  2651. msgid "[WARNING] Invalid value for {}"
  2652. msgstr "[WARNING] Invalid value for {}"
  2653. #: flatcamEditors/FlatCAMGeoEditor.py:4389
  2654. msgid ""
  2655. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2656. "(100%)."
  2657. msgstr ""
  2658. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2659. "(100%)."
  2660. #: flatcamEditors/FlatCAMGeoEditor.py:4448
  2661. #, python-format
  2662. msgid ""
  2663. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2664. "different method of Paint\n"
  2665. "%s"
  2666. msgstr ""
  2667. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2668. "different method of Paint\n"
  2669. "%s"
  2670. #: flatcamEditors/FlatCAMGeoEditor.py:4459
  2671. msgid "[success] Paint done."
  2672. msgstr "[success] Paint done."
  2673. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2674. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2675. msgstr ""
  2676. "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2677. #: flatcamEditors/FlatCAMGrbEditor.py:206
  2678. #: flatcamEditors/FlatCAMGrbEditor.py:398
  2679. msgid ""
  2680. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2681. msgstr ""
  2682. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2683. #: flatcamEditors/FlatCAMGrbEditor.py:357
  2684. #: flatcamEditors/FlatCAMGrbEditor.py:662
  2685. msgid ""
  2686. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2687. msgstr ""
  2688. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2689. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2690. msgid "[success] Done. Adding Pad completed."
  2691. msgstr "[success] Done. Adding Pad completed."
  2692. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2693. msgid ""
  2694. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2695. msgstr ""
  2696. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2697. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2698. msgid "Click on the Pad Circular Array Start position"
  2699. msgstr "Click on the Pad Circular Array Start position"
  2700. #: flatcamEditors/FlatCAMGrbEditor.py:497
  2701. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  2702. msgstr "[ERROR_NOTCL] The value is mistyped. Check the value."
  2703. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2704. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2705. msgstr "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2706. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2707. msgid "[success] Done. Pad Array added."
  2708. msgstr "[success] Done. Pad Array added."
  2709. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2710. msgid "Select shape(s) and then click ..."
  2711. msgstr "Select shape(s) and then click ..."
  2712. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2713. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2714. msgstr "[ERROR_NOTCL] Failed. Nothing selected."
  2715. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2716. msgid ""
  2717. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2718. "same aperture."
  2719. msgstr ""
  2720. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2721. "same aperture."
  2722. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2723. msgid "[success] Done. Poligonize completed."
  2724. msgstr "[success] Done. Poligonize completed."
  2725. #: flatcamEditors/FlatCAMGrbEditor.py:860
  2726. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2727. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2728. msgid "Corner Mode 1: 45 degrees ..."
  2729. msgstr "Corner Mode 1: 45 degrees ..."
  2730. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2731. msgid "Click on 1st point ..."
  2732. msgstr "Click on 1st point ..."
  2733. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2734. #: flatcamEditors/FlatCAMGrbEditor.py:1170
  2735. msgid "Click on next Point or click Right mouse button to complete ..."
  2736. msgstr "Click on next Point or click Right mouse button to complete ..."
  2737. #: flatcamEditors/FlatCAMGrbEditor.py:1063
  2738. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2739. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2740. msgstr "Corner Mode 2: Reverse 45 degrees ..."
  2741. #: flatcamEditors/FlatCAMGrbEditor.py:1066
  2742. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2743. msgid "Corner Mode 3: 90 degrees ..."
  2744. msgstr "Corner Mode 3: 90 degrees ..."
  2745. #: flatcamEditors/FlatCAMGrbEditor.py:1069
  2746. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2747. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2748. msgstr "Corner Mode 4: Reverse 90 degrees ..."
  2749. #: flatcamEditors/FlatCAMGrbEditor.py:1072
  2750. #: flatcamEditors/FlatCAMGrbEditor.py:1087
  2751. msgid "Corner Mode 5: Free angle ..."
  2752. msgstr "Corner Mode 5: Free angle ..."
  2753. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2754. #: flatcamEditors/FlatCAMGrbEditor.py:1284
  2755. #: flatcamEditors/FlatCAMGrbEditor.py:1323
  2756. msgid "Track Mode 1: 45 degrees ..."
  2757. msgstr "Track Mode 1: 45 degrees ..."
  2758. #: flatcamEditors/FlatCAMGrbEditor.py:1264
  2759. #: flatcamEditors/FlatCAMGrbEditor.py:1318
  2760. msgid "Track Mode 2: Reverse 45 degrees ..."
  2761. msgstr "Track Mode 2: Reverse 45 degrees ..."
  2762. #: flatcamEditors/FlatCAMGrbEditor.py:1269
  2763. #: flatcamEditors/FlatCAMGrbEditor.py:1313
  2764. msgid "Track Mode 3: 90 degrees ..."
  2765. msgstr "Track Mode 3: 90 degrees ..."
  2766. #: flatcamEditors/FlatCAMGrbEditor.py:1274
  2767. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2768. msgid "Track Mode 4: Reverse 90 degrees ..."
  2769. msgstr "Track Mode 4: Reverse 90 degrees ..."
  2770. #: flatcamEditors/FlatCAMGrbEditor.py:1279
  2771. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2772. msgid "Track Mode 5: Free angle ..."
  2773. msgstr "Track Mode 5: Free angle ..."
  2774. #: flatcamEditors/FlatCAMGrbEditor.py:1683
  2775. msgid "Scale the selected Gerber apertures ..."
  2776. msgstr "Scale the selected Gerber apertures ..."
  2777. #: flatcamEditors/FlatCAMGrbEditor.py:1725
  2778. msgid "Buffer the selected apertures ..."
  2779. msgstr "Buffer the selected apertures ..."
  2780. #: flatcamEditors/FlatCAMGrbEditor.py:1767
  2781. msgid "Mark polygon areas in the edited Gerber ..."
  2782. msgstr "Mark polygon areas in the edited Gerber ..."
  2783. #: flatcamEditors/FlatCAMGrbEditor.py:1811
  2784. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2785. msgstr "[WARNING_NOTCL] Nothing selected to move ..."
  2786. #: flatcamEditors/FlatCAMGrbEditor.py:1934
  2787. msgid "[success] Done. Apertures Move completed."
  2788. msgstr "[success] Done. Apertures Move completed."
  2789. #: flatcamEditors/FlatCAMGrbEditor.py:2010
  2790. msgid "[success] Done. Apertures copied."
  2791. msgstr "[success] Done. Apertures copied."
  2792. #: flatcamEditors/FlatCAMGrbEditor.py:2301 flatcamGUI/FlatCAMGUI.py:1615
  2793. #: flatcamGUI/FlatCAMGUI.py:4342
  2794. msgid "Gerber Editor"
  2795. msgstr "Gerber Editor"
  2796. #: flatcamEditors/FlatCAMGrbEditor.py:2321 flatcamGUI/ObjectUI.py:192
  2797. msgid "<b>Apertures:</b>"
  2798. msgstr "<b>Apertures:</b>"
  2799. #: flatcamEditors/FlatCAMGrbEditor.py:2323 flatcamGUI/ObjectUI.py:194
  2800. msgid "Apertures Table for the Gerber Object."
  2801. msgstr "Apertures Table for the Gerber Object."
  2802. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2803. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2804. msgid "Code"
  2805. msgstr "Code"
  2806. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2807. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2808. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  2809. msgid "Type"
  2810. msgstr "Type"
  2811. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2812. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2813. msgid "Size"
  2814. msgstr "Size"
  2815. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2816. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:227
  2817. msgid "Dim"
  2818. msgstr "Dim"
  2819. #: flatcamEditors/FlatCAMGrbEditor.py:2338 flatcamGUI/ObjectUI.py:231
  2820. msgid "Index"
  2821. msgstr "Index"
  2822. #: flatcamEditors/FlatCAMGrbEditor.py:2340 flatcamGUI/ObjectUI.py:233
  2823. msgid "Aperture Code"
  2824. msgstr "Aperture Code"
  2825. #: flatcamEditors/FlatCAMGrbEditor.py:2342 flatcamGUI/ObjectUI.py:235
  2826. msgid "Type of aperture: circular, rectangle, macros etc"
  2827. msgstr "Type of aperture: circular, rectangle, macros etc"
  2828. #: flatcamEditors/FlatCAMGrbEditor.py:2344
  2829. #: flatcamEditors/FlatCAMGrbEditor.py:2377 flatcamGUI/ObjectUI.py:237
  2830. msgid "Aperture Size:"
  2831. msgstr "Aperture Size:"
  2832. #: flatcamEditors/FlatCAMGrbEditor.py:2346 flatcamGUI/ObjectUI.py:239
  2833. msgid ""
  2834. "Aperture Dimensions:\n"
  2835. " - (width, height) for R, O type.\n"
  2836. " - (dia, nVertices) for P type"
  2837. msgstr ""
  2838. "Aperture Dimensions:\n"
  2839. " - (width, height) for R, O type.\n"
  2840. " - (dia, nVertices) for P type"
  2841. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  2842. msgid "Aperture Code:"
  2843. msgstr "Aperture Code:"
  2844. #: flatcamEditors/FlatCAMGrbEditor.py:2369
  2845. msgid "Code for the new aperture"
  2846. msgstr "Code for the new aperture"
  2847. #: flatcamEditors/FlatCAMGrbEditor.py:2379
  2848. msgid ""
  2849. "Size for the new aperture.\n"
  2850. "If aperture type is 'R' or 'O' then\n"
  2851. "this value is automatically\n"
  2852. "calculated as:\n"
  2853. "sqrt(width**2 + height**2)"
  2854. msgstr ""
  2855. "Size for the new aperture.\n"
  2856. "If aperture type is 'R' or 'O' then\n"
  2857. "this value is automatically\n"
  2858. "calculated as:\n"
  2859. "sqrt(width**2 + height**2)"
  2860. #: flatcamEditors/FlatCAMGrbEditor.py:2391
  2861. msgid "Aperture Type:"
  2862. msgstr "Aperture Type:"
  2863. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  2864. msgid ""
  2865. "Select the type of new aperture. Can be:\n"
  2866. "C = circular\n"
  2867. "R = rectangular\n"
  2868. "O = oblong"
  2869. msgstr ""
  2870. "Select the type of new aperture. Can be:\n"
  2871. "C = circular\n"
  2872. "R = rectangular\n"
  2873. "O = oblong"
  2874. #: flatcamEditors/FlatCAMGrbEditor.py:2404
  2875. msgid "Aperture Dim:"
  2876. msgstr "Aperture Dim:"
  2877. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  2878. msgid ""
  2879. "Dimensions for the new aperture.\n"
  2880. "Active only for rectangular apertures (type R).\n"
  2881. "The format is (width, height)"
  2882. msgstr ""
  2883. "Dimensions for the new aperture.\n"
  2884. "Active only for rectangular apertures (type R).\n"
  2885. "The format is (width, height)"
  2886. #: flatcamEditors/FlatCAMGrbEditor.py:2415
  2887. msgid "Add/Delete Aperture:"
  2888. msgstr "Add/Delete Aperture:"
  2889. #: flatcamEditors/FlatCAMGrbEditor.py:2417
  2890. msgid "Add/Delete an aperture in the aperture table"
  2891. msgstr "Add/Delete an aperture in the aperture table"
  2892. #: flatcamEditors/FlatCAMGrbEditor.py:2426
  2893. msgid "Add a new aperture to the aperture list."
  2894. msgstr "Add a new aperture to the aperture list."
  2895. #: flatcamEditors/FlatCAMGrbEditor.py:2431
  2896. msgid "Delete a aperture in the aperture list"
  2897. msgstr "Delete a aperture in the aperture list"
  2898. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  2899. msgid "Buffer Aperture:"
  2900. msgstr "Buffer Aperture:"
  2901. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  2902. msgid "Buffer a aperture in the aperture list"
  2903. msgstr "Buffer a aperture in the aperture list"
  2904. #: flatcamEditors/FlatCAMGrbEditor.py:2463
  2905. msgid ""
  2906. "There are 3 types of corners:\n"
  2907. " - 'Round': the corner is rounded.\n"
  2908. " - 'Square:' the corner is met in a sharp angle.\n"
  2909. " - 'Beveled:' the corner is a line that directly connects the features "
  2910. "meeting in the corner"
  2911. msgstr ""
  2912. "There are 3 types of corners:\n"
  2913. " - 'Round': the corner is rounded.\n"
  2914. " - 'Square:' the corner is met in a sharp angle.\n"
  2915. " - 'Beveled:' the corner is a line that directly connects the features "
  2916. "meeting in the corner"
  2917. #: flatcamEditors/FlatCAMGrbEditor.py:2478 flatcamGUI/FlatCAMGUI.py:713
  2918. #: flatcamGUI/FlatCAMGUI.py:1954
  2919. msgid "Buffer"
  2920. msgstr "Buffer"
  2921. #: flatcamEditors/FlatCAMGrbEditor.py:2493
  2922. msgid "Scale Aperture:"
  2923. msgstr "Scale Aperture:"
  2924. #: flatcamEditors/FlatCAMGrbEditor.py:2495
  2925. msgid "Scale a aperture in the aperture list"
  2926. msgstr "Scale a aperture in the aperture list"
  2927. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  2928. msgid "Scale factor:"
  2929. msgstr "Scale factor:"
  2930. #: flatcamEditors/FlatCAMGrbEditor.py:2505
  2931. msgid ""
  2932. "The factor by which to scale the selected aperture.\n"
  2933. "Values can be between 0.0000 and 999.9999"
  2934. msgstr ""
  2935. "The factor by which to scale the selected aperture.\n"
  2936. "Values can be between 0.0000 and 999.9999"
  2937. #: flatcamEditors/FlatCAMGrbEditor.py:2531
  2938. msgid "Mark polygon areas:"
  2939. msgstr "Mark polygon areas:"
  2940. #: flatcamEditors/FlatCAMGrbEditor.py:2533
  2941. msgid "Mark the polygon areas."
  2942. msgstr "Mark the polygon areas."
  2943. #: flatcamEditors/FlatCAMGrbEditor.py:2541
  2944. msgid "Area UPPER threshold:"
  2945. msgstr "Area UPPER threshold:"
  2946. #: flatcamEditors/FlatCAMGrbEditor.py:2543
  2947. msgid ""
  2948. "The threshold value, all areas less than this are marked.\n"
  2949. "Can have a value between 0.0000 and 9999.9999"
  2950. msgstr ""
  2951. "The threshold value, all areas less than this are marked.\n"
  2952. "Can have a value between 0.0000 and 9999.9999"
  2953. #: flatcamEditors/FlatCAMGrbEditor.py:2549
  2954. msgid "Area LOWER threshold:"
  2955. msgstr "Area LOWER threshold:"
  2956. #: flatcamEditors/FlatCAMGrbEditor.py:2551
  2957. msgid ""
  2958. "The threshold value, all areas more than this are marked.\n"
  2959. "Can have a value between 0.0000 and 9999.9999"
  2960. msgstr ""
  2961. "The threshold value, all areas more than this are marked.\n"
  2962. "Can have a value between 0.0000 and 9999.9999"
  2963. #: flatcamEditors/FlatCAMGrbEditor.py:2564
  2964. msgid "Go"
  2965. msgstr "Go"
  2966. #: flatcamEditors/FlatCAMGrbEditor.py:2584 flatcamGUI/FlatCAMGUI.py:703
  2967. #: flatcamGUI/FlatCAMGUI.py:1944
  2968. msgid "Add Pad Array"
  2969. msgstr "Add Pad Array"
  2970. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  2971. msgid "Add an array of pads (linear or circular array)"
  2972. msgstr "Add an array of pads (linear or circular array)"
  2973. #: flatcamEditors/FlatCAMGrbEditor.py:2592
  2974. msgid ""
  2975. "Select the type of pads array to create.\n"
  2976. "It can be Linear X(Y) or Circular"
  2977. msgstr ""
  2978. "Select the type of pads array to create.\n"
  2979. "It can be Linear X(Y) or Circular"
  2980. #: flatcamEditors/FlatCAMGrbEditor.py:2603
  2981. msgid "Nr of pads:"
  2982. msgstr "Nr of pads:"
  2983. #: flatcamEditors/FlatCAMGrbEditor.py:2605
  2984. msgid "Specify how many pads to be in the array."
  2985. msgstr "Specify how many pads to be in the array."
  2986. #: flatcamEditors/FlatCAMGrbEditor.py:3093
  2987. #: flatcamEditors/FlatCAMGrbEditor.py:3097
  2988. msgid ""
  2989. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  2990. "retry."
  2991. msgstr ""
  2992. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  2993. "retry."
  2994. #: flatcamEditors/FlatCAMGrbEditor.py:3133
  2995. msgid ""
  2996. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  2997. "in format (width, height) and retry."
  2998. msgstr ""
  2999. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3000. "in format (width, height) and retry."
  3001. #: flatcamEditors/FlatCAMGrbEditor.py:3145
  3002. msgid ""
  3003. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3004. "retry."
  3005. msgstr ""
  3006. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3007. "retry."
  3008. #: flatcamEditors/FlatCAMGrbEditor.py:3156
  3009. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  3010. msgstr "[WARNING_NOTCL] Aperture already in the aperture table."
  3011. #: flatcamEditors/FlatCAMGrbEditor.py:3163
  3012. #, python-brace-format
  3013. msgid "[success] Added new aperture with code: {apid}"
  3014. msgstr "[success] Added new aperture with code: {apid}"
  3015. #: flatcamEditors/FlatCAMGrbEditor.py:3191
  3016. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3017. msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3018. #: flatcamEditors/FlatCAMGrbEditor.py:3197
  3019. #, python-format
  3020. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3021. msgstr "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3022. #: flatcamEditors/FlatCAMGrbEditor.py:3220
  3023. #, python-brace-format
  3024. msgid "[success] Deleted aperture with code: {del_dia}"
  3025. msgstr "[success] Deleted aperture with code: {del_dia}"
  3026. #: flatcamEditors/FlatCAMGrbEditor.py:3641
  3027. #, python-format
  3028. msgid "Adding aperture: %s geo ..."
  3029. msgstr "Adding aperture: %s geo ..."
  3030. #: flatcamEditors/FlatCAMGrbEditor.py:3829
  3031. msgid ""
  3032. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3033. "creation."
  3034. msgstr ""
  3035. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3036. "creation."
  3037. #: flatcamEditors/FlatCAMGrbEditor.py:3837
  3038. msgid "Creating Gerber."
  3039. msgstr "Creating Gerber."
  3040. #: flatcamEditors/FlatCAMGrbEditor.py:3845
  3041. msgid "[success] Gerber editing finished."
  3042. msgstr "[success] Gerber editing finished."
  3043. #: flatcamEditors/FlatCAMGrbEditor.py:3861
  3044. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3045. msgstr "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3046. #: flatcamEditors/FlatCAMGrbEditor.py:4391
  3047. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3048. msgstr "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:4399
  3050. msgid "[success] Done. Apertures geometry deleted."
  3051. msgstr "[success] Done. Apertures geometry deleted."
  3052. #: flatcamEditors/FlatCAMGrbEditor.py:4542
  3053. msgid ""
  3054. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3055. "again."
  3056. msgstr ""
  3057. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3058. "again."
  3059. #: flatcamEditors/FlatCAMGrbEditor.py:4555
  3060. #, python-format
  3061. msgid ""
  3062. "[ERROR_NOTCL] Failed.\n"
  3063. "%s"
  3064. msgstr ""
  3065. "[ERROR_NOTCL] Failed.\n"
  3066. "%s"
  3067. #: flatcamEditors/FlatCAMGrbEditor.py:4572
  3068. msgid ""
  3069. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3070. "retry."
  3071. msgstr ""
  3072. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3073. "retry."
  3074. #: flatcamEditors/FlatCAMGrbEditor.py:4605
  3075. msgid ""
  3076. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3077. "again."
  3078. msgstr ""
  3079. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3080. "again."
  3081. #: flatcamEditors/FlatCAMGrbEditor.py:4621
  3082. msgid "[success] Done. Scale Tool completed."
  3083. msgstr "[success] Done. Scale Tool completed."
  3084. #: flatcamEditors/FlatCAMGrbEditor.py:4658
  3085. msgid "[success] Polygon areas marked."
  3086. msgstr "[success] Polygon areas marked."
  3087. #: flatcamEditors/FlatCAMGrbEditor.py:4660
  3088. msgid "[WARNING_NOTCL] There are no polygons to mark area."
  3089. msgstr "[WARNING_NOTCL] There are no polygons to mark area."
  3090. #: flatcamGUI/FlatCAMGUI.py:51
  3091. msgid "&File"
  3092. msgstr "&File"
  3093. #: flatcamGUI/FlatCAMGUI.py:56
  3094. msgid "&New Project ...\tCTRL+N"
  3095. msgstr "&New Project ...\tCTRL+N"
  3096. #: flatcamGUI/FlatCAMGUI.py:58
  3097. msgid "Will create a new, blank project"
  3098. msgstr "Will create a new, blank project"
  3099. #: flatcamGUI/FlatCAMGUI.py:63
  3100. msgid "&New"
  3101. msgstr "&New"
  3102. #: flatcamGUI/FlatCAMGUI.py:66
  3103. msgid "Geometry\tN"
  3104. msgstr "Geometry\tN"
  3105. #: flatcamGUI/FlatCAMGUI.py:68
  3106. msgid "Will create a new, empty Geometry Object."
  3107. msgstr "Will create a new, empty Geometry Object."
  3108. #: flatcamGUI/FlatCAMGUI.py:70
  3109. msgid "Gerber\tB"
  3110. msgstr "Gerber\tB"
  3111. #: flatcamGUI/FlatCAMGUI.py:72
  3112. msgid "Will create a new, empty Gerber Object."
  3113. msgstr "Will create a new, empty Gerber Object."
  3114. #: flatcamGUI/FlatCAMGUI.py:74
  3115. msgid "Excellon\tL"
  3116. msgstr "Excellon\tL"
  3117. #: flatcamGUI/FlatCAMGUI.py:76
  3118. msgid "Will create a new, empty Excellon Object."
  3119. msgstr "Will create a new, empty Excellon Object."
  3120. #: flatcamGUI/FlatCAMGUI.py:79 flatcamTools/ToolPcbWizard.py:62
  3121. #: flatcamTools/ToolPcbWizard.py:69
  3122. msgid "Open"
  3123. msgstr "Open"
  3124. #: flatcamGUI/FlatCAMGUI.py:84
  3125. msgid "Open &Gerber ...\tCTRL+G"
  3126. msgstr "Open &Gerber ...\tCTRL+G"
  3127. #: flatcamGUI/FlatCAMGUI.py:91
  3128. msgid "Open &Excellon ...\tCTRL+E"
  3129. msgstr "Open &Excellon ...\tCTRL+E"
  3130. #: flatcamGUI/FlatCAMGUI.py:95
  3131. msgid "Open G-&Code ..."
  3132. msgstr "Open G-&Code ..."
  3133. #: flatcamGUI/FlatCAMGUI.py:99
  3134. msgid "Open &Project ..."
  3135. msgstr "Open &Project ..."
  3136. #: flatcamGUI/FlatCAMGUI.py:105
  3137. msgid "Open Config ..."
  3138. msgstr "Open Config ..."
  3139. #: flatcamGUI/FlatCAMGUI.py:109
  3140. msgid "Recent files"
  3141. msgstr "Recent files"
  3142. #: flatcamGUI/FlatCAMGUI.py:115
  3143. msgid "Scripting"
  3144. msgstr "Scripting"
  3145. #: flatcamGUI/FlatCAMGUI.py:118
  3146. msgid "New Script ..."
  3147. msgstr "New Script ..."
  3148. #: flatcamGUI/FlatCAMGUI.py:119
  3149. msgid "Open Script ..."
  3150. msgstr "Open Script ..."
  3151. #: flatcamGUI/FlatCAMGUI.py:121
  3152. msgid "Run Script ...\tSHIFT+S"
  3153. msgstr "Run Script ...\tSHIFT+S"
  3154. #: flatcamGUI/FlatCAMGUI.py:123
  3155. msgid ""
  3156. "Will run the opened Tcl Script thus\n"
  3157. "enabling the automation of certain\n"
  3158. "functions of FlatCAM."
  3159. msgstr ""
  3160. "Will run the opened Tcl Script thus\n"
  3161. "enabling the automation of certain\n"
  3162. "functions of FlatCAM."
  3163. #: flatcamGUI/FlatCAMGUI.py:136
  3164. msgid "Import"
  3165. msgstr "Import"
  3166. #: flatcamGUI/FlatCAMGUI.py:138
  3167. msgid "&SVG as Geometry Object ..."
  3168. msgstr "&SVG as Geometry Object ..."
  3169. #: flatcamGUI/FlatCAMGUI.py:141
  3170. msgid "&SVG as Gerber Object ..."
  3171. msgstr "&SVG as Gerber Object ..."
  3172. #: flatcamGUI/FlatCAMGUI.py:146
  3173. msgid "&DXF as Geometry Object ..."
  3174. msgstr "&DXF as Geometry Object ..."
  3175. #: flatcamGUI/FlatCAMGUI.py:149
  3176. msgid "&DXF as Gerber Object ..."
  3177. msgstr "&DXF as Gerber Object ..."
  3178. #: flatcamGUI/FlatCAMGUI.py:154
  3179. msgid "Export"
  3180. msgstr "Export"
  3181. #: flatcamGUI/FlatCAMGUI.py:157
  3182. msgid "Export &SVG ..."
  3183. msgstr "Export &SVG ..."
  3184. #: flatcamGUI/FlatCAMGUI.py:160
  3185. msgid "Export DXF ..."
  3186. msgstr "Export DXF ..."
  3187. #: flatcamGUI/FlatCAMGUI.py:165
  3188. msgid "Export &PNG ..."
  3189. msgstr "Export &PNG ..."
  3190. #: flatcamGUI/FlatCAMGUI.py:167
  3191. msgid ""
  3192. "Will export an image in PNG format,\n"
  3193. "the saved image will contain the visual \n"
  3194. "information currently in FlatCAM Plot Area."
  3195. msgstr ""
  3196. "Will export an image in PNG format,\n"
  3197. "the saved image will contain the visual \n"
  3198. "information currently in FlatCAM Plot Area."
  3199. #: flatcamGUI/FlatCAMGUI.py:176
  3200. msgid "Export &Excellon ..."
  3201. msgstr "Export &Excellon ..."
  3202. #: flatcamGUI/FlatCAMGUI.py:178
  3203. msgid ""
  3204. "Will export an Excellon Object as Excellon file,\n"
  3205. "the coordinates format, the file units and zeros\n"
  3206. "are set in Preferences -> Excellon Export."
  3207. msgstr ""
  3208. "Will export an Excellon Object as Excellon file,\n"
  3209. "the coordinates format, the file units and zeros\n"
  3210. "are set in Preferences -> Excellon Export."
  3211. #: flatcamGUI/FlatCAMGUI.py:185
  3212. msgid "Export &Gerber ..."
  3213. msgstr "Export &Gerber ..."
  3214. #: flatcamGUI/FlatCAMGUI.py:187
  3215. msgid ""
  3216. "Will export an Gerber Object as Gerber file,\n"
  3217. "the coordinates format, the file units and zeros\n"
  3218. "are set in Preferences -> Gerber Export."
  3219. msgstr ""
  3220. "Will export an Gerber Object as Gerber file,\n"
  3221. "the coordinates format, the file units and zeros\n"
  3222. "are set in Preferences -> Gerber Export."
  3223. #: flatcamGUI/FlatCAMGUI.py:197
  3224. msgid "Save &Defaults"
  3225. msgstr "Save &Defaults"
  3226. #: flatcamGUI/FlatCAMGUI.py:203 flatcamGUI/FlatCAMGUI.py:524
  3227. msgid "Save"
  3228. msgstr "Save"
  3229. #: flatcamGUI/FlatCAMGUI.py:206
  3230. msgid "&Save Project ..."
  3231. msgstr "&Save Project ..."
  3232. #: flatcamGUI/FlatCAMGUI.py:211
  3233. msgid "Save Project &As ...\tCTRL+S"
  3234. msgstr "Save Project &As ...\tCTRL+S"
  3235. #: flatcamGUI/FlatCAMGUI.py:216
  3236. msgid "Save Project C&opy ..."
  3237. msgstr "Save Project C&opy ..."
  3238. #: flatcamGUI/FlatCAMGUI.py:223
  3239. msgid "E&xit"
  3240. msgstr "E&xit"
  3241. #: flatcamGUI/FlatCAMGUI.py:229
  3242. msgid "&Edit"
  3243. msgstr "&Edit"
  3244. #: flatcamGUI/FlatCAMGUI.py:232
  3245. msgid "Edit Object\tE"
  3246. msgstr "Edit Object\tE"
  3247. #: flatcamGUI/FlatCAMGUI.py:233
  3248. msgid "Close Editor\tCTRL+S"
  3249. msgstr "Close Editor\tCTRL+S"
  3250. #: flatcamGUI/FlatCAMGUI.py:241
  3251. msgid "Conversion"
  3252. msgstr "Conversion"
  3253. #: flatcamGUI/FlatCAMGUI.py:243
  3254. msgid "&Join Geo/Gerber/Exc -> Geo"
  3255. msgstr "&Join Geo/Gerber/Exc -> Geo"
  3256. #: flatcamGUI/FlatCAMGUI.py:245
  3257. msgid ""
  3258. "Merge a selection of objects, which can be of type:\n"
  3259. "- Gerber\n"
  3260. "- Excellon\n"
  3261. "- Geometry\n"
  3262. "into a new combo Geometry object."
  3263. msgstr ""
  3264. "Merge a selection of objects, which can be of type:\n"
  3265. "- Gerber\n"
  3266. "- Excellon\n"
  3267. "- Geometry\n"
  3268. "into a new combo Geometry object."
  3269. #: flatcamGUI/FlatCAMGUI.py:252
  3270. msgid "Join Excellon(s) -> Excellon"
  3271. msgstr "Join Excellon(s) -> Excellon"
  3272. #: flatcamGUI/FlatCAMGUI.py:254
  3273. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3274. msgstr ""
  3275. "Merge a selection of Excellon objects into a new combo Excellon object."
  3276. #: flatcamGUI/FlatCAMGUI.py:257
  3277. msgid "Join Gerber(s) -> Gerber"
  3278. msgstr "Join Gerber(s) -> Gerber"
  3279. #: flatcamGUI/FlatCAMGUI.py:259
  3280. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3281. msgstr "Merge a selection of Gerber objects into a new combo Gerber object."
  3282. #: flatcamGUI/FlatCAMGUI.py:264
  3283. msgid "Convert Single to MultiGeo"
  3284. msgstr "Convert Single to MultiGeo"
  3285. #: flatcamGUI/FlatCAMGUI.py:266
  3286. msgid ""
  3287. "Will convert a Geometry object from single_geometry type\n"
  3288. "to a multi_geometry type."
  3289. msgstr ""
  3290. "Will convert a Geometry object from single_geometry type\n"
  3291. "to a multi_geometry type."
  3292. #: flatcamGUI/FlatCAMGUI.py:270
  3293. msgid "Convert Multi to SingleGeo"
  3294. msgstr "Convert Multi to SingleGeo"
  3295. #: flatcamGUI/FlatCAMGUI.py:272
  3296. msgid ""
  3297. "Will convert a Geometry object from multi_geometry type\n"
  3298. "to a single_geometry type."
  3299. msgstr ""
  3300. "Will convert a Geometry object from multi_geometry type\n"
  3301. "to a single_geometry type."
  3302. #: flatcamGUI/FlatCAMGUI.py:278
  3303. msgid "Convert Any to Geo"
  3304. msgstr "Convert Any to Geo"
  3305. #: flatcamGUI/FlatCAMGUI.py:280
  3306. msgid "Convert Any to Gerber"
  3307. msgstr "Convert Any to Gerber"
  3308. #: flatcamGUI/FlatCAMGUI.py:285
  3309. msgid "&Copy\tCTRL+C"
  3310. msgstr "&Copy\tCTRL+C"
  3311. #: flatcamGUI/FlatCAMGUI.py:289
  3312. msgid "&Delete\tDEL"
  3313. msgstr "&Delete\tDEL"
  3314. #: flatcamGUI/FlatCAMGUI.py:293
  3315. msgid "Se&t Origin\tO"
  3316. msgstr "Se&t Origin\tO"
  3317. #: flatcamGUI/FlatCAMGUI.py:294
  3318. msgid "Jump to Location\tJ"
  3319. msgstr "Jump to Location\tJ"
  3320. #: flatcamGUI/FlatCAMGUI.py:299
  3321. msgid "Toggle Units\tQ"
  3322. msgstr "Toggle Units\tQ"
  3323. #: flatcamGUI/FlatCAMGUI.py:300
  3324. msgid "&Select All\tCTRL+A"
  3325. msgstr "&Select All\tCTRL+A"
  3326. #: flatcamGUI/FlatCAMGUI.py:304
  3327. msgid "&Preferences\tSHIFT+P"
  3328. msgstr "&Preferences\tSHIFT+P"
  3329. #: flatcamGUI/FlatCAMGUI.py:307
  3330. msgid "&Options"
  3331. msgstr "&Options"
  3332. #: flatcamGUI/FlatCAMGUI.py:322
  3333. msgid "&Rotate Selection\tSHIFT+(R)"
  3334. msgstr "&Rotate Selection\tSHIFT+(R)"
  3335. #: flatcamGUI/FlatCAMGUI.py:327
  3336. msgid "&Skew on X axis\tSHIFT+X"
  3337. msgstr "&Skew on X axis\tSHIFT+X"
  3338. #: flatcamGUI/FlatCAMGUI.py:329
  3339. msgid "S&kew on Y axis\tSHIFT+Y"
  3340. msgstr "S&kew on Y axis\tSHIFT+Y"
  3341. #: flatcamGUI/FlatCAMGUI.py:334
  3342. msgid "Flip on &X axis\tX"
  3343. msgstr "Flip on &X axis\tX"
  3344. #: flatcamGUI/FlatCAMGUI.py:336
  3345. msgid "Flip on &Y axis\tY"
  3346. msgstr "Flip on &Y axis\tY"
  3347. #: flatcamGUI/FlatCAMGUI.py:341
  3348. msgid "View source\tALT+S"
  3349. msgstr "View source\tALT+S"
  3350. #: flatcamGUI/FlatCAMGUI.py:346
  3351. msgid "&View"
  3352. msgstr "&View"
  3353. #: flatcamGUI/FlatCAMGUI.py:347
  3354. msgid "Enable all plots\tALT+1"
  3355. msgstr "Enable all plots\tALT+1"
  3356. #: flatcamGUI/FlatCAMGUI.py:349
  3357. msgid "Disable all plots\tALT+2"
  3358. msgstr "Disable all plots\tALT+2"
  3359. #: flatcamGUI/FlatCAMGUI.py:351
  3360. msgid "Disable non-selected\tALT+3"
  3361. msgstr "Disable non-selected\tALT+3"
  3362. #: flatcamGUI/FlatCAMGUI.py:354
  3363. msgid "&Zoom Fit\tV"
  3364. msgstr "&Zoom Fit\tV"
  3365. #: flatcamGUI/FlatCAMGUI.py:355
  3366. msgid "&Zoom In\t="
  3367. msgstr "&Zoom In\t="
  3368. #: flatcamGUI/FlatCAMGUI.py:356
  3369. msgid "&Zoom Out\t-"
  3370. msgstr "&Zoom Out\t-"
  3371. #: flatcamGUI/FlatCAMGUI.py:360
  3372. msgid "Toggle Code Editor\tCTRL+E"
  3373. msgstr "Toggle Code Editor\tCTRL+E"
  3374. #: flatcamGUI/FlatCAMGUI.py:363
  3375. msgid "&Toggle FullScreen\tALT+F10"
  3376. msgstr "&Toggle FullScreen\tALT+F10"
  3377. #: flatcamGUI/FlatCAMGUI.py:365
  3378. msgid "&Toggle Plot Area\tCTRL+F10"
  3379. msgstr "&Toggle Plot Area\tCTRL+F10"
  3380. #: flatcamGUI/FlatCAMGUI.py:367
  3381. msgid "&Toggle Project/Sel/Tool\t`"
  3382. msgstr "&Toggle Project/Sel/Tool\t`"
  3383. #: flatcamGUI/FlatCAMGUI.py:370
  3384. msgid "&Toggle Grid Snap\tG"
  3385. msgstr "&Toggle Grid Snap\tG"
  3386. #: flatcamGUI/FlatCAMGUI.py:372
  3387. msgid "&Toggle Axis\tSHIFT+G"
  3388. msgstr "&Toggle Axis\tSHIFT+G"
  3389. #: flatcamGUI/FlatCAMGUI.py:375
  3390. msgid "Toggle Workspace\tSHIFT+W"
  3391. msgstr "Toggle Workspace\tSHIFT+W"
  3392. #: flatcamGUI/FlatCAMGUI.py:378
  3393. msgid "&Tool"
  3394. msgstr "&Tool"
  3395. #: flatcamGUI/FlatCAMGUI.py:380
  3396. msgid "&Command Line\tS"
  3397. msgstr "&Command Line\tS"
  3398. #: flatcamGUI/FlatCAMGUI.py:383
  3399. msgid "&Help"
  3400. msgstr "&Help"
  3401. #: flatcamGUI/FlatCAMGUI.py:384
  3402. msgid "Help\tF1"
  3403. msgstr "Help\tF1"
  3404. #: flatcamGUI/FlatCAMGUI.py:385
  3405. msgid "FlatCAM.org"
  3406. msgstr "FlatCAM.org"
  3407. #: flatcamGUI/FlatCAMGUI.py:388
  3408. msgid "Shortcuts List\tF3"
  3409. msgstr "Shortcuts List\tF3"
  3410. #: flatcamGUI/FlatCAMGUI.py:389
  3411. msgid "YouTube Channel\tF4"
  3412. msgstr "YouTube Channel\tF4"
  3413. #: flatcamGUI/FlatCAMGUI.py:391
  3414. msgid "About"
  3415. msgstr "About"
  3416. #: flatcamGUI/FlatCAMGUI.py:398
  3417. msgid "Add Circle\tO"
  3418. msgstr "Add Circle\tO"
  3419. #: flatcamGUI/FlatCAMGUI.py:400
  3420. msgid "Add Arc\tA"
  3421. msgstr "Add Arc\tA"
  3422. #: flatcamGUI/FlatCAMGUI.py:403
  3423. msgid "Add Rectangle\tR"
  3424. msgstr "Add Rectangle\tR"
  3425. #: flatcamGUI/FlatCAMGUI.py:406
  3426. msgid "Add Polygon\tN"
  3427. msgstr "Add Polygon\tN"
  3428. #: flatcamGUI/FlatCAMGUI.py:408
  3429. msgid "Add Path\tP"
  3430. msgstr "Add Path\tP"
  3431. #: flatcamGUI/FlatCAMGUI.py:410
  3432. msgid "Add Text\tT"
  3433. msgstr "Add Text\tT"
  3434. #: flatcamGUI/FlatCAMGUI.py:413
  3435. msgid "Polygon Union\tU"
  3436. msgstr "Polygon Union\tU"
  3437. #: flatcamGUI/FlatCAMGUI.py:415
  3438. msgid "Polygon Intersection\tE"
  3439. msgstr "Polygon Intersection\tE"
  3440. #: flatcamGUI/FlatCAMGUI.py:417
  3441. msgid "Polygon Subtraction\tS"
  3442. msgstr "Polygon Subtraction\tS"
  3443. #: flatcamGUI/FlatCAMGUI.py:421
  3444. msgid "Cut Path\tX"
  3445. msgstr "Cut Path\tX"
  3446. #: flatcamGUI/FlatCAMGUI.py:423
  3447. msgid "Copy Geom\tC"
  3448. msgstr "Copy Geom\tC"
  3449. #: flatcamGUI/FlatCAMGUI.py:425
  3450. msgid "Delete Shape\tDEL"
  3451. msgstr "Delete Shape\tDEL"
  3452. #: flatcamGUI/FlatCAMGUI.py:428 flatcamGUI/FlatCAMGUI.py:499
  3453. msgid "Move\tM"
  3454. msgstr "Move\tM"
  3455. #: flatcamGUI/FlatCAMGUI.py:430
  3456. msgid "Buffer Tool\tB"
  3457. msgstr "Buffer Tool\tB"
  3458. #: flatcamGUI/FlatCAMGUI.py:433
  3459. msgid "Paint Tool\tI"
  3460. msgstr "Paint Tool\tI"
  3461. #: flatcamGUI/FlatCAMGUI.py:436
  3462. msgid "Transform Tool\tALT+R"
  3463. msgstr "Transform Tool\tALT+R"
  3464. #: flatcamGUI/FlatCAMGUI.py:440
  3465. msgid "Toggle Corner Snap\tK"
  3466. msgstr "Toggle Corner Snap\tK"
  3467. #: flatcamGUI/FlatCAMGUI.py:443
  3468. msgid ">Excellon Editor<"
  3469. msgstr ">Excellon Editor<"
  3470. #: flatcamGUI/FlatCAMGUI.py:447
  3471. msgid "Add Drill Array\tA"
  3472. msgstr "Add Drill Array\tA"
  3473. #: flatcamGUI/FlatCAMGUI.py:449
  3474. msgid "Add Drill\tD"
  3475. msgstr "Add Drill\tD"
  3476. #: flatcamGUI/FlatCAMGUI.py:453
  3477. msgid "Resize Drill(S)\tR"
  3478. msgstr "Resize Drill(S)\tR"
  3479. #: flatcamGUI/FlatCAMGUI.py:455 flatcamGUI/FlatCAMGUI.py:494
  3480. msgid "Copy\tC"
  3481. msgstr "Copy\tC"
  3482. #: flatcamGUI/FlatCAMGUI.py:457 flatcamGUI/FlatCAMGUI.py:496
  3483. msgid "Delete\tDEL"
  3484. msgstr "Delete\tDEL"
  3485. #: flatcamGUI/FlatCAMGUI.py:462
  3486. msgid "Move Drill(s)\tM"
  3487. msgstr "Move Drill(s)\tM"
  3488. #: flatcamGUI/FlatCAMGUI.py:465
  3489. msgid ">Gerber Editor<"
  3490. msgstr ">Gerber Editor<"
  3491. #: flatcamGUI/FlatCAMGUI.py:469
  3492. msgid "Add Pad\tP"
  3493. msgstr "Add Pad\tP"
  3494. #: flatcamGUI/FlatCAMGUI.py:471
  3495. msgid "Add Pad Array\tA"
  3496. msgstr "Add Pad Array\tA"
  3497. #: flatcamGUI/FlatCAMGUI.py:473
  3498. msgid "Add Track\tT"
  3499. msgstr "Add Track\tT"
  3500. #: flatcamGUI/FlatCAMGUI.py:475
  3501. msgid "Add Region\tN"
  3502. msgstr "Add Region\tN"
  3503. #: flatcamGUI/FlatCAMGUI.py:479
  3504. msgid "Poligonize\tALT+N"
  3505. msgstr "Poligonize\tALT+N"
  3506. #: flatcamGUI/FlatCAMGUI.py:481
  3507. msgid "Add SemiDisc\tE"
  3508. msgstr "Add SemiDisc\tE"
  3509. #: flatcamGUI/FlatCAMGUI.py:482
  3510. msgid "Add Disc\tD"
  3511. msgstr "Add Disc\tD"
  3512. #: flatcamGUI/FlatCAMGUI.py:484
  3513. msgid "Buffer\tB"
  3514. msgstr "Buffer\tB"
  3515. #: flatcamGUI/FlatCAMGUI.py:485
  3516. msgid "Scale\tS"
  3517. msgstr "Scale\tS"
  3518. #: flatcamGUI/FlatCAMGUI.py:487
  3519. msgid "Mark Area\tALT+A"
  3520. msgstr "Mark Area\tALT+A"
  3521. #: flatcamGUI/FlatCAMGUI.py:489
  3522. msgid "Eraser\tCTRL+E"
  3523. msgstr "Eraser\tCTRL+E"
  3524. #: flatcamGUI/FlatCAMGUI.py:491
  3525. msgid "Transform\tALT+R"
  3526. msgstr "Transform\tALT+R"
  3527. #: flatcamGUI/FlatCAMGUI.py:515
  3528. msgid "Enable Plot"
  3529. msgstr "Enable Plot"
  3530. #: flatcamGUI/FlatCAMGUI.py:516 flatcamGUI/FlatCAMGUI.py:1588
  3531. msgid "Disable Plot"
  3532. msgstr "Disable Plot"
  3533. #: flatcamGUI/FlatCAMGUI.py:518
  3534. msgid "Generate CNC"
  3535. msgstr "Generate CNC"
  3536. #: flatcamGUI/FlatCAMGUI.py:519
  3537. msgid "View Source"
  3538. msgstr "View Source"
  3539. #: flatcamGUI/FlatCAMGUI.py:521 flatcamGUI/FlatCAMGUI.py:1628
  3540. msgid "Edit"
  3541. msgstr "Edit"
  3542. #: flatcamGUI/FlatCAMGUI.py:527 flatcamGUI/FlatCAMGUI.py:1634
  3543. #: flatcamTools/ToolProperties.py:25
  3544. msgid "Properties"
  3545. msgstr "Properties"
  3546. #: flatcamGUI/FlatCAMGUI.py:556
  3547. msgid "File Toolbar"
  3548. msgstr "File Toolbar"
  3549. #: flatcamGUI/FlatCAMGUI.py:560
  3550. msgid "Edit Toolbar"
  3551. msgstr "Edit Toolbar"
  3552. #: flatcamGUI/FlatCAMGUI.py:564
  3553. msgid "View Toolbar"
  3554. msgstr "View Toolbar"
  3555. #: flatcamGUI/FlatCAMGUI.py:568
  3556. msgid "Shell Toolbar"
  3557. msgstr "Shell Toolbar"
  3558. #: flatcamGUI/FlatCAMGUI.py:572
  3559. msgid "Tools Toolbar"
  3560. msgstr "Tools Toolbar"
  3561. #: flatcamGUI/FlatCAMGUI.py:576
  3562. msgid "Excellon Editor Toolbar"
  3563. msgstr "Excellon Editor Toolbar"
  3564. #: flatcamGUI/FlatCAMGUI.py:580
  3565. msgid "Geometry Editor Toolbar"
  3566. msgstr "Geometry Editor Toolbar"
  3567. #: flatcamGUI/FlatCAMGUI.py:584
  3568. msgid "Gerber Editor Toolbar"
  3569. msgstr "Gerber Editor Toolbar"
  3570. #: flatcamGUI/FlatCAMGUI.py:588
  3571. msgid "Grid Toolbar"
  3572. msgstr "Grid Toolbar"
  3573. #: flatcamGUI/FlatCAMGUI.py:607 flatcamGUI/FlatCAMGUI.py:1845
  3574. msgid "Open project"
  3575. msgstr "Open project"
  3576. #: flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1846
  3577. msgid "Save project"
  3578. msgstr "Save project"
  3579. #: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1849
  3580. msgid "New Blank Geometry"
  3581. msgstr "New Blank Geometry"
  3582. #: flatcamGUI/FlatCAMGUI.py:612
  3583. msgid "New Blank Gerber"
  3584. msgstr "New Blank Gerber"
  3585. #: flatcamGUI/FlatCAMGUI.py:613 flatcamGUI/FlatCAMGUI.py:1850
  3586. msgid "New Blank Excellon"
  3587. msgstr "New Blank Excellon"
  3588. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1852
  3589. msgid "Editor"
  3590. msgstr "Editor"
  3591. #: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1854
  3592. msgid "Save Object and close the Editor"
  3593. msgstr "Save Object and close the Editor"
  3594. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1858
  3595. msgid "&Delete"
  3596. msgstr "&Delete"
  3597. #: flatcamGUI/FlatCAMGUI.py:624 flatcamGUI/FlatCAMGUI.py:1861
  3598. msgid "&Replot"
  3599. msgstr "&Replot"
  3600. #: flatcamGUI/FlatCAMGUI.py:625 flatcamGUI/FlatCAMGUI.py:1862
  3601. msgid "&Clear plot"
  3602. msgstr "&Clear plot"
  3603. #: flatcamGUI/FlatCAMGUI.py:626 flatcamGUI/FlatCAMGUI.py:1863
  3604. msgid "Zoom In"
  3605. msgstr "Zoom In"
  3606. #: flatcamGUI/FlatCAMGUI.py:627 flatcamGUI/FlatCAMGUI.py:1864
  3607. msgid "Zoom Out"
  3608. msgstr "Zoom Out"
  3609. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1603
  3610. #: flatcamGUI/FlatCAMGUI.py:1865
  3611. msgid "Zoom Fit"
  3612. msgstr "Zoom Fit"
  3613. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1870
  3614. msgid "&Command Line"
  3615. msgstr "&Command Line"
  3616. #: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1873
  3617. msgid "2Sided Tool"
  3618. msgstr "2Sided Tool"
  3619. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1874
  3620. msgid "&Cutout Tool"
  3621. msgstr "&Cutout Tool"
  3622. #: flatcamGUI/FlatCAMGUI.py:638 flatcamGUI/FlatCAMGUI.py:1875
  3623. #: flatcamGUI/ObjectUI.py:389 flatcamTools/ToolNonCopperClear.py:285
  3624. msgid "NCC Tool"
  3625. msgstr "NCC Tool"
  3626. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1879
  3627. msgid "Panel Tool"
  3628. msgstr "Panel Tool"
  3629. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1880
  3630. #: flatcamTools/ToolFilm.py:204
  3631. msgid "Film Tool"
  3632. msgstr "Film Tool"
  3633. #: flatcamGUI/FlatCAMGUI.py:644 flatcamGUI/FlatCAMGUI.py:1882
  3634. #: flatcamTools/ToolSolderPaste.py:450
  3635. msgid "SolderPaste Tool"
  3636. msgstr "SolderPaste Tool"
  3637. #: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1883
  3638. #: flatcamTools/ToolSub.py:26
  3639. msgid "Substract Tool"
  3640. msgstr "Substract Tool"
  3641. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1888
  3642. msgid "Calculators Tool"
  3643. msgstr "Calculators Tool"
  3644. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:667
  3645. #: flatcamGUI/FlatCAMGUI.py:701 flatcamGUI/FlatCAMGUI.py:1892
  3646. #: flatcamGUI/FlatCAMGUI.py:1942
  3647. msgid "Select"
  3648. msgstr "Select"
  3649. #: flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1893
  3650. msgid "Add Drill Hole"
  3651. msgstr "Add Drill Hole"
  3652. #: flatcamGUI/FlatCAMGUI.py:656 flatcamGUI/FlatCAMGUI.py:1895
  3653. msgid "Add Drill Hole Array"
  3654. msgstr "Add Drill Hole Array"
  3655. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1896
  3656. msgid "Resize Drill"
  3657. msgstr "Resize Drill"
  3658. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1899
  3659. msgid "Copy Drill"
  3660. msgstr "Copy Drill"
  3661. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1901
  3662. msgid "Delete Drill"
  3663. msgstr "Delete Drill"
  3664. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1904
  3665. msgid "Move Drill"
  3666. msgstr "Move Drill"
  3667. #: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1908
  3668. msgid "Add Circle"
  3669. msgstr "Add Circle"
  3670. #: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1909
  3671. msgid "Add Arc"
  3672. msgstr "Add Arc"
  3673. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1911
  3674. msgid "Add Rectangle"
  3675. msgstr "Add Rectangle"
  3676. #: flatcamGUI/FlatCAMGUI.py:674 flatcamGUI/FlatCAMGUI.py:1914
  3677. msgid "Add Path"
  3678. msgstr "Add Path"
  3679. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1916
  3680. msgid "Add Polygon"
  3681. msgstr "Add Polygon"
  3682. #: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1918
  3683. msgid "Add Text"
  3684. msgstr "Add Text"
  3685. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1919
  3686. msgid "Add Buffer"
  3687. msgstr "Add Buffer"
  3688. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1920
  3689. msgid "Paint Shape"
  3690. msgstr "Paint Shape"
  3691. #: flatcamGUI/FlatCAMGUI.py:680 flatcamGUI/FlatCAMGUI.py:718
  3692. #: flatcamGUI/FlatCAMGUI.py:1921 flatcamGUI/FlatCAMGUI.py:1958
  3693. msgid "Eraser"
  3694. msgstr "Eraser"
  3695. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1924
  3696. msgid "Polygon Union"
  3697. msgstr "Polygon Union"
  3698. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1926
  3699. msgid "Polygon Intersection"
  3700. msgstr "Polygon Intersection"
  3701. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1928
  3702. msgid "Polygon Subtraction"
  3703. msgstr "Polygon Subtraction"
  3704. #: flatcamGUI/FlatCAMGUI.py:690 flatcamGUI/FlatCAMGUI.py:1931
  3705. msgid "Cut Path"
  3706. msgstr "Cut Path"
  3707. #: flatcamGUI/FlatCAMGUI.py:691
  3708. msgid "Copy Shape(s)"
  3709. msgstr "Copy Shape(s)"
  3710. #: flatcamGUI/FlatCAMGUI.py:694
  3711. msgid "Delete Shape '-'"
  3712. msgstr "Delete Shape '-'"
  3713. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:725
  3714. #: flatcamGUI/FlatCAMGUI.py:1936 flatcamGUI/FlatCAMGUI.py:1965
  3715. msgid "Transformations"
  3716. msgstr "Transformations"
  3717. #: flatcamGUI/FlatCAMGUI.py:698
  3718. msgid "Move Objects "
  3719. msgstr "Move Objects "
  3720. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:1943
  3721. msgid "Add Pad"
  3722. msgstr "Add Pad"
  3723. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:1945
  3724. msgid "Add Track"
  3725. msgstr "Add Track"
  3726. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1946
  3727. msgid "Add Region"
  3728. msgstr "Add Region"
  3729. #: flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:1948
  3730. msgid "Poligonize"
  3731. msgstr "Poligonize"
  3732. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1950
  3733. msgid "SemiDisc"
  3734. msgstr "SemiDisc"
  3735. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1951
  3736. msgid "Disc"
  3737. msgstr "Disc"
  3738. #: flatcamGUI/FlatCAMGUI.py:716 flatcamGUI/FlatCAMGUI.py:1957
  3739. msgid "Mark Area"
  3740. msgstr "Mark Area"
  3741. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:1613
  3742. #: flatcamGUI/FlatCAMGUI.py:1633 flatcamGUI/FlatCAMGUI.py:1967
  3743. #: flatcamTools/ToolMove.py:26
  3744. msgid "Move"
  3745. msgstr "Move"
  3746. #: flatcamGUI/FlatCAMGUI.py:733 flatcamGUI/FlatCAMGUI.py:1973
  3747. msgid "Snap to grid"
  3748. msgstr "Snap to grid"
  3749. #: flatcamGUI/FlatCAMGUI.py:736 flatcamGUI/FlatCAMGUI.py:1976
  3750. msgid "Grid X snapping distance"
  3751. msgstr "Grid X snapping distance"
  3752. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1981
  3753. msgid "Grid Y snapping distance"
  3754. msgstr "Grid Y snapping distance"
  3755. #: flatcamGUI/FlatCAMGUI.py:747 flatcamGUI/FlatCAMGUI.py:1987
  3756. msgid ""
  3757. "When active, value on Grid_X\n"
  3758. "is copied to the Grid_Y value."
  3759. msgstr ""
  3760. "When active, value on Grid_X\n"
  3761. "is copied to the Grid_Y value."
  3762. #: flatcamGUI/FlatCAMGUI.py:753 flatcamGUI/FlatCAMGUI.py:1993
  3763. msgid "Snap to corner"
  3764. msgstr "Snap to corner"
  3765. #: flatcamGUI/FlatCAMGUI.py:757 flatcamGUI/FlatCAMGUI.py:1997
  3766. #: flatcamGUI/FlatCAMGUI.py:3363
  3767. msgid "Max. magnet distance"
  3768. msgstr "Max. magnet distance"
  3769. #: flatcamGUI/FlatCAMGUI.py:785 flatcamGUI/FlatCAMGUI.py:1597
  3770. msgid "Project"
  3771. msgstr "Project"
  3772. #: flatcamGUI/FlatCAMGUI.py:795
  3773. msgid "Selected"
  3774. msgstr "Selected"
  3775. #: flatcamGUI/FlatCAMGUI.py:814 flatcamGUI/FlatCAMGUI.py:822
  3776. msgid "Plot Area"
  3777. msgstr "Plot Area"
  3778. #: flatcamGUI/FlatCAMGUI.py:846
  3779. msgid "General"
  3780. msgstr "General"
  3781. #: flatcamGUI/FlatCAMGUI.py:855
  3782. msgid "APP. DEFAULTS"
  3783. msgstr "APP. DEFAULTS"
  3784. #: flatcamGUI/FlatCAMGUI.py:856
  3785. msgid "PROJ. OPTIONS "
  3786. msgstr "PROJ. OPTIONS "
  3787. #: flatcamGUI/FlatCAMGUI.py:867
  3788. msgid "GERBER"
  3789. msgstr "GERBER"
  3790. #: flatcamGUI/FlatCAMGUI.py:876
  3791. msgid "EXCELLON"
  3792. msgstr "EXCELLON"
  3793. #: flatcamGUI/FlatCAMGUI.py:885
  3794. msgid "GEOMETRY"
  3795. msgstr "GEOMETRY"
  3796. #: flatcamGUI/FlatCAMGUI.py:895
  3797. msgid "CNC-JOB"
  3798. msgstr "CNC-JOB"
  3799. #: flatcamGUI/FlatCAMGUI.py:904
  3800. msgid "TOOLS"
  3801. msgstr "TOOLS"
  3802. #: flatcamGUI/FlatCAMGUI.py:921
  3803. msgid "Import Preferences"
  3804. msgstr "Import Preferences"
  3805. #: flatcamGUI/FlatCAMGUI.py:924
  3806. msgid ""
  3807. "Import a full set of FlatCAM settings from a file\n"
  3808. "previously saved on HDD.\n"
  3809. "\n"
  3810. "FlatCAM automatically save a 'factory_defaults' file\n"
  3811. "on the first start. Do not delete that file."
  3812. msgstr ""
  3813. "Import a full set of FlatCAM settings from a file\n"
  3814. "previously saved on HDD.\n"
  3815. "\n"
  3816. "FlatCAM automatically save a 'factory_defaults' file\n"
  3817. "on the first start. Do not delete that file."
  3818. #: flatcamGUI/FlatCAMGUI.py:931
  3819. msgid "Export Preferences"
  3820. msgstr "Export Preferences"
  3821. #: flatcamGUI/FlatCAMGUI.py:934
  3822. msgid ""
  3823. "Export a full set of FlatCAM settings in a file\n"
  3824. "that is saved on HDD."
  3825. msgstr ""
  3826. "Export a full set of FlatCAM settings in a file\n"
  3827. "that is saved on HDD."
  3828. #: flatcamGUI/FlatCAMGUI.py:939
  3829. msgid "Open Pref Folder"
  3830. msgstr "Open Pref Folder"
  3831. #: flatcamGUI/FlatCAMGUI.py:942
  3832. msgid "Open the folder where FlatCAM save the preferences files."
  3833. msgstr "Open the folder where FlatCAM save the preferences files."
  3834. #: flatcamGUI/FlatCAMGUI.py:950
  3835. msgid "Save Preferences"
  3836. msgstr "Save Preferences"
  3837. #: flatcamGUI/FlatCAMGUI.py:953
  3838. msgid ""
  3839. "Save the current settings in the 'current_defaults' file\n"
  3840. "which is the file storing the working default preferences."
  3841. msgstr ""
  3842. "Save the current settings in the 'current_defaults' file\n"
  3843. "which is the file storing the working default preferences."
  3844. #: flatcamGUI/FlatCAMGUI.py:979
  3845. msgid ""
  3846. "<b>General Shortcut list</b><br>\n"
  3847. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3848. "\"width:283px\">\n"
  3849. " <tbody>\n"
  3850. " <tr height=\"20\">\n"
  3851. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3852. "td>\n"
  3853. " <td width=\"194\"><span style=\"color:"
  3854. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3855. " </tr>\n"
  3856. " <tr height=\"20\">\n"
  3857. " <td height=\"20\">&nbsp;</td>\n"
  3858. " <td>&nbsp;</td>\n"
  3859. " </tr>\n"
  3860. " <tr height=\"20\">\n"
  3861. " <td height=\"20\"><strong>1</strong></td>\n"
  3862. " <td>&nbsp;Switch to Project Tab</td>\n"
  3863. " </tr>\n"
  3864. " <tr height=\"20\">\n"
  3865. " <td height=\"20\"><strong>2</strong></td>\n"
  3866. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3867. " </tr>\n"
  3868. " <tr height=\"20\">\n"
  3869. " <td height=\"20\"><strong>3</strong></td>\n"
  3870. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3871. " </tr>\n"
  3872. " <tr height=\"20\">\n"
  3873. " <td height=\"20\">&nbsp;</td>\n"
  3874. " <td>&nbsp;</td>\n"
  3875. " </tr>\n"
  3876. " <tr height=\"20\">\n"
  3877. " <td height=\"20\"><strong>B</strong></td>\n"
  3878. " <td>&nbsp;New Gerber</td>\n"
  3879. " </tr>\n"
  3880. " <tr height=\"20\">\n"
  3881. " <td height=\"20\"><strong>E</strong></td>\n"
  3882. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3883. " </tr>\n"
  3884. " <tr height=\"20\">\n"
  3885. " <td height=\"20\"><strong>G</strong></td>\n"
  3886. " <td>&nbsp;Grid On/Off</td>\n"
  3887. " </tr>\n"
  3888. " <tr height=\"20\">\n"
  3889. " <td height=\"20\"><strong>J</strong></td>\n"
  3890. " <td>&nbsp;Jump to Coordinates</td>\n"
  3891. " </tr>\n"
  3892. " <tr height=\"20\">\n"
  3893. " <td height=\"20\"><strong>L</strong></td>\n"
  3894. " <td>&nbsp;New Excellon</td>\n"
  3895. " </tr>\n"
  3896. " <tr height=\"20\">\n"
  3897. " <td height=\"20\"><strong>M</strong></td>\n"
  3898. " <td>&nbsp;Move Obj</td>\n"
  3899. " </tr>\n"
  3900. " <tr height=\"20\">\n"
  3901. " <td height=\"20\"><strong>N</strong></td>\n"
  3902. " <td>&nbsp;New Geometry</td>\n"
  3903. " </tr>\n"
  3904. " <tr height=\"20\">\n"
  3905. " <td height=\"20\"><strong>O</strong></td>\n"
  3906. " <td>&nbsp;Set Origin</td>\n"
  3907. " </tr>\n"
  3908. " <tr height=\"20\">\n"
  3909. " <td height=\"20\"><strong>Q</strong></td>\n"
  3910. " <td>&nbsp;Change Units</td>\n"
  3911. " </tr>\n"
  3912. " <tr height=\"20\">\n"
  3913. " <td height=\"20\"><strong>P</strong></td>\n"
  3914. " <td>&nbsp;Open Properties Tool</td>\n"
  3915. " </tr>\n"
  3916. " <tr height=\"20\">\n"
  3917. " <td height=\"20\"><strong>R</strong></td>\n"
  3918. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3919. " </tr>\n"
  3920. " <tr height=\"20\">\n"
  3921. " <td height=\"20\"><strong>S</strong></td>\n"
  3922. " <td>&nbsp;Shell Toggle</td>\n"
  3923. " </tr>\n"
  3924. " <tr height=\"20\">\n"
  3925. " <td height=\"20\"><strong>T</strong></td>\n"
  3926. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3927. "or in Tools NCC or Tools Paint)</td>\n"
  3928. " </tr>\n"
  3929. " <tr height=\"20\">\n"
  3930. " <td height=\"20\"><strong>V</strong></td>\n"
  3931. " <td>&nbsp;Zoom Fit</td>\n"
  3932. " </tr>\n"
  3933. " <tr height=\"20\">\n"
  3934. " <td height=\"20\"><strong>X</strong></td>\n"
  3935. " <td>&nbsp;Flip on X_axis</td>\n"
  3936. " </tr>\n"
  3937. " <tr height=\"20\">\n"
  3938. " <td height=\"20\"><strong>Y</strong></td>\n"
  3939. " <td>&nbsp;Flip on Y_axis</td>\n"
  3940. " </tr>\n"
  3941. " <tr height=\"20\">\n"
  3942. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3943. " <td>&nbsp;Zoom Out</td>\n"
  3944. " </tr>\n"
  3945. " <tr height=\"20\">\n"
  3946. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3947. " <td>&nbsp;Zoom In</td>\n"
  3948. " </tr>\n"
  3949. " <tr height=\"20\">\n"
  3950. " <td height=\"20\">&nbsp;</td>\n"
  3951. " <td>&nbsp;</td>\n"
  3952. " </tr>\n"
  3953. " <tr height=\"20\">\n"
  3954. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3955. " <td>&nbsp;Select All</td>\n"
  3956. " </tr>\n"
  3957. " <tr height=\"20\">\n"
  3958. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3959. " <td>&nbsp;Copy Obj</td>\n"
  3960. " </tr>\n"
  3961. " <tr height=\"20\">\n"
  3962. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3963. " <td>&nbsp;Open Excellon File</td>\n"
  3964. " </tr>\n"
  3965. " <tr height=\"20\">\n"
  3966. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3967. " <td>&nbsp;Open Gerber File</td>\n"
  3968. " </tr>\n"
  3969. " <tr height=\"20\">\n"
  3970. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3971. " <td>&nbsp;New Project</td>\n"
  3972. " </tr>\n"
  3973. " <tr height=\"20\">\n"
  3974. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3975. " <td>&nbsp;Measurement Tool</td>\n"
  3976. " </tr>\n"
  3977. " <tr height=\"20\">\n"
  3978. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3979. " <td>&nbsp;Open Project</td>\n"
  3980. " </tr>\n"
  3981. " <tr height=\"20\">\n"
  3982. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3983. " <td>&nbsp;Save Project As</td>\n"
  3984. " </tr>\n"
  3985. " <tr height=\"20\">\n"
  3986. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3987. " <td>&nbsp;Toggle Plot Area</td>\n"
  3988. " </tr>\n"
  3989. " <tr height=\"20\">\n"
  3990. " <td height=\"20\">&nbsp;</td>\n"
  3991. " <td>&nbsp;</td>\n"
  3992. " </tr>\n"
  3993. " <tr height=\"20\">\n"
  3994. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3995. " <td>&nbsp;Copy Obj_Name</td>\n"
  3996. " </tr>\n"
  3997. " <tr height=\"20\">\n"
  3998. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3999. " <td>&nbsp;Toggle Code Editor</td>\n"
  4000. " </tr>\n"
  4001. " <tr height=\"20\">\n"
  4002. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4003. " <td>&nbsp;Toggle the axis</td>\n"
  4004. " </tr>\n"
  4005. " <tr height=\"20\">\n"
  4006. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4007. " <td>&nbsp;Open Preferences Window</td>\n"
  4008. " </tr>\n"
  4009. " <tr height=\"20\">\n"
  4010. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4011. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4012. " </tr>\n"
  4013. " <tr height=\"20\">\n"
  4014. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4015. " <td>&nbsp;Run a Script</td>\n"
  4016. " </tr>\n"
  4017. " <tr height=\"20\">\n"
  4018. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4019. " <td>&nbsp;Toggle the workspace</td>\n"
  4020. " </tr>\n"
  4021. " <tr height=\"20\">\n"
  4022. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4023. " <td>&nbsp;Skew on X axis</td>\n"
  4024. " </tr>\n"
  4025. " <tr height=\"20\">\n"
  4026. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4027. " <td>&nbsp;Skew on Y axis</td>\n"
  4028. " </tr>\n"
  4029. " <tr height=\"20\">\n"
  4030. " <td height=\"20\">&nbsp;</td>\n"
  4031. " <td>&nbsp;</td>\n"
  4032. " </tr>\n"
  4033. " <tr height=\"20\">\n"
  4034. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4035. " <td>&nbsp;Calculators Tool</td>\n"
  4036. " </tr>\n"
  4037. " <tr height=\"20\">\n"
  4038. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4039. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4040. " </tr>\n"
  4041. " <tr height=\"20\">\n"
  4042. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4043. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4044. " </tr>\n"
  4045. " <tr height=\"20\">\n"
  4046. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4047. " <td>&nbsp;Film PCB Tool</td>\n"
  4048. " </tr>\n"
  4049. " <tr height=\"20\">\n"
  4050. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4051. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4052. " </tr>\n"
  4053. " <tr height=\"20\">\n"
  4054. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4055. " <td>&nbsp;Paint Area Tool</td>\n"
  4056. " </tr>\n"
  4057. " <tr height=\"20\">\n"
  4058. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4059. " <td>&nbsp;PDF Import Tool</td>\n"
  4060. " </tr>\n"
  4061. " <tr height=\"20\">\n"
  4062. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4063. " <td>&nbsp;Transformations Tool</td>\n"
  4064. " </tr>\n"
  4065. " <tr height=\"20\">\n"
  4066. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4067. " <td>&nbsp;View File Source</td>\n"
  4068. " </tr>\n"
  4069. " <tr height=\"20\">\n"
  4070. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4071. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4072. " </tr>\n"
  4073. " <tr height=\"20\">\n"
  4074. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4075. " <td>&nbsp;Enable all Plots</td>\n"
  4076. " </tr>\n"
  4077. " <tr height=\"20\">\n"
  4078. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4079. " <td>&nbsp;Disable all Plots</td>\n"
  4080. " </tr>\n"
  4081. " <tr height=\"20\">\n"
  4082. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4083. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4084. " </tr>\n"
  4085. " <tr height=\"20\">\n"
  4086. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4087. " <td>&nbsp;Toggle Full Screen</td>\n"
  4088. " </tr>\n"
  4089. " <tr height=\"20\">\n"
  4090. " <td height=\"20\">&nbsp;</td>\n"
  4091. " <td>&nbsp;</td>\n"
  4092. " </tr>\n"
  4093. " <tr height=\"20\">\n"
  4094. " <td height=\"20\"><strong>F1</strong></td>\n"
  4095. " <td>&nbsp;Open Online Manual</td>\n"
  4096. " </tr>\n"
  4097. " <tr height=\"20\">\n"
  4098. " <td height=\"20\"><strong>F4</strong></td>\n"
  4099. " <td>&nbsp;Open Online Tutorials</td>\n"
  4100. " </tr>\n"
  4101. " <tr height=\"20\">\n"
  4102. " <td height=\"20\"><strong>Del</strong></td>\n"
  4103. " <td>&nbsp;Delete Object</td>\n"
  4104. " </tr>\n"
  4105. " <tr height=\"20\">\n"
  4106. " <td height=\"20\"><strong>Del</strong></td>\n"
  4107. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4108. " </tr>\n"
  4109. " <tr height=\"20\">\n"
  4110. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4111. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4112. "Side)</td>\n"
  4113. " </tr>\n"
  4114. " <tr height=\"20\">\n"
  4115. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4116. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4117. " </tr>\n"
  4118. " <tr height=\"20\">\n"
  4119. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4120. " <td>&nbsp;Deselects all objects</td>\n"
  4121. " </tr>\n"
  4122. " </tbody>\n"
  4123. " </table>\n"
  4124. " \n"
  4125. " "
  4126. msgstr ""
  4127. "<b>General Shortcut list</b><br>\n"
  4128. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4129. "\"width:283px\">\n"
  4130. " <tbody>\n"
  4131. " <tr height=\"20\">\n"
  4132. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4133. "td>\n"
  4134. " <td width=\"194\"><span style=\"color:"
  4135. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4136. " </tr>\n"
  4137. " <tr height=\"20\">\n"
  4138. " <td height=\"20\">&nbsp;</td>\n"
  4139. " <td>&nbsp;</td>\n"
  4140. " </tr>\n"
  4141. " <tr height=\"20\">\n"
  4142. " <td height=\"20\"><strong>1</strong></td>\n"
  4143. " <td>&nbsp;Switch to Project Tab</td>\n"
  4144. " </tr>\n"
  4145. " <tr height=\"20\">\n"
  4146. " <td height=\"20\"><strong>2</strong></td>\n"
  4147. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4148. " </tr>\n"
  4149. " <tr height=\"20\">\n"
  4150. " <td height=\"20\"><strong>3</strong></td>\n"
  4151. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4152. " </tr>\n"
  4153. " <tr height=\"20\">\n"
  4154. " <td height=\"20\">&nbsp;</td>\n"
  4155. " <td>&nbsp;</td>\n"
  4156. " </tr>\n"
  4157. " <tr height=\"20\">\n"
  4158. " <td height=\"20\"><strong>B</strong></td>\n"
  4159. " <td>&nbsp;New Gerber</td>\n"
  4160. " </tr>\n"
  4161. " <tr height=\"20\">\n"
  4162. " <td height=\"20\"><strong>E</strong></td>\n"
  4163. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4164. " </tr>\n"
  4165. " <tr height=\"20\">\n"
  4166. " <td height=\"20\"><strong>G</strong></td>\n"
  4167. " <td>&nbsp;Grid On/Off</td>\n"
  4168. " </tr>\n"
  4169. " <tr height=\"20\">\n"
  4170. " <td height=\"20\"><strong>J</strong></td>\n"
  4171. " <td>&nbsp;Jump to Coordinates</td>\n"
  4172. " </tr>\n"
  4173. " <tr height=\"20\">\n"
  4174. " <td height=\"20\"><strong>L</strong></td>\n"
  4175. " <td>&nbsp;New Excellon</td>\n"
  4176. " </tr>\n"
  4177. " <tr height=\"20\">\n"
  4178. " <td height=\"20\"><strong>M</strong></td>\n"
  4179. " <td>&nbsp;Move Obj</td>\n"
  4180. " </tr>\n"
  4181. " <tr height=\"20\">\n"
  4182. " <td height=\"20\"><strong>N</strong></td>\n"
  4183. " <td>&nbsp;New Geometry</td>\n"
  4184. " </tr>\n"
  4185. " <tr height=\"20\">\n"
  4186. " <td height=\"20\"><strong>O</strong></td>\n"
  4187. " <td>&nbsp;Set Origin</td>\n"
  4188. " </tr>\n"
  4189. " <tr height=\"20\">\n"
  4190. " <td height=\"20\"><strong>Q</strong></td>\n"
  4191. " <td>&nbsp;Change Units</td>\n"
  4192. " </tr>\n"
  4193. " <tr height=\"20\">\n"
  4194. " <td height=\"20\"><strong>P</strong></td>\n"
  4195. " <td>&nbsp;Open Properties Tool</td>\n"
  4196. " </tr>\n"
  4197. " <tr height=\"20\">\n"
  4198. " <td height=\"20\"><strong>R</strong></td>\n"
  4199. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4200. " </tr>\n"
  4201. " <tr height=\"20\">\n"
  4202. " <td height=\"20\"><strong>S</strong></td>\n"
  4203. " <td>&nbsp;Shell Toggle</td>\n"
  4204. " </tr>\n"
  4205. " <tr height=\"20\">\n"
  4206. " <td height=\"20\"><strong>T</strong></td>\n"
  4207. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4208. "or in Tools NCC or Tools Paint)</td>\n"
  4209. " </tr>\n"
  4210. " <tr height=\"20\">\n"
  4211. " <td height=\"20\"><strong>V</strong></td>\n"
  4212. " <td>&nbsp;Zoom Fit</td>\n"
  4213. " </tr>\n"
  4214. " <tr height=\"20\">\n"
  4215. " <td height=\"20\"><strong>X</strong></td>\n"
  4216. " <td>&nbsp;Flip on X_axis</td>\n"
  4217. " </tr>\n"
  4218. " <tr height=\"20\">\n"
  4219. " <td height=\"20\"><strong>Y</strong></td>\n"
  4220. " <td>&nbsp;Flip on Y_axis</td>\n"
  4221. " </tr>\n"
  4222. " <tr height=\"20\">\n"
  4223. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4224. " <td>&nbsp;Zoom Out</td>\n"
  4225. " </tr>\n"
  4226. " <tr height=\"20\">\n"
  4227. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4228. " <td>&nbsp;Zoom In</td>\n"
  4229. " </tr>\n"
  4230. " <tr height=\"20\">\n"
  4231. " <td height=\"20\">&nbsp;</td>\n"
  4232. " <td>&nbsp;</td>\n"
  4233. " </tr>\n"
  4234. " <tr height=\"20\">\n"
  4235. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4236. " <td>&nbsp;Select All</td>\n"
  4237. " </tr>\n"
  4238. " <tr height=\"20\">\n"
  4239. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4240. " <td>&nbsp;Copy Obj</td>\n"
  4241. " </tr>\n"
  4242. " <tr height=\"20\">\n"
  4243. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4244. " <td>&nbsp;Open Excellon File</td>\n"
  4245. " </tr>\n"
  4246. " <tr height=\"20\">\n"
  4247. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4248. " <td>&nbsp;Open Gerber File</td>\n"
  4249. " </tr>\n"
  4250. " <tr height=\"20\">\n"
  4251. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4252. " <td>&nbsp;New Project</td>\n"
  4253. " </tr>\n"
  4254. " <tr height=\"20\">\n"
  4255. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4256. " <td>&nbsp;Measurement Tool</td>\n"
  4257. " </tr>\n"
  4258. " <tr height=\"20\">\n"
  4259. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4260. " <td>&nbsp;Open Project</td>\n"
  4261. " </tr>\n"
  4262. " <tr height=\"20\">\n"
  4263. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4264. " <td>&nbsp;Save Project As</td>\n"
  4265. " </tr>\n"
  4266. " <tr height=\"20\">\n"
  4267. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4268. " <td>&nbsp;Toggle Plot Area</td>\n"
  4269. " </tr>\n"
  4270. " <tr height=\"20\">\n"
  4271. " <td height=\"20\">&nbsp;</td>\n"
  4272. " <td>&nbsp;</td>\n"
  4273. " </tr>\n"
  4274. " <tr height=\"20\">\n"
  4275. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4276. " <td>&nbsp;Copy Obj_Name</td>\n"
  4277. " </tr>\n"
  4278. " <tr height=\"20\">\n"
  4279. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4280. " <td>&nbsp;Toggle Code Editor</td>\n"
  4281. " </tr>\n"
  4282. " <tr height=\"20\">\n"
  4283. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4284. " <td>&nbsp;Toggle the axis</td>\n"
  4285. " </tr>\n"
  4286. " <tr height=\"20\">\n"
  4287. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4288. " <td>&nbsp;Open Preferences Window</td>\n"
  4289. " </tr>\n"
  4290. " <tr height=\"20\">\n"
  4291. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4292. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4293. " </tr>\n"
  4294. " <tr height=\"20\">\n"
  4295. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4296. " <td>&nbsp;Run a Script</td>\n"
  4297. " </tr>\n"
  4298. " <tr height=\"20\">\n"
  4299. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4300. " <td>&nbsp;Toggle the workspace</td>\n"
  4301. " </tr>\n"
  4302. " <tr height=\"20\">\n"
  4303. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4304. " <td>&nbsp;Skew on X axis</td>\n"
  4305. " </tr>\n"
  4306. " <tr height=\"20\">\n"
  4307. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4308. " <td>&nbsp;Skew on Y axis</td>\n"
  4309. " </tr>\n"
  4310. " <tr height=\"20\">\n"
  4311. " <td height=\"20\">&nbsp;</td>\n"
  4312. " <td>&nbsp;</td>\n"
  4313. " </tr>\n"
  4314. " <tr height=\"20\">\n"
  4315. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4316. " <td>&nbsp;Calculators Tool</td>\n"
  4317. " </tr>\n"
  4318. " <tr height=\"20\">\n"
  4319. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4320. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4321. " </tr>\n"
  4322. " <tr height=\"20\">\n"
  4323. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4324. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4325. " </tr>\n"
  4326. " <tr height=\"20\">\n"
  4327. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4328. " <td>&nbsp;Film PCB Tool</td>\n"
  4329. " </tr>\n"
  4330. " <tr height=\"20\">\n"
  4331. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4332. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4333. " </tr>\n"
  4334. " <tr height=\"20\">\n"
  4335. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4336. " <td>&nbsp;Paint Area Tool</td>\n"
  4337. " </tr>\n"
  4338. " <tr height=\"20\">\n"
  4339. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4340. " <td>&nbsp;PDF Import Tool</td>\n"
  4341. " </tr>\n"
  4342. " <tr height=\"20\">\n"
  4343. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4344. " <td>&nbsp;Transformations Tool</td>\n"
  4345. " </tr>\n"
  4346. " <tr height=\"20\">\n"
  4347. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4348. " <td>&nbsp;View File Source</td>\n"
  4349. " </tr>\n"
  4350. " <tr height=\"20\">\n"
  4351. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4352. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4353. " </tr>\n"
  4354. " <tr height=\"20\">\n"
  4355. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4356. " <td>&nbsp;Enable all Plots</td>\n"
  4357. " </tr>\n"
  4358. " <tr height=\"20\">\n"
  4359. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4360. " <td>&nbsp;Disable all Plots</td>\n"
  4361. " </tr>\n"
  4362. " <tr height=\"20\">\n"
  4363. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4364. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4365. " </tr>\n"
  4366. " <tr height=\"20\">\n"
  4367. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4368. " <td>&nbsp;Toggle Full Screen</td>\n"
  4369. " </tr>\n"
  4370. " <tr height=\"20\">\n"
  4371. " <td height=\"20\">&nbsp;</td>\n"
  4372. " <td>&nbsp;</td>\n"
  4373. " </tr>\n"
  4374. " <tr height=\"20\">\n"
  4375. " <td height=\"20\"><strong>F1</strong></td>\n"
  4376. " <td>&nbsp;Open Online Manual</td>\n"
  4377. " </tr>\n"
  4378. " <tr height=\"20\">\n"
  4379. " <td height=\"20\"><strong>F4</strong></td>\n"
  4380. " <td>&nbsp;Open Online Tutorials</td>\n"
  4381. " </tr>\n"
  4382. " <tr height=\"20\">\n"
  4383. " <td height=\"20\"><strong>Del</strong></td>\n"
  4384. " <td>&nbsp;Delete Object</td>\n"
  4385. " </tr>\n"
  4386. " <tr height=\"20\">\n"
  4387. " <td height=\"20\"><strong>Del</strong></td>\n"
  4388. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4389. " </tr>\n"
  4390. " <tr height=\"20\">\n"
  4391. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4392. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4393. "Side)</td>\n"
  4394. " </tr>\n"
  4395. " <tr height=\"20\">\n"
  4396. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4397. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4398. " </tr>\n"
  4399. " <tr height=\"20\">\n"
  4400. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4401. " <td>&nbsp;Deselects all objects</td>\n"
  4402. " </tr>\n"
  4403. " </tbody>\n"
  4404. " </table>\n"
  4405. " \n"
  4406. " "
  4407. #: flatcamGUI/FlatCAMGUI.py:1264
  4408. msgid ""
  4409. "<b>Editor Shortcut list</b><br>\n"
  4410. " <br>\n"
  4411. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4412. "strong><br>\n"
  4413. " \n"
  4414. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4415. "\"width:283px\">\n"
  4416. " <tbody>\n"
  4417. " <tr height=\"20\">\n"
  4418. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4419. "td>\n"
  4420. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4421. " </tr>\n"
  4422. " <tr height=\"20\">\n"
  4423. " <td height=\"20\"><strong>B</strong></td>\n"
  4424. " <td>&nbsp;Buffer Tool</td>\n"
  4425. " </tr>\n"
  4426. " <tr height=\"20\">\n"
  4427. " <td height=\"20\"><strong>C</strong></td>\n"
  4428. " <td>&nbsp;Copy Geo Item</td>\n"
  4429. " </tr>\n"
  4430. " <tr height=\"20\">\n"
  4431. " <td height=\"20\"><strong>D</strong></td>\n"
  4432. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4433. "direction: CW or CCW</td>\n"
  4434. " </tr>\n"
  4435. " <tr height=\"20\">\n"
  4436. " <td height=\"20\"><strong>E</strong></td>\n"
  4437. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4438. " </tr>\n"
  4439. " <tr height=\"20\">\n"
  4440. " <td height=\"20\"><strong>I</strong></td>\n"
  4441. " <td>&nbsp;Paint Tool</td>\n"
  4442. " </tr>\n"
  4443. " <tr height=\"20\">\n"
  4444. " <td height=\"20\"><strong>J</strong></td>\n"
  4445. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4446. " </tr>\n"
  4447. " <tr height=\"20\">\n"
  4448. " <td height=\"20\"><strong>K</strong></td>\n"
  4449. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4450. " </tr>\n"
  4451. " <tr height=\"20\">\n"
  4452. " <td height=\"20\"><strong>M</strong></td>\n"
  4453. " <td>&nbsp;Move Geo Item</td>\n"
  4454. " </tr>\n"
  4455. " <tr height=\"20\">\n"
  4456. " <td height=\"20\"><strong>M</strong></td>\n"
  4457. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4458. "modes</td>\n"
  4459. " </tr>\n"
  4460. " <tr height=\"20\">\n"
  4461. " <td height=\"20\"><strong>N</strong></td>\n"
  4462. " <td>&nbsp;Draw a Polygon</td>\n"
  4463. " </tr>\n"
  4464. " <tr height=\"20\">\n"
  4465. " <td height=\"20\"><strong>O</strong></td>\n"
  4466. " <td>&nbsp;Draw a Circle</td>\n"
  4467. " </tr>\n"
  4468. " <tr height=\"20\">\n"
  4469. " <td height=\"20\"><strong>P</strong></td>\n"
  4470. " <td>&nbsp;Draw a Path</td>\n"
  4471. " </tr>\n"
  4472. " <tr height=\"20\">\n"
  4473. " <td height=\"20\"><strong>R</strong></td>\n"
  4474. " <td>&nbsp;Draw Rectangle</td>\n"
  4475. " </tr>\n"
  4476. " <tr height=\"20\">\n"
  4477. " <td height=\"20\"><strong>S</strong></td>\n"
  4478. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4479. " </tr>\n"
  4480. " <tr height=\"20\">\n"
  4481. " <td height=\"20\"><strong>T</strong></td>\n"
  4482. " <td>&nbsp;Add Text Tool</td>\n"
  4483. " </tr>\n"
  4484. " <tr height=\"20\">\n"
  4485. " <td height=\"20\"><strong>U</strong></td>\n"
  4486. " <td>&nbsp;Polygon Union Tool</td>\n"
  4487. " </tr>\n"
  4488. " <tr height=\"20\">\n"
  4489. " <td height=\"20\"><strong>X</strong></td>\n"
  4490. " <td>&nbsp;Flip shape on X axis</td>\n"
  4491. " </tr>\n"
  4492. " <tr height=\"20\">\n"
  4493. " <td height=\"20\"><strong>Y</strong></td>\n"
  4494. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4495. " </tr>\n"
  4496. " <tr height=\"20\">\n"
  4497. " <td height=\"20\">&nbsp;</td>\n"
  4498. " <td>&nbsp;</td>\n"
  4499. " </tr>\n"
  4500. " <tr height=\"20\">\n"
  4501. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4502. " <td>&nbsp;Skew shape on X axis</td>\n"
  4503. " </tr>\n"
  4504. " <tr height=\"20\">\n"
  4505. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4506. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4507. " </tr>\n"
  4508. " <tr height=\"20\">\n"
  4509. " <td height=\"20\">&nbsp;</td>\n"
  4510. " <td>&nbsp;</td>\n"
  4511. " </tr>\n"
  4512. " <tr height=\"20\">\n"
  4513. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4514. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4515. " </tr>\n"
  4516. " <tr height=\"20\">\n"
  4517. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4518. " <td>&nbsp;Offset shape on X axis</td>\n"
  4519. " </tr>\n"
  4520. " <tr height=\"20\">\n"
  4521. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4522. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4523. " </tr>\n"
  4524. " <tr height=\"20\">\n"
  4525. " <td height=\"20\">&nbsp;</td>\n"
  4526. " <td>&nbsp;</td>\n"
  4527. " </tr>\n"
  4528. " <tr height=\"20\">\n"
  4529. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4530. " <td>&nbsp;Measurement Tool</td>\n"
  4531. " </tr>\n"
  4532. " <tr height=\"20\">\n"
  4533. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4534. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4535. " </tr>\n"
  4536. " <tr height=\"20\">\n"
  4537. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4538. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4539. " </tr>\n"
  4540. " <tr height=\"20\">\n"
  4541. " <td height=\"20\">&nbsp;</td>\n"
  4542. " <td>&nbsp;</td>\n"
  4543. " </tr>\n"
  4544. " <tr height=\"20\">\n"
  4545. " <td height=\"20\"><strong>Space</strong></td>\n"
  4546. " <td>&nbsp;Rotate Geometry</td>\n"
  4547. " </tr>\n"
  4548. " <tr height=\"20\">\n"
  4549. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4550. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4551. " </tr>\n"
  4552. " <tr height=\"20\">\n"
  4553. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4554. " <td>&nbsp;Abort and return to Select</td>\n"
  4555. " </tr>\n"
  4556. " <tr height=\"20\">\n"
  4557. " <td height=\"20\"><strong>Del</strong></td>\n"
  4558. " <td>&nbsp;Delete Shape</td>\n"
  4559. " </tr>\n"
  4560. " </tbody>\n"
  4561. " </table>\n"
  4562. " <br>\n"
  4563. " <br>\n"
  4564. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4565. "strong><br>\n"
  4566. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4567. "\"width:283px\">\n"
  4568. " <tbody>\n"
  4569. " <tr height=\"20\">\n"
  4570. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4571. "td>\n"
  4572. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4573. " </tr>\n"
  4574. " <tr height=\"20\">\n"
  4575. " <td height=\"20\"><strong>C</strong></td>\n"
  4576. " <td>&nbsp;Copy Drill(s)</td>\n"
  4577. " </tr>\n"
  4578. " <tr height=\"20\">\n"
  4579. " <td height=\"20\"><strong>D</strong></td>\n"
  4580. " <td>&nbsp;Add Drill</td>\n"
  4581. " </tr>\n"
  4582. " <tr height=\"20\">\n"
  4583. " <td height=\"20\"><strong>J</strong></td>\n"
  4584. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4585. " </tr>\n"
  4586. " <tr height=\"20\">\n"
  4587. " <td height=\"20\"><strong>M</strong></td>\n"
  4588. " <td>&nbsp;Move Drill(s)</td>\n"
  4589. " </tr>\n"
  4590. " <tr height=\"20\">\n"
  4591. " <td height=\"20\"><strong>R</strong></td>\n"
  4592. " <td>&nbsp;Resize Drill(s)</td>\n"
  4593. " </tr>\n"
  4594. " <tr height=\"20\">\n"
  4595. " <td height=\"20\"><strong>T</strong></td>\n"
  4596. " <td>&nbsp;Add a new Tool</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>Del</strong></td>\n"
  4604. " <td>&nbsp;Delete Drill(s)</td>\n"
  4605. " </tr>\n"
  4606. " <tr height=\"20\">\n"
  4607. " <td height=\"20\"><strong>Del</strong></td>\n"
  4608. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4609. " </tr>\n"
  4610. " <tr height=\"20\">\n"
  4611. " <td height=\"20\">&nbsp;</td>\n"
  4612. " <td>&nbsp;</td>\n"
  4613. " </tr>\n"
  4614. " <tr height=\"20\">\n"
  4615. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4616. " <td>&nbsp;Abort and return to Select</td>\n"
  4617. " </tr>\n"
  4618. " <tr height=\"20\">\n"
  4619. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4620. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4621. " </tr>\n"
  4622. " </tbody>\n"
  4623. " </table>\n"
  4624. " <br>\n"
  4625. " <br>\n"
  4626. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4627. "strong><br>\n"
  4628. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4629. "\"width:283px\">\n"
  4630. " <tbody>\n"
  4631. " <tr height=\"20\">\n"
  4632. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4633. "td>\n"
  4634. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4635. " </tr>\n"
  4636. " <tr height=\"20\">\n"
  4637. " <td height=\"20\"><strong>B</strong></td>\n"
  4638. " <td>&nbsp;Buffer</td>\n"
  4639. " </tr>\n"
  4640. " <tr height=\"20\">\n"
  4641. " <td height=\"20\"><strong>C</strong></td>\n"
  4642. " <td>&nbsp;Copy</td>\n"
  4643. " </tr>\n"
  4644. " <tr height=\"20\">\n"
  4645. " <td height=\"20\"><strong>D</strong></td>\n"
  4646. " <td>&nbsp;Add Disc</td>\n"
  4647. " </tr>\n"
  4648. " <tr height=\"20\">\n"
  4649. " <td height=\"20\"><strong>E</strong></td>\n"
  4650. " <td>&nbsp;Add SemiDisc</td>\n"
  4651. " </tr>\n"
  4652. " <tr height=\"20\">\n"
  4653. " <td height=\"20\"><strong>J</strong></td>\n"
  4654. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4655. " </tr>\n"
  4656. " <tr height=\"20\">\n"
  4657. " <td height=\"20\"><strong>M</strong></td>\n"
  4658. " <td>&nbsp;Move</td>\n"
  4659. " </tr>\n"
  4660. " <tr height=\"20\">\n"
  4661. " <td height=\"20\"><strong>N</strong></td>\n"
  4662. " <td>&nbsp;Add Region</td>\n"
  4663. " </tr>\n"
  4664. " <tr height=\"20\">\n"
  4665. " <td height=\"20\"><strong>P</strong></td>\n"
  4666. " <td>&nbsp;Add Pad</td>\n"
  4667. " </tr>\n"
  4668. " <tr height=\"20\">\n"
  4669. " <td height=\"20\"><strong>R</strong></td>\n"
  4670. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4671. "REVERSE the bend modes</td>\n"
  4672. " </tr>\n"
  4673. " <tr height=\"20\">\n"
  4674. " <td height=\"20\"><strong>S</strong></td>\n"
  4675. " <td>&nbsp;Scale</td>\n"
  4676. " </tr>\n"
  4677. " <tr height=\"20\">\n"
  4678. " <td height=\"20\"><strong>T</strong></td>\n"
  4679. " <td>&nbsp;Add Track</td>\n"
  4680. " </tr>\n"
  4681. " <tr height=\"20\">\n"
  4682. " <td height=\"20\"><strong>T</strong></td>\n"
  4683. " <td>&nbsp;Within Track & Region Tools will cycle "
  4684. "FORWARD the bend modes</td>\n"
  4685. " </tr>\n"
  4686. " <tr height=\"20\">\n"
  4687. " <td height=\"20\">&nbsp;</td>\n"
  4688. " <td>&nbsp;</td>\n"
  4689. " </tr>\n"
  4690. " <tr height=\"20\">\n"
  4691. " <td height=\"20\"><strong>Del</strong></td>\n"
  4692. " <td>&nbsp;Delete</td>\n"
  4693. " </tr>\n"
  4694. " <tr height=\"20\">\n"
  4695. " <td height=\"20\"><strong>Del</strong></td>\n"
  4696. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4697. " </tr>\n"
  4698. " <tr height=\"20\">\n"
  4699. " <td height=\"20\">&nbsp;</td>\n"
  4700. " <td>&nbsp;</td>\n"
  4701. " </tr>\n"
  4702. " <tr height=\"20\">\n"
  4703. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4704. " <td>&nbsp;Abort and return to Select</td>\n"
  4705. " </tr>\n"
  4706. " <tr height=\"20\">\n"
  4707. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4708. " <td>&nbsp;Eraser Tool</td>\n"
  4709. " </tr>\n"
  4710. " <tr height=\"20\">\n"
  4711. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4712. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4713. " </tr>\n"
  4714. " <tr height=\"20\">\n"
  4715. " <td height=\"20\">&nbsp;</td>\n"
  4716. " <td>&nbsp;</td>\n"
  4717. " </tr>\n"
  4718. " <tr height=\"20\">\n"
  4719. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4720. " <td>&nbsp;Mark Area Tool</td>\n"
  4721. " </tr>\n"
  4722. " <tr height=\"20\">\n"
  4723. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4724. " <td>&nbsp;Poligonize Tool</td>\n"
  4725. " </tr>\n"
  4726. " <tr height=\"20\">\n"
  4727. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4728. " <td>&nbsp;Transformation Tool</td>\n"
  4729. " </tr>\n"
  4730. " </tbody>\n"
  4731. " </table>\n"
  4732. " "
  4733. msgstr ""
  4734. "<b>Editor Shortcut list</b><br>\n"
  4735. " <br>\n"
  4736. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4737. "strong><br>\n"
  4738. " \n"
  4739. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4740. "\"width:283px\">\n"
  4741. " <tbody>\n"
  4742. " <tr height=\"20\">\n"
  4743. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4744. "td>\n"
  4745. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4746. " </tr>\n"
  4747. " <tr height=\"20\">\n"
  4748. " <td height=\"20\"><strong>B</strong></td>\n"
  4749. " <td>&nbsp;Buffer Tool</td>\n"
  4750. " </tr>\n"
  4751. " <tr height=\"20\">\n"
  4752. " <td height=\"20\"><strong>C</strong></td>\n"
  4753. " <td>&nbsp;Copy Geo Item</td>\n"
  4754. " </tr>\n"
  4755. " <tr height=\"20\">\n"
  4756. " <td height=\"20\"><strong>D</strong></td>\n"
  4757. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4758. "direction: CW or CCW</td>\n"
  4759. " </tr>\n"
  4760. " <tr height=\"20\">\n"
  4761. " <td height=\"20\"><strong>E</strong></td>\n"
  4762. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4763. " </tr>\n"
  4764. " <tr height=\"20\">\n"
  4765. " <td height=\"20\"><strong>I</strong></td>\n"
  4766. " <td>&nbsp;Paint Tool</td>\n"
  4767. " </tr>\n"
  4768. " <tr height=\"20\">\n"
  4769. " <td height=\"20\"><strong>J</strong></td>\n"
  4770. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4771. " </tr>\n"
  4772. " <tr height=\"20\">\n"
  4773. " <td height=\"20\"><strong>K</strong></td>\n"
  4774. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4775. " </tr>\n"
  4776. " <tr height=\"20\">\n"
  4777. " <td height=\"20\"><strong>M</strong></td>\n"
  4778. " <td>&nbsp;Move Geo Item</td>\n"
  4779. " </tr>\n"
  4780. " <tr height=\"20\">\n"
  4781. " <td height=\"20\"><strong>M</strong></td>\n"
  4782. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4783. "modes</td>\n"
  4784. " </tr>\n"
  4785. " <tr height=\"20\">\n"
  4786. " <td height=\"20\"><strong>N</strong></td>\n"
  4787. " <td>&nbsp;Draw a Polygon</td>\n"
  4788. " </tr>\n"
  4789. " <tr height=\"20\">\n"
  4790. " <td height=\"20\"><strong>O</strong></td>\n"
  4791. " <td>&nbsp;Draw a Circle</td>\n"
  4792. " </tr>\n"
  4793. " <tr height=\"20\">\n"
  4794. " <td height=\"20\"><strong>P</strong></td>\n"
  4795. " <td>&nbsp;Draw a Path</td>\n"
  4796. " </tr>\n"
  4797. " <tr height=\"20\">\n"
  4798. " <td height=\"20\"><strong>R</strong></td>\n"
  4799. " <td>&nbsp;Draw Rectangle</td>\n"
  4800. " </tr>\n"
  4801. " <tr height=\"20\">\n"
  4802. " <td height=\"20\"><strong>S</strong></td>\n"
  4803. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4804. " </tr>\n"
  4805. " <tr height=\"20\">\n"
  4806. " <td height=\"20\"><strong>T</strong></td>\n"
  4807. " <td>&nbsp;Add Text Tool</td>\n"
  4808. " </tr>\n"
  4809. " <tr height=\"20\">\n"
  4810. " <td height=\"20\"><strong>U</strong></td>\n"
  4811. " <td>&nbsp;Polygon Union Tool</td>\n"
  4812. " </tr>\n"
  4813. " <tr height=\"20\">\n"
  4814. " <td height=\"20\"><strong>X</strong></td>\n"
  4815. " <td>&nbsp;Flip shape on X axis</td>\n"
  4816. " </tr>\n"
  4817. " <tr height=\"20\">\n"
  4818. " <td height=\"20\"><strong>Y</strong></td>\n"
  4819. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4820. " </tr>\n"
  4821. " <tr height=\"20\">\n"
  4822. " <td height=\"20\">&nbsp;</td>\n"
  4823. " <td>&nbsp;</td>\n"
  4824. " </tr>\n"
  4825. " <tr height=\"20\">\n"
  4826. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4827. " <td>&nbsp;Skew shape on X axis</td>\n"
  4828. " </tr>\n"
  4829. " <tr height=\"20\">\n"
  4830. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4831. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4832. " </tr>\n"
  4833. " <tr height=\"20\">\n"
  4834. " <td height=\"20\">&nbsp;</td>\n"
  4835. " <td>&nbsp;</td>\n"
  4836. " </tr>\n"
  4837. " <tr height=\"20\">\n"
  4838. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4839. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4840. " </tr>\n"
  4841. " <tr height=\"20\">\n"
  4842. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4843. " <td>&nbsp;Offset shape on X axis</td>\n"
  4844. " </tr>\n"
  4845. " <tr height=\"20\">\n"
  4846. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4847. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4848. " </tr>\n"
  4849. " <tr height=\"20\">\n"
  4850. " <td height=\"20\">&nbsp;</td>\n"
  4851. " <td>&nbsp;</td>\n"
  4852. " </tr>\n"
  4853. " <tr height=\"20\">\n"
  4854. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4855. " <td>&nbsp;Measurement Tool</td>\n"
  4856. " </tr>\n"
  4857. " <tr height=\"20\">\n"
  4858. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4859. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4860. " </tr>\n"
  4861. " <tr height=\"20\">\n"
  4862. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4863. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4864. " </tr>\n"
  4865. " <tr height=\"20\">\n"
  4866. " <td height=\"20\">&nbsp;</td>\n"
  4867. " <td>&nbsp;</td>\n"
  4868. " </tr>\n"
  4869. " <tr height=\"20\">\n"
  4870. " <td height=\"20\"><strong>Space</strong></td>\n"
  4871. " <td>&nbsp;Rotate Geometry</td>\n"
  4872. " </tr>\n"
  4873. " <tr height=\"20\">\n"
  4874. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4875. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4876. " </tr>\n"
  4877. " <tr height=\"20\">\n"
  4878. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4879. " <td>&nbsp;Abort and return to Select</td>\n"
  4880. " </tr>\n"
  4881. " <tr height=\"20\">\n"
  4882. " <td height=\"20\"><strong>Del</strong></td>\n"
  4883. " <td>&nbsp;Delete Shape</td>\n"
  4884. " </tr>\n"
  4885. " </tbody>\n"
  4886. " </table>\n"
  4887. " <br>\n"
  4888. " <br>\n"
  4889. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4890. "strong><br>\n"
  4891. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4892. "\"width:283px\">\n"
  4893. " <tbody>\n"
  4894. " <tr height=\"20\">\n"
  4895. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4896. "td>\n"
  4897. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4898. " </tr>\n"
  4899. " <tr height=\"20\">\n"
  4900. " <td height=\"20\"><strong>C</strong></td>\n"
  4901. " <td>&nbsp;Copy Drill(s)</td>\n"
  4902. " </tr>\n"
  4903. " <tr height=\"20\">\n"
  4904. " <td height=\"20\"><strong>D</strong></td>\n"
  4905. " <td>&nbsp;Add Drill</td>\n"
  4906. " </tr>\n"
  4907. " <tr height=\"20\">\n"
  4908. " <td height=\"20\"><strong>J</strong></td>\n"
  4909. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4910. " </tr>\n"
  4911. " <tr height=\"20\">\n"
  4912. " <td height=\"20\"><strong>M</strong></td>\n"
  4913. " <td>&nbsp;Move Drill(s)</td>\n"
  4914. " </tr>\n"
  4915. " <tr height=\"20\">\n"
  4916. " <td height=\"20\"><strong>R</strong></td>\n"
  4917. " <td>&nbsp;Resize Drill(s)</td>\n"
  4918. " </tr>\n"
  4919. " <tr height=\"20\">\n"
  4920. " <td height=\"20\"><strong>T</strong></td>\n"
  4921. " <td>&nbsp;Add a new Tool</td>\n"
  4922. " </tr>\n"
  4923. " <tr height=\"20\">\n"
  4924. " <td height=\"20\">&nbsp;</td>\n"
  4925. " <td>&nbsp;</td>\n"
  4926. " </tr>\n"
  4927. " <tr height=\"20\">\n"
  4928. " <td height=\"20\"><strong>Del</strong></td>\n"
  4929. " <td>&nbsp;Delete Drill(s)</td>\n"
  4930. " </tr>\n"
  4931. " <tr height=\"20\">\n"
  4932. " <td height=\"20\"><strong>Del</strong></td>\n"
  4933. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4934. " </tr>\n"
  4935. " <tr height=\"20\">\n"
  4936. " <td height=\"20\">&nbsp;</td>\n"
  4937. " <td>&nbsp;</td>\n"
  4938. " </tr>\n"
  4939. " <tr height=\"20\">\n"
  4940. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4941. " <td>&nbsp;Abort and return to Select</td>\n"
  4942. " </tr>\n"
  4943. " <tr height=\"20\">\n"
  4944. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4945. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4946. " </tr>\n"
  4947. " </tbody>\n"
  4948. " </table>\n"
  4949. " <br>\n"
  4950. " <br>\n"
  4951. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4952. "strong><br>\n"
  4953. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4954. "\"width:283px\">\n"
  4955. " <tbody>\n"
  4956. " <tr height=\"20\">\n"
  4957. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4958. "td>\n"
  4959. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4960. " </tr>\n"
  4961. " <tr height=\"20\">\n"
  4962. " <td height=\"20\"><strong>B</strong></td>\n"
  4963. " <td>&nbsp;Buffer</td>\n"
  4964. " </tr>\n"
  4965. " <tr height=\"20\">\n"
  4966. " <td height=\"20\"><strong>C</strong></td>\n"
  4967. " <td>&nbsp;Copy</td>\n"
  4968. " </tr>\n"
  4969. " <tr height=\"20\">\n"
  4970. " <td height=\"20\"><strong>D</strong></td>\n"
  4971. " <td>&nbsp;Add Disc</td>\n"
  4972. " </tr>\n"
  4973. " <tr height=\"20\">\n"
  4974. " <td height=\"20\"><strong>E</strong></td>\n"
  4975. " <td>&nbsp;Add SemiDisc</td>\n"
  4976. " </tr>\n"
  4977. " <tr height=\"20\">\n"
  4978. " <td height=\"20\"><strong>J</strong></td>\n"
  4979. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4980. " </tr>\n"
  4981. " <tr height=\"20\">\n"
  4982. " <td height=\"20\"><strong>M</strong></td>\n"
  4983. " <td>&nbsp;Move</td>\n"
  4984. " </tr>\n"
  4985. " <tr height=\"20\">\n"
  4986. " <td height=\"20\"><strong>N</strong></td>\n"
  4987. " <td>&nbsp;Add Region</td>\n"
  4988. " </tr>\n"
  4989. " <tr height=\"20\">\n"
  4990. " <td height=\"20\"><strong>P</strong></td>\n"
  4991. " <td>&nbsp;Add Pad</td>\n"
  4992. " </tr>\n"
  4993. " <tr height=\"20\">\n"
  4994. " <td height=\"20\"><strong>R</strong></td>\n"
  4995. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4996. "REVERSE the bend modes</td>\n"
  4997. " </tr>\n"
  4998. " <tr height=\"20\">\n"
  4999. " <td height=\"20\"><strong>S</strong></td>\n"
  5000. " <td>&nbsp;Scale</td>\n"
  5001. " </tr>\n"
  5002. " <tr height=\"20\">\n"
  5003. " <td height=\"20\"><strong>T</strong></td>\n"
  5004. " <td>&nbsp;Add Track</td>\n"
  5005. " </tr>\n"
  5006. " <tr height=\"20\">\n"
  5007. " <td height=\"20\"><strong>T</strong></td>\n"
  5008. " <td>&nbsp;Within Track & Region Tools will cycle "
  5009. "FORWARD the bend modes</td>\n"
  5010. " </tr>\n"
  5011. " <tr height=\"20\">\n"
  5012. " <td height=\"20\">&nbsp;</td>\n"
  5013. " <td>&nbsp;</td>\n"
  5014. " </tr>\n"
  5015. " <tr height=\"20\">\n"
  5016. " <td height=\"20\"><strong>Del</strong></td>\n"
  5017. " <td>&nbsp;Delete</td>\n"
  5018. " </tr>\n"
  5019. " <tr height=\"20\">\n"
  5020. " <td height=\"20\"><strong>Del</strong></td>\n"
  5021. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  5022. " </tr>\n"
  5023. " <tr height=\"20\">\n"
  5024. " <td height=\"20\">&nbsp;</td>\n"
  5025. " <td>&nbsp;</td>\n"
  5026. " </tr>\n"
  5027. " <tr height=\"20\">\n"
  5028. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5029. " <td>&nbsp;Abort and return to Select</td>\n"
  5030. " </tr>\n"
  5031. " <tr height=\"20\">\n"
  5032. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5033. " <td>&nbsp;Eraser Tool</td>\n"
  5034. " </tr>\n"
  5035. " <tr height=\"20\">\n"
  5036. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5037. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5038. " </tr>\n"
  5039. " <tr height=\"20\">\n"
  5040. " <td height=\"20\">&nbsp;</td>\n"
  5041. " <td>&nbsp;</td>\n"
  5042. " </tr>\n"
  5043. " <tr height=\"20\">\n"
  5044. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5045. " <td>&nbsp;Mark Area Tool</td>\n"
  5046. " </tr>\n"
  5047. " <tr height=\"20\">\n"
  5048. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5049. " <td>&nbsp;Poligonize Tool</td>\n"
  5050. " </tr>\n"
  5051. " <tr height=\"20\">\n"
  5052. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5053. " <td>&nbsp;Transformation Tool</td>\n"
  5054. " </tr>\n"
  5055. " </tbody>\n"
  5056. " </table>\n"
  5057. " "
  5058. #: flatcamGUI/FlatCAMGUI.py:1589
  5059. msgid "Toggle Panel"
  5060. msgstr "Toggle Panel"
  5061. #: flatcamGUI/FlatCAMGUI.py:1592
  5062. msgid "New"
  5063. msgstr "New"
  5064. #: flatcamGUI/FlatCAMGUI.py:1593
  5065. msgid "Geometry"
  5066. msgstr "Geometry"
  5067. #: flatcamGUI/FlatCAMGUI.py:1595
  5068. msgid "Excellon"
  5069. msgstr "Excellon"
  5070. #: flatcamGUI/FlatCAMGUI.py:1600
  5071. msgid "Grids"
  5072. msgstr "Grids"
  5073. #: flatcamGUI/FlatCAMGUI.py:1602
  5074. msgid "View"
  5075. msgstr "View"
  5076. #: flatcamGUI/FlatCAMGUI.py:1604
  5077. msgid "Clear Plot"
  5078. msgstr "Clear Plot"
  5079. #: flatcamGUI/FlatCAMGUI.py:1605
  5080. msgid "Replot"
  5081. msgstr "Replot"
  5082. #: flatcamGUI/FlatCAMGUI.py:1608
  5083. msgid "Geo Editor"
  5084. msgstr "Geo Editor"
  5085. #: flatcamGUI/FlatCAMGUI.py:1609
  5086. msgid "Line"
  5087. msgstr "Line"
  5088. #: flatcamGUI/FlatCAMGUI.py:1610
  5089. msgid "Rectangle"
  5090. msgstr "Rectangle"
  5091. #: flatcamGUI/FlatCAMGUI.py:1611 flatcamGUI/FlatCAMGUI.py:5551
  5092. #: flatcamGUI/ObjectUI.py:1371
  5093. msgid "Cut"
  5094. msgstr "Cut"
  5095. #: flatcamGUI/FlatCAMGUI.py:1616
  5096. msgid "Pad"
  5097. msgstr "Pad"
  5098. #: flatcamGUI/FlatCAMGUI.py:1617
  5099. msgid "Pad Array"
  5100. msgstr "Pad Array"
  5101. #: flatcamGUI/FlatCAMGUI.py:1618
  5102. msgid "Track"
  5103. msgstr "Track"
  5104. #: flatcamGUI/FlatCAMGUI.py:1619
  5105. msgid "Region"
  5106. msgstr "Region"
  5107. #: flatcamGUI/FlatCAMGUI.py:1621
  5108. msgid "Exc Editor"
  5109. msgstr "Exc Editor"
  5110. #: flatcamGUI/FlatCAMGUI.py:1622
  5111. msgid "Add Drill"
  5112. msgstr "Add Drill"
  5113. #: flatcamGUI/FlatCAMGUI.py:1653
  5114. msgid "Print Preview"
  5115. msgstr "Print Preview"
  5116. #: flatcamGUI/FlatCAMGUI.py:1654
  5117. msgid "Print Code"
  5118. msgstr "Print Code"
  5119. #: flatcamGUI/FlatCAMGUI.py:1655
  5120. msgid "Find in Code"
  5121. msgstr "Find in Code"
  5122. #: flatcamGUI/FlatCAMGUI.py:1660
  5123. msgid "Replace With"
  5124. msgstr "Replace With"
  5125. #: flatcamGUI/FlatCAMGUI.py:1664 flatcamGUI/FlatCAMGUI.py:5549
  5126. #: flatcamGUI/FlatCAMGUI.py:6122 flatcamGUI/ObjectUI.py:1369
  5127. #: flatcamTools/ToolPaint.py:248
  5128. msgid "All"
  5129. msgstr "All"
  5130. #: flatcamGUI/FlatCAMGUI.py:1666
  5131. msgid ""
  5132. "When checked it will replace all instances in the 'Find' box\n"
  5133. "with the text in the 'Replace' box.."
  5134. msgstr ""
  5135. "When checked it will replace all instances in the 'Find' box\n"
  5136. "with the text in the 'Replace' box.."
  5137. #: flatcamGUI/FlatCAMGUI.py:1669
  5138. msgid "Open Code"
  5139. msgstr "Open Code"
  5140. #: flatcamGUI/FlatCAMGUI.py:1670
  5141. msgid "Save Code"
  5142. msgstr "Save Code"
  5143. #: flatcamGUI/FlatCAMGUI.py:1705
  5144. msgid ""
  5145. "Relative neasurement.\n"
  5146. "Reference is last click position"
  5147. msgstr ""
  5148. "Relative neasurement.\n"
  5149. "Reference is last click position"
  5150. #: flatcamGUI/FlatCAMGUI.py:1711
  5151. msgid ""
  5152. "Absolute neasurement.\n"
  5153. "Reference is (X=0, Y= 0) position"
  5154. msgstr ""
  5155. "Absolute neasurement.\n"
  5156. "Reference is (X=0, Y= 0) position"
  5157. #: flatcamGUI/FlatCAMGUI.py:1907
  5158. msgid "Select 'Esc'"
  5159. msgstr "Select 'Esc'"
  5160. #: flatcamGUI/FlatCAMGUI.py:1932
  5161. msgid "Copy Objects"
  5162. msgstr "Copy Objects"
  5163. #: flatcamGUI/FlatCAMGUI.py:1934
  5164. msgid "Delete Shape"
  5165. msgstr "Delete Shape"
  5166. #: flatcamGUI/FlatCAMGUI.py:1939
  5167. msgid "Move Objects"
  5168. msgstr "Move Objects"
  5169. #: flatcamGUI/FlatCAMGUI.py:2370
  5170. msgid ""
  5171. "Please first select a geometry item to be cutted\n"
  5172. "then select the geometry item that will be cutted\n"
  5173. "out of the first item. In the end press ~X~ key or\n"
  5174. "the toolbar button."
  5175. msgstr ""
  5176. "Please first select a geometry item to be cutted\n"
  5177. "then select the geometry item that will be cutted\n"
  5178. "out of the first item. In the end press ~X~ key or\n"
  5179. "the toolbar button."
  5180. #: flatcamGUI/FlatCAMGUI.py:2377 flatcamGUI/FlatCAMGUI.py:2514
  5181. #: flatcamGUI/FlatCAMGUI.py:2573 flatcamGUI/FlatCAMGUI.py:2593
  5182. msgid "Warning"
  5183. msgstr "Warning"
  5184. #: flatcamGUI/FlatCAMGUI.py:2444 flatcamGUI/FlatCAMGUI.py:2652
  5185. #: flatcamGUI/FlatCAMGUI.py:2863
  5186. msgid "[WARNING_NOTCL] Cancelled."
  5187. msgstr "[WARNING_NOTCL] Cancelled."
  5188. #: flatcamGUI/FlatCAMGUI.py:2509
  5189. msgid ""
  5190. "Please select geometry items \n"
  5191. "on which to perform Intersection Tool."
  5192. msgstr ""
  5193. "Please select geometry items \n"
  5194. "on which to perform Intersection Tool."
  5195. #: flatcamGUI/FlatCAMGUI.py:2568
  5196. msgid ""
  5197. "Please select geometry items \n"
  5198. "on which to perform Substraction Tool."
  5199. msgstr ""
  5200. "Please select geometry items \n"
  5201. "on which to perform Substraction Tool."
  5202. #: flatcamGUI/FlatCAMGUI.py:2588
  5203. msgid ""
  5204. "Please select geometry items \n"
  5205. "on which to perform union."
  5206. msgstr ""
  5207. "Please select geometry items \n"
  5208. "on which to perform union."
  5209. #: flatcamGUI/FlatCAMGUI.py:2668 flatcamGUI/FlatCAMGUI.py:2880
  5210. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5211. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5212. #: flatcamGUI/FlatCAMGUI.py:2752 flatcamGUI/FlatCAMGUI.py:2947
  5213. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5214. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5215. #: flatcamGUI/FlatCAMGUI.py:2798 flatcamGUI/FlatCAMGUI.py:2993
  5216. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5217. msgstr "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5218. #: flatcamGUI/FlatCAMGUI.py:3007
  5219. msgid "New Tool ..."
  5220. msgstr "New Tool ..."
  5221. #: flatcamGUI/FlatCAMGUI.py:3008
  5222. msgid "Enter a Tool Diameter:"
  5223. msgstr "Enter a Tool Diameter:"
  5224. #: flatcamGUI/FlatCAMGUI.py:3051
  5225. msgid "Measurement Tool exit..."
  5226. msgstr "Measurement Tool exit..."
  5227. #: flatcamGUI/FlatCAMGUI.py:3342
  5228. msgid "GUI Preferences"
  5229. msgstr "GUI Preferences"
  5230. #: flatcamGUI/FlatCAMGUI.py:3348
  5231. msgid "Grid X value:"
  5232. msgstr "Grid X value:"
  5233. #: flatcamGUI/FlatCAMGUI.py:3350
  5234. msgid "This is the Grid snap value on X axis."
  5235. msgstr "This is the Grid snap value on X axis."
  5236. #: flatcamGUI/FlatCAMGUI.py:3355
  5237. msgid "Grid Y value:"
  5238. msgstr "Grid Y value:"
  5239. #: flatcamGUI/FlatCAMGUI.py:3357
  5240. msgid "This is the Grid snap value on Y axis."
  5241. msgstr "This is the Grid snap value on Y axis."
  5242. #: flatcamGUI/FlatCAMGUI.py:3362
  5243. msgid "Snap Max:"
  5244. msgstr "Snap Max:"
  5245. #: flatcamGUI/FlatCAMGUI.py:3367
  5246. msgid "Workspace:"
  5247. msgstr "Workspace:"
  5248. #: flatcamGUI/FlatCAMGUI.py:3369
  5249. msgid ""
  5250. "Draw a delimiting rectangle on canvas.\n"
  5251. "The purpose is to illustrate the limits for our work."
  5252. msgstr ""
  5253. "Draw a delimiting rectangle on canvas.\n"
  5254. "The purpose is to illustrate the limits for our work."
  5255. #: flatcamGUI/FlatCAMGUI.py:3372
  5256. msgid "Wk. format:"
  5257. msgstr "Wk. format:"
  5258. #: flatcamGUI/FlatCAMGUI.py:3374
  5259. msgid ""
  5260. "Select the type of rectangle to be used on canvas,\n"
  5261. "as valid workspace."
  5262. msgstr ""
  5263. "Select the type of rectangle to be used on canvas,\n"
  5264. "as valid workspace."
  5265. #: flatcamGUI/FlatCAMGUI.py:3387
  5266. msgid "Plot Fill:"
  5267. msgstr "Plot Fill:"
  5268. #: flatcamGUI/FlatCAMGUI.py:3389
  5269. msgid ""
  5270. "Set the fill color for plotted objects.\n"
  5271. "First 6 digits are the color and the last 2\n"
  5272. "digits are for alpha (transparency) level."
  5273. msgstr ""
  5274. "Set the fill color for plotted objects.\n"
  5275. "First 6 digits are the color and the last 2\n"
  5276. "digits are for alpha (transparency) level."
  5277. #: flatcamGUI/FlatCAMGUI.py:3403 flatcamGUI/FlatCAMGUI.py:3453
  5278. #: flatcamGUI/FlatCAMGUI.py:3503
  5279. msgid "Alpha Level:"
  5280. msgstr "Alpha Level:"
  5281. #: flatcamGUI/FlatCAMGUI.py:3405
  5282. msgid "Set the fill transparency for plotted objects."
  5283. msgstr "Set the fill transparency for plotted objects."
  5284. #: flatcamGUI/FlatCAMGUI.py:3422
  5285. msgid "Plot Line:"
  5286. msgstr "Plot Line:"
  5287. #: flatcamGUI/FlatCAMGUI.py:3424
  5288. msgid "Set the line color for plotted objects."
  5289. msgstr "Set the line color for plotted objects."
  5290. #: flatcamGUI/FlatCAMGUI.py:3436
  5291. msgid "Sel. Fill:"
  5292. msgstr "Sel. Fill:"
  5293. #: flatcamGUI/FlatCAMGUI.py:3438
  5294. msgid ""
  5295. "Set the fill color for the selection box\n"
  5296. "in case that the selection is done from left to right.\n"
  5297. "First 6 digits are the color and the last 2\n"
  5298. "digits are for alpha (transparency) level."
  5299. msgstr ""
  5300. "Set the fill color for the selection box\n"
  5301. "in case that the selection is done from left to right.\n"
  5302. "First 6 digits are the color and the last 2\n"
  5303. "digits are for alpha (transparency) level."
  5304. #: flatcamGUI/FlatCAMGUI.py:3455
  5305. msgid "Set the fill transparency for the 'left to right' selection box."
  5306. msgstr "Set the fill transparency for the 'left to right' selection box."
  5307. #: flatcamGUI/FlatCAMGUI.py:3472
  5308. msgid "Sel. Line:"
  5309. msgstr "Sel. Line:"
  5310. #: flatcamGUI/FlatCAMGUI.py:3474
  5311. msgid "Set the line color for the 'left to right' selection box."
  5312. msgstr "Set the line color for the 'left to right' selection box."
  5313. #: flatcamGUI/FlatCAMGUI.py:3486
  5314. msgid "Sel2. Fill:"
  5315. msgstr "Sel2. Fill:"
  5316. #: flatcamGUI/FlatCAMGUI.py:3488
  5317. msgid ""
  5318. "Set the fill color for the selection box\n"
  5319. "in case that the selection is done from right to left.\n"
  5320. "First 6 digits are the color and the last 2\n"
  5321. "digits are for alpha (transparency) level."
  5322. msgstr ""
  5323. "Set the fill color for the selection box\n"
  5324. "in case that the selection is done from right to left.\n"
  5325. "First 6 digits are the color and the last 2\n"
  5326. "digits are for alpha (transparency) level."
  5327. #: flatcamGUI/FlatCAMGUI.py:3505
  5328. msgid "Set the fill transparency for selection 'right to left' box."
  5329. msgstr "Set the fill transparency for selection 'right to left' box."
  5330. #: flatcamGUI/FlatCAMGUI.py:3522
  5331. msgid "Sel2. Line:"
  5332. msgstr "Sel2. Line:"
  5333. #: flatcamGUI/FlatCAMGUI.py:3524
  5334. msgid "Set the line color for the 'right to left' selection box."
  5335. msgstr "Set the line color for the 'right to left' selection box."
  5336. #: flatcamGUI/FlatCAMGUI.py:3536
  5337. msgid "Editor Draw:"
  5338. msgstr "Editor Draw:"
  5339. #: flatcamGUI/FlatCAMGUI.py:3538
  5340. msgid "Set the color for the shape."
  5341. msgstr "Set the color for the shape."
  5342. #: flatcamGUI/FlatCAMGUI.py:3550
  5343. msgid "Editor Draw Sel.:"
  5344. msgstr "Editor Draw Sel.:"
  5345. #: flatcamGUI/FlatCAMGUI.py:3552
  5346. msgid "Set the color of the shape when selected."
  5347. msgstr "Set the color of the shape when selected."
  5348. #: flatcamGUI/FlatCAMGUI.py:3564
  5349. msgid "Project Items:"
  5350. msgstr "Project Items:"
  5351. #: flatcamGUI/FlatCAMGUI.py:3566
  5352. msgid "Set the color of the items in Project Tab Tree."
  5353. msgstr "Set the color of the items in Project Tab Tree."
  5354. #: flatcamGUI/FlatCAMGUI.py:3577
  5355. msgid "Proj. Dis. Items:"
  5356. msgstr "Proj. Dis. Items:"
  5357. #: flatcamGUI/FlatCAMGUI.py:3579
  5358. msgid ""
  5359. "Set the color of the items in Project Tab Tree,\n"
  5360. "for the case when the items are disabled."
  5361. msgstr ""
  5362. "Set the color of the items in Project Tab Tree,\n"
  5363. "for the case when the items are disabled."
  5364. #: flatcamGUI/FlatCAMGUI.py:3630
  5365. msgid "GUI Settings"
  5366. msgstr "GUI Settings"
  5367. #: flatcamGUI/FlatCAMGUI.py:3636
  5368. msgid "Layout:"
  5369. msgstr "Layout:"
  5370. #: flatcamGUI/FlatCAMGUI.py:3638
  5371. msgid ""
  5372. "Select an layout for FlatCAM.\n"
  5373. "It is applied immediately."
  5374. msgstr ""
  5375. "Select an layout for FlatCAM.\n"
  5376. "It is applied immediately."
  5377. #: flatcamGUI/FlatCAMGUI.py:3654
  5378. msgid "Style:"
  5379. msgstr "Style:"
  5380. #: flatcamGUI/FlatCAMGUI.py:3656
  5381. msgid ""
  5382. "Select an style for FlatCAM.\n"
  5383. "It will be applied at the next app start."
  5384. msgstr ""
  5385. "Select an style for FlatCAM.\n"
  5386. "It will be applied at the next app start."
  5387. #: flatcamGUI/FlatCAMGUI.py:3667
  5388. msgid "HDPI Support:"
  5389. msgstr "HDPI Support:"
  5390. #: flatcamGUI/FlatCAMGUI.py:3669
  5391. msgid ""
  5392. "Enable High DPI support for FlatCAM.\n"
  5393. "It will be applied at the next app start."
  5394. msgstr ""
  5395. "Enable High DPI support for FlatCAM.\n"
  5396. "It will be applied at the next app start."
  5397. #: flatcamGUI/FlatCAMGUI.py:3682
  5398. msgid "Clear GUI Settings:"
  5399. msgstr "Clear GUI Settings:"
  5400. #: flatcamGUI/FlatCAMGUI.py:3684
  5401. msgid ""
  5402. "Clear the GUI settings for FlatCAM,\n"
  5403. "such as: layout, gui state, style, hdpi support etc."
  5404. msgstr ""
  5405. "Clear the GUI settings for FlatCAM,\n"
  5406. "such as: layout, gui state, style, hdpi support etc."
  5407. #: flatcamGUI/FlatCAMGUI.py:3687
  5408. msgid "Clear"
  5409. msgstr "Clear"
  5410. #: flatcamGUI/FlatCAMGUI.py:3691
  5411. msgid "Hover Shape:"
  5412. msgstr "Hover Shape:"
  5413. #: flatcamGUI/FlatCAMGUI.py:3693
  5414. msgid ""
  5415. "Enable display of a hover shape for FlatCAM objects.\n"
  5416. "It is displayed whenever the mouse cursor is hovering\n"
  5417. "over any kind of not-selected object."
  5418. msgstr ""
  5419. "Enable display of a hover shape for FlatCAM objects.\n"
  5420. "It is displayed whenever the mouse cursor is hovering\n"
  5421. "over any kind of not-selected object."
  5422. #: flatcamGUI/FlatCAMGUI.py:3700
  5423. msgid "Sel. Shape:"
  5424. msgstr "Sel. Shape:"
  5425. #: flatcamGUI/FlatCAMGUI.py:3702
  5426. msgid ""
  5427. "Enable the display of a selection shape for FlatCAM objects.\n"
  5428. "It is displayed whenever the mouse selects an object\n"
  5429. "either by clicking or dragging mouse from left to right or\n"
  5430. "right to left."
  5431. msgstr ""
  5432. "Enable the display of a selection shape for FlatCAM objects.\n"
  5433. "It is displayed whenever the mouse selects an object\n"
  5434. "either by clicking or dragging mouse from left to right or\n"
  5435. "right to left."
  5436. #: flatcamGUI/FlatCAMGUI.py:3744
  5437. msgid "Are you sure you want to delete the GUI Settings? \n"
  5438. msgstr "Are you sure you want to delete the GUI Settings? \n"
  5439. #: flatcamGUI/FlatCAMGUI.py:3747
  5440. msgid "Clear GUI Settings"
  5441. msgstr "Clear GUI Settings"
  5442. #: flatcamGUI/FlatCAMGUI.py:3768
  5443. msgid "App Preferences"
  5444. msgstr "App Preferences"
  5445. #: flatcamGUI/FlatCAMGUI.py:3774
  5446. msgid "<b>Units:</b>"
  5447. msgstr "<b>Units:</b>"
  5448. #: flatcamGUI/FlatCAMGUI.py:3775
  5449. msgid ""
  5450. "The default value for FlatCAM units.\n"
  5451. "Whatever is selected here is set every time\n"
  5452. "FLatCAM is started."
  5453. msgstr ""
  5454. "The default value for FlatCAM units.\n"
  5455. "Whatever is selected here is set every time\n"
  5456. "FLatCAM is started."
  5457. #: flatcamGUI/FlatCAMGUI.py:3778
  5458. msgid "IN"
  5459. msgstr "IN"
  5460. #: flatcamGUI/FlatCAMGUI.py:3779 flatcamGUI/FlatCAMGUI.py:4268
  5461. #: flatcamGUI/FlatCAMGUI.py:4529 flatcamGUI/FlatCAMGUI.py:4920
  5462. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5463. msgid "MM"
  5464. msgstr "MM"
  5465. #: flatcamGUI/FlatCAMGUI.py:3782
  5466. msgid "<b>APP. LEVEL:</b>"
  5467. msgstr "<b>APP. LEVEL:</b>"
  5468. #: flatcamGUI/FlatCAMGUI.py:3783
  5469. msgid ""
  5470. "Choose the default level of usage for FlatCAM.\n"
  5471. "BASIC level -> reduced functionality, best for beginner's.\n"
  5472. "ADVANCED level -> full functionality.\n"
  5473. "\n"
  5474. "The choice here will influence the parameters in\n"
  5475. "the Selected Tab for all kinds of FlatCAM objects."
  5476. msgstr ""
  5477. "Choose the default level of usage for FlatCAM.\n"
  5478. "BASIC level -> reduced functionality, best for beginner's.\n"
  5479. "ADVANCED level -> full functionality.\n"
  5480. "\n"
  5481. "The choice here will influence the parameters in\n"
  5482. "the Selected Tab for all kinds of FlatCAM objects."
  5483. #: flatcamGUI/FlatCAMGUI.py:3788 flatcamGUI/FlatCAMGUI.py:4556
  5484. msgid "Basic"
  5485. msgstr "Basic"
  5486. #: flatcamGUI/FlatCAMGUI.py:3789
  5487. msgid "Advanced"
  5488. msgstr "Advanced"
  5489. #: flatcamGUI/FlatCAMGUI.py:3792
  5490. msgid "<b>Languages:</b>"
  5491. msgstr "<b>Languages:</b>"
  5492. #: flatcamGUI/FlatCAMGUI.py:3793
  5493. msgid "Set the language used throughout FlatCAM."
  5494. msgstr "Set the language used throughout FlatCAM."
  5495. #: flatcamGUI/FlatCAMGUI.py:3796
  5496. msgid "Apply Language"
  5497. msgstr "Apply Language"
  5498. #: flatcamGUI/FlatCAMGUI.py:3797
  5499. msgid ""
  5500. "Set the language used throughout FlatCAM.\n"
  5501. "The app will restart after click.Windows: When FlatCAM is installed in "
  5502. "Program Files\n"
  5503. "directory, it is possible that the app will not\n"
  5504. "restart after the button is clicked due of Windows\n"
  5505. "security features. In this case the language will be\n"
  5506. "applied at the next app start."
  5507. msgstr ""
  5508. "Set the language used throughout FlatCAM.\n"
  5509. "The app will restart after click.Windows: When FlatCAM is installed in "
  5510. "Program Files\n"
  5511. "directory, it is possible that the app will not\n"
  5512. "restart after the button is clicked due of Windows\n"
  5513. "security features. In this case the language will be\n"
  5514. "applied at the next app start."
  5515. #: flatcamGUI/FlatCAMGUI.py:3806
  5516. msgid "Shell at StartUp:"
  5517. msgstr "Shell at StartUp:"
  5518. #: flatcamGUI/FlatCAMGUI.py:3808 flatcamGUI/FlatCAMGUI.py:3813
  5519. msgid ""
  5520. "Check this box if you want the shell to\n"
  5521. "start automatically at startup."
  5522. msgstr ""
  5523. "Check this box if you want the shell to\n"
  5524. "start automatically at startup."
  5525. #: flatcamGUI/FlatCAMGUI.py:3818
  5526. msgid "Version Check:"
  5527. msgstr "Version Check:"
  5528. #: flatcamGUI/FlatCAMGUI.py:3820 flatcamGUI/FlatCAMGUI.py:3825
  5529. msgid ""
  5530. "Check this box if you want to check\n"
  5531. "for a new version automatically at startup."
  5532. msgstr ""
  5533. "Check this box if you want to check\n"
  5534. "for a new version automatically at startup."
  5535. #: flatcamGUI/FlatCAMGUI.py:3830
  5536. msgid "Send Stats:"
  5537. msgstr "Send Stats:"
  5538. #: flatcamGUI/FlatCAMGUI.py:3832 flatcamGUI/FlatCAMGUI.py:3837
  5539. msgid ""
  5540. "Check this box if you agree to send anonymous\n"
  5541. "stats automatically at startup, to help improve FlatCAM."
  5542. msgstr ""
  5543. "Check this box if you agree to send anonymous\n"
  5544. "stats automatically at startup, to help improve FlatCAM."
  5545. #: flatcamGUI/FlatCAMGUI.py:3844
  5546. msgid "<b>Pan Button:</b>"
  5547. msgstr "<b>Pan Button:</b>"
  5548. #: flatcamGUI/FlatCAMGUI.py:3845
  5549. msgid ""
  5550. "Select the mouse button to use for panning:\n"
  5551. "- MMB --> Middle Mouse Button\n"
  5552. "- RMB --> Right Mouse Button"
  5553. msgstr ""
  5554. "Select the mouse button to use for panning:\n"
  5555. "- MMB --> Middle Mouse Button\n"
  5556. "- RMB --> Right Mouse Button"
  5557. #: flatcamGUI/FlatCAMGUI.py:3848
  5558. msgid "MMB"
  5559. msgstr "MMB"
  5560. #: flatcamGUI/FlatCAMGUI.py:3849
  5561. msgid "RMB"
  5562. msgstr "RMB"
  5563. #: flatcamGUI/FlatCAMGUI.py:3852
  5564. msgid "<b>Multiple Sel:</b>"
  5565. msgstr "<b>Multiple Sel:</b>"
  5566. #: flatcamGUI/FlatCAMGUI.py:3853
  5567. msgid "Select the key used for multiple selection."
  5568. msgstr "Select the key used for multiple selection."
  5569. #: flatcamGUI/FlatCAMGUI.py:3858
  5570. msgid "Project at StartUp:"
  5571. msgstr "Project at StartUp:"
  5572. #: flatcamGUI/FlatCAMGUI.py:3860 flatcamGUI/FlatCAMGUI.py:3865
  5573. msgid ""
  5574. "Check this box if you want the project/selected/tool tab area to\n"
  5575. "to be shown automatically at startup."
  5576. msgstr ""
  5577. "Check this box if you want the project/selected/tool tab area to\n"
  5578. "to be shown automatically at startup."
  5579. #: flatcamGUI/FlatCAMGUI.py:3870
  5580. msgid "Project AutoHide:"
  5581. msgstr "Project AutoHide:"
  5582. #: flatcamGUI/FlatCAMGUI.py:3872 flatcamGUI/FlatCAMGUI.py:3878
  5583. msgid ""
  5584. "Check this box if you want the project/selected/tool tab area to\n"
  5585. "hide automatically when there are no objects loaded and\n"
  5586. "to show whenever a new object is created."
  5587. msgstr ""
  5588. "Check this box if you want the project/selected/tool tab area to\n"
  5589. "hide automatically when there are no objects loaded and\n"
  5590. "to show whenever a new object is created."
  5591. #: flatcamGUI/FlatCAMGUI.py:3884
  5592. msgid "<b>Enable ToolTips:</b>"
  5593. msgstr "<b>Enable ToolTips:</b>"
  5594. #: flatcamGUI/FlatCAMGUI.py:3886 flatcamGUI/FlatCAMGUI.py:3891
  5595. msgid ""
  5596. "Check this box if you want to have toolTips displayed\n"
  5597. "when hovering with mouse over items throughout the App."
  5598. msgstr ""
  5599. "Check this box if you want to have toolTips displayed\n"
  5600. "when hovering with mouse over items throughout the App."
  5601. #: flatcamGUI/FlatCAMGUI.py:3894
  5602. msgid "Workers number:"
  5603. msgstr "Workers number:"
  5604. #: flatcamGUI/FlatCAMGUI.py:3896 flatcamGUI/FlatCAMGUI.py:3905
  5605. msgid ""
  5606. "The number of Qthreads made available to the App.\n"
  5607. "A bigger number may finish the jobs more quickly but\n"
  5608. "depending on your computer speed, may make the App\n"
  5609. "unresponsive. Can have a value between 2 and 16.\n"
  5610. "Default value is 2.\n"
  5611. "After change, it will be applied at next App start."
  5612. msgstr ""
  5613. "The number of Qthreads made available to the App.\n"
  5614. "A bigger number may finish the jobs more quickly but\n"
  5615. "depending on your computer speed, may make the App\n"
  5616. "unresponsive. Can have a value between 2 and 16.\n"
  5617. "Default value is 2.\n"
  5618. "After change, it will be applied at next App start."
  5619. #: flatcamGUI/FlatCAMGUI.py:3915
  5620. msgid "Geo Tolerance:"
  5621. msgstr "Geo Tolerance:"
  5622. #: flatcamGUI/FlatCAMGUI.py:3917 flatcamGUI/FlatCAMGUI.py:3926
  5623. msgid ""
  5624. "This value can counter the effect of the Circle Steps\n"
  5625. "parameter. Default value is 0.01.\n"
  5626. "A lower value will increase the detail both in image\n"
  5627. "and in Gcode for the circles, with a higher cost in\n"
  5628. "performance. Higher value will provide more\n"
  5629. "performance at the expense of level of detail."
  5630. msgstr ""
  5631. "This value can counter the effect of the Circle Steps\n"
  5632. "parameter. Default value is 0.01.\n"
  5633. "A lower value will increase the detail both in image\n"
  5634. "and in Gcode for the circles, with a higher cost in\n"
  5635. "performance. Higher value will provide more\n"
  5636. "performance at the expense of level of detail."
  5637. #: flatcamGUI/FlatCAMGUI.py:3962
  5638. msgid "\"Open\" behavior"
  5639. msgstr "\"Open\" behavior"
  5640. #: flatcamGUI/FlatCAMGUI.py:3964
  5641. msgid ""
  5642. "When checked the path for the last saved file is used when saving files,\n"
  5643. "and the path for the last opened file is used when opening files.\n"
  5644. "\n"
  5645. "When unchecked the path for opening files is the one used last: either the\n"
  5646. "path for saving files or the path for opening files."
  5647. msgstr ""
  5648. "When checked the path for the last saved file is used when saving files,\n"
  5649. "and the path for the last opened file is used when opening files.\n"
  5650. "\n"
  5651. "When unchecked the path for opening files is the one used last: either the\n"
  5652. "path for saving files or the path for opening files."
  5653. #: flatcamGUI/FlatCAMGUI.py:3973
  5654. msgid "Save Compressed Project"
  5655. msgstr "Save Compressed Project"
  5656. #: flatcamGUI/FlatCAMGUI.py:3975
  5657. msgid ""
  5658. "Whether to save a compressed or uncompressed project.\n"
  5659. "When checked it will save a compressed FlatCAM project."
  5660. msgstr ""
  5661. "Whether to save a compressed or uncompressed project.\n"
  5662. "When checked it will save a compressed FlatCAM project."
  5663. #: flatcamGUI/FlatCAMGUI.py:3986
  5664. msgid "Compression Level:"
  5665. msgstr "Compression Level:"
  5666. #: flatcamGUI/FlatCAMGUI.py:3988
  5667. msgid ""
  5668. "The level of compression used when saving\n"
  5669. "a FlatCAM project. Higher value means better compression\n"
  5670. "but require more RAM usage and more processing time."
  5671. msgstr ""
  5672. "The level of compression used when saving\n"
  5673. "a FlatCAM project. Higher value means better compression\n"
  5674. "but require more RAM usage and more processing time."
  5675. #: flatcamGUI/FlatCAMGUI.py:4011
  5676. msgid "Gerber General"
  5677. msgstr "Gerber General"
  5678. #: flatcamGUI/FlatCAMGUI.py:4014 flatcamGUI/FlatCAMGUI.py:4380
  5679. #: flatcamGUI/FlatCAMGUI.py:5154 flatcamGUI/FlatCAMGUI.py:5523
  5680. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:502
  5681. #: flatcamGUI/ObjectUI.py:830 flatcamGUI/ObjectUI.py:1355
  5682. msgid "<b>Plot Options:</b>"
  5683. msgstr "<b>Plot Options:</b>"
  5684. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4392
  5685. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:503
  5686. msgid "Solid"
  5687. msgstr "Solid"
  5688. #: flatcamGUI/FlatCAMGUI.py:4023 flatcamGUI/ObjectUI.py:158
  5689. msgid "Solid color polygons."
  5690. msgstr "Solid color polygons."
  5691. #: flatcamGUI/FlatCAMGUI.py:4028 flatcamGUI/ObjectUI.py:164
  5692. msgid "M-Color"
  5693. msgstr "M-Color"
  5694. #: flatcamGUI/FlatCAMGUI.py:4030 flatcamGUI/ObjectUI.py:166
  5695. msgid "Draw polygons in different colors."
  5696. msgstr "Draw polygons in different colors."
  5697. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:4386
  5698. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/ObjectUI.py:172
  5699. msgid "Plot"
  5700. msgstr "Plot"
  5701. #: flatcamGUI/FlatCAMGUI.py:4037 flatcamGUI/FlatCAMGUI.py:5160
  5702. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:543
  5703. #: flatcamGUI/ObjectUI.py:876 flatcamGUI/ObjectUI.py:1455
  5704. msgid "Plot (show) this object."
  5705. msgstr "Plot (show) this object."
  5706. #: flatcamGUI/FlatCAMGUI.py:4042 flatcamGUI/FlatCAMGUI.py:5168
  5707. #: flatcamGUI/FlatCAMGUI.py:5606
  5708. msgid "Circle Steps:"
  5709. msgstr "Circle Steps:"
  5710. #: flatcamGUI/FlatCAMGUI.py:4044
  5711. msgid ""
  5712. "The number of circle steps for Gerber \n"
  5713. "circular aperture linear approximation."
  5714. msgstr ""
  5715. "The number of circle steps for Gerber \n"
  5716. "circular aperture linear approximation."
  5717. #: flatcamGUI/FlatCAMGUI.py:4059
  5718. msgid "Gerber Options"
  5719. msgstr "Gerber Options"
  5720. #: flatcamGUI/FlatCAMGUI.py:4062 flatcamGUI/ObjectUI.py:250
  5721. msgid "<b>Isolation Routing:</b>"
  5722. msgstr "<b>Isolation Routing:</b>"
  5723. #: flatcamGUI/FlatCAMGUI.py:4064 flatcamGUI/ObjectUI.py:252
  5724. msgid ""
  5725. "Create a Geometry object with\n"
  5726. "toolpaths to cut outside polygons."
  5727. msgstr ""
  5728. "Create a Geometry object with\n"
  5729. "toolpaths to cut outside polygons."
  5730. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4754
  5731. #: flatcamGUI/FlatCAMGUI.py:5895 flatcamGUI/ObjectUI.py:785
  5732. #: flatcamGUI/ObjectUI.py:801
  5733. msgid "Diameter of the cutting tool."
  5734. msgstr "Diameter of the cutting tool."
  5735. #: flatcamGUI/FlatCAMGUI.py:4082
  5736. msgid "Width (# passes):"
  5737. msgstr "Width (# passes):"
  5738. #: flatcamGUI/FlatCAMGUI.py:4084 flatcamGUI/ObjectUI.py:274
  5739. msgid ""
  5740. "Width of the isolation gap in\n"
  5741. "number (integer) of tool widths."
  5742. msgstr ""
  5743. "Width of the isolation gap in\n"
  5744. "number (integer) of tool widths."
  5745. #: flatcamGUI/FlatCAMGUI.py:4092 flatcamGUI/ObjectUI.py:282
  5746. msgid "Pass overlap:"
  5747. msgstr "Pass overlap:"
  5748. #: flatcamGUI/FlatCAMGUI.py:4094 flatcamGUI/ObjectUI.py:284
  5749. #, python-format
  5750. msgid ""
  5751. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5752. "Example:\n"
  5753. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5754. "above."
  5755. msgstr ""
  5756. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5757. "Example:\n"
  5758. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5759. "above."
  5760. #: flatcamGUI/FlatCAMGUI.py:4102 flatcamGUI/ObjectUI.py:294
  5761. msgid "Milling Type:"
  5762. msgstr "Milling Type:"
  5763. #: flatcamGUI/FlatCAMGUI.py:4104 flatcamGUI/ObjectUI.py:296
  5764. msgid ""
  5765. "Milling type:\n"
  5766. "- climb / best for precision milling and to reduce tool usage\n"
  5767. "- conventional / useful when there is no backlash compensation"
  5768. msgstr ""
  5769. "Milling type:\n"
  5770. "- climb / best for precision milling and to reduce tool usage\n"
  5771. "- conventional / useful when there is no backlash compensation"
  5772. #: flatcamGUI/FlatCAMGUI.py:4109 flatcamGUI/ObjectUI.py:301
  5773. msgid "Climb"
  5774. msgstr "Climb"
  5775. #: flatcamGUI/FlatCAMGUI.py:4110 flatcamGUI/ObjectUI.py:302
  5776. msgid "Conv."
  5777. msgstr "Conv."
  5778. #: flatcamGUI/FlatCAMGUI.py:4114
  5779. msgid "Combine Passes"
  5780. msgstr "Combine Passes"
  5781. #: flatcamGUI/FlatCAMGUI.py:4116 flatcamGUI/ObjectUI.py:308
  5782. msgid "Combine all passes into one object"
  5783. msgstr "Combine all passes into one object"
  5784. #: flatcamGUI/FlatCAMGUI.py:4121
  5785. msgid "<b>Clear non-copper:</b>"
  5786. msgstr "<b>Clear non-copper:</b>"
  5787. #: flatcamGUI/FlatCAMGUI.py:4123 flatcamGUI/FlatCAMGUI.py:5783
  5788. #: flatcamGUI/ObjectUI.py:383
  5789. msgid ""
  5790. "Create a Geometry object with\n"
  5791. "toolpaths to cut all non-copper regions."
  5792. msgstr ""
  5793. "Create a Geometry object with\n"
  5794. "toolpaths to cut all non-copper regions."
  5795. #: flatcamGUI/FlatCAMGUI.py:4132 flatcamGUI/FlatCAMGUI.py:4158
  5796. #: flatcamGUI/ObjectUI.py:427 flatcamGUI/ObjectUI.py:461
  5797. msgid "Boundary Margin:"
  5798. msgstr "Boundary Margin:"
  5799. #: flatcamGUI/FlatCAMGUI.py:4134 flatcamGUI/ObjectUI.py:429
  5800. msgid ""
  5801. "Specify the edge of the PCB\n"
  5802. "by drawing a box around all\n"
  5803. "objects with this minimum\n"
  5804. "distance."
  5805. msgstr ""
  5806. "Specify the edge of the PCB\n"
  5807. "by drawing a box around all\n"
  5808. "objects with this minimum\n"
  5809. "distance."
  5810. #: flatcamGUI/FlatCAMGUI.py:4144 flatcamGUI/FlatCAMGUI.py:4167
  5811. msgid "Rounded corners"
  5812. msgstr "Rounded corners"
  5813. #: flatcamGUI/FlatCAMGUI.py:4146
  5814. msgid ""
  5815. "Creates a Geometry objects with polygons\n"
  5816. "covering the copper-free areas of the PCB."
  5817. msgstr ""
  5818. "Creates a Geometry objects with polygons\n"
  5819. "covering the copper-free areas of the PCB."
  5820. #: flatcamGUI/FlatCAMGUI.py:4152 flatcamGUI/ObjectUI.py:451
  5821. msgid "<b>Bounding Box:</b>"
  5822. msgstr "<b>Bounding Box:</b>"
  5823. #: flatcamGUI/FlatCAMGUI.py:4160 flatcamGUI/ObjectUI.py:463
  5824. msgid ""
  5825. "Distance of the edges of the box\n"
  5826. "to the nearest polygon."
  5827. msgstr ""
  5828. "Distance of the edges of the box\n"
  5829. "to the nearest polygon."
  5830. #: flatcamGUI/FlatCAMGUI.py:4169 flatcamGUI/ObjectUI.py:473
  5831. msgid ""
  5832. "If the bounding box is \n"
  5833. "to have rounded corners\n"
  5834. "their radius is equal to\n"
  5835. "the margin."
  5836. msgstr ""
  5837. "If the bounding box is \n"
  5838. "to have rounded corners\n"
  5839. "their radius is equal to\n"
  5840. "the margin."
  5841. #: flatcamGUI/FlatCAMGUI.py:4183
  5842. msgid "Gerber Adv. Options"
  5843. msgstr "Gerber Adv. Options"
  5844. #: flatcamGUI/FlatCAMGUI.py:4186
  5845. msgid "<b>Advanced Param.:</b>"
  5846. msgstr "<b>Advanced Param.:</b>"
  5847. #: flatcamGUI/FlatCAMGUI.py:4188
  5848. msgid ""
  5849. "A list of Gerber advanced parameters.\n"
  5850. "Those parameters are available only for\n"
  5851. "Advanced App. Level."
  5852. msgstr ""
  5853. "A list of Gerber advanced parameters.\n"
  5854. "Those parameters are available only for\n"
  5855. "Advanced App. Level."
  5856. #: flatcamGUI/FlatCAMGUI.py:4198 flatcamGUI/ObjectUI.py:313
  5857. msgid "\"Follow\""
  5858. msgstr "\"Follow\""
  5859. #: flatcamGUI/FlatCAMGUI.py:4200 flatcamGUI/ObjectUI.py:315
  5860. msgid ""
  5861. "Generate a 'Follow' geometry.\n"
  5862. "This means that it will cut through\n"
  5863. "the middle of the trace."
  5864. msgstr ""
  5865. "Generate a 'Follow' geometry.\n"
  5866. "This means that it will cut through\n"
  5867. "the middle of the trace."
  5868. #: flatcamGUI/FlatCAMGUI.py:4207
  5869. msgid "Table Show/Hide"
  5870. msgstr "Table Show/Hide"
  5871. #: flatcamGUI/FlatCAMGUI.py:4209
  5872. msgid ""
  5873. "Toggle the display of the Gerber Apertures Table.\n"
  5874. "Also, on hide, it will delete all mark shapes\n"
  5875. "that are drawn on canvas."
  5876. msgstr ""
  5877. "Toggle the display of the Gerber Apertures Table.\n"
  5878. "Also, on hide, it will delete all mark shapes\n"
  5879. "that are drawn on canvas."
  5880. #: flatcamGUI/FlatCAMGUI.py:4248
  5881. msgid "Gerber Export"
  5882. msgstr "Gerber Export"
  5883. #: flatcamGUI/FlatCAMGUI.py:4251 flatcamGUI/FlatCAMGUI.py:4903
  5884. msgid "<b>Export Options:</b>"
  5885. msgstr "<b>Export Options:</b>"
  5886. #: flatcamGUI/FlatCAMGUI.py:4253
  5887. msgid ""
  5888. "The parameters set here are used in the file exported\n"
  5889. "when using the File -> Export -> Export Gerber menu entry."
  5890. msgstr ""
  5891. "The parameters set here are used in the file exported\n"
  5892. "when using the File -> Export -> Export Gerber menu entry."
  5893. #: flatcamGUI/FlatCAMGUI.py:4262 flatcamGUI/FlatCAMGUI.py:4914
  5894. msgid "<b>Units</b>:"
  5895. msgstr "<b>Units</b>:"
  5896. #: flatcamGUI/FlatCAMGUI.py:4264 flatcamGUI/FlatCAMGUI.py:4270
  5897. msgid "The units used in the Gerber file."
  5898. msgstr "The units used in the Gerber file."
  5899. #: flatcamGUI/FlatCAMGUI.py:4267 flatcamGUI/FlatCAMGUI.py:4528
  5900. #: flatcamGUI/FlatCAMGUI.py:4919 flatcamTools/ToolCalculators.py:60
  5901. #: flatcamTools/ToolPcbWizard.py:125
  5902. msgid "INCH"
  5903. msgstr "INCH"
  5904. #: flatcamGUI/FlatCAMGUI.py:4276 flatcamGUI/FlatCAMGUI.py:4928
  5905. msgid "<b>Int/Decimals:</b>"
  5906. msgstr "<b>Int/Decimals:</b>"
  5907. #: flatcamGUI/FlatCAMGUI.py:4278
  5908. msgid ""
  5909. "The number of digits in the whole part of the number\n"
  5910. "and in the fractional part of the number."
  5911. msgstr ""
  5912. "The number of digits in the whole part of the number\n"
  5913. "and in the fractional part of the number."
  5914. #: flatcamGUI/FlatCAMGUI.py:4289
  5915. msgid ""
  5916. "This numbers signify the number of digits in\n"
  5917. "the whole part of Gerber coordinates."
  5918. msgstr ""
  5919. "This numbers signify the number of digits in\n"
  5920. "the whole part of Gerber coordinates."
  5921. #: flatcamGUI/FlatCAMGUI.py:4303
  5922. msgid ""
  5923. "This numbers signify the number of digits in\n"
  5924. "the decimal part of Gerber coordinates."
  5925. msgstr ""
  5926. "This numbers signify the number of digits in\n"
  5927. "the decimal part of Gerber coordinates."
  5928. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:4989
  5929. msgid "<b>Zeros</b>:"
  5930. msgstr "<b>Zeros</b>:"
  5931. #: flatcamGUI/FlatCAMGUI.py:4315 flatcamGUI/FlatCAMGUI.py:4325
  5932. msgid ""
  5933. "This sets the type of Gerber zeros.\n"
  5934. "If LZ then Leading Zeros are removed and\n"
  5935. "Trailing Zeros are kept.\n"
  5936. "If TZ is checked then Trailing Zeros are removed\n"
  5937. "and Leading Zeros are kept."
  5938. msgstr ""
  5939. "This sets the type of Gerber zeros.\n"
  5940. "If LZ then Leading Zeros are removed and\n"
  5941. "Trailing Zeros are kept.\n"
  5942. "If TZ is checked then Trailing Zeros are removed\n"
  5943. "and Leading Zeros are kept."
  5944. #: flatcamGUI/FlatCAMGUI.py:4322 flatcamGUI/FlatCAMGUI.py:4504
  5945. #: flatcamGUI/FlatCAMGUI.py:4999 flatcamTools/ToolPcbWizard.py:111
  5946. msgid "LZ"
  5947. msgstr "LZ"
  5948. #: flatcamGUI/FlatCAMGUI.py:4323 flatcamGUI/FlatCAMGUI.py:4505
  5949. #: flatcamGUI/FlatCAMGUI.py:5000 flatcamTools/ToolPcbWizard.py:112
  5950. msgid "TZ"
  5951. msgstr "TZ"
  5952. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/FlatCAMGUI.py:5030
  5953. #: flatcamGUI/FlatCAMGUI.py:5489 flatcamGUI/FlatCAMGUI.py:5781
  5954. #: flatcamGUI/FlatCAMGUI.py:5882 flatcamGUI/FlatCAMGUI.py:5976
  5955. #: flatcamGUI/FlatCAMGUI.py:6035 flatcamGUI/FlatCAMGUI.py:6138
  5956. #: flatcamGUI/FlatCAMGUI.py:6199 flatcamGUI/FlatCAMGUI.py:6398
  5957. #: flatcamGUI/FlatCAMGUI.py:6525
  5958. msgid "<b>Parameters:</b>"
  5959. msgstr "<b>Parameters:</b>"
  5960. #: flatcamGUI/FlatCAMGUI.py:4347
  5961. msgid "A list of Gerber Editor parameters."
  5962. msgstr "A list of Gerber Editor parameters."
  5963. #: flatcamGUI/FlatCAMGUI.py:4355 flatcamGUI/FlatCAMGUI.py:5040
  5964. #: flatcamGUI/FlatCAMGUI.py:5499
  5965. msgid "Selection limit:"
  5966. msgstr "Selection limit:"
  5967. #: flatcamGUI/FlatCAMGUI.py:4357
  5968. msgid ""
  5969. "Set the number of selected Gerber geometry\n"
  5970. "items above which the utility geometry\n"
  5971. "becomes just a selection rectangle.\n"
  5972. "Increases the performance when moving a\n"
  5973. "large number of geometric elements."
  5974. msgstr ""
  5975. "Set the number of selected Gerber geometry\n"
  5976. "items above which the utility geometry\n"
  5977. "becomes just a selection rectangle.\n"
  5978. "Increases the performance when moving a\n"
  5979. "large number of geometric elements."
  5980. #: flatcamGUI/FlatCAMGUI.py:4377
  5981. msgid "Excellon General"
  5982. msgstr "Excellon General"
  5983. #: flatcamGUI/FlatCAMGUI.py:4399
  5984. msgid "<b>Excellon Format:</b>"
  5985. msgstr "<b>Excellon Format:</b>"
  5986. #: flatcamGUI/FlatCAMGUI.py:4401
  5987. msgid ""
  5988. "The NC drill files, usually named Excellon files\n"
  5989. "are files that can be found in different formats.\n"
  5990. "Here we set the format used when the provided\n"
  5991. "coordinates are not using period.\n"
  5992. "\n"
  5993. "Possible presets:\n"
  5994. "\n"
  5995. "PROTEUS 3:3 MM LZ\n"
  5996. "DipTrace 5:2 MM TZ\n"
  5997. "DipTrace 4:3 MM LZ\n"
  5998. "\n"
  5999. "EAGLE 3:3 MM TZ\n"
  6000. "EAGLE 4:3 MM TZ\n"
  6001. "EAGLE 2:5 INCH TZ\n"
  6002. "EAGLE 3:5 INCH TZ\n"
  6003. "\n"
  6004. "ALTIUM 2:4 INCH LZ\n"
  6005. "Sprint Layout 2:4 INCH LZ\n"
  6006. "KiCAD 3:5 INCH TZ"
  6007. msgstr ""
  6008. "The NC drill files, usually named Excellon files\n"
  6009. "are files that can be found in different formats.\n"
  6010. "Here we set the format used when the provided\n"
  6011. "coordinates are not using period.\n"
  6012. "\n"
  6013. "Possible presets:\n"
  6014. "\n"
  6015. "PROTEUS 3:3 MM LZ\n"
  6016. "DipTrace 5:2 MM TZ\n"
  6017. "DipTrace 4:3 MM LZ\n"
  6018. "\n"
  6019. "EAGLE 3:3 MM TZ\n"
  6020. "EAGLE 4:3 MM TZ\n"
  6021. "EAGLE 2:5 INCH TZ\n"
  6022. "EAGLE 3:5 INCH TZ\n"
  6023. "\n"
  6024. "ALTIUM 2:4 INCH LZ\n"
  6025. "Sprint Layout 2:4 INCH LZ\n"
  6026. "KiCAD 3:5 INCH TZ"
  6027. #: flatcamGUI/FlatCAMGUI.py:4426
  6028. msgid "INCH:"
  6029. msgstr "INCH:"
  6030. #: flatcamGUI/FlatCAMGUI.py:4429
  6031. msgid "Default values for INCH are 2:4"
  6032. msgstr "Default values for INCH are 2:4"
  6033. #: flatcamGUI/FlatCAMGUI.py:4437 flatcamGUI/FlatCAMGUI.py:4470
  6034. #: flatcamGUI/FlatCAMGUI.py:4943
  6035. msgid ""
  6036. "This numbers signify the number of digits in\n"
  6037. "the whole part of Excellon coordinates."
  6038. msgstr ""
  6039. "This numbers signify the number of digits in\n"
  6040. "the whole part of Excellon coordinates."
  6041. #: flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/FlatCAMGUI.py:4484
  6042. #: flatcamGUI/FlatCAMGUI.py:4957
  6043. msgid ""
  6044. "This numbers signify the number of digits in\n"
  6045. "the decimal part of Excellon coordinates."
  6046. msgstr ""
  6047. "This numbers signify the number of digits in\n"
  6048. "the decimal part of Excellon coordinates."
  6049. #: flatcamGUI/FlatCAMGUI.py:4459
  6050. msgid "METRIC:"
  6051. msgstr "METRIC:"
  6052. #: flatcamGUI/FlatCAMGUI.py:4462
  6053. msgid "Default values for METRIC are 3:3"
  6054. msgstr "Default values for METRIC are 3:3"
  6055. #: flatcamGUI/FlatCAMGUI.py:4493
  6056. msgid "Default <b>Zeros</b>:"
  6057. msgstr "Default <b>Zeros</b>:"
  6058. #: flatcamGUI/FlatCAMGUI.py:4496 flatcamGUI/FlatCAMGUI.py:4992
  6059. msgid ""
  6060. "This sets the type of Excellon zeros.\n"
  6061. "If LZ then Leading Zeros are kept and\n"
  6062. "Trailing Zeros are removed.\n"
  6063. "If TZ is checked then Trailing Zeros are kept\n"
  6064. "and Leading Zeros are removed."
  6065. msgstr ""
  6066. "This sets the type of Excellon zeros.\n"
  6067. "If LZ then Leading Zeros are kept and\n"
  6068. "Trailing Zeros are removed.\n"
  6069. "If TZ is checked then Trailing Zeros are kept\n"
  6070. "and Leading Zeros are removed."
  6071. #: flatcamGUI/FlatCAMGUI.py:4507
  6072. msgid ""
  6073. "This sets the default type of Excellon zeros.\n"
  6074. "If it is not detected in the parsed file the value here\n"
  6075. "will be used.If LZ then Leading Zeros are kept and\n"
  6076. "Trailing Zeros are removed.\n"
  6077. "If TZ is checked then Trailing Zeros are kept\n"
  6078. "and Leading Zeros are removed."
  6079. msgstr ""
  6080. "This sets the default type of Excellon zeros.\n"
  6081. "If it is not detected in the parsed file the value here\n"
  6082. "will be used.If LZ then Leading Zeros are kept and\n"
  6083. "Trailing Zeros are removed.\n"
  6084. "If TZ is checked then Trailing Zeros are kept\n"
  6085. "and Leading Zeros are removed."
  6086. #: flatcamGUI/FlatCAMGUI.py:4517
  6087. msgid "Default <b>Units</b>:"
  6088. msgstr "Default <b>Units</b>:"
  6089. #: flatcamGUI/FlatCAMGUI.py:4520
  6090. msgid ""
  6091. "This sets the default units of Excellon files.\n"
  6092. "If it is not detected in the parsed file the value here\n"
  6093. "will be used.Some Excellon files don't have an header\n"
  6094. "therefore this parameter will be used."
  6095. msgstr ""
  6096. "This sets the default units of Excellon files.\n"
  6097. "If it is not detected in the parsed file the value here\n"
  6098. "will be used.Some Excellon files don't have an header\n"
  6099. "therefore this parameter will be used."
  6100. #: flatcamGUI/FlatCAMGUI.py:4531
  6101. msgid ""
  6102. "This sets the units of Excellon files.\n"
  6103. "Some Excellon files don't have an header\n"
  6104. "therefore this parameter will be used."
  6105. msgstr ""
  6106. "This sets the units of Excellon files.\n"
  6107. "Some Excellon files don't have an header\n"
  6108. "therefore this parameter will be used."
  6109. #: flatcamGUI/FlatCAMGUI.py:4539
  6110. msgid "<b>Excellon Optimization:</b>"
  6111. msgstr "<b>Excellon Optimization:</b>"
  6112. #: flatcamGUI/FlatCAMGUI.py:4542
  6113. msgid "Algorithm: "
  6114. msgstr "Algorithm: "
  6115. #: flatcamGUI/FlatCAMGUI.py:4544 flatcamGUI/FlatCAMGUI.py:4558
  6116. msgid ""
  6117. "This sets the optimization type for the Excellon drill path.\n"
  6118. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6119. "Guided Local Path is used. Default search time is 3sec.\n"
  6120. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6121. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6122. "\n"
  6123. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6124. "Travelling Salesman algorithm for path optimization."
  6125. msgstr ""
  6126. "This sets the optimization type for the Excellon drill path.\n"
  6127. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6128. "Guided Local Path is used. Default search time is 3sec.\n"
  6129. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6130. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6131. "\n"
  6132. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6133. "Travelling Salesman algorithm for path optimization."
  6134. #: flatcamGUI/FlatCAMGUI.py:4555
  6135. msgid "MH"
  6136. msgstr "MH"
  6137. #: flatcamGUI/FlatCAMGUI.py:4569
  6138. msgid "Optimization Time: "
  6139. msgstr "Optimization Time: "
  6140. #: flatcamGUI/FlatCAMGUI.py:4572
  6141. msgid ""
  6142. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6143. "maximum threshold for how much time is spent doing the\n"
  6144. "path optimization. This max duration is set here.\n"
  6145. "In seconds."
  6146. msgstr ""
  6147. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6148. "maximum threshold for how much time is spent doing the\n"
  6149. "path optimization. This max duration is set here.\n"
  6150. "In seconds."
  6151. #: flatcamGUI/FlatCAMGUI.py:4615
  6152. msgid "Excellon Options"
  6153. msgstr "Excellon Options"
  6154. #: flatcamGUI/FlatCAMGUI.py:4618 flatcamGUI/ObjectUI.py:581
  6155. msgid "<b>Create CNC Job</b>"
  6156. msgstr "<b>Create CNC Job</b>"
  6157. #: flatcamGUI/FlatCAMGUI.py:4620
  6158. msgid ""
  6159. "Parameters used to create a CNC Job object\n"
  6160. "for this drill object."
  6161. msgstr ""
  6162. "Parameters used to create a CNC Job object\n"
  6163. "for this drill object."
  6164. #: flatcamGUI/FlatCAMGUI.py:4628 flatcamGUI/FlatCAMGUI.py:5215
  6165. #: flatcamGUI/FlatCAMGUI.py:6334 flatcamGUI/ObjectUI.py:592
  6166. #: flatcamGUI/ObjectUI.py:1068 flatcamTools/ToolCalculators.py:106
  6167. msgid "Cut Z:"
  6168. msgstr "Cut Z:"
  6169. #: flatcamGUI/FlatCAMGUI.py:4630 flatcamGUI/ObjectUI.py:594
  6170. msgid ""
  6171. "Drill depth (negative)\n"
  6172. "below the copper surface."
  6173. msgstr ""
  6174. "Drill depth (negative)\n"
  6175. "below the copper surface."
  6176. #: flatcamGUI/FlatCAMGUI.py:4637 flatcamGUI/FlatCAMGUI.py:5248
  6177. #: flatcamGUI/ObjectUI.py:602 flatcamGUI/ObjectUI.py:1104
  6178. msgid "Travel Z:"
  6179. msgstr "Travel Z:"
  6180. #: flatcamGUI/FlatCAMGUI.py:4639 flatcamGUI/ObjectUI.py:604
  6181. msgid ""
  6182. "Tool height when travelling\n"
  6183. "across the XY plane."
  6184. msgstr ""
  6185. "Tool height when travelling\n"
  6186. "across the XY plane."
  6187. #: flatcamGUI/FlatCAMGUI.py:4647 flatcamGUI/FlatCAMGUI.py:5258
  6188. msgid "Tool change:"
  6189. msgstr "Tool change:"
  6190. #: flatcamGUI/FlatCAMGUI.py:4649 flatcamGUI/FlatCAMGUI.py:5260
  6191. #: flatcamGUI/ObjectUI.py:614
  6192. msgid ""
  6193. "Include tool-change sequence\n"
  6194. "in G-Code (Pause for tool change)."
  6195. msgstr ""
  6196. "Include tool-change sequence\n"
  6197. "in G-Code (Pause for tool change)."
  6198. #: flatcamGUI/FlatCAMGUI.py:4656 flatcamGUI/FlatCAMGUI.py:5268
  6199. msgid "Toolchange Z:"
  6200. msgstr "Toolchange Z:"
  6201. #: flatcamGUI/FlatCAMGUI.py:4658 flatcamGUI/FlatCAMGUI.py:5270
  6202. msgid "Toolchange Z position."
  6203. msgstr "Toolchange Z position."
  6204. #: flatcamGUI/FlatCAMGUI.py:4664
  6205. msgid "Feedrate:"
  6206. msgstr "Feedrate:"
  6207. #: flatcamGUI/FlatCAMGUI.py:4666
  6208. msgid ""
  6209. "Tool speed while drilling\n"
  6210. "(in units per minute)."
  6211. msgstr ""
  6212. "Tool speed while drilling\n"
  6213. "(in units per minute)."
  6214. #: flatcamGUI/FlatCAMGUI.py:4674
  6215. msgid "Spindle Speed:"
  6216. msgstr "Spindle Speed:"
  6217. #: flatcamGUI/FlatCAMGUI.py:4676 flatcamGUI/FlatCAMGUI.py:5300
  6218. #: flatcamGUI/ObjectUI.py:681
  6219. msgid ""
  6220. "Speed of the spindle\n"
  6221. "in RPM (optional)"
  6222. msgstr ""
  6223. "Speed of the spindle\n"
  6224. "in RPM (optional)"
  6225. #: flatcamGUI/FlatCAMGUI.py:4684 flatcamGUI/FlatCAMGUI.py:5308
  6226. msgid "Spindle dir.:"
  6227. msgstr "Spindle dir.:"
  6228. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/FlatCAMGUI.py:5310
  6229. msgid ""
  6230. "This sets the direction that the spindle is rotating.\n"
  6231. "It can be either:\n"
  6232. "- CW = clockwise or\n"
  6233. "- CCW = counter clockwise"
  6234. msgstr ""
  6235. "This sets the direction that the spindle is rotating.\n"
  6236. "It can be either:\n"
  6237. "- CW = clockwise or\n"
  6238. "- CCW = counter clockwise"
  6239. #: flatcamGUI/FlatCAMGUI.py:4698 flatcamGUI/FlatCAMGUI.py:5322
  6240. #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1230
  6241. msgid "Dwell:"
  6242. msgstr "Dwell:"
  6243. #: flatcamGUI/FlatCAMGUI.py:4700 flatcamGUI/FlatCAMGUI.py:5324
  6244. #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1233
  6245. msgid ""
  6246. "Pause to allow the spindle to reach its\n"
  6247. "speed before cutting."
  6248. msgstr ""
  6249. "Pause to allow the spindle to reach its\n"
  6250. "speed before cutting."
  6251. #: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5327
  6252. msgid "Duration:"
  6253. msgstr "Duration:"
  6254. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5329
  6255. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1240
  6256. msgid "Number of milliseconds for spindle to dwell."
  6257. msgstr "Number of milliseconds for spindle to dwell."
  6258. #: flatcamGUI/FlatCAMGUI.py:4717 flatcamGUI/FlatCAMGUI.py:5339
  6259. #: flatcamGUI/ObjectUI.py:704
  6260. msgid "Postprocessor:"
  6261. msgstr "Postprocessor:"
  6262. #: flatcamGUI/FlatCAMGUI.py:4719
  6263. msgid ""
  6264. "The postprocessor file that dictates\n"
  6265. "gcode output."
  6266. msgstr ""
  6267. "The postprocessor file that dictates\n"
  6268. "gcode output."
  6269. #: flatcamGUI/FlatCAMGUI.py:4728
  6270. msgid "<b>Gcode: </b>"
  6271. msgstr "<b>Gcode: </b>"
  6272. #: flatcamGUI/FlatCAMGUI.py:4730
  6273. msgid ""
  6274. "Choose what to use for GCode generation:\n"
  6275. "'Drills', 'Slots' or 'Both'.\n"
  6276. "When choosing 'Slots' or 'Both', slots will be\n"
  6277. "converted to drills."
  6278. msgstr ""
  6279. "Choose what to use for GCode generation:\n"
  6280. "'Drills', 'Slots' or 'Both'.\n"
  6281. "When choosing 'Slots' or 'Both', slots will be\n"
  6282. "converted to drills."
  6283. #: flatcamGUI/FlatCAMGUI.py:4746 flatcamGUI/ObjectUI.py:769
  6284. msgid "<b>Mill Holes</b>"
  6285. msgstr "<b>Mill Holes</b>"
  6286. #: flatcamGUI/FlatCAMGUI.py:4748 flatcamGUI/ObjectUI.py:771
  6287. msgid "Create Geometry for milling holes."
  6288. msgstr "Create Geometry for milling holes."
  6289. #: flatcamGUI/FlatCAMGUI.py:4752
  6290. msgid "Drill Tool dia:"
  6291. msgstr "Drill Tool dia:"
  6292. #: flatcamGUI/FlatCAMGUI.py:4759
  6293. msgid "Slot Tool dia:"
  6294. msgstr "Slot Tool dia:"
  6295. #: flatcamGUI/FlatCAMGUI.py:4761
  6296. msgid ""
  6297. "Diameter of the cutting tool\n"
  6298. "when milling slots."
  6299. msgstr ""
  6300. "Diameter of the cutting tool\n"
  6301. "when milling slots."
  6302. #: flatcamGUI/FlatCAMGUI.py:4773
  6303. msgid "Defaults"
  6304. msgstr "Defaults"
  6305. #: flatcamGUI/FlatCAMGUI.py:4786
  6306. msgid "Excellon Adv. Options"
  6307. msgstr "Excellon Adv. Options"
  6308. #: flatcamGUI/FlatCAMGUI.py:4792 flatcamGUI/FlatCAMGUI.py:5362
  6309. msgid "<b>Advanced Options:</b>"
  6310. msgstr "<b>Advanced Options:</b>"
  6311. #: flatcamGUI/FlatCAMGUI.py:4794
  6312. msgid ""
  6313. "Parameters used to create a CNC Job object\n"
  6314. "for this drill object that are shown when App Level is Advanced."
  6315. msgstr ""
  6316. "Parameters used to create a CNC Job object\n"
  6317. "for this drill object that are shown when App Level is Advanced."
  6318. #: flatcamGUI/FlatCAMGUI.py:4802
  6319. msgid "Offset Z:"
  6320. msgstr "Offset Z:"
  6321. #: flatcamGUI/FlatCAMGUI.py:4804 flatcamGUI/ObjectUI.py:571
  6322. msgid ""
  6323. "Some drill bits (the larger ones) need to drill deeper\n"
  6324. "to create the desired exit hole diameter due of the tip shape.\n"
  6325. "The value here can compensate the Cut Z parameter."
  6326. msgstr ""
  6327. "Some drill bits (the larger ones) need to drill deeper\n"
  6328. "to create the desired exit hole diameter due of the tip shape.\n"
  6329. "The value here can compensate the Cut Z parameter."
  6330. #: flatcamGUI/FlatCAMGUI.py:4811 flatcamGUI/FlatCAMGUI.py:5373
  6331. msgid "Toolchange X,Y:"
  6332. msgstr "Toolchange X,Y:"
  6333. #: flatcamGUI/FlatCAMGUI.py:4813 flatcamGUI/FlatCAMGUI.py:5375
  6334. msgid "Toolchange X,Y position."
  6335. msgstr "Toolchange X,Y position."
  6336. #: flatcamGUI/FlatCAMGUI.py:4819 flatcamGUI/FlatCAMGUI.py:5382
  6337. #: flatcamGUI/ObjectUI.py:631
  6338. msgid "Start move Z:"
  6339. msgstr "Start move Z:"
  6340. #: flatcamGUI/FlatCAMGUI.py:4821
  6341. msgid ""
  6342. "Height of the tool just after start.\n"
  6343. "Delete the value if you don't need this feature."
  6344. msgstr ""
  6345. "Height of the tool just after start.\n"
  6346. "Delete the value if you don't need this feature."
  6347. #: flatcamGUI/FlatCAMGUI.py:4828 flatcamGUI/FlatCAMGUI.py:5392
  6348. #: flatcamGUI/ObjectUI.py:641 flatcamGUI/ObjectUI.py:1150
  6349. msgid "End move Z:"
  6350. msgstr "End move Z:"
  6351. #: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:5394
  6352. msgid ""
  6353. "Height of the tool after\n"
  6354. "the last move at the end of the job."
  6355. msgstr ""
  6356. "Height of the tool after\n"
  6357. "the last move at the end of the job."
  6358. #: flatcamGUI/FlatCAMGUI.py:4837 flatcamGUI/FlatCAMGUI.py:5402
  6359. #: flatcamGUI/ObjectUI.py:662
  6360. msgid "Feedrate Rapids:"
  6361. msgstr "Feedrate Rapids:"
  6362. #: flatcamGUI/FlatCAMGUI.py:4839 flatcamGUI/ObjectUI.py:664
  6363. msgid ""
  6364. "Tool speed while drilling\n"
  6365. "(in units per minute).\n"
  6366. "This is for the rapid move G00.\n"
  6367. "It is useful only for Marlin,\n"
  6368. "ignore for any other cases."
  6369. msgstr ""
  6370. "Tool speed while drilling\n"
  6371. "(in units per minute).\n"
  6372. "This is for the rapid move G00.\n"
  6373. "It is useful only for Marlin,\n"
  6374. "ignore for any other cases."
  6375. #: flatcamGUI/FlatCAMGUI.py:4850 flatcamGUI/FlatCAMGUI.py:5426
  6376. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1262
  6377. msgid "Probe Z depth:"
  6378. msgstr "Probe Z depth:"
  6379. #: flatcamGUI/FlatCAMGUI.py:4852 flatcamGUI/FlatCAMGUI.py:5428
  6380. #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1265
  6381. msgid ""
  6382. "The maximum depth that the probe is allowed\n"
  6383. "to probe. Negative value, in current units."
  6384. msgstr ""
  6385. "The maximum depth that the probe is allowed\n"
  6386. "to probe. Negative value, in current units."
  6387. #: flatcamGUI/FlatCAMGUI.py:4860 flatcamGUI/FlatCAMGUI.py:5436
  6388. #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1276
  6389. msgid "Feedrate Probe:"
  6390. msgstr "Feedrate Probe:"
  6391. #: flatcamGUI/FlatCAMGUI.py:4862 flatcamGUI/FlatCAMGUI.py:5438
  6392. #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1279
  6393. msgid "The feedrate used while the probe is probing."
  6394. msgstr "The feedrate used while the probe is probing."
  6395. #: flatcamGUI/FlatCAMGUI.py:4868 flatcamGUI/FlatCAMGUI.py:5445
  6396. msgid "Fast Plunge:"
  6397. msgstr "Fast Plunge:"
  6398. #: flatcamGUI/FlatCAMGUI.py:4870 flatcamGUI/FlatCAMGUI.py:5447
  6399. msgid ""
  6400. "By checking this, the vertical move from\n"
  6401. "Z_Toolchange to Z_move is done with G0,\n"
  6402. "meaning the fastest speed available.\n"
  6403. "WARNING: the move is done at Toolchange X,Y coords."
  6404. msgstr ""
  6405. "By checking this, the vertical move from\n"
  6406. "Z_Toolchange to Z_move is done with G0,\n"
  6407. "meaning the fastest speed available.\n"
  6408. "WARNING: the move is done at Toolchange X,Y coords."
  6409. #: flatcamGUI/FlatCAMGUI.py:4879
  6410. msgid "Fast Retract:"
  6411. msgstr "Fast Retract:"
  6412. #: flatcamGUI/FlatCAMGUI.py:4881
  6413. msgid ""
  6414. "Exit hole strategy.\n"
  6415. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6416. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6417. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6418. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6419. "(travel height) is done as fast as possible (G0) in one move."
  6420. msgstr ""
  6421. "Exit hole strategy.\n"
  6422. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6423. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6424. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6425. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6426. "(travel height) is done as fast as possible (G0) in one move."
  6427. #: flatcamGUI/FlatCAMGUI.py:4900
  6428. msgid "Excellon Export"
  6429. msgstr "Excellon Export"
  6430. #: flatcamGUI/FlatCAMGUI.py:4905
  6431. msgid ""
  6432. "The parameters set here are used in the file exported\n"
  6433. "when using the File -> Export -> Export Excellon menu entry."
  6434. msgstr ""
  6435. "The parameters set here are used in the file exported\n"
  6436. "when using the File -> Export -> Export Excellon menu entry."
  6437. #: flatcamGUI/FlatCAMGUI.py:4916 flatcamGUI/FlatCAMGUI.py:4922
  6438. msgid "The units used in the Excellon file."
  6439. msgstr "The units used in the Excellon file."
  6440. #: flatcamGUI/FlatCAMGUI.py:4930
  6441. msgid ""
  6442. "The NC drill files, usually named Excellon files\n"
  6443. "are files that can be found in different formats.\n"
  6444. "Here we set the format used when the provided\n"
  6445. "coordinates are not using period."
  6446. msgstr ""
  6447. "The NC drill files, usually named Excellon files\n"
  6448. "are files that can be found in different formats.\n"
  6449. "Here we set the format used when the provided\n"
  6450. "coordinates are not using period."
  6451. #: flatcamGUI/FlatCAMGUI.py:4966
  6452. msgid "<b>Format:</b>"
  6453. msgstr "<b>Format:</b>"
  6454. #: flatcamGUI/FlatCAMGUI.py:4968 flatcamGUI/FlatCAMGUI.py:4978
  6455. msgid ""
  6456. "Select the kind of coordinates format used.\n"
  6457. "Coordinates can be saved with decimal point or without.\n"
  6458. "When there is no decimal point, it is required to specify\n"
  6459. "the number of digits for integer part and the number of decimals.\n"
  6460. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6461. "or TZ = trailing zeros are kept."
  6462. msgstr ""
  6463. "Select the kind of coordinates format used.\n"
  6464. "Coordinates can be saved with decimal point or without.\n"
  6465. "When there is no decimal point, it is required to specify\n"
  6466. "the number of digits for integer part and the number of decimals.\n"
  6467. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6468. "or TZ = trailing zeros are kept."
  6469. #: flatcamGUI/FlatCAMGUI.py:4975
  6470. msgid "Decimal"
  6471. msgstr "Decimal"
  6472. #: flatcamGUI/FlatCAMGUI.py:4976
  6473. msgid "No-Decimal"
  6474. msgstr "No-Decimal"
  6475. #: flatcamGUI/FlatCAMGUI.py:5002
  6476. msgid ""
  6477. "This sets the default type of Excellon zeros.\n"
  6478. "If LZ then Leading Zeros are kept and\n"
  6479. "Trailing Zeros are removed.\n"
  6480. "If TZ is checked then Trailing Zeros are kept\n"
  6481. "and Leading Zeros are removed."
  6482. msgstr ""
  6483. "This sets the default type of Excellon zeros.\n"
  6484. "If LZ then Leading Zeros are kept and\n"
  6485. "Trailing Zeros are removed.\n"
  6486. "If TZ is checked then Trailing Zeros are kept\n"
  6487. "and Leading Zeros are removed."
  6488. #: flatcamGUI/FlatCAMGUI.py:5032
  6489. msgid "A list of Excellon Editor parameters."
  6490. msgstr "A list of Excellon Editor parameters."
  6491. #: flatcamGUI/FlatCAMGUI.py:5042
  6492. msgid ""
  6493. "Set the number of selected Excellon geometry\n"
  6494. "items above which the utility geometry\n"
  6495. "becomes just a selection rectangle.\n"
  6496. "Increases the performance when moving a\n"
  6497. "large number of geometric elements."
  6498. msgstr ""
  6499. "Set the number of selected Excellon geometry\n"
  6500. "items above which the utility geometry\n"
  6501. "becomes just a selection rectangle.\n"
  6502. "Increases the performance when moving a\n"
  6503. "large number of geometric elements."
  6504. #: flatcamGUI/FlatCAMGUI.py:5054
  6505. msgid "New Tool Dia:"
  6506. msgstr "New Tool Dia:"
  6507. #: flatcamGUI/FlatCAMGUI.py:5077
  6508. msgid "<b>Linear Drill Array:</b>"
  6509. msgstr "<b>Linear Drill Array:</b>"
  6510. #: flatcamGUI/FlatCAMGUI.py:5081
  6511. msgid "Linear Dir.:"
  6512. msgstr "Linear Dir.:"
  6513. #: flatcamGUI/FlatCAMGUI.py:5117
  6514. msgid "<b>Circular Drill Array:</b>"
  6515. msgstr "<b>Circular Drill Array:</b>"
  6516. #: flatcamGUI/FlatCAMGUI.py:5121
  6517. msgid "Circular Dir.:"
  6518. msgstr "Circular Dir.:"
  6519. #: flatcamGUI/FlatCAMGUI.py:5123
  6520. msgid ""
  6521. "Direction for circular array.\n"
  6522. "Can be CW = clockwise or CCW = counter clockwise."
  6523. msgstr ""
  6524. "Direction for circular array.\n"
  6525. "Can be CW = clockwise or CCW = counter clockwise."
  6526. #: flatcamGUI/FlatCAMGUI.py:5134
  6527. msgid "Circ. Angle:"
  6528. msgstr "Circ. Angle:"
  6529. #: flatcamGUI/FlatCAMGUI.py:5151
  6530. msgid "Geometry General"
  6531. msgstr "Geometry General"
  6532. #: flatcamGUI/FlatCAMGUI.py:5170
  6533. msgid ""
  6534. "The number of circle steps for <b>Geometry</b> \n"
  6535. "circle and arc shapes linear approximation."
  6536. msgstr ""
  6537. "The number of circle steps for <b>Geometry</b> \n"
  6538. "circle and arc shapes linear approximation."
  6539. #: flatcamGUI/FlatCAMGUI.py:5178
  6540. msgid "<b>Tools:</b>"
  6541. msgstr "<b>Tools:</b>"
  6542. #: flatcamGUI/FlatCAMGUI.py:5184 flatcamGUI/FlatCAMGUI.py:5793
  6543. msgid "Diameters of the cutting tools, separated by ','"
  6544. msgstr "Diameters of the cutting tools, separated by ','"
  6545. #: flatcamGUI/FlatCAMGUI.py:5198
  6546. msgid "Geometry Options"
  6547. msgstr "Geometry Options"
  6548. #: flatcamGUI/FlatCAMGUI.py:5203
  6549. msgid "<b>Create CNC Job:</b>"
  6550. msgstr "<b>Create CNC Job:</b>"
  6551. #: flatcamGUI/FlatCAMGUI.py:5205
  6552. msgid ""
  6553. "Create a CNC Job object\n"
  6554. "tracing the contours of this\n"
  6555. "Geometry object."
  6556. msgstr ""
  6557. "Create a CNC Job object\n"
  6558. "tracing the contours of this\n"
  6559. "Geometry object."
  6560. #: flatcamGUI/FlatCAMGUI.py:5217 flatcamGUI/ObjectUI.py:1071
  6561. msgid ""
  6562. "Cutting depth (negative)\n"
  6563. "below the copper surface."
  6564. msgstr ""
  6565. "Cutting depth (negative)\n"
  6566. "below the copper surface."
  6567. #: flatcamGUI/FlatCAMGUI.py:5225
  6568. msgid "Multidepth"
  6569. msgstr "Multidepth"
  6570. #: flatcamGUI/FlatCAMGUI.py:5227
  6571. msgid "Multidepth usage: True or False."
  6572. msgstr "Multidepth usage: True or False."
  6573. #: flatcamGUI/FlatCAMGUI.py:5232
  6574. msgid "Depth/Pass:"
  6575. msgstr "Depth/Pass:"
  6576. #: flatcamGUI/FlatCAMGUI.py:5234
  6577. msgid ""
  6578. "The depth to cut on each pass,\n"
  6579. "when multidepth is enabled.\n"
  6580. "It has positive value although\n"
  6581. "it is a fraction from the depth\n"
  6582. "which has negative value."
  6583. msgstr ""
  6584. "The depth to cut on each pass,\n"
  6585. "when multidepth is enabled.\n"
  6586. "It has positive value although\n"
  6587. "it is a fraction from the depth\n"
  6588. "which has negative value."
  6589. #: flatcamGUI/FlatCAMGUI.py:5250 flatcamGUI/ObjectUI.py:1107
  6590. msgid ""
  6591. "Height of the tool when\n"
  6592. "moving without cutting."
  6593. msgstr ""
  6594. "Height of the tool when\n"
  6595. "moving without cutting."
  6596. #: flatcamGUI/FlatCAMGUI.py:5277 flatcamGUI/ObjectUI.py:1162
  6597. msgid "Feed Rate X-Y:"
  6598. msgstr "Feed Rate X-Y:"
  6599. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/ObjectUI.py:1165
  6600. msgid ""
  6601. "Cutting speed in the XY\n"
  6602. "plane in units per minute"
  6603. msgstr ""
  6604. "Cutting speed in the XY\n"
  6605. "plane in units per minute"
  6606. #: flatcamGUI/FlatCAMGUI.py:5287
  6607. msgid "Feed Rate Z:"
  6608. msgstr "Feed Rate Z:"
  6609. #: flatcamGUI/FlatCAMGUI.py:5289
  6610. msgid ""
  6611. "Cutting speed in the XY\n"
  6612. "plane in units per minute.\n"
  6613. "It is called also Plunge."
  6614. msgstr ""
  6615. "Cutting speed in the XY\n"
  6616. "plane in units per minute.\n"
  6617. "It is called also Plunge."
  6618. #: flatcamGUI/FlatCAMGUI.py:5298 flatcamGUI/ObjectUI.py:679
  6619. #: flatcamGUI/ObjectUI.py:1217
  6620. msgid "Spindle speed:"
  6621. msgstr "Spindle speed:"
  6622. #: flatcamGUI/FlatCAMGUI.py:5341
  6623. msgid ""
  6624. "The postprocessor file that dictates\n"
  6625. "Machine Code output."
  6626. msgstr ""
  6627. "The postprocessor file that dictates\n"
  6628. "Machine Code output."
  6629. #: flatcamGUI/FlatCAMGUI.py:5357
  6630. msgid "Geometry Adv. Options"
  6631. msgstr "Geometry Adv. Options"
  6632. #: flatcamGUI/FlatCAMGUI.py:5364
  6633. msgid ""
  6634. "Parameters to create a CNC Job object\n"
  6635. "tracing the contours of a Geometry object."
  6636. msgstr ""
  6637. "Parameters to create a CNC Job object\n"
  6638. "tracing the contours of a Geometry object."
  6639. #: flatcamGUI/FlatCAMGUI.py:5384
  6640. msgid ""
  6641. "Height of the tool just after starting the work.\n"
  6642. "Delete the value if you don't need this feature."
  6643. msgstr ""
  6644. "Height of the tool just after starting the work.\n"
  6645. "Delete the value if you don't need this feature."
  6646. #: flatcamGUI/FlatCAMGUI.py:5404
  6647. msgid ""
  6648. "Cutting speed in the XY plane\n"
  6649. "(in units per minute).\n"
  6650. "This is for the rapid move G00.\n"
  6651. "It is useful only for Marlin,\n"
  6652. "ignore for any other cases."
  6653. msgstr ""
  6654. "Cutting speed in the XY plane\n"
  6655. "(in units per minute).\n"
  6656. "This is for the rapid move G00.\n"
  6657. "It is useful only for Marlin,\n"
  6658. "ignore for any other cases."
  6659. #: flatcamGUI/FlatCAMGUI.py:5416
  6660. msgid "Re-cut 1st pt."
  6661. msgstr "Re-cut 1st pt."
  6662. #: flatcamGUI/FlatCAMGUI.py:5418 flatcamGUI/ObjectUI.py:1208
  6663. msgid ""
  6664. "In order to remove possible\n"
  6665. "copper leftovers where first cut\n"
  6666. "meet with last cut, we generate an\n"
  6667. "extended cut over the first cut section."
  6668. msgstr ""
  6669. "In order to remove possible\n"
  6670. "copper leftovers where first cut\n"
  6671. "meet with last cut, we generate an\n"
  6672. "extended cut over the first cut section."
  6673. #: flatcamGUI/FlatCAMGUI.py:5457
  6674. msgid "Seg. X size:"
  6675. msgstr "Seg. X size:"
  6676. #: flatcamGUI/FlatCAMGUI.py:5459
  6677. msgid ""
  6678. "The size of the trace segment on the X axis.\n"
  6679. "Useful for auto-leveling.\n"
  6680. "A value of 0 means no segmentation on the X axis."
  6681. msgstr ""
  6682. "The size of the trace segment on the X axis.\n"
  6683. "Useful for auto-leveling.\n"
  6684. "A value of 0 means no segmentation on the X axis."
  6685. #: flatcamGUI/FlatCAMGUI.py:5468
  6686. msgid "Seg. Y size:"
  6687. msgstr "Seg. Y size:"
  6688. #: flatcamGUI/FlatCAMGUI.py:5470
  6689. msgid ""
  6690. "The size of the trace segment on the Y axis.\n"
  6691. "Useful for auto-leveling.\n"
  6692. "A value of 0 means no segmentation on the Y axis."
  6693. msgstr ""
  6694. "The size of the trace segment on the Y axis.\n"
  6695. "Useful for auto-leveling.\n"
  6696. "A value of 0 means no segmentation on the Y axis."
  6697. #: flatcamGUI/FlatCAMGUI.py:5486
  6698. msgid "Geometry Editor"
  6699. msgstr "Geometry Editor"
  6700. #: flatcamGUI/FlatCAMGUI.py:5491
  6701. msgid "A list of Geometry Editor parameters."
  6702. msgstr "A list of Geometry Editor parameters."
  6703. #: flatcamGUI/FlatCAMGUI.py:5501
  6704. msgid ""
  6705. "Set the number of selected geometry\n"
  6706. "items above which the utility geometry\n"
  6707. "becomes just a selection rectangle.\n"
  6708. "Increases the performance when moving a\n"
  6709. "large number of geometric elements."
  6710. msgstr ""
  6711. "Set the number of selected geometry\n"
  6712. "items above which the utility geometry\n"
  6713. "becomes just a selection rectangle.\n"
  6714. "Increases the performance when moving a\n"
  6715. "large number of geometric elements."
  6716. #: flatcamGUI/FlatCAMGUI.py:5520
  6717. msgid "CNC Job General"
  6718. msgstr "CNC Job General"
  6719. #: flatcamGUI/FlatCAMGUI.py:5533 flatcamGUI/ObjectUI.py:541
  6720. #: flatcamGUI/ObjectUI.py:874 flatcamGUI/ObjectUI.py:1452
  6721. msgid "Plot Object"
  6722. msgstr "Plot Object"
  6723. #: flatcamGUI/FlatCAMGUI.py:5540
  6724. msgid "Plot kind:"
  6725. msgstr "Plot kind:"
  6726. #: flatcamGUI/FlatCAMGUI.py:5542 flatcamGUI/ObjectUI.py:1361
  6727. msgid ""
  6728. "This selects the kind of geometries on the canvas to plot.\n"
  6729. "Those can be either of type 'Travel' which means the moves\n"
  6730. "above the work piece or it can be of type 'Cut',\n"
  6731. "which means the moves that cut into the material."
  6732. msgstr ""
  6733. "This selects the kind of geometries on the canvas to plot.\n"
  6734. "Those can be either of type 'Travel' which means the moves\n"
  6735. "above the work piece or it can be of type 'Cut',\n"
  6736. "which means the moves that cut into the material."
  6737. #: flatcamGUI/FlatCAMGUI.py:5550 flatcamGUI/ObjectUI.py:1370
  6738. msgid "Travel"
  6739. msgstr "Travel"
  6740. #: flatcamGUI/FlatCAMGUI.py:5559
  6741. msgid "Display Annotation:"
  6742. msgstr "Display Annotation:"
  6743. #: flatcamGUI/FlatCAMGUI.py:5561 flatcamGUI/ObjectUI.py:1377
  6744. msgid ""
  6745. "This selects if to display text annotation on the plot.\n"
  6746. "When checked it will display numbers in order for each end\n"
  6747. "of a travel line."
  6748. msgstr ""
  6749. "This selects if to display text annotation on the plot.\n"
  6750. "When checked it will display numbers in order for each end\n"
  6751. "of a travel line."
  6752. #: flatcamGUI/FlatCAMGUI.py:5573
  6753. msgid "Annotation Size:"
  6754. msgstr "Annotation Size:"
  6755. #: flatcamGUI/FlatCAMGUI.py:5575
  6756. msgid "The font size of the annotation text. In pixels."
  6757. msgstr "The font size of the annotation text. In pixels."
  6758. #: flatcamGUI/FlatCAMGUI.py:5583
  6759. msgid "Annotation Color:"
  6760. msgstr "Annotation Color:"
  6761. #: flatcamGUI/FlatCAMGUI.py:5585
  6762. msgid "Set the font color for the annotation texts."
  6763. msgstr "Set the font color for the annotation texts."
  6764. #: flatcamGUI/FlatCAMGUI.py:5608
  6765. msgid ""
  6766. "The number of circle steps for <b>GCode</b> \n"
  6767. "circle and arc shapes linear approximation."
  6768. msgstr ""
  6769. "The number of circle steps for <b>GCode</b> \n"
  6770. "circle and arc shapes linear approximation."
  6771. #: flatcamGUI/FlatCAMGUI.py:5618
  6772. msgid ""
  6773. "Diameter of the tool to be\n"
  6774. "rendered in the plot."
  6775. msgstr ""
  6776. "Diameter of the tool to be\n"
  6777. "rendered in the plot."
  6778. #: flatcamGUI/FlatCAMGUI.py:5626
  6779. msgid "Coords dec.:"
  6780. msgstr "Coords dec.:"
  6781. #: flatcamGUI/FlatCAMGUI.py:5628
  6782. msgid ""
  6783. "The number of decimals to be used for \n"
  6784. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6785. msgstr ""
  6786. "The number of decimals to be used for \n"
  6787. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6788. #: flatcamGUI/FlatCAMGUI.py:5636
  6789. msgid "Feedrate dec.:"
  6790. msgstr "Feedrate dec.:"
  6791. #: flatcamGUI/FlatCAMGUI.py:5638
  6792. msgid ""
  6793. "The number of decimals to be used for \n"
  6794. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6795. msgstr ""
  6796. "The number of decimals to be used for \n"
  6797. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6798. #: flatcamGUI/FlatCAMGUI.py:5653
  6799. msgid "CNC Job Options"
  6800. msgstr "CNC Job Options"
  6801. #: flatcamGUI/FlatCAMGUI.py:5656 flatcamGUI/FlatCAMGUI.py:5697
  6802. msgid "<b>Export G-Code:</b>"
  6803. msgstr "<b>Export G-Code:</b>"
  6804. #: flatcamGUI/FlatCAMGUI.py:5658 flatcamGUI/FlatCAMGUI.py:5699
  6805. #: flatcamGUI/ObjectUI.py:1488
  6806. msgid ""
  6807. "Export and save G-Code to\n"
  6808. "make this object to a file."
  6809. msgstr ""
  6810. "Export and save G-Code to\n"
  6811. "make this object to a file."
  6812. #: flatcamGUI/FlatCAMGUI.py:5664
  6813. msgid "Prepend to G-Code:"
  6814. msgstr "Prepend to G-Code:"
  6815. #: flatcamGUI/FlatCAMGUI.py:5666
  6816. msgid ""
  6817. "Type here any G-Code commands you would\n"
  6818. "like to add at the beginning of the G-Code file."
  6819. msgstr ""
  6820. "Type here any G-Code commands you would\n"
  6821. "like to add at the beginning of the G-Code file."
  6822. #: flatcamGUI/FlatCAMGUI.py:5675
  6823. msgid "Append to G-Code:"
  6824. msgstr "Append to G-Code:"
  6825. #: flatcamGUI/FlatCAMGUI.py:5677 flatcamGUI/ObjectUI.py:1510
  6826. msgid ""
  6827. "Type here any G-Code commands you would\n"
  6828. "like to append to the generated file.\n"
  6829. "I.e.: M2 (End of program)"
  6830. msgstr ""
  6831. "Type here any G-Code commands you would\n"
  6832. "like to append to the generated file.\n"
  6833. "I.e.: M2 (End of program)"
  6834. #: flatcamGUI/FlatCAMGUI.py:5694
  6835. msgid "CNC Job Adv. Options"
  6836. msgstr "CNC Job Adv. Options"
  6837. #: flatcamGUI/FlatCAMGUI.py:5705 flatcamGUI/ObjectUI.py:1528
  6838. msgid "Toolchange G-Code:"
  6839. msgstr "Toolchange G-Code:"
  6840. #: flatcamGUI/FlatCAMGUI.py:5707
  6841. msgid ""
  6842. "Type here any G-Code commands you would\n"
  6843. "like to be executed when Toolchange event is encountered.\n"
  6844. "This will constitute a Custom Toolchange GCode,\n"
  6845. "or a Toolchange Macro."
  6846. msgstr ""
  6847. "Type here any G-Code commands you would\n"
  6848. "like to be executed when Toolchange event is encountered.\n"
  6849. "This will constitute a Custom Toolchange GCode,\n"
  6850. "or a Toolchange Macro."
  6851. #: flatcamGUI/FlatCAMGUI.py:5721 flatcamGUI/ObjectUI.py:1550
  6852. msgid "Use Toolchange Macro"
  6853. msgstr "Use Toolchange Macro"
  6854. #: flatcamGUI/FlatCAMGUI.py:5723 flatcamGUI/ObjectUI.py:1553
  6855. msgid ""
  6856. "Check this box if you want to use\n"
  6857. "a Custom Toolchange GCode (macro)."
  6858. msgstr ""
  6859. "Check this box if you want to use\n"
  6860. "a Custom Toolchange GCode (macro)."
  6861. #: flatcamGUI/FlatCAMGUI.py:5735 flatcamGUI/ObjectUI.py:1562
  6862. msgid ""
  6863. "A list of the FlatCAM variables that can be used\n"
  6864. "in the Toolchange event.\n"
  6865. "They have to be surrounded by the '%' symbol"
  6866. msgstr ""
  6867. "A list of the FlatCAM variables that can be used\n"
  6868. "in the Toolchange event.\n"
  6869. "They have to be surrounded by the '%' symbol"
  6870. #: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/ObjectUI.py:1569
  6871. msgid "Parameters"
  6872. msgstr "Parameters"
  6873. #: flatcamGUI/FlatCAMGUI.py:5745 flatcamGUI/ObjectUI.py:1572
  6874. msgid "FlatCAM CNC parameters"
  6875. msgstr "FlatCAM CNC parameters"
  6876. #: flatcamGUI/FlatCAMGUI.py:5746 flatcamGUI/ObjectUI.py:1573
  6877. msgid "tool = tool number"
  6878. msgstr "tool = tool number"
  6879. #: flatcamGUI/FlatCAMGUI.py:5747 flatcamGUI/ObjectUI.py:1574
  6880. msgid "tooldia = tool diameter"
  6881. msgstr "tooldia = tool diameter"
  6882. #: flatcamGUI/FlatCAMGUI.py:5748 flatcamGUI/ObjectUI.py:1575
  6883. msgid "t_drills = for Excellon, total number of drills"
  6884. msgstr "t_drills = for Excellon, total number of drills"
  6885. #: flatcamGUI/FlatCAMGUI.py:5749 flatcamGUI/ObjectUI.py:1576
  6886. msgid "x_toolchange = X coord for Toolchange"
  6887. msgstr "x_toolchange = X coord for Toolchange"
  6888. #: flatcamGUI/FlatCAMGUI.py:5750 flatcamGUI/ObjectUI.py:1577
  6889. msgid "y_toolchange = Y coord for Toolchange"
  6890. msgstr "y_toolchange = Y coord for Toolchange"
  6891. #: flatcamGUI/FlatCAMGUI.py:5751 flatcamGUI/ObjectUI.py:1578
  6892. msgid "z_toolchange = Z coord for Toolchange"
  6893. msgstr "z_toolchange = Z coord for Toolchange"
  6894. #: flatcamGUI/FlatCAMGUI.py:5752
  6895. msgid "z_cut = Z depth for the cut"
  6896. msgstr "z_cut = Z depth for the cut"
  6897. #: flatcamGUI/FlatCAMGUI.py:5753
  6898. msgid "z_move = Z height for travel"
  6899. msgstr "z_move = Z height for travel"
  6900. #: flatcamGUI/FlatCAMGUI.py:5754 flatcamGUI/ObjectUI.py:1581
  6901. msgid "z_depthpercut = the step value for multidepth cut"
  6902. msgstr "z_depthpercut = the step value for multidepth cut"
  6903. #: flatcamGUI/FlatCAMGUI.py:5755 flatcamGUI/ObjectUI.py:1582
  6904. msgid "spindlesspeed = the value for the spindle speed"
  6905. msgstr "spindlesspeed = the value for the spindle speed"
  6906. #: flatcamGUI/FlatCAMGUI.py:5757 flatcamGUI/ObjectUI.py:1583
  6907. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6908. msgstr "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6909. #: flatcamGUI/FlatCAMGUI.py:5778
  6910. msgid "NCC Tool Options"
  6911. msgstr "NCC Tool Options"
  6912. #: flatcamGUI/FlatCAMGUI.py:5791 flatcamGUI/FlatCAMGUI.py:6536
  6913. msgid "Tools dia:"
  6914. msgstr "Tools dia:"
  6915. #: flatcamGUI/FlatCAMGUI.py:5801 flatcamTools/ToolNonCopperClear.py:167
  6916. #, python-format
  6917. msgid ""
  6918. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6919. "Example:\n"
  6920. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6921. "\n"
  6922. "Adjust the value starting with lower values\n"
  6923. "and increasing it if areas that should be cleared are still \n"
  6924. "not cleared.\n"
  6925. "Lower values = faster processing, faster execution on PCB.\n"
  6926. "Higher values = slow processing and slow execution on CNC\n"
  6927. "due of too many paths."
  6928. msgstr ""
  6929. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6930. "Example:\n"
  6931. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6932. "\n"
  6933. "Adjust the value starting with lower values\n"
  6934. "and increasing it if areas that should be cleared are still \n"
  6935. "not cleared.\n"
  6936. "Lower values = faster processing, faster execution on PCB.\n"
  6937. "Higher values = slow processing and slow execution on CNC\n"
  6938. "due of too many paths."
  6939. #: flatcamGUI/FlatCAMGUI.py:5817 flatcamTools/ToolNonCopperClear.py:183
  6940. msgid "Bounding box margin."
  6941. msgstr "Bounding box margin."
  6942. #: flatcamGUI/FlatCAMGUI.py:5826 flatcamTools/ToolNonCopperClear.py:192
  6943. #: flatcamTools/ToolPaint.py:190
  6944. msgid ""
  6945. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6946. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6947. "lines."
  6948. msgstr ""
  6949. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6950. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6951. "lines."
  6952. #: flatcamGUI/FlatCAMGUI.py:5858 flatcamTools/ToolNonCopperClear.py:224
  6953. #: flatcamTools/ToolPaint.py:222
  6954. msgid "Rest M.:"
  6955. msgstr "Rest M.:"
  6956. #: flatcamGUI/FlatCAMGUI.py:5860
  6957. msgid ""
  6958. "If checked, use 'rest machining'.\n"
  6959. "Basically it will clear copper outside PCB features,\n"
  6960. "using the biggest tool and continue with the next tools,\n"
  6961. "from bigger to smaller, to clear areas of copper that\n"
  6962. "could not be cleared by previous tool.\n"
  6963. "If not checked, use the standard algorithm."
  6964. msgstr ""
  6965. "If checked, use 'rest machining'.\n"
  6966. "Basically it will clear copper outside PCB features,\n"
  6967. "using the biggest tool and continue with the next tools,\n"
  6968. "from bigger to smaller, to clear areas of copper that\n"
  6969. "could not be cleared by previous tool.\n"
  6970. "If not checked, use the standard algorithm."
  6971. #: flatcamGUI/FlatCAMGUI.py:5879
  6972. msgid "Cutout Tool Options"
  6973. msgstr "Cutout Tool Options"
  6974. #: flatcamGUI/FlatCAMGUI.py:5884 flatcamGUI/ObjectUI.py:399
  6975. msgid ""
  6976. "Create toolpaths to cut around\n"
  6977. "the PCB and separate it from\n"
  6978. "the original board."
  6979. msgstr ""
  6980. "Create toolpaths to cut around\n"
  6981. "the PCB and separate it from\n"
  6982. "the original board."
  6983. #: flatcamGUI/FlatCAMGUI.py:5902 flatcamTools/ToolCutOut.py:77
  6984. msgid "Obj kind:"
  6985. msgstr "Obj kind:"
  6986. #: flatcamGUI/FlatCAMGUI.py:5904 flatcamTools/ToolCutOut.py:79
  6987. msgid ""
  6988. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6989. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6990. "Gerber object, which is made\n"
  6991. "out of many individual PCB outlines."
  6992. msgstr ""
  6993. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6994. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6995. "Gerber object, which is made\n"
  6996. "out of many individual PCB outlines."
  6997. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/FlatCAMGUI.py:6121
  6998. #: flatcamTools/ToolCutOut.py:85 flatcamTools/ToolPaint.py:247
  6999. msgid "Single"
  7000. msgstr "Single"
  7001. #: flatcamGUI/FlatCAMGUI.py:5912 flatcamTools/ToolCutOut.py:86
  7002. msgid "Panel"
  7003. msgstr "Panel"
  7004. #: flatcamGUI/FlatCAMGUI.py:5918
  7005. msgid ""
  7006. "Distance from objects at which\n"
  7007. "to draw the cutout."
  7008. msgstr ""
  7009. "Distance from objects at which\n"
  7010. "to draw the cutout."
  7011. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamTools/ToolCutOut.py:111
  7012. msgid "Gap size:"
  7013. msgstr "Gap size:"
  7014. #: flatcamGUI/FlatCAMGUI.py:5927
  7015. msgid ""
  7016. "Size of the gaps in the toolpath\n"
  7017. "that will remain to hold the\n"
  7018. "board in place."
  7019. msgstr ""
  7020. "Size of the gaps in the toolpath\n"
  7021. "that will remain to hold the\n"
  7022. "board in place."
  7023. #: flatcamGUI/FlatCAMGUI.py:5935 flatcamTools/ToolCutOut.py:149
  7024. msgid "Gaps:"
  7025. msgstr "Gaps:"
  7026. #: flatcamGUI/FlatCAMGUI.py:5937
  7027. msgid ""
  7028. "Number of bridge gaps used for the cutout.\n"
  7029. "There can be maximum 8 bridges/gaps.\n"
  7030. "The choices are:\n"
  7031. "- lr - left + right\n"
  7032. "- tb - top + bottom\n"
  7033. "- 4 - left + right +top + bottom\n"
  7034. "- 2lr - 2*left + 2*right\n"
  7035. "- 2tb - 2*top + 2*bottom\n"
  7036. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7037. msgstr ""
  7038. "Number of bridge gaps used for the cutout.\n"
  7039. "There can be maximum 8 bridges/gaps.\n"
  7040. "The choices are:\n"
  7041. "- lr - left + right\n"
  7042. "- tb - top + bottom\n"
  7043. "- 4 - left + right +top + bottom\n"
  7044. "- 2lr - 2*left + 2*right\n"
  7045. "- 2tb - 2*top + 2*bottom\n"
  7046. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7047. #: flatcamGUI/FlatCAMGUI.py:5958 flatcamTools/ToolCutOut.py:130
  7048. msgid "Convex Sh.:"
  7049. msgstr "Convex Sh.:"
  7050. #: flatcamGUI/FlatCAMGUI.py:5960
  7051. msgid "Create a convex shape surrounding the entire PCB."
  7052. msgstr "Create a convex shape surrounding the entire PCB."
  7053. #: flatcamGUI/FlatCAMGUI.py:5973
  7054. msgid "2Sided Tool Options"
  7055. msgstr "2Sided Tool Options"
  7056. #: flatcamGUI/FlatCAMGUI.py:5978
  7057. msgid ""
  7058. "A tool to help in creating a double sided\n"
  7059. "PCB using alignment holes."
  7060. msgstr ""
  7061. "A tool to help in creating a double sided\n"
  7062. "PCB using alignment holes."
  7063. #: flatcamGUI/FlatCAMGUI.py:5988 flatcamTools/ToolDblSided.py:234
  7064. msgid "Drill diam.:"
  7065. msgstr "Drill diam.:"
  7066. #: flatcamGUI/FlatCAMGUI.py:5990 flatcamTools/ToolDblSided.py:225
  7067. #: flatcamTools/ToolDblSided.py:236
  7068. msgid "Diameter of the drill for the alignment holes."
  7069. msgstr "Diameter of the drill for the alignment holes."
  7070. #: flatcamGUI/FlatCAMGUI.py:5999 flatcamTools/ToolDblSided.py:120
  7071. msgid "Mirror Axis:"
  7072. msgstr "Mirror Axis:"
  7073. #: flatcamGUI/FlatCAMGUI.py:6001 flatcamTools/ToolDblSided.py:122
  7074. msgid "Mirror vertically (X) or horizontally (Y)."
  7075. msgstr "Mirror vertically (X) or horizontally (Y)."
  7076. #: flatcamGUI/FlatCAMGUI.py:6010 flatcamTools/ToolDblSided.py:131
  7077. msgid "Point"
  7078. msgstr "Point"
  7079. #: flatcamGUI/FlatCAMGUI.py:6011 flatcamTools/ToolDblSided.py:132
  7080. msgid "Box"
  7081. msgstr "Box"
  7082. #: flatcamGUI/FlatCAMGUI.py:6012 flatcamTools/ToolDblSided.py:133
  7083. msgid "Axis Ref:"
  7084. msgstr "Axis Ref:"
  7085. #: flatcamGUI/FlatCAMGUI.py:6014
  7086. msgid ""
  7087. "The axis should pass through a <b>point</b> or cut\n"
  7088. " a specified <b>box</b> (in a Geometry object) in \n"
  7089. "the middle."
  7090. msgstr ""
  7091. "The axis should pass through a <b>point</b> or cut\n"
  7092. " a specified <b>box</b> (in a Geometry object) in \n"
  7093. "the middle."
  7094. #: flatcamGUI/FlatCAMGUI.py:6030
  7095. msgid "Paint Tool Options"
  7096. msgstr "Paint Tool Options"
  7097. #: flatcamGUI/FlatCAMGUI.py:6037 flatcamGUI/ObjectUI.py:1311
  7098. msgid ""
  7099. "Creates tool paths to cover the\n"
  7100. "whole area of a polygon (remove\n"
  7101. "all copper). You will be asked\n"
  7102. "to click on the desired polygon."
  7103. msgstr ""
  7104. "Creates tool paths to cover the\n"
  7105. "whole area of a polygon (remove\n"
  7106. "all copper). You will be asked\n"
  7107. "to click on the desired polygon."
  7108. #: flatcamGUI/FlatCAMGUI.py:6061
  7109. msgid ""
  7110. "How much (fraction) of the tool\n"
  7111. "width to overlap each tool pass."
  7112. msgstr ""
  7113. "How much (fraction) of the tool\n"
  7114. "width to overlap each tool pass."
  7115. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamTools/ToolPaint.py:237
  7116. msgid "Selection:"
  7117. msgstr "Selection:"
  7118. #: flatcamGUI/FlatCAMGUI.py:6117
  7119. msgid "How to select the polygons to paint."
  7120. msgstr "How to select the polygons to paint."
  7121. #: flatcamGUI/FlatCAMGUI.py:6135
  7122. msgid "Film Tool Options"
  7123. msgstr "Film Tool Options"
  7124. #: flatcamGUI/FlatCAMGUI.py:6140
  7125. msgid ""
  7126. "Create a PCB film from a Gerber or Geometry\n"
  7127. "FlatCAM object.\n"
  7128. "The file is saved in SVG format."
  7129. msgstr ""
  7130. "Create a PCB film from a Gerber or Geometry\n"
  7131. "FlatCAM object.\n"
  7132. "The file is saved in SVG format."
  7133. #: flatcamGUI/FlatCAMGUI.py:6151 flatcamTools/ToolFilm.py:116
  7134. msgid "Film Type:"
  7135. msgstr "Film Type:"
  7136. #: flatcamGUI/FlatCAMGUI.py:6153 flatcamTools/ToolFilm.py:118
  7137. msgid ""
  7138. "Generate a Positive black film or a Negative film.\n"
  7139. "Positive means that it will print the features\n"
  7140. "with black on a white canvas.\n"
  7141. "Negative means that it will print the features\n"
  7142. "with white on a black canvas.\n"
  7143. "The Film format is SVG."
  7144. msgstr ""
  7145. "Generate a Positive black film or a Negative film.\n"
  7146. "Positive means that it will print the features\n"
  7147. "with black on a white canvas.\n"
  7148. "Negative means that it will print the features\n"
  7149. "with white on a black canvas.\n"
  7150. "The Film format is SVG."
  7151. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamTools/ToolFilm.py:130
  7152. msgid "Border:"
  7153. msgstr "Border:"
  7154. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamTools/ToolFilm.py:132
  7155. msgid ""
  7156. "Specify a border around the object.\n"
  7157. "Only for negative film.\n"
  7158. "It helps if we use as a Box Object the same \n"
  7159. "object as in Film Object. It will create a thick\n"
  7160. "black bar around the actual print allowing for a\n"
  7161. "better delimitation of the outline features which are of\n"
  7162. "white color like the rest and which may confound with the\n"
  7163. "surroundings if not for this border."
  7164. msgstr ""
  7165. "Specify a border around the object.\n"
  7166. "Only for negative film.\n"
  7167. "It helps if we use as a Box Object the same \n"
  7168. "object as in Film Object. It will create a thick\n"
  7169. "black bar around the actual print allowing for a\n"
  7170. "better delimitation of the outline features which are of\n"
  7171. "white color like the rest and which may confound with the\n"
  7172. "surroundings if not for this border."
  7173. #: flatcamGUI/FlatCAMGUI.py:6179 flatcamTools/ToolFilm.py:144
  7174. msgid "Scale Stroke:"
  7175. msgstr "Scale Stroke:"
  7176. #: flatcamGUI/FlatCAMGUI.py:6181 flatcamTools/ToolFilm.py:146
  7177. msgid ""
  7178. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7179. "It means that the line that envelope each SVG feature will be thicker or "
  7180. "thinner,\n"
  7181. "therefore the fine features may be more affected by this parameter."
  7182. msgstr ""
  7183. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7184. "It means that the line that envelope each SVG feature will be thicker or "
  7185. "thinner,\n"
  7186. "therefore the fine features may be more affected by this parameter."
  7187. #: flatcamGUI/FlatCAMGUI.py:6196
  7188. msgid "Panelize Tool Options"
  7189. msgstr "Panelize Tool Options"
  7190. #: flatcamGUI/FlatCAMGUI.py:6201
  7191. msgid ""
  7192. "Create an object that contains an array of (x, y) elements,\n"
  7193. "each element is a copy of the source object spaced\n"
  7194. "at a X distance, Y distance of each other."
  7195. msgstr ""
  7196. "Create an object that contains an array of (x, y) elements,\n"
  7197. "each element is a copy of the source object spaced\n"
  7198. "at a X distance, Y distance of each other."
  7199. #: flatcamGUI/FlatCAMGUI.py:6212 flatcamTools/ToolPanelize.py:147
  7200. msgid "Spacing cols:"
  7201. msgstr "Spacing cols:"
  7202. #: flatcamGUI/FlatCAMGUI.py:6214 flatcamTools/ToolPanelize.py:149
  7203. msgid ""
  7204. "Spacing between columns of the desired panel.\n"
  7205. "In current units."
  7206. msgstr ""
  7207. "Spacing between columns of the desired panel.\n"
  7208. "In current units."
  7209. #: flatcamGUI/FlatCAMGUI.py:6222 flatcamTools/ToolPanelize.py:156
  7210. msgid "Spacing rows:"
  7211. msgstr "Spacing rows:"
  7212. #: flatcamGUI/FlatCAMGUI.py:6224 flatcamTools/ToolPanelize.py:158
  7213. msgid ""
  7214. "Spacing between rows of the desired panel.\n"
  7215. "In current units."
  7216. msgstr ""
  7217. "Spacing between rows of the desired panel.\n"
  7218. "In current units."
  7219. #: flatcamGUI/FlatCAMGUI.py:6232 flatcamTools/ToolPanelize.py:165
  7220. msgid "Columns:"
  7221. msgstr "Columns:"
  7222. #: flatcamGUI/FlatCAMGUI.py:6234 flatcamTools/ToolPanelize.py:167
  7223. msgid "Number of columns of the desired panel"
  7224. msgstr "Number of columns of the desired panel"
  7225. #: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolPanelize.py:173
  7226. msgid "Rows:"
  7227. msgstr "Rows:"
  7228. #: flatcamGUI/FlatCAMGUI.py:6243 flatcamTools/ToolPanelize.py:175
  7229. msgid "Number of rows of the desired panel"
  7230. msgstr "Number of rows of the desired panel"
  7231. #: flatcamGUI/FlatCAMGUI.py:6249 flatcamTools/ToolPanelize.py:181
  7232. msgid "Gerber"
  7233. msgstr "Gerber"
  7234. #: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolPanelize.py:182
  7235. msgid "Geo"
  7236. msgstr "Geo"
  7237. #: flatcamGUI/FlatCAMGUI.py:6251
  7238. msgid "Panel Type:"
  7239. msgstr "Panel Type:"
  7240. #: flatcamGUI/FlatCAMGUI.py:6253
  7241. msgid ""
  7242. "Choose the type of object for the panel object:\n"
  7243. "- Gerber\n"
  7244. "- Geometry"
  7245. msgstr ""
  7246. "Choose the type of object for the panel object:\n"
  7247. "- Gerber\n"
  7248. "- Geometry"
  7249. #: flatcamGUI/FlatCAMGUI.py:6262
  7250. msgid "Constrain within:"
  7251. msgstr "Constrain within:"
  7252. #: flatcamGUI/FlatCAMGUI.py:6264 flatcamTools/ToolPanelize.py:195
  7253. msgid ""
  7254. "Area define by DX and DY within to constrain the panel.\n"
  7255. "DX and DY values are in current units.\n"
  7256. "Regardless of how many columns and rows are desired,\n"
  7257. "the final panel will have as many columns and rows as\n"
  7258. "they fit completely within selected area."
  7259. msgstr ""
  7260. "Area define by DX and DY within to constrain the panel.\n"
  7261. "DX and DY values are in current units.\n"
  7262. "Regardless of how many columns and rows are desired,\n"
  7263. "the final panel will have as many columns and rows as\n"
  7264. "they fit completely within selected area."
  7265. #: flatcamGUI/FlatCAMGUI.py:6273 flatcamTools/ToolPanelize.py:204
  7266. msgid "Width (DX):"
  7267. msgstr "Width (DX):"
  7268. #: flatcamGUI/FlatCAMGUI.py:6275 flatcamTools/ToolPanelize.py:206
  7269. msgid ""
  7270. "The width (DX) within which the panel must fit.\n"
  7271. "In current units."
  7272. msgstr ""
  7273. "The width (DX) within which the panel must fit.\n"
  7274. "In current units."
  7275. #: flatcamGUI/FlatCAMGUI.py:6282 flatcamTools/ToolPanelize.py:212
  7276. msgid "Height (DY):"
  7277. msgstr "Height (DY):"
  7278. #: flatcamGUI/FlatCAMGUI.py:6284 flatcamTools/ToolPanelize.py:214
  7279. msgid ""
  7280. "The height (DY)within which the panel must fit.\n"
  7281. "In current units."
  7282. msgstr ""
  7283. "The height (DY)within which the panel must fit.\n"
  7284. "In current units."
  7285. #: flatcamGUI/FlatCAMGUI.py:6298
  7286. msgid "Calculators Tool Options"
  7287. msgstr "Calculators Tool Options"
  7288. #: flatcamGUI/FlatCAMGUI.py:6301
  7289. msgid "<b>V-Shape Tool Calculator:</b>"
  7290. msgstr "<b>V-Shape Tool Calculator:</b>"
  7291. #: flatcamGUI/FlatCAMGUI.py:6303
  7292. msgid ""
  7293. "Calculate the tool diameter for a given V-shape tool,\n"
  7294. "having the tip diameter, tip angle and\n"
  7295. "depth-of-cut as parameters."
  7296. msgstr ""
  7297. "Calculate the tool diameter for a given V-shape tool,\n"
  7298. "having the tip diameter, tip angle and\n"
  7299. "depth-of-cut as parameters."
  7300. #: flatcamGUI/FlatCAMGUI.py:6314 flatcamTools/ToolCalculators.py:92
  7301. msgid "Tip Diameter:"
  7302. msgstr "Tip Diameter:"
  7303. #: flatcamGUI/FlatCAMGUI.py:6316
  7304. msgid ""
  7305. "This is the tool tip diameter.\n"
  7306. "It is specified by manufacturer."
  7307. msgstr ""
  7308. "This is the tool tip diameter.\n"
  7309. "It is specified by manufacturer."
  7310. #: flatcamGUI/FlatCAMGUI.py:6324
  7311. msgid "Tip angle:"
  7312. msgstr "Tip angle:"
  7313. #: flatcamGUI/FlatCAMGUI.py:6326
  7314. msgid ""
  7315. "This is the angle on the tip of the tool.\n"
  7316. "It is specified by manufacturer."
  7317. msgstr ""
  7318. "This is the angle on the tip of the tool.\n"
  7319. "It is specified by manufacturer."
  7320. #: flatcamGUI/FlatCAMGUI.py:6336
  7321. msgid ""
  7322. "This is depth to cut into material.\n"
  7323. "In the CNCJob object it is the CutZ parameter."
  7324. msgstr ""
  7325. "This is depth to cut into material.\n"
  7326. "In the CNCJob object it is the CutZ parameter."
  7327. #: flatcamGUI/FlatCAMGUI.py:6343
  7328. msgid "<b>ElectroPlating Calculator:</b>"
  7329. msgstr "<b>ElectroPlating Calculator:</b>"
  7330. #: flatcamGUI/FlatCAMGUI.py:6345 flatcamTools/ToolCalculators.py:148
  7331. msgid ""
  7332. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7333. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7334. "chloride."
  7335. msgstr ""
  7336. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7337. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7338. "chloride."
  7339. #: flatcamGUI/FlatCAMGUI.py:6355 flatcamTools/ToolCalculators.py:157
  7340. msgid "Board Length:"
  7341. msgstr "Board Length:"
  7342. #: flatcamGUI/FlatCAMGUI.py:6357 flatcamTools/ToolCalculators.py:161
  7343. msgid "This is the board length. In centimeters."
  7344. msgstr "This is the board length. In centimeters."
  7345. #: flatcamGUI/FlatCAMGUI.py:6363 flatcamTools/ToolCalculators.py:163
  7346. msgid "Board Width:"
  7347. msgstr "Board Width:"
  7348. #: flatcamGUI/FlatCAMGUI.py:6365 flatcamTools/ToolCalculators.py:167
  7349. msgid "This is the board width.In centimeters."
  7350. msgstr "This is the board width.In centimeters."
  7351. #: flatcamGUI/FlatCAMGUI.py:6370 flatcamTools/ToolCalculators.py:169
  7352. msgid "Current Density:"
  7353. msgstr "Current Density:"
  7354. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamTools/ToolCalculators.py:173
  7355. msgid ""
  7356. "Current density to pass through the board. \n"
  7357. "In Amps per Square Feet ASF."
  7358. msgstr ""
  7359. "Current density to pass through the board. \n"
  7360. "In Amps per Square Feet ASF."
  7361. #: flatcamGUI/FlatCAMGUI.py:6379 flatcamTools/ToolCalculators.py:176
  7362. msgid "Copper Growth:"
  7363. msgstr "Copper Growth:"
  7364. #: flatcamGUI/FlatCAMGUI.py:6382 flatcamTools/ToolCalculators.py:180
  7365. msgid ""
  7366. "How thick the copper growth is intended to be.\n"
  7367. "In microns."
  7368. msgstr ""
  7369. "How thick the copper growth is intended to be.\n"
  7370. "In microns."
  7371. #: flatcamGUI/FlatCAMGUI.py:6395
  7372. msgid "Transform Tool Options"
  7373. msgstr "Transform Tool Options"
  7374. #: flatcamGUI/FlatCAMGUI.py:6400
  7375. msgid ""
  7376. "Various transformations that can be applied\n"
  7377. "on a FlatCAM object."
  7378. msgstr ""
  7379. "Various transformations that can be applied\n"
  7380. "on a FlatCAM object."
  7381. #: flatcamGUI/FlatCAMGUI.py:6410
  7382. msgid "Rotate Angle:"
  7383. msgstr "Rotate Angle:"
  7384. #: flatcamGUI/FlatCAMGUI.py:6412
  7385. msgid "Angle for rotation. In degrees."
  7386. msgstr "Angle for rotation. In degrees."
  7387. #: flatcamGUI/FlatCAMGUI.py:6419
  7388. msgid "Skew_X angle:"
  7389. msgstr "Skew_X angle:"
  7390. #: flatcamGUI/FlatCAMGUI.py:6421
  7391. msgid "Angle for Skew/Shear on X axis. In degrees."
  7392. msgstr "Angle for Skew/Shear on X axis. In degrees."
  7393. #: flatcamGUI/FlatCAMGUI.py:6428
  7394. msgid "Skew_Y angle:"
  7395. msgstr "Skew_Y angle:"
  7396. #: flatcamGUI/FlatCAMGUI.py:6430
  7397. msgid "Angle for Skew/Shear on Y axis. In degrees."
  7398. msgstr "Angle for Skew/Shear on Y axis. In degrees."
  7399. #: flatcamGUI/FlatCAMGUI.py:6437
  7400. msgid "Scale_X factor:"
  7401. msgstr "Scale_X factor:"
  7402. #: flatcamGUI/FlatCAMGUI.py:6439
  7403. msgid "Factor for scaling on X axis."
  7404. msgstr "Factor for scaling on X axis."
  7405. #: flatcamGUI/FlatCAMGUI.py:6446
  7406. msgid "Scale_Y factor:"
  7407. msgstr "Scale_Y factor:"
  7408. #: flatcamGUI/FlatCAMGUI.py:6448
  7409. msgid "Factor for scaling on Y axis."
  7410. msgstr "Factor for scaling on Y axis."
  7411. #: flatcamGUI/FlatCAMGUI.py:6456
  7412. msgid ""
  7413. "Scale the selected object(s)\n"
  7414. "using the Scale_X factor for both axis."
  7415. msgstr ""
  7416. "Scale the selected object(s)\n"
  7417. "using the Scale_X factor for both axis."
  7418. #: flatcamGUI/FlatCAMGUI.py:6464 flatcamTools/ToolTransform.py:210
  7419. msgid ""
  7420. "Scale the selected object(s)\n"
  7421. "using the origin reference when checked,\n"
  7422. "and the center of the biggest bounding box\n"
  7423. "of the selected objects when unchecked."
  7424. msgstr ""
  7425. "Scale the selected object(s)\n"
  7426. "using the origin reference when checked,\n"
  7427. "and the center of the biggest bounding box\n"
  7428. "of the selected objects when unchecked."
  7429. #: flatcamGUI/FlatCAMGUI.py:6473
  7430. msgid "Offset_X val:"
  7431. msgstr "Offset_X val:"
  7432. #: flatcamGUI/FlatCAMGUI.py:6475
  7433. msgid "Distance to offset on X axis. In current units."
  7434. msgstr "Distance to offset on X axis. In current units."
  7435. #: flatcamGUI/FlatCAMGUI.py:6482
  7436. msgid "Offset_Y val:"
  7437. msgstr "Offset_Y val:"
  7438. #: flatcamGUI/FlatCAMGUI.py:6484
  7439. msgid "Distance to offset on Y axis. In current units."
  7440. msgstr "Distance to offset on Y axis. In current units."
  7441. #: flatcamGUI/FlatCAMGUI.py:6490
  7442. msgid "Mirror Reference"
  7443. msgstr "Mirror Reference"
  7444. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolTransform.py:314
  7445. msgid ""
  7446. "Flip the selected object(s)\n"
  7447. "around the point in Point Entry Field.\n"
  7448. "\n"
  7449. "The point coordinates can be captured by\n"
  7450. "left click on canvas together with pressing\n"
  7451. "SHIFT key. \n"
  7452. "Then click Add button to insert coordinates.\n"
  7453. "Or enter the coords in format (x, y) in the\n"
  7454. "Point Entry field and click Flip on X(Y)"
  7455. msgstr ""
  7456. "Flip the selected object(s)\n"
  7457. "around the point in Point Entry Field.\n"
  7458. "\n"
  7459. "The point coordinates can be captured by\n"
  7460. "left click on canvas together with pressing\n"
  7461. "SHIFT key. \n"
  7462. "Then click Add button to insert coordinates.\n"
  7463. "Or enter the coords in format (x, y) in the\n"
  7464. "Point Entry field and click Flip on X(Y)"
  7465. #: flatcamGUI/FlatCAMGUI.py:6503
  7466. msgid " Mirror Ref. Point:"
  7467. msgstr " Mirror Ref. Point:"
  7468. #: flatcamGUI/FlatCAMGUI.py:6505 flatcamTools/ToolTransform.py:327
  7469. msgid ""
  7470. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7471. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7472. "the 'y' in (x, y) will be used when using Flip on Y and"
  7473. msgstr ""
  7474. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7475. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7476. "the 'y' in (x, y) will be used when using Flip on Y and"
  7477. #: flatcamGUI/FlatCAMGUI.py:6522
  7478. msgid "SolderPaste Tool Options"
  7479. msgstr "SolderPaste Tool Options"
  7480. #: flatcamGUI/FlatCAMGUI.py:6527
  7481. msgid ""
  7482. "A tool to create GCode for dispensing\n"
  7483. "solder paste onto a PCB."
  7484. msgstr ""
  7485. "A tool to create GCode for dispensing\n"
  7486. "solder paste onto a PCB."
  7487. #: flatcamGUI/FlatCAMGUI.py:6538
  7488. msgid "Diameters of nozzle tools, separated by ','"
  7489. msgstr "Diameters of nozzle tools, separated by ','"
  7490. #: flatcamGUI/FlatCAMGUI.py:6545
  7491. msgid "<b>New Nozzle Dia:</b>"
  7492. msgstr "<b>New Nozzle Dia:</b>"
  7493. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolSolderPaste.py:103
  7494. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7495. msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
  7496. #: flatcamGUI/FlatCAMGUI.py:6555 flatcamTools/ToolSolderPaste.py:166
  7497. msgid "Z Dispense Start:"
  7498. msgstr "Z Dispense Start:"
  7499. #: flatcamGUI/FlatCAMGUI.py:6557 flatcamTools/ToolSolderPaste.py:168
  7500. msgid "The height (Z) when solder paste dispensing starts."
  7501. msgstr "The height (Z) when solder paste dispensing starts."
  7502. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolSolderPaste.py:174
  7503. msgid "Z Dispense:"
  7504. msgstr "Z Dispense:"
  7505. #: flatcamGUI/FlatCAMGUI.py:6566 flatcamTools/ToolSolderPaste.py:176
  7506. msgid "The height (Z) when doing solder paste dispensing."
  7507. msgstr "The height (Z) when doing solder paste dispensing."
  7508. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamTools/ToolSolderPaste.py:182
  7509. msgid "Z Dispense Stop:"
  7510. msgstr "Z Dispense Stop:"
  7511. #: flatcamGUI/FlatCAMGUI.py:6575 flatcamTools/ToolSolderPaste.py:184
  7512. msgid "The height (Z) when solder paste dispensing stops."
  7513. msgstr "The height (Z) when solder paste dispensing stops."
  7514. #: flatcamGUI/FlatCAMGUI.py:6582 flatcamTools/ToolSolderPaste.py:190
  7515. msgid "Z Travel:"
  7516. msgstr "Z Travel:"
  7517. #: flatcamGUI/FlatCAMGUI.py:6584 flatcamTools/ToolSolderPaste.py:192
  7518. msgid ""
  7519. "The height (Z) for travel between pads\n"
  7520. "(without dispensing solder paste)."
  7521. msgstr ""
  7522. "The height (Z) for travel between pads\n"
  7523. "(without dispensing solder paste)."
  7524. #: flatcamGUI/FlatCAMGUI.py:6592 flatcamTools/ToolSolderPaste.py:199
  7525. msgid "Z Toolchange:"
  7526. msgstr "Z Toolchange:"
  7527. #: flatcamGUI/FlatCAMGUI.py:6594 flatcamTools/ToolSolderPaste.py:201
  7528. msgid "The height (Z) for tool (nozzle) change."
  7529. msgstr "The height (Z) for tool (nozzle) change."
  7530. #: flatcamGUI/FlatCAMGUI.py:6601 flatcamTools/ToolSolderPaste.py:207
  7531. msgid "XY Toolchange:"
  7532. msgstr "XY Toolchange:"
  7533. #: flatcamGUI/FlatCAMGUI.py:6603 flatcamTools/ToolSolderPaste.py:209
  7534. msgid ""
  7535. "The X,Y location for tool (nozzle) change.\n"
  7536. "The format is (x, y) where x and y are real numbers."
  7537. msgstr ""
  7538. "The X,Y location for tool (nozzle) change.\n"
  7539. "The format is (x, y) where x and y are real numbers."
  7540. #: flatcamGUI/FlatCAMGUI.py:6611 flatcamTools/ToolSolderPaste.py:216
  7541. msgid "Feedrate X-Y:"
  7542. msgstr "Feedrate X-Y:"
  7543. #: flatcamGUI/FlatCAMGUI.py:6613 flatcamTools/ToolSolderPaste.py:218
  7544. msgid "Feedrate (speed) while moving on the X-Y plane."
  7545. msgstr "Feedrate (speed) while moving on the X-Y plane."
  7546. #: flatcamGUI/FlatCAMGUI.py:6620 flatcamTools/ToolSolderPaste.py:224
  7547. msgid "Feedrate Z:"
  7548. msgstr "Feedrate Z:"
  7549. #: flatcamGUI/FlatCAMGUI.py:6622 flatcamTools/ToolSolderPaste.py:226
  7550. msgid ""
  7551. "Feedrate (speed) while moving vertically\n"
  7552. "(on Z plane)."
  7553. msgstr ""
  7554. "Feedrate (speed) while moving vertically\n"
  7555. "(on Z plane)."
  7556. #: flatcamGUI/FlatCAMGUI.py:6630 flatcamTools/ToolSolderPaste.py:233
  7557. msgid "Feedrate Z Dispense:"
  7558. msgstr "Feedrate Z Dispense:"
  7559. #: flatcamGUI/FlatCAMGUI.py:6632
  7560. msgid ""
  7561. "Feedrate (speed) while moving up vertically\n"
  7562. "to Dispense position (on Z plane)."
  7563. msgstr ""
  7564. "Feedrate (speed) while moving up vertically\n"
  7565. "to Dispense position (on Z plane)."
  7566. #: flatcamGUI/FlatCAMGUI.py:6640 flatcamTools/ToolSolderPaste.py:242
  7567. msgid "Spindle Speed FWD:"
  7568. msgstr "Spindle Speed FWD:"
  7569. #: flatcamGUI/FlatCAMGUI.py:6642 flatcamTools/ToolSolderPaste.py:244
  7570. msgid ""
  7571. "The dispenser speed while pushing solder paste\n"
  7572. "through the dispenser nozzle."
  7573. msgstr ""
  7574. "The dispenser speed while pushing solder paste\n"
  7575. "through the dispenser nozzle."
  7576. #: flatcamGUI/FlatCAMGUI.py:6650 flatcamTools/ToolSolderPaste.py:251
  7577. msgid "Dwell FWD:"
  7578. msgstr "Dwell FWD:"
  7579. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamTools/ToolSolderPaste.py:253
  7580. msgid "Pause after solder dispensing."
  7581. msgstr "Pause after solder dispensing."
  7582. #: flatcamGUI/FlatCAMGUI.py:6659 flatcamTools/ToolSolderPaste.py:259
  7583. msgid "Spindle Speed REV:"
  7584. msgstr "Spindle Speed REV:"
  7585. #: flatcamGUI/FlatCAMGUI.py:6661 flatcamTools/ToolSolderPaste.py:261
  7586. msgid ""
  7587. "The dispenser speed while retracting solder paste\n"
  7588. "through the dispenser nozzle."
  7589. msgstr ""
  7590. "The dispenser speed while retracting solder paste\n"
  7591. "through the dispenser nozzle."
  7592. #: flatcamGUI/FlatCAMGUI.py:6669 flatcamTools/ToolSolderPaste.py:268
  7593. msgid "Dwell REV:"
  7594. msgstr "Dwell REV:"
  7595. #: flatcamGUI/FlatCAMGUI.py:6671 flatcamTools/ToolSolderPaste.py:270
  7596. msgid ""
  7597. "Pause after solder paste dispenser retracted,\n"
  7598. "to allow pressure equilibrium."
  7599. msgstr ""
  7600. "Pause after solder paste dispenser retracted,\n"
  7601. "to allow pressure equilibrium."
  7602. #: flatcamGUI/FlatCAMGUI.py:6678 flatcamTools/ToolSolderPaste.py:276
  7603. msgid "PostProcessors:"
  7604. msgstr "PostProcessors:"
  7605. #: flatcamGUI/FlatCAMGUI.py:6680 flatcamTools/ToolSolderPaste.py:278
  7606. msgid "Files that control the GCode generation."
  7607. msgstr "Files that control the GCode generation."
  7608. #: flatcamGUI/FlatCAMGUI.py:6710 flatcamGUI/FlatCAMGUI.py:6716
  7609. msgid "Idle."
  7610. msgstr "Idle."
  7611. #: flatcamGUI/FlatCAMGUI.py:6740
  7612. msgid "Application started ..."
  7613. msgstr "Application started ..."
  7614. #: flatcamGUI/FlatCAMGUI.py:6741
  7615. msgid "Hello!"
  7616. msgstr "Hello!"
  7617. #: flatcamGUI/ObjectUI.py:33
  7618. msgid "FlatCAM Object"
  7619. msgstr "FlatCAM Object"
  7620. #: flatcamGUI/ObjectUI.py:58
  7621. msgid ""
  7622. "BASIC is suitable for a beginner. Many parameters\n"
  7623. "are hidden from the user in this mode.\n"
  7624. "ADVANCED mode will make available all parameters.\n"
  7625. "\n"
  7626. "To change the application LEVEL, go to:\n"
  7627. "Edit -> Preferences -> General and check:\n"
  7628. "'APP. LEVEL' radio button."
  7629. msgstr ""
  7630. "BASIC is suitable for a beginner. Many parameters\n"
  7631. "are hidden from the user in this mode.\n"
  7632. "ADVANCED mode will make available all parameters.\n"
  7633. "\n"
  7634. "To change the application LEVEL, go to:\n"
  7635. "Edit -> Preferences -> General and check:\n"
  7636. "'APP. LEVEL' radio button."
  7637. #: flatcamGUI/ObjectUI.py:79
  7638. msgid "<b>Scale:</b>"
  7639. msgstr "<b>Scale:</b>"
  7640. #: flatcamGUI/ObjectUI.py:81
  7641. msgid "Change the size of the object."
  7642. msgstr "Change the size of the object."
  7643. #: flatcamGUI/ObjectUI.py:89
  7644. msgid "Factor:"
  7645. msgstr "Factor:"
  7646. #: flatcamGUI/ObjectUI.py:91
  7647. msgid ""
  7648. "Factor by which to multiply\n"
  7649. "geometric features of this object."
  7650. msgstr ""
  7651. "Factor by which to multiply\n"
  7652. "geometric features of this object."
  7653. #: flatcamGUI/ObjectUI.py:102
  7654. msgid "Perform scaling operation."
  7655. msgstr "Perform scaling operation."
  7656. #: flatcamGUI/ObjectUI.py:108
  7657. msgid "<b>Offset:</b>"
  7658. msgstr "<b>Offset:</b>"
  7659. #: flatcamGUI/ObjectUI.py:110
  7660. msgid "Change the position of this object."
  7661. msgstr "Change the position of this object."
  7662. #: flatcamGUI/ObjectUI.py:117
  7663. msgid "Vector:"
  7664. msgstr "Vector:"
  7665. #: flatcamGUI/ObjectUI.py:119
  7666. msgid ""
  7667. "Amount by which to move the object\n"
  7668. "in the x and y axes in (x, y) format."
  7669. msgstr ""
  7670. "Amount by which to move the object\n"
  7671. "in the x and y axes in (x, y) format."
  7672. #: flatcamGUI/ObjectUI.py:129
  7673. msgid "Perform the offset operation."
  7674. msgstr "Perform the offset operation."
  7675. #: flatcamGUI/ObjectUI.py:143
  7676. msgid "Gerber Object"
  7677. msgstr "Gerber Object"
  7678. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:514
  7679. #: flatcamGUI/ObjectUI.py:836 flatcamGUI/ObjectUI.py:1387
  7680. msgid "<b>Name:</b>"
  7681. msgstr "<b>Name:</b>"
  7682. #: flatcamGUI/ObjectUI.py:203
  7683. msgid ""
  7684. "Toggle the display of the Gerber Apertures Table.\n"
  7685. "When unchecked, it will delete all mark shapes\n"
  7686. "that are drawn on canvas."
  7687. msgstr ""
  7688. "Toggle the display of the Gerber Apertures Table.\n"
  7689. "When unchecked, it will delete all mark shapes\n"
  7690. "that are drawn on canvas."
  7691. #: flatcamGUI/ObjectUI.py:213
  7692. msgid "Mark All"
  7693. msgstr "Mark All"
  7694. #: flatcamGUI/ObjectUI.py:215
  7695. msgid ""
  7696. "When checked it will display all the apertures.\n"
  7697. "When unchecked, it will delete all mark shapes\n"
  7698. "that are drawn on canvas."
  7699. msgstr ""
  7700. "When checked it will display all the apertures.\n"
  7701. "When unchecked, it will delete all mark shapes\n"
  7702. "that are drawn on canvas."
  7703. #: flatcamGUI/ObjectUI.py:243
  7704. msgid "Mark the aperture instances on canvas."
  7705. msgstr "Mark the aperture instances on canvas."
  7706. #: flatcamGUI/ObjectUI.py:261
  7707. msgid ""
  7708. "Diameter of the cutting tool.\n"
  7709. "If you want to have an isolation path\n"
  7710. "inside the actual shape of the Gerber\n"
  7711. "feature, use a negative value for\n"
  7712. "this parameter."
  7713. msgstr ""
  7714. "Diameter of the cutting tool.\n"
  7715. "If you want to have an isolation path\n"
  7716. "inside the actual shape of the Gerber\n"
  7717. "feature, use a negative value for\n"
  7718. "this parameter."
  7719. #: flatcamGUI/ObjectUI.py:272
  7720. msgid "Passes:"
  7721. msgstr "Passes:"
  7722. #: flatcamGUI/ObjectUI.py:306
  7723. msgid "Combine"
  7724. msgstr "Combine"
  7725. #: flatcamGUI/ObjectUI.py:322
  7726. msgid "<b>Generate Isolation Geometry:</b>"
  7727. msgstr "<b>Generate Isolation Geometry:</b>"
  7728. #: flatcamGUI/ObjectUI.py:324
  7729. msgid ""
  7730. "Create a Geometry object with toolpaths to cut \n"
  7731. "isolation outside, inside or on both sides of the\n"
  7732. "object. For a Gerber object outside means outside\n"
  7733. "of the Gerber feature and inside means inside of\n"
  7734. "the Gerber feature, if possible at all. This means\n"
  7735. "that only if the Gerber feature has openings inside, they\n"
  7736. "will be isolated. If what is wanted is to cut isolation\n"
  7737. "inside the actual Gerber feature, use a negative tool\n"
  7738. "diameter above."
  7739. msgstr ""
  7740. "Create a Geometry object with toolpaths to cut \n"
  7741. "isolation outside, inside or on both sides of the\n"
  7742. "object. For a Gerber object outside means outside\n"
  7743. "of the Gerber feature and inside means inside of\n"
  7744. "the Gerber feature, if possible at all. This means\n"
  7745. "that only if the Gerber feature has openings inside, they\n"
  7746. "will be isolated. If what is wanted is to cut isolation\n"
  7747. "inside the actual Gerber feature, use a negative tool\n"
  7748. "diameter above."
  7749. #: flatcamGUI/ObjectUI.py:343
  7750. msgid "FULL Geo"
  7751. msgstr "FULL Geo"
  7752. #: flatcamGUI/ObjectUI.py:345
  7753. msgid ""
  7754. "Create the Geometry Object\n"
  7755. "for isolation routing. It contains both\n"
  7756. "the interiors and exteriors geometry."
  7757. msgstr ""
  7758. "Create the Geometry Object\n"
  7759. "for isolation routing. It contains both\n"
  7760. "the interiors and exteriors geometry."
  7761. #: flatcamGUI/ObjectUI.py:354
  7762. msgid "Ext Geo"
  7763. msgstr "Ext Geo"
  7764. #: flatcamGUI/ObjectUI.py:356
  7765. msgid ""
  7766. "Create the Geometry Object\n"
  7767. "for isolation routing containing\n"
  7768. "only the exteriors geometry."
  7769. msgstr ""
  7770. "Create the Geometry Object\n"
  7771. "for isolation routing containing\n"
  7772. "only the exteriors geometry."
  7773. #: flatcamGUI/ObjectUI.py:363
  7774. msgid "Int Geo"
  7775. msgstr "Int Geo"
  7776. #: flatcamGUI/ObjectUI.py:365
  7777. msgid ""
  7778. "Create the Geometry Object\n"
  7779. "for isolation routing containing\n"
  7780. "only the interiors geometry."
  7781. msgstr ""
  7782. "Create the Geometry Object\n"
  7783. "for isolation routing containing\n"
  7784. "only the interiors geometry."
  7785. #: flatcamGUI/ObjectUI.py:381
  7786. msgid "<b>Clear N-copper:</b>"
  7787. msgstr "<b>Clear N-copper:</b>"
  7788. #: flatcamGUI/ObjectUI.py:391 flatcamTools/ToolNonCopperClear.py:240
  7789. msgid ""
  7790. "Create the Geometry Object\n"
  7791. "for non-copper routing."
  7792. msgstr ""
  7793. "Create the Geometry Object\n"
  7794. "for non-copper routing."
  7795. #: flatcamGUI/ObjectUI.py:397
  7796. msgid "<b>Board cutout:</b>"
  7797. msgstr "<b>Board cutout:</b>"
  7798. #: flatcamGUI/ObjectUI.py:405 flatcamTools/ToolCutOut.py:328
  7799. msgid "Cutout Tool"
  7800. msgstr "Cutout Tool"
  7801. #: flatcamGUI/ObjectUI.py:407
  7802. msgid ""
  7803. "Generate the geometry for\n"
  7804. "the board cutout."
  7805. msgstr ""
  7806. "Generate the geometry for\n"
  7807. "the board cutout."
  7808. #: flatcamGUI/ObjectUI.py:413
  7809. msgid "<b>Non-copper regions:</b>"
  7810. msgstr "<b>Non-copper regions:</b>"
  7811. #: flatcamGUI/ObjectUI.py:415
  7812. msgid ""
  7813. "Create polygons covering the\n"
  7814. "areas without copper on the PCB.\n"
  7815. "Equivalent to the inverse of this\n"
  7816. "object. Can be used to remove all\n"
  7817. "copper from a specified region."
  7818. msgstr ""
  7819. "Create polygons covering the\n"
  7820. "areas without copper on the PCB.\n"
  7821. "Equivalent to the inverse of this\n"
  7822. "object. Can be used to remove all\n"
  7823. "copper from a specified region."
  7824. #: flatcamGUI/ObjectUI.py:440 flatcamGUI/ObjectUI.py:471
  7825. msgid "Rounded Geo"
  7826. msgstr "Rounded Geo"
  7827. #: flatcamGUI/ObjectUI.py:442
  7828. msgid "Resulting geometry will have rounded corners."
  7829. msgstr "Resulting geometry will have rounded corners."
  7830. #: flatcamGUI/ObjectUI.py:447 flatcamGUI/ObjectUI.py:481
  7831. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  7832. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  7833. msgid "Generate Geo"
  7834. msgstr "Generate Geo"
  7835. #: flatcamGUI/ObjectUI.py:453
  7836. msgid ""
  7837. "Create a geometry surrounding the Gerber object.\n"
  7838. "Square shape."
  7839. msgstr ""
  7840. "Create a geometry surrounding the Gerber object.\n"
  7841. "Square shape."
  7842. #: flatcamGUI/ObjectUI.py:483
  7843. msgid "Generate the Geometry object."
  7844. msgstr "Generate the Geometry object."
  7845. #: flatcamGUI/ObjectUI.py:494
  7846. msgid "Excellon Object"
  7847. msgstr "Excellon Object"
  7848. #: flatcamGUI/ObjectUI.py:505
  7849. msgid "Solid circles."
  7850. msgstr "Solid circles."
  7851. #: flatcamGUI/ObjectUI.py:533 flatcamGUI/ObjectUI.py:855
  7852. msgid "<b>Tools Table</b>"
  7853. msgstr "<b>Tools Table</b>"
  7854. #: flatcamGUI/ObjectUI.py:553
  7855. msgid "Drills"
  7856. msgstr "Drills"
  7857. #: flatcamGUI/ObjectUI.py:553
  7858. msgid "Slots"
  7859. msgstr "Slots"
  7860. #: flatcamGUI/ObjectUI.py:554
  7861. msgid "Offset Z"
  7862. msgstr "Offset Z"
  7863. #: flatcamGUI/ObjectUI.py:558
  7864. msgid ""
  7865. "This is the Tool Number.\n"
  7866. "When ToolChange is checked, on toolchange event this value\n"
  7867. "will be showed as a T1, T2 ... Tn in the Machine Code."
  7868. msgstr ""
  7869. "This is the Tool Number.\n"
  7870. "When ToolChange is checked, on toolchange event this value\n"
  7871. "will be showed as a T1, T2 ... Tn in the Machine Code."
  7872. #: flatcamGUI/ObjectUI.py:562 flatcamGUI/ObjectUI.py:901
  7873. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  7874. msgid ""
  7875. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7876. "is the cut width into the material."
  7877. msgstr ""
  7878. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7879. "is the cut width into the material."
  7880. #: flatcamGUI/ObjectUI.py:565
  7881. msgid ""
  7882. "The number of Drill holes. Holes that are drilled with\n"
  7883. "a drill bit."
  7884. msgstr ""
  7885. "The number of Drill holes. Holes that are drilled with\n"
  7886. "a drill bit."
  7887. #: flatcamGUI/ObjectUI.py:568
  7888. msgid ""
  7889. "The number of Slot holes. Holes that are created by\n"
  7890. "milling them with an endmill bit."
  7891. msgstr ""
  7892. "The number of Slot holes. Holes that are created by\n"
  7893. "milling them with an endmill bit."
  7894. #: flatcamGUI/ObjectUI.py:575
  7895. msgid "Toggle display of the drills for the current tool."
  7896. msgstr "Toggle display of the drills for the current tool."
  7897. #: flatcamGUI/ObjectUI.py:583
  7898. msgid ""
  7899. "Create a CNC Job object\n"
  7900. "for this drill object."
  7901. msgstr ""
  7902. "Create a CNC Job object\n"
  7903. "for this drill object."
  7904. #: flatcamGUI/ObjectUI.py:612 flatcamGUI/ObjectUI.py:1124
  7905. msgid "Tool change"
  7906. msgstr "Tool change"
  7907. #: flatcamGUI/ObjectUI.py:620 flatcamGUI/ObjectUI.py:1117
  7908. msgid "Tool change Z:"
  7909. msgstr "Tool change Z:"
  7910. #: flatcamGUI/ObjectUI.py:622 flatcamGUI/ObjectUI.py:1120
  7911. msgid ""
  7912. "Z-axis position (height) for\n"
  7913. "tool change."
  7914. msgstr ""
  7915. "Z-axis position (height) for\n"
  7916. "tool change."
  7917. #: flatcamGUI/ObjectUI.py:633
  7918. msgid ""
  7919. "Tool height just before starting the work.\n"
  7920. "Delete the value if you don't need this feature."
  7921. msgstr ""
  7922. "Tool height just before starting the work.\n"
  7923. "Delete the value if you don't need this feature."
  7924. #: flatcamGUI/ObjectUI.py:643
  7925. msgid ""
  7926. "Z-axis position (height) for\n"
  7927. "the last move."
  7928. msgstr ""
  7929. "Z-axis position (height) for\n"
  7930. "the last move."
  7931. #: flatcamGUI/ObjectUI.py:651
  7932. msgid "Feedrate (Plunge):"
  7933. msgstr "Feedrate (Plunge):"
  7934. #: flatcamGUI/ObjectUI.py:653
  7935. msgid ""
  7936. "Tool speed while drilling\n"
  7937. "(in units per minute).\n"
  7938. "This is for linear move G01."
  7939. msgstr ""
  7940. "Tool speed while drilling\n"
  7941. "(in units per minute).\n"
  7942. "This is for linear move G01."
  7943. #: flatcamGUI/ObjectUI.py:706
  7944. msgid ""
  7945. "The json file that dictates\n"
  7946. "gcode output."
  7947. msgstr ""
  7948. "The json file that dictates\n"
  7949. "gcode output."
  7950. #: flatcamGUI/ObjectUI.py:738
  7951. msgid ""
  7952. "Select from the Tools Table above\n"
  7953. "the tools you want to include."
  7954. msgstr ""
  7955. "Select from the Tools Table above\n"
  7956. "the tools you want to include."
  7957. #: flatcamGUI/ObjectUI.py:745
  7958. msgid "<b>Type: </b>"
  7959. msgstr "<b>Type: </b>"
  7960. #: flatcamGUI/ObjectUI.py:747
  7961. msgid ""
  7962. "Choose what to use for GCode generation:\n"
  7963. "'Drills', 'Slots' or 'Both'.\n"
  7964. "When choosing 'Slots' or 'Both', slots will be\n"
  7965. "converted to a series of drills."
  7966. msgstr ""
  7967. "Choose what to use for GCode generation:\n"
  7968. "'Drills', 'Slots' or 'Both'.\n"
  7969. "When choosing 'Slots' or 'Both', slots will be\n"
  7970. "converted to a series of drills."
  7971. #: flatcamGUI/ObjectUI.py:762
  7972. msgid "Create GCode"
  7973. msgstr "Create GCode"
  7974. #: flatcamGUI/ObjectUI.py:764
  7975. msgid "Generate the CNC Job."
  7976. msgstr "Generate the CNC Job."
  7977. #: flatcamGUI/ObjectUI.py:776
  7978. msgid ""
  7979. "Select from the Tools Table above\n"
  7980. " the hole dias that are to be milled."
  7981. msgstr ""
  7982. "Select from the Tools Table above\n"
  7983. " the hole dias that are to be milled."
  7984. #: flatcamGUI/ObjectUI.py:783
  7985. msgid "Drills Tool dia:"
  7986. msgstr "Drills Tool dia:"
  7987. #: flatcamGUI/ObjectUI.py:790
  7988. msgid "Mill Drills Geo"
  7989. msgstr "Mill Drills Geo"
  7990. #: flatcamGUI/ObjectUI.py:792
  7991. msgid ""
  7992. "Create the Geometry Object\n"
  7993. "for milling DRILLS toolpaths."
  7994. msgstr ""
  7995. "Create the Geometry Object\n"
  7996. "for milling DRILLS toolpaths."
  7997. #: flatcamGUI/ObjectUI.py:799
  7998. msgid "Slots Tool dia:"
  7999. msgstr "Slots Tool dia:"
  8000. #: flatcamGUI/ObjectUI.py:806
  8001. msgid "Mill Slots Geo"
  8002. msgstr "Mill Slots Geo"
  8003. #: flatcamGUI/ObjectUI.py:808
  8004. msgid ""
  8005. "Create the Geometry Object\n"
  8006. "for milling SLOTS toolpaths."
  8007. msgstr ""
  8008. "Create the Geometry Object\n"
  8009. "for milling SLOTS toolpaths."
  8010. #: flatcamGUI/ObjectUI.py:826
  8011. msgid "Geometry Object"
  8012. msgstr "Geometry Object"
  8013. #: flatcamGUI/ObjectUI.py:857
  8014. msgid ""
  8015. "Tools in this Geometry object used for cutting.\n"
  8016. "The 'Offset' entry will set an offset for the cut.\n"
  8017. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8018. "'Type' entry is only informative and it allow to know the \n"
  8019. "intent of using the current tool. \n"
  8020. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8021. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8022. "ball(B), or V-Shaped(V). \n"
  8023. "When V-shaped is selected the 'Type' entry is automatically \n"
  8024. "set to Isolation, the CutZ parameter in the UI form is\n"
  8025. "grayed out and Cut Z is automatically calculated from the newly \n"
  8026. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8027. msgstr ""
  8028. "Tools in this Geometry object used for cutting.\n"
  8029. "The 'Offset' entry will set an offset for the cut.\n"
  8030. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8031. "'Type' entry is only informative and it allow to know the \n"
  8032. "intent of using the current tool. \n"
  8033. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8034. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8035. "ball(B), or V-Shaped(V). \n"
  8036. "When V-shaped is selected the 'Type' entry is automatically \n"
  8037. "set to Isolation, the CutZ parameter in the UI form is\n"
  8038. "grayed out and Cut Z is automatically calculated from the newly \n"
  8039. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8040. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  8041. msgid "Dia"
  8042. msgstr "Dia"
  8043. #: flatcamGUI/ObjectUI.py:888 flatcamGUI/ObjectUI.py:1470
  8044. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  8045. msgid "TT"
  8046. msgstr "TT"
  8047. #: flatcamGUI/ObjectUI.py:895
  8048. msgid ""
  8049. "This is the Tool Number.\n"
  8050. "When ToolChange is checked, on toolchange event this value\n"
  8051. "will be showed as a T1, T2 ... Tn"
  8052. msgstr ""
  8053. "This is the Tool Number.\n"
  8054. "When ToolChange is checked, on toolchange event this value\n"
  8055. "will be showed as a T1, T2 ... Tn"
  8056. #: flatcamGUI/ObjectUI.py:906
  8057. msgid ""
  8058. "The value for the Offset can be:\n"
  8059. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8060. "line.\n"
  8061. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8062. "'pocket'.\n"
  8063. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8064. msgstr ""
  8065. "The value for the Offset can be:\n"
  8066. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8067. "line.\n"
  8068. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8069. "'pocket'.\n"
  8070. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8071. #: flatcamGUI/ObjectUI.py:913
  8072. msgid ""
  8073. "The (Operation) Type has only informative value. Usually the UI form "
  8074. "values \n"
  8075. "are choosed based on the operation type and this will serve as a reminder.\n"
  8076. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8077. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8078. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8079. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8080. "tip."
  8081. msgstr ""
  8082. "The (Operation) Type has only informative value. Usually the UI form "
  8083. "values \n"
  8084. "are choosed based on the operation type and this will serve as a reminder.\n"
  8085. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8086. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8087. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8088. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8089. "tip."
  8090. #: flatcamGUI/ObjectUI.py:922
  8091. msgid ""
  8092. "The Tool Type (TT) can be:\n"
  8093. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8094. "cut width in material\n"
  8095. "is exactly the tool diameter.\n"
  8096. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8097. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8098. "two additional UI form\n"
  8099. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8100. "the Z-Cut parameter such\n"
  8101. "as the cut width into material will be equal with the value in the Tool "
  8102. "Diameter column of this table.\n"
  8103. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8104. "as Isolation."
  8105. msgstr ""
  8106. "The Tool Type (TT) can be:\n"
  8107. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8108. "cut width in material\n"
  8109. "is exactly the tool diameter.\n"
  8110. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8111. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8112. "two additional UI form\n"
  8113. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8114. "the Z-Cut parameter such\n"
  8115. "as the cut width into material will be equal with the value in the Tool "
  8116. "Diameter column of this table.\n"
  8117. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8118. "as Isolation."
  8119. #: flatcamGUI/ObjectUI.py:934
  8120. msgid ""
  8121. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8122. "that holds the geometry\n"
  8123. "data into the tools. For those geometries, deleting the tool will delete the "
  8124. "geometry data also,\n"
  8125. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8126. "plot on canvas\n"
  8127. "for the corresponding tool."
  8128. msgstr ""
  8129. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8130. "that holds the geometry\n"
  8131. "data into the tools. For those geometries, deleting the tool will delete the "
  8132. "geometry data also,\n"
  8133. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8134. "plot on canvas\n"
  8135. "for the corresponding tool."
  8136. #: flatcamGUI/ObjectUI.py:947
  8137. msgid "Tool Offset:"
  8138. msgstr "Tool Offset:"
  8139. #: flatcamGUI/ObjectUI.py:950
  8140. msgid ""
  8141. "The value to offset the cut when \n"
  8142. "the Offset type selected is 'Offset'.\n"
  8143. "The value can be positive for 'outside'\n"
  8144. "cut and negative for 'inside' cut."
  8145. msgstr ""
  8146. "The value to offset the cut when \n"
  8147. "the Offset type selected is 'Offset'.\n"
  8148. "The value can be positive for 'outside'\n"
  8149. "cut and negative for 'inside' cut."
  8150. #: flatcamGUI/ObjectUI.py:973
  8151. msgid "<b>Tool Dia:</b>"
  8152. msgstr "<b>Tool Dia:</b>"
  8153. #: flatcamGUI/ObjectUI.py:992 flatcamTools/ToolNonCopperClear.py:136
  8154. #: flatcamTools/ToolPaint.py:133
  8155. msgid ""
  8156. "Add a new tool to the Tool Table\n"
  8157. "with the diameter specified above."
  8158. msgstr ""
  8159. "Add a new tool to the Tool Table\n"
  8160. "with the diameter specified above."
  8161. #: flatcamGUI/ObjectUI.py:1000
  8162. msgid ""
  8163. "Copy a selection of tools in the Tool Table\n"
  8164. "by first selecting a row in the Tool Table."
  8165. msgstr ""
  8166. "Copy a selection of tools in the Tool Table\n"
  8167. "by first selecting a row in the Tool Table."
  8168. #: flatcamGUI/ObjectUI.py:1008
  8169. msgid ""
  8170. "Delete a selection of tools in the Tool Table\n"
  8171. "by first selecting a row in the Tool Table."
  8172. msgstr ""
  8173. "Delete a selection of tools in the Tool Table\n"
  8174. "by first selecting a row in the Tool Table."
  8175. #: flatcamGUI/ObjectUI.py:1024
  8176. msgid "<b>Tool Data</b>"
  8177. msgstr "<b>Tool Data</b>"
  8178. #: flatcamGUI/ObjectUI.py:1027
  8179. msgid ""
  8180. "The data used for creating GCode.\n"
  8181. "Each tool store it's own set of such data."
  8182. msgstr ""
  8183. "The data used for creating GCode.\n"
  8184. "Each tool store it's own set of such data."
  8185. #: flatcamGUI/ObjectUI.py:1045
  8186. msgid "V-Tip Dia:"
  8187. msgstr "V-Tip Dia:"
  8188. #: flatcamGUI/ObjectUI.py:1048
  8189. msgid "The tip diameter for V-Shape Tool"
  8190. msgstr "The tip diameter for V-Shape Tool"
  8191. #: flatcamGUI/ObjectUI.py:1056
  8192. msgid "V-Tip Angle:"
  8193. msgstr "V-Tip Angle:"
  8194. #: flatcamGUI/ObjectUI.py:1059
  8195. msgid ""
  8196. "The tip angle for V-Shape Tool.\n"
  8197. "In degree."
  8198. msgstr ""
  8199. "The tip angle for V-Shape Tool.\n"
  8200. "In degree."
  8201. #: flatcamGUI/ObjectUI.py:1080
  8202. msgid "Multi-Depth:"
  8203. msgstr "Multi-Depth:"
  8204. #: flatcamGUI/ObjectUI.py:1083
  8205. msgid ""
  8206. "Use multiple passes to limit\n"
  8207. "the cut depth in each pass. Will\n"
  8208. "cut multiple times until Cut Z is\n"
  8209. "reached.\n"
  8210. "To the right, input the depth of \n"
  8211. "each pass (positive value)."
  8212. msgstr ""
  8213. "Use multiple passes to limit\n"
  8214. "the cut depth in each pass. Will\n"
  8215. "cut multiple times until Cut Z is\n"
  8216. "reached.\n"
  8217. "To the right, input the depth of \n"
  8218. "each pass (positive value)."
  8219. #: flatcamGUI/ObjectUI.py:1096
  8220. msgid "Depth of each pass (positive)."
  8221. msgstr "Depth of each pass (positive)."
  8222. #: flatcamGUI/ObjectUI.py:1127
  8223. msgid ""
  8224. "Include tool-change sequence\n"
  8225. "in the Machine Code (Pause for tool change)."
  8226. msgstr ""
  8227. "Include tool-change sequence\n"
  8228. "in the Machine Code (Pause for tool change)."
  8229. #: flatcamGUI/ObjectUI.py:1153
  8230. msgid ""
  8231. "This is the height (Z) at which the CNC\n"
  8232. "will go as the last move."
  8233. msgstr ""
  8234. "This is the height (Z) at which the CNC\n"
  8235. "will go as the last move."
  8236. #: flatcamGUI/ObjectUI.py:1174
  8237. msgid "Feed Rate Z (Plunge):"
  8238. msgstr "Feed Rate Z (Plunge):"
  8239. #: flatcamGUI/ObjectUI.py:1177
  8240. msgid ""
  8241. "Cutting speed in the Z\n"
  8242. "plane in units per minute"
  8243. msgstr ""
  8244. "Cutting speed in the Z\n"
  8245. "plane in units per minute"
  8246. #: flatcamGUI/ObjectUI.py:1186
  8247. msgid "Feed Rate Rapids:"
  8248. msgstr "Feed Rate Rapids:"
  8249. #: flatcamGUI/ObjectUI.py:1189
  8250. msgid ""
  8251. "Cutting speed in the XY\n"
  8252. "plane in units per minute\n"
  8253. "(in units per minute).\n"
  8254. "This is for the rapid move G00.\n"
  8255. "It is useful only for Marlin,\n"
  8256. "ignore for any other cases."
  8257. msgstr ""
  8258. "Cutting speed in the XY\n"
  8259. "plane in units per minute\n"
  8260. "(in units per minute).\n"
  8261. "This is for the rapid move G00.\n"
  8262. "It is useful only for Marlin,\n"
  8263. "ignore for any other cases."
  8264. #: flatcamGUI/ObjectUI.py:1205
  8265. msgid "Cut over 1st pt"
  8266. msgstr "Cut over 1st pt"
  8267. #: flatcamGUI/ObjectUI.py:1220
  8268. msgid ""
  8269. "Speed of the spindle in RPM (optional).\n"
  8270. "If LASER postprocessor is used,\n"
  8271. "this value is the power of laser."
  8272. msgstr ""
  8273. "Speed of the spindle in RPM (optional).\n"
  8274. "If LASER postprocessor is used,\n"
  8275. "this value is the power of laser."
  8276. #: flatcamGUI/ObjectUI.py:1249
  8277. msgid "PostProcessor:"
  8278. msgstr "PostProcessor:"
  8279. #: flatcamGUI/ObjectUI.py:1252
  8280. msgid ""
  8281. "The Postprocessor file that dictates\n"
  8282. "the Machine Code (like GCode, RML, HPGL) output."
  8283. msgstr ""
  8284. "The Postprocessor file that dictates\n"
  8285. "the Machine Code (like GCode, RML, HPGL) output."
  8286. #: flatcamGUI/ObjectUI.py:1290
  8287. msgid ""
  8288. "Add at least one tool in the tool-table.\n"
  8289. "Click the header to select all, or Ctrl + LMB\n"
  8290. "for custom selection of tools."
  8291. msgstr ""
  8292. "Add at least one tool in the tool-table.\n"
  8293. "Click the header to select all, or Ctrl + LMB\n"
  8294. "for custom selection of tools."
  8295. #: flatcamGUI/ObjectUI.py:1297
  8296. msgid "Generate"
  8297. msgstr "Generate"
  8298. #: flatcamGUI/ObjectUI.py:1300
  8299. msgid "Generate the CNC Job object."
  8300. msgstr "Generate the CNC Job object."
  8301. #: flatcamGUI/ObjectUI.py:1308
  8302. msgid "<b>Paint Area:</b>"
  8303. msgstr "<b>Paint Area:</b>"
  8304. #: flatcamGUI/ObjectUI.py:1323
  8305. msgid "Launch Paint Tool in Tools Tab."
  8306. msgstr "Launch Paint Tool in Tools Tab."
  8307. #: flatcamGUI/ObjectUI.py:1340
  8308. msgid "CNC Job Object"
  8309. msgstr "CNC Job Object"
  8310. #: flatcamGUI/ObjectUI.py:1358
  8311. msgid "<b>Plot kind:</b>"
  8312. msgstr "<b>Plot kind:</b>"
  8313. #: flatcamGUI/ObjectUI.py:1374
  8314. msgid "<b>Display Annotation:</b>"
  8315. msgstr "<b>Display Annotation:</b>"
  8316. #: flatcamGUI/ObjectUI.py:1393
  8317. msgid "<b>Travelled dist.:</b>"
  8318. msgstr "<b>Travelled dist.:</b>"
  8319. #: flatcamGUI/ObjectUI.py:1396 flatcamGUI/ObjectUI.py:1403
  8320. msgid ""
  8321. "This is the total travelled distance on X-Y plane.\n"
  8322. "In current units."
  8323. msgstr ""
  8324. "This is the total travelled distance on X-Y plane.\n"
  8325. "In current units."
  8326. #: flatcamGUI/ObjectUI.py:1434
  8327. msgid "<b>CNC Tools Table</b>"
  8328. msgstr "<b>CNC Tools Table</b>"
  8329. #: flatcamGUI/ObjectUI.py:1437
  8330. msgid ""
  8331. "Tools in this CNCJob object used for cutting.\n"
  8332. "The tool diameter is used for plotting on canvas.\n"
  8333. "The 'Offset' entry will set an offset for the cut.\n"
  8334. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8335. "'Type' entry is only informative and it allow to know the \n"
  8336. "intent of using the current tool. \n"
  8337. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8338. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8339. "ball(B), or V-Shaped(V)."
  8340. msgstr ""
  8341. "Tools in this CNCJob object used for cutting.\n"
  8342. "The tool diameter is used for plotting on canvas.\n"
  8343. "The 'Offset' entry will set an offset for the cut.\n"
  8344. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8345. "'Type' entry is only informative and it allow to know the \n"
  8346. "intent of using the current tool. \n"
  8347. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8348. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8349. "ball(B), or V-Shaped(V)."
  8350. #: flatcamGUI/ObjectUI.py:1471
  8351. msgid "P"
  8352. msgstr "P"
  8353. #: flatcamGUI/ObjectUI.py:1477
  8354. msgid "Update Plot"
  8355. msgstr "Update Plot"
  8356. #: flatcamGUI/ObjectUI.py:1479
  8357. msgid "Update the plot."
  8358. msgstr "Update the plot."
  8359. #: flatcamGUI/ObjectUI.py:1486
  8360. msgid "<b>Export CNC Code:</b>"
  8361. msgstr "<b>Export CNC Code:</b>"
  8362. #: flatcamGUI/ObjectUI.py:1494
  8363. msgid "Prepend to CNC Code:"
  8364. msgstr "Prepend to CNC Code:"
  8365. #: flatcamGUI/ObjectUI.py:1497
  8366. msgid ""
  8367. "Type here any G-Code commands you would\n"
  8368. "like to add to the beginning of the generated file."
  8369. msgstr ""
  8370. "Type here any G-Code commands you would\n"
  8371. "like to add to the beginning of the generated file."
  8372. #: flatcamGUI/ObjectUI.py:1507
  8373. msgid "Append to CNC Code:"
  8374. msgstr "Append to CNC Code:"
  8375. #: flatcamGUI/ObjectUI.py:1531
  8376. msgid ""
  8377. "Type here any G-Code commands you would\n"
  8378. "like to be executed when Toolchange event is encountered.\n"
  8379. "This will constitute a Custom Toolchange GCode,\n"
  8380. "or a Toolchange Macro.\n"
  8381. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8382. "\n"
  8383. "WARNING: it can be used only with a postprocessor file\n"
  8384. "that has 'toolchange_custom' in it's name and this is built\n"
  8385. "having as template the 'Toolchange Custom' posprocessor file."
  8386. msgstr ""
  8387. "Type here any G-Code commands you would\n"
  8388. "like to be executed when Toolchange event is encountered.\n"
  8389. "This will constitute a Custom Toolchange GCode,\n"
  8390. "or a Toolchange Macro.\n"
  8391. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8392. "\n"
  8393. "WARNING: it can be used only with a postprocessor file\n"
  8394. "that has 'toolchange_custom' in it's name and this is built\n"
  8395. "having as template the 'Toolchange Custom' posprocessor file."
  8396. #: flatcamGUI/ObjectUI.py:1579
  8397. msgid "z_cut = depth where to cut"
  8398. msgstr "z_cut = depth where to cut"
  8399. #: flatcamGUI/ObjectUI.py:1580
  8400. msgid "z_move = height where to travel"
  8401. msgstr "z_move = height where to travel"
  8402. #: flatcamGUI/ObjectUI.py:1599
  8403. msgid "View CNC Code"
  8404. msgstr "View CNC Code"
  8405. #: flatcamGUI/ObjectUI.py:1602
  8406. msgid ""
  8407. "Opens TAB to view/modify/print G-Code\n"
  8408. "file."
  8409. msgstr ""
  8410. "Opens TAB to view/modify/print G-Code\n"
  8411. "file."
  8412. #: flatcamGUI/ObjectUI.py:1608
  8413. msgid "Save CNC Code"
  8414. msgstr "Save CNC Code"
  8415. #: flatcamGUI/ObjectUI.py:1611
  8416. msgid ""
  8417. "Opens dialog to save G-Code\n"
  8418. "file."
  8419. msgstr ""
  8420. "Opens dialog to save G-Code\n"
  8421. "file."
  8422. #: flatcamTools/ToolCalculators.py:24
  8423. msgid "Calculators"
  8424. msgstr "Calculators"
  8425. #: flatcamTools/ToolCalculators.py:25
  8426. msgid "V-Shape Tool Calculator"
  8427. msgstr "V-Shape Tool Calculator"
  8428. #: flatcamTools/ToolCalculators.py:26
  8429. msgid "Units Calculator"
  8430. msgstr "Units Calculator"
  8431. #: flatcamTools/ToolCalculators.py:27
  8432. msgid "ElectroPlating Calculator"
  8433. msgstr "ElectroPlating Calculator"
  8434. #: flatcamTools/ToolCalculators.py:68
  8435. msgid "Here you enter the value to be converted from INCH to MM"
  8436. msgstr "Here you enter the value to be converted from INCH to MM"
  8437. #: flatcamTools/ToolCalculators.py:73
  8438. msgid "Here you enter the value to be converted from MM to INCH"
  8439. msgstr "Here you enter the value to be converted from MM to INCH"
  8440. #: flatcamTools/ToolCalculators.py:96
  8441. msgid ""
  8442. "This is the diameter of the tool tip.\n"
  8443. "The manufacturer specifies it."
  8444. msgstr ""
  8445. "This is the diameter of the tool tip.\n"
  8446. "The manufacturer specifies it."
  8447. #: flatcamTools/ToolCalculators.py:99
  8448. msgid "Tip Angle:"
  8449. msgstr "Tip Angle:"
  8450. #: flatcamTools/ToolCalculators.py:103
  8451. msgid ""
  8452. "This is the angle of the tip of the tool.\n"
  8453. "It is specified by manufacturer."
  8454. msgstr ""
  8455. "This is the angle of the tip of the tool.\n"
  8456. "It is specified by manufacturer."
  8457. #: flatcamTools/ToolCalculators.py:110
  8458. msgid ""
  8459. "This is the depth to cut into the material.\n"
  8460. "In the CNCJob is the CutZ parameter."
  8461. msgstr ""
  8462. "This is the depth to cut into the material.\n"
  8463. "In the CNCJob is the CutZ parameter."
  8464. #: flatcamTools/ToolCalculators.py:113
  8465. msgid "Tool Diameter:"
  8466. msgstr "Tool Diameter:"
  8467. #: flatcamTools/ToolCalculators.py:117
  8468. msgid ""
  8469. "This is the tool diameter to be entered into\n"
  8470. "FlatCAM Gerber section.\n"
  8471. "In the CNCJob section it is called >Tool dia<."
  8472. msgstr ""
  8473. "This is the tool diameter to be entered into\n"
  8474. "FlatCAM Gerber section.\n"
  8475. "In the CNCJob section it is called >Tool dia<."
  8476. #: flatcamTools/ToolCalculators.py:128 flatcamTools/ToolCalculators.py:209
  8477. msgid "Calculate"
  8478. msgstr "Calculate"
  8479. #: flatcamTools/ToolCalculators.py:131
  8480. msgid ""
  8481. "Calculate either the Cut Z or the effective tool diameter,\n"
  8482. " depending on which is desired and which is known. "
  8483. msgstr ""
  8484. "Calculate either the Cut Z or the effective tool diameter,\n"
  8485. " depending on which is desired and which is known. "
  8486. #: flatcamTools/ToolCalculators.py:185
  8487. msgid "Current Value:"
  8488. msgstr "Current Value:"
  8489. #: flatcamTools/ToolCalculators.py:189
  8490. msgid ""
  8491. "This is the current intensity value\n"
  8492. "to be set on the Power Supply. In Amps."
  8493. msgstr ""
  8494. "This is the current intensity value\n"
  8495. "to be set on the Power Supply. In Amps."
  8496. #: flatcamTools/ToolCalculators.py:193
  8497. msgid "Time:"
  8498. msgstr "Time:"
  8499. #: flatcamTools/ToolCalculators.py:197
  8500. msgid ""
  8501. "This is the calculated time required for the procedure.\n"
  8502. "In minutes."
  8503. msgstr ""
  8504. "This is the calculated time required for the procedure.\n"
  8505. "In minutes."
  8506. #: flatcamTools/ToolCalculators.py:212
  8507. msgid ""
  8508. "Calculate the current intensity value and the procedure time,\n"
  8509. "depending on the parameters above"
  8510. msgstr ""
  8511. "Calculate the current intensity value and the procedure time,\n"
  8512. "depending on the parameters above"
  8513. #: flatcamTools/ToolCalculators.py:256
  8514. msgid "Calc. Tool"
  8515. msgstr "Calc. Tool"
  8516. #: flatcamTools/ToolCutOut.py:18
  8517. msgid "Cutout PCB"
  8518. msgstr "Cutout PCB"
  8519. #: flatcamTools/ToolCutOut.py:54
  8520. msgid "Obj Type:"
  8521. msgstr "Obj Type:"
  8522. #: flatcamTools/ToolCutOut.py:56
  8523. msgid ""
  8524. "Specify the type of object to be cutout.\n"
  8525. "It can be of type: Gerber or Geometry.\n"
  8526. "What is selected here will dictate the kind\n"
  8527. "of objects that will populate the 'Object' combobox."
  8528. msgstr ""
  8529. "Specify the type of object to be cutout.\n"
  8530. "It can be of type: Gerber or Geometry.\n"
  8531. "What is selected here will dictate the kind\n"
  8532. "of objects that will populate the 'Object' combobox."
  8533. #: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolPanelize.py:71
  8534. msgid "Object:"
  8535. msgstr "Object:"
  8536. #: flatcamTools/ToolCutOut.py:72
  8537. msgid "Object to be cutout. "
  8538. msgstr "Object to be cutout. "
  8539. #: flatcamTools/ToolCutOut.py:94
  8540. msgid ""
  8541. "Diameter of the tool used to cutout\n"
  8542. "the PCB shape out of the surrounding material."
  8543. msgstr ""
  8544. "Diameter of the tool used to cutout\n"
  8545. "the PCB shape out of the surrounding material."
  8546. #: flatcamTools/ToolCutOut.py:103
  8547. msgid ""
  8548. "Margin over bounds. A positive value here\n"
  8549. "will make the cutout of the PCB further from\n"
  8550. "the actual PCB border"
  8551. msgstr ""
  8552. "Margin over bounds. A positive value here\n"
  8553. "will make the cutout of the PCB further from\n"
  8554. "the actual PCB border"
  8555. #: flatcamTools/ToolCutOut.py:113
  8556. msgid ""
  8557. "The size of the bridge gaps in the cutout\n"
  8558. "used to keep the board connected to\n"
  8559. "the surrounding material (the one \n"
  8560. "from which the PCB is cutout)."
  8561. msgstr ""
  8562. "The size of the bridge gaps in the cutout\n"
  8563. "used to keep the board connected to\n"
  8564. "the surrounding material (the one \n"
  8565. "from which the PCB is cutout)."
  8566. #: flatcamTools/ToolCutOut.py:132
  8567. msgid ""
  8568. "Create a convex shape surrounding the entire PCB.\n"
  8569. "Used only if the source object type is Gerber."
  8570. msgstr ""
  8571. "Create a convex shape surrounding the entire PCB.\n"
  8572. "Used only if the source object type is Gerber."
  8573. #: flatcamTools/ToolCutOut.py:138
  8574. msgid "A. Automatic Bridge Gaps"
  8575. msgstr "A. Automatic Bridge Gaps"
  8576. #: flatcamTools/ToolCutOut.py:140
  8577. msgid "This section handle creation of automatic bridge gaps."
  8578. msgstr "This section handle creation of automatic bridge gaps."
  8579. #: flatcamTools/ToolCutOut.py:151
  8580. msgid ""
  8581. "Number of gaps used for the Automatic cutout.\n"
  8582. "There can be maximum 8 bridges/gaps.\n"
  8583. "The choices are:\n"
  8584. "- lr - left + right\n"
  8585. "- tb - top + bottom\n"
  8586. "- 4 - left + right +top + bottom\n"
  8587. "- 2lr - 2*left + 2*right\n"
  8588. "- 2tb - 2*top + 2*bottom\n"
  8589. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8590. msgstr ""
  8591. "Number of gaps used for the Automatic cutout.\n"
  8592. "There can be maximum 8 bridges/gaps.\n"
  8593. "The choices are:\n"
  8594. "- lr - left + right\n"
  8595. "- tb - top + bottom\n"
  8596. "- 4 - left + right +top + bottom\n"
  8597. "- 2lr - 2*left + 2*right\n"
  8598. "- 2tb - 2*top + 2*bottom\n"
  8599. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8600. #: flatcamTools/ToolCutOut.py:174
  8601. msgid "FreeForm:"
  8602. msgstr "FreeForm:"
  8603. #: flatcamTools/ToolCutOut.py:176
  8604. msgid ""
  8605. "The cutout shape can be of ny shape.\n"
  8606. "Useful when the PCB has a non-rectangular shape."
  8607. msgstr ""
  8608. "The cutout shape can be of ny shape.\n"
  8609. "Useful when the PCB has a non-rectangular shape."
  8610. #: flatcamTools/ToolCutOut.py:185
  8611. msgid ""
  8612. "Cutout the selected object.\n"
  8613. "The cutout shape can be of any shape.\n"
  8614. "Useful when the PCB has a non-rectangular shape."
  8615. msgstr ""
  8616. "Cutout the selected object.\n"
  8617. "The cutout shape can be of any shape.\n"
  8618. "Useful when the PCB has a non-rectangular shape."
  8619. #: flatcamTools/ToolCutOut.py:194
  8620. msgid "Rectangular:"
  8621. msgstr "Rectangular:"
  8622. #: flatcamTools/ToolCutOut.py:196
  8623. msgid ""
  8624. "The resulting cutout shape is\n"
  8625. "always a rectangle shape and it will be\n"
  8626. "the bounding box of the Object."
  8627. msgstr ""
  8628. "The resulting cutout shape is\n"
  8629. "always a rectangle shape and it will be\n"
  8630. "the bounding box of the Object."
  8631. #: flatcamTools/ToolCutOut.py:205
  8632. msgid ""
  8633. "Cutout the selected object.\n"
  8634. "The resulting cutout shape is\n"
  8635. "always a rectangle shape and it will be\n"
  8636. "the bounding box of the Object."
  8637. msgstr ""
  8638. "Cutout the selected object.\n"
  8639. "The resulting cutout shape is\n"
  8640. "always a rectangle shape and it will be\n"
  8641. "the bounding box of the Object."
  8642. #: flatcamTools/ToolCutOut.py:213
  8643. msgid "B. Manual Bridge Gaps"
  8644. msgstr "B. Manual Bridge Gaps"
  8645. #: flatcamTools/ToolCutOut.py:215
  8646. msgid ""
  8647. "This section handle creation of manual bridge gaps.\n"
  8648. "This is done by mouse clicking on the perimeter of the\n"
  8649. "Geometry object that is used as a cutout object. "
  8650. msgstr ""
  8651. "This section handle creation of manual bridge gaps.\n"
  8652. "This is done by mouse clicking on the perimeter of the\n"
  8653. "Geometry object that is used as a cutout object. "
  8654. #: flatcamTools/ToolCutOut.py:231
  8655. msgid "Geo Obj:"
  8656. msgstr "Geo Obj:"
  8657. #: flatcamTools/ToolCutOut.py:233
  8658. msgid "Geometry object used to create the manual cutout."
  8659. msgstr "Geometry object used to create the manual cutout."
  8660. #: flatcamTools/ToolCutOut.py:244
  8661. msgid "Manual Geo:"
  8662. msgstr "Manual Geo:"
  8663. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  8664. msgid ""
  8665. "If the object to be cutout is a Gerber\n"
  8666. "first create a Geometry that surrounds it,\n"
  8667. "to be used as the cutout, if one doesn't exist yet.\n"
  8668. "Select the source Gerber file in the top object combobox."
  8669. msgstr ""
  8670. "If the object to be cutout is a Gerber\n"
  8671. "first create a Geometry that surrounds it,\n"
  8672. "to be used as the cutout, if one doesn't exist yet.\n"
  8673. "Select the source Gerber file in the top object combobox."
  8674. #: flatcamTools/ToolCutOut.py:266
  8675. msgid "Manual Add Bridge Gaps:"
  8676. msgstr "Manual Add Bridge Gaps:"
  8677. #: flatcamTools/ToolCutOut.py:268
  8678. msgid ""
  8679. "Use the left mouse button (LMB) click\n"
  8680. "to create a bridge gap to separate the PCB from\n"
  8681. "the surrounding material."
  8682. msgstr ""
  8683. "Use the left mouse button (LMB) click\n"
  8684. "to create a bridge gap to separate the PCB from\n"
  8685. "the surrounding material."
  8686. #: flatcamTools/ToolCutOut.py:275
  8687. msgid "Generate Gap"
  8688. msgstr "Generate Gap"
  8689. #: flatcamTools/ToolCutOut.py:277
  8690. msgid ""
  8691. "Use the left mouse button (LMB) click\n"
  8692. "to create a bridge gap to separate the PCB from\n"
  8693. "the surrounding material.\n"
  8694. "The LMB click has to be done on the perimeter of\n"
  8695. "the Geometry object used as a cutout geometry."
  8696. msgstr ""
  8697. "Use the left mouse button (LMB) click\n"
  8698. "to create a bridge gap to separate the PCB from\n"
  8699. "the surrounding material.\n"
  8700. "The LMB click has to be done on the perimeter of\n"
  8701. "the Geometry object used as a cutout geometry."
  8702. #: flatcamTools/ToolCutOut.py:358 flatcamTools/ToolCutOut.py:552
  8703. #: flatcamTools/ToolNonCopperClear.py:669 flatcamTools/ToolPaint.py:768
  8704. #: flatcamTools/ToolPanelize.py:353 flatcamTools/ToolPanelize.py:368
  8705. #: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:252
  8706. #: flatcamTools/ToolSub.py:432 flatcamTools/ToolSub.py:445
  8707. #, python-format
  8708. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  8709. msgstr "[ERROR_NOTCL] Could not retrieve object: %s"
  8710. #: flatcamTools/ToolCutOut.py:362
  8711. msgid ""
  8712. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  8713. "Select one and try again."
  8714. msgstr ""
  8715. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  8716. "Select one and try again."
  8717. #: flatcamTools/ToolCutOut.py:377
  8718. msgid ""
  8719. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8720. "number."
  8721. msgstr ""
  8722. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8723. "number."
  8724. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:585
  8725. #: flatcamTools/ToolCutOut.py:854
  8726. msgid ""
  8727. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  8728. msgstr ""
  8729. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  8730. #: flatcamTools/ToolCutOut.py:403 flatcamTools/ToolCutOut.py:596
  8731. #: flatcamTools/ToolCutOut.py:742
  8732. msgid ""
  8733. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  8734. msgstr ""
  8735. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  8736. #: flatcamTools/ToolCutOut.py:410 flatcamTools/ToolCutOut.py:603
  8737. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  8738. msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  8739. #: flatcamTools/ToolCutOut.py:414 flatcamTools/ToolCutOut.py:607
  8740. msgid ""
  8741. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  8742. "or 8. Fill in a correct value and retry. "
  8743. msgstr ""
  8744. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  8745. "or 8. Fill in a correct value and retry. "
  8746. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:612
  8747. msgid ""
  8748. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  8749. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  8750. "Geometry,\n"
  8751. "and after that perform Cutout."
  8752. msgstr ""
  8753. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  8754. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  8755. "Geometry,\n"
  8756. "and after that perform Cutout."
  8757. #: flatcamTools/ToolCutOut.py:535 flatcamTools/ToolCutOut.py:712
  8758. msgid "[success] Any form CutOut operation finished."
  8759. msgstr "[success] Any form CutOut operation finished."
  8760. #: flatcamTools/ToolCutOut.py:556 flatcamTools/ToolPaint.py:772
  8761. #: flatcamTools/ToolPanelize.py:359
  8762. #, python-format
  8763. msgid "[ERROR_NOTCL] Object not found: %s"
  8764. msgstr "[ERROR_NOTCL] Object not found: %s"
  8765. #: flatcamTools/ToolCutOut.py:570 flatcamTools/ToolCutOut.py:732
  8766. #: flatcamTools/ToolCutOut.py:839
  8767. msgid ""
  8768. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8769. "number."
  8770. msgstr ""
  8771. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  8772. "number."
  8773. #: flatcamTools/ToolCutOut.py:717
  8774. msgid ""
  8775. "Click on the selected geometry object perimeter to create a bridge gap ..."
  8776. msgstr ""
  8777. "Click on the selected geometry object perimeter to create a bridge gap ..."
  8778. #: flatcamTools/ToolCutOut.py:758
  8779. msgid "Making manual bridge gap..."
  8780. msgstr "Making manual bridge gap..."
  8781. #: flatcamTools/ToolCutOut.py:782
  8782. #, python-format
  8783. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  8784. msgstr "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  8785. #: flatcamTools/ToolCutOut.py:786
  8786. #, python-format
  8787. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  8788. msgstr "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  8789. #: flatcamTools/ToolCutOut.py:796
  8790. msgid "[success] Added manual Bridge Gap."
  8791. msgstr "[success] Added manual Bridge Gap."
  8792. #: flatcamTools/ToolCutOut.py:814
  8793. #, python-format
  8794. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  8795. msgstr "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  8796. #: flatcamTools/ToolCutOut.py:818
  8797. msgid ""
  8798. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  8799. "Select one and try again."
  8800. msgstr ""
  8801. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  8802. "Select one and try again."
  8803. #: flatcamTools/ToolCutOut.py:823
  8804. msgid ""
  8805. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  8806. "Select a Gerber file and try again."
  8807. msgstr ""
  8808. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  8809. "Select a Gerber file and try again."
  8810. #: flatcamTools/ToolDblSided.py:18
  8811. msgid "2-Sided PCB"
  8812. msgstr "2-Sided PCB"
  8813. #: flatcamTools/ToolDblSided.py:47
  8814. msgid "<b>GERBER:</b>"
  8815. msgstr "<b>GERBER:</b>"
  8816. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  8817. #: flatcamTools/ToolDblSided.py:100
  8818. msgid "Mirror"
  8819. msgstr "Mirror"
  8820. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  8821. #: flatcamTools/ToolDblSided.py:102
  8822. msgid ""
  8823. "Mirrors (flips) the specified object around \n"
  8824. "the specified axis. Does not create a new \n"
  8825. "object, but modifies it."
  8826. msgstr ""
  8827. "Mirrors (flips) the specified object around \n"
  8828. "the specified axis. Does not create a new \n"
  8829. "object, but modifies it."
  8830. #: flatcamTools/ToolDblSided.py:71
  8831. msgid "<b>EXCELLON:</b>"
  8832. msgstr "<b>EXCELLON:</b>"
  8833. #: flatcamTools/ToolDblSided.py:73
  8834. msgid "Excellon Object to be mirrored."
  8835. msgstr "Excellon Object to be mirrored."
  8836. #: flatcamTools/ToolDblSided.py:95
  8837. msgid "<b>GEOMETRY</b>:"
  8838. msgstr "<b>GEOMETRY</b>:"
  8839. #: flatcamTools/ToolDblSided.py:97
  8840. msgid "Geometry Obj to be mirrored."
  8841. msgstr "Geometry Obj to be mirrored."
  8842. #: flatcamTools/ToolDblSided.py:135
  8843. msgid ""
  8844. "The axis should pass through a <b>point</b> or cut\n"
  8845. " a specified <b>box</b> (in a FlatCAM object) through \n"
  8846. "the center."
  8847. msgstr ""
  8848. "The axis should pass through a <b>point</b> or cut\n"
  8849. " a specified <b>box</b> (in a FlatCAM object) through \n"
  8850. "the center."
  8851. #: flatcamTools/ToolDblSided.py:152
  8852. msgid "Point/Box Reference:"
  8853. msgstr "Point/Box Reference:"
  8854. #: flatcamTools/ToolDblSided.py:154
  8855. msgid ""
  8856. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  8857. "the mirroring axis passes.\n"
  8858. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  8859. "Geo).\n"
  8860. "Through the center of this object pass the mirroring axis selected above."
  8861. msgstr ""
  8862. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  8863. "the mirroring axis passes.\n"
  8864. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  8865. "Geo).\n"
  8866. "Through the center of this object pass the mirroring axis selected above."
  8867. #: flatcamTools/ToolDblSided.py:162
  8868. msgid ""
  8869. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  8870. "axis \n"
  8871. " selected in 'MIRROR AXIS' pass.\n"
  8872. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  8873. "and left mouse button click on canvas or you can enter the coords manually."
  8874. msgstr ""
  8875. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  8876. "axis \n"
  8877. " selected in 'MIRROR AXIS' pass.\n"
  8878. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  8879. "and left mouse button click on canvas or you can enter the coords manually."
  8880. #: flatcamTools/ToolDblSided.py:182
  8881. msgid "Gerber Reference Box Object"
  8882. msgstr "Gerber Reference Box Object"
  8883. #: flatcamTools/ToolDblSided.py:183
  8884. msgid "Excellon Reference Box Object"
  8885. msgstr "Excellon Reference Box Object"
  8886. #: flatcamTools/ToolDblSided.py:184
  8887. msgid "Geometry Reference Box Object"
  8888. msgstr "Geometry Reference Box Object"
  8889. #: flatcamTools/ToolDblSided.py:192
  8890. msgid "Alignment Drill Coordinates:"
  8891. msgstr "Alignment Drill Coordinates:"
  8892. #: flatcamTools/ToolDblSided.py:194
  8893. msgid ""
  8894. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8895. "each set of (x, y) coordinates\n"
  8896. "entered here, a pair of drills will be created:\n"
  8897. "\n"
  8898. "- one drill at the coordinates from the field\n"
  8899. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8900. "Axis'."
  8901. msgstr ""
  8902. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8903. "each set of (x, y) coordinates\n"
  8904. "entered here, a pair of drills will be created:\n"
  8905. "\n"
  8906. "- one drill at the coordinates from the field\n"
  8907. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8908. "Axis'."
  8909. #: flatcamTools/ToolDblSided.py:209
  8910. msgid ""
  8911. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8912. "on one side of the mirror axis.\n"
  8913. "\n"
  8914. "The coordinates set can be obtained:\n"
  8915. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8916. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  8917. "field.\n"
  8918. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  8919. "field and click Paste.\n"
  8920. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  8921. msgstr ""
  8922. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8923. "on one side of the mirror axis.\n"
  8924. "\n"
  8925. "The coordinates set can be obtained:\n"
  8926. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8927. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  8928. "field.\n"
  8929. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  8930. "field and click Paste.\n"
  8931. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  8932. #: flatcamTools/ToolDblSided.py:223
  8933. msgid "Alignment Drill Diameter"
  8934. msgstr "Alignment Drill Diameter"
  8935. #: flatcamTools/ToolDblSided.py:246
  8936. msgid "Create Excellon Object"
  8937. msgstr "Create Excellon Object"
  8938. #: flatcamTools/ToolDblSided.py:248
  8939. msgid ""
  8940. "Creates an Excellon Object containing the\n"
  8941. "specified alignment holes and their mirror\n"
  8942. "images."
  8943. msgstr ""
  8944. "Creates an Excellon Object containing the\n"
  8945. "specified alignment holes and their mirror\n"
  8946. "images."
  8947. #: flatcamTools/ToolDblSided.py:254
  8948. msgid "Reset"
  8949. msgstr "Reset"
  8950. #: flatcamTools/ToolDblSided.py:256
  8951. msgid "Resets all the fields."
  8952. msgstr "Resets all the fields."
  8953. #: flatcamTools/ToolDblSided.py:301
  8954. msgid "2-Sided Tool"
  8955. msgstr "2-Sided Tool"
  8956. #: flatcamTools/ToolDblSided.py:326
  8957. msgid ""
  8958. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  8959. "missing. Add them and retry."
  8960. msgstr ""
  8961. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  8962. "missing. Add them and retry."
  8963. #: flatcamTools/ToolDblSided.py:345
  8964. msgid ""
  8965. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  8966. msgstr ""
  8967. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  8968. #: flatcamTools/ToolDblSided.py:367
  8969. msgid ""
  8970. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  8971. "retry."
  8972. msgstr ""
  8973. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  8974. "retry."
  8975. #: flatcamTools/ToolDblSided.py:374
  8976. msgid ""
  8977. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  8978. "and retry."
  8979. msgstr ""
  8980. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  8981. "and retry."
  8982. #: flatcamTools/ToolDblSided.py:397
  8983. msgid "[success] Excellon object with alignment drills created..."
  8984. msgstr "[success] Excellon object with alignment drills created..."
  8985. #: flatcamTools/ToolDblSided.py:406
  8986. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  8987. msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
  8988. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  8989. #: flatcamTools/ToolDblSided.py:497
  8990. msgid ""
  8991. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  8992. msgstr ""
  8993. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  8994. #: flatcamTools/ToolDblSided.py:420
  8995. msgid ""
  8996. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  8997. "mirroring reference."
  8998. msgstr ""
  8999. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  9000. "mirroring reference."
  9001. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  9002. #: flatcamTools/ToolDblSided.py:511
  9003. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  9004. msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
  9005. #: flatcamTools/ToolDblSided.py:440
  9006. #, python-format
  9007. msgid "[success] Gerber %s was mirrored..."
  9008. msgstr "[success] Gerber %s was mirrored..."
  9009. #: flatcamTools/ToolDblSided.py:449
  9010. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9011. msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9012. #: flatcamTools/ToolDblSided.py:464
  9013. msgid ""
  9014. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9015. "coords and try again ..."
  9016. msgstr ""
  9017. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9018. "coords and try again ..."
  9019. #: flatcamTools/ToolDblSided.py:484
  9020. #, python-format
  9021. msgid "[success] Excellon %s was mirrored..."
  9022. msgstr "[success] Excellon %s was mirrored..."
  9023. #: flatcamTools/ToolDblSided.py:493
  9024. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9025. msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9026. #: flatcamTools/ToolDblSided.py:521
  9027. #, python-format
  9028. msgid "[success] Geometry %s was mirrored..."
  9029. msgstr "[success] Geometry %s was mirrored..."
  9030. #: flatcamTools/ToolFilm.py:25
  9031. msgid "Film PCB"
  9032. msgstr "Film PCB"
  9033. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9034. #: flatcamTools/ToolPanelize.py:56
  9035. msgid "Object Type:"
  9036. msgstr "Object Type:"
  9037. #: flatcamTools/ToolFilm.py:58
  9038. msgid ""
  9039. "Specify the type of object for which to create the film.\n"
  9040. "The object can be of type: Gerber or Geometry.\n"
  9041. "The selection here decide the type of objects that will be\n"
  9042. "in the Film Object combobox."
  9043. msgstr ""
  9044. "Specify the type of object for which to create the film.\n"
  9045. "The object can be of type: Gerber or Geometry.\n"
  9046. "The selection here decide the type of objects that will be\n"
  9047. "in the Film Object combobox."
  9048. #: flatcamTools/ToolFilm.py:71
  9049. msgid "Film Object:"
  9050. msgstr "Film Object:"
  9051. #: flatcamTools/ToolFilm.py:73
  9052. msgid "Object for which to create the film."
  9053. msgstr "Object for which to create the film."
  9054. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  9055. msgid "Box Type:"
  9056. msgstr "Box Type:"
  9057. #: flatcamTools/ToolFilm.py:91
  9058. msgid ""
  9059. "Specify the type of object to be used as an container for\n"
  9060. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9061. "the type of objects that will be\n"
  9062. "in the Box Object combobox."
  9063. msgstr ""
  9064. "Specify the type of object to be used as an container for\n"
  9065. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9066. "the type of objects that will be\n"
  9067. "in the Box Object combobox."
  9068. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9069. msgid "Box Object:"
  9070. msgstr "Box Object:"
  9071. #: flatcamTools/ToolFilm.py:106
  9072. msgid ""
  9073. "The actual object that is used a container for the\n"
  9074. " selected object for which we create the film.\n"
  9075. "Usually it is the PCB outline but it can be also the\n"
  9076. "same object for which the film is created."
  9077. msgstr ""
  9078. "The actual object that is used a container for the\n"
  9079. " selected object for which we create the film.\n"
  9080. "Usually it is the PCB outline but it can be also the\n"
  9081. "same object for which the film is created."
  9082. #: flatcamTools/ToolFilm.py:114
  9083. msgid "Positive"
  9084. msgstr "Positive"
  9085. #: flatcamTools/ToolFilm.py:115
  9086. msgid "Negative"
  9087. msgstr "Negative"
  9088. #: flatcamTools/ToolFilm.py:157
  9089. msgid "Save Film"
  9090. msgstr "Save Film"
  9091. #: flatcamTools/ToolFilm.py:159
  9092. msgid ""
  9093. "Create a Film for the selected object, within\n"
  9094. "the specified box. Does not create a new \n"
  9095. " FlatCAM object, but directly save it in SVG format\n"
  9096. "which can be opened with Inkscape."
  9097. msgstr ""
  9098. "Create a Film for the selected object, within\n"
  9099. "the specified box. Does not create a new \n"
  9100. " FlatCAM object, but directly save it in SVG format\n"
  9101. "which can be opened with Inkscape."
  9102. #: flatcamTools/ToolFilm.py:225
  9103. msgid ""
  9104. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9105. msgstr ""
  9106. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9107. #: flatcamTools/ToolFilm.py:231
  9108. msgid ""
  9109. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9110. msgstr ""
  9111. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9112. #: flatcamTools/ToolFilm.py:255
  9113. msgid "Generating Film ..."
  9114. msgstr "Generating Film ..."
  9115. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  9116. msgid "Export SVG positive"
  9117. msgstr "Export SVG positive"
  9118. #: flatcamTools/ToolFilm.py:269
  9119. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  9120. msgstr "[WARNING_NOTCL] Export SVG positive cancelled."
  9121. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  9122. msgid "Export SVG negative"
  9123. msgstr "Export SVG negative"
  9124. #: flatcamTools/ToolFilm.py:285
  9125. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  9126. msgstr "[WARNING_NOTCL] Export SVG negative cancelled."
  9127. #: flatcamTools/ToolImage.py:25
  9128. msgid "Image as Object"
  9129. msgstr "Image as Object"
  9130. #: flatcamTools/ToolImage.py:31
  9131. msgid "Image to PCB"
  9132. msgstr "Image to PCB"
  9133. #: flatcamTools/ToolImage.py:55
  9134. msgid ""
  9135. "Specify the type of object to create from the image.\n"
  9136. "It can be of type: Gerber or Geometry."
  9137. msgstr ""
  9138. "Specify the type of object to create from the image.\n"
  9139. "It can be of type: Gerber or Geometry."
  9140. #: flatcamTools/ToolImage.py:63
  9141. msgid "DPI value:"
  9142. msgstr "DPI value:"
  9143. #: flatcamTools/ToolImage.py:65
  9144. msgid "Specify a DPI value for the image."
  9145. msgstr "Specify a DPI value for the image."
  9146. #: flatcamTools/ToolImage.py:72
  9147. msgid "Level of detail"
  9148. msgstr "Level of detail"
  9149. #: flatcamTools/ToolImage.py:81
  9150. msgid "Image type"
  9151. msgstr "Image type"
  9152. #: flatcamTools/ToolImage.py:83
  9153. msgid ""
  9154. "Choose a method for the image interpretation.\n"
  9155. "B/W means a black & white image. Color means a colored image."
  9156. msgstr ""
  9157. "Choose a method for the image interpretation.\n"
  9158. "B/W means a black & white image. Color means a colored image."
  9159. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9160. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9161. msgid "Mask value"
  9162. msgstr "Mask value"
  9163. #: flatcamTools/ToolImage.py:92
  9164. msgid ""
  9165. "Mask for monochrome image.\n"
  9166. "Takes values between [0 ... 255].\n"
  9167. "Decides the level of details to include\n"
  9168. "in the resulting geometry.\n"
  9169. "0 means no detail and 255 means everything \n"
  9170. "(which is totally black)."
  9171. msgstr ""
  9172. "Mask for monochrome image.\n"
  9173. "Takes values between [0 ... 255].\n"
  9174. "Decides the level of details to include\n"
  9175. "in the resulting geometry.\n"
  9176. "0 means no detail and 255 means everything \n"
  9177. "(which is totally black)."
  9178. #: flatcamTools/ToolImage.py:105
  9179. msgid ""
  9180. "Mask for RED color.\n"
  9181. "Takes values between [0 ... 255].\n"
  9182. "Decides the level of details to include\n"
  9183. "in the resulting geometry."
  9184. msgstr ""
  9185. "Mask for RED color.\n"
  9186. "Takes values between [0 ... 255].\n"
  9187. "Decides the level of details to include\n"
  9188. "in the resulting geometry."
  9189. #: flatcamTools/ToolImage.py:116
  9190. msgid ""
  9191. "Mask for GREEN color.\n"
  9192. "Takes values between [0 ... 255].\n"
  9193. "Decides the level of details to include\n"
  9194. "in the resulting geometry."
  9195. msgstr ""
  9196. "Mask for GREEN color.\n"
  9197. "Takes values between [0 ... 255].\n"
  9198. "Decides the level of details to include\n"
  9199. "in the resulting geometry."
  9200. #: flatcamTools/ToolImage.py:127
  9201. msgid ""
  9202. "Mask for BLUE color.\n"
  9203. "Takes values between [0 ... 255].\n"
  9204. "Decides the level of details to include\n"
  9205. "in the resulting geometry."
  9206. msgstr ""
  9207. "Mask for BLUE color.\n"
  9208. "Takes values between [0 ... 255].\n"
  9209. "Decides the level of details to include\n"
  9210. "in the resulting geometry."
  9211. #: flatcamTools/ToolImage.py:139
  9212. msgid "Import image"
  9213. msgstr "Import image"
  9214. #: flatcamTools/ToolImage.py:141
  9215. msgid "Open a image of raster type and then import it in FlatCAM."
  9216. msgstr "Open a image of raster type and then import it in FlatCAM."
  9217. #: flatcamTools/ToolImage.py:170
  9218. msgid "Image Tool"
  9219. msgstr "Image Tool"
  9220. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  9221. msgid "Import IMAGE"
  9222. msgstr "Import IMAGE"
  9223. #: flatcamTools/ToolMeasurement.py:26
  9224. msgid "Measurement"
  9225. msgstr "Measurement"
  9226. #: flatcamTools/ToolMeasurement.py:43
  9227. msgid "Units:"
  9228. msgstr "Units:"
  9229. #: flatcamTools/ToolMeasurement.py:44
  9230. msgid "Those are the units in which the distance is measured."
  9231. msgstr "Those are the units in which the distance is measured."
  9232. #: flatcamTools/ToolMeasurement.py:45
  9233. msgid "METRIC (mm)"
  9234. msgstr "METRIC (mm)"
  9235. #: flatcamTools/ToolMeasurement.py:45
  9236. msgid "INCH (in)"
  9237. msgstr "INCH (in)"
  9238. #: flatcamTools/ToolMeasurement.py:48
  9239. msgid "Start"
  9240. msgstr "Start"
  9241. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  9242. msgid "Coords"
  9243. msgstr "Coords"
  9244. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  9245. msgid "This is measuring Start point coordinates."
  9246. msgstr "This is measuring Start point coordinates."
  9247. #: flatcamTools/ToolMeasurement.py:51
  9248. msgid "Stop"
  9249. msgstr "Stop"
  9250. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  9251. msgid "This is the measuring Stop point coordinates."
  9252. msgstr "This is the measuring Stop point coordinates."
  9253. #: flatcamTools/ToolMeasurement.py:54
  9254. msgid "Dx:"
  9255. msgstr "Dx:"
  9256. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  9257. msgid "This is the distance measured over the X axis."
  9258. msgstr "This is the distance measured over the X axis."
  9259. #: flatcamTools/ToolMeasurement.py:57
  9260. msgid "Dy:"
  9261. msgstr "Dy:"
  9262. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  9263. msgid "This is the distance measured over the Y axis."
  9264. msgstr "This is the distance measured over the Y axis."
  9265. #: flatcamTools/ToolMeasurement.py:60
  9266. msgid "DISTANCE"
  9267. msgstr "DISTANCE"
  9268. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  9269. msgid "This is the point to point Euclidian distance."
  9270. msgstr "This is the point to point Euclidian distance."
  9271. #: flatcamTools/ToolMeasurement.py:83
  9272. msgid "Measure"
  9273. msgstr "Measure"
  9274. #: flatcamTools/ToolMeasurement.py:131
  9275. msgid "Meas. Tool"
  9276. msgstr "Meas. Tool"
  9277. #: flatcamTools/ToolMeasurement.py:176
  9278. msgid "MEASURING: Click on the Start point ..."
  9279. msgstr "MEASURING: Click on the Start point ..."
  9280. #: flatcamTools/ToolMeasurement.py:269
  9281. msgid "MEASURING: Click on the Destination point ..."
  9282. msgstr "MEASURING: Click on the Destination point ..."
  9283. #: flatcamTools/ToolMeasurement.py:277
  9284. #, python-brace-format
  9285. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9286. msgstr "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9287. #: flatcamTools/ToolMove.py:81
  9288. msgid "MOVE: Click on the Start point ..."
  9289. msgstr "MOVE: Click on the Start point ..."
  9290. #: flatcamTools/ToolMove.py:88
  9291. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9292. msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9293. #: flatcamTools/ToolMove.py:110
  9294. msgid "MOVE: Click on the Destination point ..."
  9295. msgstr "MOVE: Click on the Destination point ..."
  9296. #: flatcamTools/ToolMove.py:128
  9297. msgid "Moving ..."
  9298. msgstr "Moving ..."
  9299. #: flatcamTools/ToolMove.py:135
  9300. msgid "[WARNING_NOTCL] No object(s) selected."
  9301. msgstr "[WARNING_NOTCL] No object(s) selected."
  9302. #: flatcamTools/ToolMove.py:158
  9303. #, python-format
  9304. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9305. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9306. #: flatcamTools/ToolMove.py:164
  9307. #, python-format
  9308. msgid "[success] %s object was moved ..."
  9309. msgstr "[success] %s object was moved ..."
  9310. #: flatcamTools/ToolMove.py:174
  9311. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9312. msgstr ""
  9313. "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9314. #: flatcamTools/ToolMove.py:202
  9315. msgid "[WARNING_NOTCL] Move action cancelled."
  9316. msgstr "[WARNING_NOTCL] Move action cancelled."
  9317. #: flatcamTools/ToolMove.py:214
  9318. msgid "[WARNING_NOTCL] Object(s) not selected"
  9319. msgstr "[WARNING_NOTCL] Object(s) not selected"
  9320. #: flatcamTools/ToolNonCopperClear.py:26
  9321. msgid "Non-Copper Clearing"
  9322. msgstr "Non-Copper Clearing"
  9323. #: flatcamTools/ToolNonCopperClear.py:64
  9324. msgid "Gerber object to be cleared of excess copper. "
  9325. msgstr "Gerber object to be cleared of excess copper. "
  9326. #: flatcamTools/ToolNonCopperClear.py:74
  9327. msgid ""
  9328. "Tools pool from which the algorithm\n"
  9329. "will pick the ones used for copper clearing."
  9330. msgstr ""
  9331. "Tools pool from which the algorithm\n"
  9332. "will pick the ones used for copper clearing."
  9333. #: flatcamTools/ToolNonCopperClear.py:89
  9334. msgid ""
  9335. "This is the Tool Number.\n"
  9336. "Non copper clearing will start with the tool with the biggest \n"
  9337. "diameter, continuing until there are no more tools.\n"
  9338. "Only tools that create NCC clearing geometry will still be present\n"
  9339. "in the resulting geometry. This is because with some tools\n"
  9340. "this function will not be able to create painting geometry."
  9341. msgstr ""
  9342. "This is the Tool Number.\n"
  9343. "Non copper clearing will start with the tool with the biggest \n"
  9344. "diameter, continuing until there are no more tools.\n"
  9345. "Only tools that create NCC clearing geometry will still be present\n"
  9346. "in the resulting geometry. This is because with some tools\n"
  9347. "this function will not be able to create painting geometry."
  9348. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  9349. msgid ""
  9350. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9351. "informative only. Being circular, <BR>the cut width in material is exactly "
  9352. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9353. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9354. "parameter in the resulting geometry UI form and enable two additional UI "
  9355. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9356. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9357. "material will be equal with the value in the Tool Diameter column of this "
  9358. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9359. "the Operation Type in the resulting geometry as Isolation."
  9360. msgstr ""
  9361. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9362. "informative only. Being circular, <BR>the cut width in material is exactly "
  9363. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9364. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9365. "parameter in the resulting geometry UI form and enable two additional UI "
  9366. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9367. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9368. "material will be equal with the value in the Tool Diameter column of this "
  9369. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9370. "the Operation Type in the resulting geometry as Isolation."
  9371. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  9372. msgid "Tool Dia"
  9373. msgstr "Tool Dia"
  9374. #: flatcamTools/ToolNonCopperClear.py:122
  9375. msgid "Diameter for the new tool to add in the Tool Table"
  9376. msgstr "Diameter for the new tool to add in the Tool Table"
  9377. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  9378. #: flatcamTools/ToolSolderPaste.py:123
  9379. msgid ""
  9380. "Delete a selection of tools in the Tool Table\n"
  9381. "by first selecting a row(s) in the Tool Table."
  9382. msgstr ""
  9383. "Delete a selection of tools in the Tool Table\n"
  9384. "by first selecting a row(s) in the Tool Table."
  9385. #: flatcamTools/ToolNonCopperClear.py:226
  9386. msgid ""
  9387. "If checked, use 'rest machining'.\n"
  9388. "Basically it will clear copper outside PCB features,\n"
  9389. "using the biggest tool and continue with the next tools,\n"
  9390. "from bigger to smaller, to clear areas of copper that\n"
  9391. "could not be cleared by previous tool, until there is\n"
  9392. "no more copper to clear or there are no more tools.\n"
  9393. "If not checked, use the standard algorithm."
  9394. msgstr ""
  9395. "If checked, use 'rest machining'.\n"
  9396. "Basically it will clear copper outside PCB features,\n"
  9397. "using the biggest tool and continue with the next tools,\n"
  9398. "from bigger to smaller, to clear areas of copper that\n"
  9399. "could not be cleared by previous tool, until there is\n"
  9400. "no more copper to clear or there are no more tools.\n"
  9401. "If not checked, use the standard algorithm."
  9402. #: flatcamTools/ToolNonCopperClear.py:238
  9403. msgid "Generate Geometry"
  9404. msgstr "Generate Geometry"
  9405. #: flatcamTools/ToolNonCopperClear.py:486 flatcamTools/ToolPaint.py:543
  9406. #: flatcamTools/ToolSolderPaste.py:763
  9407. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9408. msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9409. #: flatcamTools/ToolNonCopperClear.py:515 flatcamTools/ToolPaint.py:567
  9410. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9411. msgstr "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9412. #: flatcamTools/ToolNonCopperClear.py:520 flatcamTools/ToolPaint.py:572
  9413. msgid "[success] New tool added to Tool Table."
  9414. msgstr "[success] New tool added to Tool Table."
  9415. #: flatcamTools/ToolNonCopperClear.py:562 flatcamTools/ToolPaint.py:617
  9416. msgid "[success] Tool from Tool Table was edited."
  9417. msgstr "[success] Tool from Tool Table was edited."
  9418. #: flatcamTools/ToolNonCopperClear.py:573 flatcamTools/ToolPaint.py:628
  9419. #: flatcamTools/ToolSolderPaste.py:850
  9420. msgid ""
  9421. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9422. "Table."
  9423. msgstr ""
  9424. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9425. "Table."
  9426. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:727
  9427. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9428. msgstr "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9429. #: flatcamTools/ToolNonCopperClear.py:618 flatcamTools/ToolPaint.py:732
  9430. msgid "[success] Tool(s) deleted from Tool Table."
  9431. msgstr "[success] Tool(s) deleted from Tool Table."
  9432. #: flatcamTools/ToolNonCopperClear.py:636 flatcamTools/ToolPaint.py:751
  9433. msgid ""
  9434. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9435. msgstr ""
  9436. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9437. #: flatcamTools/ToolNonCopperClear.py:677
  9438. msgid "[ERROR_NOTCL] No Gerber file available."
  9439. msgstr "[ERROR_NOTCL] No Gerber file available."
  9440. #: flatcamTools/ToolNonCopperClear.py:715
  9441. #: flatcamTools/ToolNonCopperClear.py:837
  9442. msgid "Clearing Non-Copper areas."
  9443. msgstr "Clearing Non-Copper areas."
  9444. #: flatcamTools/ToolNonCopperClear.py:733
  9445. #, python-format
  9446. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9447. msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
  9448. #: flatcamTools/ToolNonCopperClear.py:802
  9449. #, python-format
  9450. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9451. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9452. #: flatcamTools/ToolNonCopperClear.py:807
  9453. msgid "[success] NCC Tool finished."
  9454. msgstr "[success] NCC Tool finished."
  9455. #: flatcamTools/ToolNonCopperClear.py:809
  9456. msgid ""
  9457. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9458. "cleared. Check the result."
  9459. msgstr ""
  9460. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9461. "cleared. Check the result."
  9462. #: flatcamTools/ToolNonCopperClear.py:855
  9463. #, python-format
  9464. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9465. msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9466. #: flatcamTools/ToolNonCopperClear.py:953
  9467. #, python-format
  9468. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9469. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9470. #: flatcamTools/ToolNonCopperClear.py:961
  9471. msgid ""
  9472. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9473. "settings."
  9474. msgstr ""
  9475. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9476. "settings."
  9477. #: flatcamTools/ToolPDF.py:38
  9478. msgid "PDF Import Tool"
  9479. msgstr "PDF Import Tool"
  9480. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9481. msgid "Open PDF"
  9482. msgstr "Open PDF"
  9483. #: flatcamTools/ToolPDF.py:159
  9484. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9485. msgstr "[WARNING_NOTCL] Open PDF cancelled."
  9486. #: flatcamTools/ToolPDF.py:186
  9487. msgid "Parsing PDF file ..."
  9488. msgstr "Parsing PDF file ..."
  9489. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9490. #, python-format
  9491. msgid "Rendering PDF layer #%d ..."
  9492. msgstr "Rendering PDF layer #%d ..."
  9493. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9494. msgid "[ERROR_NOTCL] Open PDF file failed."
  9495. msgstr "[ERROR_NOTCL] Open PDF file failed."
  9496. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9497. #, python-format
  9498. msgid "[success] Rendered: %s"
  9499. msgstr "[success] Rendered: %s"
  9500. #: flatcamTools/ToolPaint.py:24
  9501. msgid "Paint Area"
  9502. msgstr "Paint Area"
  9503. #: flatcamTools/ToolPaint.py:60
  9504. msgid "Geometry:"
  9505. msgstr "Geometry:"
  9506. #: flatcamTools/ToolPaint.py:62
  9507. msgid "Geometry object to be painted. "
  9508. msgstr "Geometry object to be painted. "
  9509. #: flatcamTools/ToolPaint.py:71
  9510. msgid ""
  9511. "Tools pool from which the algorithm\n"
  9512. "will pick the ones used for painting."
  9513. msgstr ""
  9514. "Tools pool from which the algorithm\n"
  9515. "will pick the ones used for painting."
  9516. #: flatcamTools/ToolPaint.py:86
  9517. msgid ""
  9518. "This is the Tool Number.\n"
  9519. "Painting will start with the tool with the biggest diameter,\n"
  9520. "continuing until there are no more tools.\n"
  9521. "Only tools that create painting geometry will still be present\n"
  9522. "in the resulting geometry. This is because with some tools\n"
  9523. "this function will not be able to create painting geometry."
  9524. msgstr ""
  9525. "This is the Tool Number.\n"
  9526. "Painting will start with the tool with the biggest diameter,\n"
  9527. "continuing until there are no more tools.\n"
  9528. "Only tools that create painting geometry will still be present\n"
  9529. "in the resulting geometry. This is because with some tools\n"
  9530. "this function will not be able to create painting geometry."
  9531. #: flatcamTools/ToolPaint.py:119
  9532. msgid "Diameter for the new tool."
  9533. msgstr "Diameter for the new tool."
  9534. #: flatcamTools/ToolPaint.py:224
  9535. msgid ""
  9536. "If checked, use 'rest machining'.\n"
  9537. "Basically it will clear copper outside PCB features,\n"
  9538. "using the biggest tool and continue with the next tools,\n"
  9539. "from bigger to smaller, to clear areas of copper that\n"
  9540. "could not be cleared by previous tool, until there is\n"
  9541. "no more copper to clear or there are no more tools.\n"
  9542. "\n"
  9543. "If not checked, use the standard algorithm."
  9544. msgstr ""
  9545. "If checked, use 'rest machining'.\n"
  9546. "Basically it will clear copper outside PCB features,\n"
  9547. "using the biggest tool and continue with the next tools,\n"
  9548. "from bigger to smaller, to clear areas of copper that\n"
  9549. "could not be cleared by previous tool, until there is\n"
  9550. "no more copper to clear or there are no more tools.\n"
  9551. "\n"
  9552. "If not checked, use the standard algorithm."
  9553. #: flatcamTools/ToolPaint.py:239
  9554. msgid ""
  9555. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9556. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9557. "polygons."
  9558. msgstr ""
  9559. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9560. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9561. "polygons."
  9562. #: flatcamTools/ToolPaint.py:254
  9563. msgid "Create Paint Geometry"
  9564. msgstr "Create Paint Geometry"
  9565. #: flatcamTools/ToolPaint.py:256
  9566. msgid ""
  9567. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9568. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9569. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9570. "created."
  9571. msgstr ""
  9572. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9573. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9574. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9575. "created."
  9576. #: flatcamTools/ToolPaint.py:736
  9577. msgid "geometry_on_paint_button"
  9578. msgstr "geometry_on_paint_button"
  9579. #: flatcamTools/ToolPaint.py:755 flatcamTools/ToolPaint.py:791
  9580. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  9581. msgstr "[WARNING_NOTCL] Click inside the desired polygon."
  9582. #: flatcamTools/ToolPaint.py:778
  9583. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9584. msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9585. #: flatcamTools/ToolPaint.py:800 flatcamTools/ToolPaint.py:1004
  9586. msgid "Painting polygon..."
  9587. msgstr "Painting polygon..."
  9588. #: flatcamTools/ToolPaint.py:853
  9589. msgid "[WARNING] No polygon found."
  9590. msgstr "[WARNING] No polygon found."
  9591. #: flatcamTools/ToolPaint.py:856
  9592. msgid "Painting polygon."
  9593. msgstr "Painting polygon."
  9594. #: flatcamTools/ToolPaint.py:898
  9595. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  9596. msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
  9597. #: flatcamTools/ToolPaint.py:924
  9598. #, python-format
  9599. msgid ""
  9600. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9601. "different strategy of paint\n"
  9602. "%s"
  9603. msgstr ""
  9604. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9605. "different strategy of paint\n"
  9606. "%s"
  9607. #: flatcamTools/ToolPaint.py:966
  9608. #, python-format
  9609. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9610. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9611. #: flatcamTools/ToolPaint.py:972 flatcamTools/ToolPaint.py:1271
  9612. msgid "Polygon Paint started ..."
  9613. msgstr "Polygon Paint started ..."
  9614. #: flatcamTools/ToolPaint.py:1125 flatcamTools/ToolPaint.py:1216
  9615. #, python-format
  9616. msgid ""
  9617. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9618. "Or a different Method of paint\n"
  9619. "%s"
  9620. msgstr ""
  9621. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9622. "Or a different Method of paint\n"
  9623. "%s"
  9624. #: flatcamTools/ToolPaint.py:1149
  9625. msgid ""
  9626. "[ERROR] There is no Painting Geometry in the file.\n"
  9627. "Usually it means that the tool diameter is too big for the painted "
  9628. "geometry.\n"
  9629. "Change the painting parameters and try again."
  9630. msgstr ""
  9631. "[ERROR] There is no Painting Geometry in the file.\n"
  9632. "Usually it means that the tool diameter is too big for the painted "
  9633. "geometry.\n"
  9634. "Change the painting parameters and try again."
  9635. #: flatcamTools/ToolPaint.py:1158
  9636. msgid "[success] Paint All Done."
  9637. msgstr "[success] Paint All Done."
  9638. #: flatcamTools/ToolPaint.py:1246
  9639. msgid ""
  9640. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  9641. "Usually it means that the tool diameter is too big for the painted "
  9642. "geometry.\n"
  9643. "Change the painting parameters and try again."
  9644. msgstr ""
  9645. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  9646. "Usually it means that the tool diameter is too big for the painted "
  9647. "geometry.\n"
  9648. "Change the painting parameters and try again."
  9649. #: flatcamTools/ToolPaint.py:1255
  9650. msgid "[success] Paint All with Rest-Machining done."
  9651. msgstr "[success] Paint All with Rest-Machining done."
  9652. #: flatcamTools/ToolPanelize.py:25
  9653. msgid "Panelize PCB"
  9654. msgstr "Panelize PCB"
  9655. #: flatcamTools/ToolPanelize.py:58
  9656. msgid ""
  9657. "Specify the type of object to be panelized\n"
  9658. "It can be of type: Gerber, Excellon or Geometry.\n"
  9659. "The selection here decide the type of objects that will be\n"
  9660. "in the Object combobox."
  9661. msgstr ""
  9662. "Specify the type of object to be panelized\n"
  9663. "It can be of type: Gerber, Excellon or Geometry.\n"
  9664. "The selection here decide the type of objects that will be\n"
  9665. "in the Object combobox."
  9666. #: flatcamTools/ToolPanelize.py:73
  9667. msgid ""
  9668. "Object to be panelized. This means that it will\n"
  9669. "be duplicated in an array of rows and columns."
  9670. msgstr ""
  9671. "Object to be panelized. This means that it will\n"
  9672. "be duplicated in an array of rows and columns."
  9673. #: flatcamTools/ToolPanelize.py:84
  9674. msgid "Object"
  9675. msgstr "Object"
  9676. #: flatcamTools/ToolPanelize.py:85
  9677. msgid "Bounding Box"
  9678. msgstr "Bounding Box"
  9679. #: flatcamTools/ToolPanelize.py:86
  9680. msgid "<b>Penelization Reference:</b>"
  9681. msgstr "<b>Penelization Reference:</b>"
  9682. #: flatcamTools/ToolPanelize.py:88
  9683. msgid ""
  9684. "Choose the reference for panelization:\n"
  9685. "- Object = the bounding box of a different object\n"
  9686. "- Bounding Box = the bounding box of the object to be panelized\n"
  9687. "\n"
  9688. "The reference is useful when doing panelization for more than one\n"
  9689. "object. The spacings (really offsets) will be applied in reference\n"
  9690. "to this reference object therefore maintaining the panelized\n"
  9691. "objects in sync."
  9692. msgstr ""
  9693. "Choose the reference for panelization:\n"
  9694. "- Object = the bounding box of a different object\n"
  9695. "- Bounding Box = the bounding box of the object to be panelized\n"
  9696. "\n"
  9697. "The reference is useful when doing panelization for more than one\n"
  9698. "object. The spacings (really offsets) will be applied in reference\n"
  9699. "to this reference object therefore maintaining the panelized\n"
  9700. "objects in sync."
  9701. #: flatcamTools/ToolPanelize.py:113
  9702. msgid ""
  9703. "Specify the type of object to be used as an container for\n"
  9704. "panelization. It can be: Gerber or Geometry type.\n"
  9705. "The selection here decide the type of objects that will be\n"
  9706. "in the Box Object combobox."
  9707. msgstr ""
  9708. "Specify the type of object to be used as an container for\n"
  9709. "panelization. It can be: Gerber or Geometry type.\n"
  9710. "The selection here decide the type of objects that will be\n"
  9711. "in the Box Object combobox."
  9712. #: flatcamTools/ToolPanelize.py:128
  9713. msgid ""
  9714. "The actual object that is used a container for the\n"
  9715. " selected object that is to be panelized."
  9716. msgstr ""
  9717. "The actual object that is used a container for the\n"
  9718. " selected object that is to be panelized."
  9719. #: flatcamTools/ToolPanelize.py:134
  9720. msgid "<b>Panel Data:</b>"
  9721. msgstr "<b>Panel Data:</b>"
  9722. #: flatcamTools/ToolPanelize.py:136
  9723. msgid ""
  9724. "This informations will shape the resulting panel.\n"
  9725. "The number of rows and columns will set how many\n"
  9726. "duplicates of the original geometry will be generated.\n"
  9727. "\n"
  9728. "The spacings will set the distance between any two\n"
  9729. "elements of the panel array."
  9730. msgstr ""
  9731. "This informations will shape the resulting panel.\n"
  9732. "The number of rows and columns will set how many\n"
  9733. "duplicates of the original geometry will be generated.\n"
  9734. "\n"
  9735. "The spacings will set the distance between any two\n"
  9736. "elements of the panel array."
  9737. #: flatcamTools/ToolPanelize.py:183
  9738. msgid "<b>Panel Type:</b>"
  9739. msgstr "<b>Panel Type:</b>"
  9740. #: flatcamTools/ToolPanelize.py:185
  9741. msgid ""
  9742. "Choose the type of object for the panel object:\n"
  9743. "- Geometry\n"
  9744. "- Gerber"
  9745. msgstr ""
  9746. "Choose the type of object for the panel object:\n"
  9747. "- Geometry\n"
  9748. "- Gerber"
  9749. #: flatcamTools/ToolPanelize.py:193
  9750. msgid "Constrain panel within:"
  9751. msgstr "Constrain panel within:"
  9752. #: flatcamTools/ToolPanelize.py:227
  9753. msgid "Panelize Object"
  9754. msgstr "Panelize Object"
  9755. #: flatcamTools/ToolPanelize.py:229
  9756. msgid ""
  9757. "Panelize the specified object around the specified box.\n"
  9758. "In other words it creates multiple copies of the source object,\n"
  9759. "arranged in a 2D array of rows and columns."
  9760. msgstr ""
  9761. "Panelize the specified object around the specified box.\n"
  9762. "In other words it creates multiple copies of the source object,\n"
  9763. "arranged in a 2D array of rows and columns."
  9764. #: flatcamTools/ToolPanelize.py:272
  9765. msgid "Panel. Tool"
  9766. msgstr "Panel. Tool"
  9767. #: flatcamTools/ToolPanelize.py:372
  9768. #, python-format
  9769. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  9770. msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
  9771. #: flatcamTools/ToolPanelize.py:455
  9772. msgid ""
  9773. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  9774. "integer."
  9775. msgstr ""
  9776. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  9777. "integer."
  9778. #: flatcamTools/ToolPanelize.py:480 flatcamTools/ToolPanelize.py:637
  9779. msgid "Generating panel ... Please wait."
  9780. msgstr "Generating panel ... Please wait."
  9781. #: flatcamTools/ToolPanelize.py:630
  9782. msgid "[success] Panel done..."
  9783. msgstr "[success] Panel done..."
  9784. #: flatcamTools/ToolPanelize.py:633
  9785. #, python-brace-format
  9786. msgid ""
  9787. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  9788. "{row} rows"
  9789. msgstr ""
  9790. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  9791. "{row} rows"
  9792. #: flatcamTools/ToolPanelize.py:642
  9793. msgid "[success] Panel created successfully."
  9794. msgstr "[success] Panel created successfully."
  9795. #: flatcamTools/ToolPcbWizard.py:32
  9796. msgid "PcbWizard Import Tool"
  9797. msgstr "PcbWizard Import Tool"
  9798. #: flatcamTools/ToolPcbWizard.py:40
  9799. msgid "Import 2-file Excellon"
  9800. msgstr "Import 2-file Excellon"
  9801. #: flatcamTools/ToolPcbWizard.py:57
  9802. msgid "Excellon file:"
  9803. msgstr "Excellon file:"
  9804. #: flatcamTools/ToolPcbWizard.py:59
  9805. msgid ""
  9806. "Load the Excellon file.\n"
  9807. "Usually it has a .DRL extension"
  9808. msgstr ""
  9809. "Load the Excellon file.\n"
  9810. "Usually it has a .DRL extension"
  9811. #: flatcamTools/ToolPcbWizard.py:65
  9812. msgid "INF file:"
  9813. msgstr "INF file:"
  9814. #: flatcamTools/ToolPcbWizard.py:67
  9815. msgid "Load the INF file."
  9816. msgstr "Load the INF file."
  9817. #: flatcamTools/ToolPcbWizard.py:79
  9818. msgid "Tool Number"
  9819. msgstr "Tool Number"
  9820. #: flatcamTools/ToolPcbWizard.py:81
  9821. msgid "Tool diameter in file units."
  9822. msgstr "Tool diameter in file units."
  9823. #: flatcamTools/ToolPcbWizard.py:95
  9824. msgid "Int. digits:"
  9825. msgstr "Int. digits:"
  9826. #: flatcamTools/ToolPcbWizard.py:97
  9827. msgid "The number of digits for the integral part of the coordinates."
  9828. msgstr "The number of digits for the integral part of the coordinates."
  9829. #: flatcamTools/ToolPcbWizard.py:104
  9830. msgid "Frac. digits:"
  9831. msgstr "Frac. digits:"
  9832. #: flatcamTools/ToolPcbWizard.py:106
  9833. msgid "The number of digits for the fractional part of the coordinates."
  9834. msgstr "The number of digits for the fractional part of the coordinates."
  9835. #: flatcamTools/ToolPcbWizard.py:113
  9836. msgid "No Suppression"
  9837. msgstr "No Suppression"
  9838. #: flatcamTools/ToolPcbWizard.py:114
  9839. msgid "Zeros supp.:"
  9840. msgstr "Zeros supp.:"
  9841. #: flatcamTools/ToolPcbWizard.py:116
  9842. msgid ""
  9843. "The type of zeros suppression used.\n"
  9844. "Can be of type:\n"
  9845. "- LZ = leading zeros are kept\n"
  9846. "- TZ = trailing zeros are kept\n"
  9847. "- No Suppression = no zero suppression"
  9848. msgstr ""
  9849. "The type of zeros suppression used.\n"
  9850. "Can be of type:\n"
  9851. "- LZ = leading zeros are kept\n"
  9852. "- TZ = trailing zeros are kept\n"
  9853. "- No Suppression = no zero suppression"
  9854. #: flatcamTools/ToolPcbWizard.py:127
  9855. msgid "Units"
  9856. msgstr "Units"
  9857. #: flatcamTools/ToolPcbWizard.py:129
  9858. msgid ""
  9859. "The type of units that the coordinates and tool\n"
  9860. "diameters are using. Can be INCH or MM."
  9861. msgstr ""
  9862. "The type of units that the coordinates and tool\n"
  9863. "diameters are using. Can be INCH or MM."
  9864. #: flatcamTools/ToolPcbWizard.py:136
  9865. msgid "Import Excellon"
  9866. msgstr "Import Excellon"
  9867. #: flatcamTools/ToolPcbWizard.py:138
  9868. msgid ""
  9869. "Import in FlatCAM an Excellon file\n"
  9870. "that store it's information's in 2 files.\n"
  9871. "One usually has .DRL extension while\n"
  9872. "the other has .INF extension."
  9873. msgstr ""
  9874. "Import in FlatCAM an Excellon file\n"
  9875. "that store it's information's in 2 files.\n"
  9876. "One usually has .DRL extension while\n"
  9877. "the other has .INF extension."
  9878. #: flatcamTools/ToolPcbWizard.py:192
  9879. msgid "PCBWizard Tool"
  9880. msgstr "PCBWizard Tool"
  9881. #: flatcamTools/ToolPcbWizard.py:286 flatcamTools/ToolPcbWizard.py:290
  9882. msgid "Load PcbWizard Excellon file"
  9883. msgstr "Load PcbWizard Excellon file"
  9884. #: flatcamTools/ToolPcbWizard.py:309 flatcamTools/ToolPcbWizard.py:313
  9885. msgid "Load PcbWizard INF file"
  9886. msgstr "Load PcbWizard INF file"
  9887. #: flatcamTools/ToolPcbWizard.py:360
  9888. msgid ""
  9889. "[ERROR] The INF file does not contain the tool table.\n"
  9890. "Try to open the Excellon file from File -> Open -> Excellon\n"
  9891. "and edit the drill diameters manually."
  9892. msgstr ""
  9893. "[ERROR] The INF file does not contain the tool table.\n"
  9894. "Try to open the Excellon file from File -> Open -> Excellon\n"
  9895. "and edit the drill diameters manually."
  9896. #: flatcamTools/ToolPcbWizard.py:380
  9897. msgid "[success] PcbWizard .INF file loaded."
  9898. msgstr "[success] PcbWizard .INF file loaded."
  9899. #: flatcamTools/ToolPcbWizard.py:384
  9900. msgid "[success] Main PcbWizard Excellon file loaded."
  9901. msgstr "[success] Main PcbWizard Excellon file loaded."
  9902. #: flatcamTools/ToolPcbWizard.py:421
  9903. #, python-format
  9904. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  9905. msgstr "[ERROR_NOTCL] Cannot parse file: %s"
  9906. #: flatcamTools/ToolPcbWizard.py:445
  9907. msgid "Importing Excellon."
  9908. msgstr "Importing Excellon."
  9909. #: flatcamTools/ToolPcbWizard.py:452
  9910. msgid "[ERROR_NOTCL] Import Excellon file failed."
  9911. msgstr "[ERROR_NOTCL] Import Excellon file failed."
  9912. #: flatcamTools/ToolPcbWizard.py:459
  9913. #, python-format
  9914. msgid "[success] Imported: %s"
  9915. msgstr "[success] Imported: %s"
  9916. #: flatcamTools/ToolPcbWizard.py:462
  9917. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  9918. msgstr "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  9919. #: flatcamTools/ToolPcbWizard.py:464
  9920. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  9921. msgstr "[ERROR_NOTCL] The imported Excellon file is None."
  9922. #: flatcamTools/ToolProperties.py:103
  9923. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  9924. msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  9925. #: flatcamTools/ToolProperties.py:110
  9926. msgid "[success] Object Properties are displayed."
  9927. msgstr "[success] Object Properties are displayed."
  9928. #: flatcamTools/ToolProperties.py:111
  9929. msgid "Properties Tool"
  9930. msgstr "Properties Tool"
  9931. #: flatcamTools/ToolShell.py:69
  9932. msgid "...proccessing..."
  9933. msgstr "...proccessing..."
  9934. #: flatcamTools/ToolShell.py:71
  9935. #, python-format
  9936. msgid "...proccessing... [%s]"
  9937. msgstr "...proccessing... [%s]"
  9938. #: flatcamTools/ToolSolderPaste.py:37
  9939. msgid "Solder Paste Tool"
  9940. msgstr "Solder Paste Tool"
  9941. #: flatcamTools/ToolSolderPaste.py:65
  9942. msgid "Gerber Solder paste object. "
  9943. msgstr "Gerber Solder paste object. "
  9944. #: flatcamTools/ToolSolderPaste.py:72
  9945. msgid ""
  9946. "Tools pool from which the algorithm\n"
  9947. "will pick the ones used for dispensing solder paste."
  9948. msgstr ""
  9949. "Tools pool from which the algorithm\n"
  9950. "will pick the ones used for dispensing solder paste."
  9951. #: flatcamTools/ToolSolderPaste.py:87
  9952. msgid ""
  9953. "This is the Tool Number.\n"
  9954. "The solder dispensing will start with the tool with the biggest \n"
  9955. "diameter, continuing until there are no more Nozzle tools.\n"
  9956. "If there are no longer tools but there are still pads not covered\n"
  9957. " with solder paste, the app will issue a warning message box."
  9958. msgstr ""
  9959. "This is the Tool Number.\n"
  9960. "The solder dispensing will start with the tool with the biggest \n"
  9961. "diameter, continuing until there are no more Nozzle tools.\n"
  9962. "If there are no longer tools but there are still pads not covered\n"
  9963. " with solder paste, the app will issue a warning message box."
  9964. #: flatcamTools/ToolSolderPaste.py:94
  9965. msgid ""
  9966. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  9967. "is the width of the solder paste dispensed."
  9968. msgstr ""
  9969. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  9970. "is the width of the solder paste dispensed."
  9971. #: flatcamTools/ToolSolderPaste.py:101
  9972. msgid "New Nozzle Tool"
  9973. msgstr "New Nozzle Tool"
  9974. #: flatcamTools/ToolSolderPaste.py:117
  9975. msgid ""
  9976. "Add a new nozzle tool to the Tool Table\n"
  9977. "with the diameter specified above."
  9978. msgstr ""
  9979. "Add a new nozzle tool to the Tool Table\n"
  9980. "with the diameter specified above."
  9981. #: flatcamTools/ToolSolderPaste.py:129
  9982. msgid "Generate solder paste dispensing geometry."
  9983. msgstr "Generate solder paste dispensing geometry."
  9984. #: flatcamTools/ToolSolderPaste.py:142
  9985. msgid "STEP 1:"
  9986. msgstr "STEP 1:"
  9987. #: flatcamTools/ToolSolderPaste.py:144
  9988. msgid ""
  9989. "First step is to select a number of nozzle tools for usage\n"
  9990. "and then optionally modify the GCode parameters bellow."
  9991. msgstr ""
  9992. "First step is to select a number of nozzle tools for usage\n"
  9993. "and then optionally modify the GCode parameters bellow."
  9994. #: flatcamTools/ToolSolderPaste.py:147
  9995. msgid ""
  9996. "Select tools.\n"
  9997. "Modify parameters."
  9998. msgstr ""
  9999. "Select tools.\n"
  10000. "Modify parameters."
  10001. #: flatcamTools/ToolSolderPaste.py:235
  10002. msgid ""
  10003. "Feedrate (speed) while moving up vertically\n"
  10004. " to Dispense position (on Z plane)."
  10005. msgstr ""
  10006. "Feedrate (speed) while moving up vertically\n"
  10007. " to Dispense position (on Z plane)."
  10008. #: flatcamTools/ToolSolderPaste.py:289
  10009. msgid "Generate GCode"
  10010. msgstr "Generate GCode"
  10011. #: flatcamTools/ToolSolderPaste.py:291
  10012. msgid ""
  10013. "Generate GCode for Solder Paste dispensing\n"
  10014. "on PCB pads."
  10015. msgstr ""
  10016. "Generate GCode for Solder Paste dispensing\n"
  10017. "on PCB pads."
  10018. #: flatcamTools/ToolSolderPaste.py:306
  10019. msgid "STEP 2:"
  10020. msgstr "STEP 2:"
  10021. #: flatcamTools/ToolSolderPaste.py:308
  10022. msgid ""
  10023. "Second step is to create a solder paste dispensing\n"
  10024. "geometry out of an Solder Paste Mask Gerber file."
  10025. msgstr ""
  10026. "Second step is to create a solder paste dispensing\n"
  10027. "geometry out of an Solder Paste Mask Gerber file."
  10028. #: flatcamTools/ToolSolderPaste.py:324
  10029. msgid "Geo Result:"
  10030. msgstr "Geo Result:"
  10031. #: flatcamTools/ToolSolderPaste.py:326
  10032. msgid ""
  10033. "Geometry Solder Paste object.\n"
  10034. "The name of the object has to end in:\n"
  10035. "'_solderpaste' as a protection."
  10036. msgstr ""
  10037. "Geometry Solder Paste object.\n"
  10038. "The name of the object has to end in:\n"
  10039. "'_solderpaste' as a protection."
  10040. #: flatcamTools/ToolSolderPaste.py:335
  10041. msgid "STEP 3:"
  10042. msgstr "STEP 3:"
  10043. #: flatcamTools/ToolSolderPaste.py:337
  10044. msgid ""
  10045. "Third step is to select a solder paste dispensing geometry,\n"
  10046. "and then generate a CNCJob object.\n"
  10047. "\n"
  10048. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10049. "first you need to generate a geometry with those new params,\n"
  10050. "and only after that you can generate an updated CNCJob."
  10051. msgstr ""
  10052. "Third step is to select a solder paste dispensing geometry,\n"
  10053. "and then generate a CNCJob object.\n"
  10054. "\n"
  10055. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10056. "first you need to generate a geometry with those new params,\n"
  10057. "and only after that you can generate an updated CNCJob."
  10058. #: flatcamTools/ToolSolderPaste.py:357
  10059. msgid "CNC Result:"
  10060. msgstr "CNC Result:"
  10061. #: flatcamTools/ToolSolderPaste.py:359
  10062. msgid ""
  10063. "CNCJob Solder paste object.\n"
  10064. "In order to enable the GCode save section,\n"
  10065. "the name of the object has to end in:\n"
  10066. "'_solderpaste' as a protection."
  10067. msgstr ""
  10068. "CNCJob Solder paste object.\n"
  10069. "In order to enable the GCode save section,\n"
  10070. "the name of the object has to end in:\n"
  10071. "'_solderpaste' as a protection."
  10072. #: flatcamTools/ToolSolderPaste.py:369
  10073. msgid "View GCode"
  10074. msgstr "View GCode"
  10075. #: flatcamTools/ToolSolderPaste.py:371
  10076. msgid ""
  10077. "View the generated GCode for Solder Paste dispensing\n"
  10078. "on PCB pads."
  10079. msgstr ""
  10080. "View the generated GCode for Solder Paste dispensing\n"
  10081. "on PCB pads."
  10082. #: flatcamTools/ToolSolderPaste.py:375
  10083. msgid "Save GCode"
  10084. msgstr "Save GCode"
  10085. #: flatcamTools/ToolSolderPaste.py:377
  10086. msgid ""
  10087. "Save the generated GCode for Solder Paste dispensing\n"
  10088. "on PCB pads, to a file."
  10089. msgstr ""
  10090. "Save the generated GCode for Solder Paste dispensing\n"
  10091. "on PCB pads, to a file."
  10092. #: flatcamTools/ToolSolderPaste.py:381
  10093. msgid "STEP 4:"
  10094. msgstr "STEP 4:"
  10095. #: flatcamTools/ToolSolderPaste.py:383
  10096. msgid ""
  10097. "Fourth step (and last) is to select a CNCJob made from \n"
  10098. "a solder paste dispensing geometry, and then view/save it's GCode."
  10099. msgstr ""
  10100. "Fourth step (and last) is to select a CNCJob made from \n"
  10101. "a solder paste dispensing geometry, and then view/save it's GCode."
  10102. #: flatcamTools/ToolSolderPaste.py:412
  10103. msgid "Delete Object"
  10104. msgstr "Delete Object"
  10105. #: flatcamTools/ToolSolderPaste.py:792
  10106. msgid ""
  10107. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10108. msgstr ""
  10109. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10110. #: flatcamTools/ToolSolderPaste.py:797
  10111. msgid "[success] New Nozzle tool added to Tool Table."
  10112. msgstr "[success] New Nozzle tool added to Tool Table."
  10113. #: flatcamTools/ToolSolderPaste.py:839
  10114. msgid "[success] Nozzle tool from Tool Table was edited."
  10115. msgstr "[success] Nozzle tool from Tool Table was edited."
  10116. #: flatcamTools/ToolSolderPaste.py:896
  10117. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10118. msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10119. #: flatcamTools/ToolSolderPaste.py:901
  10120. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  10121. msgstr "[success] Nozzle tool(s) deleted from Tool Table."
  10122. #: flatcamTools/ToolSolderPaste.py:956
  10123. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10124. msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10125. #: flatcamTools/ToolSolderPaste.py:974
  10126. msgid "Creating Solder Paste dispensing geometry."
  10127. msgstr "Creating Solder Paste dispensing geometry."
  10128. #: flatcamTools/ToolSolderPaste.py:986
  10129. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10130. msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10131. #: flatcamTools/ToolSolderPaste.py:1115
  10132. msgid "[success] Solder Paste geometry generated successfully..."
  10133. msgstr "[success] Solder Paste geometry generated successfully..."
  10134. #: flatcamTools/ToolSolderPaste.py:1121
  10135. msgid ""
  10136. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10137. "diameters..."
  10138. msgstr ""
  10139. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10140. "diameters..."
  10141. #: flatcamTools/ToolSolderPaste.py:1135
  10142. msgid "Generating Solder Paste dispensing geometry..."
  10143. msgstr "Generating Solder Paste dispensing geometry..."
  10144. #: flatcamTools/ToolSolderPaste.py:1155
  10145. msgid "[WARNING_NOTCL] There is no Geometry object available."
  10146. msgstr "[WARNING_NOTCL] There is no Geometry object available."
  10147. #: flatcamTools/ToolSolderPaste.py:1159
  10148. msgid ""
  10149. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10150. "geometry."
  10151. msgstr ""
  10152. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10153. "geometry."
  10154. #: flatcamTools/ToolSolderPaste.py:1265
  10155. #, python-format
  10156. msgid "[success] ToolSolderPaste CNCjob created: %s"
  10157. msgstr "[success] ToolSolderPaste CNCjob created: %s"
  10158. #: flatcamTools/ToolSolderPaste.py:1297 flatcamTools/ToolSolderPaste.py:1301
  10159. #: flatcamTools/ToolSolderPaste.py:1353
  10160. msgid ""
  10161. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10162. "solder_paste_tool CNCJob object."
  10163. msgstr ""
  10164. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10165. "solder_paste_tool CNCJob object."
  10166. #: flatcamTools/ToolSolderPaste.py:1325
  10167. msgid "[ERROR_NOTCL] No Gcode in the object..."
  10168. msgstr "[ERROR_NOTCL] No Gcode in the object..."
  10169. #: flatcamTools/ToolSolderPaste.py:1334
  10170. #, python-format
  10171. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10172. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10173. #: flatcamTools/ToolSolderPaste.py:1363
  10174. msgid "Export GCode ..."
  10175. msgstr "Export GCode ..."
  10176. #: flatcamTools/ToolSolderPaste.py:1403
  10177. #, python-format
  10178. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  10179. msgstr "[success] Solder paste dispenser GCode file saved to: %s"
  10180. #: flatcamTools/ToolSub.py:55
  10181. msgid "<b>Gerber Objects</b>"
  10182. msgstr "<b>Gerber Objects</b>"
  10183. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  10184. msgid "Target:"
  10185. msgstr "Target:"
  10186. #: flatcamTools/ToolSub.py:66
  10187. msgid ""
  10188. "Gerber object from which to substract\n"
  10189. "the substractor Gerber object."
  10190. msgstr ""
  10191. "Gerber object from which to substract\n"
  10192. "the substractor Gerber object."
  10193. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  10194. msgid "Substractor:"
  10195. msgstr "Substractor:"
  10196. #: flatcamTools/ToolSub.py:80
  10197. msgid ""
  10198. "Gerber object that will be substracted\n"
  10199. "from the target Gerber object."
  10200. msgstr ""
  10201. "Gerber object that will be substracted\n"
  10202. "from the target Gerber object."
  10203. #: flatcamTools/ToolSub.py:87
  10204. msgid "Substract Gerber"
  10205. msgstr "Substract Gerber"
  10206. #: flatcamTools/ToolSub.py:89
  10207. msgid ""
  10208. "Will remove the area occupied by the substractor\n"
  10209. "Gerber from the Target Gerber.\n"
  10210. "Can be used to remove the overlapping silkscreen\n"
  10211. "over the soldermask."
  10212. msgstr ""
  10213. "Will remove the area occupied by the substractor\n"
  10214. "Gerber from the Target Gerber.\n"
  10215. "Can be used to remove the overlapping silkscreen\n"
  10216. "over the soldermask."
  10217. #: flatcamTools/ToolSub.py:101
  10218. msgid "<b>Geometry Objects</b>"
  10219. msgstr "<b>Geometry Objects</b>"
  10220. #: flatcamTools/ToolSub.py:112
  10221. msgid ""
  10222. "Geometry object from which to substract\n"
  10223. "the substractor Geometry object."
  10224. msgstr ""
  10225. "Geometry object from which to substract\n"
  10226. "the substractor Geometry object."
  10227. #: flatcamTools/ToolSub.py:126
  10228. msgid ""
  10229. "Geometry object that will be substracted\n"
  10230. "from the target Geometry object."
  10231. msgstr ""
  10232. "Geometry object that will be substracted\n"
  10233. "from the target Geometry object."
  10234. #: flatcamTools/ToolSub.py:133
  10235. msgid "Substract Geometry"
  10236. msgstr "Substract Geometry"
  10237. #: flatcamTools/ToolSub.py:135
  10238. msgid ""
  10239. "Will remove the area occupied by the substractor\n"
  10240. "Geometry from the Target Geometry."
  10241. msgstr ""
  10242. "Will remove the area occupied by the substractor\n"
  10243. "Geometry from the Target Geometry."
  10244. #: flatcamTools/ToolSub.py:216
  10245. msgid "Sub Tool"
  10246. msgstr "Sub Tool"
  10247. #: flatcamTools/ToolSub.py:231 flatcamTools/ToolSub.py:424
  10248. msgid "[ERROR_NOTCL] No Target object loaded."
  10249. msgstr "[ERROR_NOTCL] No Target object loaded."
  10250. #: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:437
  10251. msgid "[ERROR_NOTCL] No Substractor object loaded."
  10252. msgstr "[ERROR_NOTCL] No Substractor object loaded."
  10253. #: flatcamTools/ToolSub.py:297
  10254. #, python-format
  10255. msgid "Parsing aperture %s geometry ..."
  10256. msgstr "Parsing aperture %s geometry ..."
  10257. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:544
  10258. msgid "Generating new object ..."
  10259. msgstr "Generating new object ..."
  10260. #: flatcamTools/ToolSub.py:402 flatcamTools/ToolSub.py:547
  10261. msgid "[ERROR_NOTCL] Generating new object failed."
  10262. msgstr "[ERROR_NOTCL] Generating new object failed."
  10263. #: flatcamTools/ToolSub.py:406 flatcamTools/ToolSub.py:552
  10264. #, python-format
  10265. msgid "[success] Created: %s"
  10266. msgstr "[success] Created: %s"
  10267. #: flatcamTools/ToolSub.py:449
  10268. msgid ""
  10269. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10270. msgstr ""
  10271. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10272. #: flatcamTools/ToolSub.py:494
  10273. msgid "Parsing solid_geometry ..."
  10274. msgstr "Parsing solid_geometry ..."
  10275. #: flatcamTools/ToolSub.py:496
  10276. #, python-format
  10277. msgid "Parsing tool %s geometry ..."
  10278. msgstr "Parsing tool %s geometry ..."
  10279. #: flatcamTools/ToolTransform.py:23
  10280. msgid "Object Transform"
  10281. msgstr "Object Transform"
  10282. #: flatcamTools/ToolTransform.py:84
  10283. msgid ""
  10284. "Rotate the selected object(s).\n"
  10285. "The point of reference is the middle of\n"
  10286. "the bounding box for all selected objects."
  10287. msgstr ""
  10288. "Rotate the selected object(s).\n"
  10289. "The point of reference is the middle of\n"
  10290. "the bounding box for all selected objects."
  10291. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10292. msgid ""
  10293. "Skew/shear the selected object(s).\n"
  10294. "The point of reference is the middle of\n"
  10295. "the bounding box for all selected objects."
  10296. msgstr ""
  10297. "Skew/shear the selected object(s).\n"
  10298. "The point of reference is the middle of\n"
  10299. "the bounding box for all selected objects."
  10300. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10301. msgid ""
  10302. "Scale the selected object(s).\n"
  10303. "The point of reference depends on \n"
  10304. "the Scale reference checkbox state."
  10305. msgstr ""
  10306. "Scale the selected object(s).\n"
  10307. "The point of reference depends on \n"
  10308. "the Scale reference checkbox state."
  10309. #: flatcamTools/ToolTransform.py:202
  10310. msgid ""
  10311. "Scale the selected object(s)\n"
  10312. "using the Scale Factor X for both axis."
  10313. msgstr ""
  10314. "Scale the selected object(s)\n"
  10315. "using the Scale Factor X for both axis."
  10316. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  10317. msgid ""
  10318. "Offset the selected object(s).\n"
  10319. "The point of reference is the middle of\n"
  10320. "the bounding box for all selected objects.\n"
  10321. msgstr ""
  10322. "Offset the selected object(s).\n"
  10323. "The point of reference is the middle of\n"
  10324. "the bounding box for all selected objects.\n"
  10325. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  10326. msgid ""
  10327. "Flip the selected object(s) over the X axis.\n"
  10328. "Does not create a new object.\n"
  10329. " "
  10330. msgstr ""
  10331. "Flip the selected object(s) over the X axis.\n"
  10332. "Does not create a new object.\n"
  10333. " "
  10334. #: flatcamTools/ToolTransform.py:636
  10335. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10336. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10337. #: flatcamTools/ToolTransform.py:664
  10338. msgid "CNCJob objects can't be rotated."
  10339. msgstr "CNCJob objects can't be rotated."
  10340. #: flatcamTools/ToolTransform.py:672
  10341. msgid "[success] Rotate done ..."
  10342. msgstr "[success] Rotate done ..."
  10343. #: flatcamTools/ToolTransform.py:687
  10344. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10345. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10346. #: flatcamTools/ToolTransform.py:722
  10347. msgid "CNCJob objects can't be mirrored/flipped."
  10348. msgstr "CNCJob objects can't be mirrored/flipped."
  10349. #: flatcamTools/ToolTransform.py:756
  10350. msgid ""
  10351. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10352. msgstr ""
  10353. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10354. #: flatcamTools/ToolTransform.py:778
  10355. msgid "CNCJob objects can't be skewed."
  10356. msgstr "CNCJob objects can't be skewed."
  10357. #: flatcamTools/ToolTransform.py:805
  10358. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10359. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10360. #: flatcamTools/ToolTransform.py:838
  10361. msgid "CNCJob objects can't be scaled."
  10362. msgstr "CNCJob objects can't be scaled."
  10363. #: flatcamTools/ToolTransform.py:857
  10364. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10365. msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10366. #: flatcamTools/ToolTransform.py:866
  10367. msgid "CNCJob objects can't be offseted."
  10368. msgstr "CNCJob objects can't be offseted."
  10369. #~ msgid "Tool dia: "
  10370. #~ msgstr "Tool dia: "
  10371. #~ msgid ""
  10372. #~ "The diameter of the cutting\n"
  10373. #~ "tool.."
  10374. #~ msgstr ""
  10375. #~ "The diameter of the cutting\n"
  10376. #~ "tool.."
  10377. #~ msgid "Disable"
  10378. #~ msgstr "Disable"
  10379. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  10380. #~ msgstr "[WARNING_NOTCL] Move cancelled. No shape selected."
  10381. #~ msgid "Click on the Destination point..."
  10382. #~ msgstr "Click on the Destination point..."
  10383. #~ msgid "Copy as &Geom"
  10384. #~ msgstr "Copy as &Geom"
  10385. #~ msgid "Ap. Scale Factor:"
  10386. #~ msgstr "Ap. Scale Factor:"
  10387. #~ msgid ""
  10388. #~ "Change the size of the selected apertures.\n"
  10389. #~ "Factor by which to multiply\n"
  10390. #~ "geometric features of this object."
  10391. #~ msgstr ""
  10392. #~ "Change the size of the selected apertures.\n"
  10393. #~ "Factor by which to multiply\n"
  10394. #~ "geometric features of this object."
  10395. #~ msgid "Ap. Buffer Factor:"
  10396. #~ msgstr "Ap. Buffer Factor:"
  10397. #~ msgid ""
  10398. #~ "Change the size of the selected apertures.\n"
  10399. #~ "Factor by which to expand/shrink\n"
  10400. #~ "geometric features of this object."
  10401. #~ msgstr ""
  10402. #~ "Change the size of the selected apertures.\n"
  10403. #~ "Factor by which to expand/shrink\n"
  10404. #~ "geometric features of this object."
  10405. #~ msgid "[WARNING]No object Box. Using instead %s"
  10406. #~ msgstr "[WARNING]No object Box. Using instead %s"
  10407. #~ msgid "Path"
  10408. #~ msgstr "Path"
  10409. #~ msgid "In"
  10410. #~ msgstr "In"
  10411. #~ msgid "Out"
  10412. #~ msgstr "Out"
  10413. #~ msgid "Custom"
  10414. #~ msgstr "Custom"
  10415. #~ msgid "Copy Drill(s)"
  10416. #~ msgstr "Copy Drill(s)"
  10417. #~ msgid "CTRL"
  10418. #~ msgstr "CTRL"
  10419. #~ msgid "SHIFT"
  10420. #~ msgstr "SHIFT"
  10421. #~ msgid "Both"
  10422. #~ msgstr "Both"
  10423. #~ msgid "Pos"
  10424. #~ msgstr "Pos"
  10425. #~ msgid "Neg"
  10426. #~ msgstr "Neg"
  10427. #~ msgid "Solid "
  10428. #~ msgstr "Solid "
  10429. #~ msgid "M-Color "
  10430. #~ msgstr "M-Color "
  10431. #~ msgid "Done."
  10432. #~ msgstr "Done."
  10433. #~ msgid "Click on CENTER ..."
  10434. #~ msgstr "Click on CENTER ..."
  10435. #~ msgid "[success] Done. Region completed."
  10436. #~ msgstr "[success] Done. Region completed."
  10437. #~ msgid "Add an aperture to the aperture list"
  10438. #~ msgstr "Add an aperture to the aperture list"
  10439. #~ msgid "Del Aperture:"
  10440. #~ msgstr "Del Aperture:"
  10441. #~ msgid ""
  10442. #~ "Delete a aperture in the aperture list.\n"
  10443. #~ "It will delete also the associated geometry."
  10444. #~ msgstr ""
  10445. #~ "Delete a aperture in the aperture list.\n"
  10446. #~ "It will delete also the associated geometry."
  10447. #~ msgid "Save && Close Edit"
  10448. #~ msgstr "Save && Close Edit"
  10449. #~ msgid ""
  10450. #~ "<b>Editor Shortcut list</b><br>\n"
  10451. #~ " <br>\n"
  10452. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10453. #~ "strong><br>\n"
  10454. #~ " \n"
  10455. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10456. #~ "\"width:283px\">\n"
  10457. #~ " <tbody>\n"
  10458. #~ " <tr height=\"20\">\n"
  10459. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10460. #~ "strong></td>\n"
  10461. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10462. #~ " </tr>\n"
  10463. #~ " <tr height=\"20\">\n"
  10464. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10465. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10466. #~ " </tr>\n"
  10467. #~ " <tr height=\"20\">\n"
  10468. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10469. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10470. #~ " </tr>\n"
  10471. #~ " <tr height=\"20\">\n"
  10472. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10473. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10474. #~ " </tr>\n"
  10475. #~ " <tr height=\"20\">\n"
  10476. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10477. #~ " <td>&nbsp;Paint Tool</td>\n"
  10478. #~ " </tr>\n"
  10479. #~ " <tr height=\"20\">\n"
  10480. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10481. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10482. #~ " </tr>\n"
  10483. #~ " <tr height=\"20\">\n"
  10484. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10485. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10486. #~ " </tr>\n"
  10487. #~ " <tr height=\"20\">\n"
  10488. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10489. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10490. #~ " </tr>\n"
  10491. #~ " <tr height=\"20\">\n"
  10492. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10493. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10494. #~ " </tr>\n"
  10495. #~ " <tr height=\"20\">\n"
  10496. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10497. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10498. #~ " </tr>\n"
  10499. #~ " <tr height=\"20\">\n"
  10500. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10501. #~ " <td>&nbsp;Draw a Path</td>\n"
  10502. #~ " </tr>\n"
  10503. #~ " <tr height=\"20\">\n"
  10504. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10505. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10506. #~ " </tr>\n"
  10507. #~ " <tr height=\"20\">\n"
  10508. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10509. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10510. #~ " </tr>\n"
  10511. #~ " <tr height=\"20\">\n"
  10512. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10513. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10514. #~ " </tr>\n"
  10515. #~ " <tr height=\"20\">\n"
  10516. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10517. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10518. #~ " </tr>\n"
  10519. #~ " <tr height=\"20\">\n"
  10520. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10521. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10522. #~ " </tr>\n"
  10523. #~ " <tr height=\"20\">\n"
  10524. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10525. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  10526. #~ " </tr>\n"
  10527. #~ " <tr height=\"20\">\n"
  10528. #~ " <td height=\"20\">&nbsp;</td>\n"
  10529. #~ " <td>&nbsp;</td>\n"
  10530. #~ " </tr>\n"
  10531. #~ " <tr height=\"20\">\n"
  10532. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10533. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10534. #~ " </tr>\n"
  10535. #~ " <tr height=\"20\">\n"
  10536. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10537. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10538. #~ " </tr>\n"
  10539. #~ " <tr height=\"20\">\n"
  10540. #~ " <td height=\"20\">&nbsp;</td>\n"
  10541. #~ " <td>&nbsp;</td>\n"
  10542. #~ " </tr>\n"
  10543. #~ " <tr height=\"20\">\n"
  10544. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10545. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10546. #~ " </tr>\n"
  10547. #~ " <tr height=\"20\">\n"
  10548. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10549. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10550. #~ " </tr>\n"
  10551. #~ " <tr height=\"20\">\n"
  10552. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10553. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10554. #~ " </tr>\n"
  10555. #~ " <tr height=\"20\">\n"
  10556. #~ " <td height=\"20\">&nbsp;</td>\n"
  10557. #~ " <td>&nbsp;</td>\n"
  10558. #~ " </tr>\n"
  10559. #~ " <tr height=\"20\">\n"
  10560. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10561. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10562. #~ " </tr>\n"
  10563. #~ " <tr height=\"20\">\n"
  10564. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10565. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10566. #~ " </tr>\n"
  10567. #~ " <tr height=\"20\">\n"
  10568. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10569. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10570. #~ " </tr>\n"
  10571. #~ " <tr height=\"20\">\n"
  10572. #~ " <td height=\"20\">&nbsp;</td>\n"
  10573. #~ " <td>&nbsp;</td>\n"
  10574. #~ " </tr>\n"
  10575. #~ " <tr height=\"20\">\n"
  10576. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10577. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10578. #~ " </tr>\n"
  10579. #~ " <tr height=\"20\">\n"
  10580. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10581. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10582. #~ " </tr>\n"
  10583. #~ " <tr height=\"20\">\n"
  10584. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10585. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10586. #~ " </tr>\n"
  10587. #~ " <tr height=\"20\">\n"
  10588. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10589. #~ " <td>&nbsp;Delete Shape</td>\n"
  10590. #~ " </tr>\n"
  10591. #~ " </tbody>\n"
  10592. #~ " </table>\n"
  10593. #~ " <br>\n"
  10594. #~ " <br>\n"
  10595. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10596. #~ "strong><br>\n"
  10597. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10598. #~ "\"width:283px\">\n"
  10599. #~ " <tbody>\n"
  10600. #~ " <tr height=\"20\">\n"
  10601. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10602. #~ "strong></td>\n"
  10603. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10604. #~ " </tr>\n"
  10605. #~ " <tr height=\"20\">\n"
  10606. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10607. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  10608. #~ " </tr>\n"
  10609. #~ " <tr height=\"20\">\n"
  10610. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10611. #~ " <td>&nbsp;Add Drill</td>\n"
  10612. #~ " </tr>\n"
  10613. #~ " <tr height=\"20\">\n"
  10614. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10615. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10616. #~ " </tr>\n"
  10617. #~ " <tr height=\"20\">\n"
  10618. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10619. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  10620. #~ " </tr>\n"
  10621. #~ " <tr height=\"20\">\n"
  10622. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10623. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  10624. #~ " </tr>\n"
  10625. #~ " <tr height=\"20\">\n"
  10626. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10627. #~ " <td>&nbsp;Add a new Tool</td>\n"
  10628. #~ " </tr>\n"
  10629. #~ " <tr height=\"20\">\n"
  10630. #~ " <td height=\"20\">&nbsp;</td>\n"
  10631. #~ " <td>&nbsp;</td>\n"
  10632. #~ " </tr>\n"
  10633. #~ " <tr height=\"20\">\n"
  10634. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10635. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  10636. #~ " </tr>\n"
  10637. #~ " <tr height=\"20\">\n"
  10638. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10639. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  10640. #~ " </tr>\n"
  10641. #~ " <tr height=\"20\">\n"
  10642. #~ " <td height=\"20\">&nbsp;</td>\n"
  10643. #~ " <td>&nbsp;</td>\n"
  10644. #~ " </tr>\n"
  10645. #~ " <tr height=\"20\">\n"
  10646. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10647. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10648. #~ " </tr>\n"
  10649. #~ " <tr height=\"20\">\n"
  10650. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10651. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10652. #~ " </tr>\n"
  10653. #~ " </tbody>\n"
  10654. #~ " </table>\n"
  10655. #~ " "
  10656. #~ msgstr ""
  10657. #~ "<b>Editor Shortcut list</b><br>\n"
  10658. #~ " <br>\n"
  10659. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10660. #~ "strong><br>\n"
  10661. #~ " \n"
  10662. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10663. #~ "\"width:283px\">\n"
  10664. #~ " <tbody>\n"
  10665. #~ " <tr height=\"20\">\n"
  10666. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10667. #~ "strong></td>\n"
  10668. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10669. #~ " </tr>\n"
  10670. #~ " <tr height=\"20\">\n"
  10671. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10672. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10673. #~ " </tr>\n"
  10674. #~ " <tr height=\"20\">\n"
  10675. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10676. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10677. #~ " </tr>\n"
  10678. #~ " <tr height=\"20\">\n"
  10679. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10680. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10681. #~ " </tr>\n"
  10682. #~ " <tr height=\"20\">\n"
  10683. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10684. #~ " <td>&nbsp;Paint Tool</td>\n"
  10685. #~ " </tr>\n"
  10686. #~ " <tr height=\"20\">\n"
  10687. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10688. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10689. #~ " </tr>\n"
  10690. #~ " <tr height=\"20\">\n"
  10691. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10692. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10693. #~ " </tr>\n"
  10694. #~ " <tr height=\"20\">\n"
  10695. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10696. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10697. #~ " </tr>\n"
  10698. #~ " <tr height=\"20\">\n"
  10699. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10700. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10701. #~ " </tr>\n"
  10702. #~ " <tr height=\"20\">\n"
  10703. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10704. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10705. #~ " </tr>\n"
  10706. #~ " <tr height=\"20\">\n"
  10707. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10708. #~ " <td>&nbsp;Draw a Path</td>\n"
  10709. #~ " </tr>\n"
  10710. #~ " <tr height=\"20\">\n"
  10711. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10712. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10713. #~ " </tr>\n"
  10714. #~ " <tr height=\"20\">\n"
  10715. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10716. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10717. #~ " </tr>\n"
  10718. #~ " <tr height=\"20\">\n"
  10719. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10720. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10721. #~ " </tr>\n"
  10722. #~ " <tr height=\"20\">\n"
  10723. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10724. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10725. #~ " </tr>\n"
  10726. #~ " <tr height=\"20\">\n"
  10727. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10728. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10729. #~ " </tr>\n"
  10730. #~ " <tr height=\"20\">\n"
  10731. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10732. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  10733. #~ " </tr>\n"
  10734. #~ " <tr height=\"20\">\n"
  10735. #~ " <td height=\"20\">&nbsp;</td>\n"
  10736. #~ " <td>&nbsp;</td>\n"
  10737. #~ " </tr>\n"
  10738. #~ " <tr height=\"20\">\n"
  10739. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10740. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10741. #~ " </tr>\n"
  10742. #~ " <tr height=\"20\">\n"
  10743. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10744. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10745. #~ " </tr>\n"
  10746. #~ " <tr height=\"20\">\n"
  10747. #~ " <td height=\"20\">&nbsp;</td>\n"
  10748. #~ " <td>&nbsp;</td>\n"
  10749. #~ " </tr>\n"
  10750. #~ " <tr height=\"20\">\n"
  10751. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10752. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10753. #~ " </tr>\n"
  10754. #~ " <tr height=\"20\">\n"
  10755. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10756. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10757. #~ " </tr>\n"
  10758. #~ " <tr height=\"20\">\n"
  10759. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10760. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10761. #~ " </tr>\n"
  10762. #~ " <tr height=\"20\">\n"
  10763. #~ " <td height=\"20\">&nbsp;</td>\n"
  10764. #~ " <td>&nbsp;</td>\n"
  10765. #~ " </tr>\n"
  10766. #~ " <tr height=\"20\">\n"
  10767. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10768. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10769. #~ " </tr>\n"
  10770. #~ " <tr height=\"20\">\n"
  10771. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10772. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10773. #~ " </tr>\n"
  10774. #~ " <tr height=\"20\">\n"
  10775. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10776. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10777. #~ " </tr>\n"
  10778. #~ " <tr height=\"20\">\n"
  10779. #~ " <td height=\"20\">&nbsp;</td>\n"
  10780. #~ " <td>&nbsp;</td>\n"
  10781. #~ " </tr>\n"
  10782. #~ " <tr height=\"20\">\n"
  10783. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10784. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10785. #~ " </tr>\n"
  10786. #~ " <tr height=\"20\">\n"
  10787. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10788. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10789. #~ " </tr>\n"
  10790. #~ " <tr height=\"20\">\n"
  10791. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10792. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10793. #~ " </tr>\n"
  10794. #~ " <tr height=\"20\">\n"
  10795. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10796. #~ " <td>&nbsp;Delete Shape</td>\n"
  10797. #~ " </tr>\n"
  10798. #~ " </tbody>\n"
  10799. #~ " </table>\n"
  10800. #~ " <br>\n"
  10801. #~ " <br>\n"
  10802. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10803. #~ "strong><br>\n"
  10804. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10805. #~ "\"width:283px\">\n"
  10806. #~ " <tbody>\n"
  10807. #~ " <tr height=\"20\">\n"
  10808. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10809. #~ "strong></td>\n"
  10810. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10811. #~ " </tr>\n"
  10812. #~ " <tr height=\"20\">\n"
  10813. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10814. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  10815. #~ " </tr>\n"
  10816. #~ " <tr height=\"20\">\n"
  10817. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10818. #~ " <td>&nbsp;Add Drill</td>\n"
  10819. #~ " </tr>\n"
  10820. #~ " <tr height=\"20\">\n"
  10821. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10822. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10823. #~ " </tr>\n"
  10824. #~ " <tr height=\"20\">\n"
  10825. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10826. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  10827. #~ " </tr>\n"
  10828. #~ " <tr height=\"20\">\n"
  10829. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10830. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  10831. #~ " </tr>\n"
  10832. #~ " <tr height=\"20\">\n"
  10833. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10834. #~ " <td>&nbsp;Add a new Tool</td>\n"
  10835. #~ " </tr>\n"
  10836. #~ " <tr height=\"20\">\n"
  10837. #~ " <td height=\"20\">&nbsp;</td>\n"
  10838. #~ " <td>&nbsp;</td>\n"
  10839. #~ " </tr>\n"
  10840. #~ " <tr height=\"20\">\n"
  10841. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10842. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  10843. #~ " </tr>\n"
  10844. #~ " <tr height=\"20\">\n"
  10845. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10846. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  10847. #~ " </tr>\n"
  10848. #~ " <tr height=\"20\">\n"
  10849. #~ " <td height=\"20\">&nbsp;</td>\n"
  10850. #~ " <td>&nbsp;</td>\n"
  10851. #~ " </tr>\n"
  10852. #~ " <tr height=\"20\">\n"
  10853. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10854. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10855. #~ " </tr>\n"
  10856. #~ " <tr height=\"20\">\n"
  10857. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10858. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10859. #~ " </tr>\n"
  10860. #~ " </tbody>\n"
  10861. #~ " </table>\n"
  10862. #~ " "
  10863. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  10864. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  10865. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  10866. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  10867. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  10868. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  10869. #~ msgid ""
  10870. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  10871. #~ msgstr ""
  10872. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  10873. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  10874. #~ msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  10875. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  10876. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  10877. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  10878. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  10879. #~ msgid "[success] GUI settings deleted ..."
  10880. #~ msgstr "[success] GUI settings deleted ..."
  10881. #~ msgid "Scale Factor:"
  10882. #~ msgstr "Scale Factor:"
  10883. #~ msgid "Buffer Factor:"
  10884. #~ msgstr "Buffer Factor:"
  10885. #~ msgid "<b>Generate new Gerber Object:</b>"
  10886. #~ msgstr "<b>Generate new Gerber Object:</b>"
  10887. #~ msgid "Will generate a new Gerber object from the changed apertures."
  10888. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  10889. #~ msgid ""
  10890. #~ "Will generate a new Gerber object from the changed apertures.\n"
  10891. #~ "This new object can then be isolated etc."
  10892. #~ msgstr ""
  10893. #~ "Will generate a new Gerber object from the changed apertures.\n"
  10894. #~ "This new object can then be isolated etc."
  10895. #~ msgid "[success]Flip on the Y axis done ..."
  10896. #~ msgstr "[success]Flip on the Y axis done ..."
  10897. #~ msgid "[success]Flip on the X axis done ..."
  10898. #~ msgstr "[success]Flip on the X axis done ..."
  10899. #~ msgid "[success]Skew on the %s axis done ..."
  10900. #~ msgstr "[success]Skew on the %s axis done ..."
  10901. #~ msgid "[success]Offset on the %s axis done ..."
  10902. #~ msgstr "[success]Offset on the %s axis done ..."
  10903. #~ msgid ""
  10904. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10905. #~ "Example:\n"
  10906. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10907. #~ "\n"
  10908. #~ "Adjust the value starting with lower values\n"
  10909. #~ "and increasing it if areas that should be painted are still \n"
  10910. #~ "not painted.\n"
  10911. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10912. #~ "Higher values = slow processing and slow execution on CNC\n"
  10913. #~ "due of too many paths."
  10914. #~ msgstr ""
  10915. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10916. #~ "Example:\n"
  10917. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10918. #~ "\n"
  10919. #~ "Adjust the value starting with lower values\n"
  10920. #~ "and increasing it if areas that should be painted are still \n"
  10921. #~ "not painted.\n"
  10922. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10923. #~ "Higher values = slow processing and slow execution on CNC\n"
  10924. #~ "due of too many paths."
  10925. #~| msgid "z_toolchange = Z coord for Toolchange"
  10926. #~ msgid "z_cut = Z coord for Toolchange"
  10927. #~ msgstr "z_cut = Z coord for Toolchange"
  10928. #~| msgid "z_toolchange = Z coord for Toolchange"
  10929. #~ msgid "z_move = Z coord for Toolchange"
  10930. #~ msgstr "z_move = Z coord for Toolchange"
  10931. #~ msgid "%s/Project_%s"
  10932. #~ msgstr "%s/Project_%s"
  10933. #~ msgid "tool_tab"
  10934. #~ msgstr "tool_tab"