strings.po 300 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "POT-Creation-Date: 2019-09-10 00:20+0300\n"
  5. "PO-Revision-Date: 2019-09-11 23:04+0300\n"
  6. "Last-Translator: Carlos Stein <carlos.stein@gmail.com>\n"
  7. "Language-Team: \n"
  8. "Language: pt_BR\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "Generated-By: pygettext.py 1.5\n"
  13. "X-Generator: Poedit 2.2.3\n"
  14. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  15. "X-Poedit-Basepath: ../../..\n"
  16. "X-Poedit-SearchPath-0: .\n"
  17. "X-Poedit-SearchPathExcluded-0: build\n"
  18. "X-Poedit-SearchPathExcluded-1: doc\n"
  19. "X-Poedit-SearchPathExcluded-2: tests\n"
  20. #: FlatCAMApp.py:1113
  21. msgid "Could not find the Language files. The App strings are missing."
  22. msgstr "Não foi possível encontrar os arquivos de idioma. Estão faltando as "
  23. "strings do aplicativo."
  24. #: FlatCAMApp.py:1655
  25. msgid "Detachable Tabs"
  26. msgstr "Abas Destacáveis"
  27. #: FlatCAMApp.py:2067
  28. msgid ""
  29. "Open Source Software - Type help to get started\n"
  30. "\n"
  31. msgstr "Software de Código Aberto - Digite help para iniciar\n\n"
  32. #: FlatCAMApp.py:2270 FlatCAMApp.py:7220
  33. msgid "New Project - Not saved"
  34. msgstr "Novo Projeto - Não salvo"
  35. #: FlatCAMApp.py:2320 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
  36. #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324
  37. msgid "Open cancelled."
  38. msgstr "Abrir cancelado."
  39. #: FlatCAMApp.py:2335
  40. msgid "Open Config file failed."
  41. msgstr "Falha ao abrir o arquivo de Configuração."
  42. #: FlatCAMApp.py:2349
  43. msgid "Open Script file failed."
  44. msgstr "Falha ao abrir o arquivo de Script."
  45. #: FlatCAMApp.py:2366
  46. msgid "Open Excellon file failed."
  47. msgstr "Falha ao abrir o arquivo Excellon."
  48. #: FlatCAMApp.py:2377
  49. msgid "Open GCode file failed."
  50. msgstr "Falha ao abrir o arquivo G-Code."
  51. #: FlatCAMApp.py:2388
  52. msgid "Open Gerber file failed."
  53. msgstr "Falha ao abrir o arquivo Gerber."
  54. #: FlatCAMApp.py:2652
  55. msgid "Select a Geometry, Gerber or Excellon Object to edit."
  56. msgstr "Selecione um Objeto Geometria, Gerber ou Excellon para editar."
  57. #: FlatCAMApp.py:2666
  58. msgid ""
  59. "Simultanoeus editing of tools geometry in a MultiGeo Geometry is not "
  60. "possible.\n"
  61. "Edit only one geometry at a time."
  62. msgstr "A edição simultânea de ferramentas geometria em uma "
  63. "Geometria MultiGeo não é possível. \n"
  64. "Edite apenas uma geometria por vez."
  65. #: FlatCAMApp.py:2721
  66. msgid "Editor is activated ..."
  67. msgstr "Editor está ativado ..."
  68. #: FlatCAMApp.py:2739
  69. msgid "Do you want to save the edited object?"
  70. msgstr "Você quer salvar o objeto editado?"
  71. #: FlatCAMApp.py:2740 flatcamGUI/FlatCAMGUI.py:1721
  72. msgid "Close Editor"
  73. msgstr "Fechar Editor"
  74. #: FlatCAMApp.py:2743 FlatCAMApp.py:4028 FlatCAMApp.py:6224 FlatCAMApp.py:7128
  75. #: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
  76. #: flatcamGUI/FlatCAMGUI.py:3996
  77. msgid "Yes"
  78. msgstr "Sim"
  79. #: FlatCAMApp.py:2744 FlatCAMApp.py:4029 FlatCAMApp.py:6225 FlatCAMApp.py:7129
  80. #: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
  81. #: flatcamGUI/FlatCAMGUI.py:3997 flatcamGUI/FlatCAMGUI.py:6517
  82. #: flatcamGUI/FlatCAMGUI.py:6877 flatcamTools/ToolNonCopperClear.py:171
  83. #: flatcamTools/ToolPaint.py:144
  84. msgid "No"
  85. msgstr "Não"
  86. #: FlatCAMApp.py:2745 FlatCAMApp.py:4030 FlatCAMApp.py:4719 FlatCAMApp.py:5720
  87. #: FlatCAMApp.py:7130
  88. msgid "Cancel"
  89. msgstr "Cancelar"
  90. #: FlatCAMApp.py:2773
  91. msgid "Object empty after edit."
  92. msgstr "Objeto vazio após a edição."
  93. #: FlatCAMApp.py:2796 FlatCAMApp.py:2817 FlatCAMApp.py:2830
  94. msgid "Select a Gerber, Geometry or Excellon Object to update."
  95. msgstr "Selecione um objeto Gerber, Geometria ou Excellon para atualizar."
  96. #: FlatCAMApp.py:2800
  97. msgid "is updated, returning to App..."
  98. msgstr "está atualizado, retornando ao App..."
  99. #: FlatCAMApp.py:3186 FlatCAMApp.py:3240 FlatCAMApp.py:3889
  100. msgid "Could not load defaults file."
  101. msgstr "Não foi possível carregar o arquivo com os padrões."
  102. #: FlatCAMApp.py:3199 FlatCAMApp.py:3249 FlatCAMApp.py:3899
  103. msgid "Failed to parse defaults file."
  104. msgstr "Falha ao analisar o arquivo com os padrões."
  105. #: FlatCAMApp.py:3220 FlatCAMApp.py:3224
  106. msgid "Import FlatCAM Preferences"
  107. msgstr "Importar Preferências do FlatCAM"
  108. #: FlatCAMApp.py:3231
  109. msgid "FlatCAM preferences import cancelled."
  110. msgstr "Importação de preferências do FlatCAM cancelada."
  111. #: FlatCAMApp.py:3254
  112. msgid "Imported Defaults from"
  113. msgstr "Padrões importados de"
  114. #: FlatCAMApp.py:3274 FlatCAMApp.py:3279
  115. msgid "Export FlatCAM Preferences"
  116. msgstr "Exportar preferências do FlatCAM"
  117. #: FlatCAMApp.py:3287
  118. msgid "FlatCAM preferences export cancelled."
  119. msgstr "Exportação de preferências do FlatCAM cancelada."
  120. #: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
  121. #: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
  122. #: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
  123. msgid ""
  124. "Permission denied, saving not possible.\n"
  125. "Most likely another app is holding the file open and not accessible."
  126. msgstr "Permissão negada, não é possível salvar.\n"
  127. "É provável que outro aplicativo esteja mantendo o arquivo aberto e "
  128. "não acessível."
  129. #: FlatCAMApp.py:3309
  130. msgid "Could not load preferences file."
  131. msgstr "Não foi possível carregar o arquivo com as preferências."
  132. #: FlatCAMApp.py:3329 FlatCAMApp.py:3945
  133. msgid "Failed to write defaults to file."
  134. msgstr "Falha ao gravar os padrões no arquivo."
  135. #: FlatCAMApp.py:3335
  136. msgid "Exported preferences to"
  137. msgstr "Preferências exportadas para"
  138. #: FlatCAMApp.py:3352
  139. msgid "FlatCAM Preferences Folder opened."
  140. msgstr "Pasta com Preferências FlatCAM aberta."
  141. #: FlatCAMApp.py:3425
  142. msgid "Failed to open recent files file for writing."
  143. msgstr "Falha ao abrir o arquivo com lista de arquivos recentes para gravação."
  144. #: FlatCAMApp.py:3436
  145. msgid "Failed to open recent projects file for writing."
  146. msgstr "Falha ao abrir o arquivo com lista de projetos recentes para gravação."
  147. #: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
  148. msgid "An internal error has ocurred. See shell.\n"
  149. msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
  150. #: FlatCAMApp.py:3520
  151. #, python-brace-format
  152. msgid ""
  153. "Object ({kind}) failed because: {error} \n"
  154. "\n"
  155. msgstr "Objeto ({kind}) falhou porque: {error} \n"
  156. "\n"
  157. #: FlatCAMApp.py:3541
  158. msgid "Converting units to "
  159. msgstr "Convertendo unidades para "
  160. #: FlatCAMApp.py:3637 FlatCAMApp.py:3640 FlatCAMApp.py:3643 FlatCAMApp.py:3646
  161. #, python-brace-format
  162. msgid ""
  163. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  164. "span>"
  165. msgstr "[selected] {kind} criado/selecionado: <span style =\"color:{color};\">{name}"
  166. "</span>"
  167. #: FlatCAMApp.py:3663 FlatCAMApp.py:5787 FlatCAMObj.py:225 FlatCAMObj.py:240
  168. #: FlatCAMObj.py:256 FlatCAMObj.py:336 flatcamTools/ToolMove.py:187
  169. msgid "Plotting"
  170. msgstr "Plotando"
  171. #: FlatCAMApp.py:3782
  172. #, python-brace-format
  173. msgid ""
  174. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  175. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  176. "<BR><BR><B> License: </B><BR>Licensed under MIT license (2014 - 2019)<BR>by "
  177. "(c)Juan Pablo Caram <BR><BR><B> Programmers:</B><BR>Denis Hayrullin<BR>Kamil "
  178. "Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>and many others found <a "
  179. "href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED"
  180. "\">here.</a><BR><BR><B>Development</B> is done <a href = \"https://bitbucket."
  181. "org/jpcgt/flatcam/src/Beta/\">here.</a><BR><b>DOWNLOAD</B> area <a href = "
  182. "\"https://bitbucket.org/jpcgt/flatcam/downloads/\">here.</a><BR>"
  183. msgstr ""
  184. "<font size=8><B>FlatCAM</B></font><BR>Versão {version} {beta} ({date}) - "
  185. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  186. "<BR><BR><B> License: </B><BR>Licensed under MIT license (2014 - 2019)<BR>by "
  187. "(c)Juan Pablo Caram<BR><BR><B>Programadores:</B><BR>Denis Hayrullin<BR>Kamil " "Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>e muitos outros encontrados <a " "href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED"
  188. "\">aqui.</a><BR><BR>O <B>desenvolvimento</B> é feito <a href = \"https://bitbucket."
  189. "org/jpcgt/flatcam/src/Beta/\">aqui.</a><BR>Área de <B>DOWNLOAD</B> <a href = \"https://"
  190. "bitbucket.org/jpcgt/flatcam/downloads/\">aqui.</a><BR>"
  191. #: FlatCAMApp.py:3818
  192. msgid "Close"
  193. msgstr "Fechar"
  194. #: FlatCAMApp.py:3950 FlatCAMApp.py:6234
  195. msgid "Preferences saved."
  196. msgstr "Preferências salvas."
  197. #: FlatCAMApp.py:3978
  198. msgid "Could not load factory defaults file."
  199. msgstr "Não foi possível carregar o arquivo de padrões de fábrica."
  200. #: FlatCAMApp.py:3988
  201. msgid "Failed to parse factory defaults file."
  202. msgstr "Falha ao analisar o arquivo de padrões de fábrica."
  203. #: FlatCAMApp.py:4003
  204. msgid "Failed to write factory defaults to file."
  205. msgstr "Falha ao gravar os padrões de fábrica no arquivo."
  206. #: FlatCAMApp.py:4007
  207. msgid "Factory defaults saved."
  208. msgstr "Padrões de fábrica salvos."
  209. #: FlatCAMApp.py:4018
  210. msgid "Application is saving the project. Please wait ..."
  211. msgstr "O aplicativo está salvando o projeto. Por favor, espere ..."
  212. #: FlatCAMApp.py:4023 FlatCAMTranslation.py:164
  213. msgid ""
  214. "There are files/objects modified in FlatCAM. \n"
  215. "Do you want to Save the project?"
  216. msgstr ""
  217. "Existem arquivos/objetos modificados no FlatCAM. \n"
  218. "Você quer salvar o projeto?"
  219. #: FlatCAMApp.py:4026 FlatCAMApp.py:7126 FlatCAMTranslation.py:167
  220. msgid "Save changes"
  221. msgstr "Salvar alterações"
  222. #: FlatCAMApp.py:4237
  223. msgid "[success] Selected Excellon file extensions registered with FlatCAM."
  224. msgstr "As extensões de arquivo Excellon selecionadas foram registradas para o FlatCAM"
  225. #: FlatCAMApp.py:4259
  226. msgid "Selected GCode file extensions registered with FlatCAM."
  227. msgstr "As extensões de arquivo G-Code selecionadas foram registradas para o FlatCAM"
  228. #: FlatCAMApp.py:4281
  229. msgid "Selected Gerber file extensions registered with FlatCAM."
  230. msgstr "As extensões de arquivo Gerber selecionadas foram registradas para o FlatCAM"
  231. #: FlatCAMApp.py:4305
  232. msgid ""
  233. "Failed join. The Geometry objects are of different types.\n"
  234. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  235. "is to convert from one to another and retry joining \n"
  236. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  237. "be lost and the result may not be what was expected. \n"
  238. "Check the generated GCODE."
  239. msgstr ""
  240. "Falha ao unir. Os objetos Geometria são de tipos diferentes.\n"
  241. "Pelo menos um é do tipo MultiGeo e o outro é do tipo SingleGeo. Uma "
  242. "possibilidade é converter de um para outro e tentar unir,\n"
  243. "mas no caso de converter de MultiGeo para SingleGeo, as informações podem "
  244. "ser perdidas e o resultado pode não ser o esperado.\n"
  245. "Verifique o G-CODE gerado."
  246. #: FlatCAMApp.py:4347
  247. msgid "Failed. Excellon joining works only on Excellon objects."
  248. msgstr "Falha. A união de Excellon funciona apenas em objetos Excellon."
  249. #: FlatCAMApp.py:4370
  250. msgid "Failed. Gerber joining works only on Gerber objects."
  251. msgstr "Falha. A união de Gerber funciona apenas em objetos Gerber."
  252. #: FlatCAMApp.py:4395 FlatCAMApp.py:4432
  253. msgid "Failed. Select a Geometry Object and try again."
  254. msgstr "Falha. Selecione um Objeto de Geometria e tente novamente."
  255. #: FlatCAMApp.py:4400
  256. msgid "Expected a FlatCAMGeometry, got"
  257. msgstr "Geometria FlatCAM esperada, recebido"
  258. #: FlatCAMApp.py:4414
  259. msgid "A Geometry object was converted to MultiGeo type."
  260. msgstr "Um objeto Geometria foi convertido para o tipo MultiGeo."
  261. #: FlatCAMApp.py:4437
  262. #, python-format
  263. msgid "Expected a FlatCAMGeometry, got %s"
  264. msgstr "Geometria FlatCAM esperada, recebido %s"
  265. #: FlatCAMApp.py:4452
  266. msgid "A Geometry object was converted to SingleGeo type."
  267. msgstr "Um objeto Geometria foi convertido para o tipo SingleGeo."
  268. #: FlatCAMApp.py:4713
  269. msgid "Toggle Units"
  270. msgstr "Alternar Unidades"
  271. #: FlatCAMApp.py:4715
  272. msgid "Change project units ..."
  273. msgstr "Alterar unidades do projeto ..."
  274. #: FlatCAMApp.py:4716
  275. msgid ""
  276. "Changing the units of the project causes all geometrical properties of all "
  277. "objects to be scaled accordingly.\n"
  278. "Continue?"
  279. msgstr ""
  280. "Alterar as unidades do projeto fará com que todas as propriedades "
  281. "geométricas de todos os objetos sejam redimensionadas.\n"
  282. "Continuar?"
  283. #: FlatCAMApp.py:4718 FlatCAMApp.py:5614 FlatCAMApp.py:5719 FlatCAMApp.py:7419
  284. #: FlatCAMApp.py:7433 FlatCAMApp.py:7688 FlatCAMApp.py:7699
  285. msgid "Ok"
  286. msgstr "Ok"
  287. #: FlatCAMApp.py:4767
  288. #, python-format
  289. msgid "Converted units to %s"
  290. msgstr "Unidades convertidas para %s"
  291. #: FlatCAMApp.py:4779
  292. msgid " Units conversion cancelled."
  293. msgstr "Conversão de unidades cancelada."
  294. #: FlatCAMApp.py:5477
  295. msgid "Open file"
  296. msgstr "Abrir arquivo"
  297. #: FlatCAMApp.py:5508 FlatCAMApp.py:5513
  298. msgid "Export G-Code ..."
  299. msgstr "Exportar G-Code ..."
  300. #: FlatCAMApp.py:5517
  301. msgid "Export Code cancelled."
  302. msgstr "Exportar G-Code cancelado."
  303. #: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
  304. msgid "No such file or directory"
  305. msgstr "Nenhum arquivo ou diretório"
  306. #: FlatCAMApp.py:5539
  307. #, python-format
  308. msgid "Saved to: %s"
  309. msgstr "Salvo em: %s"
  310. #: FlatCAMApp.py:5602 FlatCAMApp.py:5635 FlatCAMApp.py:5646 FlatCAMApp.py:5657
  311. #: flatcamTools/ToolNonCopperClear.py:915 flatcamTools/ToolSolderPaste.py:774
  312. msgid "Please enter a tool diameter with non-zero value, in Float format."
  313. msgstr "Insira um diâmetro de ferramenta com valor diferente de "
  314. "zero, no formato Flutuante.""
  315. #: FlatCAMApp.py:5607 FlatCAMApp.py:5640 FlatCAMApp.py:5662
  316. msgid "Adding Tool cancelled"
  317. msgstr "Adicionar ferramenta cancelada ..."
  318. #: FlatCAMApp.py:5610
  319. msgid ""
  320. "Adding Tool works only when Advanced is checked.\n"
  321. "Go to Preferences -> General - Show Advanced Options."
  322. msgstr ""
  323. "Adicionar Ferramenta funciona somente no modo Avançado.\n"
  324. "Vá em Preferências -> Geral - Mostrar Opções Avançadas."
  325. #: FlatCAMApp.py:5651 flatcamGUI/FlatCAMGUI.py:3168
  326. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  327. msgstr "Adicionar ferramenta cancelada ..."
  328. #: FlatCAMApp.py:5714
  329. msgid "Delete objects"
  330. msgstr "Excluir objetos"
  331. #: FlatCAMApp.py:5717
  332. msgid ""
  333. "Are you sure you want to permanently delete\n"
  334. "the selected objects?"
  335. msgstr ""
  336. "Você tem certeza de que deseja excluir permanentemente\n"
  337. "os objetos selecionados?"
  338. #: FlatCAMApp.py:5747
  339. msgid "Object(s) deleted"
  340. msgstr "Objeto(s) excluído(s)"
  341. #: FlatCAMApp.py:5751
  342. msgid "Failed. No object(s) selected..."
  343. msgstr "Falha. Nenhum objeto selecionado..."
  344. #: FlatCAMApp.py:5753
  345. msgid "Save the work in Editor and try again ..."
  346. msgstr "Salve o trabalho no Editor e tente novamente ..."
  347. #: FlatCAMApp.py:5771
  348. msgid "Object deleted"
  349. msgstr "Objeto excluído"
  350. #: FlatCAMApp.py:5795
  351. msgid "Click to set the origin ..."
  352. msgstr "Clique para definir a origem ..."
  353. #: FlatCAMApp.py:5819
  354. msgid "Setting Origin..."
  355. msgstr "Definindo Origem..."
  356. #: FlatCAMApp.py:5831
  357. msgid "Origin set"
  358. msgstr "Origem definida"
  359. #: FlatCAMApp.py:5846
  360. msgid "Jump to ..."
  361. msgstr "Pular para ..."
  362. #: FlatCAMApp.py:5847
  363. msgid "Enter the coordinates in format X,Y:"
  364. msgstr "Digite as coordenadas no formato X,Y:"
  365. #: FlatCAMApp.py:5854
  366. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  367. msgstr "Coordenadas erradas. Insira as coordenadas no formato X,Y"
  368. #: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
  369. #: flatcamEditors/FlatCAMExcEditor.py:3453
  370. #: flatcamEditors/FlatCAMGeoEditor.py:3791
  371. #: flatcamEditors/FlatCAMGeoEditor.py:3806
  372. #: flatcamEditors/FlatCAMGrbEditor.py:1067
  373. #: flatcamEditors/FlatCAMGrbEditor.py:1171
  374. #: flatcamEditors/FlatCAMGrbEditor.py:1445
  375. #: flatcamEditors/FlatCAMGrbEditor.py:1703
  376. #: flatcamEditors/FlatCAMGrbEditor.py:4182
  377. #: flatcamEditors/FlatCAMGrbEditor.py:4197
  378. msgid "Done."
  379. msgstr "Pronto"
  380. #: FlatCAMApp.py:6007 FlatCAMApp.py:6075
  381. msgid "No object is selected. Select an object and try again."
  382. msgstr "Nenhum objeto está selecionado. Selecione um objeto e tente "
  383. "novamente."
  384. #: FlatCAMApp.py:6095
  385. msgid ""
  386. "Aborting. The current task will be gracefully closed as soon as possible..."
  387. msgstr "Abortando. A tarefa atual será fechada normalmente o mais rápido possível ..."
  388. #: FlatCAMApp.py:6101
  389. msgid "The current task was gracefully closed on user request..."
  390. msgstr "A tarefa atual foi fechada normalmente mediante solicitação do usuário ..."
  391. #: FlatCAMApp.py:6118 flatcamGUI/GUIElements.py:1443
  392. msgid "Preferences"
  393. msgstr "Preferências"
  394. #: FlatCAMApp.py:6185
  395. msgid "Preferences edited but not saved."
  396. msgstr "Preferências editadas, mas não salvas."
  397. #: FlatCAMApp.py:6219
  398. msgid ""
  399. "One or more values are changed.\n"
  400. "Do you want to save the Preferences?"
  401. msgstr ""
  402. "Um ou mais valores foram alterados.\n"
  403. "Você deseja salvar as preferências?"
  404. #: FlatCAMApp.py:6221 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:989
  405. msgid "Save Preferences"
  406. msgstr "Salvar Preferências"
  407. #: FlatCAMApp.py:6250
  408. msgid "No object selected to Flip on Y axis."
  409. msgstr "Nenhum objeto selecionado para Espelhar no eixo Y."
  410. #: FlatCAMApp.py:6276
  411. msgid "Flip on Y axis done."
  412. msgstr "Espelhado no eixo Y."
  413. #: FlatCAMApp.py:6279 FlatCAMApp.py:6322
  414. #: flatcamEditors/FlatCAMGrbEditor.py:5624
  415. msgid "Flip action was not executed."
  416. msgstr "A ação de espelhamento não foi executada."
  417. #: FlatCAMApp.py:6293
  418. msgid "No object selected to Flip on X axis."
  419. msgstr "Nenhum objeto selecionado para Espelhar no eixo X."
  420. #: FlatCAMApp.py:6319
  421. msgid "Flip on X axis done."
  422. msgstr "Espelhado no eixo X."
  423. #: FlatCAMApp.py:6336
  424. msgid "No object selected to Rotate."
  425. msgstr "Nenhum objeto selecionado para Girar."
  426. #: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
  427. msgid "Transform"
  428. msgstr "Transformar"
  429. #: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
  430. msgid "Enter the Angle value:"
  431. msgstr "Digite o valor do Ângulo:"
  432. #: FlatCAMApp.py:6370
  433. msgid "Rotation done."
  434. msgstr "Rotação realizada."
  435. #: FlatCAMApp.py:6373
  436. msgid "Rotation movement was not executed."
  437. msgstr "O movimento de rotação não foi executado."
  438. #: FlatCAMApp.py:6385
  439. msgid "No object selected to Skew/Shear on X axis."
  440. msgstr "Nenhum objeto selecionado para Inclinar no eixo X."
  441. #: FlatCAMApp.py:6407
  442. msgid "Skew on X axis done."
  443. msgstr "Inclinação no eixo X concluída."
  444. #: FlatCAMApp.py:6418
  445. msgid "No object selected to Skew/Shear on Y axis."
  446. msgstr "Nenhum objeto selecionado para Inclinar no eixo Y."
  447. #: FlatCAMApp.py:6440
  448. msgid "Skew on Y axis done."
  449. msgstr "Inclinação no eixo Y concluída."
  450. #: FlatCAMApp.py:6491
  451. msgid "Grid On/Off"
  452. msgstr "Liga/Desliga a Grade"
  453. #: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
  454. #: flatcamEditors/FlatCAMGrbEditor.py:2477
  455. #: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
  456. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  457. #: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
  458. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
  459. #: flatcamTools/ToolTransform.py:338
  460. msgid "Add"
  461. msgstr "Adicionar"
  462. #: FlatCAMApp.py:6505 FlatCAMObj.py:3566
  463. #: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
  464. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
  465. #: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
  466. #: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
  467. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:485
  468. msgid "Delete"
  469. msgstr "Excluir"
  470. #: FlatCAMApp.py:6518
  471. msgid "New Grid ..."
  472. msgstr "Nova Grade ..."
  473. #: FlatCAMApp.py:6519
  474. msgid "Enter a Grid Value:"
  475. msgstr "Digite um valor para grade:"
  476. #: FlatCAMApp.py:6527 FlatCAMApp.py:6554
  477. msgid "Please enter a grid value with non-zero value, in Float format."
  478. msgstr "Por favor, insira um valor de grade com valor diferente de "
  479. "zero, no formato Flutuante."
  480. #: FlatCAMApp.py:6533
  481. msgid "New Grid added"
  482. msgstr "Nova Grade adicionada"
  483. #: FlatCAMApp.py:6536
  484. msgid "Grid already exists"
  485. msgstr "Grade já existe"
  486. #: FlatCAMApp.py:6539
  487. msgid "Adding New Grid cancelled"
  488. msgstr "Adicionar nova grade cancelada"
  489. #: FlatCAMApp.py:6561
  490. msgid " Grid Value does not exist"
  491. msgstr "O valor da grade não existe"
  492. #: FlatCAMApp.py:6564
  493. msgid "Grid Value deleted"
  494. msgstr "Grade apagada"
  495. #: FlatCAMApp.py:6567
  496. msgid "Delete Grid value cancelled"
  497. msgstr "Excluir valor de grade cancelado"
  498. #: FlatCAMApp.py:6573
  499. msgid "Key Shortcut List"
  500. msgstr "Lista de Teclas de Atalho"
  501. #: FlatCAMApp.py:6607
  502. msgid " No object selected to copy it's name"
  503. msgstr "Nenhum objeto selecionado para copiar nome"
  504. #: FlatCAMApp.py:6611
  505. msgid "Name copied on clipboard ..."
  506. msgstr "Nome copiado para a área de transferência"
  507. #: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
  508. msgid "Coordinates copied to clipboard."
  509. msgstr "Coordenadas copiadas para a área de transferência."
  510. #: FlatCAMApp.py:6907 FlatCAMApp.py:6911 FlatCAMApp.py:6915 FlatCAMApp.py:6919
  511. #: FlatCAMApp.py:6935 FlatCAMApp.py:6939 FlatCAMApp.py:6943 FlatCAMApp.py:6947
  512. #: FlatCAMApp.py:6987 FlatCAMApp.py:6990 FlatCAMApp.py:6993 FlatCAMApp.py:6996
  513. #: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
  514. #: ObjectCollection.py:734
  515. #, python-brace-format
  516. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  517. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selecionado"
  518. #: FlatCAMApp.py:7123
  519. msgid ""
  520. "There are files/objects opened in FlatCAM.\n"
  521. "Creating a New project will delete them.\n"
  522. "Do you want to Save the project?"
  523. msgstr ""
  524. "Existem arquivos/objetos abertos no FlatCAM.\n"
  525. "Criar um novo projeto irá apagá-los.\n"
  526. "Você deseja Salvar o Projeto?"
  527. #: FlatCAMApp.py:7145
  528. msgid "New Project created"
  529. msgstr "Novo Projeto criado"
  530. #: FlatCAMApp.py:7265 FlatCAMApp.py:7269 flatcamGUI/FlatCAMGUI.py:626
  531. #: flatcamGUI/FlatCAMGUI.py:1970
  532. msgid "Open Gerber"
  533. msgstr "Abrir Gerber"
  534. #: FlatCAMApp.py:7277
  535. msgid "Open Gerber cancelled."
  536. msgstr "Abrir Gerber cancelado."
  537. #: FlatCAMApp.py:7297 FlatCAMApp.py:7301 flatcamGUI/FlatCAMGUI.py:627
  538. #: flatcamGUI/FlatCAMGUI.py:1971
  539. msgid "Open Excellon"
  540. msgstr "Abrir Excellon"
  541. #: FlatCAMApp.py:7308
  542. msgid " Open Excellon cancelled."
  543. msgstr "Abrir Excellon cancelado."
  544. #: FlatCAMApp.py:7331 FlatCAMApp.py:7335
  545. msgid "Open G-Code"
  546. msgstr "Abrir G-Code"
  547. #: FlatCAMApp.py:7343
  548. msgid "Open G-Code cancelled."
  549. msgstr "Abrir G-Code cancelado."
  550. #: FlatCAMApp.py:7360 FlatCAMApp.py:7363
  551. msgid "Open Project"
  552. msgstr "Abrir Projeto"
  553. #: FlatCAMApp.py:7372
  554. msgid "Open Project cancelled."
  555. msgstr "Abrir Projeto cancelado."
  556. #: FlatCAMApp.py:7391 FlatCAMApp.py:7394
  557. msgid "Open Configuration File"
  558. msgstr "Abrir Arquivo de Configuração"
  559. #: FlatCAMApp.py:7399
  560. msgid "Open Config cancelled."
  561. msgstr "Abrir Arquivo de Configuração cancelado."
  562. #: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
  563. #: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
  564. msgid "No object selected."
  565. msgstr "Nenhum objeto selecionado."
  566. #: FlatCAMApp.py:7416 FlatCAMApp.py:7685
  567. msgid "Please Select a Geometry object to export"
  568. msgstr "Por favor, selecione um objeto Geometria para exportar"
  569. #: FlatCAMApp.py:7430
  570. msgid "Only Geometry, Gerber and CNCJob objects can be used."
  571. msgstr "omente objetos Geometria, Gerber e Trabalho CNC podem ser "
  572. "usados."
  573. #: FlatCAMApp.py:7443 FlatCAMApp.py:7447
  574. msgid "Export SVG"
  575. msgstr "Exportar SVG"
  576. #: FlatCAMApp.py:7453
  577. msgid " Export SVG cancelled."
  578. msgstr "Exportar SVG cancelado."
  579. #: FlatCAMApp.py:7473
  580. msgid "Data must be a 3D array with last dimension 3 or 4"
  581. msgstr "Os dados devem ser uma matriz 3D com a última dimensão 3 ou 4"
  582. #: FlatCAMApp.py:7479 FlatCAMApp.py:7483
  583. msgid "Export PNG Image"
  584. msgstr "Exportar Imagem PNG"
  585. #: FlatCAMApp.py:7488
  586. msgid "Export PNG cancelled."
  587. msgstr "Exportar PNG cancelado."
  588. #: FlatCAMApp.py:7508
  589. msgid "No object selected. Please select an Gerber object to export."
  590. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  591. "Gerber para exportar."
  592. #: FlatCAMApp.py:7514 FlatCAMApp.py:7646
  593. msgid "Failed. Only Gerber objects can be saved as Gerber files..."
  594. msgstr "Falhou. Somente objetos Gerber podem ser salvos como arquivos "
  595. "Gerber..."
  596. #: FlatCAMApp.py:7526
  597. msgid "Save Gerber source file"
  598. msgstr "Salvar arquivo fonte Gerber"
  599. #: FlatCAMApp.py:7532
  600. msgid "Save Gerber source file cancelled."
  601. msgstr "Salvar arquivo fonte Gerber cancelado."
  602. #: FlatCAMApp.py:7552
  603. msgid "No object selected. Please select an Excellon object to export."
  604. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  605. "Excellon para exportar."
  606. #: FlatCAMApp.py:7558 FlatCAMApp.py:7602
  607. msgid "Failed. Only Excellon objects can be saved as Excellon files..."
  608. msgstr "Falhou. Somente objetos Excellon podem ser salvos como arquivos "
  609. "Excellon..."
  610. #: FlatCAMApp.py:7566 FlatCAMApp.py:7570
  611. msgid "Save Excellon source file"
  612. msgstr "Salvar o arquivo fonte Excellon"
  613. #: FlatCAMApp.py:7576
  614. msgid "Saving Excellon source file cancelled."
  615. msgstr "Salvar arquivo fonte Excellon cancelado."
  616. #: FlatCAMApp.py:7596
  617. msgid "No object selected. Please Select an Excellon object to export."
  618. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  619. "Excellon para exportar."
  620. #: FlatCAMApp.py:7610 FlatCAMApp.py:7614
  621. msgid "Export Excellon"
  622. msgstr "Exportar Excellon"
  623. #: FlatCAMApp.py:7620
  624. msgid "Export Excellon cancelled."
  625. msgstr "Exportar Excellon cancelado."
  626. #: FlatCAMApp.py:7640
  627. msgid "No object selected. Please Select an Gerber object to export."
  628. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  629. "Gerber para exportar."
  630. #: FlatCAMApp.py:7654 FlatCAMApp.py:7658
  631. msgid "Export Gerber"
  632. msgstr "Exportar Gerber"
  633. #: FlatCAMApp.py:7664
  634. msgid "Export Gerber cancelled."
  635. msgstr "Exportar Gerber cancelado."
  636. #: FlatCAMApp.py:7696
  637. msgid "Only Geometry objects can be used."
  638. msgstr "Apenas objetos Geometria podem ser usados."
  639. #: FlatCAMApp.py:7710 FlatCAMApp.py:7714
  640. msgid "Export DXF"
  641. msgstr "Exportar DXF"
  642. #: FlatCAMApp.py:7721
  643. msgid "Export DXF cancelled."
  644. msgstr "Exportar DXF cancelado."
  645. #: FlatCAMApp.py:7741 FlatCAMApp.py:7744
  646. msgid "Import SVG"
  647. msgstr "Importar SVG"
  648. #: FlatCAMApp.py:7754
  649. msgid "Open SVG cancelled."
  650. msgstr "Abrir SVG cancelado."
  651. #: FlatCAMApp.py:7773 FlatCAMApp.py:7777
  652. msgid "Import DXF"
  653. msgstr "Importar DXF"
  654. #: FlatCAMApp.py:7787
  655. msgid "Open DXF cancelled."
  656. msgstr "Abrir DXF cancelado."
  657. #: FlatCAMApp.py:7805
  658. #, python-format
  659. msgid "%s"
  660. msgstr "%s"
  661. #: FlatCAMApp.py:7826
  662. msgid "Select an Gerber or Excellon file to view it's source file."
  663. msgstr "Selecione um arquivo Gerber ou Excellon para visualizar o "
  664. "arquivo fonte."
  665. #: FlatCAMApp.py:7834
  666. msgid "There is no selected object for which to see it's source file code."
  667. msgstr "Nenhum objeto selecionado para ver o código fonte do "
  668. "arquivo."
  669. #: FlatCAMApp.py:7842
  670. msgid "Source Editor"
  671. msgstr "Editor de Fontes"
  672. #: FlatCAMApp.py:7853
  673. msgid "App.on_view_source() -->"
  674. msgstr "App.on_view_source() -->"
  675. #: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
  676. #: flatcamTools/ToolSolderPaste.py:1304
  677. msgid "Code Editor"
  678. msgstr "Editor de Códigos"
  679. #: FlatCAMApp.py:7877
  680. msgid "Script Editor"
  681. msgstr ""
  682. #: FlatCAMApp.py:7880
  683. msgid ""
  684. "#\n"
  685. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  686. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  687. "html\n"
  688. "#\n"
  689. "\n"
  690. "# FlatCAM commands list:\n"
  691. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  692. "AlignDrillGrid, ClearShell, Cncjob,\n"
  693. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  694. "GeoUnion, GetNames, GetSys,\n"
  695. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  696. "ListSys, MillHoles, Mirror, New,\n"
  697. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  698. "Options, Paint, Panelize,\n"
  699. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  700. "SubtractRectangle, Version,\n"
  701. "# WriteGCode\n"
  702. "#\n"
  703. "\n"
  704. msgstr ""
  705. #: FlatCAMApp.py:7903 FlatCAMApp.py:7906
  706. msgid "Open TCL script"
  707. msgstr ""
  708. #: FlatCAMApp.py:7915
  709. msgid "Open TCL script cancelled."
  710. msgstr ""
  711. #: FlatCAMApp.py:7928
  712. msgid "App.on_fileopenscript() -->"
  713. msgstr ""
  714. #: FlatCAMApp.py:7954 FlatCAMApp.py:7957
  715. msgid "Run TCL script"
  716. msgstr ""
  717. #: FlatCAMApp.py:7966
  718. msgid "Run TCL script cancelled."
  719. msgstr ""
  720. #: FlatCAMApp.py:8021 FlatCAMApp.py:8025
  721. msgid "Save Project As ..."
  722. msgstr ""
  723. #: FlatCAMApp.py:8022
  724. #, python-brace-format
  725. msgid "{l_save}/Project_{date}"
  726. msgstr ""
  727. #: FlatCAMApp.py:8031
  728. msgid "Save Project cancelled."
  729. msgstr ""
  730. #: FlatCAMApp.py:8079
  731. msgid "Exporting SVG"
  732. msgstr ""
  733. #: FlatCAMApp.py:8121 FlatCAMApp.py:8238 FlatCAMApp.py:8364
  734. msgid "SVG file exported to"
  735. msgstr ""
  736. #: FlatCAMApp.py:8156 FlatCAMApp.py:8287 flatcamTools/ToolPanelize.py:381
  737. msgid "No object Box. Using instead"
  738. msgstr ""
  739. #: FlatCAMApp.py:8241 FlatCAMApp.py:8367
  740. msgid "Generating Film ... Please wait."
  741. msgstr ""
  742. #: FlatCAMApp.py:8536
  743. msgid "Excellon file exported to"
  744. msgstr ""
  745. #: FlatCAMApp.py:8543
  746. msgid "Exporting Excellon"
  747. msgstr ""
  748. #: FlatCAMApp.py:8549 FlatCAMApp.py:8557
  749. msgid "Could not export Excellon file."
  750. msgstr ""
  751. #: FlatCAMApp.py:8665
  752. msgid "Gerber file exported to"
  753. msgstr ""
  754. #: FlatCAMApp.py:8672
  755. msgid "Exporting Gerber"
  756. msgstr ""
  757. #: FlatCAMApp.py:8678 FlatCAMApp.py:8686
  758. msgid "Could not export Gerber file."
  759. msgstr ""
  760. #: FlatCAMApp.py:8729
  761. msgid "DXF file exported to"
  762. msgstr ""
  763. #: FlatCAMApp.py:8735
  764. msgid "Exporting DXF"
  765. msgstr ""
  766. #: FlatCAMApp.py:8741 FlatCAMApp.py:8749
  767. msgid "Could not export DXF file."
  768. msgstr ""
  769. #: FlatCAMApp.py:8770 FlatCAMApp.py:8814 FlatCAMApp.py:8860
  770. msgid ""
  771. "Not supported type is picked as parameter. Only Geometry and Gerber are "
  772. "supported"
  773. msgstr ""
  774. #: FlatCAMApp.py:8780
  775. msgid "Importing SVG"
  776. msgstr ""
  777. #: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
  778. #: FlatCAMApp.py:9029 FlatCAMApp.py:9096
  779. msgid "Opened"
  780. msgstr ""
  781. #: FlatCAMApp.py:8824
  782. msgid "Importing DXF"
  783. msgstr ""
  784. #: FlatCAMApp.py:8868
  785. msgid "Importing Image"
  786. msgstr ""
  787. #: FlatCAMApp.py:8911
  788. msgid "Failed to open file"
  789. msgstr ""
  790. #: FlatCAMApp.py:8916
  791. msgid "Failed to parse file"
  792. msgstr ""
  793. #: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
  794. #: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
  795. msgid "An internal error has occurred. See shell.\n"
  796. msgstr ""
  797. #: FlatCAMApp.py:8933
  798. msgid "Object is not Gerber file or empty. Aborting object creation."
  799. msgstr ""
  800. #: FlatCAMApp.py:8941
  801. msgid "Opening Gerber"
  802. msgstr ""
  803. #: FlatCAMApp.py:8952
  804. msgid " Open Gerber failed. Probable not a Gerber file."
  805. msgstr ""
  806. #: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
  807. msgid "This is not Excellon file."
  808. msgstr ""
  809. #: FlatCAMApp.py:8991
  810. msgid "Cannot open file"
  811. msgstr ""
  812. #: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
  813. #: flatcamTools/ToolPcbWizard.py:451
  814. msgid "No geometry found in file"
  815. msgstr ""
  816. #: FlatCAMApp.py:9014
  817. msgid "Opening Excellon."
  818. msgstr ""
  819. #: FlatCAMApp.py:9021
  820. msgid "Open Excellon file failed. Probable not an Excellon file."
  821. msgstr ""
  822. #: FlatCAMApp.py:9060
  823. msgid "Failed to open"
  824. msgstr ""
  825. #: FlatCAMApp.py:9071
  826. msgid "This is not GCODE"
  827. msgstr ""
  828. #: FlatCAMApp.py:9077
  829. msgid "Opening G-Code."
  830. msgstr ""
  831. #: FlatCAMApp.py:9086
  832. msgid ""
  833. "Failed to create CNCJob Object. Probable not a GCode file.\n"
  834. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  835. "processing"
  836. msgstr ""
  837. #: FlatCAMApp.py:9128
  838. msgid "Failed to open config file"
  839. msgstr ""
  840. #: FlatCAMApp.py:9149
  841. msgid "Loading Project ... Please Wait ..."
  842. msgstr ""
  843. #: FlatCAMApp.py:9157 FlatCAMApp.py:9176
  844. msgid "Failed to open project file"
  845. msgstr ""
  846. #: FlatCAMApp.py:9200
  847. msgid "Loading Project ... restoring"
  848. msgstr ""
  849. #: FlatCAMApp.py:9210
  850. msgid "Project loaded from"
  851. msgstr ""
  852. #: FlatCAMApp.py:9316
  853. msgid "Available commands:\n"
  854. msgstr ""
  855. #: FlatCAMApp.py:9318
  856. msgid ""
  857. "\n"
  858. "\n"
  859. "Type help <command_name> for usage.\n"
  860. " Example: help open_gerber"
  861. msgstr ""
  862. #: FlatCAMApp.py:9468
  863. msgid "Shows list of commands."
  864. msgstr ""
  865. #: FlatCAMApp.py:9526
  866. msgid "Failed to load recent item list."
  867. msgstr ""
  868. #: FlatCAMApp.py:9534
  869. msgid "Failed to parse recent item list."
  870. msgstr ""
  871. #: FlatCAMApp.py:9545
  872. msgid "Failed to load recent projects item list."
  873. msgstr ""
  874. #: FlatCAMApp.py:9553
  875. msgid "Failed to parse recent project item list."
  876. msgstr ""
  877. #: FlatCAMApp.py:9612 FlatCAMApp.py:9635
  878. msgid "Clear Recent files"
  879. msgstr ""
  880. #: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
  881. msgid "<b>Shortcut Key List</b>"
  882. msgstr ""
  883. #: FlatCAMApp.py:9664
  884. #, python-brace-format
  885. msgid ""
  886. "\n"
  887. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  888. "from Project Tab</strong></span></p>\n"
  889. "\n"
  890. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  891. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  892. "\n"
  893. "<ol>\n"
  894. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  895. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  896. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  897. "GUI.<br />\n"
  898. "\t<br />\n"
  899. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  900. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  901. "through the menu/toolbar links offered within the app.</span><br />\n"
  902. "\t&nbsp;</li>\n"
  903. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  904. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  905. "strong>(more simpler is to double click the object name in the Project Tab), "
  906. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  907. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  908. ">\n"
  909. "\t<br />\n"
  910. "\tIf the selection of the object is done on the canvas by single click "
  911. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  912. "properties will be displayed into the Selected Tab. Alternatively, double "
  913. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  914. "strong> and populate it even if it was out of focus.<br />\n"
  915. "\t<br />\n"
  916. "\tYou can change the parameters in this screen and the flow direction is "
  917. "like this:<br />\n"
  918. "\t<br />\n"
  919. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  920. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  921. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  922. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  923. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  924. "span></li>\n"
  925. "</ol>\n"
  926. "\n"
  927. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  928. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  929. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  930. "\n"
  931. " "
  932. msgstr ""
  933. #: FlatCAMApp.py:9743
  934. msgid "Failed checking for latest version. Could not connect."
  935. msgstr ""
  936. #: FlatCAMApp.py:9751
  937. msgid "Could not parse information about latest version."
  938. msgstr ""
  939. #: FlatCAMApp.py:9762
  940. msgid "FlatCAM is up to date!"
  941. msgstr ""
  942. #: FlatCAMApp.py:9767
  943. msgid "Newer Version Available"
  944. msgstr ""
  945. #: FlatCAMApp.py:9768
  946. msgid ""
  947. "There is a newer version of FlatCAM available for download:\n"
  948. "\n"
  949. msgstr ""
  950. #: FlatCAMApp.py:9770
  951. msgid "info"
  952. msgstr ""
  953. #: FlatCAMApp.py:9825
  954. msgid "All plots disabled."
  955. msgstr ""
  956. #: FlatCAMApp.py:9832
  957. msgid "All non selected plots disabled."
  958. msgstr ""
  959. #: FlatCAMApp.py:9839
  960. msgid "All plots enabled."
  961. msgstr ""
  962. #: FlatCAMApp.py:9846
  963. msgid "Selected plots enabled..."
  964. msgstr ""
  965. #: FlatCAMApp.py:9855
  966. msgid "Selected plots disabled..."
  967. msgstr ""
  968. #: FlatCAMApp.py:9873
  969. msgid "Enabling plots ..."
  970. msgstr ""
  971. #: FlatCAMApp.py:9907
  972. msgid "Disabling plots ..."
  973. msgstr ""
  974. #: FlatCAMApp.py:9929
  975. msgid "Working ..."
  976. msgstr ""
  977. #: FlatCAMApp.py:9967
  978. msgid "Saving FlatCAM Project"
  979. msgstr ""
  980. #: FlatCAMApp.py:9989 FlatCAMApp.py:10024
  981. msgid "Project saved to"
  982. msgstr ""
  983. #: FlatCAMApp.py:10008
  984. msgid "Failed to verify project file"
  985. msgstr ""
  986. #: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
  987. msgid "Retry to save it."
  988. msgstr ""
  989. #: FlatCAMApp.py:10016 FlatCAMApp.py:10027
  990. msgid "Failed to parse saved project file"
  991. msgstr ""
  992. #: FlatCAMApp.py:10238
  993. msgid "The user requested a graceful exit of the current task."
  994. msgstr ""
  995. #: FlatCAMObj.py:213
  996. #, python-brace-format
  997. msgid "[success] Name changed from {old} to {new}"
  998. msgstr ""
  999. #: FlatCAMObj.py:222
  1000. msgid "Offsetting..."
  1001. msgstr ""
  1002. #: FlatCAMObj.py:237
  1003. msgid "Scaling..."
  1004. msgstr ""
  1005. #: FlatCAMObj.py:253
  1006. msgid "Skewing..."
  1007. msgstr ""
  1008. #: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
  1009. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1010. msgstr ""
  1011. #: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
  1012. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1013. msgstr ""
  1014. #: FlatCAMObj.py:802
  1015. msgid "Buffering solid geometry"
  1016. msgstr ""
  1017. #: FlatCAMObj.py:805 flatcamGUI/FlatCAMGUI.py:4322
  1018. #: flatcamTools/ToolNonCopperClear.py:1531
  1019. #: flatcamTools/ToolNonCopperClear.py:1625
  1020. #: flatcamTools/ToolNonCopperClear.py:1637
  1021. #: flatcamTools/ToolNonCopperClear.py:1864
  1022. #: flatcamTools/ToolNonCopperClear.py:1956
  1023. #: flatcamTools/ToolNonCopperClear.py:1968
  1024. msgid "Buffering"
  1025. msgstr ""
  1026. #: FlatCAMObj.py:811
  1027. msgid "Done"
  1028. msgstr ""
  1029. #: FlatCAMObj.py:1071 FlatCAMObj.py:1178
  1030. #: flatcamTools/ToolNonCopperClear.py:1560
  1031. #: flatcamTools/ToolNonCopperClear.py:1888
  1032. msgid "Isolation geometry could not be generated."
  1033. msgstr ""
  1034. #: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
  1035. msgid "Rough"
  1036. msgstr ""
  1037. #: FlatCAMObj.py:1133 FlatCAMObj.py:1201
  1038. msgid "Isolation geometry created"
  1039. msgstr ""
  1040. #: FlatCAMObj.py:1386
  1041. msgid "Plotting Apertures"
  1042. msgstr ""
  1043. #: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
  1044. msgid "Total Drills"
  1045. msgstr ""
  1046. #: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
  1047. msgid "Total Slots"
  1048. msgstr ""
  1049. #: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
  1050. #: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
  1051. #: FlatCAMObj.py:4907 FlatCAMObj.py:5405
  1052. #: flatcamEditors/FlatCAMExcEditor.py:2416
  1053. #: flatcamEditors/FlatCAMGeoEditor.py:1080
  1054. #: flatcamEditors/FlatCAMGeoEditor.py:1117
  1055. #: flatcamEditors/FlatCAMGeoEditor.py:1138
  1056. #: flatcamEditors/FlatCAMGeoEditor.py:1159
  1057. #: flatcamEditors/FlatCAMGeoEditor.py:1196
  1058. #: flatcamEditors/FlatCAMGeoEditor.py:1228
  1059. #: flatcamEditors/FlatCAMGeoEditor.py:1249
  1060. #: flatcamEditors/FlatCAMGrbEditor.py:5283
  1061. #: flatcamEditors/FlatCAMGrbEditor.py:5326
  1062. #: flatcamEditors/FlatCAMGrbEditor.py:5353
  1063. #: flatcamEditors/FlatCAMGrbEditor.py:5380
  1064. #: flatcamEditors/FlatCAMGrbEditor.py:5421
  1065. #: flatcamEditors/FlatCAMGrbEditor.py:5459
  1066. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
  1067. #: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
  1068. #: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
  1069. #: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
  1070. #: flatcamTools/ToolCalculators.py:398 flatcamTools/ToolCalculators.py:409
  1071. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolFilm.py:254
  1072. #: flatcamTools/ToolNonCopperClear.py:862
  1073. #: flatcamTools/ToolNonCopperClear.py:873
  1074. #: flatcamTools/ToolNonCopperClear.py:883
  1075. #: flatcamTools/ToolNonCopperClear.py:901
  1076. #: flatcamTools/ToolNonCopperClear.py:980
  1077. #: flatcamTools/ToolNonCopperClear.py:1062
  1078. #: flatcamTools/ToolNonCopperClear.py:1341
  1079. #: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
  1080. #: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
  1081. #: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
  1082. #: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
  1083. #: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
  1084. #: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
  1085. #: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
  1086. #: flatcamTools/ToolSolderPaste.py:764 flatcamTools/ToolSolderPaste.py:839
  1087. #: flatcamTools/ToolTransform.py:474 flatcamTools/ToolTransform.py:508
  1088. #: flatcamTools/ToolTransform.py:526 flatcamTools/ToolTransform.py:544
  1089. #: flatcamTools/ToolTransform.py:578 flatcamTools/ToolTransform.py:607
  1090. #: flatcamTools/ToolTransform.py:625
  1091. msgid "Wrong value format entered, use a number."
  1092. msgstr ""
  1093. #: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
  1094. msgid "Please select one or more tools from the list and try again."
  1095. msgstr ""
  1096. #: FlatCAMObj.py:2614
  1097. msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
  1098. msgstr ""
  1099. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1100. msgid "Tool_nr"
  1101. msgstr ""
  1102. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1103. #: flatcamEditors/FlatCAMExcEditor.py:1500
  1104. #: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
  1105. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  1106. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1107. msgid "Diameter"
  1108. msgstr ""
  1109. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1110. msgid "Drills_Nr"
  1111. msgstr ""
  1112. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1113. msgid "Slots_Nr"
  1114. msgstr ""
  1115. #: FlatCAMObj.py:2707
  1116. msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
  1117. msgstr ""
  1118. #: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
  1119. msgid ""
  1120. "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
  1121. "\"]"
  1122. msgstr ""
  1123. #: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
  1124. msgid ""
  1125. "Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1126. "options[\"feedrate_probe\"]"
  1127. msgstr ""
  1128. #: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
  1129. msgid "Generating CNC Code"
  1130. msgstr ""
  1131. #: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
  1132. msgid ""
  1133. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1134. "y) \n"
  1135. "but now there is only one value, not two. "
  1136. msgstr ""
  1137. #: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
  1138. msgid "Iso"
  1139. msgstr ""
  1140. #: FlatCAMObj.py:3261
  1141. msgid "Finish"
  1142. msgstr ""
  1143. #: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
  1144. #: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
  1145. #: flatcamGUI/ObjectUI.py:1061
  1146. msgid "Copy"
  1147. msgstr ""
  1148. #: FlatCAMObj.py:3775
  1149. msgid "Please enter the desired tool diameter in Float format."
  1150. msgstr ""
  1151. #: FlatCAMObj.py:3849
  1152. msgid "Tool added in Tool Table."
  1153. msgstr ""
  1154. #: FlatCAMObj.py:3853
  1155. msgid "Default Tool added. Wrong value format entered."
  1156. msgstr ""
  1157. #: FlatCAMObj.py:3886 FlatCAMObj.py:3895
  1158. msgid "Failed. Select a tool to copy."
  1159. msgstr ""
  1160. #: FlatCAMObj.py:3923
  1161. msgid "Tool was copied in Tool Table."
  1162. msgstr ""
  1163. #: FlatCAMObj.py:3953
  1164. msgid "Tool was edited in Tool Table."
  1165. msgstr ""
  1166. #: FlatCAMObj.py:3982 FlatCAMObj.py:3991
  1167. msgid "Failed. Select a tool to delete."
  1168. msgstr ""
  1169. #: FlatCAMObj.py:4014
  1170. msgid "Tool was deleted in Tool Table."
  1171. msgstr ""
  1172. #: FlatCAMObj.py:4444
  1173. #, python-format
  1174. msgid "This Geometry can't be processed because it is %s geometry."
  1175. msgstr ""
  1176. #: FlatCAMObj.py:4486
  1177. msgid "Failed. No tool selected in the tool table ..."
  1178. msgstr ""
  1179. #: FlatCAMObj.py:4524
  1180. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
  1181. msgstr ""
  1182. #: FlatCAMObj.py:4673 FlatCAMObj.py:4913
  1183. msgid ""
  1184. "Tool Offset is selected in Tool Table but no value is provided.\n"
  1185. "Add a Tool Offset or change the Offset Type."
  1186. msgstr ""
  1187. #: FlatCAMObj.py:4724 FlatCAMObj.py:4954
  1188. msgid "G-Code parsing in progress..."
  1189. msgstr ""
  1190. #: FlatCAMObj.py:4726 FlatCAMObj.py:4956
  1191. msgid "G-Code parsing finished..."
  1192. msgstr ""
  1193. #: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
  1194. msgid "Finished G-Code processing..."
  1195. msgstr ""
  1196. #: FlatCAMObj.py:4736 FlatCAMObj.py:4968
  1197. #, python-format
  1198. msgid "G-Code processing failed with error: %s"
  1199. msgstr ""
  1200. #: FlatCAMObj.py:4788
  1201. msgid ""
  1202. " Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1203. "options[\"feedrate_probe\"]"
  1204. msgstr ""
  1205. #: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
  1206. msgid "Cancelled. Empty file, it has no geometry"
  1207. msgstr ""
  1208. #: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
  1209. msgid "CNCjob created"
  1210. msgstr ""
  1211. #: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
  1212. msgid "Scale factor has to be a number: integer or float."
  1213. msgstr ""
  1214. #: FlatCAMObj.py:5264
  1215. msgid "Geometry Scale done."
  1216. msgstr ""
  1217. #: FlatCAMObj.py:5281 camlib.py:3685
  1218. msgid ""
  1219. "An (x,y) pair of values are needed. Probable you entered only one value in "
  1220. "the Offset field."
  1221. msgstr ""
  1222. #: FlatCAMObj.py:5335
  1223. msgid "Geometry Offset done."
  1224. msgstr ""
  1225. #: FlatCAMObj.py:5364
  1226. msgid ""
  1227. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1228. "y)\n"
  1229. "but now there is only one value, not two."
  1230. msgstr ""
  1231. #: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
  1232. msgid "Export Machine Code ..."
  1233. msgstr ""
  1234. #: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
  1235. msgid "Export Machine Code cancelled ..."
  1236. msgstr ""
  1237. #: FlatCAMObj.py:5934
  1238. msgid "Machine Code file saved to"
  1239. msgstr ""
  1240. #: FlatCAMObj.py:5958
  1241. msgid "FlatCAMCNNJob.on_edit_code_click() -->"
  1242. msgstr ""
  1243. #: FlatCAMObj.py:5966
  1244. msgid "Loaded Machine Code into Code Editor"
  1245. msgstr ""
  1246. #: FlatCAMObj.py:6078
  1247. msgid "This CNCJob object can't be processed because it is a"
  1248. msgstr ""
  1249. #: FlatCAMObj.py:6080
  1250. msgid "CNCJob object"
  1251. msgstr ""
  1252. #: FlatCAMObj.py:6132
  1253. msgid "G-code does not have a units code: either G20 or G21"
  1254. msgstr ""
  1255. #: FlatCAMObj.py:6144
  1256. msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
  1257. msgstr ""
  1258. #: FlatCAMObj.py:6150
  1259. msgid "Toolchange G-code was replaced by a custom code."
  1260. msgstr ""
  1261. #: FlatCAMObj.py:6177
  1262. msgid "Saved to"
  1263. msgstr ""
  1264. #: FlatCAMObj.py:6187 FlatCAMObj.py:6197
  1265. msgid ""
  1266. "The used postprocessor file has to have in it's name: 'toolchange_custom'"
  1267. msgstr ""
  1268. #: FlatCAMObj.py:6201
  1269. msgid "There is no postprocessor file."
  1270. msgstr ""
  1271. #: FlatCAMProcess.py:172
  1272. msgid "processes running."
  1273. msgstr ""
  1274. #: FlatCAMTranslation.py:91
  1275. msgid "The application will restart."
  1276. msgstr ""
  1277. #: FlatCAMTranslation.py:92
  1278. #, python-format
  1279. msgid "Are you sure do you want to change the current language to %s?"
  1280. msgstr ""
  1281. #: FlatCAMTranslation.py:94
  1282. msgid "Apply Language ..."
  1283. msgstr ""
  1284. #: ObjectCollection.py:426
  1285. #, python-brace-format
  1286. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1287. msgstr ""
  1288. #: ObjectCollection.py:766
  1289. msgid "Cause of error"
  1290. msgstr ""
  1291. #: camlib.py:215
  1292. msgid "self.solid_geometry is neither BaseGeometry or list."
  1293. msgstr ""
  1294. #: camlib.py:1522
  1295. msgid "Object was mirrored"
  1296. msgstr ""
  1297. #: camlib.py:1525
  1298. msgid "Failed to mirror. No object selected"
  1299. msgstr ""
  1300. #: camlib.py:1594
  1301. msgid "Object was rotated"
  1302. msgstr ""
  1303. #: camlib.py:1597
  1304. msgid "Failed to rotate. No object selected"
  1305. msgstr ""
  1306. #: camlib.py:1665
  1307. msgid "Object was skewed"
  1308. msgstr ""
  1309. #: camlib.py:1668
  1310. msgid "Failed to skew. No object selected"
  1311. msgstr ""
  1312. #: camlib.py:2443
  1313. msgid "Gerber processing. Parsing"
  1314. msgstr ""
  1315. #: camlib.py:2443
  1316. msgid "lines"
  1317. msgstr ""
  1318. #: camlib.py:2942 camlib.py:3030
  1319. msgid "Coordinates missing, line ignored"
  1320. msgstr ""
  1321. #: camlib.py:2944 camlib.py:3032
  1322. msgid "GERBER file might be CORRUPT. Check the file !!!"
  1323. msgstr ""
  1324. #: camlib.py:2994
  1325. msgid ""
  1326. "Region does not have enough points. File will be processed but there are "
  1327. "parser errors. Line number"
  1328. msgstr ""
  1329. #: camlib.py:3364
  1330. msgid "Gerber processing. Joining"
  1331. msgstr ""
  1332. #: camlib.py:3364
  1333. msgid "polygons"
  1334. msgstr ""
  1335. #: camlib.py:3399
  1336. msgid "Gerber Line"
  1337. msgstr ""
  1338. #: camlib.py:3399
  1339. msgid "Gerber Line Content"
  1340. msgstr ""
  1341. #: camlib.py:3401
  1342. msgid "Gerber Parser ERROR"
  1343. msgstr ""
  1344. #: camlib.py:3649
  1345. msgid "Gerber Scale done."
  1346. msgstr ""
  1347. #: camlib.py:3739
  1348. msgid "Gerber Offset done."
  1349. msgstr ""
  1350. #: camlib.py:3816
  1351. msgid "Gerber Mirror done."
  1352. msgstr ""
  1353. #: camlib.py:3885
  1354. msgid "Gerber Skew done."
  1355. msgstr ""
  1356. #: camlib.py:3946
  1357. msgid "Gerber Rotate done."
  1358. msgstr ""
  1359. #: camlib.py:4233
  1360. msgid "This is GCODE mark"
  1361. msgstr ""
  1362. #: camlib.py:4349
  1363. msgid ""
  1364. "No tool diameter info's. See shell.\n"
  1365. "A tool change event: T"
  1366. msgstr ""
  1367. #: camlib.py:4352
  1368. msgid ""
  1369. "was found but the Excellon file have no informations regarding the tool "
  1370. "diameters therefore the application will try to load it by using some 'fake' "
  1371. "diameters.\n"
  1372. "The user needs to edit the resulting Excellon object and change the "
  1373. "diameters to reflect the real diameters."
  1374. msgstr ""
  1375. #: camlib.py:4807
  1376. #, python-brace-format
  1377. msgid ""
  1378. "{e_code} Excellon Parser error.\n"
  1379. "Parsing Failed. Line {l_nr}: {line}\n"
  1380. msgstr ""
  1381. #: camlib.py:4890
  1382. msgid ""
  1383. "Excellon.create_geometry() -> a drill location was skipped due of not having "
  1384. "a tool associated.\n"
  1385. "Check the resulting GCode."
  1386. msgstr ""
  1387. #: camlib.py:5564
  1388. msgid "There is no such parameter"
  1389. msgstr ""
  1390. #: camlib.py:5635
  1391. msgid ""
  1392. "The Cut Z parameter has positive value. It is the depth value to drill into "
  1393. "material.\n"
  1394. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1395. "therefore the app will convert the value to negative. Check the resulting "
  1396. "CNC code (Gcode etc)."
  1397. msgstr ""
  1398. #: camlib.py:5643 camlib.py:6316 camlib.py:6658
  1399. msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
  1400. msgstr ""
  1401. #: camlib.py:5695
  1402. msgid "Creating a list of points to drill..."
  1403. msgstr ""
  1404. #: camlib.py:5778
  1405. msgid "Starting G-Code"
  1406. msgstr ""
  1407. #: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
  1408. msgid "Starting G-Code for tool with diameter"
  1409. msgstr ""
  1410. #: camlib.py:5931 camlib.py:6077 camlib.py:6184
  1411. msgid "G91 coordinates not implemented"
  1412. msgstr ""
  1413. #: camlib.py:5937 camlib.py:6083 camlib.py:6190
  1414. msgid "The loaded Excellon file has no drills"
  1415. msgstr ""
  1416. #: camlib.py:6089
  1417. msgid "Wrong optimization type selected."
  1418. msgstr ""
  1419. #: camlib.py:6212
  1420. msgid "Finished G-Code generation..."
  1421. msgstr ""
  1422. #: camlib.py:6289
  1423. msgid ""
  1424. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1425. "y) \n"
  1426. "but now there is only one value, not two."
  1427. msgstr ""
  1428. #: camlib.py:6302 camlib.py:6644
  1429. msgid ""
  1430. "Cut_Z parameter is None or zero. Most likely a bad combinations of other "
  1431. "parameters."
  1432. msgstr ""
  1433. #: camlib.py:6308 camlib.py:6650
  1434. msgid ""
  1435. "The Cut Z parameter has positive value. It is the depth value to cut into "
  1436. "material.\n"
  1437. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1438. "therefore the app will convert the value to negative.Check the resulting CNC "
  1439. "code (Gcode etc)."
  1440. msgstr ""
  1441. #: camlib.py:6326 camlib.py:6664
  1442. msgid "Travel Z parameter is None or zero."
  1443. msgstr ""
  1444. #: camlib.py:6331 camlib.py:6669
  1445. msgid ""
  1446. "The Travel Z parameter has negative value. It is the height value to travel "
  1447. "between cuts.\n"
  1448. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1449. "therefore the app will convert the value to positive.Check the resulting CNC "
  1450. "code (Gcode etc)."
  1451. msgstr ""
  1452. #: camlib.py:6339 camlib.py:6677
  1453. msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
  1454. msgstr ""
  1455. #: camlib.py:6354 camlib.py:6696
  1456. msgid "Indexing geometry before generating G-Code..."
  1457. msgstr ""
  1458. #: camlib.py:6408 camlib.py:6753
  1459. msgid "Starting G-Code..."
  1460. msgstr ""
  1461. #: camlib.py:6495 camlib.py:6837
  1462. msgid "Finished G-Code generation"
  1463. msgstr ""
  1464. #: camlib.py:6497
  1465. msgid "paths traced"
  1466. msgstr ""
  1467. #: camlib.py:6532
  1468. msgid "Expected a Geometry, got"
  1469. msgstr ""
  1470. #: camlib.py:6539
  1471. msgid ""
  1472. "Trying to generate a CNC Job from a Geometry object without solid_geometry."
  1473. msgstr ""
  1474. #: camlib.py:6578
  1475. #, python-format
  1476. msgid "[ERROR_NOTCL] %s"
  1477. msgstr ""
  1478. #: camlib.py:6839
  1479. msgid " paths traced."
  1480. msgstr ""
  1481. #: camlib.py:6868
  1482. msgid "There is no tool data in the SolderPaste geometry."
  1483. msgstr ""
  1484. #: camlib.py:6955
  1485. msgid "Finished SolderPste G-Code generation"
  1486. msgstr ""
  1487. #: camlib.py:6957
  1488. msgid "paths traced."
  1489. msgstr ""
  1490. #: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
  1491. msgid "G91 coordinates not implemented ..."
  1492. msgstr ""
  1493. #: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
  1494. #: flatcamEditors/FlatCAMExcEditor.py:152
  1495. #: flatcamEditors/FlatCAMExcEditor.py:356
  1496. #: flatcamEditors/FlatCAMExcEditor.py:548
  1497. #: flatcamEditors/FlatCAMGrbEditor.py:238
  1498. #: flatcamEditors/FlatCAMGrbEditor.py:243
  1499. msgid "Click to place ..."
  1500. msgstr ""
  1501. #: flatcamEditors/FlatCAMExcEditor.py:54
  1502. msgid "To add a drill first select a tool"
  1503. msgstr ""
  1504. #: flatcamEditors/FlatCAMExcEditor.py:117
  1505. msgid "Done. Drill added."
  1506. msgstr ""
  1507. #: flatcamEditors/FlatCAMExcEditor.py:160
  1508. msgid "To add an Drill Array first select a tool in Tool Table"
  1509. msgstr ""
  1510. #: flatcamEditors/FlatCAMExcEditor.py:176
  1511. #: flatcamEditors/FlatCAMExcEditor.py:386
  1512. #: flatcamEditors/FlatCAMExcEditor.py:596
  1513. #: flatcamEditors/FlatCAMExcEditor.py:1098
  1514. #: flatcamEditors/FlatCAMExcEditor.py:1123
  1515. #: flatcamEditors/FlatCAMGrbEditor.py:462
  1516. #: flatcamEditors/FlatCAMGrbEditor.py:1859
  1517. #: flatcamEditors/FlatCAMGrbEditor.py:1887
  1518. msgid "Click on target location ..."
  1519. msgstr ""
  1520. #: flatcamEditors/FlatCAMExcEditor.py:193
  1521. msgid "Click on the Drill Circular Array Start position"
  1522. msgstr ""
  1523. #: flatcamEditors/FlatCAMExcEditor.py:215
  1524. #: flatcamEditors/FlatCAMExcEditor.py:635
  1525. #: flatcamEditors/FlatCAMGrbEditor.py:505
  1526. msgid "The value is not Float. Check for comma instead of dot separator."
  1527. msgstr ""
  1528. #: flatcamEditors/FlatCAMExcEditor.py:219
  1529. msgid "The value is mistyped. Check the value"
  1530. msgstr ""
  1531. #: flatcamEditors/FlatCAMExcEditor.py:318
  1532. msgid "Too many drills for the selected spacing angle."
  1533. msgstr ""
  1534. #: flatcamEditors/FlatCAMExcEditor.py:336
  1535. msgid "Done. Drill Array added."
  1536. msgstr ""
  1537. #: flatcamEditors/FlatCAMExcEditor.py:365
  1538. msgid "To add a slot first select a tool"
  1539. msgstr ""
  1540. #: flatcamEditors/FlatCAMExcEditor.py:423
  1541. #: flatcamEditors/FlatCAMExcEditor.py:430
  1542. #: flatcamEditors/FlatCAMExcEditor.py:701
  1543. #: flatcamEditors/FlatCAMExcEditor.py:708
  1544. msgid "Value is missing or wrong format. Add it and retry."
  1545. msgstr ""
  1546. #: flatcamEditors/FlatCAMExcEditor.py:529
  1547. msgid "Done. Adding Slot completed."
  1548. msgstr ""
  1549. #: flatcamEditors/FlatCAMExcEditor.py:556
  1550. msgid "To add an Slot Array first select a tool in Tool Table"
  1551. msgstr ""
  1552. #: flatcamEditors/FlatCAMExcEditor.py:613
  1553. msgid "Click on the Slot Circular Array Start position"
  1554. msgstr ""
  1555. #: flatcamEditors/FlatCAMExcEditor.py:639
  1556. #: flatcamEditors/FlatCAMGrbEditor.py:509
  1557. msgid "The value is mistyped. Check the value."
  1558. msgstr ""
  1559. #: flatcamEditors/FlatCAMExcEditor.py:818
  1560. msgid "Too many Slots for the selected spacing angle."
  1561. msgstr ""
  1562. #: flatcamEditors/FlatCAMExcEditor.py:841
  1563. msgid "Done. Slot Array added."
  1564. msgstr ""
  1565. #: flatcamEditors/FlatCAMExcEditor.py:858
  1566. msgid "Click on the Drill(s) to resize ..."
  1567. msgstr ""
  1568. #: flatcamEditors/FlatCAMExcEditor.py:888
  1569. msgid "Resize drill(s) failed. Please enter a diameter for resize."
  1570. msgstr ""
  1571. #: flatcamEditors/FlatCAMExcEditor.py:978
  1572. #: flatcamEditors/FlatCAMExcEditor.py:1048
  1573. msgid "Cancelled."
  1574. msgstr ""
  1575. #: flatcamEditors/FlatCAMExcEditor.py:1069
  1576. msgid "Drill/Slot Resize completed."
  1577. msgstr ""
  1578. #: flatcamEditors/FlatCAMExcEditor.py:1072
  1579. msgid "Cancelled. No drills/slots selected for resize ..."
  1580. msgstr ""
  1581. #: flatcamEditors/FlatCAMExcEditor.py:1100
  1582. #: flatcamEditors/FlatCAMGrbEditor.py:1861
  1583. msgid "Click on reference location ..."
  1584. msgstr ""
  1585. #: flatcamEditors/FlatCAMExcEditor.py:1156
  1586. msgid "Done. Drill(s) Move completed."
  1587. msgstr ""
  1588. #: flatcamEditors/FlatCAMExcEditor.py:1254
  1589. msgid "Done. Drill(s) copied."
  1590. msgstr ""
  1591. #: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
  1592. msgid "Excellon Editor"
  1593. msgstr ""
  1594. #: flatcamEditors/FlatCAMExcEditor.py:1480
  1595. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  1596. msgid "Name:"
  1597. msgstr ""
  1598. #: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
  1599. #: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
  1600. #: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
  1601. msgid "Tools Table"
  1602. msgstr ""
  1603. #: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
  1604. msgid ""
  1605. "Tools in this Excellon object\n"
  1606. "when are used for drilling."
  1607. msgstr ""
  1608. #: flatcamEditors/FlatCAMExcEditor.py:1508
  1609. msgid "Add/Delete Tool"
  1610. msgstr ""
  1611. #: flatcamEditors/FlatCAMExcEditor.py:1510
  1612. msgid ""
  1613. "Add/Delete a tool to the tool list\n"
  1614. "for this Excellon object."
  1615. msgstr ""
  1616. #: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
  1617. #: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
  1618. msgid "Tool Dia"
  1619. msgstr ""
  1620. #: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
  1621. #: flatcamGUI/ObjectUI.py:1040
  1622. msgid "Diameter for the new tool"
  1623. msgstr ""
  1624. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1625. msgid "Add Tool"
  1626. msgstr ""
  1627. #: flatcamEditors/FlatCAMExcEditor.py:1530
  1628. msgid ""
  1629. "Add a new tool to the tool list\n"
  1630. "with the diameter specified above."
  1631. msgstr ""
  1632. #: flatcamEditors/FlatCAMExcEditor.py:1542
  1633. msgid "Delete Tool"
  1634. msgstr ""
  1635. #: flatcamEditors/FlatCAMExcEditor.py:1544
  1636. msgid ""
  1637. "Delete a tool in the tool list\n"
  1638. "by selecting a row in the tool table."
  1639. msgstr ""
  1640. #: flatcamEditors/FlatCAMExcEditor.py:1562
  1641. msgid "Resize Drill(s)"
  1642. msgstr ""
  1643. #: flatcamEditors/FlatCAMExcEditor.py:1564
  1644. msgid "Resize a drill or a selection of drills."
  1645. msgstr ""
  1646. #: flatcamEditors/FlatCAMExcEditor.py:1571
  1647. msgid "Resize Dia"
  1648. msgstr ""
  1649. #: flatcamEditors/FlatCAMExcEditor.py:1573
  1650. msgid "Diameter to resize to."
  1651. msgstr ""
  1652. #: flatcamEditors/FlatCAMExcEditor.py:1581
  1653. msgid "Resize"
  1654. msgstr ""
  1655. #: flatcamEditors/FlatCAMExcEditor.py:1583
  1656. msgid "Resize drill(s)"
  1657. msgstr ""
  1658. #: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
  1659. msgid "Add Drill Array"
  1660. msgstr ""
  1661. #: flatcamEditors/FlatCAMExcEditor.py:1610
  1662. msgid "Add an array of drills (linear or circular array)"
  1663. msgstr ""
  1664. #: flatcamEditors/FlatCAMExcEditor.py:1616
  1665. msgid ""
  1666. "Select the type of drills array to create.\n"
  1667. "It can be Linear X(Y) or Circular"
  1668. msgstr ""
  1669. #: flatcamEditors/FlatCAMExcEditor.py:1619
  1670. #: flatcamEditors/FlatCAMExcEditor.py:1821
  1671. #: flatcamEditors/FlatCAMGrbEditor.py:2647
  1672. msgid "Linear"
  1673. msgstr ""
  1674. #: flatcamEditors/FlatCAMExcEditor.py:1620
  1675. #: flatcamEditors/FlatCAMExcEditor.py:1822
  1676. #: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
  1677. #: flatcamTools/ToolNonCopperClear.py:203
  1678. msgid "Circular"
  1679. msgstr ""
  1680. #: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
  1681. msgid "Nr of drills"
  1682. msgstr ""
  1683. #: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
  1684. msgid "Specify how many drills to be in the array."
  1685. msgstr ""
  1686. #: flatcamEditors/FlatCAMExcEditor.py:1646
  1687. #: flatcamEditors/FlatCAMExcEditor.py:1693
  1688. #: flatcamEditors/FlatCAMExcEditor.py:1757
  1689. #: flatcamEditors/FlatCAMExcEditor.py:1848
  1690. #: flatcamEditors/FlatCAMExcEditor.py:1895
  1691. #: flatcamEditors/FlatCAMGrbEditor.py:2674
  1692. #: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
  1693. msgid "Direction"
  1694. msgstr ""
  1695. #: flatcamEditors/FlatCAMExcEditor.py:1648
  1696. #: flatcamEditors/FlatCAMExcEditor.py:1850
  1697. #: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
  1698. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
  1699. msgid ""
  1700. "Direction on which the linear array is oriented:\n"
  1701. "- 'X' - horizontal axis \n"
  1702. "- 'Y' - vertical axis or \n"
  1703. "- 'Angle' - a custom angle for the array inclination"
  1704. msgstr ""
  1705. #: flatcamEditors/FlatCAMExcEditor.py:1655
  1706. #: flatcamEditors/FlatCAMExcEditor.py:1766
  1707. #: flatcamEditors/FlatCAMExcEditor.py:1857
  1708. #: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
  1709. #: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
  1710. #: flatcamGUI/FlatCAMGUI.py:5703
  1711. msgid "X"
  1712. msgstr ""
  1713. #: flatcamEditors/FlatCAMExcEditor.py:1656
  1714. #: flatcamEditors/FlatCAMExcEditor.py:1767
  1715. #: flatcamEditors/FlatCAMExcEditor.py:1858
  1716. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
  1717. #: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
  1718. #: flatcamGUI/FlatCAMGUI.py:5704
  1719. msgid "Y"
  1720. msgstr ""
  1721. #: flatcamEditors/FlatCAMExcEditor.py:1657
  1722. #: flatcamEditors/FlatCAMExcEditor.py:1671
  1723. #: flatcamEditors/FlatCAMExcEditor.py:1705
  1724. #: flatcamEditors/FlatCAMExcEditor.py:1768
  1725. #: flatcamEditors/FlatCAMExcEditor.py:1772
  1726. #: flatcamEditors/FlatCAMExcEditor.py:1859
  1727. #: flatcamEditors/FlatCAMExcEditor.py:1873
  1728. #: flatcamEditors/FlatCAMExcEditor.py:1907
  1729. #: flatcamEditors/FlatCAMGrbEditor.py:2685
  1730. #: flatcamEditors/FlatCAMGrbEditor.py:2698
  1731. #: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
  1732. #: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
  1733. #: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
  1734. #: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
  1735. #: flatcamGUI/FlatCAMGUI.py:5722 flatcamTools/ToolTransform.py:68
  1736. msgid "Angle"
  1737. msgstr ""
  1738. #: flatcamEditors/FlatCAMExcEditor.py:1661
  1739. #: flatcamEditors/FlatCAMExcEditor.py:1863
  1740. #: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
  1741. #: flatcamGUI/FlatCAMGUI.py:5711
  1742. msgid "Pitch"
  1743. msgstr ""
  1744. #: flatcamEditors/FlatCAMExcEditor.py:1663
  1745. #: flatcamEditors/FlatCAMExcEditor.py:1865
  1746. #: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
  1747. #: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
  1748. msgid "Pitch = Distance between elements of the array."
  1749. msgstr ""
  1750. #: flatcamEditors/FlatCAMExcEditor.py:1673
  1751. #: flatcamEditors/FlatCAMExcEditor.py:1875
  1752. #: flatcamEditors/FlatCAMGrbEditor.py:2700
  1753. msgid ""
  1754. "Angle at which the linear array is placed.\n"
  1755. "The precision is of max 2 decimals.\n"
  1756. "Min value is: -359.99 degrees.\n"
  1757. "Max value is: 360.00 degrees."
  1758. msgstr ""
  1759. #: flatcamEditors/FlatCAMExcEditor.py:1694
  1760. #: flatcamEditors/FlatCAMExcEditor.py:1896
  1761. #: flatcamEditors/FlatCAMGrbEditor.py:2721
  1762. msgid ""
  1763. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1764. "clockwise."
  1765. msgstr ""
  1766. #: flatcamEditors/FlatCAMExcEditor.py:1701
  1767. #: flatcamEditors/FlatCAMExcEditor.py:1903
  1768. #: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
  1769. #: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
  1770. #: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
  1771. msgid "CW"
  1772. msgstr ""
  1773. #: flatcamEditors/FlatCAMExcEditor.py:1702
  1774. #: flatcamEditors/FlatCAMExcEditor.py:1904
  1775. #: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
  1776. #: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
  1777. #: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
  1778. msgid "CCW"
  1779. msgstr ""
  1780. #: flatcamEditors/FlatCAMExcEditor.py:1706
  1781. #: flatcamEditors/FlatCAMExcEditor.py:1908
  1782. #: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
  1783. #: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
  1784. #: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
  1785. #: flatcamGUI/FlatCAMGUI.py:5750
  1786. msgid "Angle at which each element in circular array is placed."
  1787. msgstr ""
  1788. #: flatcamEditors/FlatCAMExcEditor.py:1736
  1789. msgid "Slot Parameters"
  1790. msgstr ""
  1791. #: flatcamEditors/FlatCAMExcEditor.py:1738
  1792. msgid ""
  1793. "Parameters for adding a slot (hole with oval shape)\n"
  1794. "either single or as an part of an array."
  1795. msgstr ""
  1796. #: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
  1797. #: flatcamTools/ToolProperties.py:350
  1798. msgid "Length"
  1799. msgstr ""
  1800. #: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
  1801. msgid "Length = The length of the slot."
  1802. msgstr ""
  1803. #: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
  1804. msgid ""
  1805. "Direction on which the slot is oriented:\n"
  1806. "- 'X' - horizontal axis \n"
  1807. "- 'Y' - vertical axis or \n"
  1808. "- 'Angle' - a custom angle for the slot inclination"
  1809. msgstr ""
  1810. #: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
  1811. msgid ""
  1812. "Angle at which the slot is placed.\n"
  1813. "The precision is of max 2 decimals.\n"
  1814. "Min value is: -359.99 degrees.\n"
  1815. "Max value is: 360.00 degrees."
  1816. msgstr ""
  1817. #: flatcamEditors/FlatCAMExcEditor.py:1807
  1818. msgid "Slot Array Parameters"
  1819. msgstr ""
  1820. #: flatcamEditors/FlatCAMExcEditor.py:1809
  1821. msgid "Parameters for the array of slots (linear or circular array)"
  1822. msgstr ""
  1823. #: flatcamEditors/FlatCAMExcEditor.py:1818
  1824. msgid ""
  1825. "Select the type of slot array to create.\n"
  1826. "It can be Linear X(Y) or Circular"
  1827. msgstr ""
  1828. #: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
  1829. msgid "Nr of slots"
  1830. msgstr ""
  1831. #: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
  1832. msgid "Specify how many slots to be in the array."
  1833. msgstr ""
  1834. #: flatcamEditors/FlatCAMExcEditor.py:2428
  1835. msgid ""
  1836. "Tool already in the original or actual tool list.\n"
  1837. "Save and reedit Excellon if you need to add this tool. "
  1838. msgstr ""
  1839. #: flatcamEditors/FlatCAMExcEditor.py:2437
  1840. msgid "Added new tool with dia"
  1841. msgstr ""
  1842. #: flatcamEditors/FlatCAMExcEditor.py:2469
  1843. msgid "Select a tool in Tool Table"
  1844. msgstr ""
  1845. #: flatcamEditors/FlatCAMExcEditor.py:2502
  1846. msgid "Deleted tool with diameter"
  1847. msgstr ""
  1848. #: flatcamEditors/FlatCAMExcEditor.py:2652
  1849. msgid "Done. Tool edit completed."
  1850. msgstr ""
  1851. #: flatcamEditors/FlatCAMExcEditor.py:3187
  1852. msgid "There are no Tools definitions in the file. Aborting Excellon creation."
  1853. msgstr ""
  1854. #: flatcamEditors/FlatCAMExcEditor.py:3191
  1855. msgid "An internal error has ocurred. See Shell.\n"
  1856. msgstr ""
  1857. #: flatcamEditors/FlatCAMExcEditor.py:3197
  1858. msgid "Creating Excellon."
  1859. msgstr ""
  1860. #: flatcamEditors/FlatCAMExcEditor.py:3207
  1861. msgid "Excellon editing finished."
  1862. msgstr ""
  1863. #: flatcamEditors/FlatCAMExcEditor.py:3225
  1864. msgid "Cancelled. There is no Tool/Drill selected"
  1865. msgstr ""
  1866. #: flatcamEditors/FlatCAMExcEditor.py:3810
  1867. msgid "Done. Drill(s) deleted."
  1868. msgstr ""
  1869. #: flatcamEditors/FlatCAMExcEditor.py:3882
  1870. #: flatcamEditors/FlatCAMExcEditor.py:3892
  1871. #: flatcamEditors/FlatCAMGrbEditor.py:4576
  1872. msgid "Click on the circular array Center position"
  1873. msgstr ""
  1874. #: flatcamEditors/FlatCAMGeoEditor.py:82
  1875. msgid "Buffer distance:"
  1876. msgstr ""
  1877. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1878. msgid "Buffer corner:"
  1879. msgstr ""
  1880. #: flatcamEditors/FlatCAMGeoEditor.py:85
  1881. msgid ""
  1882. "There are 3 types of corners:\n"
  1883. " - 'Round': the corner is rounded for exterior buffer.\n"
  1884. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1885. " - 'Beveled:' the corner is a line that directly connects the features "
  1886. "meeting in the corner"
  1887. msgstr ""
  1888. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1889. #: flatcamEditors/FlatCAMGrbEditor.py:2522
  1890. msgid "Round"
  1891. msgstr ""
  1892. #: flatcamEditors/FlatCAMGeoEditor.py:92
  1893. #: flatcamEditors/FlatCAMGrbEditor.py:2523
  1894. msgid "Square"
  1895. msgstr ""
  1896. #: flatcamEditors/FlatCAMGeoEditor.py:93
  1897. #: flatcamEditors/FlatCAMGrbEditor.py:2524
  1898. msgid "Beveled"
  1899. msgstr ""
  1900. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1901. msgid "Buffer Interior"
  1902. msgstr ""
  1903. #: flatcamEditors/FlatCAMGeoEditor.py:102
  1904. msgid "Buffer Exterior"
  1905. msgstr ""
  1906. #: flatcamEditors/FlatCAMGeoEditor.py:108
  1907. msgid "Full Buffer"
  1908. msgstr ""
  1909. #: flatcamEditors/FlatCAMGeoEditor.py:129
  1910. #: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
  1911. msgid "Buffer Tool"
  1912. msgstr ""
  1913. #: flatcamEditors/FlatCAMGeoEditor.py:141
  1914. #: flatcamEditors/FlatCAMGeoEditor.py:158
  1915. #: flatcamEditors/FlatCAMGeoEditor.py:175
  1916. #: flatcamEditors/FlatCAMGeoEditor.py:2740
  1917. #: flatcamEditors/FlatCAMGeoEditor.py:2770
  1918. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  1919. #: flatcamEditors/FlatCAMGrbEditor.py:4629
  1920. msgid "Buffer distance value is missing or wrong format. Add it and retry."
  1921. msgstr ""
  1922. #: flatcamEditors/FlatCAMGeoEditor.py:345
  1923. msgid "Text Tool"
  1924. msgstr ""
  1925. #: flatcamEditors/FlatCAMGeoEditor.py:403 flatcamGUI/FlatCAMGUI.py:826
  1926. msgid "Tool"
  1927. msgstr ""
  1928. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:4356
  1929. #: flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:6699
  1930. #: flatcamGUI/FlatCAMGUI.py:6859 flatcamGUI/ObjectUI.py:264
  1931. #: flatcamTools/ToolCutOut.py:91
  1932. msgid "Tool dia"
  1933. msgstr ""
  1934. #: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6861
  1935. msgid ""
  1936. "Diameter of the tool to\n"
  1937. "be used in the operation."
  1938. msgstr ""
  1939. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamGUI/FlatCAMGUI.py:6545
  1940. #: flatcamGUI/FlatCAMGUI.py:6890 flatcamTools/ToolNonCopperClear.py:283
  1941. #: flatcamTools/ToolPaint.py:205
  1942. msgid "Overlap Rate"
  1943. msgstr ""
  1944. #: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6892
  1945. #: flatcamTools/ToolPaint.py:207
  1946. #, python-format
  1947. msgid ""
  1948. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1949. "Example:\n"
  1950. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1951. "\n"
  1952. "Adjust the value starting with lower values\n"
  1953. "and increasing it if areas that should be painted are still \n"
  1954. "not painted.\n"
  1955. "Lower values = faster processing, faster execution on PCB.\n"
  1956. "Higher values = slow processing and slow execution on CNC\n"
  1957. "due of too many paths."
  1958. msgstr ""
  1959. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6562
  1960. #: flatcamGUI/FlatCAMGUI.py:6723 flatcamGUI/FlatCAMGUI.py:6907
  1961. #: flatcamTools/ToolNonCopperClear.py:299 flatcamTools/ToolPaint.py:222
  1962. msgid "Margin"
  1963. msgstr ""
  1964. #: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6909
  1965. #: flatcamTools/ToolPaint.py:224
  1966. msgid ""
  1967. "Distance by which to avoid\n"
  1968. "the edges of the polygon to\n"
  1969. "be painted."
  1970. msgstr ""
  1971. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6571
  1972. #: flatcamGUI/FlatCAMGUI.py:6918 flatcamTools/ToolNonCopperClear.py:308
  1973. #: flatcamTools/ToolPaint.py:233
  1974. msgid "Method"
  1975. msgstr ""
  1976. #: flatcamEditors/FlatCAMGeoEditor.py:476
  1977. msgid ""
  1978. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1979. "<BR><B>Seed-based</B>: Outwards from seed."
  1980. msgstr ""
  1981. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6580
  1982. #: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolNonCopperClear.py:317
  1983. #: flatcamTools/ToolPaint.py:242
  1984. msgid "Standard"
  1985. msgstr ""
  1986. #: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6581
  1987. #: flatcamGUI/FlatCAMGUI.py:6928 flatcamTools/ToolNonCopperClear.py:318
  1988. #: flatcamTools/ToolPaint.py:243
  1989. msgid "Seed-based"
  1990. msgstr ""
  1991. #: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6582
  1992. #: flatcamGUI/FlatCAMGUI.py:6929 flatcamTools/ToolNonCopperClear.py:319
  1993. #: flatcamTools/ToolPaint.py:244
  1994. msgid "Straight lines"
  1995. msgstr ""
  1996. #: flatcamEditors/FlatCAMGeoEditor.py:489
  1997. msgid "Connect:"
  1998. msgstr ""
  1999. #: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6589
  2000. #: flatcamGUI/FlatCAMGUI.py:6936 flatcamTools/ToolNonCopperClear.py:326
  2001. #: flatcamTools/ToolPaint.py:251
  2002. msgid ""
  2003. "Draw lines between resulting\n"
  2004. "segments to minimize tool lifts."
  2005. msgstr ""
  2006. #: flatcamEditors/FlatCAMGeoEditor.py:498
  2007. msgid "Contour:"
  2008. msgstr ""
  2009. #: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6599
  2010. #: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolNonCopperClear.py:335
  2011. #: flatcamTools/ToolPaint.py:260
  2012. msgid ""
  2013. "Cut around the perimeter of the polygon\n"
  2014. "to trim rough edges."
  2015. msgstr ""
  2016. #: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1673
  2017. msgid "Paint"
  2018. msgstr ""
  2019. #: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
  2020. #: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
  2021. #: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
  2022. msgid "Paint Tool"
  2023. msgstr ""
  2024. #: flatcamEditors/FlatCAMGeoEditor.py:566
  2025. msgid "Paint cancelled. No shape selected."
  2026. msgstr ""
  2027. #: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
  2028. #: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
  2029. #: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
  2030. msgid "Tool diameter value is missing or wrong format. Add it and retry."
  2031. msgstr ""
  2032. #: flatcamEditors/FlatCAMGeoEditor.py:589
  2033. msgid "Overlap value is missing or wrong format. Add it and retry."
  2034. msgstr ""
  2035. #: flatcamEditors/FlatCAMGeoEditor.py:601
  2036. msgid "Margin distance value is missing or wrong format. Add it and retry."
  2037. msgstr ""
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:609
  2039. #: flatcamEditors/FlatCAMGeoEditor.py:2746
  2040. #: flatcamEditors/FlatCAMGeoEditor.py:2776
  2041. #: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
  2042. #: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
  2043. msgid "Tools"
  2044. msgstr ""
  2045. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2046. #: flatcamEditors/FlatCAMGeoEditor.py:993
  2047. #: flatcamEditors/FlatCAMGrbEditor.py:4812
  2048. #: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
  2049. #: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
  2050. msgid "Transform Tool"
  2051. msgstr ""
  2052. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2053. #: flatcamEditors/FlatCAMGeoEditor.py:682
  2054. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2055. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
  2056. #: flatcamTools/ToolTransform.py:82
  2057. msgid "Rotate"
  2058. msgstr ""
  2059. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2060. #: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
  2061. msgid "Skew/Shear"
  2062. msgstr ""
  2063. #: flatcamEditors/FlatCAMGeoEditor.py:623
  2064. #: flatcamEditors/FlatCAMGrbEditor.py:2569
  2065. #: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
  2066. #: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
  2067. #: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
  2068. #: flatcamTools/ToolTransform.py:26
  2069. msgid "Scale"
  2070. msgstr ""
  2071. #: flatcamEditors/FlatCAMGeoEditor.py:624
  2072. #: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
  2073. msgid "Mirror (Flip)"
  2074. msgstr ""
  2075. #: flatcamEditors/FlatCAMGeoEditor.py:625
  2076. #: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
  2077. #: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
  2078. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  2079. #: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
  2080. msgid "Offset"
  2081. msgstr ""
  2082. #: flatcamEditors/FlatCAMGeoEditor.py:636
  2083. #: flatcamEditors/FlatCAMGrbEditor.py:4829
  2084. #, python-format
  2085. msgid "Editor %s"
  2086. msgstr ""
  2087. #: flatcamEditors/FlatCAMGeoEditor.py:668
  2088. #: flatcamEditors/FlatCAMGrbEditor.py:4861
  2089. msgid "Angle:"
  2090. msgstr ""
  2091. #: flatcamEditors/FlatCAMGeoEditor.py:670
  2092. #: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
  2093. #: flatcamTools/ToolTransform.py:70
  2094. msgid ""
  2095. "Angle for Rotation action, in degrees.\n"
  2096. "Float number between -360 and 359.\n"
  2097. "Positive numbers for CW motion.\n"
  2098. "Negative numbers for CCW motion."
  2099. msgstr ""
  2100. #: flatcamEditors/FlatCAMGeoEditor.py:684
  2101. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2102. msgid ""
  2103. "Rotate the selected shape(s).\n"
  2104. "The point of reference is the middle of\n"
  2105. "the bounding box for all selected shapes."
  2106. msgstr ""
  2107. #: flatcamEditors/FlatCAMGeoEditor.py:707
  2108. #: flatcamEditors/FlatCAMGrbEditor.py:4900
  2109. msgid "Angle X:"
  2110. msgstr ""
  2111. #: flatcamEditors/FlatCAMGeoEditor.py:709
  2112. #: flatcamEditors/FlatCAMGeoEditor.py:727
  2113. #: flatcamEditors/FlatCAMGrbEditor.py:4902
  2114. #: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
  2115. #: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
  2116. #: flatcamTools/ToolTransform.py:127
  2117. msgid ""
  2118. "Angle for Skew action, in degrees.\n"
  2119. "Float number between -360 and 359."
  2120. msgstr ""
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:718
  2122. #: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
  2123. msgid "Skew X"
  2124. msgstr ""
  2125. #: flatcamEditors/FlatCAMGeoEditor.py:720
  2126. #: flatcamEditors/FlatCAMGeoEditor.py:738
  2127. #: flatcamEditors/FlatCAMGrbEditor.py:4913
  2128. #: flatcamEditors/FlatCAMGrbEditor.py:4931
  2129. msgid ""
  2130. "Skew/shear the selected shape(s).\n"
  2131. "The point of reference is the middle of\n"
  2132. "the bounding box for all selected shapes."
  2133. msgstr ""
  2134. #: flatcamEditors/FlatCAMGeoEditor.py:725
  2135. #: flatcamEditors/FlatCAMGrbEditor.py:4918
  2136. msgid "Angle Y:"
  2137. msgstr ""
  2138. #: flatcamEditors/FlatCAMGeoEditor.py:736
  2139. #: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
  2140. msgid "Skew Y"
  2141. msgstr ""
  2142. #: flatcamEditors/FlatCAMGeoEditor.py:764
  2143. #: flatcamEditors/FlatCAMGrbEditor.py:4957
  2144. msgid "Factor X:"
  2145. msgstr ""
  2146. #: flatcamEditors/FlatCAMGeoEditor.py:766
  2147. #: flatcamEditors/FlatCAMGrbEditor.py:4959
  2148. msgid "Factor for Scale action over X axis."
  2149. msgstr ""
  2150. #: flatcamEditors/FlatCAMGeoEditor.py:774
  2151. #: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
  2152. msgid "Scale X"
  2153. msgstr ""
  2154. #: flatcamEditors/FlatCAMGeoEditor.py:776
  2155. #: flatcamEditors/FlatCAMGeoEditor.py:793
  2156. #: flatcamEditors/FlatCAMGrbEditor.py:4969
  2157. #: flatcamEditors/FlatCAMGrbEditor.py:4986
  2158. msgid ""
  2159. "Scale the selected shape(s).\n"
  2160. "The point of reference depends on \n"
  2161. "the Scale reference checkbox state."
  2162. msgstr ""
  2163. #: flatcamEditors/FlatCAMGeoEditor.py:781
  2164. #: flatcamEditors/FlatCAMGrbEditor.py:4974
  2165. msgid "Factor Y:"
  2166. msgstr ""
  2167. #: flatcamEditors/FlatCAMGeoEditor.py:783
  2168. #: flatcamEditors/FlatCAMGrbEditor.py:4976
  2169. msgid "Factor for Scale action over Y axis."
  2170. msgstr ""
  2171. #: flatcamEditors/FlatCAMGeoEditor.py:791
  2172. #: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
  2173. msgid "Scale Y"
  2174. msgstr ""
  2175. #: flatcamEditors/FlatCAMGeoEditor.py:800
  2176. #: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
  2177. #: flatcamTools/ToolTransform.py:200
  2178. msgid "Link"
  2179. msgstr ""
  2180. #: flatcamEditors/FlatCAMGeoEditor.py:802
  2181. #: flatcamEditors/FlatCAMGrbEditor.py:4995
  2182. msgid ""
  2183. "Scale the selected shape(s)\n"
  2184. "using the Scale Factor X for both axis."
  2185. msgstr ""
  2186. #: flatcamEditors/FlatCAMGeoEditor.py:808
  2187. #: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
  2188. #: flatcamTools/ToolTransform.py:209
  2189. msgid "Scale Reference"
  2190. msgstr ""
  2191. #: flatcamEditors/FlatCAMGeoEditor.py:810
  2192. #: flatcamEditors/FlatCAMGrbEditor.py:5003
  2193. msgid ""
  2194. "Scale the selected shape(s)\n"
  2195. "using the origin reference when checked,\n"
  2196. "and the center of the biggest bounding box\n"
  2197. "of the selected shapes when unchecked."
  2198. msgstr ""
  2199. #: flatcamEditors/FlatCAMGeoEditor.py:838
  2200. #: flatcamEditors/FlatCAMGrbEditor.py:5032
  2201. msgid "Value X:"
  2202. msgstr ""
  2203. #: flatcamEditors/FlatCAMGeoEditor.py:840
  2204. #: flatcamEditors/FlatCAMGrbEditor.py:5034
  2205. msgid "Value for Offset action on X axis."
  2206. msgstr ""
  2207. #: flatcamEditors/FlatCAMGeoEditor.py:848
  2208. #: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
  2209. msgid "Offset X"
  2210. msgstr ""
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:850
  2212. #: flatcamEditors/FlatCAMGeoEditor.py:868
  2213. #: flatcamEditors/FlatCAMGrbEditor.py:5044
  2214. #: flatcamEditors/FlatCAMGrbEditor.py:5062
  2215. msgid ""
  2216. "Offset the selected shape(s).\n"
  2217. "The point of reference is the middle of\n"
  2218. "the bounding box for all selected shapes.\n"
  2219. msgstr ""
  2220. #: flatcamEditors/FlatCAMGeoEditor.py:856
  2221. #: flatcamEditors/FlatCAMGrbEditor.py:5050
  2222. msgid "Value Y:"
  2223. msgstr ""
  2224. #: flatcamEditors/FlatCAMGeoEditor.py:858
  2225. #: flatcamEditors/FlatCAMGrbEditor.py:5052
  2226. msgid "Value for Offset action on Y axis."
  2227. msgstr ""
  2228. #: flatcamEditors/FlatCAMGeoEditor.py:866
  2229. #: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
  2230. msgid "Offset Y"
  2231. msgstr ""
  2232. #: flatcamEditors/FlatCAMGeoEditor.py:897
  2233. #: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
  2234. msgid "Flip on X"
  2235. msgstr ""
  2236. #: flatcamEditors/FlatCAMGeoEditor.py:899
  2237. #: flatcamEditors/FlatCAMGeoEditor.py:907
  2238. #: flatcamEditors/FlatCAMGrbEditor.py:5093
  2239. #: flatcamEditors/FlatCAMGrbEditor.py:5101
  2240. msgid ""
  2241. "Flip the selected shape(s) over the X axis.\n"
  2242. "Does not create a new shape."
  2243. msgstr ""
  2244. #: flatcamEditors/FlatCAMGeoEditor.py:905
  2245. #: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
  2246. msgid "Flip on Y"
  2247. msgstr ""
  2248. #: flatcamEditors/FlatCAMGeoEditor.py:914
  2249. #: flatcamEditors/FlatCAMGrbEditor.py:5108
  2250. msgid "Ref Pt"
  2251. msgstr ""
  2252. #: flatcamEditors/FlatCAMGeoEditor.py:916
  2253. #: flatcamEditors/FlatCAMGrbEditor.py:5110
  2254. msgid ""
  2255. "Flip the selected shape(s)\n"
  2256. "around the point in Point Entry Field.\n"
  2257. "\n"
  2258. "The point coordinates can be captured by\n"
  2259. "left click on canvas together with pressing\n"
  2260. "SHIFT key. \n"
  2261. "Then click Add button to insert coordinates.\n"
  2262. "Or enter the coords in format (x, y) in the\n"
  2263. "Point Entry field and click Flip on X(Y)"
  2264. msgstr ""
  2265. #: flatcamEditors/FlatCAMGeoEditor.py:928
  2266. #: flatcamEditors/FlatCAMGrbEditor.py:5122
  2267. msgid "Point:"
  2268. msgstr ""
  2269. #: flatcamEditors/FlatCAMGeoEditor.py:930
  2270. #: flatcamEditors/FlatCAMGrbEditor.py:5124
  2271. msgid ""
  2272. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2273. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2274. "the 'y' in (x, y) will be used when using Flip on Y."
  2275. msgstr ""
  2276. #: flatcamEditors/FlatCAMGeoEditor.py:942
  2277. #: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
  2278. msgid ""
  2279. "The point coordinates can be captured by\n"
  2280. "left click on canvas together with pressing\n"
  2281. "SHIFT key. Then click Add button to insert."
  2282. msgstr ""
  2283. #: flatcamEditors/FlatCAMGeoEditor.py:1058
  2284. #: flatcamEditors/FlatCAMGrbEditor.py:5262
  2285. msgid "Transformation cancelled. No shape selected."
  2286. msgstr ""
  2287. #: flatcamEditors/FlatCAMGeoEditor.py:1267
  2288. #: flatcamEditors/FlatCAMGrbEditor.py:5508
  2289. msgid "No shape selected. Please Select a shape to rotate!"
  2290. msgstr ""
  2291. #: flatcamEditors/FlatCAMGeoEditor.py:1270
  2292. #: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
  2293. msgid "Appying Rotate"
  2294. msgstr ""
  2295. #: flatcamEditors/FlatCAMGeoEditor.py:1299
  2296. #: flatcamEditors/FlatCAMGrbEditor.py:5545
  2297. msgid "Done. Rotate completed."
  2298. msgstr ""
  2299. #: flatcamEditors/FlatCAMGeoEditor.py:1305
  2300. msgid "Rotation action was not executed"
  2301. msgstr ""
  2302. #: flatcamEditors/FlatCAMGeoEditor.py:1317
  2303. #: flatcamEditors/FlatCAMGrbEditor.py:5566
  2304. msgid "No shape selected. Please Select a shape to flip!"
  2305. msgstr ""
  2306. #: flatcamEditors/FlatCAMGeoEditor.py:1320
  2307. #: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
  2308. msgid "Applying Flip"
  2309. msgstr ""
  2310. #: flatcamEditors/FlatCAMGeoEditor.py:1351
  2311. #: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
  2312. msgid "Flip on the Y axis done"
  2313. msgstr ""
  2314. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  2315. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
  2316. msgid "Flip on the X axis done"
  2317. msgstr ""
  2318. #: flatcamEditors/FlatCAMGeoEditor.py:1366
  2319. msgid "Flip action was not executed"
  2320. msgstr ""
  2321. #: flatcamEditors/FlatCAMGeoEditor.py:1376
  2322. #: flatcamEditors/FlatCAMGrbEditor.py:5640
  2323. msgid "No shape selected. Please Select a shape to shear/skew!"
  2324. msgstr ""
  2325. #: flatcamEditors/FlatCAMGeoEditor.py:1379
  2326. #: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
  2327. msgid "Applying Skew"
  2328. msgstr ""
  2329. #: flatcamEditors/FlatCAMGeoEditor.py:1405
  2330. #: flatcamEditors/FlatCAMGrbEditor.py:5680
  2331. msgid "Skew on the X axis done"
  2332. msgstr ""
  2333. #: flatcamEditors/FlatCAMGeoEditor.py:1408
  2334. #: flatcamEditors/FlatCAMGrbEditor.py:5683
  2335. msgid "Skew on the Y axis done"
  2336. msgstr ""
  2337. #: flatcamEditors/FlatCAMGeoEditor.py:1413
  2338. msgid "Skew action was not executed"
  2339. msgstr ""
  2340. #: flatcamEditors/FlatCAMGeoEditor.py:1425
  2341. #: flatcamEditors/FlatCAMGrbEditor.py:5708
  2342. msgid "No shape selected. Please Select a shape to scale!"
  2343. msgstr ""
  2344. #: flatcamEditors/FlatCAMGeoEditor.py:1428
  2345. #: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
  2346. msgid "Applying Scale"
  2347. msgstr ""
  2348. #: flatcamEditors/FlatCAMGeoEditor.py:1463
  2349. #: flatcamEditors/FlatCAMGrbEditor.py:5751
  2350. msgid "Scale on the X axis done"
  2351. msgstr ""
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:1466
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:5754
  2354. msgid "Scale on the Y axis done"
  2355. msgstr ""
  2356. #: flatcamEditors/FlatCAMGeoEditor.py:1470
  2357. msgid "Scale action was not executed"
  2358. msgstr ""
  2359. #: flatcamEditors/FlatCAMGeoEditor.py:1480
  2360. #: flatcamEditors/FlatCAMGrbEditor.py:5772
  2361. msgid "No shape selected. Please Select a shape to offset!"
  2362. msgstr ""
  2363. #: flatcamEditors/FlatCAMGeoEditor.py:1483
  2364. #: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
  2365. msgid "Applying Offset"
  2366. msgstr ""
  2367. #: flatcamEditors/FlatCAMGeoEditor.py:1496
  2368. #: flatcamEditors/FlatCAMGrbEditor.py:5799
  2369. msgid "Offset on the X axis done"
  2370. msgstr ""
  2371. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2372. #: flatcamEditors/FlatCAMGrbEditor.py:5802
  2373. msgid "Offset on the Y axis done"
  2374. msgstr ""
  2375. #: flatcamEditors/FlatCAMGeoEditor.py:1504
  2376. msgid "Offset action was not executed"
  2377. msgstr ""
  2378. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2379. #: flatcamEditors/FlatCAMGrbEditor.py:5811
  2380. msgid "Rotate ..."
  2381. msgstr ""
  2382. #: flatcamEditors/FlatCAMGeoEditor.py:1509
  2383. #: flatcamEditors/FlatCAMGeoEditor.py:1564
  2384. #: flatcamEditors/FlatCAMGeoEditor.py:1581
  2385. #: flatcamEditors/FlatCAMGrbEditor.py:5812
  2386. #: flatcamEditors/FlatCAMGrbEditor.py:5867
  2387. #: flatcamEditors/FlatCAMGrbEditor.py:5884
  2388. msgid "Enter an Angle Value (degrees)"
  2389. msgstr ""
  2390. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2391. #: flatcamEditors/FlatCAMGrbEditor.py:5821
  2392. msgid "Geometry shape rotate done"
  2393. msgstr ""
  2394. #: flatcamEditors/FlatCAMGeoEditor.py:1522
  2395. #: flatcamEditors/FlatCAMGrbEditor.py:5825
  2396. msgid "Geometry shape rotate cancelled"
  2397. msgstr ""
  2398. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2399. #: flatcamEditors/FlatCAMGrbEditor.py:5830
  2400. msgid "Offset on X axis ..."
  2401. msgstr ""
  2402. #: flatcamEditors/FlatCAMGeoEditor.py:1528
  2403. #: flatcamEditors/FlatCAMGeoEditor.py:1547
  2404. #: flatcamEditors/FlatCAMGrbEditor.py:5831
  2405. #: flatcamEditors/FlatCAMGrbEditor.py:5850
  2406. msgid "Enter a distance Value"
  2407. msgstr ""
  2408. #: flatcamEditors/FlatCAMGeoEditor.py:1537
  2409. #: flatcamEditors/FlatCAMGrbEditor.py:5840
  2410. msgid "Geometry shape offset on X axis done"
  2411. msgstr ""
  2412. #: flatcamEditors/FlatCAMGeoEditor.py:1541
  2413. #: flatcamEditors/FlatCAMGrbEditor.py:5844
  2414. msgid "Geometry shape offset X cancelled"
  2415. msgstr ""
  2416. #: flatcamEditors/FlatCAMGeoEditor.py:1546
  2417. #: flatcamEditors/FlatCAMGrbEditor.py:5849
  2418. msgid "Offset on Y axis ..."
  2419. msgstr ""
  2420. #: flatcamEditors/FlatCAMGeoEditor.py:1556
  2421. #: flatcamEditors/FlatCAMGrbEditor.py:5859
  2422. msgid "Geometry shape offset on Y axis done"
  2423. msgstr ""
  2424. #: flatcamEditors/FlatCAMGeoEditor.py:1560
  2425. msgid "Geometry shape offset on Y axis canceled"
  2426. msgstr ""
  2427. #: flatcamEditors/FlatCAMGeoEditor.py:1563
  2428. #: flatcamEditors/FlatCAMGrbEditor.py:5866
  2429. msgid "Skew on X axis ..."
  2430. msgstr ""
  2431. #: flatcamEditors/FlatCAMGeoEditor.py:1573
  2432. #: flatcamEditors/FlatCAMGrbEditor.py:5876
  2433. msgid "Geometry shape skew on X axis done"
  2434. msgstr ""
  2435. #: flatcamEditors/FlatCAMGeoEditor.py:1577
  2436. msgid "Geometry shape skew on X axis canceled"
  2437. msgstr ""
  2438. #: flatcamEditors/FlatCAMGeoEditor.py:1580
  2439. #: flatcamEditors/FlatCAMGrbEditor.py:5883
  2440. msgid "Skew on Y axis ..."
  2441. msgstr ""
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:1590
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5893
  2444. msgid "Geometry shape skew on Y axis done"
  2445. msgstr ""
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:1594
  2447. msgid "Geometry shape skew on Y axis canceled"
  2448. msgstr ""
  2449. #: flatcamEditors/FlatCAMGeoEditor.py:1958
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:2010
  2451. #: flatcamEditors/FlatCAMGrbEditor.py:1396
  2452. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2453. msgid "Click on Center point ..."
  2454. msgstr ""
  2455. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2456. #: flatcamEditors/FlatCAMGrbEditor.py:1404
  2457. msgid "Click on Perimeter point to complete ..."
  2458. msgstr ""
  2459. #: flatcamEditors/FlatCAMGeoEditor.py:1995
  2460. msgid "Done. Adding Circle completed."
  2461. msgstr ""
  2462. #: flatcamEditors/FlatCAMGeoEditor.py:2030
  2463. #: flatcamEditors/FlatCAMGrbEditor.py:1498
  2464. msgid "Click on Start point ..."
  2465. msgstr ""
  2466. #: flatcamEditors/FlatCAMGeoEditor.py:2032
  2467. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2468. msgid "Click on Point3 ..."
  2469. msgstr ""
  2470. #: flatcamEditors/FlatCAMGeoEditor.py:2034
  2471. #: flatcamEditors/FlatCAMGrbEditor.py:1502
  2472. msgid "Click on Stop point ..."
  2473. msgstr ""
  2474. #: flatcamEditors/FlatCAMGeoEditor.py:2039
  2475. #: flatcamEditors/FlatCAMGrbEditor.py:1507
  2476. msgid "Click on Stop point to complete ..."
  2477. msgstr ""
  2478. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2479. #: flatcamEditors/FlatCAMGrbEditor.py:1509
  2480. msgid "Click on Point2 to complete ..."
  2481. msgstr ""
  2482. #: flatcamEditors/FlatCAMGeoEditor.py:2043
  2483. #: flatcamEditors/FlatCAMGrbEditor.py:1511
  2484. msgid "Click on Center point to complete ..."
  2485. msgstr ""
  2486. #: flatcamEditors/FlatCAMGeoEditor.py:2055
  2487. #: flatcamEditors/FlatCAMGrbEditor.py:1523
  2488. #, python-format
  2489. msgid "Direction: %s"
  2490. msgstr ""
  2491. #: flatcamEditors/FlatCAMGeoEditor.py:2065
  2492. #: flatcamEditors/FlatCAMGrbEditor.py:1533
  2493. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2494. msgstr ""
  2495. #: flatcamEditors/FlatCAMGeoEditor.py:2068
  2496. #: flatcamEditors/FlatCAMGrbEditor.py:1536
  2497. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2498. msgstr ""
  2499. #: flatcamEditors/FlatCAMGeoEditor.py:2071
  2500. #: flatcamEditors/FlatCAMGrbEditor.py:1539
  2501. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2502. msgstr ""
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:2210
  2504. msgid "Done. Arc completed."
  2505. msgstr ""
  2506. #: flatcamEditors/FlatCAMGeoEditor.py:2229
  2507. #: flatcamEditors/FlatCAMGeoEditor.py:2283
  2508. #: flatcamEditors/FlatCAMGeoEditor.py:2656
  2509. msgid "Click on 1st corner ..."
  2510. msgstr ""
  2511. #: flatcamEditors/FlatCAMGeoEditor.py:2235
  2512. msgid "Click on opposite corner to complete ..."
  2513. msgstr ""
  2514. #: flatcamEditors/FlatCAMGeoEditor.py:2264
  2515. msgid "Done. Rectangle completed."
  2516. msgstr ""
  2517. #: flatcamEditors/FlatCAMGeoEditor.py:2290
  2518. msgid "Click on next Point or click right mouse button to complete ..."
  2519. msgstr ""
  2520. #: flatcamEditors/FlatCAMGeoEditor.py:2319
  2521. msgid "Done. Polygon completed."
  2522. msgstr ""
  2523. #: flatcamEditors/FlatCAMGeoEditor.py:2329
  2524. #: flatcamEditors/FlatCAMGeoEditor.py:2375
  2525. #: flatcamEditors/FlatCAMGrbEditor.py:1085
  2526. #: flatcamEditors/FlatCAMGrbEditor.py:1287
  2527. msgid "Backtracked one point ..."
  2528. msgstr ""
  2529. #: flatcamEditors/FlatCAMGeoEditor.py:2357
  2530. msgid "[success] Done. Path completed."
  2531. msgstr ""
  2532. #: flatcamEditors/FlatCAMGeoEditor.py:2475
  2533. msgid "MOVE: No shape selected. Select a shape to move"
  2534. msgstr ""
  2535. #: flatcamEditors/FlatCAMGeoEditor.py:2477
  2536. #: flatcamEditors/FlatCAMGeoEditor.py:2489
  2537. msgid " MOVE: Click on reference point ..."
  2538. msgstr ""
  2539. #: flatcamEditors/FlatCAMGeoEditor.py:2480
  2540. msgid " Click on destination point ..."
  2541. msgstr ""
  2542. #: flatcamEditors/FlatCAMGeoEditor.py:2515
  2543. msgid "Done. Geometry(s) Move completed."
  2544. msgstr ""
  2545. #: flatcamEditors/FlatCAMGeoEditor.py:2636
  2546. msgid "Done. Geometry(s) Copy completed."
  2547. msgstr ""
  2548. #: flatcamEditors/FlatCAMGeoEditor.py:2673
  2549. msgid ""
  2550. "Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
  2551. "Error"
  2552. msgstr ""
  2553. #: flatcamEditors/FlatCAMGeoEditor.py:2681
  2554. msgid "No text to add."
  2555. msgstr ""
  2556. #: flatcamEditors/FlatCAMGeoEditor.py:2688
  2557. msgid " Done. Adding Text completed."
  2558. msgstr ""
  2559. #: flatcamEditors/FlatCAMGeoEditor.py:2716
  2560. msgid "Create buffer geometry ..."
  2561. msgstr ""
  2562. #: flatcamEditors/FlatCAMGeoEditor.py:2728
  2563. #: flatcamEditors/FlatCAMGeoEditor.py:2758
  2564. #: flatcamEditors/FlatCAMGeoEditor.py:2788
  2565. msgid "Buffer cancelled. No shape selected."
  2566. msgstr ""
  2567. #: flatcamEditors/FlatCAMGeoEditor.py:2753
  2568. #: flatcamEditors/FlatCAMGrbEditor.py:4674
  2569. msgid "Done. Buffer Tool completed."
  2570. msgstr ""
  2571. #: flatcamEditors/FlatCAMGeoEditor.py:2783
  2572. msgid "Done. Buffer Int Tool completed."
  2573. msgstr ""
  2574. #: flatcamEditors/FlatCAMGeoEditor.py:2813
  2575. msgid "Done. Buffer Ext Tool completed."
  2576. msgstr ""
  2577. #: flatcamEditors/FlatCAMGeoEditor.py:2848
  2578. #: flatcamEditors/FlatCAMGrbEditor.py:2068
  2579. msgid "Select a shape to act as deletion area ..."
  2580. msgstr ""
  2581. #: flatcamEditors/FlatCAMGeoEditor.py:2850
  2582. #: flatcamEditors/FlatCAMGeoEditor.py:2869
  2583. #: flatcamEditors/FlatCAMGeoEditor.py:2875
  2584. #: flatcamEditors/FlatCAMGrbEditor.py:2070
  2585. msgid "Click to pick-up the erase shape..."
  2586. msgstr ""
  2587. #: flatcamEditors/FlatCAMGeoEditor.py:2879
  2588. #: flatcamEditors/FlatCAMGrbEditor.py:2127
  2589. msgid "Click to erase ..."
  2590. msgstr ""
  2591. #: flatcamEditors/FlatCAMGeoEditor.py:2909
  2592. #: flatcamEditors/FlatCAMGrbEditor.py:2161
  2593. msgid "Done. Eraser tool action completed."
  2594. msgstr ""
  2595. #: flatcamEditors/FlatCAMGeoEditor.py:2952
  2596. msgid "Create Paint geometry ..."
  2597. msgstr ""
  2598. #: flatcamEditors/FlatCAMGeoEditor.py:2966
  2599. #: flatcamEditors/FlatCAMGrbEditor.py:2312
  2600. msgid "Shape transformations ..."
  2601. msgstr ""
  2602. #: flatcamEditors/FlatCAMGeoEditor.py:3545
  2603. msgid "Editing MultiGeo Geometry, tool"
  2604. msgstr ""
  2605. #: flatcamEditors/FlatCAMGeoEditor.py:3547
  2606. msgid "with diameter"
  2607. msgstr ""
  2608. #: flatcamEditors/FlatCAMGeoEditor.py:3924
  2609. msgid "Copy cancelled. No shape selected."
  2610. msgstr ""
  2611. #: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
  2612. #: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
  2613. #: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
  2614. #: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
  2615. msgid "Click on target point."
  2616. msgstr ""
  2617. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2618. #: flatcamEditors/FlatCAMGeoEditor.py:4210
  2619. msgid "A selection of at least 2 geo items is required to do Intersection."
  2620. msgstr ""
  2621. #: flatcamEditors/FlatCAMGeoEditor.py:4296
  2622. #: flatcamEditors/FlatCAMGeoEditor.py:4405
  2623. msgid ""
  2624. "Negative buffer value is not accepted. Use Buffer interior to generate an "
  2625. "'inside' shape"
  2626. msgstr ""
  2627. #: flatcamEditors/FlatCAMGeoEditor.py:4306
  2628. #: flatcamEditors/FlatCAMGeoEditor.py:4362
  2629. #: flatcamEditors/FlatCAMGeoEditor.py:4414
  2630. msgid "Nothing selected for buffering."
  2631. msgstr ""
  2632. #: flatcamEditors/FlatCAMGeoEditor.py:4311
  2633. #: flatcamEditors/FlatCAMGeoEditor.py:4367
  2634. #: flatcamEditors/FlatCAMGeoEditor.py:4419
  2635. msgid "Invalid distance for buffering."
  2636. msgstr ""
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:4335
  2638. #: flatcamEditors/FlatCAMGeoEditor.py:4439
  2639. msgid "Failed, the result is empty. Choose a different buffer value."
  2640. msgstr ""
  2641. #: flatcamEditors/FlatCAMGeoEditor.py:4346
  2642. msgid "Full buffer geometry created."
  2643. msgstr ""
  2644. #: flatcamEditors/FlatCAMGeoEditor.py:4353
  2645. msgid "Negative buffer value is not accepted."
  2646. msgstr ""
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:4387
  2648. msgid "Failed, the result is empty. Choose a smaller buffer value."
  2649. msgstr ""
  2650. #: flatcamEditors/FlatCAMGeoEditor.py:4398
  2651. msgid "Interior buffer geometry created."
  2652. msgstr ""
  2653. #: flatcamEditors/FlatCAMGeoEditor.py:4450
  2654. msgid "Exterior buffer geometry created."
  2655. msgstr ""
  2656. #: flatcamEditors/FlatCAMGeoEditor.py:4515
  2657. msgid "Nothing selected for painting."
  2658. msgstr ""
  2659. #: flatcamEditors/FlatCAMGeoEditor.py:4522
  2660. msgid "Invalid value for"
  2661. msgstr ""
  2662. #: flatcamEditors/FlatCAMGeoEditor.py:4528
  2663. #, python-format
  2664. msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
  2665. msgstr ""
  2666. #: flatcamEditors/FlatCAMGeoEditor.py:4587
  2667. #, python-format
  2668. msgid ""
  2669. "Could not do Paint. Try a different combination of parameters. Or a "
  2670. "different method of Paint\n"
  2671. "%s"
  2672. msgstr ""
  2673. #: flatcamEditors/FlatCAMGeoEditor.py:4598
  2674. msgid "[success] Paint done."
  2675. msgstr ""
  2676. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2677. msgid "To add an Pad first select a aperture in Aperture Table"
  2678. msgstr ""
  2679. #: flatcamEditors/FlatCAMGrbEditor.py:215
  2680. #: flatcamEditors/FlatCAMGrbEditor.py:409
  2681. msgid "Aperture size is zero. It needs to be greater than zero."
  2682. msgstr ""
  2683. #: flatcamEditors/FlatCAMGrbEditor.py:366
  2684. #: flatcamEditors/FlatCAMGrbEditor.py:674
  2685. msgid ""
  2686. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2687. msgstr ""
  2688. #: flatcamEditors/FlatCAMGrbEditor.py:379
  2689. msgid "Done. Adding Pad completed."
  2690. msgstr ""
  2691. #: flatcamEditors/FlatCAMGrbEditor.py:401
  2692. msgid "To add an Pad Array first select a aperture in Aperture Table"
  2693. msgstr ""
  2694. #: flatcamEditors/FlatCAMGrbEditor.py:479
  2695. msgid "Click on the Pad Circular Array Start position"
  2696. msgstr ""
  2697. #: flatcamEditors/FlatCAMGrbEditor.py:700
  2698. msgid "Too many Pads for the selected spacing angle."
  2699. msgstr ""
  2700. #: flatcamEditors/FlatCAMGrbEditor.py:723
  2701. msgid "Done. Pad Array added."
  2702. msgstr ""
  2703. #: flatcamEditors/FlatCAMGrbEditor.py:744
  2704. msgid "Select shape(s) and then click ..."
  2705. msgstr ""
  2706. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2707. msgid "Failed. Nothing selected."
  2708. msgstr ""
  2709. #: flatcamEditors/FlatCAMGrbEditor.py:772
  2710. msgid ""
  2711. "Failed. Poligonize works only on geometries belonging to the same aperture."
  2712. msgstr ""
  2713. #: flatcamEditors/FlatCAMGrbEditor.py:826
  2714. msgid "Done. Poligonize completed."
  2715. msgstr ""
  2716. #: flatcamEditors/FlatCAMGrbEditor.py:879
  2717. #: flatcamEditors/FlatCAMGrbEditor.py:1102
  2718. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2719. msgid "Corner Mode 1: 45 degrees ..."
  2720. msgstr ""
  2721. #: flatcamEditors/FlatCAMGrbEditor.py:881
  2722. msgid "Click on 1st point ..."
  2723. msgstr ""
  2724. #: flatcamEditors/FlatCAMGrbEditor.py:891
  2725. #: flatcamEditors/FlatCAMGrbEditor.py:1202
  2726. msgid "Click on next Point or click Right mouse button to complete ..."
  2727. msgstr ""
  2728. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2729. #: flatcamEditors/FlatCAMGrbEditor.py:1123
  2730. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2731. msgstr ""
  2732. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2733. #: flatcamEditors/FlatCAMGrbEditor.py:1120
  2734. msgid "Corner Mode 3: 90 degrees ..."
  2735. msgstr ""
  2736. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2737. #: flatcamEditors/FlatCAMGrbEditor.py:1117
  2738. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2739. msgstr ""
  2740. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2741. #: flatcamEditors/FlatCAMGrbEditor.py:1114
  2742. msgid "Corner Mode 5: Free angle ..."
  2743. msgstr ""
  2744. #: flatcamEditors/FlatCAMGrbEditor.py:1153
  2745. #: flatcamEditors/FlatCAMGrbEditor.py:1319
  2746. #: flatcamEditors/FlatCAMGrbEditor.py:1358
  2747. msgid "Track Mode 1: 45 degrees ..."
  2748. msgstr ""
  2749. #: flatcamEditors/FlatCAMGrbEditor.py:1299
  2750. #: flatcamEditors/FlatCAMGrbEditor.py:1353
  2751. msgid "Track Mode 2: Reverse 45 degrees ..."
  2752. msgstr ""
  2753. #: flatcamEditors/FlatCAMGrbEditor.py:1304
  2754. #: flatcamEditors/FlatCAMGrbEditor.py:1348
  2755. msgid "Track Mode 3: 90 degrees ..."
  2756. msgstr ""
  2757. #: flatcamEditors/FlatCAMGrbEditor.py:1309
  2758. #: flatcamEditors/FlatCAMGrbEditor.py:1343
  2759. msgid "Track Mode 4: Reverse 90 degrees ..."
  2760. msgstr ""
  2761. #: flatcamEditors/FlatCAMGrbEditor.py:1314
  2762. #: flatcamEditors/FlatCAMGrbEditor.py:1338
  2763. msgid "Track Mode 5: Free angle ..."
  2764. msgstr ""
  2765. #: flatcamEditors/FlatCAMGrbEditor.py:1720
  2766. msgid "Scale the selected Gerber apertures ..."
  2767. msgstr ""
  2768. #: flatcamEditors/FlatCAMGrbEditor.py:1762
  2769. msgid "Buffer the selected apertures ..."
  2770. msgstr ""
  2771. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  2772. msgid "Mark polygon areas in the edited Gerber ..."
  2773. msgstr ""
  2774. #: flatcamEditors/FlatCAMGrbEditor.py:1852
  2775. msgid "Nothing selected to move"
  2776. msgstr ""
  2777. #: flatcamEditors/FlatCAMGrbEditor.py:1976
  2778. msgid "Done. Apertures Move completed."
  2779. msgstr ""
  2780. #: flatcamEditors/FlatCAMGrbEditor.py:2053
  2781. msgid "Done. Apertures copied."
  2782. msgstr ""
  2783. #: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
  2784. #: flatcamGUI/FlatCAMGUI.py:4629
  2785. msgid "Gerber Editor"
  2786. msgstr ""
  2787. #: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
  2788. #: flatcamTools/ToolProperties.py:137
  2789. msgid "Apertures"
  2790. msgstr ""
  2791. #: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
  2792. msgid "Apertures Table for the Gerber Object."
  2793. msgstr ""
  2794. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2795. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2796. msgid "Code"
  2797. msgstr ""
  2798. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2799. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2800. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  2801. msgid "Type"
  2802. msgstr ""
  2803. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2804. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2805. msgid "Size"
  2806. msgstr ""
  2807. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  2808. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  2809. msgid "Dim"
  2810. msgstr ""
  2811. #: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
  2812. msgid "Index"
  2813. msgstr ""
  2814. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  2815. #: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
  2816. msgid "Aperture Code"
  2817. msgstr ""
  2818. #: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
  2819. msgid "Type of aperture: circular, rectangle, macros etc"
  2820. msgstr ""
  2821. #: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
  2822. msgid "Aperture Size:"
  2823. msgstr ""
  2824. #: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
  2825. msgid ""
  2826. "Aperture Dimensions:\n"
  2827. " - (width, height) for R, O type.\n"
  2828. " - (dia, nVertices) for P type"
  2829. msgstr ""
  2830. #: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
  2831. msgid "Code for the new aperture"
  2832. msgstr ""
  2833. #: flatcamEditors/FlatCAMGrbEditor.py:2430
  2834. msgid "Aperture Size"
  2835. msgstr ""
  2836. #: flatcamEditors/FlatCAMGrbEditor.py:2432
  2837. msgid ""
  2838. "Size for the new aperture.\n"
  2839. "If aperture type is 'R' or 'O' then\n"
  2840. "this value is automatically\n"
  2841. "calculated as:\n"
  2842. "sqrt(width**2 + height**2)"
  2843. msgstr ""
  2844. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  2845. msgid "Aperture Type"
  2846. msgstr ""
  2847. #: flatcamEditors/FlatCAMGrbEditor.py:2446
  2848. msgid ""
  2849. "Select the type of new aperture. Can be:\n"
  2850. "C = circular\n"
  2851. "R = rectangular\n"
  2852. "O = oblong"
  2853. msgstr ""
  2854. #: flatcamEditors/FlatCAMGrbEditor.py:2457
  2855. msgid "Aperture Dim"
  2856. msgstr ""
  2857. #: flatcamEditors/FlatCAMGrbEditor.py:2459
  2858. msgid ""
  2859. "Dimensions for the new aperture.\n"
  2860. "Active only for rectangular apertures (type R).\n"
  2861. "The format is (width, height)"
  2862. msgstr ""
  2863. #: flatcamEditors/FlatCAMGrbEditor.py:2468
  2864. msgid "Add/Delete Aperture"
  2865. msgstr ""
  2866. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  2867. msgid "Add/Delete an aperture in the aperture table"
  2868. msgstr ""
  2869. #: flatcamEditors/FlatCAMGrbEditor.py:2479
  2870. msgid "Add a new aperture to the aperture list."
  2871. msgstr ""
  2872. #: flatcamEditors/FlatCAMGrbEditor.py:2484
  2873. msgid "Delete a aperture in the aperture list"
  2874. msgstr ""
  2875. #: flatcamEditors/FlatCAMGrbEditor.py:2501
  2876. msgid "Buffer Aperture"
  2877. msgstr ""
  2878. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  2879. msgid "Buffer a aperture in the aperture list"
  2880. msgstr ""
  2881. #: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
  2882. msgid "Buffer distance"
  2883. msgstr ""
  2884. #: flatcamEditors/FlatCAMGrbEditor.py:2514
  2885. msgid "Buffer corner"
  2886. msgstr ""
  2887. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  2888. msgid ""
  2889. "There are 3 types of corners:\n"
  2890. " - 'Round': the corner is rounded.\n"
  2891. " - 'Square:' the corner is met in a sharp angle.\n"
  2892. " - 'Beveled:' the corner is a line that directly connects the features "
  2893. "meeting in the corner"
  2894. msgstr ""
  2895. #: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
  2896. #: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
  2897. #: flatcamGUI/FlatCAMGUI.py:2085
  2898. msgid "Buffer"
  2899. msgstr ""
  2900. #: flatcamEditors/FlatCAMGrbEditor.py:2546
  2901. msgid "Scale Aperture"
  2902. msgstr ""
  2903. #: flatcamEditors/FlatCAMGrbEditor.py:2548
  2904. msgid "Scale a aperture in the aperture list"
  2905. msgstr ""
  2906. #: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
  2907. msgid "Scale factor"
  2908. msgstr ""
  2909. #: flatcamEditors/FlatCAMGrbEditor.py:2558
  2910. msgid ""
  2911. "The factor by which to scale the selected aperture.\n"
  2912. "Values can be between 0.0000 and 999.9999"
  2913. msgstr ""
  2914. #: flatcamEditors/FlatCAMGrbEditor.py:2584
  2915. msgid "Mark polygon areas"
  2916. msgstr ""
  2917. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  2918. msgid "Mark the polygon areas."
  2919. msgstr ""
  2920. #: flatcamEditors/FlatCAMGrbEditor.py:2594
  2921. msgid "Area UPPER threshold"
  2922. msgstr ""
  2923. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  2924. msgid ""
  2925. "The threshold value, all areas less than this are marked.\n"
  2926. "Can have a value between 0.0000 and 9999.9999"
  2927. msgstr ""
  2928. #: flatcamEditors/FlatCAMGrbEditor.py:2602
  2929. msgid "Area LOWER threshold"
  2930. msgstr ""
  2931. #: flatcamEditors/FlatCAMGrbEditor.py:2604
  2932. msgid ""
  2933. "The threshold value, all areas more than this are marked.\n"
  2934. "Can have a value between 0.0000 and 9999.9999"
  2935. msgstr ""
  2936. #: flatcamEditors/FlatCAMGrbEditor.py:2617
  2937. msgid "Go"
  2938. msgstr ""
  2939. #: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
  2940. #: flatcamGUI/FlatCAMGUI.py:2075
  2941. msgid "Add Pad Array"
  2942. msgstr ""
  2943. #: flatcamEditors/FlatCAMGrbEditor.py:2638
  2944. msgid "Add an array of pads (linear or circular array)"
  2945. msgstr ""
  2946. #: flatcamEditors/FlatCAMGrbEditor.py:2644
  2947. msgid ""
  2948. "Select the type of pads array to create.\n"
  2949. "It can be Linear X(Y) or Circular"
  2950. msgstr ""
  2951. #: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
  2952. msgid "Nr of pads"
  2953. msgstr ""
  2954. #: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
  2955. msgid "Specify how many pads to be in the array."
  2956. msgstr ""
  2957. #: flatcamEditors/FlatCAMGrbEditor.py:3153
  2958. #: flatcamEditors/FlatCAMGrbEditor.py:3157
  2959. msgid "Aperture code value is missing or wrong format. Add it and retry."
  2960. msgstr ""
  2961. #: flatcamEditors/FlatCAMGrbEditor.py:3193
  2962. msgid ""
  2963. "Aperture dimensions value is missing or wrong format. Add it in format "
  2964. "(width, height) and retry."
  2965. msgstr ""
  2966. #: flatcamEditors/FlatCAMGrbEditor.py:3206
  2967. msgid "Aperture size value is missing or wrong format. Add it and retry."
  2968. msgstr ""
  2969. #: flatcamEditors/FlatCAMGrbEditor.py:3217
  2970. msgid "Aperture already in the aperture table."
  2971. msgstr ""
  2972. #: flatcamEditors/FlatCAMGrbEditor.py:3225
  2973. msgid "Added new aperture with code"
  2974. msgstr ""
  2975. #: flatcamEditors/FlatCAMGrbEditor.py:3254
  2976. msgid " Select an aperture in Aperture Table"
  2977. msgstr ""
  2978. #: flatcamEditors/FlatCAMGrbEditor.py:3261
  2979. msgid "Select an aperture in Aperture Table -->"
  2980. msgstr ""
  2981. #: flatcamEditors/FlatCAMGrbEditor.py:3285
  2982. msgid "Deleted aperture with code"
  2983. msgstr ""
  2984. #: flatcamEditors/FlatCAMGrbEditor.py:3748
  2985. #, python-format
  2986. msgid "Adding aperture: %s geo ..."
  2987. msgstr ""
  2988. #: flatcamEditors/FlatCAMGrbEditor.py:3936
  2989. msgid ""
  2990. "There are no Aperture definitions in the file. Aborting Gerber creation."
  2991. msgstr ""
  2992. #: flatcamEditors/FlatCAMGrbEditor.py:3944
  2993. msgid "Creating Gerber."
  2994. msgstr ""
  2995. #: flatcamEditors/FlatCAMGrbEditor.py:3953
  2996. msgid "Done. Gerber editing finished."
  2997. msgstr ""
  2998. #: flatcamEditors/FlatCAMGrbEditor.py:3970
  2999. msgid "Cancelled. No aperture is selected"
  3000. msgstr ""
  3001. #: flatcamEditors/FlatCAMGrbEditor.py:4505
  3002. msgid "Failed. No aperture geometry is selected."
  3003. msgstr ""
  3004. #: flatcamEditors/FlatCAMGrbEditor.py:4514
  3005. msgid "Done. Apertures geometry deleted."
  3006. msgstr ""
  3007. #: flatcamEditors/FlatCAMGrbEditor.py:4657
  3008. msgid "No aperture to buffer. Select at least one aperture and try again."
  3009. msgstr ""
  3010. #: flatcamEditors/FlatCAMGrbEditor.py:4670
  3011. msgid "Failed."
  3012. msgstr ""
  3013. #: flatcamEditors/FlatCAMGrbEditor.py:4689
  3014. msgid "Scale factor value is missing or wrong format. Add it and retry."
  3015. msgstr ""
  3016. #: flatcamEditors/FlatCAMGrbEditor.py:4721
  3017. msgid "No aperture to scale. Select at least one aperture and try again."
  3018. msgstr ""
  3019. #: flatcamEditors/FlatCAMGrbEditor.py:4737
  3020. msgid "Done. Scale Tool completed."
  3021. msgstr ""
  3022. #: flatcamEditors/FlatCAMGrbEditor.py:4775
  3023. msgid "Polygon areas marked."
  3024. msgstr ""
  3025. #: flatcamEditors/FlatCAMGrbEditor.py:4778
  3026. msgid "There are no polygons to mark area."
  3027. msgstr ""
  3028. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  3029. msgid "Rotation action was not executed."
  3030. msgstr ""
  3031. #: flatcamEditors/FlatCAMGrbEditor.py:5688
  3032. msgid "Skew action was not executed."
  3033. msgstr ""
  3034. #: flatcamEditors/FlatCAMGrbEditor.py:5758
  3035. msgid "Scale action was not executed."
  3036. msgstr ""
  3037. #: flatcamEditors/FlatCAMGrbEditor.py:5807
  3038. msgid "Offset action was not executed."
  3039. msgstr ""
  3040. #: flatcamEditors/FlatCAMGrbEditor.py:5863
  3041. msgid "Geometry shape offset Y cancelled"
  3042. msgstr ""
  3043. #: flatcamEditors/FlatCAMGrbEditor.py:5880
  3044. msgid "Geometry shape skew X cancelled"
  3045. msgstr ""
  3046. #: flatcamEditors/FlatCAMGrbEditor.py:5897
  3047. msgid "Geometry shape skew Y cancelled"
  3048. msgstr ""
  3049. #: flatcamGUI/FlatCAMGUI.py:52
  3050. msgid "&File"
  3051. msgstr ""
  3052. #: flatcamGUI/FlatCAMGUI.py:57
  3053. msgid "&New Project ...\tCTRL+N"
  3054. msgstr ""
  3055. #: flatcamGUI/FlatCAMGUI.py:59
  3056. msgid "Will create a new, blank project"
  3057. msgstr ""
  3058. #: flatcamGUI/FlatCAMGUI.py:64
  3059. msgid "&New"
  3060. msgstr ""
  3061. #: flatcamGUI/FlatCAMGUI.py:67
  3062. msgid "Geometry\tN"
  3063. msgstr ""
  3064. #: flatcamGUI/FlatCAMGUI.py:69
  3065. msgid "Will create a new, empty Geometry Object."
  3066. msgstr ""
  3067. #: flatcamGUI/FlatCAMGUI.py:71
  3068. msgid "Gerber\tB"
  3069. msgstr ""
  3070. #: flatcamGUI/FlatCAMGUI.py:73
  3071. msgid "Will create a new, empty Gerber Object."
  3072. msgstr ""
  3073. #: flatcamGUI/FlatCAMGUI.py:75
  3074. msgid "Excellon\tL"
  3075. msgstr ""
  3076. #: flatcamGUI/FlatCAMGUI.py:77
  3077. msgid "Will create a new, empty Excellon Object."
  3078. msgstr ""
  3079. #: flatcamGUI/FlatCAMGUI.py:80 flatcamTools/ToolPcbWizard.py:62
  3080. #: flatcamTools/ToolPcbWizard.py:69
  3081. msgid "Open"
  3082. msgstr ""
  3083. #: flatcamGUI/FlatCAMGUI.py:84
  3084. msgid "Open &Project ..."
  3085. msgstr ""
  3086. #: flatcamGUI/FlatCAMGUI.py:90
  3087. msgid "Open &Gerber ...\tCTRL+G"
  3088. msgstr ""
  3089. #: flatcamGUI/FlatCAMGUI.py:95
  3090. msgid "Open &Excellon ...\tCTRL+E"
  3091. msgstr ""
  3092. #: flatcamGUI/FlatCAMGUI.py:99
  3093. msgid "Open G-&Code ..."
  3094. msgstr ""
  3095. #: flatcamGUI/FlatCAMGUI.py:105
  3096. msgid "Open Config ..."
  3097. msgstr ""
  3098. #: flatcamGUI/FlatCAMGUI.py:109
  3099. msgid "Recent projects"
  3100. msgstr ""
  3101. #: flatcamGUI/FlatCAMGUI.py:110
  3102. msgid "Recent files"
  3103. msgstr ""
  3104. #: flatcamGUI/FlatCAMGUI.py:116
  3105. msgid "Scripting"
  3106. msgstr ""
  3107. #: flatcamGUI/FlatCAMGUI.py:119
  3108. msgid "New Script ..."
  3109. msgstr ""
  3110. #: flatcamGUI/FlatCAMGUI.py:120
  3111. msgid "Open Script ..."
  3112. msgstr ""
  3113. #: flatcamGUI/FlatCAMGUI.py:122
  3114. msgid "Run Script ...\tSHIFT+S"
  3115. msgstr ""
  3116. #: flatcamGUI/FlatCAMGUI.py:124
  3117. msgid ""
  3118. "Will run the opened Tcl Script thus\n"
  3119. "enabling the automation of certain\n"
  3120. "functions of FlatCAM."
  3121. msgstr ""
  3122. #: flatcamGUI/FlatCAMGUI.py:137
  3123. msgid "Import"
  3124. msgstr ""
  3125. #: flatcamGUI/FlatCAMGUI.py:139
  3126. msgid "&SVG as Geometry Object ..."
  3127. msgstr ""
  3128. #: flatcamGUI/FlatCAMGUI.py:142
  3129. msgid "&SVG as Gerber Object ..."
  3130. msgstr ""
  3131. #: flatcamGUI/FlatCAMGUI.py:147
  3132. msgid "&DXF as Geometry Object ..."
  3133. msgstr ""
  3134. #: flatcamGUI/FlatCAMGUI.py:150
  3135. msgid "&DXF as Gerber Object ..."
  3136. msgstr ""
  3137. #: flatcamGUI/FlatCAMGUI.py:155
  3138. msgid "Export"
  3139. msgstr ""
  3140. #: flatcamGUI/FlatCAMGUI.py:158
  3141. msgid "Export &SVG ..."
  3142. msgstr ""
  3143. #: flatcamGUI/FlatCAMGUI.py:161
  3144. msgid "Export DXF ..."
  3145. msgstr ""
  3146. #: flatcamGUI/FlatCAMGUI.py:166
  3147. msgid "Export &PNG ..."
  3148. msgstr ""
  3149. #: flatcamGUI/FlatCAMGUI.py:168
  3150. msgid ""
  3151. "Will export an image in PNG format,\n"
  3152. "the saved image will contain the visual \n"
  3153. "information currently in FlatCAM Plot Area."
  3154. msgstr ""
  3155. #: flatcamGUI/FlatCAMGUI.py:177
  3156. msgid "Export &Excellon ..."
  3157. msgstr ""
  3158. #: flatcamGUI/FlatCAMGUI.py:179
  3159. msgid ""
  3160. "Will export an Excellon Object as Excellon file,\n"
  3161. "the coordinates format, the file units and zeros\n"
  3162. "are set in Preferences -> Excellon Export."
  3163. msgstr ""
  3164. #: flatcamGUI/FlatCAMGUI.py:186
  3165. msgid "Export &Gerber ..."
  3166. msgstr ""
  3167. #: flatcamGUI/FlatCAMGUI.py:188
  3168. msgid ""
  3169. "Will export an Gerber Object as Gerber file,\n"
  3170. "the coordinates format, the file units and zeros\n"
  3171. "are set in Preferences -> Gerber Export."
  3172. msgstr ""
  3173. #: flatcamGUI/FlatCAMGUI.py:204
  3174. msgid "Backup"
  3175. msgstr ""
  3176. #: flatcamGUI/FlatCAMGUI.py:208
  3177. msgid "Import Preferences from file ..."
  3178. msgstr ""
  3179. #: flatcamGUI/FlatCAMGUI.py:213
  3180. msgid "Export Preferences to file ..."
  3181. msgstr ""
  3182. #: flatcamGUI/FlatCAMGUI.py:219 flatcamGUI/FlatCAMGUI.py:546
  3183. msgid "Save"
  3184. msgstr ""
  3185. #: flatcamGUI/FlatCAMGUI.py:222
  3186. msgid "&Save Project ..."
  3187. msgstr ""
  3188. #: flatcamGUI/FlatCAMGUI.py:227
  3189. msgid "Save Project &As ...\tCTRL+S"
  3190. msgstr ""
  3191. #: flatcamGUI/FlatCAMGUI.py:232
  3192. msgid "Save Project C&opy ..."
  3193. msgstr ""
  3194. #: flatcamGUI/FlatCAMGUI.py:239
  3195. msgid "E&xit"
  3196. msgstr ""
  3197. #: flatcamGUI/FlatCAMGUI.py:245
  3198. msgid "&Edit"
  3199. msgstr ""
  3200. #: flatcamGUI/FlatCAMGUI.py:248
  3201. msgid "Edit Object\tE"
  3202. msgstr ""
  3203. #: flatcamGUI/FlatCAMGUI.py:249
  3204. msgid "Close Editor\tCTRL+S"
  3205. msgstr ""
  3206. #: flatcamGUI/FlatCAMGUI.py:257
  3207. msgid "Conversion"
  3208. msgstr ""
  3209. #: flatcamGUI/FlatCAMGUI.py:259
  3210. msgid "&Join Geo/Gerber/Exc -> Geo"
  3211. msgstr ""
  3212. #: flatcamGUI/FlatCAMGUI.py:261
  3213. msgid ""
  3214. "Merge a selection of objects, which can be of type:\n"
  3215. "- Gerber\n"
  3216. "- Excellon\n"
  3217. "- Geometry\n"
  3218. "into a new combo Geometry object."
  3219. msgstr ""
  3220. #: flatcamGUI/FlatCAMGUI.py:268
  3221. msgid "Join Excellon(s) -> Excellon"
  3222. msgstr ""
  3223. #: flatcamGUI/FlatCAMGUI.py:270
  3224. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3225. msgstr ""
  3226. #: flatcamGUI/FlatCAMGUI.py:273
  3227. msgid "Join Gerber(s) -> Gerber"
  3228. msgstr ""
  3229. #: flatcamGUI/FlatCAMGUI.py:275
  3230. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3231. msgstr ""
  3232. #: flatcamGUI/FlatCAMGUI.py:280
  3233. msgid "Convert Single to MultiGeo"
  3234. msgstr ""
  3235. #: flatcamGUI/FlatCAMGUI.py:282
  3236. msgid ""
  3237. "Will convert a Geometry object from single_geometry type\n"
  3238. "to a multi_geometry type."
  3239. msgstr ""
  3240. #: flatcamGUI/FlatCAMGUI.py:286
  3241. msgid "Convert Multi to SingleGeo"
  3242. msgstr ""
  3243. #: flatcamGUI/FlatCAMGUI.py:288
  3244. msgid ""
  3245. "Will convert a Geometry object from multi_geometry type\n"
  3246. "to a single_geometry type."
  3247. msgstr ""
  3248. #: flatcamGUI/FlatCAMGUI.py:294
  3249. msgid "Convert Any to Geo"
  3250. msgstr ""
  3251. #: flatcamGUI/FlatCAMGUI.py:296
  3252. msgid "Convert Any to Gerber"
  3253. msgstr ""
  3254. #: flatcamGUI/FlatCAMGUI.py:301
  3255. msgid "&Copy\tCTRL+C"
  3256. msgstr ""
  3257. #: flatcamGUI/FlatCAMGUI.py:305
  3258. msgid "&Delete\tDEL"
  3259. msgstr ""
  3260. #: flatcamGUI/FlatCAMGUI.py:309
  3261. msgid "Se&t Origin\tO"
  3262. msgstr ""
  3263. #: flatcamGUI/FlatCAMGUI.py:310
  3264. msgid "Jump to Location\tJ"
  3265. msgstr ""
  3266. #: flatcamGUI/FlatCAMGUI.py:315
  3267. msgid "Toggle Units\tQ"
  3268. msgstr ""
  3269. #: flatcamGUI/FlatCAMGUI.py:316
  3270. msgid "&Select All\tCTRL+A"
  3271. msgstr ""
  3272. #: flatcamGUI/FlatCAMGUI.py:320
  3273. msgid "&Preferences\tSHIFT+P"
  3274. msgstr ""
  3275. #: flatcamGUI/FlatCAMGUI.py:323
  3276. msgid "&Options"
  3277. msgstr ""
  3278. #: flatcamGUI/FlatCAMGUI.py:338
  3279. msgid "&Rotate Selection\tSHIFT+(R)"
  3280. msgstr ""
  3281. #: flatcamGUI/FlatCAMGUI.py:343
  3282. msgid "&Skew on X axis\tSHIFT+X"
  3283. msgstr ""
  3284. #: flatcamGUI/FlatCAMGUI.py:345
  3285. msgid "S&kew on Y axis\tSHIFT+Y"
  3286. msgstr ""
  3287. #: flatcamGUI/FlatCAMGUI.py:350
  3288. msgid "Flip on &X axis\tX"
  3289. msgstr ""
  3290. #: flatcamGUI/FlatCAMGUI.py:352
  3291. msgid "Flip on &Y axis\tY"
  3292. msgstr ""
  3293. #: flatcamGUI/FlatCAMGUI.py:357
  3294. msgid "View source\tALT+S"
  3295. msgstr ""
  3296. #: flatcamGUI/FlatCAMGUI.py:362
  3297. msgid "&View"
  3298. msgstr ""
  3299. #: flatcamGUI/FlatCAMGUI.py:363
  3300. msgid "Enable all plots\tALT+1"
  3301. msgstr ""
  3302. #: flatcamGUI/FlatCAMGUI.py:365
  3303. msgid "Disable all plots\tALT+2"
  3304. msgstr ""
  3305. #: flatcamGUI/FlatCAMGUI.py:367
  3306. msgid "Disable non-selected\tALT+3"
  3307. msgstr ""
  3308. #: flatcamGUI/FlatCAMGUI.py:370
  3309. msgid "&Zoom Fit\tV"
  3310. msgstr ""
  3311. #: flatcamGUI/FlatCAMGUI.py:371
  3312. msgid "&Zoom In\t="
  3313. msgstr ""
  3314. #: flatcamGUI/FlatCAMGUI.py:372
  3315. msgid "&Zoom Out\t-"
  3316. msgstr ""
  3317. #: flatcamGUI/FlatCAMGUI.py:376
  3318. msgid "Toggle Code Editor\tCTRL+E"
  3319. msgstr ""
  3320. #: flatcamGUI/FlatCAMGUI.py:379
  3321. msgid "&Toggle FullScreen\tALT+F10"
  3322. msgstr ""
  3323. #: flatcamGUI/FlatCAMGUI.py:381
  3324. msgid "&Toggle Plot Area\tCTRL+F10"
  3325. msgstr ""
  3326. #: flatcamGUI/FlatCAMGUI.py:383
  3327. msgid "&Toggle Project/Sel/Tool\t`"
  3328. msgstr ""
  3329. #: flatcamGUI/FlatCAMGUI.py:386
  3330. msgid "&Toggle Grid Snap\tG"
  3331. msgstr ""
  3332. #: flatcamGUI/FlatCAMGUI.py:388
  3333. msgid "&Toggle Axis\tSHIFT+G"
  3334. msgstr ""
  3335. #: flatcamGUI/FlatCAMGUI.py:391
  3336. msgid "Toggle Workspace\tSHIFT+W"
  3337. msgstr ""
  3338. #: flatcamGUI/FlatCAMGUI.py:394
  3339. msgid "&Tool"
  3340. msgstr ""
  3341. #: flatcamGUI/FlatCAMGUI.py:396
  3342. msgid "&Command Line\tS"
  3343. msgstr ""
  3344. #: flatcamGUI/FlatCAMGUI.py:399
  3345. msgid "&Help"
  3346. msgstr ""
  3347. #: flatcamGUI/FlatCAMGUI.py:400
  3348. msgid "Help\tF1"
  3349. msgstr ""
  3350. #: flatcamGUI/FlatCAMGUI.py:401
  3351. msgid "FlatCAM.org"
  3352. msgstr ""
  3353. #: flatcamGUI/FlatCAMGUI.py:404
  3354. msgid "Shortcuts List\tF3"
  3355. msgstr ""
  3356. #: flatcamGUI/FlatCAMGUI.py:405
  3357. msgid "YouTube Channel\tF4"
  3358. msgstr ""
  3359. #: flatcamGUI/FlatCAMGUI.py:407
  3360. msgid "About"
  3361. msgstr ""
  3362. #: flatcamGUI/FlatCAMGUI.py:414
  3363. msgid "Add Circle\tO"
  3364. msgstr ""
  3365. #: flatcamGUI/FlatCAMGUI.py:416
  3366. msgid "Add Arc\tA"
  3367. msgstr ""
  3368. #: flatcamGUI/FlatCAMGUI.py:419
  3369. msgid "Add Rectangle\tR"
  3370. msgstr ""
  3371. #: flatcamGUI/FlatCAMGUI.py:422
  3372. msgid "Add Polygon\tN"
  3373. msgstr ""
  3374. #: flatcamGUI/FlatCAMGUI.py:424
  3375. msgid "Add Path\tP"
  3376. msgstr ""
  3377. #: flatcamGUI/FlatCAMGUI.py:426
  3378. msgid "Add Text\tT"
  3379. msgstr ""
  3380. #: flatcamGUI/FlatCAMGUI.py:429
  3381. msgid "Polygon Union\tU"
  3382. msgstr ""
  3383. #: flatcamGUI/FlatCAMGUI.py:431
  3384. msgid "Polygon Intersection\tE"
  3385. msgstr ""
  3386. #: flatcamGUI/FlatCAMGUI.py:433
  3387. msgid "Polygon Subtraction\tS"
  3388. msgstr ""
  3389. #: flatcamGUI/FlatCAMGUI.py:437
  3390. msgid "Cut Path\tX"
  3391. msgstr ""
  3392. #: flatcamGUI/FlatCAMGUI.py:439
  3393. msgid "Copy Geom\tC"
  3394. msgstr ""
  3395. #: flatcamGUI/FlatCAMGUI.py:441
  3396. msgid "Delete Shape\tDEL"
  3397. msgstr ""
  3398. #: flatcamGUI/FlatCAMGUI.py:444 flatcamGUI/FlatCAMGUI.py:521
  3399. msgid "Move\tM"
  3400. msgstr ""
  3401. #: flatcamGUI/FlatCAMGUI.py:446
  3402. msgid "Buffer Tool\tB"
  3403. msgstr ""
  3404. #: flatcamGUI/FlatCAMGUI.py:449
  3405. msgid "Paint Tool\tI"
  3406. msgstr ""
  3407. #: flatcamGUI/FlatCAMGUI.py:452
  3408. msgid "Transform Tool\tALT+R"
  3409. msgstr ""
  3410. #: flatcamGUI/FlatCAMGUI.py:456
  3411. msgid "Toggle Corner Snap\tK"
  3412. msgstr ""
  3413. #: flatcamGUI/FlatCAMGUI.py:459
  3414. msgid ">Excellon Editor<"
  3415. msgstr ""
  3416. #: flatcamGUI/FlatCAMGUI.py:463
  3417. msgid "Add Drill Array\tA"
  3418. msgstr ""
  3419. #: flatcamGUI/FlatCAMGUI.py:465
  3420. msgid "Add Drill\tD"
  3421. msgstr ""
  3422. #: flatcamGUI/FlatCAMGUI.py:469
  3423. msgid "Add Slot Array\tQ"
  3424. msgstr ""
  3425. #: flatcamGUI/FlatCAMGUI.py:471
  3426. msgid "Add Slot\tW"
  3427. msgstr ""
  3428. #: flatcamGUI/FlatCAMGUI.py:475
  3429. msgid "Resize Drill(S)\tR"
  3430. msgstr ""
  3431. #: flatcamGUI/FlatCAMGUI.py:477 flatcamGUI/FlatCAMGUI.py:516
  3432. msgid "Copy\tC"
  3433. msgstr ""
  3434. #: flatcamGUI/FlatCAMGUI.py:479 flatcamGUI/FlatCAMGUI.py:518
  3435. msgid "Delete\tDEL"
  3436. msgstr ""
  3437. #: flatcamGUI/FlatCAMGUI.py:484
  3438. msgid "Move Drill(s)\tM"
  3439. msgstr ""
  3440. #: flatcamGUI/FlatCAMGUI.py:487
  3441. msgid ">Gerber Editor<"
  3442. msgstr ""
  3443. #: flatcamGUI/FlatCAMGUI.py:491
  3444. msgid "Add Pad\tP"
  3445. msgstr ""
  3446. #: flatcamGUI/FlatCAMGUI.py:493
  3447. msgid "Add Pad Array\tA"
  3448. msgstr ""
  3449. #: flatcamGUI/FlatCAMGUI.py:495
  3450. msgid "Add Track\tT"
  3451. msgstr ""
  3452. #: flatcamGUI/FlatCAMGUI.py:497
  3453. msgid "Add Region\tN"
  3454. msgstr ""
  3455. #: flatcamGUI/FlatCAMGUI.py:501
  3456. msgid "Poligonize\tALT+N"
  3457. msgstr ""
  3458. #: flatcamGUI/FlatCAMGUI.py:503
  3459. msgid "Add SemiDisc\tE"
  3460. msgstr ""
  3461. #: flatcamGUI/FlatCAMGUI.py:504
  3462. msgid "Add Disc\tD"
  3463. msgstr ""
  3464. #: flatcamGUI/FlatCAMGUI.py:506
  3465. msgid "Buffer\tB"
  3466. msgstr ""
  3467. #: flatcamGUI/FlatCAMGUI.py:507
  3468. msgid "Scale\tS"
  3469. msgstr ""
  3470. #: flatcamGUI/FlatCAMGUI.py:509
  3471. msgid "Mark Area\tALT+A"
  3472. msgstr ""
  3473. #: flatcamGUI/FlatCAMGUI.py:511
  3474. msgid "Eraser\tCTRL+E"
  3475. msgstr ""
  3476. #: flatcamGUI/FlatCAMGUI.py:513
  3477. msgid "Transform\tALT+R"
  3478. msgstr ""
  3479. #: flatcamGUI/FlatCAMGUI.py:537
  3480. msgid "Enable Plot"
  3481. msgstr ""
  3482. #: flatcamGUI/FlatCAMGUI.py:538
  3483. msgid "Disable Plot"
  3484. msgstr ""
  3485. #: flatcamGUI/FlatCAMGUI.py:540
  3486. msgid "Generate CNC"
  3487. msgstr ""
  3488. #: flatcamGUI/FlatCAMGUI.py:541
  3489. msgid "View Source"
  3490. msgstr ""
  3491. #: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
  3492. msgid "Edit"
  3493. msgstr ""
  3494. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
  3495. #: flatcamTools/ToolProperties.py:24
  3496. msgid "Properties"
  3497. msgstr ""
  3498. #: flatcamGUI/FlatCAMGUI.py:578
  3499. msgid "File Toolbar"
  3500. msgstr ""
  3501. #: flatcamGUI/FlatCAMGUI.py:582
  3502. msgid "Edit Toolbar"
  3503. msgstr ""
  3504. #: flatcamGUI/FlatCAMGUI.py:586
  3505. msgid "View Toolbar"
  3506. msgstr ""
  3507. #: flatcamGUI/FlatCAMGUI.py:590
  3508. msgid "Shell Toolbar"
  3509. msgstr ""
  3510. #: flatcamGUI/FlatCAMGUI.py:594
  3511. msgid "Tools Toolbar"
  3512. msgstr ""
  3513. #: flatcamGUI/FlatCAMGUI.py:598
  3514. msgid "Excellon Editor Toolbar"
  3515. msgstr ""
  3516. #: flatcamGUI/FlatCAMGUI.py:602
  3517. msgid "Geometry Editor Toolbar"
  3518. msgstr ""
  3519. #: flatcamGUI/FlatCAMGUI.py:606
  3520. msgid "Gerber Editor Toolbar"
  3521. msgstr ""
  3522. #: flatcamGUI/FlatCAMGUI.py:610
  3523. msgid "Grid Toolbar"
  3524. msgstr ""
  3525. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
  3526. msgid "Open project"
  3527. msgstr ""
  3528. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
  3529. msgid "Save project"
  3530. msgstr ""
  3531. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
  3532. msgid "New Blank Geometry"
  3533. msgstr ""
  3534. #: flatcamGUI/FlatCAMGUI.py:634
  3535. msgid "New Blank Gerber"
  3536. msgstr ""
  3537. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
  3538. msgid "New Blank Excellon"
  3539. msgstr ""
  3540. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
  3541. msgid "Editor"
  3542. msgstr ""
  3543. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
  3544. msgid "Save Object and close the Editor"
  3545. msgstr ""
  3546. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
  3547. msgid "&Delete"
  3548. msgstr ""
  3549. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
  3550. msgid "&Replot"
  3551. msgstr ""
  3552. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
  3553. msgid "&Clear plot"
  3554. msgstr ""
  3555. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
  3556. msgid "Zoom In"
  3557. msgstr ""
  3558. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
  3559. msgid "Zoom Out"
  3560. msgstr ""
  3561. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
  3562. #: flatcamGUI/FlatCAMGUI.py:1993
  3563. msgid "Zoom Fit"
  3564. msgstr ""
  3565. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
  3566. msgid "&Command Line"
  3567. msgstr ""
  3568. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
  3569. msgid "2Sided Tool"
  3570. msgstr ""
  3571. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
  3572. msgid "&Cutout Tool"
  3573. msgstr ""
  3574. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
  3575. #: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
  3576. msgid "NCC Tool"
  3577. msgstr ""
  3578. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
  3579. msgid "Panel Tool"
  3580. msgstr ""
  3581. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
  3582. #: flatcamTools/ToolFilm.py:209
  3583. msgid "Film Tool"
  3584. msgstr ""
  3585. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
  3586. #: flatcamTools/ToolSolderPaste.py:455
  3587. msgid "SolderPaste Tool"
  3588. msgstr ""
  3589. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
  3590. #: flatcamTools/ToolSub.py:28
  3591. msgid "Substract Tool"
  3592. msgstr ""
  3593. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
  3594. msgid "Calculators Tool"
  3595. msgstr ""
  3596. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
  3597. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
  3598. #: flatcamGUI/FlatCAMGUI.py:2073
  3599. msgid "Select"
  3600. msgstr ""
  3601. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
  3602. msgid "Add Drill Hole"
  3603. msgstr ""
  3604. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
  3605. msgid "Add Drill Hole Array"
  3606. msgstr ""
  3607. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
  3608. #: flatcamGUI/FlatCAMGUI.py:2025
  3609. msgid "Add Slot"
  3610. msgstr ""
  3611. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
  3612. #: flatcamGUI/FlatCAMGUI.py:2027
  3613. msgid "Add Slot Array"
  3614. msgstr ""
  3615. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
  3616. #: flatcamGUI/FlatCAMGUI.py:2024
  3617. msgid "Resize Drill"
  3618. msgstr ""
  3619. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
  3620. msgid "Copy Drill"
  3621. msgstr ""
  3622. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
  3623. msgid "Delete Drill"
  3624. msgstr ""
  3625. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
  3626. msgid "Move Drill"
  3627. msgstr ""
  3628. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
  3629. msgid "Add Circle"
  3630. msgstr ""
  3631. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
  3632. msgid "Add Arc"
  3633. msgstr ""
  3634. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
  3635. msgid "Add Rectangle"
  3636. msgstr ""
  3637. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
  3638. msgid "Add Path"
  3639. msgstr ""
  3640. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
  3641. msgid "Add Polygon"
  3642. msgstr ""
  3643. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
  3644. msgid "Add Text"
  3645. msgstr ""
  3646. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
  3647. msgid "Add Buffer"
  3648. msgstr ""
  3649. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
  3650. msgid "Paint Shape"
  3651. msgstr ""
  3652. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
  3653. #: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
  3654. #: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
  3655. msgid "Eraser"
  3656. msgstr ""
  3657. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
  3658. msgid "Polygon Union"
  3659. msgstr ""
  3660. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
  3661. msgid "Polygon Intersection"
  3662. msgstr ""
  3663. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
  3664. msgid "Polygon Subtraction"
  3665. msgstr ""
  3666. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
  3667. msgid "Cut Path"
  3668. msgstr ""
  3669. #: flatcamGUI/FlatCAMGUI.py:716
  3670. msgid "Copy Shape(s)"
  3671. msgstr ""
  3672. #: flatcamGUI/FlatCAMGUI.py:719
  3673. msgid "Delete Shape '-'"
  3674. msgstr ""
  3675. #: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
  3676. #: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
  3677. #: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
  3678. msgid "Transformations"
  3679. msgstr ""
  3680. #: flatcamGUI/FlatCAMGUI.py:723
  3681. msgid "Move Objects "
  3682. msgstr ""
  3683. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
  3684. msgid "Add Pad"
  3685. msgstr ""
  3686. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
  3687. msgid "Add Track"
  3688. msgstr ""
  3689. #: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
  3690. msgid "Add Region"
  3691. msgstr ""
  3692. #: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
  3693. #: flatcamGUI/FlatCAMGUI.py:2079
  3694. msgid "Poligonize"
  3695. msgstr ""
  3696. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
  3697. #: flatcamGUI/FlatCAMGUI.py:2081
  3698. msgid "SemiDisc"
  3699. msgstr ""
  3700. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
  3701. #: flatcamGUI/FlatCAMGUI.py:2082
  3702. msgid "Disc"
  3703. msgstr ""
  3704. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
  3705. #: flatcamGUI/FlatCAMGUI.py:2088
  3706. msgid "Mark Area"
  3707. msgstr ""
  3708. #: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
  3709. #: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
  3710. #: flatcamTools/ToolMove.py:26
  3711. msgid "Move"
  3712. msgstr ""
  3713. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
  3714. msgid "Snap to grid"
  3715. msgstr ""
  3716. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
  3717. msgid "Grid X snapping distance"
  3718. msgstr ""
  3719. #: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
  3720. msgid "Grid Y snapping distance"
  3721. msgstr ""
  3722. #: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
  3723. msgid ""
  3724. "When active, value on Grid_X\n"
  3725. "is copied to the Grid_Y value."
  3726. msgstr ""
  3727. #: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
  3728. msgid "Snap to corner"
  3729. msgstr ""
  3730. #: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
  3731. #: flatcamGUI/FlatCAMGUI.py:3575
  3732. msgid "Max. magnet distance"
  3733. msgstr ""
  3734. #: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
  3735. msgid "Project"
  3736. msgstr ""
  3737. #: flatcamGUI/FlatCAMGUI.py:819
  3738. msgid "Selected"
  3739. msgstr ""
  3740. #: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:846
  3741. msgid "Plot Area"
  3742. msgstr ""
  3743. #: flatcamGUI/FlatCAMGUI.py:872
  3744. msgid "General"
  3745. msgstr ""
  3746. #: flatcamGUI/FlatCAMGUI.py:881
  3747. msgid "APP. DEFAULTS"
  3748. msgstr ""
  3749. #: flatcamGUI/FlatCAMGUI.py:882
  3750. msgid "PROJ. OPTIONS "
  3751. msgstr ""
  3752. #: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
  3753. msgid "GERBER"
  3754. msgstr ""
  3755. #: flatcamGUI/FlatCAMGUI.py:904 flatcamTools/ToolDblSided.py:71
  3756. msgid "EXCELLON"
  3757. msgstr ""
  3758. #: flatcamGUI/FlatCAMGUI.py:914 flatcamTools/ToolDblSided.py:95
  3759. msgid "GEOMETRY"
  3760. msgstr ""
  3761. #: flatcamGUI/FlatCAMGUI.py:924
  3762. msgid "CNC-JOB"
  3763. msgstr ""
  3764. #: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
  3765. msgid "TOOLS"
  3766. msgstr ""
  3767. #: flatcamGUI/FlatCAMGUI.py:943
  3768. msgid "FILE ASSOCIATIONS"
  3769. msgstr ""
  3770. #: flatcamGUI/FlatCAMGUI.py:960
  3771. msgid "Import Preferences"
  3772. msgstr ""
  3773. #: flatcamGUI/FlatCAMGUI.py:963
  3774. msgid ""
  3775. "Import a full set of FlatCAM settings from a file\n"
  3776. "previously saved on HDD.\n"
  3777. "\n"
  3778. "FlatCAM automatically save a 'factory_defaults' file\n"
  3779. "on the first start. Do not delete that file."
  3780. msgstr ""
  3781. #: flatcamGUI/FlatCAMGUI.py:970
  3782. msgid "Export Preferences"
  3783. msgstr ""
  3784. #: flatcamGUI/FlatCAMGUI.py:973
  3785. msgid ""
  3786. "Export a full set of FlatCAM settings in a file\n"
  3787. "that is saved on HDD."
  3788. msgstr ""
  3789. #: flatcamGUI/FlatCAMGUI.py:978
  3790. msgid "Open Pref Folder"
  3791. msgstr ""
  3792. #: flatcamGUI/FlatCAMGUI.py:981
  3793. msgid "Open the folder where FlatCAM save the preferences files."
  3794. msgstr ""
  3795. #: flatcamGUI/FlatCAMGUI.py:992
  3796. msgid ""
  3797. "Save the current settings in the 'current_defaults' file\n"
  3798. "which is the file storing the working default preferences."
  3799. msgstr ""
  3800. #: flatcamGUI/FlatCAMGUI.py:1018
  3801. msgid ""
  3802. "<b>General Shortcut list</b><br>\n"
  3803. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3804. "\"width:283px\">\n"
  3805. " <tbody>\n"
  3806. " <tr height=\"20\">\n"
  3807. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3808. "td>\n"
  3809. " <td width=\"194\"><span style=\"color:"
  3810. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3811. " </tr>\n"
  3812. " <tr height=\"20\">\n"
  3813. " <td height=\"20\">&nbsp;</td>\n"
  3814. " <td>&nbsp;</td>\n"
  3815. " </tr>\n"
  3816. " <tr height=\"20\">\n"
  3817. " <td height=\"20\"><strong>1</strong></td>\n"
  3818. " <td>&nbsp;Switch to Project Tab</td>\n"
  3819. " </tr>\n"
  3820. " <tr height=\"20\">\n"
  3821. " <td height=\"20\"><strong>2</strong></td>\n"
  3822. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3823. " </tr>\n"
  3824. " <tr height=\"20\">\n"
  3825. " <td height=\"20\"><strong>3</strong></td>\n"
  3826. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3827. " </tr>\n"
  3828. " <tr height=\"20\">\n"
  3829. " <td height=\"20\">&nbsp;</td>\n"
  3830. " <td>&nbsp;</td>\n"
  3831. " </tr>\n"
  3832. " <tr height=\"20\">\n"
  3833. " <td height=\"20\"><strong>B</strong></td>\n"
  3834. " <td>&nbsp;New Gerber</td>\n"
  3835. " </tr>\n"
  3836. " <tr height=\"20\">\n"
  3837. " <td height=\"20\"><strong>E</strong></td>\n"
  3838. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3839. " </tr>\n"
  3840. " <tr height=\"20\">\n"
  3841. " <td height=\"20\"><strong>G</strong></td>\n"
  3842. " <td>&nbsp;Grid On/Off</td>\n"
  3843. " </tr>\n"
  3844. " <tr height=\"20\">\n"
  3845. " <td height=\"20\"><strong>J</strong></td>\n"
  3846. " <td>&nbsp;Jump to Coordinates</td>\n"
  3847. " </tr>\n"
  3848. " <tr height=\"20\">\n"
  3849. " <td height=\"20\"><strong>L</strong></td>\n"
  3850. " <td>&nbsp;New Excellon</td>\n"
  3851. " </tr>\n"
  3852. " <tr height=\"20\">\n"
  3853. " <td height=\"20\"><strong>M</strong></td>\n"
  3854. " <td>&nbsp;Move Obj</td>\n"
  3855. " </tr>\n"
  3856. " <tr height=\"20\">\n"
  3857. " <td height=\"20\"><strong>N</strong></td>\n"
  3858. " <td>&nbsp;New Geometry</td>\n"
  3859. " </tr>\n"
  3860. " <tr height=\"20\">\n"
  3861. " <td height=\"20\"><strong>O</strong></td>\n"
  3862. " <td>&nbsp;Set Origin</td>\n"
  3863. " </tr>\n"
  3864. " <tr height=\"20\">\n"
  3865. " <td height=\"20\"><strong>Q</strong></td>\n"
  3866. " <td>&nbsp;Change Units</td>\n"
  3867. " </tr>\n"
  3868. " <tr height=\"20\">\n"
  3869. " <td height=\"20\"><strong>P</strong></td>\n"
  3870. " <td>&nbsp;Open Properties Tool</td>\n"
  3871. " </tr>\n"
  3872. " <tr height=\"20\">\n"
  3873. " <td height=\"20\"><strong>R</strong></td>\n"
  3874. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3875. " </tr>\n"
  3876. " <tr height=\"20\">\n"
  3877. " <td height=\"20\"><strong>S</strong></td>\n"
  3878. " <td>&nbsp;Shell Toggle</td>\n"
  3879. " </tr>\n"
  3880. " <tr height=\"20\">\n"
  3881. " <td height=\"20\"><strong>T</strong></td>\n"
  3882. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  3883. "or in Tools NCC or Tools Paint)</td>\n"
  3884. " </tr>\n"
  3885. " <tr height=\"20\">\n"
  3886. " <td height=\"20\"><strong>V</strong></td>\n"
  3887. " <td>&nbsp;Zoom Fit</td>\n"
  3888. " </tr>\n"
  3889. " <tr height=\"20\">\n"
  3890. " <td height=\"20\"><strong>X</strong></td>\n"
  3891. " <td>&nbsp;Flip on X_axis</td>\n"
  3892. " </tr>\n"
  3893. " <tr height=\"20\">\n"
  3894. " <td height=\"20\"><strong>Y</strong></td>\n"
  3895. " <td>&nbsp;Flip on Y_axis</td>\n"
  3896. " </tr>\n"
  3897. " <tr height=\"20\">\n"
  3898. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3899. " <td>&nbsp;Zoom Out</td>\n"
  3900. " </tr>\n"
  3901. " <tr height=\"20\">\n"
  3902. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3903. " <td>&nbsp;Zoom In</td>\n"
  3904. " </tr>\n"
  3905. " <tr height=\"20\">\n"
  3906. " <td height=\"20\">&nbsp;</td>\n"
  3907. " <td>&nbsp;</td>\n"
  3908. " </tr>\n"
  3909. " <tr height=\"20\">\n"
  3910. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3911. " <td>&nbsp;Select All</td>\n"
  3912. " </tr>\n"
  3913. " <tr height=\"20\">\n"
  3914. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3915. " <td>&nbsp;Copy Obj</td>\n"
  3916. " </tr>\n"
  3917. " <tr height=\"20\">\n"
  3918. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3919. " <td>&nbsp;Open Excellon File</td>\n"
  3920. " </tr>\n"
  3921. " <tr height=\"20\">\n"
  3922. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3923. " <td>&nbsp;Open Gerber File</td>\n"
  3924. " </tr>\n"
  3925. " <tr height=\"20\">\n"
  3926. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3927. " <td>&nbsp;New Project</td>\n"
  3928. " </tr>\n"
  3929. " <tr height=\"20\">\n"
  3930. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3931. " <td>&nbsp;Measurement Tool</td>\n"
  3932. " </tr>\n"
  3933. " <tr height=\"20\">\n"
  3934. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3935. " <td>&nbsp;Open Project</td>\n"
  3936. " </tr>\n"
  3937. " <tr height=\"20\">\n"
  3938. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3939. " <td>&nbsp;Save Project As</td>\n"
  3940. " </tr>\n"
  3941. " <tr height=\"20\">\n"
  3942. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3943. " <td>&nbsp;Toggle Plot Area</td>\n"
  3944. " </tr>\n"
  3945. " <tr height=\"20\">\n"
  3946. " <td height=\"20\">&nbsp;</td>\n"
  3947. " <td>&nbsp;</td>\n"
  3948. " </tr>\n"
  3949. " <tr height=\"20\">\n"
  3950. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3951. " <td>&nbsp;Copy Obj_Name</td>\n"
  3952. " </tr>\n"
  3953. " <tr height=\"20\">\n"
  3954. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3955. " <td>&nbsp;Toggle Code Editor</td>\n"
  3956. " </tr>\n"
  3957. " <tr height=\"20\">\n"
  3958. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3959. " <td>&nbsp;Toggle the axis</td>\n"
  3960. " </tr>\n"
  3961. " <tr height=\"20\">\n"
  3962. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3963. " <td>&nbsp;Open Preferences Window</td>\n"
  3964. " </tr>\n"
  3965. " <tr height=\"20\">\n"
  3966. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3967. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3968. " </tr>\n"
  3969. " <tr height=\"20\">\n"
  3970. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3971. " <td>&nbsp;Run a Script</td>\n"
  3972. " </tr>\n"
  3973. " <tr height=\"20\">\n"
  3974. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3975. " <td>&nbsp;Toggle the workspace</td>\n"
  3976. " </tr>\n"
  3977. " <tr height=\"20\">\n"
  3978. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3979. " <td>&nbsp;Skew on X axis</td>\n"
  3980. " </tr>\n"
  3981. " <tr height=\"20\">\n"
  3982. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3983. " <td>&nbsp;Skew on Y axis</td>\n"
  3984. " </tr>\n"
  3985. " <tr height=\"20\">\n"
  3986. " <td height=\"20\">&nbsp;</td>\n"
  3987. " <td>&nbsp;</td>\n"
  3988. " </tr>\n"
  3989. " <tr height=\"20\">\n"
  3990. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3991. " <td>&nbsp;Calculators Tool</td>\n"
  3992. " </tr>\n"
  3993. " <tr height=\"20\">\n"
  3994. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3995. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3996. " </tr>\n"
  3997. " <tr height=\"20\">\n"
  3998. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3999. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4000. " </tr>\n"
  4001. " <tr height=\"20\">\n"
  4002. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4003. " <td>&nbsp;Film PCB Tool</td>\n"
  4004. " </tr>\n"
  4005. " <tr height=\"20\">\n"
  4006. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4007. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4008. " </tr>\n"
  4009. " <tr height=\"20\">\n"
  4010. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4011. " <td>&nbsp;Paint Area Tool</td>\n"
  4012. " </tr>\n"
  4013. " <tr height=\"20\">\n"
  4014. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4015. " <td>&nbsp;PDF Import Tool</td>\n"
  4016. " </tr>\n"
  4017. " <tr height=\"20\">\n"
  4018. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4019. " <td>&nbsp;Transformations Tool</td>\n"
  4020. " </tr>\n"
  4021. " <tr height=\"20\">\n"
  4022. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4023. " <td>&nbsp;View File Source</td>\n"
  4024. " </tr>\n"
  4025. " <tr height=\"20\">\n"
  4026. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4027. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4028. " </tr>\n"
  4029. " <tr height=\"20\">\n"
  4030. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4031. " <td>&nbsp;Enable all Plots</td>\n"
  4032. " </tr>\n"
  4033. " <tr height=\"20\">\n"
  4034. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4035. " <td>&nbsp;Disable all Plots</td>\n"
  4036. " </tr>\n"
  4037. " <tr height=\"20\">\n"
  4038. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4039. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4040. " </tr>\n"
  4041. " <tr height=\"20\">\n"
  4042. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4043. " <td>&nbsp;Toggle Full Screen</td>\n"
  4044. " </tr> \n"
  4045. " <tr height=\"20\">\n"
  4046. " <td height=\"20\">&nbsp;</td>\n"
  4047. " <td>&nbsp;</td>\n"
  4048. " </tr>\n"
  4049. " <tr height=\"20\">\n"
  4050. " <td height=\"20\"><strong>CTRL+ALT+X</strong></td>\n"
  4051. " <td>&nbsp;Abort current task (gracefully)</td>\n"
  4052. " </tr> \n"
  4053. " <tr height=\"20\">\n"
  4054. " <td height=\"20\">&nbsp;</td>\n"
  4055. " <td>&nbsp;</td>\n"
  4056. " </tr>\n"
  4057. " <tr height=\"20\">\n"
  4058. " <td height=\"20\"><strong>F1</strong></td>\n"
  4059. " <td>&nbsp;Open Online Manual</td>\n"
  4060. " </tr>\n"
  4061. " <tr height=\"20\">\n"
  4062. " <td height=\"20\"><strong>F4</strong></td>\n"
  4063. " <td>&nbsp;Open Online Tutorials</td>\n"
  4064. " </tr>\n"
  4065. " <tr height=\"20\">\n"
  4066. " <td height=\"20\"><strong>Del</strong></td>\n"
  4067. " <td>&nbsp;Delete Object</td>\n"
  4068. " </tr>\n"
  4069. " <tr height=\"20\">\n"
  4070. " <td height=\"20\"><strong>Del</strong></td>\n"
  4071. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4072. " </tr>\n"
  4073. " <tr height=\"20\">\n"
  4074. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4075. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4076. "Side)</td>\n"
  4077. " </tr>\n"
  4078. " <tr height=\"20\">\n"
  4079. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4080. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4081. " </tr>\n"
  4082. " <tr height=\"20\">\n"
  4083. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4084. " <td>&nbsp;Deselects all objects</td>\n"
  4085. " </tr>\n"
  4086. " </tbody>\n"
  4087. " </table>\n"
  4088. " \n"
  4089. " "
  4090. msgstr ""
  4091. #: flatcamGUI/FlatCAMGUI.py:1311
  4092. msgid ""
  4093. "<b>Editor Shortcut list</b><br>\n"
  4094. " <br>\n"
  4095. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4096. "strong><br>\n"
  4097. " \n"
  4098. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4099. "\"width:283px\">\n"
  4100. " <tbody>\n"
  4101. " <tr height=\"20\">\n"
  4102. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4103. "td>\n"
  4104. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4105. " </tr>\n"
  4106. " <tr height=\"20\">\n"
  4107. " <td height=\"20\"><strong>B</strong></td>\n"
  4108. " <td>&nbsp;Buffer Tool</td>\n"
  4109. " </tr>\n"
  4110. " <tr height=\"20\">\n"
  4111. " <td height=\"20\"><strong>C</strong></td>\n"
  4112. " <td>&nbsp;Copy Geo Item</td>\n"
  4113. " </tr>\n"
  4114. " <tr height=\"20\">\n"
  4115. " <td height=\"20\"><strong>D</strong></td>\n"
  4116. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4117. "direction: CW or CCW</td>\n"
  4118. " </tr>\n"
  4119. " <tr height=\"20\">\n"
  4120. " <td height=\"20\"><strong>E</strong></td>\n"
  4121. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4122. " </tr>\n"
  4123. " <tr height=\"20\">\n"
  4124. " <td height=\"20\"><strong>I</strong></td>\n"
  4125. " <td>&nbsp;Paint Tool</td>\n"
  4126. " </tr>\n"
  4127. " <tr height=\"20\">\n"
  4128. " <td height=\"20\"><strong>J</strong></td>\n"
  4129. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4130. " </tr>\n"
  4131. " <tr height=\"20\">\n"
  4132. " <td height=\"20\"><strong>K</strong></td>\n"
  4133. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4134. " </tr>\n"
  4135. " <tr height=\"20\">\n"
  4136. " <td height=\"20\"><strong>M</strong></td>\n"
  4137. " <td>&nbsp;Move Geo Item</td>\n"
  4138. " </tr>\n"
  4139. " <tr height=\"20\">\n"
  4140. " <td height=\"20\"><strong>M</strong></td>\n"
  4141. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4142. "modes</td>\n"
  4143. " </tr>\n"
  4144. " <tr height=\"20\">\n"
  4145. " <td height=\"20\"><strong>N</strong></td>\n"
  4146. " <td>&nbsp;Draw a Polygon</td>\n"
  4147. " </tr>\n"
  4148. " <tr height=\"20\">\n"
  4149. " <td height=\"20\"><strong>O</strong></td>\n"
  4150. " <td>&nbsp;Draw a Circle</td>\n"
  4151. " </tr>\n"
  4152. " <tr height=\"20\">\n"
  4153. " <td height=\"20\"><strong>P</strong></td>\n"
  4154. " <td>&nbsp;Draw a Path</td>\n"
  4155. " </tr>\n"
  4156. " <tr height=\"20\">\n"
  4157. " <td height=\"20\"><strong>R</strong></td>\n"
  4158. " <td>&nbsp;Draw Rectangle</td>\n"
  4159. " </tr>\n"
  4160. " <tr height=\"20\">\n"
  4161. " <td height=\"20\"><strong>S</strong></td>\n"
  4162. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4163. " </tr>\n"
  4164. " <tr height=\"20\">\n"
  4165. " <td height=\"20\"><strong>T</strong></td>\n"
  4166. " <td>&nbsp;Add Text Tool</td>\n"
  4167. " </tr>\n"
  4168. " <tr height=\"20\">\n"
  4169. " <td height=\"20\"><strong>U</strong></td>\n"
  4170. " <td>&nbsp;Polygon Union Tool</td>\n"
  4171. " </tr>\n"
  4172. " <tr height=\"20\">\n"
  4173. " <td height=\"20\"><strong>X</strong></td>\n"
  4174. " <td>&nbsp;Flip shape on X axis</td>\n"
  4175. " </tr>\n"
  4176. " <tr height=\"20\">\n"
  4177. " <td height=\"20\"><strong>Y</strong></td>\n"
  4178. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4179. " </tr>\n"
  4180. " <tr height=\"20\">\n"
  4181. " <td height=\"20\">&nbsp;</td>\n"
  4182. " <td>&nbsp;</td>\n"
  4183. " </tr>\n"
  4184. " <tr height=\"20\">\n"
  4185. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4186. " <td>&nbsp;Skew shape on X axis</td>\n"
  4187. " </tr>\n"
  4188. " <tr height=\"20\">\n"
  4189. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4190. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4191. " </tr>\n"
  4192. " <tr height=\"20\">\n"
  4193. " <td height=\"20\">&nbsp;</td>\n"
  4194. " <td>&nbsp;</td>\n"
  4195. " </tr>\n"
  4196. " <tr height=\"20\">\n"
  4197. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4198. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4199. " </tr>\n"
  4200. " <tr height=\"20\">\n"
  4201. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4202. " <td>&nbsp;Offset shape on X axis</td>\n"
  4203. " </tr>\n"
  4204. " <tr height=\"20\">\n"
  4205. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4206. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4207. " </tr>\n"
  4208. " <tr height=\"20\">\n"
  4209. " <td height=\"20\">&nbsp;</td>\n"
  4210. " <td>&nbsp;</td>\n"
  4211. " </tr>\n"
  4212. " <tr height=\"20\">\n"
  4213. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4214. " <td>&nbsp;Measurement Tool</td>\n"
  4215. " </tr>\n"
  4216. " <tr height=\"20\">\n"
  4217. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4218. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4219. " </tr>\n"
  4220. " <tr height=\"20\">\n"
  4221. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4222. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4223. " </tr>\n"
  4224. " <tr height=\"20\">\n"
  4225. " <td height=\"20\">&nbsp;</td>\n"
  4226. " <td>&nbsp;</td>\n"
  4227. " </tr>\n"
  4228. " <tr height=\"20\">\n"
  4229. " <td height=\"20\"><strong>Space</strong></td>\n"
  4230. " <td>&nbsp;Rotate Geometry</td>\n"
  4231. " </tr>\n"
  4232. " <tr height=\"20\">\n"
  4233. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4234. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4235. " </tr>\n"
  4236. " <tr height=\"20\">\n"
  4237. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4238. " <td>&nbsp;Abort and return to Select</td>\n"
  4239. " </tr>\n"
  4240. " <tr height=\"20\">\n"
  4241. " <td height=\"20\"><strong>Del</strong></td>\n"
  4242. " <td>&nbsp;Delete Shape</td>\n"
  4243. " </tr>\n"
  4244. " </tbody>\n"
  4245. " </table>\n"
  4246. " <br>\n"
  4247. " <br>\n"
  4248. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4249. "strong><br>\n"
  4250. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4251. "\"width:283px\">\n"
  4252. " <tbody>\n"
  4253. " <tr height=\"20\">\n"
  4254. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4255. "td>\n"
  4256. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4257. " </tr>\n"
  4258. " <tr height=\"20\">\n"
  4259. " <td height=\"20\"><strong>C</strong></td>\n"
  4260. " <td>&nbsp;Copy Drill(s)</td>\n"
  4261. " </tr>\n"
  4262. " <tr height=\"20\">\n"
  4263. " <td height=\"20\"><strong>D</strong></td>\n"
  4264. " <td>&nbsp;Add Drill</td>\n"
  4265. " </tr>\n"
  4266. " <tr height=\"20\">\n"
  4267. " <td height=\"20\"><strong>J</strong></td>\n"
  4268. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4269. " </tr>\n"
  4270. " <tr height=\"20\">\n"
  4271. " <td height=\"20\"><strong>M</strong></td>\n"
  4272. " <td>&nbsp;Move Drill(s)</td>\n"
  4273. " </tr>\n"
  4274. " <tr height=\"20\">\n"
  4275. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4276. "td>\n"
  4277. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4278. " </tr>\n"
  4279. " <tr height=\"20\">\n"
  4280. " <td height=\"20\"><strong>R</strong></td>\n"
  4281. " <td>&nbsp;Resize Drill(s)</td>\n"
  4282. " </tr>\n"
  4283. " <tr height=\"20\">\n"
  4284. " <td height=\"20\"><strong>T</strong></td>\n"
  4285. " <td>&nbsp;Add a new Tool</td>\n"
  4286. " </tr>\n"
  4287. " <tr height=\"20\">\n"
  4288. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4289. "td>\n"
  4290. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4291. " </tr>\n"
  4292. " <tr height=\"20\">\n"
  4293. " <td height=\"20\">&nbsp;</td>\n"
  4294. " <td>&nbsp;</td>\n"
  4295. " </tr>\n"
  4296. " <tr height=\"20\">\n"
  4297. " <td height=\"20\"><strong>Del</strong></td>\n"
  4298. " <td>&nbsp;Delete Drill(s)</td>\n"
  4299. " </tr>\n"
  4300. " <tr height=\"20\">\n"
  4301. " <td height=\"20\"><strong>Del</strong></td>\n"
  4302. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4303. " </tr>\n"
  4304. " <tr height=\"20\">\n"
  4305. " <td height=\"20\">&nbsp;</td>\n"
  4306. " <td>&nbsp;</td>\n"
  4307. " </tr>\n"
  4308. " <tr height=\"20\">\n"
  4309. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4310. " <td>&nbsp;Abort and return to Select</td>\n"
  4311. " </tr>\n"
  4312. " <tr height=\"20\">\n"
  4313. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4314. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4315. " </tr>\n"
  4316. " </tbody>\n"
  4317. " </table>\n"
  4318. " <br>\n"
  4319. " <br>\n"
  4320. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4321. "strong><br>\n"
  4322. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4323. "\"width:283px\">\n"
  4324. " <tbody>\n"
  4325. " <tr height=\"20\">\n"
  4326. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4327. "td>\n"
  4328. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4329. " </tr>\n"
  4330. " <tr height=\"20\">\n"
  4331. " <td height=\"20\"><strong>B</strong></td>\n"
  4332. " <td>&nbsp;Buffer</td>\n"
  4333. " </tr>\n"
  4334. " <tr height=\"20\">\n"
  4335. " <td height=\"20\"><strong>C</strong></td>\n"
  4336. " <td>&nbsp;Copy</td>\n"
  4337. " </tr>\n"
  4338. " <tr height=\"20\">\n"
  4339. " <td height=\"20\"><strong>D</strong></td>\n"
  4340. " <td>&nbsp;Add Disc</td>\n"
  4341. " </tr>\n"
  4342. " <tr height=\"20\">\n"
  4343. " <td height=\"20\"><strong>E</strong></td>\n"
  4344. " <td>&nbsp;Add SemiDisc</td>\n"
  4345. " </tr>\n"
  4346. " <tr height=\"20\">\n"
  4347. " <td height=\"20\"><strong>J</strong></td>\n"
  4348. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4349. " </tr>\n"
  4350. " <tr height=\"20\">\n"
  4351. " <td height=\"20\"><strong>M</strong></td>\n"
  4352. " <td>&nbsp;Move</td>\n"
  4353. " </tr>\n"
  4354. " <tr height=\"20\">\n"
  4355. " <td height=\"20\"><strong>N</strong></td>\n"
  4356. " <td>&nbsp;Add Region</td>\n"
  4357. " </tr>\n"
  4358. " <tr height=\"20\">\n"
  4359. " <td height=\"20\"><strong>P</strong></td>\n"
  4360. " <td>&nbsp;Add Pad</td>\n"
  4361. " </tr>\n"
  4362. " <tr height=\"20\">\n"
  4363. " <td height=\"20\"><strong>R</strong></td>\n"
  4364. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4365. "REVERSE the bend modes</td>\n"
  4366. " </tr>\n"
  4367. " <tr height=\"20\">\n"
  4368. " <td height=\"20\"><strong>S</strong></td>\n"
  4369. " <td>&nbsp;Scale</td>\n"
  4370. " </tr>\n"
  4371. " <tr height=\"20\">\n"
  4372. " <td height=\"20\"><strong>T</strong></td>\n"
  4373. " <td>&nbsp;Add Track</td>\n"
  4374. " </tr>\n"
  4375. " <tr height=\"20\">\n"
  4376. " <td height=\"20\"><strong>T</strong></td>\n"
  4377. " <td>&nbsp;Within Track & Region Tools will cycle "
  4378. "FORWARD the bend modes</td>\n"
  4379. " </tr>\n"
  4380. " <tr height=\"20\">\n"
  4381. " <td height=\"20\">&nbsp;</td>\n"
  4382. " <td>&nbsp;</td>\n"
  4383. " </tr>\n"
  4384. " <tr height=\"20\">\n"
  4385. " <td height=\"20\"><strong>Del</strong></td>\n"
  4386. " <td>&nbsp;Delete</td>\n"
  4387. " </tr>\n"
  4388. " <tr height=\"20\">\n"
  4389. " <td height=\"20\"><strong>Del</strong></td>\n"
  4390. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4391. " </tr>\n"
  4392. " <tr height=\"20\">\n"
  4393. " <td height=\"20\">&nbsp;</td>\n"
  4394. " <td>&nbsp;</td>\n"
  4395. " </tr>\n"
  4396. " <tr height=\"20\">\n"
  4397. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4398. " <td>&nbsp;Abort and return to Select</td>\n"
  4399. " </tr>\n"
  4400. " <tr height=\"20\">\n"
  4401. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4402. " <td>&nbsp;Eraser Tool</td>\n"
  4403. " </tr>\n"
  4404. " <tr height=\"20\">\n"
  4405. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4406. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4407. " </tr>\n"
  4408. " <tr height=\"20\">\n"
  4409. " <td height=\"20\">&nbsp;</td>\n"
  4410. " <td>&nbsp;</td>\n"
  4411. " </tr>\n"
  4412. " <tr height=\"20\">\n"
  4413. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4414. " <td>&nbsp;Mark Area Tool</td>\n"
  4415. " </tr>\n"
  4416. " <tr height=\"20\">\n"
  4417. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4418. " <td>&nbsp;Poligonize Tool</td>\n"
  4419. " </tr>\n"
  4420. " <tr height=\"20\">\n"
  4421. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4422. " <td>&nbsp;Transformation Tool</td>\n"
  4423. " </tr>\n"
  4424. " </tbody>\n"
  4425. " </table>\n"
  4426. " "
  4427. msgstr ""
  4428. #: flatcamGUI/FlatCAMGUI.py:1642
  4429. msgid "Toggle Visibility"
  4430. msgstr ""
  4431. #: flatcamGUI/FlatCAMGUI.py:1643
  4432. msgid "Toggle Panel"
  4433. msgstr ""
  4434. #: flatcamGUI/FlatCAMGUI.py:1646
  4435. msgid "New"
  4436. msgstr ""
  4437. #: flatcamGUI/FlatCAMGUI.py:1647
  4438. msgid "Geometry"
  4439. msgstr ""
  4440. #: flatcamGUI/FlatCAMGUI.py:1649
  4441. msgid "Excellon"
  4442. msgstr ""
  4443. #: flatcamGUI/FlatCAMGUI.py:1654
  4444. msgid "Grids"
  4445. msgstr ""
  4446. #: flatcamGUI/FlatCAMGUI.py:1656
  4447. msgid "View"
  4448. msgstr ""
  4449. #: flatcamGUI/FlatCAMGUI.py:1658
  4450. msgid "Clear Plot"
  4451. msgstr ""
  4452. #: flatcamGUI/FlatCAMGUI.py:1659
  4453. msgid "Replot"
  4454. msgstr ""
  4455. #: flatcamGUI/FlatCAMGUI.py:1662
  4456. msgid "Geo Editor"
  4457. msgstr ""
  4458. #: flatcamGUI/FlatCAMGUI.py:1663
  4459. msgid "Path"
  4460. msgstr ""
  4461. #: flatcamGUI/FlatCAMGUI.py:1664
  4462. msgid "Rectangle"
  4463. msgstr ""
  4464. #: flatcamGUI/FlatCAMGUI.py:1666
  4465. msgid "Circle"
  4466. msgstr ""
  4467. #: flatcamGUI/FlatCAMGUI.py:1667
  4468. msgid "Polygon"
  4469. msgstr ""
  4470. #: flatcamGUI/FlatCAMGUI.py:1668
  4471. msgid "Arc"
  4472. msgstr ""
  4473. #: flatcamGUI/FlatCAMGUI.py:1671
  4474. msgid "Text"
  4475. msgstr ""
  4476. #: flatcamGUI/FlatCAMGUI.py:1677
  4477. msgid "Union"
  4478. msgstr ""
  4479. #: flatcamGUI/FlatCAMGUI.py:1678
  4480. msgid "Intersection"
  4481. msgstr ""
  4482. #: flatcamGUI/FlatCAMGUI.py:1679
  4483. msgid "Substraction"
  4484. msgstr ""
  4485. #: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
  4486. #: flatcamGUI/ObjectUI.py:1409
  4487. msgid "Cut"
  4488. msgstr ""
  4489. #: flatcamGUI/FlatCAMGUI.py:1687
  4490. msgid "Pad"
  4491. msgstr ""
  4492. #: flatcamGUI/FlatCAMGUI.py:1688
  4493. msgid "Pad Array"
  4494. msgstr ""
  4495. #: flatcamGUI/FlatCAMGUI.py:1691
  4496. msgid "Track"
  4497. msgstr ""
  4498. #: flatcamGUI/FlatCAMGUI.py:1692
  4499. msgid "Region"
  4500. msgstr ""
  4501. #: flatcamGUI/FlatCAMGUI.py:1708
  4502. msgid "Exc Editor"
  4503. msgstr ""
  4504. #: flatcamGUI/FlatCAMGUI.py:1709
  4505. msgid "Add Drill"
  4506. msgstr ""
  4507. #: flatcamGUI/FlatCAMGUI.py:1745
  4508. msgid "Print Preview"
  4509. msgstr ""
  4510. #: flatcamGUI/FlatCAMGUI.py:1746
  4511. msgid "Print Code"
  4512. msgstr ""
  4513. #: flatcamGUI/FlatCAMGUI.py:1747
  4514. msgid "Find in Code"
  4515. msgstr ""
  4516. #: flatcamGUI/FlatCAMGUI.py:1752
  4517. msgid "Replace With"
  4518. msgstr ""
  4519. #: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
  4520. #: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
  4521. msgid "All"
  4522. msgstr ""
  4523. #: flatcamGUI/FlatCAMGUI.py:1758
  4524. msgid ""
  4525. "When checked it will replace all instances in the 'Find' box\n"
  4526. "with the text in the 'Replace' box.."
  4527. msgstr ""
  4528. #: flatcamGUI/FlatCAMGUI.py:1761
  4529. msgid "Open Code"
  4530. msgstr ""
  4531. #: flatcamGUI/FlatCAMGUI.py:1762
  4532. msgid "Save Code"
  4533. msgstr ""
  4534. #: flatcamGUI/FlatCAMGUI.py:1797
  4535. msgid ""
  4536. "Relative neasurement.\n"
  4537. "Reference is last click position"
  4538. msgstr ""
  4539. #: flatcamGUI/FlatCAMGUI.py:1803
  4540. msgid ""
  4541. "Absolute neasurement.\n"
  4542. "Reference is (X=0, Y= 0) position"
  4543. msgstr ""
  4544. #: flatcamGUI/FlatCAMGUI.py:1933
  4545. msgid "Lock Toolbars"
  4546. msgstr ""
  4547. #: flatcamGUI/FlatCAMGUI.py:2038
  4548. msgid "Select 'Esc'"
  4549. msgstr ""
  4550. #: flatcamGUI/FlatCAMGUI.py:2063
  4551. msgid "Copy Objects"
  4552. msgstr ""
  4553. #: flatcamGUI/FlatCAMGUI.py:2065
  4554. msgid "Delete Shape"
  4555. msgstr ""
  4556. #: flatcamGUI/FlatCAMGUI.py:2070
  4557. msgid "Move Objects"
  4558. msgstr ""
  4559. #: flatcamGUI/FlatCAMGUI.py:2506
  4560. msgid ""
  4561. "Please first select a geometry item to be cutted\n"
  4562. "then select the geometry item that will be cutted\n"
  4563. "out of the first item. In the end press ~X~ key or\n"
  4564. "the toolbar button."
  4565. msgstr ""
  4566. #: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
  4567. #: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
  4568. msgid "Warning"
  4569. msgstr ""
  4570. #: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
  4571. msgid "[success] Done."
  4572. msgstr ""
  4573. #: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
  4574. #: flatcamGUI/FlatCAMGUI.py:2999
  4575. msgid "[WARNING_NOTCL] Cancelled."
  4576. msgstr ""
  4577. #: flatcamGUI/FlatCAMGUI.py:2645
  4578. msgid ""
  4579. "Please select geometry items \n"
  4580. "on which to perform Intersection Tool."
  4581. msgstr ""
  4582. #: flatcamGUI/FlatCAMGUI.py:2704
  4583. msgid ""
  4584. "Please select geometry items \n"
  4585. "on which to perform Substraction Tool."
  4586. msgstr ""
  4587. #: flatcamGUI/FlatCAMGUI.py:2724
  4588. msgid ""
  4589. "Please select geometry items \n"
  4590. "on which to perform union."
  4591. msgstr ""
  4592. #: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
  4593. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4594. msgstr ""
  4595. #: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
  4596. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4597. msgstr ""
  4598. #: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
  4599. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4600. msgstr ""
  4601. #: flatcamGUI/FlatCAMGUI.py:3155
  4602. msgid "New Tool ..."
  4603. msgstr ""
  4604. #: flatcamGUI/FlatCAMGUI.py:3156
  4605. msgid "Enter a Tool Diameter"
  4606. msgstr ""
  4607. #: flatcamGUI/FlatCAMGUI.py:3164
  4608. #, python-brace-format
  4609. msgid "[success] Added new tool with dia: {dia} {units}"
  4610. msgstr ""
  4611. #: flatcamGUI/FlatCAMGUI.py:3211
  4612. msgid "Measurement Tool exit..."
  4613. msgstr ""
  4614. #: flatcamGUI/FlatCAMGUI.py:3312
  4615. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  4616. msgstr ""
  4617. #: flatcamGUI/FlatCAMGUI.py:3554
  4618. msgid "GUI Preferences"
  4619. msgstr ""
  4620. #: flatcamGUI/FlatCAMGUI.py:3560
  4621. msgid "Grid X value"
  4622. msgstr ""
  4623. #: flatcamGUI/FlatCAMGUI.py:3562
  4624. msgid "This is the Grid snap value on X axis."
  4625. msgstr ""
  4626. #: flatcamGUI/FlatCAMGUI.py:3567
  4627. msgid "Grid Y value"
  4628. msgstr ""
  4629. #: flatcamGUI/FlatCAMGUI.py:3569
  4630. msgid "This is the Grid snap value on Y axis."
  4631. msgstr ""
  4632. #: flatcamGUI/FlatCAMGUI.py:3574
  4633. msgid "Snap Max"
  4634. msgstr ""
  4635. #: flatcamGUI/FlatCAMGUI.py:3579
  4636. msgid "Workspace"
  4637. msgstr ""
  4638. #: flatcamGUI/FlatCAMGUI.py:3581
  4639. msgid ""
  4640. "Draw a delimiting rectangle on canvas.\n"
  4641. "The purpose is to illustrate the limits for our work."
  4642. msgstr ""
  4643. #: flatcamGUI/FlatCAMGUI.py:3584
  4644. msgid "Wk. format"
  4645. msgstr ""
  4646. #: flatcamGUI/FlatCAMGUI.py:3586
  4647. msgid ""
  4648. "Select the type of rectangle to be used on canvas,\n"
  4649. "as valid workspace."
  4650. msgstr ""
  4651. #: flatcamGUI/FlatCAMGUI.py:3599
  4652. msgid "Plot Fill"
  4653. msgstr ""
  4654. #: flatcamGUI/FlatCAMGUI.py:3601
  4655. msgid ""
  4656. "Set the fill color for plotted objects.\n"
  4657. "First 6 digits are the color and the last 2\n"
  4658. "digits are for alpha (transparency) level."
  4659. msgstr ""
  4660. #: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
  4661. #: flatcamGUI/FlatCAMGUI.py:3715
  4662. msgid "Alpha Level"
  4663. msgstr ""
  4664. #: flatcamGUI/FlatCAMGUI.py:3617
  4665. msgid "Set the fill transparency for plotted objects."
  4666. msgstr ""
  4667. #: flatcamGUI/FlatCAMGUI.py:3634
  4668. msgid "Plot Line"
  4669. msgstr ""
  4670. #: flatcamGUI/FlatCAMGUI.py:3636
  4671. msgid "Set the line color for plotted objects."
  4672. msgstr ""
  4673. #: flatcamGUI/FlatCAMGUI.py:3648
  4674. msgid "Sel. Fill"
  4675. msgstr ""
  4676. #: flatcamGUI/FlatCAMGUI.py:3650
  4677. msgid ""
  4678. "Set the fill color for the selection box\n"
  4679. "in case that the selection is done from left to right.\n"
  4680. "First 6 digits are the color and the last 2\n"
  4681. "digits are for alpha (transparency) level."
  4682. msgstr ""
  4683. #: flatcamGUI/FlatCAMGUI.py:3667
  4684. msgid "Set the fill transparency for the 'left to right' selection box."
  4685. msgstr ""
  4686. #: flatcamGUI/FlatCAMGUI.py:3684
  4687. msgid "Sel. Line"
  4688. msgstr ""
  4689. #: flatcamGUI/FlatCAMGUI.py:3686
  4690. msgid "Set the line color for the 'left to right' selection box."
  4691. msgstr ""
  4692. #: flatcamGUI/FlatCAMGUI.py:3698
  4693. msgid "Sel2. Fill"
  4694. msgstr ""
  4695. #: flatcamGUI/FlatCAMGUI.py:3700
  4696. msgid ""
  4697. "Set the fill color for the selection box\n"
  4698. "in case that the selection is done from right to left.\n"
  4699. "First 6 digits are the color and the last 2\n"
  4700. "digits are for alpha (transparency) level."
  4701. msgstr ""
  4702. #: flatcamGUI/FlatCAMGUI.py:3717
  4703. msgid "Set the fill transparency for selection 'right to left' box."
  4704. msgstr ""
  4705. #: flatcamGUI/FlatCAMGUI.py:3734
  4706. msgid "Sel2. Line"
  4707. msgstr ""
  4708. #: flatcamGUI/FlatCAMGUI.py:3736
  4709. msgid "Set the line color for the 'right to left' selection box."
  4710. msgstr ""
  4711. #: flatcamGUI/FlatCAMGUI.py:3748
  4712. msgid "Editor Draw"
  4713. msgstr ""
  4714. #: flatcamGUI/FlatCAMGUI.py:3750
  4715. msgid "Set the color for the shape."
  4716. msgstr ""
  4717. #: flatcamGUI/FlatCAMGUI.py:3762
  4718. msgid "Editor Draw Sel."
  4719. msgstr ""
  4720. #: flatcamGUI/FlatCAMGUI.py:3764
  4721. msgid "Set the color of the shape when selected."
  4722. msgstr ""
  4723. #: flatcamGUI/FlatCAMGUI.py:3776
  4724. msgid "Project Items"
  4725. msgstr ""
  4726. #: flatcamGUI/FlatCAMGUI.py:3778
  4727. msgid "Set the color of the items in Project Tab Tree."
  4728. msgstr ""
  4729. #: flatcamGUI/FlatCAMGUI.py:3789
  4730. msgid "Proj. Dis. Items"
  4731. msgstr ""
  4732. #: flatcamGUI/FlatCAMGUI.py:3791
  4733. msgid ""
  4734. "Set the color of the items in Project Tab Tree,\n"
  4735. "for the case when the items are disabled."
  4736. msgstr ""
  4737. #: flatcamGUI/FlatCAMGUI.py:3842
  4738. msgid "GUI Settings"
  4739. msgstr ""
  4740. #: flatcamGUI/FlatCAMGUI.py:3848
  4741. msgid "Layout"
  4742. msgstr ""
  4743. #: flatcamGUI/FlatCAMGUI.py:3850
  4744. msgid ""
  4745. "Select an layout for FlatCAM.\n"
  4746. "It is applied immediately."
  4747. msgstr ""
  4748. #: flatcamGUI/FlatCAMGUI.py:3866
  4749. msgid "Style"
  4750. msgstr ""
  4751. #: flatcamGUI/FlatCAMGUI.py:3868
  4752. msgid ""
  4753. "Select an style for FlatCAM.\n"
  4754. "It will be applied at the next app start."
  4755. msgstr ""
  4756. #: flatcamGUI/FlatCAMGUI.py:3879
  4757. msgid "HDPI Support"
  4758. msgstr ""
  4759. #: flatcamGUI/FlatCAMGUI.py:3881
  4760. msgid ""
  4761. "Enable High DPI support for FlatCAM.\n"
  4762. "It will be applied at the next app start."
  4763. msgstr ""
  4764. #: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
  4765. msgid "Clear GUI Settings"
  4766. msgstr ""
  4767. #: flatcamGUI/FlatCAMGUI.py:3896
  4768. msgid ""
  4769. "Clear the GUI settings for FlatCAM,\n"
  4770. "such as: layout, gui state, style, hdpi support etc."
  4771. msgstr ""
  4772. #: flatcamGUI/FlatCAMGUI.py:3899
  4773. msgid "Clear"
  4774. msgstr ""
  4775. #: flatcamGUI/FlatCAMGUI.py:3903
  4776. msgid "Hover Shape"
  4777. msgstr ""
  4778. #: flatcamGUI/FlatCAMGUI.py:3905
  4779. msgid ""
  4780. "Enable display of a hover shape for FlatCAM objects.\n"
  4781. "It is displayed whenever the mouse cursor is hovering\n"
  4782. "over any kind of not-selected object."
  4783. msgstr ""
  4784. #: flatcamGUI/FlatCAMGUI.py:3912
  4785. msgid "Sel. Shape"
  4786. msgstr ""
  4787. #: flatcamGUI/FlatCAMGUI.py:3914
  4788. msgid ""
  4789. "Enable the display of a selection shape for FlatCAM objects.\n"
  4790. "It is displayed whenever the mouse selects an object\n"
  4791. "either by clicking or dragging mouse from left to right or\n"
  4792. "right to left."
  4793. msgstr ""
  4794. #: flatcamGUI/FlatCAMGUI.py:3921
  4795. msgid "NB Font Size"
  4796. msgstr ""
  4797. #: flatcamGUI/FlatCAMGUI.py:3923
  4798. msgid ""
  4799. "This sets the font size for the elements found in the Notebook.\n"
  4800. "The notebook is the collapsible area in the left side of the GUI,\n"
  4801. "and include the Project, Selected and Tool tabs."
  4802. msgstr ""
  4803. #: flatcamGUI/FlatCAMGUI.py:3938
  4804. msgid "Axis Font Size"
  4805. msgstr ""
  4806. #: flatcamGUI/FlatCAMGUI.py:3940
  4807. msgid "This sets the font size for canvas axis."
  4808. msgstr ""
  4809. #: flatcamGUI/FlatCAMGUI.py:3991
  4810. msgid "Are you sure you want to delete the GUI Settings? \n"
  4811. msgstr ""
  4812. #: flatcamGUI/FlatCAMGUI.py:4015
  4813. msgid "App Preferences"
  4814. msgstr ""
  4815. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
  4816. #: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
  4817. #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
  4818. msgid "Units"
  4819. msgstr ""
  4820. #: flatcamGUI/FlatCAMGUI.py:4022
  4821. msgid ""
  4822. "The default value for FlatCAM units.\n"
  4823. "Whatever is selected here is set every time\n"
  4824. "FLatCAM is started."
  4825. msgstr ""
  4826. #: flatcamGUI/FlatCAMGUI.py:4025
  4827. msgid "IN"
  4828. msgstr ""
  4829. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
  4830. #: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
  4831. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  4832. msgid "MM"
  4833. msgstr ""
  4834. #: flatcamGUI/FlatCAMGUI.py:4029
  4835. msgid "APP. LEVEL"
  4836. msgstr ""
  4837. #: flatcamGUI/FlatCAMGUI.py:4030
  4838. msgid ""
  4839. "Choose the default level of usage for FlatCAM.\n"
  4840. "BASIC level -> reduced functionality, best for beginner's.\n"
  4841. "ADVANCED level -> full functionality.\n"
  4842. "\n"
  4843. "The choice here will influence the parameters in\n"
  4844. "the Selected Tab for all kinds of FlatCAM objects."
  4845. msgstr ""
  4846. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
  4847. msgid "Basic"
  4848. msgstr ""
  4849. #: flatcamGUI/FlatCAMGUI.py:4036
  4850. msgid "Advanced"
  4851. msgstr ""
  4852. #: flatcamGUI/FlatCAMGUI.py:4039
  4853. msgid "Portable app"
  4854. msgstr ""
  4855. #: flatcamGUI/FlatCAMGUI.py:4040
  4856. msgid ""
  4857. "Choose if the application should run as portable.\n"
  4858. "\n"
  4859. "If Checked the application will run portable,\n"
  4860. "which means that the preferences files will be saved\n"
  4861. "in the application folder, in the lib\\config subfolder."
  4862. msgstr ""
  4863. #: flatcamGUI/FlatCAMGUI.py:4047
  4864. msgid "Languages"
  4865. msgstr ""
  4866. #: flatcamGUI/FlatCAMGUI.py:4048
  4867. msgid "Set the language used throughout FlatCAM."
  4868. msgstr ""
  4869. #: flatcamGUI/FlatCAMGUI.py:4051
  4870. msgid "Apply Language"
  4871. msgstr ""
  4872. #: flatcamGUI/FlatCAMGUI.py:4052
  4873. msgid ""
  4874. "Set the language used throughout FlatCAM.\n"
  4875. "The app will restart after click.Windows: When FlatCAM is installed in "
  4876. "Program Files\n"
  4877. "directory, it is possible that the app will not\n"
  4878. "restart after the button is clicked due of Windows\n"
  4879. "security features. In this case the language will be\n"
  4880. "applied at the next app start."
  4881. msgstr ""
  4882. #: flatcamGUI/FlatCAMGUI.py:4061
  4883. msgid "Shell at StartUp"
  4884. msgstr ""
  4885. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
  4886. msgid ""
  4887. "Check this box if you want the shell to\n"
  4888. "start automatically at startup."
  4889. msgstr ""
  4890. #: flatcamGUI/FlatCAMGUI.py:4073
  4891. msgid "Version Check"
  4892. msgstr ""
  4893. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
  4894. msgid ""
  4895. "Check this box if you want to check\n"
  4896. "for a new version automatically at startup."
  4897. msgstr ""
  4898. #: flatcamGUI/FlatCAMGUI.py:4085
  4899. msgid "Send Stats"
  4900. msgstr ""
  4901. #: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
  4902. msgid ""
  4903. "Check this box if you agree to send anonymous\n"
  4904. "stats automatically at startup, to help improve FlatCAM."
  4905. msgstr ""
  4906. #: flatcamGUI/FlatCAMGUI.py:4099
  4907. msgid "Pan Button"
  4908. msgstr ""
  4909. #: flatcamGUI/FlatCAMGUI.py:4100
  4910. msgid ""
  4911. "Select the mouse button to use for panning:\n"
  4912. "- MMB --> Middle Mouse Button\n"
  4913. "- RMB --> Right Mouse Button"
  4914. msgstr ""
  4915. #: flatcamGUI/FlatCAMGUI.py:4103
  4916. msgid "MMB"
  4917. msgstr ""
  4918. #: flatcamGUI/FlatCAMGUI.py:4104
  4919. msgid "RMB"
  4920. msgstr ""
  4921. #: flatcamGUI/FlatCAMGUI.py:4107
  4922. msgid "Multiple Sel"
  4923. msgstr ""
  4924. #: flatcamGUI/FlatCAMGUI.py:4108
  4925. msgid "Select the key used for multiple selection."
  4926. msgstr ""
  4927. #: flatcamGUI/FlatCAMGUI.py:4109
  4928. msgid "CTRL"
  4929. msgstr ""
  4930. #: flatcamGUI/FlatCAMGUI.py:4110
  4931. msgid "SHIFT"
  4932. msgstr ""
  4933. #: flatcamGUI/FlatCAMGUI.py:4113
  4934. msgid "Project at StartUp"
  4935. msgstr ""
  4936. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
  4937. msgid ""
  4938. "Check this box if you want the project/selected/tool tab area to\n"
  4939. "to be shown automatically at startup."
  4940. msgstr ""
  4941. #: flatcamGUI/FlatCAMGUI.py:4125
  4942. msgid "Project AutoHide"
  4943. msgstr ""
  4944. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
  4945. msgid ""
  4946. "Check this box if you want the project/selected/tool tab area to\n"
  4947. "hide automatically when there are no objects loaded and\n"
  4948. "to show whenever a new object is created."
  4949. msgstr ""
  4950. #: flatcamGUI/FlatCAMGUI.py:4139
  4951. msgid "Enable ToolTips"
  4952. msgstr ""
  4953. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
  4954. msgid ""
  4955. "Check this box if you want to have toolTips displayed\n"
  4956. "when hovering with mouse over items throughout the App."
  4957. msgstr ""
  4958. #: flatcamGUI/FlatCAMGUI.py:4149
  4959. msgid "Workers number"
  4960. msgstr ""
  4961. #: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
  4962. msgid ""
  4963. "The number of Qthreads made available to the App.\n"
  4964. "A bigger number may finish the jobs more quickly but\n"
  4965. "depending on your computer speed, may make the App\n"
  4966. "unresponsive. Can have a value between 2 and 16.\n"
  4967. "Default value is 2.\n"
  4968. "After change, it will be applied at next App start."
  4969. msgstr ""
  4970. #: flatcamGUI/FlatCAMGUI.py:4170
  4971. msgid "Geo Tolerance"
  4972. msgstr ""
  4973. #: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
  4974. msgid ""
  4975. "This value can counter the effect of the Circle Steps\n"
  4976. "parameter. Default value is 0.01.\n"
  4977. "A lower value will increase the detail both in image\n"
  4978. "and in Gcode for the circles, with a higher cost in\n"
  4979. "performance. Higher value will provide more\n"
  4980. "performance at the expense of level of detail."
  4981. msgstr ""
  4982. #: flatcamGUI/FlatCAMGUI.py:4220
  4983. msgid "\"Open\" behavior"
  4984. msgstr ""
  4985. #: flatcamGUI/FlatCAMGUI.py:4222
  4986. msgid ""
  4987. "When checked the path for the last saved file is used when saving files,\n"
  4988. "and the path for the last opened file is used when opening files.\n"
  4989. "\n"
  4990. "When unchecked the path for opening files is the one used last: either the\n"
  4991. "path for saving files or the path for opening files."
  4992. msgstr ""
  4993. #: flatcamGUI/FlatCAMGUI.py:4231
  4994. msgid "Delete object confirmation"
  4995. msgstr ""
  4996. #: flatcamGUI/FlatCAMGUI.py:4233
  4997. msgid ""
  4998. "When checked the application will ask for user confirmation\n"
  4999. "whenever the Delete object(s) event is triggered, either by\n"
  5000. "menu shortcut or key shortcut."
  5001. msgstr ""
  5002. #: flatcamGUI/FlatCAMGUI.py:4240
  5003. msgid "Save Compressed Project"
  5004. msgstr ""
  5005. #: flatcamGUI/FlatCAMGUI.py:4242
  5006. msgid ""
  5007. "Whether to save a compressed or uncompressed project.\n"
  5008. "When checked it will save a compressed FlatCAM project."
  5009. msgstr ""
  5010. #: flatcamGUI/FlatCAMGUI.py:4253
  5011. msgid "Compression Level"
  5012. msgstr ""
  5013. #: flatcamGUI/FlatCAMGUI.py:4255
  5014. msgid ""
  5015. "The level of compression used when saving\n"
  5016. "a FlatCAM project. Higher value means better compression\n"
  5017. "but require more RAM usage and more processing time."
  5018. msgstr ""
  5019. #: flatcamGUI/FlatCAMGUI.py:4281
  5020. msgid "Gerber General"
  5021. msgstr ""
  5022. #: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
  5023. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
  5024. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
  5025. #: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
  5026. msgid "Plot Options"
  5027. msgstr ""
  5028. #: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
  5029. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
  5030. msgid "Solid"
  5031. msgstr ""
  5032. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
  5033. msgid "Solid color polygons."
  5034. msgstr ""
  5035. #: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
  5036. msgid "M-Color"
  5037. msgstr ""
  5038. #: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
  5039. msgid "Draw polygons in different colors."
  5040. msgstr ""
  5041. #: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
  5042. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
  5043. #: flatcamGUI/ObjectUI.py:601
  5044. msgid "Plot"
  5045. msgstr ""
  5046. #: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
  5047. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
  5048. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
  5049. #: flatcamGUI/ObjectUI.py:1503
  5050. msgid "Plot (show) this object."
  5051. msgstr ""
  5052. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
  5053. #: flatcamGUI/FlatCAMGUI.py:6230
  5054. msgid "Circle Steps"
  5055. msgstr ""
  5056. #: flatcamGUI/FlatCAMGUI.py:4314
  5057. msgid ""
  5058. "The number of circle steps for Gerber \n"
  5059. "circular aperture linear approximation."
  5060. msgstr ""
  5061. #: flatcamGUI/FlatCAMGUI.py:4324
  5062. msgid ""
  5063. "Buffering type:\n"
  5064. "- None --> best performance, fast file loading but no so good display\n"
  5065. "- Full --> slow file loading but good visuals. This is the default.\n"
  5066. "<<WARNING>>: Don't change this unless you know what you are doing !!!"
  5067. msgstr ""
  5068. #: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
  5069. #: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
  5070. #: flatcamTools/ToolProperties.py:318
  5071. msgid "None"
  5072. msgstr ""
  5073. #: flatcamGUI/FlatCAMGUI.py:4330
  5074. msgid "Full"
  5075. msgstr ""
  5076. #: flatcamGUI/FlatCAMGUI.py:4342
  5077. msgid "Gerber Options"
  5078. msgstr ""
  5079. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
  5080. msgid "Isolation Routing"
  5081. msgstr ""
  5082. #: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
  5083. msgid ""
  5084. "Create a Geometry object with\n"
  5085. "toolpaths to cut outside polygons."
  5086. msgstr ""
  5087. #: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
  5088. #: flatcamGUI/ObjectUI.py:848
  5089. msgid "Diameter of the cutting tool."
  5090. msgstr ""
  5091. #: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
  5092. msgid "# Passes"
  5093. msgstr ""
  5094. #: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
  5095. msgid ""
  5096. "Width of the isolation gap in\n"
  5097. "number (integer) of tool widths."
  5098. msgstr ""
  5099. #: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
  5100. msgid "Pass overlap"
  5101. msgstr ""
  5102. #: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
  5103. #, python-format
  5104. msgid ""
  5105. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5106. "Example:\n"
  5107. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5108. "above."
  5109. msgstr ""
  5110. #: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
  5111. #: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
  5112. msgid "Milling Type"
  5113. msgstr ""
  5114. #: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
  5115. msgid ""
  5116. "Milling type:\n"
  5117. "- climb / best for precision milling and to reduce tool usage\n"
  5118. "- conventional / useful when there is no backlash compensation"
  5119. msgstr ""
  5120. #: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
  5121. #: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
  5122. msgid "Climb"
  5123. msgstr ""
  5124. #: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
  5125. #: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
  5126. msgid "Conv."
  5127. msgstr ""
  5128. #: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
  5129. msgid "Combine Passes"
  5130. msgstr ""
  5131. #: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
  5132. msgid "Combine all passes into one object"
  5133. msgstr ""
  5134. #: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
  5135. msgid "Non-copper regions"
  5136. msgstr ""
  5137. #: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
  5138. msgid ""
  5139. "Create polygons covering the\n"
  5140. "areas without copper on the PCB.\n"
  5141. "Equivalent to the inverse of this\n"
  5142. "object. Can be used to remove all\n"
  5143. "copper from a specified region."
  5144. msgstr ""
  5145. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
  5146. #: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
  5147. msgid "Boundary Margin"
  5148. msgstr ""
  5149. #: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
  5150. msgid ""
  5151. "Specify the edge of the PCB\n"
  5152. "by drawing a box around all\n"
  5153. "objects with this minimum\n"
  5154. "distance."
  5155. msgstr ""
  5156. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
  5157. #: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
  5158. msgid "Rounded Geo"
  5159. msgstr ""
  5160. #: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
  5161. msgid "Resulting geometry will have rounded corners."
  5162. msgstr ""
  5163. #: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
  5164. #: flatcamTools/ToolPanelize.py:85
  5165. msgid "Bounding Box"
  5166. msgstr ""
  5167. #: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
  5168. msgid ""
  5169. "Distance of the edges of the box\n"
  5170. "to the nearest polygon."
  5171. msgstr ""
  5172. #: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
  5173. msgid ""
  5174. "If the bounding box is \n"
  5175. "to have rounded corners\n"
  5176. "their radius is equal to\n"
  5177. "the margin."
  5178. msgstr ""
  5179. #: flatcamGUI/FlatCAMGUI.py:4470
  5180. msgid "Gerber Adv. Options"
  5181. msgstr ""
  5182. #: flatcamGUI/FlatCAMGUI.py:4473
  5183. msgid "Advanced Param."
  5184. msgstr ""
  5185. #: flatcamGUI/FlatCAMGUI.py:4475
  5186. msgid ""
  5187. "A list of Gerber advanced parameters.\n"
  5188. "Those parameters are available only for\n"
  5189. "Advanced App. Level."
  5190. msgstr ""
  5191. #: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
  5192. msgid "\"Follow\""
  5193. msgstr ""
  5194. #: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
  5195. msgid ""
  5196. "Generate a 'Follow' geometry.\n"
  5197. "This means that it will cut through\n"
  5198. "the middle of the trace."
  5199. msgstr ""
  5200. #: flatcamGUI/FlatCAMGUI.py:4494
  5201. msgid "Table Show/Hide"
  5202. msgstr ""
  5203. #: flatcamGUI/FlatCAMGUI.py:4496
  5204. msgid ""
  5205. "Toggle the display of the Gerber Apertures Table.\n"
  5206. "Also, on hide, it will delete all mark shapes\n"
  5207. "that are drawn on canvas."
  5208. msgstr ""
  5209. #: flatcamGUI/FlatCAMGUI.py:4535
  5210. msgid "Gerber Export"
  5211. msgstr ""
  5212. #: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
  5213. msgid "Export Options"
  5214. msgstr ""
  5215. #: flatcamGUI/FlatCAMGUI.py:4540
  5216. msgid ""
  5217. "The parameters set here are used in the file exported\n"
  5218. "when using the File -> Export -> Export Gerber menu entry."
  5219. msgstr ""
  5220. #: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
  5221. msgid "The units used in the Gerber file."
  5222. msgstr ""
  5223. #: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
  5224. #: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
  5225. #: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
  5226. msgid "INCH"
  5227. msgstr ""
  5228. #: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
  5229. msgid "Int/Decimals"
  5230. msgstr ""
  5231. #: flatcamGUI/FlatCAMGUI.py:4565
  5232. msgid ""
  5233. "The number of digits in the whole part of the number\n"
  5234. "and in the fractional part of the number."
  5235. msgstr ""
  5236. #: flatcamGUI/FlatCAMGUI.py:4576
  5237. msgid ""
  5238. "This numbers signify the number of digits in\n"
  5239. "the whole part of Gerber coordinates."
  5240. msgstr ""
  5241. #: flatcamGUI/FlatCAMGUI.py:4590
  5242. msgid ""
  5243. "This numbers signify the number of digits in\n"
  5244. "the decimal part of Gerber coordinates."
  5245. msgstr ""
  5246. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
  5247. msgid "Zeros"
  5248. msgstr ""
  5249. #: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
  5250. msgid ""
  5251. "This sets the type of Gerber zeros.\n"
  5252. "If LZ then Leading Zeros are removed and\n"
  5253. "Trailing Zeros are kept.\n"
  5254. "If TZ is checked then Trailing Zeros are removed\n"
  5255. "and Leading Zeros are kept."
  5256. msgstr ""
  5257. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
  5258. #: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
  5259. msgid "LZ"
  5260. msgstr ""
  5261. #: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
  5262. #: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
  5263. msgid "TZ"
  5264. msgstr ""
  5265. #: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
  5266. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
  5267. #: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
  5268. #: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
  5269. #: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
  5270. #: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
  5271. #: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
  5272. msgid "Parameters"
  5273. msgstr ""
  5274. #: flatcamGUI/FlatCAMGUI.py:4634
  5275. msgid "A list of Gerber Editor parameters."
  5276. msgstr ""
  5277. #: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
  5278. #: flatcamGUI/FlatCAMGUI.py:6125
  5279. msgid "Selection limit"
  5280. msgstr ""
  5281. #: flatcamGUI/FlatCAMGUI.py:4644
  5282. msgid ""
  5283. "Set the number of selected Gerber geometry\n"
  5284. "items above which the utility geometry\n"
  5285. "becomes just a selection rectangle.\n"
  5286. "Increases the performance when moving a\n"
  5287. "large number of geometric elements."
  5288. msgstr ""
  5289. #: flatcamGUI/FlatCAMGUI.py:4656
  5290. msgid "New Aperture code"
  5291. msgstr ""
  5292. #: flatcamGUI/FlatCAMGUI.py:4668
  5293. msgid "New Aperture size"
  5294. msgstr ""
  5295. #: flatcamGUI/FlatCAMGUI.py:4670
  5296. msgid "Size for the new aperture"
  5297. msgstr ""
  5298. #: flatcamGUI/FlatCAMGUI.py:4680
  5299. msgid "New Aperture type"
  5300. msgstr ""
  5301. #: flatcamGUI/FlatCAMGUI.py:4682
  5302. msgid ""
  5303. "Type for the new aperture.\n"
  5304. "Can be 'C', 'R' or 'O'."
  5305. msgstr ""
  5306. #: flatcamGUI/FlatCAMGUI.py:4703
  5307. msgid "Aperture Dimensions"
  5308. msgstr ""
  5309. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
  5310. #: flatcamGUI/FlatCAMGUI.py:6445
  5311. msgid "Diameters of the cutting tools, separated by ','"
  5312. msgstr ""
  5313. #: flatcamGUI/FlatCAMGUI.py:4711
  5314. #, python-format
  5315. msgid "<b>%s:</b>"
  5316. msgstr ""
  5317. #: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
  5318. #: flatcamGUI/FlatCAMGUI.py:5695
  5319. msgid "Linear Dir."
  5320. msgstr ""
  5321. #: flatcamGUI/FlatCAMGUI.py:4751
  5322. msgid "Circular Pad Array"
  5323. msgstr ""
  5324. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
  5325. #: flatcamGUI/FlatCAMGUI.py:5735
  5326. msgid "Circular Dir."
  5327. msgstr ""
  5328. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
  5329. #: flatcamGUI/FlatCAMGUI.py:5737
  5330. msgid ""
  5331. "Direction for circular array.\n"
  5332. "Can be CW = clockwise or CCW = counter clockwise."
  5333. msgstr ""
  5334. #: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
  5335. #: flatcamGUI/FlatCAMGUI.py:5748
  5336. msgid "Circ. Angle"
  5337. msgstr ""
  5338. #: flatcamGUI/FlatCAMGUI.py:4783
  5339. msgid "Distance at which to buffer the Gerber element."
  5340. msgstr ""
  5341. #: flatcamGUI/FlatCAMGUI.py:4790
  5342. msgid "Scale Tool"
  5343. msgstr ""
  5344. #: flatcamGUI/FlatCAMGUI.py:4796
  5345. msgid "Factor to scale the Gerber element."
  5346. msgstr ""
  5347. #: flatcamGUI/FlatCAMGUI.py:4803
  5348. msgid "Mark Area Tool"
  5349. msgstr ""
  5350. #: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
  5351. msgid "Threshold low"
  5352. msgstr ""
  5353. #: flatcamGUI/FlatCAMGUI.py:4809
  5354. msgid "Threshold value under which the apertures are not marked."
  5355. msgstr ""
  5356. #: flatcamGUI/FlatCAMGUI.py:4819
  5357. msgid "Threshold value over which the apertures are not marked."
  5358. msgstr ""
  5359. #: flatcamGUI/FlatCAMGUI.py:4835
  5360. msgid "Excellon General"
  5361. msgstr ""
  5362. #: flatcamGUI/FlatCAMGUI.py:4857
  5363. msgid "Excellon Format"
  5364. msgstr ""
  5365. #: flatcamGUI/FlatCAMGUI.py:4859
  5366. msgid ""
  5367. "The NC drill files, usually named Excellon files\n"
  5368. "are files that can be found in different formats.\n"
  5369. "Here we set the format used when the provided\n"
  5370. "coordinates are not using period.\n"
  5371. "\n"
  5372. "Possible presets:\n"
  5373. "\n"
  5374. "PROTEUS 3:3 MM LZ\n"
  5375. "DipTrace 5:2 MM TZ\n"
  5376. "DipTrace 4:3 MM LZ\n"
  5377. "\n"
  5378. "EAGLE 3:3 MM TZ\n"
  5379. "EAGLE 4:3 MM TZ\n"
  5380. "EAGLE 2:5 INCH TZ\n"
  5381. "EAGLE 3:5 INCH TZ\n"
  5382. "\n"
  5383. "ALTIUM 2:4 INCH LZ\n"
  5384. "Sprint Layout 2:4 INCH LZ\n"
  5385. "KiCAD 3:5 INCH TZ"
  5386. msgstr ""
  5387. #: flatcamGUI/FlatCAMGUI.py:4887
  5388. msgid "Default values for INCH are 2:4"
  5389. msgstr ""
  5390. #: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
  5391. #: flatcamGUI/FlatCAMGUI.py:5403
  5392. msgid ""
  5393. "This numbers signify the number of digits in\n"
  5394. "the whole part of Excellon coordinates."
  5395. msgstr ""
  5396. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
  5397. #: flatcamGUI/FlatCAMGUI.py:5417
  5398. msgid ""
  5399. "This numbers signify the number of digits in\n"
  5400. "the decimal part of Excellon coordinates."
  5401. msgstr ""
  5402. #: flatcamGUI/FlatCAMGUI.py:4917
  5403. msgid "METRIC"
  5404. msgstr ""
  5405. #: flatcamGUI/FlatCAMGUI.py:4920
  5406. msgid "Default values for METRIC are 3:3"
  5407. msgstr ""
  5408. #: flatcamGUI/FlatCAMGUI.py:4951
  5409. msgid "Default <b>Zeros</b>"
  5410. msgstr ""
  5411. #: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
  5412. msgid ""
  5413. "This sets the type of Excellon zeros.\n"
  5414. "If LZ then Leading Zeros are kept and\n"
  5415. "Trailing Zeros are removed.\n"
  5416. "If TZ is checked then Trailing Zeros are kept\n"
  5417. "and Leading Zeros are removed."
  5418. msgstr ""
  5419. #: flatcamGUI/FlatCAMGUI.py:4965
  5420. msgid ""
  5421. "This sets the default type of Excellon zeros.\n"
  5422. "If it is not detected in the parsed file the value here\n"
  5423. "will be used.If LZ then Leading Zeros are kept and\n"
  5424. "Trailing Zeros are removed.\n"
  5425. "If TZ is checked then Trailing Zeros are kept\n"
  5426. "and Leading Zeros are removed."
  5427. msgstr ""
  5428. #: flatcamGUI/FlatCAMGUI.py:4975
  5429. msgid "Default <b>Units</b>"
  5430. msgstr ""
  5431. #: flatcamGUI/FlatCAMGUI.py:4978
  5432. msgid ""
  5433. "This sets the default units of Excellon files.\n"
  5434. "If it is not detected in the parsed file the value here\n"
  5435. "will be used.Some Excellon files don't have an header\n"
  5436. "therefore this parameter will be used."
  5437. msgstr ""
  5438. #: flatcamGUI/FlatCAMGUI.py:4989
  5439. msgid ""
  5440. "This sets the units of Excellon files.\n"
  5441. "Some Excellon files don't have an header\n"
  5442. "therefore this parameter will be used."
  5443. msgstr ""
  5444. #: flatcamGUI/FlatCAMGUI.py:4997
  5445. msgid "Excellon Optimization"
  5446. msgstr ""
  5447. #: flatcamGUI/FlatCAMGUI.py:5000
  5448. msgid "Algorithm: "
  5449. msgstr ""
  5450. #: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
  5451. msgid ""
  5452. "This sets the optimization type for the Excellon drill path.\n"
  5453. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5454. "Guided Local Path is used. Default search time is 3sec.\n"
  5455. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5456. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5457. "\n"
  5458. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5459. "Travelling Salesman algorithm for path optimization."
  5460. msgstr ""
  5461. #: flatcamGUI/FlatCAMGUI.py:5013
  5462. msgid "MH"
  5463. msgstr ""
  5464. #: flatcamGUI/FlatCAMGUI.py:5027
  5465. msgid "Optimization Time"
  5466. msgstr ""
  5467. #: flatcamGUI/FlatCAMGUI.py:5030
  5468. msgid ""
  5469. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5470. "maximum threshold for how much time is spent doing the\n"
  5471. "path optimization. This max duration is set here.\n"
  5472. "In seconds."
  5473. msgstr ""
  5474. #: flatcamGUI/FlatCAMGUI.py:5073
  5475. msgid "Excellon Options"
  5476. msgstr ""
  5477. #: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
  5478. #: flatcamGUI/ObjectUI.py:643
  5479. msgid "Create CNC Job"
  5480. msgstr ""
  5481. #: flatcamGUI/FlatCAMGUI.py:5078
  5482. msgid ""
  5483. "Parameters used to create a CNC Job object\n"
  5484. "for this drill object."
  5485. msgstr ""
  5486. #: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
  5487. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
  5488. #: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
  5489. #: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
  5490. msgid "Cut Z"
  5491. msgstr ""
  5492. #: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
  5493. msgid ""
  5494. "Drill depth (negative)\n"
  5495. "below the copper surface."
  5496. msgstr ""
  5497. #: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
  5498. #: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
  5499. msgid "Travel Z"
  5500. msgstr ""
  5501. #: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
  5502. msgid ""
  5503. "Tool height when travelling\n"
  5504. "across the XY plane."
  5505. msgstr ""
  5506. #: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
  5507. #: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
  5508. msgid "Tool change"
  5509. msgstr ""
  5510. #: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
  5511. msgid ""
  5512. "Include tool-change sequence\n"
  5513. "in G-Code (Pause for tool change)."
  5514. msgstr ""
  5515. #: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
  5516. msgid "Toolchange Z"
  5517. msgstr ""
  5518. #: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
  5519. #: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
  5520. msgid ""
  5521. "Z-axis position (height) for\n"
  5522. "tool change."
  5523. msgstr ""
  5524. #: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
  5525. msgid "Feedrate (Plunge)"
  5526. msgstr ""
  5527. #: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
  5528. msgid ""
  5529. "Tool speed while drilling\n"
  5530. "(in units per minute).\n"
  5531. "This is for linear move G01."
  5532. msgstr ""
  5533. #: flatcamGUI/FlatCAMGUI.py:5134
  5534. msgid "Spindle Speed"
  5535. msgstr ""
  5536. #: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
  5537. msgid ""
  5538. "Speed of the spindle\n"
  5539. "in RPM (optional)"
  5540. msgstr ""
  5541. #: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
  5542. msgid "Spindle dir."
  5543. msgstr ""
  5544. #: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
  5545. msgid ""
  5546. "This sets the direction that the spindle is rotating.\n"
  5547. "It can be either:\n"
  5548. "- CW = clockwise or\n"
  5549. "- CCW = counter clockwise"
  5550. msgstr ""
  5551. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
  5552. #: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
  5553. msgid "Dwell"
  5554. msgstr ""
  5555. #: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
  5556. #: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
  5557. msgid ""
  5558. "Pause to allow the spindle to reach its\n"
  5559. "speed before cutting."
  5560. msgstr ""
  5561. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
  5562. msgid "Duration"
  5563. msgstr ""
  5564. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
  5565. #: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
  5566. msgid "Number of time units for spindle to dwell."
  5567. msgstr ""
  5568. #: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
  5569. #: flatcamGUI/ObjectUI.py:765
  5570. msgid "Postprocessor"
  5571. msgstr ""
  5572. #: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
  5573. msgid ""
  5574. "The postprocessor JSON file that dictates\n"
  5575. "Gcode output."
  5576. msgstr ""
  5577. #: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
  5578. msgid "Gcode"
  5579. msgstr ""
  5580. #: flatcamGUI/FlatCAMGUI.py:5190
  5581. msgid ""
  5582. "Choose what to use for GCode generation:\n"
  5583. "'Drills', 'Slots' or 'Both'.\n"
  5584. "When choosing 'Slots' or 'Both', slots will be\n"
  5585. "converted to drills."
  5586. msgstr ""
  5587. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
  5588. msgid "Mill Holes"
  5589. msgstr ""
  5590. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
  5591. msgid "Create Geometry for milling holes."
  5592. msgstr ""
  5593. #: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
  5594. msgid "Drill Tool dia"
  5595. msgstr ""
  5596. #: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
  5597. msgid "Slot Tool dia"
  5598. msgstr ""
  5599. #: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
  5600. msgid ""
  5601. "Diameter of the cutting tool\n"
  5602. "when milling slots."
  5603. msgstr ""
  5604. #: flatcamGUI/FlatCAMGUI.py:5233
  5605. msgid "Defaults"
  5606. msgstr ""
  5607. #: flatcamGUI/FlatCAMGUI.py:5246
  5608. msgid "Excellon Adv. Options"
  5609. msgstr ""
  5610. #: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
  5611. msgid "Advanced Options"
  5612. msgstr ""
  5613. #: flatcamGUI/FlatCAMGUI.py:5254
  5614. msgid ""
  5615. "Parameters used to create a CNC Job object\n"
  5616. "for this drill object that are shown when App Level is Advanced."
  5617. msgstr ""
  5618. #: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
  5619. msgid "Offset Z"
  5620. msgstr ""
  5621. #: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
  5622. msgid ""
  5623. "Some drill bits (the larger ones) need to drill deeper\n"
  5624. "to create the desired exit hole diameter due of the tip shape.\n"
  5625. "The value here can compensate the Cut Z parameter."
  5626. msgstr ""
  5627. #: flatcamGUI/FlatCAMGUI.py:5271
  5628. msgid "Toolchange X,Y"
  5629. msgstr ""
  5630. #: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
  5631. msgid "Toolchange X,Y position."
  5632. msgstr ""
  5633. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
  5634. #: flatcamGUI/ObjectUI.py:693
  5635. msgid "Start move Z"
  5636. msgstr ""
  5637. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
  5638. msgid ""
  5639. "Height of the tool just after start.\n"
  5640. "Delete the value if you don't need this feature."
  5641. msgstr ""
  5642. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
  5643. #: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
  5644. msgid "End move Z"
  5645. msgstr ""
  5646. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
  5647. #: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
  5648. msgid ""
  5649. "Height of the tool after\n"
  5650. "the last move at the end of the job."
  5651. msgstr ""
  5652. #: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
  5653. msgid "Feedrate Rapids"
  5654. msgstr ""
  5655. #: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
  5656. msgid ""
  5657. "Tool speed while drilling\n"
  5658. "(in units per minute).\n"
  5659. "This is for the rapid move G00.\n"
  5660. "It is useful only for Marlin,\n"
  5661. "ignore for any other cases."
  5662. msgstr ""
  5663. #: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
  5664. #: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
  5665. msgid "Probe Z depth"
  5666. msgstr ""
  5667. #: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
  5668. #: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
  5669. msgid ""
  5670. "The maximum depth that the probe is allowed\n"
  5671. "to probe. Negative value, in current units."
  5672. msgstr ""
  5673. #: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
  5674. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
  5675. msgid "Feedrate Probe"
  5676. msgstr ""
  5677. #: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
  5678. #: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
  5679. msgid "The feedrate used while the probe is probing."
  5680. msgstr ""
  5681. #: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
  5682. msgid "Fast Plunge"
  5683. msgstr ""
  5684. #: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
  5685. msgid ""
  5686. "By checking this, the vertical move from\n"
  5687. "Z_Toolchange to Z_move is done with G0,\n"
  5688. "meaning the fastest speed available.\n"
  5689. "WARNING: the move is done at Toolchange X,Y coords."
  5690. msgstr ""
  5691. #: flatcamGUI/FlatCAMGUI.py:5339
  5692. msgid "Fast Retract"
  5693. msgstr ""
  5694. #: flatcamGUI/FlatCAMGUI.py:5341
  5695. msgid ""
  5696. "Exit hole strategy.\n"
  5697. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5698. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5699. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5700. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5701. "(travel height) is done as fast as possible (G0) in one move."
  5702. msgstr ""
  5703. #: flatcamGUI/FlatCAMGUI.py:5360
  5704. msgid "Excellon Export"
  5705. msgstr ""
  5706. #: flatcamGUI/FlatCAMGUI.py:5365
  5707. msgid ""
  5708. "The parameters set here are used in the file exported\n"
  5709. "when using the File -> Export -> Export Excellon menu entry."
  5710. msgstr ""
  5711. #: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
  5712. msgid "The units used in the Excellon file."
  5713. msgstr ""
  5714. #: flatcamGUI/FlatCAMGUI.py:5390
  5715. msgid ""
  5716. "The NC drill files, usually named Excellon files\n"
  5717. "are files that can be found in different formats.\n"
  5718. "Here we set the format used when the provided\n"
  5719. "coordinates are not using period."
  5720. msgstr ""
  5721. #: flatcamGUI/FlatCAMGUI.py:5426
  5722. msgid "Format"
  5723. msgstr ""
  5724. #: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
  5725. msgid ""
  5726. "Select the kind of coordinates format used.\n"
  5727. "Coordinates can be saved with decimal point or without.\n"
  5728. "When there is no decimal point, it is required to specify\n"
  5729. "the number of digits for integer part and the number of decimals.\n"
  5730. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5731. "or TZ = trailing zeros are kept."
  5732. msgstr ""
  5733. #: flatcamGUI/FlatCAMGUI.py:5435
  5734. msgid "Decimal"
  5735. msgstr ""
  5736. #: flatcamGUI/FlatCAMGUI.py:5436
  5737. msgid "No-Decimal"
  5738. msgstr ""
  5739. #: flatcamGUI/FlatCAMGUI.py:5462
  5740. msgid ""
  5741. "This sets the default type of Excellon zeros.\n"
  5742. "If LZ then Leading Zeros are kept and\n"
  5743. "Trailing Zeros are removed.\n"
  5744. "If TZ is checked then Trailing Zeros are kept\n"
  5745. "and Leading Zeros are removed."
  5746. msgstr ""
  5747. #: flatcamGUI/FlatCAMGUI.py:5472
  5748. msgid "Slot type"
  5749. msgstr ""
  5750. #: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
  5751. msgid ""
  5752. "This sets how the slots will be exported.\n"
  5753. "If ROUTED then the slots will be routed\n"
  5754. "using M15/M16 commands.\n"
  5755. "If DRILLED(G85) the slots will be exported\n"
  5756. "using the Drilled slot command (G85)."
  5757. msgstr ""
  5758. #: flatcamGUI/FlatCAMGUI.py:5482
  5759. msgid "Routed"
  5760. msgstr ""
  5761. #: flatcamGUI/FlatCAMGUI.py:5483
  5762. msgid "Drilled(G85)"
  5763. msgstr ""
  5764. #: flatcamGUI/FlatCAMGUI.py:5515
  5765. msgid "A list of Excellon Editor parameters."
  5766. msgstr ""
  5767. #: flatcamGUI/FlatCAMGUI.py:5525
  5768. msgid ""
  5769. "Set the number of selected Excellon geometry\n"
  5770. "items above which the utility geometry\n"
  5771. "becomes just a selection rectangle.\n"
  5772. "Increases the performance when moving a\n"
  5773. "large number of geometric elements."
  5774. msgstr ""
  5775. #: flatcamGUI/FlatCAMGUI.py:5537
  5776. msgid "New Tool Dia"
  5777. msgstr ""
  5778. #: flatcamGUI/FlatCAMGUI.py:5560
  5779. msgid "Linear Drill Array"
  5780. msgstr ""
  5781. #: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
  5782. #, python-format
  5783. msgid "%s:"
  5784. msgstr ""
  5785. #: flatcamGUI/FlatCAMGUI.py:5600
  5786. msgid "Circular Drill Array"
  5787. msgstr ""
  5788. #: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
  5789. msgid "Slots"
  5790. msgstr ""
  5791. #: flatcamGUI/FlatCAMGUI.py:5679
  5792. msgid "Linear Slot Array"
  5793. msgstr ""
  5794. #: flatcamGUI/FlatCAMGUI.py:5731
  5795. msgid "Circular Slot Array"
  5796. msgstr ""
  5797. #: flatcamGUI/FlatCAMGUI.py:5765
  5798. msgid "Geometry General"
  5799. msgstr ""
  5800. #: flatcamGUI/FlatCAMGUI.py:5784
  5801. msgid ""
  5802. "The number of circle steps for <b>Geometry</b> \n"
  5803. "circle and arc shapes linear approximation."
  5804. msgstr ""
  5805. #: flatcamGUI/FlatCAMGUI.py:5812
  5806. msgid "Geometry Options"
  5807. msgstr ""
  5808. #: flatcamGUI/FlatCAMGUI.py:5819
  5809. msgid ""
  5810. "Create a CNC Job object\n"
  5811. "tracing the contours of this\n"
  5812. "Geometry object."
  5813. msgstr ""
  5814. #: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
  5815. msgid ""
  5816. "Cutting depth (negative)\n"
  5817. "below the copper surface."
  5818. msgstr ""
  5819. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
  5820. msgid "Multi-Depth"
  5821. msgstr ""
  5822. #: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
  5823. msgid ""
  5824. "Use multiple passes to limit\n"
  5825. "the cut depth in each pass. Will\n"
  5826. "cut multiple times until Cut Z is\n"
  5827. "reached."
  5828. msgstr ""
  5829. #: flatcamGUI/FlatCAMGUI.py:5851
  5830. msgid "Depth/Pass"
  5831. msgstr ""
  5832. #: flatcamGUI/FlatCAMGUI.py:5853
  5833. msgid ""
  5834. "The depth to cut on each pass,\n"
  5835. "when multidepth is enabled.\n"
  5836. "It has positive value although\n"
  5837. "it is a fraction from the depth\n"
  5838. "which has negative value."
  5839. msgstr ""
  5840. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
  5841. msgid ""
  5842. "Height of the tool when\n"
  5843. "moving without cutting."
  5844. msgstr ""
  5845. #: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
  5846. msgid ""
  5847. "Include tool-change sequence\n"
  5848. "in the Machine Code (Pause for tool change)."
  5849. msgstr ""
  5850. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
  5851. msgid "Feed Rate X-Y"
  5852. msgstr ""
  5853. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
  5854. msgid ""
  5855. "Cutting speed in the XY\n"
  5856. "plane in units per minute"
  5857. msgstr ""
  5858. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
  5859. msgid "Feed Rate Z"
  5860. msgstr ""
  5861. #: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
  5862. msgid ""
  5863. "Cutting speed in the XY\n"
  5864. "plane in units per minute.\n"
  5865. "It is called also Plunge."
  5866. msgstr ""
  5867. #: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
  5868. #: flatcamGUI/ObjectUI.py:1267
  5869. msgid "Spindle speed"
  5870. msgstr ""
  5871. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
  5872. msgid ""
  5873. "Speed of the spindle in RPM (optional).\n"
  5874. "If LASER postprocessor is used,\n"
  5875. "this value is the power of laser."
  5876. msgstr ""
  5877. #: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
  5878. msgid ""
  5879. "The Postprocessor file that dictates\n"
  5880. "the Machine Code (like GCode, RML, HPGL) output."
  5881. msgstr ""
  5882. #: flatcamGUI/FlatCAMGUI.py:5984
  5883. msgid "Geometry Adv. Options"
  5884. msgstr ""
  5885. #: flatcamGUI/FlatCAMGUI.py:5991
  5886. msgid ""
  5887. "Parameters to create a CNC Job object\n"
  5888. "tracing the contours of a Geometry object."
  5889. msgstr ""
  5890. #: flatcamGUI/FlatCAMGUI.py:6011
  5891. msgid ""
  5892. "Height of the tool just after starting the work.\n"
  5893. "Delete the value if you don't need this feature."
  5894. msgstr ""
  5895. #: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
  5896. msgid "Feed Rate Rapids"
  5897. msgstr ""
  5898. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
  5899. msgid ""
  5900. "Cutting speed in the XY plane\n"
  5901. "(in units per minute).\n"
  5902. "This is for the rapid move G00.\n"
  5903. "It is useful only for Marlin,\n"
  5904. "ignore for any other cases."
  5905. msgstr ""
  5906. #: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
  5907. msgid "Re-cut 1st pt."
  5908. msgstr ""
  5909. #: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
  5910. msgid ""
  5911. "In order to remove possible\n"
  5912. "copper leftovers where first cut\n"
  5913. "meet with last cut, we generate an\n"
  5914. "extended cut over the first cut section."
  5915. msgstr ""
  5916. #: flatcamGUI/FlatCAMGUI.py:6083
  5917. msgid "Seg. X size"
  5918. msgstr ""
  5919. #: flatcamGUI/FlatCAMGUI.py:6085
  5920. msgid ""
  5921. "The size of the trace segment on the X axis.\n"
  5922. "Useful for auto-leveling.\n"
  5923. "A value of 0 means no segmentation on the X axis."
  5924. msgstr ""
  5925. #: flatcamGUI/FlatCAMGUI.py:6094
  5926. msgid "Seg. Y size"
  5927. msgstr ""
  5928. #: flatcamGUI/FlatCAMGUI.py:6096
  5929. msgid ""
  5930. "The size of the trace segment on the Y axis.\n"
  5931. "Useful for auto-leveling.\n"
  5932. "A value of 0 means no segmentation on the Y axis."
  5933. msgstr ""
  5934. #: flatcamGUI/FlatCAMGUI.py:6112
  5935. msgid "Geometry Editor"
  5936. msgstr ""
  5937. #: flatcamGUI/FlatCAMGUI.py:6117
  5938. msgid "A list of Geometry Editor parameters."
  5939. msgstr ""
  5940. #: flatcamGUI/FlatCAMGUI.py:6127
  5941. msgid ""
  5942. "Set the number of selected geometry\n"
  5943. "items above which the utility geometry\n"
  5944. "becomes just a selection rectangle.\n"
  5945. "Increases the performance when moving a\n"
  5946. "large number of geometric elements."
  5947. msgstr ""
  5948. #: flatcamGUI/FlatCAMGUI.py:6146
  5949. msgid "CNC Job General"
  5950. msgstr ""
  5951. #: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
  5952. #: flatcamGUI/ObjectUI.py:1501
  5953. msgid "Plot Object"
  5954. msgstr ""
  5955. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
  5956. msgid "Plot kind"
  5957. msgstr ""
  5958. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
  5959. msgid ""
  5960. "This selects the kind of geometries on the canvas to plot.\n"
  5961. "Those can be either of type 'Travel' which means the moves\n"
  5962. "above the work piece or it can be of type 'Cut',\n"
  5963. "which means the moves that cut into the material."
  5964. msgstr ""
  5965. #: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
  5966. msgid "Travel"
  5967. msgstr ""
  5968. #: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
  5969. msgid "Display Annotation"
  5970. msgstr ""
  5971. #: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
  5972. msgid ""
  5973. "This selects if to display text annotation on the plot.\n"
  5974. "When checked it will display numbers in order for each end\n"
  5975. "of a travel line."
  5976. msgstr ""
  5977. #: flatcamGUI/FlatCAMGUI.py:6197
  5978. msgid "Annotation Size"
  5979. msgstr ""
  5980. #: flatcamGUI/FlatCAMGUI.py:6199
  5981. msgid "The font size of the annotation text. In pixels."
  5982. msgstr ""
  5983. #: flatcamGUI/FlatCAMGUI.py:6207
  5984. msgid "Annotation Color"
  5985. msgstr ""
  5986. #: flatcamGUI/FlatCAMGUI.py:6209
  5987. msgid "Set the font color for the annotation texts."
  5988. msgstr ""
  5989. #: flatcamGUI/FlatCAMGUI.py:6232
  5990. msgid ""
  5991. "The number of circle steps for <b>GCode</b> \n"
  5992. "circle and arc shapes linear approximation."
  5993. msgstr ""
  5994. #: flatcamGUI/FlatCAMGUI.py:6240
  5995. msgid "Travel dia"
  5996. msgstr ""
  5997. #: flatcamGUI/FlatCAMGUI.py:6242
  5998. msgid ""
  5999. "The width of the travel lines to be\n"
  6000. "rendered in the plot."
  6001. msgstr ""
  6002. #: flatcamGUI/FlatCAMGUI.py:6253
  6003. msgid "Coordinates decimals"
  6004. msgstr ""
  6005. #: flatcamGUI/FlatCAMGUI.py:6255
  6006. msgid ""
  6007. "The number of decimals to be used for \n"
  6008. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6009. msgstr ""
  6010. #: flatcamGUI/FlatCAMGUI.py:6263
  6011. msgid "Feedrate decimals"
  6012. msgstr ""
  6013. #: flatcamGUI/FlatCAMGUI.py:6265
  6014. msgid ""
  6015. "The number of decimals to be used for \n"
  6016. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6017. msgstr ""
  6018. #: flatcamGUI/FlatCAMGUI.py:6273
  6019. msgid "Coordinates type"
  6020. msgstr ""
  6021. #: flatcamGUI/FlatCAMGUI.py:6275
  6022. msgid ""
  6023. "The type of coordinates to be used in Gcode.\n"
  6024. "Can be:\n"
  6025. "- Absolute G90 -> the reference is the origin x=0, y=0\n"
  6026. "- Incremental G91 -> the reference is the previous position"
  6027. msgstr ""
  6028. #: flatcamGUI/FlatCAMGUI.py:6281
  6029. msgid "Absolute G90"
  6030. msgstr ""
  6031. #: flatcamGUI/FlatCAMGUI.py:6282
  6032. msgid "Incremental G91"
  6033. msgstr ""
  6034. #: flatcamGUI/FlatCAMGUI.py:6299
  6035. msgid "CNC Job Options"
  6036. msgstr ""
  6037. #: flatcamGUI/FlatCAMGUI.py:6302
  6038. msgid "Export G-Code"
  6039. msgstr ""
  6040. #: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
  6041. #: flatcamGUI/ObjectUI.py:1535
  6042. msgid ""
  6043. "Export and save G-Code to\n"
  6044. "make this object to a file."
  6045. msgstr ""
  6046. #: flatcamGUI/FlatCAMGUI.py:6310
  6047. msgid "Prepend to G-Code"
  6048. msgstr ""
  6049. #: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
  6050. msgid ""
  6051. "Type here any G-Code commands you would\n"
  6052. "like to add at the beginning of the G-Code file."
  6053. msgstr ""
  6054. #: flatcamGUI/FlatCAMGUI.py:6321
  6055. msgid "Append to G-Code"
  6056. msgstr ""
  6057. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
  6058. msgid ""
  6059. "Type here any G-Code commands you would\n"
  6060. "like to append to the generated file.\n"
  6061. "I.e.: M2 (End of program)"
  6062. msgstr ""
  6063. #: flatcamGUI/FlatCAMGUI.py:6340
  6064. msgid "CNC Job Adv. Options"
  6065. msgstr ""
  6066. #: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
  6067. msgid "Export CNC Code"
  6068. msgstr ""
  6069. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
  6070. msgid "Toolchange G-Code"
  6071. msgstr ""
  6072. #: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
  6073. msgid ""
  6074. "Type here any G-Code commands you would\n"
  6075. "like to be executed when Toolchange event is encountered.\n"
  6076. "This will constitute a Custom Toolchange GCode,\n"
  6077. "or a Toolchange Macro.\n"
  6078. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6079. "\n"
  6080. "WARNING: it can be used only with a postprocessor file\n"
  6081. "that has 'toolchange_custom' in it's name and this is built\n"
  6082. "having as template the 'Toolchange Custom' posprocessor file."
  6083. msgstr ""
  6084. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
  6085. msgid "Use Toolchange Macro"
  6086. msgstr ""
  6087. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
  6088. msgid ""
  6089. "Check this box if you want to use\n"
  6090. "a Custom Toolchange GCode (macro)."
  6091. msgstr ""
  6092. #: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
  6093. msgid ""
  6094. "A list of the FlatCAM variables that can be used\n"
  6095. "in the Toolchange event.\n"
  6096. "They have to be surrounded by the '%' symbol"
  6097. msgstr ""
  6098. #: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
  6099. msgid "FlatCAM CNC parameters"
  6100. msgstr ""
  6101. #: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
  6102. msgid "tool = tool number"
  6103. msgstr ""
  6104. #: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
  6105. msgid "tooldia = tool diameter"
  6106. msgstr ""
  6107. #: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
  6108. msgid "t_drills = for Excellon, total number of drills"
  6109. msgstr ""
  6110. #: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
  6111. msgid "x_toolchange = X coord for Toolchange"
  6112. msgstr ""
  6113. #: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
  6114. msgid "y_toolchange = Y coord for Toolchange"
  6115. msgstr ""
  6116. #: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
  6117. msgid "z_toolchange = Z coord for Toolchange"
  6118. msgstr ""
  6119. #: flatcamGUI/FlatCAMGUI.py:6404
  6120. msgid "z_cut = Z depth for the cut"
  6121. msgstr ""
  6122. #: flatcamGUI/FlatCAMGUI.py:6405
  6123. msgid "z_move = Z height for travel"
  6124. msgstr ""
  6125. #: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
  6126. msgid "z_depthpercut = the step value for multidepth cut"
  6127. msgstr ""
  6128. #: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
  6129. msgid "spindlesspeed = the value for the spindle speed"
  6130. msgstr ""
  6131. #: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
  6132. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6133. msgstr ""
  6134. #: flatcamGUI/FlatCAMGUI.py:6430
  6135. msgid "NCC Tool Options"
  6136. msgstr ""
  6137. #: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
  6138. msgid ""
  6139. "Create a Geometry object with\n"
  6140. "toolpaths to cut all non-copper regions."
  6141. msgstr ""
  6142. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
  6143. msgid "Tools dia"
  6144. msgstr ""
  6145. #: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
  6146. msgid "Tool Type"
  6147. msgstr ""
  6148. #: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
  6149. #: flatcamTools/ToolNonCopperClear.py:197
  6150. #: flatcamTools/ToolNonCopperClear.py:205
  6151. msgid ""
  6152. "Default tool type:\n"
  6153. "- 'V-shape'\n"
  6154. "- Circular"
  6155. msgstr ""
  6156. #: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
  6157. msgid "V-shape"
  6158. msgstr ""
  6159. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
  6160. #: flatcamTools/ToolNonCopperClear.py:220
  6161. msgid "V-Tip Dia"
  6162. msgstr ""
  6163. #: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
  6164. #: flatcamTools/ToolNonCopperClear.py:222
  6165. msgid "The tip diameter for V-Shape Tool"
  6166. msgstr ""
  6167. #: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
  6168. #: flatcamTools/ToolNonCopperClear.py:227
  6169. msgid "V-Tip Angle"
  6170. msgstr ""
  6171. #: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
  6172. #: flatcamTools/ToolNonCopperClear.py:229
  6173. msgid ""
  6174. "The tip angle for V-Shape Tool.\n"
  6175. "In degree."
  6176. msgstr ""
  6177. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
  6178. #: flatcamTools/ToolNonCopperClear.py:149
  6179. #: flatcamTools/ToolNonCopperClear.py:157
  6180. msgid ""
  6181. "Milling type when the selected tool is of type: 'iso_op':\n"
  6182. "- climb / best for precision milling and to reduce tool usage\n"
  6183. "- conventional / useful when there is no backlash compensation"
  6184. msgstr ""
  6185. #: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
  6186. #: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
  6187. msgid "Tool order"
  6188. msgstr ""
  6189. #: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
  6190. #: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
  6191. #: flatcamTools/ToolNonCopperClear.py:164
  6192. #: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
  6193. #: flatcamTools/ToolPaint.py:147
  6194. msgid ""
  6195. "This set the way that the tools in the tools table are used.\n"
  6196. "'No' --> means that the used order is the one in the tool table\n"
  6197. "'Forward' --> means that the tools will be ordered from small to big\n"
  6198. "'Reverse' --> menas that the tools will ordered from big to small\n"
  6199. "\n"
  6200. "WARNING: using rest machining will automatically set the order\n"
  6201. "in reverse and disable this control."
  6202. msgstr ""
  6203. #: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
  6204. #: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
  6205. msgid "Forward"
  6206. msgstr ""
  6207. #: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
  6208. #: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
  6209. msgid "Reverse"
  6210. msgstr ""
  6211. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
  6212. #: flatcamTools/ToolNonCopperClear.py:271
  6213. #: flatcamTools/ToolNonCopperClear.py:276
  6214. msgid ""
  6215. "Depth of cut into material. Negative value.\n"
  6216. "In FlatCAM units."
  6217. msgstr ""
  6218. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
  6219. #, python-format
  6220. msgid ""
  6221. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6222. "Example:\n"
  6223. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6224. "\n"
  6225. "Adjust the value starting with lower values\n"
  6226. "and increasing it if areas that should be cleared are still \n"
  6227. "not cleared.\n"
  6228. "Lower values = faster processing, faster execution on PCB.\n"
  6229. "Higher values = slow processing and slow execution on CNC\n"
  6230. "due of too many paths."
  6231. msgstr ""
  6232. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
  6233. msgid "Bounding box margin."
  6234. msgstr ""
  6235. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
  6236. #: flatcamTools/ToolNonCopperClear.py:310
  6237. msgid ""
  6238. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6239. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6240. "lines."
  6241. msgstr ""
  6242. #: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
  6243. #: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
  6244. msgid "Connect"
  6245. msgstr ""
  6246. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
  6247. #: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
  6248. msgid "Contour"
  6249. msgstr ""
  6250. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
  6251. #: flatcamTools/ToolPaint.py:267
  6252. msgid "Rest M."
  6253. msgstr ""
  6254. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
  6255. msgid ""
  6256. "If checked, use 'rest machining'.\n"
  6257. "Basically it will clear copper outside PCB features,\n"
  6258. "using the biggest tool and continue with the next tools,\n"
  6259. "from bigger to smaller, to clear areas of copper that\n"
  6260. "could not be cleared by previous tool, until there is\n"
  6261. "no more copper to clear or there are no more tools.\n"
  6262. "If not checked, use the standard algorithm."
  6263. msgstr ""
  6264. #: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
  6265. #: flatcamTools/ToolNonCopperClear.py:359
  6266. #: flatcamTools/ToolNonCopperClear.py:371
  6267. msgid ""
  6268. "If used, it will add an offset to the copper features.\n"
  6269. "The copper clearing will finish to a distance\n"
  6270. "from the copper features.\n"
  6271. "The value can be between 0 and 10 FlatCAM units."
  6272. msgstr ""
  6273. #: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
  6274. msgid "Offset value"
  6275. msgstr ""
  6276. #: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
  6277. msgid "Itself"
  6278. msgstr ""
  6279. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
  6280. msgid "Area"
  6281. msgstr ""
  6282. #: flatcamGUI/FlatCAMGUI.py:6653
  6283. msgid "Ref"
  6284. msgstr ""
  6285. #: flatcamGUI/FlatCAMGUI.py:6654
  6286. msgid "Reference"
  6287. msgstr ""
  6288. #: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
  6289. msgid ""
  6290. "- 'Itself' - the non copper clearing extent\n"
  6291. "is based on the object that is copper cleared.\n"
  6292. " - 'Area Selection' - left mouse click to start selection of the area to be "
  6293. "painted.\n"
  6294. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6295. "areas.\n"
  6296. "- 'Reference Object' - will do non copper clearing within the area\n"
  6297. "specified by another object."
  6298. msgstr ""
  6299. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
  6300. msgid "Normal"
  6301. msgstr ""
  6302. #: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
  6303. msgid "Progressive"
  6304. msgstr ""
  6305. #: flatcamGUI/FlatCAMGUI.py:6669
  6306. msgid "NCC Plotting"
  6307. msgstr ""
  6308. #: flatcamGUI/FlatCAMGUI.py:6671
  6309. msgid ""
  6310. "- 'Normal' - normal plotting, done at the end of the NCC job\n"
  6311. "- 'Progressive' - after each shape is generated it will be plotted."
  6312. msgstr ""
  6313. #: flatcamGUI/FlatCAMGUI.py:6685
  6314. msgid "Cutout Tool Options"
  6315. msgstr ""
  6316. #: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
  6317. msgid ""
  6318. "Create toolpaths to cut around\n"
  6319. "the PCB and separate it from\n"
  6320. "the original board."
  6321. msgstr ""
  6322. #: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
  6323. msgid ""
  6324. "Diameter of the tool used to cutout\n"
  6325. "the PCB shape out of the surrounding material."
  6326. msgstr ""
  6327. #: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
  6328. msgid "Obj kind"
  6329. msgstr ""
  6330. #: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
  6331. msgid ""
  6332. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6333. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6334. "Gerber object, which is made\n"
  6335. "out of many individual PCB outlines."
  6336. msgstr ""
  6337. #: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
  6338. #: flatcamTools/ToolCutOut.py:84
  6339. msgid "Single"
  6340. msgstr ""
  6341. #: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
  6342. msgid "Panel"
  6343. msgstr ""
  6344. #: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
  6345. msgid ""
  6346. "Margin over bounds. A positive value here\n"
  6347. "will make the cutout of the PCB further from\n"
  6348. "the actual PCB border"
  6349. msgstr ""
  6350. #: flatcamGUI/FlatCAMGUI.py:6733
  6351. msgid "Gap size"
  6352. msgstr ""
  6353. #: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
  6354. msgid ""
  6355. "The size of the bridge gaps in the cutout\n"
  6356. "used to keep the board connected to\n"
  6357. "the surrounding material (the one \n"
  6358. "from which the PCB is cutout)."
  6359. msgstr ""
  6360. #: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
  6361. msgid "Gaps"
  6362. msgstr ""
  6363. #: flatcamGUI/FlatCAMGUI.py:6746
  6364. msgid ""
  6365. "Number of gaps used for the cutout.\n"
  6366. "There can be maximum 8 bridges/gaps.\n"
  6367. "The choices are:\n"
  6368. "- None - no gaps\n"
  6369. "- lr - left + right\n"
  6370. "- tb - top + bottom\n"
  6371. "- 4 - left + right +top + bottom\n"
  6372. "- 2lr - 2*left + 2*right\n"
  6373. "- 2tb - 2*top + 2*bottom\n"
  6374. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6375. msgstr ""
  6376. #: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
  6377. msgid "Convex Sh."
  6378. msgstr ""
  6379. #: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
  6380. msgid ""
  6381. "Create a convex shape surrounding the entire PCB.\n"
  6382. "Used only if the source object type is Gerber."
  6383. msgstr ""
  6384. #: flatcamGUI/FlatCAMGUI.py:6784
  6385. msgid "2Sided Tool Options"
  6386. msgstr ""
  6387. #: flatcamGUI/FlatCAMGUI.py:6789
  6388. msgid ""
  6389. "A tool to help in creating a double sided\n"
  6390. "PCB using alignment holes."
  6391. msgstr ""
  6392. #: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
  6393. msgid "Drill dia"
  6394. msgstr ""
  6395. #: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
  6396. #: flatcamTools/ToolDblSided.py:236
  6397. msgid "Diameter of the drill for the alignment holes."
  6398. msgstr ""
  6399. #: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
  6400. msgid "Mirror Axis:"
  6401. msgstr ""
  6402. #: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
  6403. msgid "Mirror vertically (X) or horizontally (Y)."
  6404. msgstr ""
  6405. #: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
  6406. msgid "Point"
  6407. msgstr ""
  6408. #: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
  6409. msgid "Box"
  6410. msgstr ""
  6411. #: flatcamGUI/FlatCAMGUI.py:6823
  6412. msgid "Axis Ref"
  6413. msgstr ""
  6414. #: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
  6415. msgid ""
  6416. "The axis should pass through a <b>point</b> or cut\n"
  6417. " a specified <b>box</b> (in a FlatCAM object) through \n"
  6418. "the center."
  6419. msgstr ""
  6420. #: flatcamGUI/FlatCAMGUI.py:6841
  6421. msgid "Paint Tool Options"
  6422. msgstr ""
  6423. #: flatcamGUI/FlatCAMGUI.py:6846
  6424. msgid "<b>Parameters:</b>"
  6425. msgstr ""
  6426. #: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
  6427. msgid ""
  6428. "Creates tool paths to cover the\n"
  6429. "whole area of a polygon (remove\n"
  6430. "all copper). You will be asked\n"
  6431. "to click on the desired polygon."
  6432. msgstr ""
  6433. #: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
  6434. msgid "Selection"
  6435. msgstr ""
  6436. #: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
  6437. #: flatcamTools/ToolPaint.py:300
  6438. msgid ""
  6439. "How to select Polygons to be painted.\n"
  6440. "\n"
  6441. "- 'Area Selection' - left mouse click to start selection of the area to be "
  6442. "painted.\n"
  6443. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6444. "areas.\n"
  6445. "- 'All Polygons' - the Paint will start after click.\n"
  6446. "- 'Reference Object' - will do non copper clearing within the area\n"
  6447. "specified by another object."
  6448. msgstr ""
  6449. #: flatcamGUI/FlatCAMGUI.py:6967
  6450. msgid "Ref."
  6451. msgstr ""
  6452. #: flatcamGUI/FlatCAMGUI.py:6975
  6453. msgid "Paint Plotting"
  6454. msgstr ""
  6455. #: flatcamGUI/FlatCAMGUI.py:6977
  6456. msgid ""
  6457. "- 'Normal' - normal plotting, done at the end of the Paint job\n"
  6458. "- 'Progressive' - after each shape is generated it will be plotted."
  6459. msgstr ""
  6460. #: flatcamGUI/FlatCAMGUI.py:6991
  6461. msgid "Film Tool Options"
  6462. msgstr ""
  6463. #: flatcamGUI/FlatCAMGUI.py:6996
  6464. msgid ""
  6465. "Create a PCB film from a Gerber or Geometry\n"
  6466. "FlatCAM object.\n"
  6467. "The file is saved in SVG format."
  6468. msgstr ""
  6469. #: flatcamGUI/FlatCAMGUI.py:7007
  6470. msgid "Film Type"
  6471. msgstr ""
  6472. #: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
  6473. msgid ""
  6474. "Generate a Positive black film or a Negative film.\n"
  6475. "Positive means that it will print the features\n"
  6476. "with black on a white canvas.\n"
  6477. "Negative means that it will print the features\n"
  6478. "with white on a black canvas.\n"
  6479. "The Film format is SVG."
  6480. msgstr ""
  6481. #: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
  6482. msgid "Border"
  6483. msgstr ""
  6484. #: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
  6485. msgid ""
  6486. "Specify a border around the object.\n"
  6487. "Only for negative film.\n"
  6488. "It helps if we use as a Box Object the same \n"
  6489. "object as in Film Object. It will create a thick\n"
  6490. "black bar around the actual print allowing for a\n"
  6491. "better delimitation of the outline features which are of\n"
  6492. "white color like the rest and which may confound with the\n"
  6493. "surroundings if not for this border."
  6494. msgstr ""
  6495. #: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
  6496. msgid "Scale Stroke"
  6497. msgstr ""
  6498. #: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
  6499. msgid ""
  6500. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6501. "It means that the line that envelope each SVG feature will be thicker or "
  6502. "thinner,\n"
  6503. "therefore the fine features may be more affected by this parameter."
  6504. msgstr ""
  6505. #: flatcamGUI/FlatCAMGUI.py:7052
  6506. msgid "Panelize Tool Options"
  6507. msgstr ""
  6508. #: flatcamGUI/FlatCAMGUI.py:7057
  6509. msgid ""
  6510. "Create an object that contains an array of (x, y) elements,\n"
  6511. "each element is a copy of the source object spaced\n"
  6512. "at a X distance, Y distance of each other."
  6513. msgstr ""
  6514. #: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
  6515. msgid "Spacing cols"
  6516. msgstr ""
  6517. #: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
  6518. msgid ""
  6519. "Spacing between columns of the desired panel.\n"
  6520. "In current units."
  6521. msgstr ""
  6522. #: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
  6523. msgid "Spacing rows"
  6524. msgstr ""
  6525. #: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
  6526. msgid ""
  6527. "Spacing between rows of the desired panel.\n"
  6528. "In current units."
  6529. msgstr ""
  6530. #: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
  6531. msgid "Columns"
  6532. msgstr ""
  6533. #: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
  6534. msgid "Number of columns of the desired panel"
  6535. msgstr ""
  6536. #: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
  6537. msgid "Rows"
  6538. msgstr ""
  6539. #: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
  6540. msgid "Number of rows of the desired panel"
  6541. msgstr ""
  6542. #: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
  6543. msgid "Gerber"
  6544. msgstr ""
  6545. #: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
  6546. msgid "Geo"
  6547. msgstr ""
  6548. #: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
  6549. msgid "Panel Type"
  6550. msgstr ""
  6551. #: flatcamGUI/FlatCAMGUI.py:7109
  6552. msgid ""
  6553. "Choose the type of object for the panel object:\n"
  6554. "- Gerber\n"
  6555. "- Geometry"
  6556. msgstr ""
  6557. #: flatcamGUI/FlatCAMGUI.py:7118
  6558. msgid "Constrain within"
  6559. msgstr ""
  6560. #: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
  6561. msgid ""
  6562. "Area define by DX and DY within to constrain the panel.\n"
  6563. "DX and DY values are in current units.\n"
  6564. "Regardless of how many columns and rows are desired,\n"
  6565. "the final panel will have as many columns and rows as\n"
  6566. "they fit completely within selected area."
  6567. msgstr ""
  6568. #: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
  6569. msgid "Width (DX)"
  6570. msgstr ""
  6571. #: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
  6572. msgid ""
  6573. "The width (DX) within which the panel must fit.\n"
  6574. "In current units."
  6575. msgstr ""
  6576. #: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
  6577. msgid "Height (DY)"
  6578. msgstr ""
  6579. #: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
  6580. msgid ""
  6581. "The height (DY)within which the panel must fit.\n"
  6582. "In current units."
  6583. msgstr ""
  6584. #: flatcamGUI/FlatCAMGUI.py:7154
  6585. msgid "Calculators Tool Options"
  6586. msgstr ""
  6587. #: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
  6588. msgid "V-Shape Tool Calculator"
  6589. msgstr ""
  6590. #: flatcamGUI/FlatCAMGUI.py:7159
  6591. msgid ""
  6592. "Calculate the tool diameter for a given V-shape tool,\n"
  6593. "having the tip diameter, tip angle and\n"
  6594. "depth-of-cut as parameters."
  6595. msgstr ""
  6596. #: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
  6597. msgid "Tip Diameter"
  6598. msgstr ""
  6599. #: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
  6600. msgid ""
  6601. "This is the tool tip diameter.\n"
  6602. "It is specified by manufacturer."
  6603. msgstr ""
  6604. #: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
  6605. msgid "Tip Angle"
  6606. msgstr ""
  6607. #: flatcamGUI/FlatCAMGUI.py:7182
  6608. msgid ""
  6609. "This is the angle on the tip of the tool.\n"
  6610. "It is specified by manufacturer."
  6611. msgstr ""
  6612. #: flatcamGUI/FlatCAMGUI.py:7192
  6613. msgid ""
  6614. "This is depth to cut into material.\n"
  6615. "In the CNCJob object it is the CutZ parameter."
  6616. msgstr ""
  6617. #: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
  6618. msgid "ElectroPlating Calculator"
  6619. msgstr ""
  6620. #: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
  6621. msgid ""
  6622. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6623. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6624. "chloride."
  6625. msgstr ""
  6626. #: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
  6627. msgid "Board Length"
  6628. msgstr ""
  6629. #: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
  6630. msgid "This is the board length. In centimeters."
  6631. msgstr ""
  6632. #: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
  6633. msgid "Board Width"
  6634. msgstr ""
  6635. #: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
  6636. msgid "This is the board width.In centimeters."
  6637. msgstr ""
  6638. #: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
  6639. msgid "Current Density"
  6640. msgstr ""
  6641. #: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
  6642. msgid ""
  6643. "Current density to pass through the board. \n"
  6644. "In Amps per Square Feet ASF."
  6645. msgstr ""
  6646. #: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
  6647. msgid "Copper Growth"
  6648. msgstr ""
  6649. #: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
  6650. msgid ""
  6651. "How thick the copper growth is intended to be.\n"
  6652. "In microns."
  6653. msgstr ""
  6654. #: flatcamGUI/FlatCAMGUI.py:7251
  6655. msgid "Transform Tool Options"
  6656. msgstr ""
  6657. #: flatcamGUI/FlatCAMGUI.py:7256
  6658. msgid ""
  6659. "Various transformations that can be applied\n"
  6660. "on a FlatCAM object."
  6661. msgstr ""
  6662. #: flatcamGUI/FlatCAMGUI.py:7266
  6663. msgid "Rotate Angle"
  6664. msgstr ""
  6665. #: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
  6666. msgid "Skew_X angle"
  6667. msgstr ""
  6668. #: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
  6669. msgid "Skew_Y angle"
  6670. msgstr ""
  6671. #: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
  6672. msgid "Scale_X factor"
  6673. msgstr ""
  6674. #: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
  6675. msgid "Factor for scaling on X axis."
  6676. msgstr ""
  6677. #: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
  6678. msgid "Scale_Y factor"
  6679. msgstr ""
  6680. #: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
  6681. msgid "Factor for scaling on Y axis."
  6682. msgstr ""
  6683. #: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
  6684. msgid ""
  6685. "Scale the selected object(s)\n"
  6686. "using the Scale_X factor for both axis."
  6687. msgstr ""
  6688. #: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
  6689. msgid ""
  6690. "Scale the selected object(s)\n"
  6691. "using the origin reference when checked,\n"
  6692. "and the center of the biggest bounding box\n"
  6693. "of the selected objects when unchecked."
  6694. msgstr ""
  6695. #: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
  6696. msgid "Offset_X val"
  6697. msgstr ""
  6698. #: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
  6699. msgid "Distance to offset on X axis. In current units."
  6700. msgstr ""
  6701. #: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
  6702. msgid "Offset_Y val"
  6703. msgstr ""
  6704. #: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
  6705. msgid "Distance to offset on Y axis. In current units."
  6706. msgstr ""
  6707. #: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
  6708. msgid "Mirror Reference"
  6709. msgstr ""
  6710. #: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
  6711. msgid ""
  6712. "Flip the selected object(s)\n"
  6713. "around the point in Point Entry Field.\n"
  6714. "\n"
  6715. "The point coordinates can be captured by\n"
  6716. "left click on canvas together with pressing\n"
  6717. "SHIFT key. \n"
  6718. "Then click Add button to insert coordinates.\n"
  6719. "Or enter the coords in format (x, y) in the\n"
  6720. "Point Entry field and click Flip on X(Y)"
  6721. msgstr ""
  6722. #: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
  6723. msgid " Mirror Ref. Point"
  6724. msgstr ""
  6725. #: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
  6726. msgid ""
  6727. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6728. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6729. "the 'y' in (x, y) will be used when using Flip on Y and"
  6730. msgstr ""
  6731. #: flatcamGUI/FlatCAMGUI.py:7383
  6732. msgid "SolderPaste Tool Options"
  6733. msgstr ""
  6734. #: flatcamGUI/FlatCAMGUI.py:7388
  6735. msgid ""
  6736. "A tool to create GCode for dispensing\n"
  6737. "solder paste onto a PCB."
  6738. msgstr ""
  6739. #: flatcamGUI/FlatCAMGUI.py:7399
  6740. msgid "Diameters of nozzle tools, separated by ','"
  6741. msgstr ""
  6742. #: flatcamGUI/FlatCAMGUI.py:7406
  6743. msgid "New Nozzle Dia"
  6744. msgstr ""
  6745. #: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
  6746. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6747. msgstr ""
  6748. #: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
  6749. msgid "Z Dispense Start"
  6750. msgstr ""
  6751. #: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
  6752. msgid "The height (Z) when solder paste dispensing starts."
  6753. msgstr ""
  6754. #: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
  6755. msgid "Z Dispense"
  6756. msgstr ""
  6757. #: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
  6758. msgid "The height (Z) when doing solder paste dispensing."
  6759. msgstr ""
  6760. #: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
  6761. msgid "Z Dispense Stop"
  6762. msgstr ""
  6763. #: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
  6764. msgid "The height (Z) when solder paste dispensing stops."
  6765. msgstr ""
  6766. #: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
  6767. msgid "Z Travel"
  6768. msgstr ""
  6769. #: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
  6770. msgid ""
  6771. "The height (Z) for travel between pads\n"
  6772. "(without dispensing solder paste)."
  6773. msgstr ""
  6774. #: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
  6775. msgid "Z Toolchange"
  6776. msgstr ""
  6777. #: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
  6778. msgid "The height (Z) for tool (nozzle) change."
  6779. msgstr ""
  6780. #: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
  6781. msgid "Toolchange X-Y"
  6782. msgstr ""
  6783. #: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
  6784. msgid ""
  6785. "The X,Y location for tool (nozzle) change.\n"
  6786. "The format is (x, y) where x and y are real numbers."
  6787. msgstr ""
  6788. #: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
  6789. msgid "Feedrate X-Y"
  6790. msgstr ""
  6791. #: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
  6792. msgid "Feedrate (speed) while moving on the X-Y plane."
  6793. msgstr ""
  6794. #: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
  6795. msgid "Feedrate Z"
  6796. msgstr ""
  6797. #: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
  6798. msgid ""
  6799. "Feedrate (speed) while moving vertically\n"
  6800. "(on Z plane)."
  6801. msgstr ""
  6802. #: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
  6803. msgid "Feedrate Z Dispense"
  6804. msgstr ""
  6805. #: flatcamGUI/FlatCAMGUI.py:7493
  6806. msgid ""
  6807. "Feedrate (speed) while moving up vertically\n"
  6808. "to Dispense position (on Z plane)."
  6809. msgstr ""
  6810. #: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
  6811. msgid "Spindle Speed FWD"
  6812. msgstr ""
  6813. #: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
  6814. msgid ""
  6815. "The dispenser speed while pushing solder paste\n"
  6816. "through the dispenser nozzle."
  6817. msgstr ""
  6818. #: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
  6819. msgid "Dwell FWD"
  6820. msgstr ""
  6821. #: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
  6822. msgid "Pause after solder dispensing."
  6823. msgstr ""
  6824. #: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
  6825. msgid "Spindle Speed REV"
  6826. msgstr ""
  6827. #: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
  6828. msgid ""
  6829. "The dispenser speed while retracting solder paste\n"
  6830. "through the dispenser nozzle."
  6831. msgstr ""
  6832. #: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
  6833. msgid "Dwell REV"
  6834. msgstr ""
  6835. #: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
  6836. msgid ""
  6837. "Pause after solder paste dispenser retracted,\n"
  6838. "to allow pressure equilibrium."
  6839. msgstr ""
  6840. #: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
  6841. #: flatcamTools/ToolSolderPaste.py:276
  6842. msgid "PostProcessor"
  6843. msgstr ""
  6844. #: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
  6845. msgid "Files that control the GCode generation."
  6846. msgstr ""
  6847. #: flatcamGUI/FlatCAMGUI.py:7556
  6848. msgid "Substractor Tool Options"
  6849. msgstr ""
  6850. #: flatcamGUI/FlatCAMGUI.py:7561
  6851. msgid ""
  6852. "A tool to substract one Gerber or Geometry object\n"
  6853. "from another of the same type."
  6854. msgstr ""
  6855. #: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
  6856. msgid "Close paths"
  6857. msgstr ""
  6858. #: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
  6859. msgid ""
  6860. "Checking this will close the paths cut by the Geometry substractor object."
  6861. msgstr ""
  6862. #: flatcamGUI/FlatCAMGUI.py:7578
  6863. msgid "Excellon File associations"
  6864. msgstr ""
  6865. #: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
  6866. #: flatcamGUI/FlatCAMGUI.py:7647
  6867. msgid "Extensions list"
  6868. msgstr ""
  6869. #: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
  6870. #: flatcamGUI/FlatCAMGUI.py:7649
  6871. msgid ""
  6872. "List of file extensions to be\n"
  6873. "associated with FlatCAM."
  6874. msgstr ""
  6875. #: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
  6876. #: flatcamGUI/FlatCAMGUI.py:7662
  6877. msgid ""
  6878. "Apply the file associations between\n"
  6879. "FlatCAM and the files with above extensions.\n"
  6880. "They will be active after next logon.\n"
  6881. "This work only in Windows."
  6882. msgstr ""
  6883. #: flatcamGUI/FlatCAMGUI.py:7611
  6884. msgid "GCode File associations"
  6885. msgstr ""
  6886. #: flatcamGUI/FlatCAMGUI.py:7644
  6887. msgid "Gerber File associations"
  6888. msgstr ""
  6889. #: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
  6890. msgid "Idle."
  6891. msgstr ""
  6892. #: flatcamGUI/FlatCAMGUI.py:7722
  6893. msgid "Application started ..."
  6894. msgstr ""
  6895. #: flatcamGUI/FlatCAMGUI.py:7723
  6896. msgid "Hello!"
  6897. msgstr ""
  6898. #: flatcamGUI/ObjectUI.py:33
  6899. msgid "FlatCAM Object"
  6900. msgstr ""
  6901. #: flatcamGUI/ObjectUI.py:58
  6902. msgid ""
  6903. "BASIC is suitable for a beginner. Many parameters\n"
  6904. "are hidden from the user in this mode.\n"
  6905. "ADVANCED mode will make available all parameters.\n"
  6906. "\n"
  6907. "To change the application LEVEL, go to:\n"
  6908. "Edit -> Preferences -> General and check:\n"
  6909. "'APP. LEVEL' radio button."
  6910. msgstr ""
  6911. #: flatcamGUI/ObjectUI.py:81
  6912. msgid "Change the size of the object."
  6913. msgstr ""
  6914. #: flatcamGUI/ObjectUI.py:89
  6915. msgid "Factor"
  6916. msgstr ""
  6917. #: flatcamGUI/ObjectUI.py:91
  6918. msgid ""
  6919. "Factor by which to multiply\n"
  6920. "geometric features of this object."
  6921. msgstr ""
  6922. #: flatcamGUI/ObjectUI.py:102
  6923. msgid "Perform scaling operation."
  6924. msgstr ""
  6925. #: flatcamGUI/ObjectUI.py:110
  6926. msgid "Change the position of this object."
  6927. msgstr ""
  6928. #: flatcamGUI/ObjectUI.py:117
  6929. msgid "Vector"
  6930. msgstr ""
  6931. #: flatcamGUI/ObjectUI.py:119
  6932. msgid ""
  6933. "Amount by which to move the object\n"
  6934. "in the x and y axes in (x, y) format."
  6935. msgstr ""
  6936. #: flatcamGUI/ObjectUI.py:129
  6937. msgid "Perform the offset operation."
  6938. msgstr ""
  6939. #: flatcamGUI/ObjectUI.py:143
  6940. msgid "Gerber Object"
  6941. msgstr ""
  6942. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
  6943. #: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
  6944. msgid "Name"
  6945. msgstr ""
  6946. #: flatcamGUI/ObjectUI.py:203
  6947. msgid ""
  6948. "Toggle the display of the Gerber Apertures Table.\n"
  6949. "When unchecked, it will delete all mark shapes\n"
  6950. "that are drawn on canvas."
  6951. msgstr ""
  6952. #: flatcamGUI/ObjectUI.py:213
  6953. msgid "Mark All"
  6954. msgstr ""
  6955. #: flatcamGUI/ObjectUI.py:215
  6956. msgid ""
  6957. "When checked it will display all the apertures.\n"
  6958. "When unchecked, it will delete all mark shapes\n"
  6959. "that are drawn on canvas."
  6960. msgstr ""
  6961. #: flatcamGUI/ObjectUI.py:243
  6962. msgid "Mark the aperture instances on canvas."
  6963. msgstr ""
  6964. #: flatcamGUI/ObjectUI.py:266
  6965. msgid ""
  6966. "Diameter of the cutting tool.\n"
  6967. "If you want to have an isolation path\n"
  6968. "inside the actual shape of the Gerber\n"
  6969. "feature, use a negative value for\n"
  6970. "this parameter."
  6971. msgstr ""
  6972. #: flatcamGUI/ObjectUI.py:324
  6973. msgid "Except"
  6974. msgstr ""
  6975. #: flatcamGUI/ObjectUI.py:325
  6976. msgid ""
  6977. "When the isolation geometry is generated,\n"
  6978. "by checking this, the area of the object bellow\n"
  6979. "will be subtracted from the isolation geometry."
  6980. msgstr ""
  6981. #: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
  6982. #: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
  6983. msgid "Obj Type"
  6984. msgstr ""
  6985. #: flatcamGUI/ObjectUI.py:352
  6986. msgid ""
  6987. "Specify the type of object to be excepted from isolation.\n"
  6988. "It can be of type: Gerber or Geometry.\n"
  6989. "What is selected here will dictate the kind\n"
  6990. "of objects that will populate the 'Object' combobox."
  6991. msgstr ""
  6992. #: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
  6993. #: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
  6994. #: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
  6995. msgid "Object"
  6996. msgstr ""
  6997. #: flatcamGUI/ObjectUI.py:366
  6998. msgid "Object whose area will be removed from isolation geometry."
  6999. msgstr ""
  7000. #: flatcamGUI/ObjectUI.py:370
  7001. msgid "Generate Isolation Geometry"
  7002. msgstr ""
  7003. #: flatcamGUI/ObjectUI.py:372
  7004. msgid ""
  7005. "Create a Geometry object with toolpaths to cut \n"
  7006. "isolation outside, inside or on both sides of the\n"
  7007. "object. For a Gerber object outside means outside\n"
  7008. "of the Gerber feature and inside means inside of\n"
  7009. "the Gerber feature, if possible at all. This means\n"
  7010. "that only if the Gerber feature has openings inside, they\n"
  7011. "will be isolated. If what is wanted is to cut isolation\n"
  7012. "inside the actual Gerber feature, use a negative tool\n"
  7013. "diameter above."
  7014. msgstr ""
  7015. #: flatcamGUI/ObjectUI.py:384
  7016. msgid "Buffer Solid Geometry"
  7017. msgstr ""
  7018. #: flatcamGUI/ObjectUI.py:386
  7019. msgid ""
  7020. "This button is shown only when the Gerber file\n"
  7021. "is loaded without buffering.\n"
  7022. "Clicking this will create the buffered geometry\n"
  7023. "required for isolation."
  7024. msgstr ""
  7025. #: flatcamGUI/ObjectUI.py:393
  7026. msgid "FULL Geo"
  7027. msgstr ""
  7028. #: flatcamGUI/ObjectUI.py:395
  7029. msgid ""
  7030. "Create the Geometry Object\n"
  7031. "for isolation routing. It contains both\n"
  7032. "the interiors and exteriors geometry."
  7033. msgstr ""
  7034. #: flatcamGUI/ObjectUI.py:404
  7035. msgid "Ext Geo"
  7036. msgstr ""
  7037. #: flatcamGUI/ObjectUI.py:406
  7038. msgid ""
  7039. "Create the Geometry Object\n"
  7040. "for isolation routing containing\n"
  7041. "only the exteriors geometry."
  7042. msgstr ""
  7043. #: flatcamGUI/ObjectUI.py:413
  7044. msgid "Int Geo"
  7045. msgstr ""
  7046. #: flatcamGUI/ObjectUI.py:415
  7047. msgid ""
  7048. "Create the Geometry Object\n"
  7049. "for isolation routing containing\n"
  7050. "only the interiors geometry."
  7051. msgstr ""
  7052. #: flatcamGUI/ObjectUI.py:445
  7053. msgid "Clear N-copper"
  7054. msgstr ""
  7055. #: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
  7056. msgid ""
  7057. "Create the Geometry Object\n"
  7058. "for non-copper routing."
  7059. msgstr ""
  7060. #: flatcamGUI/ObjectUI.py:461
  7061. msgid "Board cutout"
  7062. msgstr ""
  7063. #: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
  7064. msgid "Cutout Tool"
  7065. msgstr ""
  7066. #: flatcamGUI/ObjectUI.py:470
  7067. msgid ""
  7068. "Generate the geometry for\n"
  7069. "the board cutout."
  7070. msgstr ""
  7071. #: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
  7072. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  7073. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  7074. msgid "Generate Geo"
  7075. msgstr ""
  7076. #: flatcamGUI/ObjectUI.py:515
  7077. msgid ""
  7078. "Create a geometry surrounding the Gerber object.\n"
  7079. "Square shape."
  7080. msgstr ""
  7081. #: flatcamGUI/ObjectUI.py:542
  7082. msgid "Generate the Geometry object."
  7083. msgstr ""
  7084. #: flatcamGUI/ObjectUI.py:554
  7085. msgid "Excellon Object"
  7086. msgstr ""
  7087. #: flatcamGUI/ObjectUI.py:565
  7088. msgid "Solid circles."
  7089. msgstr ""
  7090. #: flatcamGUI/ObjectUI.py:613
  7091. msgid "Drills"
  7092. msgstr ""
  7093. #: flatcamGUI/ObjectUI.py:618
  7094. msgid ""
  7095. "This is the Tool Number.\n"
  7096. "When ToolChange is checked, on toolchange event this value\n"
  7097. "will be showed as a T1, T2 ... Tn in the Machine Code.\n"
  7098. "\n"
  7099. "Here the tools are selected for G-code generation."
  7100. msgstr ""
  7101. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
  7102. #: flatcamTools/ToolPaint.py:120
  7103. msgid ""
  7104. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7105. "is the cut width into the material."
  7106. msgstr ""
  7107. #: flatcamGUI/ObjectUI.py:626
  7108. msgid ""
  7109. "The number of Drill holes. Holes that are drilled with\n"
  7110. "a drill bit."
  7111. msgstr ""
  7112. #: flatcamGUI/ObjectUI.py:629
  7113. msgid ""
  7114. "The number of Slot holes. Holes that are created by\n"
  7115. "milling them with an endmill bit."
  7116. msgstr ""
  7117. #: flatcamGUI/ObjectUI.py:636
  7118. msgid ""
  7119. "Toggle display of the drills for the current tool.\n"
  7120. "This does not select the tools for G-code generation."
  7121. msgstr ""
  7122. #: flatcamGUI/ObjectUI.py:645
  7123. msgid ""
  7124. "Create a CNC Job object\n"
  7125. "for this drill object."
  7126. msgstr ""
  7127. #: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
  7128. msgid "Tool change Z"
  7129. msgstr ""
  7130. #: flatcamGUI/ObjectUI.py:799
  7131. msgid ""
  7132. "Select from the Tools Table above\n"
  7133. "the hole dias that are to be drilled.\n"
  7134. "Use the # column to make the selection."
  7135. msgstr ""
  7136. #: flatcamGUI/ObjectUI.py:809
  7137. msgid ""
  7138. "Choose what to use for GCode generation:\n"
  7139. "'Drills', 'Slots' or 'Both'.\n"
  7140. "When choosing 'Slots' or 'Both', slots will be\n"
  7141. "converted to a series of drills."
  7142. msgstr ""
  7143. #: flatcamGUI/ObjectUI.py:824
  7144. msgid "Create Drills GCode"
  7145. msgstr ""
  7146. #: flatcamGUI/ObjectUI.py:826
  7147. msgid "Generate the CNC Job."
  7148. msgstr ""
  7149. #: flatcamGUI/ObjectUI.py:838
  7150. msgid ""
  7151. "Select from the Tools Table above\n"
  7152. "the hole dias that are to be milled.\n"
  7153. "Use the # column to make the selection."
  7154. msgstr ""
  7155. #: flatcamGUI/ObjectUI.py:853
  7156. msgid "Mill Drills Geo"
  7157. msgstr ""
  7158. #: flatcamGUI/ObjectUI.py:855
  7159. msgid ""
  7160. "Create the Geometry Object\n"
  7161. "for milling DRILLS toolpaths."
  7162. msgstr ""
  7163. #: flatcamGUI/ObjectUI.py:870
  7164. msgid "Mill Slots Geo"
  7165. msgstr ""
  7166. #: flatcamGUI/ObjectUI.py:872
  7167. msgid ""
  7168. "Create the Geometry Object\n"
  7169. "for milling SLOTS toolpaths."
  7170. msgstr ""
  7171. #: flatcamGUI/ObjectUI.py:890
  7172. msgid "Geometry Object"
  7173. msgstr ""
  7174. #: flatcamGUI/ObjectUI.py:921
  7175. msgid ""
  7176. "Tools in this Geometry object used for cutting.\n"
  7177. "The 'Offset' entry will set an offset for the cut.\n"
  7178. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7179. "'Type' entry is only informative and it allow to know the \n"
  7180. "intent of using the current tool. \n"
  7181. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7182. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7183. "ball(B), or V-Shaped(V). \n"
  7184. "When V-shaped is selected the 'Type' entry is automatically \n"
  7185. "set to Isolation, the CutZ parameter in the UI form is\n"
  7186. "grayed out and Cut Z is automatically calculated from the newly \n"
  7187. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7188. msgstr ""
  7189. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7190. msgid "Dia"
  7191. msgstr ""
  7192. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7193. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  7194. msgid "TT"
  7195. msgstr ""
  7196. #: flatcamGUI/ObjectUI.py:959
  7197. msgid ""
  7198. "This is the Tool Number.\n"
  7199. "When ToolChange is checked, on toolchange event this value\n"
  7200. "will be showed as a T1, T2 ... Tn"
  7201. msgstr ""
  7202. #: flatcamGUI/ObjectUI.py:970
  7203. msgid ""
  7204. "The value for the Offset can be:\n"
  7205. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7206. "line.\n"
  7207. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7208. "'pocket'.\n"
  7209. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7210. msgstr ""
  7211. #: flatcamGUI/ObjectUI.py:977
  7212. msgid ""
  7213. "The (Operation) Type has only informative value. Usually the UI form "
  7214. "values \n"
  7215. "are choose based on the operation type and this will serve as a reminder.\n"
  7216. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7217. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7218. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7219. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7220. "tip."
  7221. msgstr ""
  7222. #: flatcamGUI/ObjectUI.py:986
  7223. msgid ""
  7224. "The Tool Type (TT) can be:\n"
  7225. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7226. "cut width in material\n"
  7227. "is exactly the tool diameter.\n"
  7228. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7229. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7230. "two additional UI form\n"
  7231. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7232. "the Z-Cut parameter such\n"
  7233. "as the cut width into material will be equal with the value in the Tool "
  7234. "Diameter column of this table.\n"
  7235. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7236. "as Isolation."
  7237. msgstr ""
  7238. #: flatcamGUI/ObjectUI.py:998
  7239. msgid ""
  7240. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7241. "that holds the geometry\n"
  7242. "data into the tools. For those geometries, deleting the tool will delete the "
  7243. "geometry data also,\n"
  7244. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7245. "plot on canvas\n"
  7246. "for the corresponding tool."
  7247. msgstr ""
  7248. #: flatcamGUI/ObjectUI.py:1011
  7249. msgid "Tool Offset"
  7250. msgstr ""
  7251. #: flatcamGUI/ObjectUI.py:1014
  7252. msgid ""
  7253. "The value to offset the cut when \n"
  7254. "the Offset type selected is 'Offset'.\n"
  7255. "The value can be positive for 'outside'\n"
  7256. "cut and negative for 'inside' cut."
  7257. msgstr ""
  7258. #: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
  7259. #: flatcamTools/ToolPaint.py:178
  7260. msgid ""
  7261. "Add a new tool to the Tool Table\n"
  7262. "with the diameter specified above."
  7263. msgstr ""
  7264. #: flatcamGUI/ObjectUI.py:1064
  7265. msgid ""
  7266. "Copy a selection of tools in the Tool Table\n"
  7267. "by first selecting a row in the Tool Table."
  7268. msgstr ""
  7269. #: flatcamGUI/ObjectUI.py:1072
  7270. msgid ""
  7271. "Delete a selection of tools in the Tool Table\n"
  7272. "by first selecting a row in the Tool Table."
  7273. msgstr ""
  7274. #: flatcamGUI/ObjectUI.py:1088
  7275. msgid "Tool Data"
  7276. msgstr ""
  7277. #: flatcamGUI/ObjectUI.py:1091
  7278. msgid ""
  7279. "The data used for creating GCode.\n"
  7280. "Each tool store it's own set of such data."
  7281. msgstr ""
  7282. #: flatcamGUI/ObjectUI.py:1158
  7283. msgid "Depth of each pass (positive)."
  7284. msgstr ""
  7285. #: flatcamGUI/ObjectUI.py:1332
  7286. msgid ""
  7287. "Add at least one tool in the tool-table.\n"
  7288. "Click the header to select all, or Ctrl + LMB\n"
  7289. "for custom selection of tools."
  7290. msgstr ""
  7291. #: flatcamGUI/ObjectUI.py:1339
  7292. msgid "Generate"
  7293. msgstr ""
  7294. #: flatcamGUI/ObjectUI.py:1341
  7295. msgid "Generate the CNC Job object."
  7296. msgstr ""
  7297. #: flatcamGUI/ObjectUI.py:1348
  7298. msgid "Paint Area"
  7299. msgstr ""
  7300. #: flatcamGUI/ObjectUI.py:1362
  7301. msgid "Launch Paint Tool in Tools Tab."
  7302. msgstr ""
  7303. #: flatcamGUI/ObjectUI.py:1378
  7304. msgid "CNC Job Object"
  7305. msgstr ""
  7306. #: flatcamGUI/ObjectUI.py:1429
  7307. msgid "Travelled dist."
  7308. msgstr ""
  7309. #: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
  7310. msgid ""
  7311. "This is the total travelled distance on X-Y plane.\n"
  7312. "In current units."
  7313. msgstr ""
  7314. #: flatcamGUI/ObjectUI.py:1441
  7315. msgid "Estimated time"
  7316. msgstr ""
  7317. #: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
  7318. msgid ""
  7319. "This is the estimated time to do the routing/drilling,\n"
  7320. "without the time spent in ToolChange events."
  7321. msgstr ""
  7322. #: flatcamGUI/ObjectUI.py:1483
  7323. msgid "CNC Tools Table"
  7324. msgstr ""
  7325. #: flatcamGUI/ObjectUI.py:1486
  7326. msgid ""
  7327. "Tools in this CNCJob object used for cutting.\n"
  7328. "The tool diameter is used for plotting on canvas.\n"
  7329. "The 'Offset' entry will set an offset for the cut.\n"
  7330. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7331. "'Type' entry is only informative and it allow to know the \n"
  7332. "intent of using the current tool. \n"
  7333. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7334. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7335. "ball(B), or V-Shaped(V)."
  7336. msgstr ""
  7337. #: flatcamGUI/ObjectUI.py:1518
  7338. msgid "P"
  7339. msgstr ""
  7340. #: flatcamGUI/ObjectUI.py:1524
  7341. msgid "Update Plot"
  7342. msgstr ""
  7343. #: flatcamGUI/ObjectUI.py:1526
  7344. msgid "Update the plot."
  7345. msgstr ""
  7346. #: flatcamGUI/ObjectUI.py:1541
  7347. msgid "Prepend to CNC Code"
  7348. msgstr ""
  7349. #: flatcamGUI/ObjectUI.py:1552
  7350. msgid "Append to CNC Code"
  7351. msgstr ""
  7352. #: flatcamGUI/ObjectUI.py:1620
  7353. msgid "z_cut = depth where to cut"
  7354. msgstr ""
  7355. #: flatcamGUI/ObjectUI.py:1621
  7356. msgid "z_move = height where to travel"
  7357. msgstr ""
  7358. #: flatcamGUI/ObjectUI.py:1640
  7359. msgid "View CNC Code"
  7360. msgstr ""
  7361. #: flatcamGUI/ObjectUI.py:1642
  7362. msgid ""
  7363. "Opens TAB to view/modify/print G-Code\n"
  7364. "file."
  7365. msgstr ""
  7366. #: flatcamGUI/ObjectUI.py:1647
  7367. msgid "Save CNC Code"
  7368. msgstr ""
  7369. #: flatcamGUI/ObjectUI.py:1649
  7370. msgid ""
  7371. "Opens dialog to save G-Code\n"
  7372. "file."
  7373. msgstr ""
  7374. #: flatcamParsers/ParseFont.py:305
  7375. msgid "Font not supported, try another one."
  7376. msgstr ""
  7377. #: flatcamTools/ToolCalculators.py:24
  7378. msgid "Calculators"
  7379. msgstr ""
  7380. #: flatcamTools/ToolCalculators.py:26
  7381. msgid "Units Calculator"
  7382. msgstr ""
  7383. #: flatcamTools/ToolCalculators.py:68
  7384. msgid "Here you enter the value to be converted from INCH to MM"
  7385. msgstr ""
  7386. #: flatcamTools/ToolCalculators.py:73
  7387. msgid "Here you enter the value to be converted from MM to INCH"
  7388. msgstr ""
  7389. #: flatcamTools/ToolCalculators.py:104
  7390. msgid ""
  7391. "This is the angle of the tip of the tool.\n"
  7392. "It is specified by manufacturer."
  7393. msgstr ""
  7394. #: flatcamTools/ToolCalculators.py:111
  7395. msgid ""
  7396. "This is the depth to cut into the material.\n"
  7397. "In the CNCJob is the CutZ parameter."
  7398. msgstr ""
  7399. #: flatcamTools/ToolCalculators.py:114
  7400. msgid "Tool Diameter"
  7401. msgstr ""
  7402. #: flatcamTools/ToolCalculators.py:118
  7403. msgid ""
  7404. "This is the tool diameter to be entered into\n"
  7405. "FlatCAM Gerber section.\n"
  7406. "In the CNCJob section it is called >Tool dia<."
  7407. msgstr ""
  7408. #: flatcamTools/ToolCalculators.py:129 flatcamTools/ToolCalculators.py:210
  7409. msgid "Calculate"
  7410. msgstr ""
  7411. #: flatcamTools/ToolCalculators.py:132
  7412. msgid ""
  7413. "Calculate either the Cut Z or the effective tool diameter,\n"
  7414. " depending on which is desired and which is known. "
  7415. msgstr ""
  7416. #: flatcamTools/ToolCalculators.py:186
  7417. msgid "Current Value"
  7418. msgstr ""
  7419. #: flatcamTools/ToolCalculators.py:190
  7420. msgid ""
  7421. "This is the current intensity value\n"
  7422. "to be set on the Power Supply. In Amps."
  7423. msgstr ""
  7424. #: flatcamTools/ToolCalculators.py:194
  7425. msgid "Time"
  7426. msgstr ""
  7427. #: flatcamTools/ToolCalculators.py:198
  7428. msgid ""
  7429. "This is the calculated time required for the procedure.\n"
  7430. "In minutes."
  7431. msgstr ""
  7432. #: flatcamTools/ToolCalculators.py:213
  7433. msgid ""
  7434. "Calculate the current intensity value and the procedure time,\n"
  7435. "depending on the parameters above"
  7436. msgstr ""
  7437. #: flatcamTools/ToolCalculators.py:262
  7438. msgid "Calc. Tool"
  7439. msgstr ""
  7440. #: flatcamTools/ToolCutOut.py:18
  7441. msgid "Cutout PCB"
  7442. msgstr ""
  7443. #: flatcamTools/ToolCutOut.py:55
  7444. msgid ""
  7445. "Specify the type of object to be cutout.\n"
  7446. "It can be of type: Gerber or Geometry.\n"
  7447. "What is selected here will dictate the kind\n"
  7448. "of objects that will populate the 'Object' combobox."
  7449. msgstr ""
  7450. #: flatcamTools/ToolCutOut.py:71
  7451. msgid "Object to be cutout. "
  7452. msgstr ""
  7453. #: flatcamTools/ToolCutOut.py:100
  7454. msgid "Margin:"
  7455. msgstr ""
  7456. #: flatcamTools/ToolCutOut.py:110
  7457. msgid "Gap size:"
  7458. msgstr ""
  7459. #: flatcamTools/ToolCutOut.py:137
  7460. msgid "A. Automatic Bridge Gaps"
  7461. msgstr ""
  7462. #: flatcamTools/ToolCutOut.py:139
  7463. msgid "This section handle creation of automatic bridge gaps."
  7464. msgstr ""
  7465. #: flatcamTools/ToolCutOut.py:150
  7466. msgid ""
  7467. "Number of gaps used for the Automatic cutout.\n"
  7468. "There can be maximum 8 bridges/gaps.\n"
  7469. "The choices are:\n"
  7470. "- None - no gaps\n"
  7471. "- lr - left + right\n"
  7472. "- tb - top + bottom\n"
  7473. "- 4 - left + right +top + bottom\n"
  7474. "- 2lr - 2*left + 2*right\n"
  7475. "- 2tb - 2*top + 2*bottom\n"
  7476. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7477. msgstr ""
  7478. #: flatcamTools/ToolCutOut.py:174
  7479. msgid "FreeForm"
  7480. msgstr ""
  7481. #: flatcamTools/ToolCutOut.py:176
  7482. msgid ""
  7483. "The cutout shape can be of ny shape.\n"
  7484. "Useful when the PCB has a non-rectangular shape."
  7485. msgstr ""
  7486. #: flatcamTools/ToolCutOut.py:185
  7487. msgid ""
  7488. "Cutout the selected object.\n"
  7489. "The cutout shape can be of any shape.\n"
  7490. "Useful when the PCB has a non-rectangular shape."
  7491. msgstr ""
  7492. #: flatcamTools/ToolCutOut.py:194
  7493. msgid "Rectangular"
  7494. msgstr ""
  7495. #: flatcamTools/ToolCutOut.py:196
  7496. msgid ""
  7497. "The resulting cutout shape is\n"
  7498. "always a rectangle shape and it will be\n"
  7499. "the bounding box of the Object."
  7500. msgstr ""
  7501. #: flatcamTools/ToolCutOut.py:205
  7502. msgid ""
  7503. "Cutout the selected object.\n"
  7504. "The resulting cutout shape is\n"
  7505. "always a rectangle shape and it will be\n"
  7506. "the bounding box of the Object."
  7507. msgstr ""
  7508. #: flatcamTools/ToolCutOut.py:213
  7509. msgid "B. Manual Bridge Gaps"
  7510. msgstr ""
  7511. #: flatcamTools/ToolCutOut.py:215
  7512. msgid ""
  7513. "This section handle creation of manual bridge gaps.\n"
  7514. "This is done by mouse clicking on the perimeter of the\n"
  7515. "Geometry object that is used as a cutout object. "
  7516. msgstr ""
  7517. #: flatcamTools/ToolCutOut.py:231
  7518. msgid "Geo Obj"
  7519. msgstr ""
  7520. #: flatcamTools/ToolCutOut.py:233
  7521. msgid "Geometry object used to create the manual cutout."
  7522. msgstr ""
  7523. #: flatcamTools/ToolCutOut.py:244
  7524. msgid "Manual Geo"
  7525. msgstr ""
  7526. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  7527. msgid ""
  7528. "If the object to be cutout is a Gerber\n"
  7529. "first create a Geometry that surrounds it,\n"
  7530. "to be used as the cutout, if one doesn't exist yet.\n"
  7531. "Select the source Gerber file in the top object combobox."
  7532. msgstr ""
  7533. #: flatcamTools/ToolCutOut.py:266
  7534. msgid "Manual Add Bridge Gaps"
  7535. msgstr ""
  7536. #: flatcamTools/ToolCutOut.py:268
  7537. msgid ""
  7538. "Use the left mouse button (LMB) click\n"
  7539. "to create a bridge gap to separate the PCB from\n"
  7540. "the surrounding material."
  7541. msgstr ""
  7542. #: flatcamTools/ToolCutOut.py:275
  7543. msgid "Generate Gap"
  7544. msgstr ""
  7545. #: flatcamTools/ToolCutOut.py:277
  7546. msgid ""
  7547. "Use the left mouse button (LMB) click\n"
  7548. "to create a bridge gap to separate the PCB from\n"
  7549. "the surrounding material.\n"
  7550. "The LMB click has to be done on the perimeter of\n"
  7551. "the Geometry object used as a cutout geometry."
  7552. msgstr ""
  7553. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
  7554. #: flatcamTools/ToolNonCopperClear.py:1124
  7555. #: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
  7556. #: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
  7557. #: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
  7558. #: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
  7559. #: tclCommands/TclCommandCopperClear.py:131
  7560. #: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
  7561. msgid "Could not retrieve object"
  7562. msgstr ""
  7563. #: flatcamTools/ToolCutOut.py:376
  7564. msgid ""
  7565. "There is no object selected for Cutout.\n"
  7566. "Select one and try again."
  7567. msgstr ""
  7568. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
  7569. #: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
  7570. msgid "Tool Diameter is zero value. Change it to a positive real number."
  7571. msgstr ""
  7572. #: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
  7573. #: flatcamTools/ToolCutOut.py:870
  7574. msgid "Margin value is missing or wrong format. Add it and retry."
  7575. msgstr ""
  7576. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
  7577. #: flatcamTools/ToolCutOut.py:771
  7578. msgid "Gap size value is missing or wrong format. Add it and retry."
  7579. msgstr ""
  7580. #: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
  7581. msgid "Number of gaps value is missing. Add it and retry."
  7582. msgstr ""
  7583. #: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
  7584. msgid ""
  7585. "Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
  7586. "Fill in a correct value and retry. "
  7587. msgstr ""
  7588. #: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
  7589. msgid ""
  7590. "Cutout operation cannot be done on a multi-geo Geometry.\n"
  7591. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7592. "Geometry,\n"
  7593. "and after that perform Cutout."
  7594. msgstr ""
  7595. #: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
  7596. msgid "Any form CutOut operation finished."
  7597. msgstr ""
  7598. #: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
  7599. #, python-format
  7600. msgid "Object not found: %s"
  7601. msgstr ""
  7602. #: flatcamTools/ToolCutOut.py:744
  7603. msgid ""
  7604. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7605. msgstr ""
  7606. #: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
  7607. msgid "Could not retrieve Geometry object"
  7608. msgstr ""
  7609. #: flatcamTools/ToolCutOut.py:804
  7610. msgid "Geometry object for manual cutout not found"
  7611. msgstr ""
  7612. #: flatcamTools/ToolCutOut.py:814
  7613. msgid "Added manual Bridge Gap."
  7614. msgstr ""
  7615. #: flatcamTools/ToolCutOut.py:826
  7616. msgid "Could not retrieve Gerber object"
  7617. msgstr ""
  7618. #: flatcamTools/ToolCutOut.py:831
  7619. msgid ""
  7620. "There is no Gerber object selected for Cutout.\n"
  7621. "Select one and try again."
  7622. msgstr ""
  7623. #: flatcamTools/ToolCutOut.py:837
  7624. msgid ""
  7625. "The selected object has to be of Gerber type.\n"
  7626. "Select a Gerber file and try again."
  7627. msgstr ""
  7628. #: flatcamTools/ToolCutOut.py:892
  7629. msgid "Geometry not supported for cutout"
  7630. msgstr ""
  7631. #: flatcamTools/ToolCutOut.py:928
  7632. msgid "Making manual bridge gap..."
  7633. msgstr ""
  7634. #: flatcamTools/ToolDblSided.py:18
  7635. msgid "2-Sided PCB"
  7636. msgstr ""
  7637. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7638. #: flatcamTools/ToolDblSided.py:100
  7639. msgid "Mirror"
  7640. msgstr ""
  7641. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7642. #: flatcamTools/ToolDblSided.py:102
  7643. msgid ""
  7644. "Mirrors (flips) the specified object around \n"
  7645. "the specified axis. Does not create a new \n"
  7646. "object, but modifies it."
  7647. msgstr ""
  7648. #: flatcamTools/ToolDblSided.py:73
  7649. msgid "Excellon Object to be mirrored."
  7650. msgstr ""
  7651. #: flatcamTools/ToolDblSided.py:97
  7652. msgid "Geometry Obj to be mirrored."
  7653. msgstr ""
  7654. #: flatcamTools/ToolDblSided.py:133
  7655. msgid "Axis Ref:"
  7656. msgstr ""
  7657. #: flatcamTools/ToolDblSided.py:152
  7658. msgid "Point/Box Reference"
  7659. msgstr ""
  7660. #: flatcamTools/ToolDblSided.py:154
  7661. msgid ""
  7662. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7663. "the mirroring axis passes.\n"
  7664. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7665. "Geo).\n"
  7666. "Through the center of this object pass the mirroring axis selected above."
  7667. msgstr ""
  7668. #: flatcamTools/ToolDblSided.py:162
  7669. msgid ""
  7670. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7671. "axis \n"
  7672. " selected in 'MIRROR AXIS' pass.\n"
  7673. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7674. "and left mouse button click on canvas or you can enter the coords manually."
  7675. msgstr ""
  7676. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
  7677. #: flatcamTools/ToolPaint.py:318
  7678. msgid "Gerber Reference Box Object"
  7679. msgstr ""
  7680. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
  7681. #: flatcamTools/ToolPaint.py:319
  7682. msgid "Excellon Reference Box Object"
  7683. msgstr ""
  7684. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
  7685. #: flatcamTools/ToolPaint.py:320
  7686. msgid "Geometry Reference Box Object"
  7687. msgstr ""
  7688. #: flatcamTools/ToolDblSided.py:192
  7689. msgid "Alignment Drill Coordinates"
  7690. msgstr ""
  7691. #: flatcamTools/ToolDblSided.py:194
  7692. msgid ""
  7693. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7694. "each set of (x, y) coordinates\n"
  7695. "entered here, a pair of drills will be created:\n"
  7696. "\n"
  7697. "- one drill at the coordinates from the field\n"
  7698. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7699. "Axis'."
  7700. msgstr ""
  7701. #: flatcamTools/ToolDblSided.py:209
  7702. msgid ""
  7703. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7704. "on one side of the mirror axis.\n"
  7705. "\n"
  7706. "The coordinates set can be obtained:\n"
  7707. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7708. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7709. "field.\n"
  7710. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7711. "field and click Paste.\n"
  7712. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7713. msgstr ""
  7714. #: flatcamTools/ToolDblSided.py:223
  7715. msgid "Alignment Drill Diameter"
  7716. msgstr ""
  7717. #: flatcamTools/ToolDblSided.py:246
  7718. msgid "Create Excellon Object"
  7719. msgstr ""
  7720. #: flatcamTools/ToolDblSided.py:248
  7721. msgid ""
  7722. "Creates an Excellon Object containing the\n"
  7723. "specified alignment holes and their mirror\n"
  7724. "images."
  7725. msgstr ""
  7726. #: flatcamTools/ToolDblSided.py:254
  7727. msgid "Reset"
  7728. msgstr ""
  7729. #: flatcamTools/ToolDblSided.py:256
  7730. msgid "Resets all the fields."
  7731. msgstr ""
  7732. #: flatcamTools/ToolDblSided.py:306
  7733. msgid "2-Sided Tool"
  7734. msgstr ""
  7735. #: flatcamTools/ToolDblSided.py:331
  7736. msgid ""
  7737. "'Point' reference is selected and 'Point' coordinates are missing. Add them "
  7738. "and retry."
  7739. msgstr ""
  7740. #: flatcamTools/ToolDblSided.py:350
  7741. msgid "There is no Box reference object loaded. Load one and retry."
  7742. msgstr ""
  7743. #: flatcamTools/ToolDblSided.py:373
  7744. msgid "No value or wrong format in Drill Dia entry. Add it and retry."
  7745. msgstr ""
  7746. #: flatcamTools/ToolDblSided.py:380
  7747. msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
  7748. msgstr ""
  7749. #: flatcamTools/ToolDblSided.py:403
  7750. msgid "Excellon object with alignment drills created..."
  7751. msgstr ""
  7752. #: flatcamTools/ToolDblSided.py:412
  7753. msgid "There is no Gerber object loaded ..."
  7754. msgstr ""
  7755. #: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
  7756. #: flatcamTools/ToolDblSided.py:503
  7757. msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
  7758. msgstr ""
  7759. #: flatcamTools/ToolDblSided.py:426
  7760. msgid ""
  7761. "'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
  7762. msgstr ""
  7763. #: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
  7764. #: flatcamTools/ToolDblSided.py:517
  7765. msgid "There is no Box object loaded ..."
  7766. msgstr ""
  7767. #: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
  7768. #: flatcamTools/ToolDblSided.py:527
  7769. msgid "was mirrored"
  7770. msgstr ""
  7771. #: flatcamTools/ToolDblSided.py:455
  7772. msgid "There is no Excellon object loaded ..."
  7773. msgstr ""
  7774. #: flatcamTools/ToolDblSided.py:470
  7775. msgid ""
  7776. "There are no Point coordinates in the Point field. Add coords and try "
  7777. "again ..."
  7778. msgstr ""
  7779. #: flatcamTools/ToolDblSided.py:499
  7780. msgid "There is no Geometry object loaded ..."
  7781. msgstr ""
  7782. #: flatcamTools/ToolFilm.py:25
  7783. msgid "Film PCB"
  7784. msgstr ""
  7785. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  7786. #: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
  7787. msgid "Object Type"
  7788. msgstr ""
  7789. #: flatcamTools/ToolFilm.py:58
  7790. msgid ""
  7791. "Specify the type of object for which to create the film.\n"
  7792. "The object can be of type: Gerber or Geometry.\n"
  7793. "The selection here decide the type of objects that will be\n"
  7794. "in the Film Object combobox."
  7795. msgstr ""
  7796. #: flatcamTools/ToolFilm.py:71
  7797. msgid "Film Object"
  7798. msgstr ""
  7799. #: flatcamTools/ToolFilm.py:73
  7800. msgid "Object for which to create the film."
  7801. msgstr ""
  7802. #: flatcamTools/ToolFilm.py:89
  7803. msgid "Box Type:"
  7804. msgstr ""
  7805. #: flatcamTools/ToolFilm.py:91
  7806. msgid ""
  7807. "Specify the type of object to be used as an container for\n"
  7808. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  7809. "the type of objects that will be\n"
  7810. "in the Box Object combobox."
  7811. msgstr ""
  7812. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  7813. msgid "Box Object"
  7814. msgstr ""
  7815. #: flatcamTools/ToolFilm.py:106
  7816. msgid ""
  7817. "The actual object that is used a container for the\n"
  7818. " selected object for which we create the film.\n"
  7819. "Usually it is the PCB outline but it can be also the\n"
  7820. "same object for which the film is created."
  7821. msgstr ""
  7822. #: flatcamTools/ToolFilm.py:114
  7823. msgid "Positive"
  7824. msgstr ""
  7825. #: flatcamTools/ToolFilm.py:115
  7826. msgid "Negative"
  7827. msgstr ""
  7828. #: flatcamTools/ToolFilm.py:116
  7829. msgid "Film Type:"
  7830. msgstr ""
  7831. #: flatcamTools/ToolFilm.py:157
  7832. msgid "Save Film"
  7833. msgstr ""
  7834. #: flatcamTools/ToolFilm.py:159
  7835. msgid ""
  7836. "Create a Film for the selected object, within\n"
  7837. "the specified box. Does not create a new \n"
  7838. " FlatCAM object, but directly save it in SVG format\n"
  7839. "which can be opened with Inkscape."
  7840. msgstr ""
  7841. #: flatcamTools/ToolFilm.py:231
  7842. msgid "No FlatCAM object selected. Load an object for Film and retry."
  7843. msgstr ""
  7844. #: flatcamTools/ToolFilm.py:238
  7845. msgid "No FlatCAM object selected. Load an object for Box and retry."
  7846. msgstr ""
  7847. #: flatcamTools/ToolFilm.py:260
  7848. msgid "Generating Film ..."
  7849. msgstr ""
  7850. #: flatcamTools/ToolFilm.py:265 flatcamTools/ToolFilm.py:269
  7851. msgid "Export SVG positive"
  7852. msgstr ""
  7853. #: flatcamTools/ToolFilm.py:274
  7854. msgid "Export SVG positive cancelled."
  7855. msgstr ""
  7856. #: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
  7857. msgid "Export SVG negative"
  7858. msgstr ""
  7859. #: flatcamTools/ToolFilm.py:290
  7860. msgid "Export SVG negative cancelled."
  7861. msgstr ""
  7862. #: flatcamTools/ToolImage.py:25
  7863. msgid "Image as Object"
  7864. msgstr ""
  7865. #: flatcamTools/ToolImage.py:31
  7866. msgid "Image to PCB"
  7867. msgstr ""
  7868. #: flatcamTools/ToolImage.py:55
  7869. msgid ""
  7870. "Specify the type of object to create from the image.\n"
  7871. "It can be of type: Gerber or Geometry."
  7872. msgstr ""
  7873. #: flatcamTools/ToolImage.py:63
  7874. msgid "DPI value"
  7875. msgstr ""
  7876. #: flatcamTools/ToolImage.py:65
  7877. msgid "Specify a DPI value for the image."
  7878. msgstr ""
  7879. #: flatcamTools/ToolImage.py:72
  7880. msgid "Level of detail"
  7881. msgstr ""
  7882. #: flatcamTools/ToolImage.py:81
  7883. msgid "Image type"
  7884. msgstr ""
  7885. #: flatcamTools/ToolImage.py:83
  7886. msgid ""
  7887. "Choose a method for the image interpretation.\n"
  7888. "B/W means a black & white image. Color means a colored image."
  7889. msgstr ""
  7890. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  7891. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7892. msgid "Mask value"
  7893. msgstr ""
  7894. #: flatcamTools/ToolImage.py:92
  7895. msgid ""
  7896. "Mask for monochrome image.\n"
  7897. "Takes values between [0 ... 255].\n"
  7898. "Decides the level of details to include\n"
  7899. "in the resulting geometry.\n"
  7900. "0 means no detail and 255 means everything \n"
  7901. "(which is totally black)."
  7902. msgstr ""
  7903. #: flatcamTools/ToolImage.py:105
  7904. msgid ""
  7905. "Mask for RED color.\n"
  7906. "Takes values between [0 ... 255].\n"
  7907. "Decides the level of details to include\n"
  7908. "in the resulting geometry."
  7909. msgstr ""
  7910. #: flatcamTools/ToolImage.py:116
  7911. msgid ""
  7912. "Mask for GREEN color.\n"
  7913. "Takes values between [0 ... 255].\n"
  7914. "Decides the level of details to include\n"
  7915. "in the resulting geometry."
  7916. msgstr ""
  7917. #: flatcamTools/ToolImage.py:127
  7918. msgid ""
  7919. "Mask for BLUE color.\n"
  7920. "Takes values between [0 ... 255].\n"
  7921. "Decides the level of details to include\n"
  7922. "in the resulting geometry."
  7923. msgstr ""
  7924. #: flatcamTools/ToolImage.py:139
  7925. msgid "Import image"
  7926. msgstr ""
  7927. #: flatcamTools/ToolImage.py:141
  7928. msgid "Open a image of raster type and then import it in FlatCAM."
  7929. msgstr ""
  7930. #: flatcamTools/ToolImage.py:175
  7931. msgid "Image Tool"
  7932. msgstr ""
  7933. #: flatcamTools/ToolImage.py:205 flatcamTools/ToolImage.py:208
  7934. msgid "Import IMAGE"
  7935. msgstr ""
  7936. #: flatcamTools/ToolMeasurement.py:26
  7937. msgid "Measurement"
  7938. msgstr ""
  7939. #: flatcamTools/ToolMeasurement.py:44
  7940. msgid "Those are the units in which the distance is measured."
  7941. msgstr ""
  7942. #: flatcamTools/ToolMeasurement.py:45
  7943. msgid "METRIC (mm)"
  7944. msgstr ""
  7945. #: flatcamTools/ToolMeasurement.py:45
  7946. msgid "INCH (in)"
  7947. msgstr ""
  7948. #: flatcamTools/ToolMeasurement.py:48
  7949. msgid "Start"
  7950. msgstr ""
  7951. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  7952. msgid "Coords"
  7953. msgstr ""
  7954. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  7955. msgid "This is measuring Start point coordinates."
  7956. msgstr ""
  7957. #: flatcamTools/ToolMeasurement.py:51
  7958. msgid "Stop"
  7959. msgstr ""
  7960. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  7961. msgid "This is the measuring Stop point coordinates."
  7962. msgstr ""
  7963. #: flatcamTools/ToolMeasurement.py:54
  7964. msgid "Dx"
  7965. msgstr ""
  7966. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  7967. msgid "This is the distance measured over the X axis."
  7968. msgstr ""
  7969. #: flatcamTools/ToolMeasurement.py:57
  7970. msgid "Dy"
  7971. msgstr ""
  7972. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  7973. msgid "This is the distance measured over the Y axis."
  7974. msgstr ""
  7975. #: flatcamTools/ToolMeasurement.py:60
  7976. msgid "DISTANCE"
  7977. msgstr ""
  7978. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  7979. msgid "This is the point to point Euclidian distance."
  7980. msgstr ""
  7981. #: flatcamTools/ToolMeasurement.py:83
  7982. msgid "Measure"
  7983. msgstr ""
  7984. #: flatcamTools/ToolMeasurement.py:131
  7985. msgid "Meas. Tool"
  7986. msgstr ""
  7987. #: flatcamTools/ToolMeasurement.py:176
  7988. msgid "MEASURING: Click on the Start point ..."
  7989. msgstr ""
  7990. #: flatcamTools/ToolMeasurement.py:269
  7991. msgid "MEASURING: Click on the Destination point ..."
  7992. msgstr ""
  7993. #: flatcamTools/ToolMeasurement.py:277
  7994. #, python-brace-format
  7995. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  7996. msgstr ""
  7997. #: flatcamTools/ToolMove.py:84
  7998. msgid "MOVE: Click on the Start point ..."
  7999. msgstr ""
  8000. #: flatcamTools/ToolMove.py:91
  8001. msgid "MOVE action cancelled. No object(s) to move."
  8002. msgstr ""
  8003. #: flatcamTools/ToolMove.py:113
  8004. msgid "MOVE: Click on the Destination point ..."
  8005. msgstr ""
  8006. #: flatcamTools/ToolMove.py:134
  8007. msgid "Moving..."
  8008. msgstr ""
  8009. #: flatcamTools/ToolMove.py:137
  8010. msgid "No object(s) selected."
  8011. msgstr ""
  8012. #: flatcamTools/ToolMove.py:162
  8013. msgid "ToolMove.on_left_click()"
  8014. msgstr ""
  8015. #: flatcamTools/ToolMove.py:179
  8016. msgid "ToolMove.on_left_click() --> Error when mouse left click."
  8017. msgstr ""
  8018. #: flatcamTools/ToolMove.py:215
  8019. msgid "Move action cancelled."
  8020. msgstr ""
  8021. #: flatcamTools/ToolMove.py:227
  8022. msgid "Object(s) not selected"
  8023. msgstr ""
  8024. #: flatcamTools/ToolNonCopperClear.py:26
  8025. msgid "Non-Copper Clearing"
  8026. msgstr ""
  8027. #: flatcamTools/ToolNonCopperClear.py:71
  8028. msgid ""
  8029. "Specify the type of object to be cleared of excess copper.\n"
  8030. "It can be of type: Gerber or Geometry.\n"
  8031. "What is selected here will dictate the kind\n"
  8032. "of objects that will populate the 'Object' combobox."
  8033. msgstr ""
  8034. #: flatcamTools/ToolNonCopperClear.py:88
  8035. msgid "Object to be cleared of excess copper."
  8036. msgstr ""
  8037. #: flatcamTools/ToolNonCopperClear.py:98
  8038. msgid ""
  8039. "Tools pool from which the algorithm\n"
  8040. "will pick the ones used for copper clearing."
  8041. msgstr ""
  8042. #: flatcamTools/ToolNonCopperClear.py:107
  8043. msgid "Operation"
  8044. msgstr ""
  8045. #: flatcamTools/ToolNonCopperClear.py:113
  8046. msgid ""
  8047. "This is the Tool Number.\n"
  8048. "Non copper clearing will start with the tool with the biggest \n"
  8049. "diameter, continuing until there are no more tools.\n"
  8050. "Only tools that create NCC clearing geometry will still be present\n"
  8051. "in the resulting geometry. This is because with some tools\n"
  8052. "this function will not be able to create painting geometry."
  8053. msgstr ""
  8054. #: flatcamTools/ToolNonCopperClear.py:121
  8055. msgid ""
  8056. "Tool Diameter. It's value (in current FlatCAM units)\n"
  8057. "is the cut width into the material."
  8058. msgstr ""
  8059. #: flatcamTools/ToolNonCopperClear.py:125
  8060. msgid ""
  8061. "The Tool Type (TT) can be:\n"
  8062. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
  8063. "the cut width in material is exactly the tool diameter.\n"
  8064. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8065. "- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
  8066. "form\n"
  8067. "and enable two additional UI form fields in the resulting geometry: V-Tip "
  8068. "Dia and\n"
  8069. "V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
  8070. "such\n"
  8071. "as the cut width into material will be equal with the value in the Tool "
  8072. "Diameter\n"
  8073. "column of this table.\n"
  8074. "Choosing the 'V-Shape' Tool Type automatically will select the Operation "
  8075. "Type\n"
  8076. "in the resulting geometry as Isolation."
  8077. msgstr ""
  8078. #: flatcamTools/ToolNonCopperClear.py:138
  8079. msgid ""
  8080. "The 'Operation' can be:\n"
  8081. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  8082. "If it's not successful then the non-copper clearing will fail, too.\n"
  8083. "- Clear -> the regular non-copper clearing."
  8084. msgstr ""
  8085. #: flatcamTools/ToolNonCopperClear.py:191
  8086. msgid "Tool Selection"
  8087. msgstr ""
  8088. #: flatcamTools/ToolNonCopperClear.py:214
  8089. msgid "Diameter for the new tool to add in the Tool Table"
  8090. msgstr ""
  8091. #: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
  8092. #: flatcamTools/ToolSolderPaste.py:123
  8093. msgid ""
  8094. "Delete a selection of tools in the Tool Table\n"
  8095. "by first selecting a row(s) in the Tool Table."
  8096. msgstr ""
  8097. #: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
  8098. msgid "Area Selection"
  8099. msgstr ""
  8100. #: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
  8101. msgid "Reference Object"
  8102. msgstr ""
  8103. #: flatcamTools/ToolNonCopperClear.py:399
  8104. msgid "Reference:"
  8105. msgstr ""
  8106. #: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
  8107. msgid "Ref. Type"
  8108. msgstr ""
  8109. #: flatcamTools/ToolNonCopperClear.py:416
  8110. msgid ""
  8111. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  8112. "It can be Gerber, Excellon or Geometry."
  8113. msgstr ""
  8114. #: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
  8115. msgid "Ref. Object"
  8116. msgstr ""
  8117. #: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
  8118. msgid "The FlatCAM object to be used as non copper clearing reference."
  8119. msgstr ""
  8120. #: flatcamTools/ToolNonCopperClear.py:440
  8121. msgid "Generate Geometry"
  8122. msgstr ""
  8123. #: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
  8124. #: flatcamTools/ToolSolderPaste.py:769
  8125. msgid "Please enter a tool diameter to add, in Float format."
  8126. msgstr ""
  8127. #: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
  8128. msgid "Adding tool cancelled. Tool already in Tool Table."
  8129. msgstr ""
  8130. #: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
  8131. msgid "New tool added to Tool Table."
  8132. msgstr ""
  8133. #: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
  8134. msgid "Tool from Tool Table was edited."
  8135. msgstr ""
  8136. #: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
  8137. #: flatcamTools/ToolSolderPaste.py:860
  8138. msgid "Edit cancelled. New diameter value is already in the Tool Table."
  8139. msgstr ""
  8140. #: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
  8141. msgid "Delete failed. Select a tool to delete."
  8142. msgstr ""
  8143. #: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
  8144. msgid "Tool(s) deleted from Tool Table."
  8145. msgstr ""
  8146. #: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
  8147. msgid "on_paint_button_click"
  8148. msgstr ""
  8149. #: flatcamTools/ToolNonCopperClear.py:1067
  8150. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  8151. msgstr ""
  8152. #: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
  8153. #, python-format
  8154. msgid "Could not retrieve object: %s"
  8155. msgstr ""
  8156. #: flatcamTools/ToolNonCopperClear.py:1103
  8157. msgid "Wrong Tool Dia value format entered, use a number."
  8158. msgstr ""
  8159. #: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
  8160. msgid "No selected tools in Tool Table."
  8161. msgstr ""
  8162. #: flatcamTools/ToolNonCopperClear.py:1137
  8163. msgid "Click the start point of the area."
  8164. msgstr ""
  8165. #: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
  8166. msgid "Click the end point of the paint area."
  8167. msgstr ""
  8168. #: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
  8169. msgid "Zone added. Click to start adding next zone or right click to finish."
  8170. msgstr ""
  8171. #: flatcamTools/ToolNonCopperClear.py:1318
  8172. msgid "Non-Copper clearing ..."
  8173. msgstr ""
  8174. #: flatcamTools/ToolNonCopperClear.py:1327
  8175. msgid "NCC Tool started. Reading parameters."
  8176. msgstr ""
  8177. #: flatcamTools/ToolNonCopperClear.py:1395
  8178. msgid "NCC Tool. Preparing non-copper polygons."
  8179. msgstr ""
  8180. #: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
  8181. msgid "No object available."
  8182. msgstr ""
  8183. #: flatcamTools/ToolNonCopperClear.py:1465
  8184. msgid "The reference object type is not supported."
  8185. msgstr ""
  8186. #: flatcamTools/ToolNonCopperClear.py:1487
  8187. msgid ""
  8188. "NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
  8189. msgstr ""
  8190. #: flatcamTools/ToolNonCopperClear.py:1519
  8191. msgid "NCC Tool. Calculate 'empty' area."
  8192. msgstr ""
  8193. #: flatcamTools/ToolNonCopperClear.py:1534
  8194. #: flatcamTools/ToolNonCopperClear.py:1628
  8195. #: flatcamTools/ToolNonCopperClear.py:1640
  8196. #: flatcamTools/ToolNonCopperClear.py:1867
  8197. #: flatcamTools/ToolNonCopperClear.py:1959
  8198. #: flatcamTools/ToolNonCopperClear.py:1971
  8199. msgid "Buffering finished"
  8200. msgstr ""
  8201. #: flatcamTools/ToolNonCopperClear.py:1647
  8202. #: flatcamTools/ToolNonCopperClear.py:1977
  8203. msgid "The selected object is not suitable for copper clearing."
  8204. msgstr ""
  8205. #: flatcamTools/ToolNonCopperClear.py:1652
  8206. #: flatcamTools/ToolNonCopperClear.py:1982
  8207. msgid "Could not get the extent of the area to be non copper cleared."
  8208. msgstr ""
  8209. #: flatcamTools/ToolNonCopperClear.py:1659
  8210. msgid "NCC Tool. Finished calculation of 'empty' area."
  8211. msgstr ""
  8212. #: flatcamTools/ToolNonCopperClear.py:1669
  8213. #: flatcamTools/ToolNonCopperClear.py:2007
  8214. msgid "NCC Tool clearing with tool diameter = "
  8215. msgstr ""
  8216. #: flatcamTools/ToolNonCopperClear.py:1672
  8217. #: flatcamTools/ToolNonCopperClear.py:2010
  8218. msgid "started."
  8219. msgstr ""
  8220. #: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
  8221. #: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
  8222. #: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
  8223. msgid ""
  8224. "There is no Painting Geometry in the file.\n"
  8225. "Usually it means that the tool diameter is too big for the painted "
  8226. "geometry.\n"
  8227. "Change the painting parameters and try again."
  8228. msgstr ""
  8229. #: flatcamTools/ToolNonCopperClear.py:1820
  8230. msgid "NCC Tool clear all done."
  8231. msgstr ""
  8232. #: flatcamTools/ToolNonCopperClear.py:1822
  8233. msgid "NCC Tool clear all done but the copper features isolation is broken for"
  8234. msgstr ""
  8235. #: flatcamTools/ToolNonCopperClear.py:1825
  8236. #: flatcamTools/ToolNonCopperClear.py:2173
  8237. msgid "tools"
  8238. msgstr ""
  8239. #: flatcamTools/ToolNonCopperClear.py:2169
  8240. msgid "NCC Tool Rest Machining clear all done."
  8241. msgstr ""
  8242. #: flatcamTools/ToolNonCopperClear.py:2172
  8243. msgid ""
  8244. "NCC Tool Rest Machining clear all done but the copper features isolation is "
  8245. "broken for"
  8246. msgstr ""
  8247. #: flatcamTools/ToolNonCopperClear.py:2596
  8248. msgid ""
  8249. "Try to use the Buffering Type = Full in Preferences -> Gerber General. "
  8250. "Reload the Gerber file after this change."
  8251. msgstr ""
  8252. #: flatcamTools/ToolPDF.py:38
  8253. msgid "PDF Import Tool"
  8254. msgstr ""
  8255. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  8256. msgid "Open PDF"
  8257. msgstr ""
  8258. #: flatcamTools/ToolPDF.py:159
  8259. msgid "Open PDF cancelled"
  8260. msgstr ""
  8261. #: flatcamTools/ToolPDF.py:190
  8262. msgid "Parsing PDF file ..."
  8263. msgstr ""
  8264. #: flatcamTools/ToolPDF.py:220
  8265. #, python-format
  8266. msgid "[success] Opened: %s"
  8267. msgstr ""
  8268. #: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
  8269. #, python-format
  8270. msgid "Rendering PDF layer #%d ..."
  8271. msgstr ""
  8272. #: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
  8273. msgid "Open PDF file failed."
  8274. msgstr ""
  8275. #: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
  8276. msgid "Rendered"
  8277. msgstr ""
  8278. #: flatcamTools/ToolPaint.py:70
  8279. msgid ""
  8280. "Specify the type of object to be painted.\n"
  8281. "It can be of type: Gerber or Geometry.\n"
  8282. "What is selected here will dictate the kind\n"
  8283. "of objects that will populate the 'Object' combobox."
  8284. msgstr ""
  8285. #: flatcamTools/ToolPaint.py:87
  8286. msgid "Object to be painted."
  8287. msgstr ""
  8288. #: flatcamTools/ToolPaint.py:97
  8289. msgid ""
  8290. "Tools pool from which the algorithm\n"
  8291. "will pick the ones used for painting."
  8292. msgstr ""
  8293. #: flatcamTools/ToolPaint.py:112
  8294. msgid ""
  8295. "This is the Tool Number.\n"
  8296. "Painting will start with the tool with the biggest diameter,\n"
  8297. "continuing until there are no more tools.\n"
  8298. "Only tools that create painting geometry will still be present\n"
  8299. "in the resulting geometry. This is because with some tools\n"
  8300. "this function will not be able to create painting geometry."
  8301. msgstr ""
  8302. #: flatcamTools/ToolPaint.py:124
  8303. msgid ""
  8304. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8305. "informative only. Being circular, <BR>the cut width in material is exactly "
  8306. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8307. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8308. "parameter in the resulting geometry UI form and enable two additional UI "
  8309. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8310. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8311. "material will be equal with the value in the Tool Diameter column of this "
  8312. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8313. "the Operation Type in the resulting geometry as Isolation."
  8314. msgstr ""
  8315. #: flatcamTools/ToolPaint.py:164
  8316. msgid "Diameter for the new tool."
  8317. msgstr ""
  8318. #: flatcamTools/ToolPaint.py:235
  8319. msgid ""
  8320. "Algorithm for painting:\n"
  8321. "- Standard: Fixed step inwards.\n"
  8322. "- Seed-based: Outwards from seed.\n"
  8323. "- Line-based: Parallel lines."
  8324. msgstr ""
  8325. #: flatcamTools/ToolPaint.py:269
  8326. msgid ""
  8327. "If checked, use 'rest machining'.\n"
  8328. "Basically it will clear copper outside PCB features,\n"
  8329. "using the biggest tool and continue with the next tools,\n"
  8330. "from bigger to smaller, to clear areas of copper that\n"
  8331. "could not be cleared by previous tool, until there is\n"
  8332. "no more copper to clear or there are no more tools.\n"
  8333. "\n"
  8334. "If not checked, use the standard algorithm."
  8335. msgstr ""
  8336. #: flatcamTools/ToolPaint.py:294
  8337. msgid "Single Polygon"
  8338. msgstr ""
  8339. #: flatcamTools/ToolPaint.py:296
  8340. msgid "All Polygons"
  8341. msgstr ""
  8342. #: flatcamTools/ToolPaint.py:314
  8343. msgid ""
  8344. "The type of FlatCAM object to be used as paint reference.\n"
  8345. "It can be Gerber, Excellon or Geometry."
  8346. msgstr ""
  8347. #: flatcamTools/ToolPaint.py:339
  8348. msgid "Create Paint Geometry"
  8349. msgstr ""
  8350. #: flatcamTools/ToolPaint.py:341
  8351. msgid ""
  8352. "- 'Area Selection' - left mouse click to start selection of the area to be "
  8353. "painted.\n"
  8354. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  8355. "areas.\n"
  8356. "- 'All Polygons' - the Paint will start after click.\n"
  8357. "- 'Reference Object' - will do non copper clearing within the area\n"
  8358. "specified by another object."
  8359. msgstr ""
  8360. #: flatcamTools/ToolPaint.py:912
  8361. msgid "Paint Tool. Reading parameters."
  8362. msgstr ""
  8363. #: flatcamTools/ToolPaint.py:927
  8364. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
  8365. msgstr ""
  8366. #: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
  8367. msgid "Click inside the desired polygon."
  8368. msgstr ""
  8369. #: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
  8370. #: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
  8371. msgid "Object not found"
  8372. msgstr ""
  8373. #: flatcamTools/ToolPaint.py:959
  8374. msgid "Can't do Paint on MultiGeo geometries"
  8375. msgstr ""
  8376. #: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
  8377. msgid "Painting polygon..."
  8378. msgstr ""
  8379. #: flatcamTools/ToolPaint.py:1025
  8380. msgid "Click the start point of the paint area."
  8381. msgstr ""
  8382. #: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
  8383. #: flatcamTools/ToolPaint.py:1202
  8384. msgid "Paint Tool. Normal painting polygon task started."
  8385. msgstr ""
  8386. #: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
  8387. #: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
  8388. #: flatcamTools/ToolPaint.py:2224
  8389. msgid "Buffering geometry..."
  8390. msgstr ""
  8391. #: flatcamTools/ToolPaint.py:1236
  8392. msgid "[WARNING] No polygon found."
  8393. msgstr ""
  8394. #: flatcamTools/ToolPaint.py:1240
  8395. #, python-format
  8396. msgid "Paint Tool. Painting polygon at location: %s"
  8397. msgstr ""
  8398. #: flatcamTools/ToolPaint.py:1323
  8399. msgid "Geometry could not be painted completely"
  8400. msgstr ""
  8401. #: flatcamTools/ToolPaint.py:1368
  8402. msgid ""
  8403. "Could not do Paint. Try a different combination of parameters. Or a "
  8404. "different strategy of paint"
  8405. msgstr ""
  8406. #: flatcamTools/ToolPaint.py:1417
  8407. msgid "Paint Single Done."
  8408. msgstr ""
  8409. #: flatcamTools/ToolPaint.py:1442
  8410. msgid "PaintTool.paint_poly()"
  8411. msgstr ""
  8412. #: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
  8413. #: flatcamTools/ToolPaint.py:2383
  8414. msgid "Polygon Paint started ..."
  8415. msgstr ""
  8416. #: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
  8417. msgid "Painting polygons..."
  8418. msgstr ""
  8419. #: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
  8420. #: flatcamTools/ToolPaint.py:1592
  8421. msgid "Paint Tool. Normal painting all task started."
  8422. msgstr ""
  8423. #: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
  8424. #: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
  8425. msgid "Painting with tool diameter = "
  8426. msgstr ""
  8427. #: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
  8428. #: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
  8429. msgid "started"
  8430. msgstr ""
  8431. #: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
  8432. msgid ""
  8433. "Could not do Paint All. Try a different combination of parameters. Or a "
  8434. "different Method of paint"
  8435. msgstr ""
  8436. #: flatcamTools/ToolPaint.py:1751
  8437. msgid "[success] Paint All Done."
  8438. msgstr ""
  8439. #: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
  8440. #: flatcamTools/ToolPaint.py:1767
  8441. msgid "Paint Tool. Rest machining painting all task started."
  8442. msgstr ""
  8443. #: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
  8444. msgid "Paint All with Rest-Machining done."
  8445. msgstr ""
  8446. #: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
  8447. #: flatcamTools/ToolPaint.py:2049
  8448. msgid "Paint Tool. Normal painting area task started."
  8449. msgstr ""
  8450. #: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
  8451. #, python-format
  8452. msgid ""
  8453. "Could not do Paint All. Try a different combination of parameters. Or a "
  8454. "different Method of paint\n"
  8455. "%s"
  8456. msgstr ""
  8457. #: flatcamTools/ToolPaint.py:2212
  8458. msgid "[success] Paint Area Done."
  8459. msgstr ""
  8460. #: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
  8461. #: flatcamTools/ToolPaint.py:2228
  8462. msgid "Paint Tool. Rest machining painting area task started."
  8463. msgstr ""
  8464. #: flatcamTools/ToolPanelize.py:25
  8465. msgid "Panelize PCB"
  8466. msgstr ""
  8467. #: flatcamTools/ToolPanelize.py:58
  8468. msgid ""
  8469. "Specify the type of object to be panelized\n"
  8470. "It can be of type: Gerber, Excellon or Geometry.\n"
  8471. "The selection here decide the type of objects that will be\n"
  8472. "in the Object combobox."
  8473. msgstr ""
  8474. #: flatcamTools/ToolPanelize.py:73
  8475. msgid ""
  8476. "Object to be panelized. This means that it will\n"
  8477. "be duplicated in an array of rows and columns."
  8478. msgstr ""
  8479. #: flatcamTools/ToolPanelize.py:86
  8480. msgid "Penelization Reference"
  8481. msgstr ""
  8482. #: flatcamTools/ToolPanelize.py:88
  8483. msgid ""
  8484. "Choose the reference for panelization:\n"
  8485. "- Object = the bounding box of a different object\n"
  8486. "- Bounding Box = the bounding box of the object to be panelized\n"
  8487. "\n"
  8488. "The reference is useful when doing panelization for more than one\n"
  8489. "object. The spacings (really offsets) will be applied in reference\n"
  8490. "to this reference object therefore maintaining the panelized\n"
  8491. "objects in sync."
  8492. msgstr ""
  8493. #: flatcamTools/ToolPanelize.py:111
  8494. msgid "Box Type"
  8495. msgstr ""
  8496. #: flatcamTools/ToolPanelize.py:113
  8497. msgid ""
  8498. "Specify the type of object to be used as an container for\n"
  8499. "panelization. It can be: Gerber or Geometry type.\n"
  8500. "The selection here decide the type of objects that will be\n"
  8501. "in the Box Object combobox."
  8502. msgstr ""
  8503. #: flatcamTools/ToolPanelize.py:128
  8504. msgid ""
  8505. "The actual object that is used a container for the\n"
  8506. " selected object that is to be panelized."
  8507. msgstr ""
  8508. #: flatcamTools/ToolPanelize.py:134
  8509. msgid "Panel Data"
  8510. msgstr ""
  8511. #: flatcamTools/ToolPanelize.py:136
  8512. msgid ""
  8513. "This informations will shape the resulting panel.\n"
  8514. "The number of rows and columns will set how many\n"
  8515. "duplicates of the original geometry will be generated.\n"
  8516. "\n"
  8517. "The spacings will set the distance between any two\n"
  8518. "elements of the panel array."
  8519. msgstr ""
  8520. #: flatcamTools/ToolPanelize.py:185
  8521. msgid ""
  8522. "Choose the type of object for the panel object:\n"
  8523. "- Geometry\n"
  8524. "- Gerber"
  8525. msgstr ""
  8526. #: flatcamTools/ToolPanelize.py:193
  8527. msgid "Constrain panel within"
  8528. msgstr ""
  8529. #: flatcamTools/ToolPanelize.py:227
  8530. msgid "Panelize Object"
  8531. msgstr ""
  8532. #: flatcamTools/ToolPanelize.py:229
  8533. msgid ""
  8534. "Panelize the specified object around the specified box.\n"
  8535. "In other words it creates multiple copies of the source object,\n"
  8536. "arranged in a 2D array of rows and columns."
  8537. msgstr ""
  8538. #: flatcamTools/ToolPanelize.py:277
  8539. msgid "Panel. Tool"
  8540. msgstr ""
  8541. #: flatcamTools/ToolPanelize.py:465
  8542. msgid "Columns or Rows are zero value. Change them to a positive integer."
  8543. msgstr ""
  8544. #: flatcamTools/ToolPanelize.py:490
  8545. msgid "Generating panel ... Please wait."
  8546. msgstr ""
  8547. #: flatcamTools/ToolPanelize.py:631
  8548. msgid "Panel done..."
  8549. msgstr ""
  8550. #: flatcamTools/ToolPanelize.py:634
  8551. #, python-brace-format
  8552. msgid ""
  8553. "{text} Too big for the constrain area. Final panel has {col} columns and "
  8554. "{row} rows"
  8555. msgstr ""
  8556. #: flatcamTools/ToolPanelize.py:638
  8557. msgid "Generating panel..."
  8558. msgstr ""
  8559. #: flatcamTools/ToolPanelize.py:643
  8560. msgid "Panel created successfully."
  8561. msgstr ""
  8562. #: flatcamTools/ToolPcbWizard.py:32
  8563. msgid "PcbWizard Import Tool"
  8564. msgstr ""
  8565. #: flatcamTools/ToolPcbWizard.py:40
  8566. msgid "Import 2-file Excellon"
  8567. msgstr ""
  8568. #: flatcamTools/ToolPcbWizard.py:51
  8569. msgid "Load files"
  8570. msgstr ""
  8571. #: flatcamTools/ToolPcbWizard.py:57
  8572. msgid "Excellon file"
  8573. msgstr ""
  8574. #: flatcamTools/ToolPcbWizard.py:59
  8575. msgid ""
  8576. "Load the Excellon file.\n"
  8577. "Usually it has a .DRL extension"
  8578. msgstr ""
  8579. #: flatcamTools/ToolPcbWizard.py:65
  8580. msgid "INF file"
  8581. msgstr ""
  8582. #: flatcamTools/ToolPcbWizard.py:67
  8583. msgid "Load the INF file."
  8584. msgstr ""
  8585. #: flatcamTools/ToolPcbWizard.py:79
  8586. msgid "Tool Number"
  8587. msgstr ""
  8588. #: flatcamTools/ToolPcbWizard.py:81
  8589. msgid "Tool diameter in file units."
  8590. msgstr ""
  8591. #: flatcamTools/ToolPcbWizard.py:87
  8592. msgid "Excellon format"
  8593. msgstr ""
  8594. #: flatcamTools/ToolPcbWizard.py:95
  8595. msgid "Int. digits"
  8596. msgstr ""
  8597. #: flatcamTools/ToolPcbWizard.py:97
  8598. msgid "The number of digits for the integral part of the coordinates."
  8599. msgstr ""
  8600. #: flatcamTools/ToolPcbWizard.py:104
  8601. msgid "Frac. digits"
  8602. msgstr ""
  8603. #: flatcamTools/ToolPcbWizard.py:106
  8604. msgid "The number of digits for the fractional part of the coordinates."
  8605. msgstr ""
  8606. #: flatcamTools/ToolPcbWizard.py:113
  8607. msgid "No Suppression"
  8608. msgstr ""
  8609. #: flatcamTools/ToolPcbWizard.py:114
  8610. msgid "Zeros supp."
  8611. msgstr ""
  8612. #: flatcamTools/ToolPcbWizard.py:116
  8613. msgid ""
  8614. "The type of zeros suppression used.\n"
  8615. "Can be of type:\n"
  8616. "- LZ = leading zeros are kept\n"
  8617. "- TZ = trailing zeros are kept\n"
  8618. "- No Suppression = no zero suppression"
  8619. msgstr ""
  8620. #: flatcamTools/ToolPcbWizard.py:129
  8621. msgid ""
  8622. "The type of units that the coordinates and tool\n"
  8623. "diameters are using. Can be INCH or MM."
  8624. msgstr ""
  8625. #: flatcamTools/ToolPcbWizard.py:136
  8626. msgid "Import Excellon"
  8627. msgstr ""
  8628. #: flatcamTools/ToolPcbWizard.py:138
  8629. msgid ""
  8630. "Import in FlatCAM an Excellon file\n"
  8631. "that store it's information's in 2 files.\n"
  8632. "One usually has .DRL extension while\n"
  8633. "the other has .INF extension."
  8634. msgstr ""
  8635. #: flatcamTools/ToolPcbWizard.py:197
  8636. msgid "PCBWizard Tool"
  8637. msgstr ""
  8638. #: flatcamTools/ToolPcbWizard.py:291 flatcamTools/ToolPcbWizard.py:295
  8639. msgid "Load PcbWizard Excellon file"
  8640. msgstr ""
  8641. #: flatcamTools/ToolPcbWizard.py:314 flatcamTools/ToolPcbWizard.py:318
  8642. msgid "Load PcbWizard INF file"
  8643. msgstr ""
  8644. #: flatcamTools/ToolPcbWizard.py:366
  8645. msgid ""
  8646. "The INF file does not contain the tool table.\n"
  8647. "Try to open the Excellon file from File -> Open -> Excellon\n"
  8648. "and edit the drill diameters manually."
  8649. msgstr ""
  8650. #: flatcamTools/ToolPcbWizard.py:387
  8651. msgid "PcbWizard .INF file loaded."
  8652. msgstr ""
  8653. #: flatcamTools/ToolPcbWizard.py:392
  8654. msgid "Main PcbWizard Excellon file loaded."
  8655. msgstr ""
  8656. #: flatcamTools/ToolPcbWizard.py:431
  8657. msgid "Cannot parse file"
  8658. msgstr ""
  8659. #: flatcamTools/ToolPcbWizard.py:456
  8660. msgid "Importing Excellon."
  8661. msgstr ""
  8662. #: flatcamTools/ToolPcbWizard.py:463
  8663. msgid "Import Excellon file failed."
  8664. msgstr ""
  8665. #: flatcamTools/ToolPcbWizard.py:471
  8666. msgid "Imported"
  8667. msgstr ""
  8668. #: flatcamTools/ToolPcbWizard.py:475
  8669. msgid "Excellon merging is in progress. Please wait..."
  8670. msgstr ""
  8671. #: flatcamTools/ToolPcbWizard.py:478
  8672. msgid "The imported Excellon file is None."
  8673. msgstr ""
  8674. #: flatcamTools/ToolProperties.py:112
  8675. msgid "Properties Tool was not displayed. No object selected."
  8676. msgstr ""
  8677. #: flatcamTools/ToolProperties.py:120
  8678. msgid "Object Properties are displayed."
  8679. msgstr ""
  8680. #: flatcamTools/ToolProperties.py:121
  8681. msgid "Properties Tool"
  8682. msgstr ""
  8683. #: flatcamTools/ToolProperties.py:130
  8684. msgid "TYPE"
  8685. msgstr ""
  8686. #: flatcamTools/ToolProperties.py:131
  8687. msgid "NAME"
  8688. msgstr ""
  8689. #: flatcamTools/ToolProperties.py:132
  8690. msgid "Dimensions"
  8691. msgstr ""
  8692. #: flatcamTools/ToolProperties.py:135
  8693. msgid "Options"
  8694. msgstr ""
  8695. #: flatcamTools/ToolProperties.py:146
  8696. msgid "Geo Type"
  8697. msgstr ""
  8698. #: flatcamTools/ToolProperties.py:147
  8699. msgid "Single-Geo"
  8700. msgstr ""
  8701. #: flatcamTools/ToolProperties.py:147
  8702. msgid "Multi-Geo"
  8703. msgstr ""
  8704. #: flatcamTools/ToolProperties.py:155
  8705. msgid "Calculating dimensions ... Please wait."
  8706. msgstr ""
  8707. #: flatcamTools/ToolProperties.py:246
  8708. msgid "Inch"
  8709. msgstr ""
  8710. #: flatcamTools/ToolProperties.py:247
  8711. msgid "Metric"
  8712. msgstr ""
  8713. #: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
  8714. #: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
  8715. msgid "Present"
  8716. msgstr ""
  8717. #: flatcamTools/ToolProperties.py:352
  8718. msgid "Width"
  8719. msgstr ""
  8720. #: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
  8721. msgid "Box Area"
  8722. msgstr ""
  8723. #: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
  8724. msgid "Convex_Hull Area"
  8725. msgstr ""
  8726. #: flatcamTools/ToolShell.py:69
  8727. msgid "...proccessing..."
  8728. msgstr ""
  8729. #: flatcamTools/ToolShell.py:71
  8730. #, python-format
  8731. msgid "...proccessing... [%s]"
  8732. msgstr ""
  8733. #: flatcamTools/ToolSolderPaste.py:37
  8734. msgid "Solder Paste Tool"
  8735. msgstr ""
  8736. #: flatcamTools/ToolSolderPaste.py:65
  8737. msgid "Gerber Solder paste object. "
  8738. msgstr ""
  8739. #: flatcamTools/ToolSolderPaste.py:72
  8740. msgid ""
  8741. "Tools pool from which the algorithm\n"
  8742. "will pick the ones used for dispensing solder paste."
  8743. msgstr ""
  8744. #: flatcamTools/ToolSolderPaste.py:87
  8745. msgid ""
  8746. "This is the Tool Number.\n"
  8747. "The solder dispensing will start with the tool with the biggest \n"
  8748. "diameter, continuing until there are no more Nozzle tools.\n"
  8749. "If there are no longer tools but there are still pads not covered\n"
  8750. " with solder paste, the app will issue a warning message box."
  8751. msgstr ""
  8752. #: flatcamTools/ToolSolderPaste.py:94
  8753. msgid ""
  8754. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8755. "is the width of the solder paste dispensed."
  8756. msgstr ""
  8757. #: flatcamTools/ToolSolderPaste.py:101
  8758. msgid "New Nozzle Tool"
  8759. msgstr ""
  8760. #: flatcamTools/ToolSolderPaste.py:117
  8761. msgid ""
  8762. "Add a new nozzle tool to the Tool Table\n"
  8763. "with the diameter specified above."
  8764. msgstr ""
  8765. #: flatcamTools/ToolSolderPaste.py:129
  8766. msgid "Generate solder paste dispensing geometry."
  8767. msgstr ""
  8768. #: flatcamTools/ToolSolderPaste.py:142
  8769. msgid "STEP 1"
  8770. msgstr ""
  8771. #: flatcamTools/ToolSolderPaste.py:144
  8772. msgid ""
  8773. "First step is to select a number of nozzle tools for usage\n"
  8774. "and then optionally modify the GCode parameters bellow."
  8775. msgstr ""
  8776. #: flatcamTools/ToolSolderPaste.py:147
  8777. msgid ""
  8778. "Select tools.\n"
  8779. "Modify parameters."
  8780. msgstr ""
  8781. #: flatcamTools/ToolSolderPaste.py:235
  8782. msgid ""
  8783. "Feedrate (speed) while moving up vertically\n"
  8784. " to Dispense position (on Z plane)."
  8785. msgstr ""
  8786. #: flatcamTools/ToolSolderPaste.py:289
  8787. msgid "Generate GCode"
  8788. msgstr ""
  8789. #: flatcamTools/ToolSolderPaste.py:291
  8790. msgid ""
  8791. "Generate GCode for Solder Paste dispensing\n"
  8792. "on PCB pads."
  8793. msgstr ""
  8794. #: flatcamTools/ToolSolderPaste.py:306
  8795. msgid "STEP 2"
  8796. msgstr ""
  8797. #: flatcamTools/ToolSolderPaste.py:308
  8798. msgid ""
  8799. "Second step is to create a solder paste dispensing\n"
  8800. "geometry out of an Solder Paste Mask Gerber file."
  8801. msgstr ""
  8802. #: flatcamTools/ToolSolderPaste.py:324
  8803. msgid "Geo Result"
  8804. msgstr ""
  8805. #: flatcamTools/ToolSolderPaste.py:326
  8806. msgid ""
  8807. "Geometry Solder Paste object.\n"
  8808. "The name of the object has to end in:\n"
  8809. "'_solderpaste' as a protection."
  8810. msgstr ""
  8811. #: flatcamTools/ToolSolderPaste.py:335
  8812. msgid "STEP 3"
  8813. msgstr ""
  8814. #: flatcamTools/ToolSolderPaste.py:337
  8815. msgid ""
  8816. "Third step is to select a solder paste dispensing geometry,\n"
  8817. "and then generate a CNCJob object.\n"
  8818. "\n"
  8819. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8820. "first you need to generate a geometry with those new params,\n"
  8821. "and only after that you can generate an updated CNCJob."
  8822. msgstr ""
  8823. #: flatcamTools/ToolSolderPaste.py:357
  8824. msgid "CNC Result"
  8825. msgstr ""
  8826. #: flatcamTools/ToolSolderPaste.py:359
  8827. msgid ""
  8828. "CNCJob Solder paste object.\n"
  8829. "In order to enable the GCode save section,\n"
  8830. "the name of the object has to end in:\n"
  8831. "'_solderpaste' as a protection."
  8832. msgstr ""
  8833. #: flatcamTools/ToolSolderPaste.py:369
  8834. msgid "View GCode"
  8835. msgstr ""
  8836. #: flatcamTools/ToolSolderPaste.py:371
  8837. msgid ""
  8838. "View the generated GCode for Solder Paste dispensing\n"
  8839. "on PCB pads."
  8840. msgstr ""
  8841. #: flatcamTools/ToolSolderPaste.py:375
  8842. msgid "Save GCode"
  8843. msgstr ""
  8844. #: flatcamTools/ToolSolderPaste.py:377
  8845. msgid ""
  8846. "Save the generated GCode for Solder Paste dispensing\n"
  8847. "on PCB pads, to a file."
  8848. msgstr ""
  8849. #: flatcamTools/ToolSolderPaste.py:381
  8850. msgid "STEP 4"
  8851. msgstr ""
  8852. #: flatcamTools/ToolSolderPaste.py:383
  8853. msgid ""
  8854. "Fourth step (and last) is to select a CNCJob made from \n"
  8855. "a solder paste dispensing geometry, and then view/save it's GCode."
  8856. msgstr ""
  8857. #: flatcamTools/ToolSolderPaste.py:412
  8858. msgid "Delete Object"
  8859. msgstr ""
  8860. #: flatcamTools/ToolSolderPaste.py:799
  8861. msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
  8862. msgstr ""
  8863. #: flatcamTools/ToolSolderPaste.py:805
  8864. msgid "New Nozzle tool added to Tool Table."
  8865. msgstr ""
  8866. #: flatcamTools/ToolSolderPaste.py:848
  8867. msgid "Nozzle tool from Tool Table was edited."
  8868. msgstr ""
  8869. #: flatcamTools/ToolSolderPaste.py:906
  8870. msgid "Delete failed. Select a Nozzle tool to delete."
  8871. msgstr ""
  8872. #: flatcamTools/ToolSolderPaste.py:912
  8873. msgid "Nozzle tool(s) deleted from Tool Table."
  8874. msgstr ""
  8875. #: flatcamTools/ToolSolderPaste.py:968
  8876. msgid "No SolderPaste mask Gerber object loaded."
  8877. msgstr ""
  8878. #: flatcamTools/ToolSolderPaste.py:986
  8879. msgid "Creating Solder Paste dispensing geometry."
  8880. msgstr ""
  8881. #: flatcamTools/ToolSolderPaste.py:999
  8882. msgid "No Nozzle tools in the tool table."
  8883. msgstr ""
  8884. #: flatcamTools/ToolSolderPaste.py:1126
  8885. msgid "Cancelled. Empty file, it has no geometry..."
  8886. msgstr ""
  8887. #: flatcamTools/ToolSolderPaste.py:1130
  8888. msgid "Solder Paste geometry generated successfully"
  8889. msgstr ""
  8890. #: flatcamTools/ToolSolderPaste.py:1137
  8891. msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
  8892. msgstr ""
  8893. #: flatcamTools/ToolSolderPaste.py:1151
  8894. msgid "Generating Solder Paste dispensing geometry..."
  8895. msgstr ""
  8896. #: flatcamTools/ToolSolderPaste.py:1172
  8897. msgid "There is no Geometry object available."
  8898. msgstr ""
  8899. #: flatcamTools/ToolSolderPaste.py:1177
  8900. msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
  8901. msgstr ""
  8902. #: flatcamTools/ToolSolderPaste.py:1285
  8903. msgid "ToolSolderPaste CNCjob created"
  8904. msgstr ""
  8905. #: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
  8906. #: flatcamTools/ToolSolderPaste.py:1378
  8907. msgid ""
  8908. "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
  8909. msgstr ""
  8910. #: flatcamTools/ToolSolderPaste.py:1348
  8911. msgid "No Gcode in the object"
  8912. msgstr ""
  8913. #: flatcamTools/ToolSolderPaste.py:1358
  8914. msgid "ToolSolderPaste.on_view_gcode()"
  8915. msgstr ""
  8916. #: flatcamTools/ToolSolderPaste.py:1388
  8917. msgid "Export GCode ..."
  8918. msgstr ""
  8919. #: flatcamTools/ToolSolderPaste.py:1436
  8920. msgid "Solder paste dispenser GCode file saved to"
  8921. msgstr ""
  8922. #: flatcamTools/ToolSub.py:57
  8923. msgid "Gerber Objects"
  8924. msgstr ""
  8925. #: flatcamTools/ToolSub.py:66 flatcamTools/ToolSub.py:112
  8926. msgid "Target"
  8927. msgstr ""
  8928. #: flatcamTools/ToolSub.py:68
  8929. msgid ""
  8930. "Gerber object from which to substract\n"
  8931. "the substractor Gerber object."
  8932. msgstr ""
  8933. #: flatcamTools/ToolSub.py:80 flatcamTools/ToolSub.py:126
  8934. msgid "Substractor"
  8935. msgstr ""
  8936. #: flatcamTools/ToolSub.py:82
  8937. msgid ""
  8938. "Gerber object that will be substracted\n"
  8939. "from the target Gerber object."
  8940. msgstr ""
  8941. #: flatcamTools/ToolSub.py:89
  8942. msgid "Substract Gerber"
  8943. msgstr ""
  8944. #: flatcamTools/ToolSub.py:91
  8945. msgid ""
  8946. "Will remove the area occupied by the substractor\n"
  8947. "Gerber from the Target Gerber.\n"
  8948. "Can be used to remove the overlapping silkscreen\n"
  8949. "over the soldermask."
  8950. msgstr ""
  8951. #: flatcamTools/ToolSub.py:103
  8952. msgid "Geometry Objects"
  8953. msgstr ""
  8954. #: flatcamTools/ToolSub.py:114
  8955. msgid ""
  8956. "Geometry object from which to substract\n"
  8957. "the substractor Geometry object."
  8958. msgstr ""
  8959. #: flatcamTools/ToolSub.py:128
  8960. msgid ""
  8961. "Geometry object that will be substracted\n"
  8962. "from the target Geometry object."
  8963. msgstr ""
  8964. #: flatcamTools/ToolSub.py:139
  8965. msgid "Substract Geometry"
  8966. msgstr ""
  8967. #: flatcamTools/ToolSub.py:141
  8968. msgid ""
  8969. "Will remove the area occupied by the substractor\n"
  8970. "Geometry from the Target Geometry."
  8971. msgstr ""
  8972. #: flatcamTools/ToolSub.py:228
  8973. msgid "Sub Tool"
  8974. msgstr ""
  8975. #: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
  8976. msgid "No Target object loaded."
  8977. msgstr ""
  8978. #: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
  8979. msgid "No Substractor object loaded."
  8980. msgstr ""
  8981. #: flatcamTools/ToolSub.py:314
  8982. #, python-format
  8983. msgid "Parsing aperture %s geometry ..."
  8984. msgstr ""
  8985. #: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
  8986. msgid "Generating new object ..."
  8987. msgstr ""
  8988. #: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
  8989. #: flatcamTools/ToolSub.py:704
  8990. msgid "Generating new object failed."
  8991. msgstr ""
  8992. #: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
  8993. msgid "Created"
  8994. msgstr ""
  8995. #: flatcamTools/ToolSub.py:476
  8996. msgid "Currently, the Substractor geometry cannot be of type Multigeo."
  8997. msgstr ""
  8998. #: flatcamTools/ToolSub.py:521
  8999. msgid "Parsing solid_geometry ..."
  9000. msgstr ""
  9001. #: flatcamTools/ToolSub.py:523
  9002. #, python-format
  9003. msgid "Parsing tool %s geometry ..."
  9004. msgstr ""
  9005. #: flatcamTools/ToolTransform.py:23
  9006. msgid "Object Transform"
  9007. msgstr ""
  9008. #: flatcamTools/ToolTransform.py:84
  9009. msgid ""
  9010. "Rotate the selected object(s).\n"
  9011. "The point of reference is the middle of\n"
  9012. "the bounding box for all selected objects."
  9013. msgstr ""
  9014. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  9015. msgid ""
  9016. "Skew/shear the selected object(s).\n"
  9017. "The point of reference is the middle of\n"
  9018. "the bounding box for all selected objects."
  9019. msgstr ""
  9020. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  9021. msgid ""
  9022. "Scale the selected object(s).\n"
  9023. "The point of reference depends on \n"
  9024. "the Scale reference checkbox state."
  9025. msgstr ""
  9026. #: flatcamTools/ToolTransform.py:251 flatcamTools/ToolTransform.py:268
  9027. msgid ""
  9028. "Offset the selected object(s).\n"
  9029. "The point of reference is the middle of\n"
  9030. "the bounding box for all selected objects.\n"
  9031. msgstr ""
  9032. #: flatcamTools/ToolTransform.py:298 flatcamTools/ToolTransform.py:306
  9033. msgid ""
  9034. "Flip the selected object(s) over the X axis.\n"
  9035. "Does not create a new object.\n"
  9036. " "
  9037. msgstr ""
  9038. #: flatcamTools/ToolTransform.py:643
  9039. msgid "No object selected. Please Select an object to rotate!"
  9040. msgstr ""
  9041. #: flatcamTools/ToolTransform.py:671
  9042. msgid "CNCJob objects can't be rotated."
  9043. msgstr ""
  9044. #: flatcamTools/ToolTransform.py:679
  9045. msgid "Rotate done"
  9046. msgstr ""
  9047. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9048. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9049. #: flatcamTools/ToolTransform.py:903
  9050. msgid "Due of"
  9051. msgstr ""
  9052. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9053. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9054. #: flatcamTools/ToolTransform.py:903
  9055. msgid "action was not executed."
  9056. msgstr ""
  9057. #: flatcamTools/ToolTransform.py:696
  9058. msgid "No object selected. Please Select an object to flip"
  9059. msgstr ""
  9060. #: flatcamTools/ToolTransform.py:731
  9061. msgid "CNCJob objects can't be mirrored/flipped."
  9062. msgstr ""
  9063. #: flatcamTools/ToolTransform.py:769
  9064. msgid "No object selected. Please Select an object to shear/skew!"
  9065. msgstr ""
  9066. #: flatcamTools/ToolTransform.py:791
  9067. msgid "CNCJob objects can't be skewed."
  9068. msgstr ""
  9069. #: flatcamTools/ToolTransform.py:803
  9070. #, python-format
  9071. msgid "[success] Skew on the %s axis done ..."
  9072. msgstr ""
  9073. #: flatcamTools/ToolTransform.py:820
  9074. msgid "No object selected. Please Select an object to scale!"
  9075. msgstr ""
  9076. #: flatcamTools/ToolTransform.py:853
  9077. msgid "CNCJob objects can't be scaled."
  9078. msgstr ""
  9079. #: flatcamTools/ToolTransform.py:863
  9080. msgid "Scale on the"
  9081. msgstr ""
  9082. #: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
  9083. msgid "axis done"
  9084. msgstr ""
  9085. #: flatcamTools/ToolTransform.py:875
  9086. msgid "No object selected. Please Select an object to offset!"
  9087. msgstr ""
  9088. #: flatcamTools/ToolTransform.py:884
  9089. msgid "CNCJob objects can't be offset."
  9090. msgstr ""
  9091. #: flatcamTools/ToolTransform.py:898
  9092. msgid "Offset on the"
  9093. msgstr ""
  9094. #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
  9095. msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
  9096. msgstr ""
  9097. #: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
  9098. msgid "Expected -box <value>."
  9099. msgstr ""
  9100. #: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
  9101. #: tclCommands/TclCommandScale.py:63
  9102. msgid "Could not retrieve box object"
  9103. msgstr ""
  9104. #: tclCommands/TclCommandCopperClear.py:263
  9105. msgid ""
  9106. "None of the following args: 'ref', 'all' were found or none was set to 1.\n"
  9107. "Copper clearing failed."
  9108. msgstr ""
  9109. #: tclCommands/TclCommandPaint.py:210
  9110. msgid "Expected -x <value> and -y <value>."
  9111. msgstr ""
  9112. #: tclCommands/TclCommandPaint.py:257
  9113. msgid ""
  9114. "There was none of the following args: 'ref', 'single', 'all'.\n"
  9115. "Paint failed."
  9116. msgstr ""
  9117. #: tclCommands/TclCommandScale.py:83
  9118. msgid "Expected -origin <origin> or -origin <min_bounds> or -origin <center>."
  9119. msgstr ""
  9120. #: tclCommands/TclCommandScale.py:92
  9121. msgid "Expected -x <value> -y <value>."
  9122. msgstr ""
  9123. #: tclCommands/TclCommandSubtractRectangle.py:49
  9124. msgid "No Geometry name in args. Provide a name and try again."
  9125. msgstr ""
  9126. #~ msgid ""
  9127. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9128. #~ "Example:\n"
  9129. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9130. #~ "\n"
  9131. #~ "Adjust the value starting with lower values\n"
  9132. #~ "and increasing it if areas that should be painted are still \n"
  9133. #~ "not painted.\n"
  9134. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9135. #~ "Higher values = slow processing and slow execution on CNC\n"
  9136. #~ "due of too many paths."
  9137. #~ msgstr ""
  9138. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9139. #~ "Example:\n"
  9140. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9141. #~ "\n"
  9142. #~ "Adjust the value starting with lower values\n"
  9143. #~ "and increasing it if areas that should be painted are still \n"
  9144. #~ "not painted.\n"
  9145. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9146. #~ "Higher values = slow processing and slow execution on CNC\n"
  9147. #~ "due of too many paths."
  9148. #~| msgid "z_toolchange = Z coord for Toolchange"
  9149. #~ msgid "z_cut = Z coord for Toolchange"
  9150. #~ msgstr "z_cut = Z coord for Toolchange"
  9151. #~| msgid "z_toolchange = Z coord for Toolchange"
  9152. #~ msgid "z_move = Z coord for Toolchange"
  9153. #~ msgstr "z_move = Z coord for Toolchange"
  9154. #~ msgid "%s/Project_%s"
  9155. #~ msgstr "%s/Project_%s"
  9156. #~ msgid "tool_tab"
  9157. #~ msgstr "tool_tab"