strings.po 331 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577
  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 "Editor de Script"
  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. "#\n"
  706. "# CRIAR UM NOVO SCRIPT TCL FLATCAM\n"
  707. "# Tutorial TCL aqui: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  708. "html\n"
  709. "#\n"
  710. "\n"
  711. "# Lista de comandos FlatCAM:\n"
  712. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  713. "AlignDrillGrid, ClearShell, Cncjob,\n"
  714. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  715. "GeoUnion, GetNames, GetSys,\n"
  716. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  717. "ListSys, MillHoles, Mirror, New,\n"
  718. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  719. "Options, Paint, Panelize,\n"
  720. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  721. "SubtractRectangle, Version,\n"
  722. "# WriteGCode\n"
  723. "#\n"
  724. "\n"
  725. #: FlatCAMApp.py:7903 FlatCAMApp.py:7906
  726. msgid "Open TCL script"
  727. msgstr "Abrir script TCL"
  728. #: FlatCAMApp.py:7915
  729. msgid "Open TCL script cancelled."
  730. msgstr "Abrir script TCL cancelado."
  731. #: FlatCAMApp.py:7928
  732. msgid "App.on_fileopenscript() -->"
  733. msgstr "App.on_fileopenscript() -->"
  734. #: FlatCAMApp.py:7954 FlatCAMApp.py:7957
  735. msgid "Run TCL script"
  736. msgstr "Executar script TCL"
  737. #: FlatCAMApp.py:7966
  738. msgid "Run TCL script cancelled."
  739. msgstr "Executar script TCL cancelado."
  740. #: FlatCAMApp.py:8021 FlatCAMApp.py:8025
  741. msgid "Save Project As ..."
  742. msgstr "Salvar Projeto Como..."
  743. #: FlatCAMApp.py:8022
  744. #, python-brace-format
  745. msgid "{l_save}/Project_{date}"
  746. msgstr "{l_save}/Project_{date}"
  747. #: FlatCAMApp.py:8031
  748. msgid "Save Project cancelled."
  749. msgstr "Salvar Projeto cancelado."
  750. #: FlatCAMApp.py:8079
  751. msgid "Exporting SVG"
  752. msgstr "Exportando SVG"
  753. #: FlatCAMApp.py:8121 FlatCAMApp.py:8238 FlatCAMApp.py:8364
  754. msgid "SVG file exported to"
  755. msgstr "Arquivo SVG exportado para"
  756. #: FlatCAMApp.py:8156 FlatCAMApp.py:8287 flatcamTools/ToolPanelize.py:381
  757. msgid "No object Box. Using instead"
  758. msgstr "Nenhuma caixa de objeto. Usando"
  759. #: FlatCAMApp.py:8241 FlatCAMApp.py:8367
  760. msgid "Generating Film ... Please wait."
  761. msgstr "Gerando Filme ... Por favor, aguarde."
  762. #: FlatCAMApp.py:8536
  763. msgid "Excellon file exported to"
  764. msgstr "Arquivo Excellon exportado para"
  765. #: FlatCAMApp.py:8543
  766. msgid "Exporting Excellon"
  767. msgstr "Exportando Excellon"
  768. #: FlatCAMApp.py:8549 FlatCAMApp.py:8557
  769. msgid "Could not export Excellon file."
  770. msgstr "Não foi possível exportar o arquivo Excellon."
  771. #: FlatCAMApp.py:8665
  772. msgid "Gerber file exported to"
  773. msgstr "Arquivo Gerber exportado para"
  774. #: FlatCAMApp.py:8672
  775. msgid "Exporting Gerber"
  776. msgstr "Exportando Gerber"
  777. #: FlatCAMApp.py:8678 FlatCAMApp.py:8686
  778. msgid "Could not export Gerber file."
  779. msgstr "Não foi possível exportar o arquivo Gerber."
  780. #: FlatCAMApp.py:8729
  781. msgid "DXF file exported to"
  782. msgstr "Arquivo DXF exportado para"
  783. #: FlatCAMApp.py:8735
  784. msgid "Exporting DXF"
  785. msgstr "Exportando DXF"
  786. #: FlatCAMApp.py:8741 FlatCAMApp.py:8749
  787. msgid "Could not export DXF file."
  788. msgstr "Não foi possível exportar o arquivo DXF."
  789. #: FlatCAMApp.py:8770 FlatCAMApp.py:8814 FlatCAMApp.py:8860
  790. msgid ""
  791. "Not supported type is picked as parameter. Only Geometry and Gerber are "
  792. "supported"
  793. msgstr "O tipo escolhido não é suportado como parâmetro. Apenas "
  794. "Geometria e Gerber são suportados"
  795. #: FlatCAMApp.py:8780
  796. msgid "Importing SVG"
  797. msgstr "Importando SVG"
  798. #: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
  799. #: FlatCAMApp.py:9029 FlatCAMApp.py:9096
  800. msgid "Opened"
  801. msgstr "Aberto"
  802. #: FlatCAMApp.py:8824
  803. msgid "Importing DXF"
  804. msgstr "Importando DXF"
  805. #: FlatCAMApp.py:8868
  806. msgid "Importing Image"
  807. msgstr "Importando Imagem"
  808. #: FlatCAMApp.py:8911
  809. msgid "Failed to open file"
  810. msgstr "Falha ao abrir o arquivo"
  811. #: FlatCAMApp.py:8916
  812. msgid "Failed to parse file"
  813. msgstr "Falha ao analisar o arquivo"
  814. #: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
  815. #: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
  816. msgid "An internal error has occurred. See shell.\n"
  817. msgstr "Ocorreu um erro interno. Veja shell. (linha de comando)\n"
  818. #: FlatCAMApp.py:8933
  819. msgid "Object is not Gerber file or empty. Aborting object creation."
  820. msgstr "O objeto não é um arquivo Gerber ou está vazio. Abortando a "
  821. "criação de objetos."
  822. #: FlatCAMApp.py:8941
  823. msgid "Opening Gerber"
  824. msgstr "Abrindo Gerber"
  825. #: FlatCAMApp.py:8952
  826. msgid " Open Gerber failed. Probable not a Gerber file."
  827. msgstr "Abrir Gerber falhou. Provavelmente não é um arquivo Gerber."
  828. #: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
  829. msgid "This is not Excellon file."
  830. msgstr "Este não é um arquivo Excellon."
  831. #: FlatCAMApp.py:8991
  832. msgid "Cannot open file"
  833. msgstr "Não é possível abrir o arquivo"
  834. #: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
  835. #: flatcamTools/ToolPcbWizard.py:451
  836. msgid "No geometry found in file"
  837. msgstr "Nenhuma geometria encontrada no arquivo"
  838. #: FlatCAMApp.py:9014
  839. msgid "Opening Excellon."
  840. msgstr "Abrindo Excellon."
  841. #: FlatCAMApp.py:9021
  842. msgid "Open Excellon file failed. Probable not an Excellon file."
  843. msgstr "Falha ao abrir Excellon. Provavelmente não é um arquivo Excellon."
  844. #: FlatCAMApp.py:9060
  845. msgid "Failed to open"
  846. msgstr "Falha ao abrir"
  847. #: FlatCAMApp.py:9071
  848. msgid "This is not GCODE"
  849. msgstr "Não é G-Code"
  850. #: FlatCAMApp.py:9077
  851. msgid "Opening G-Code."
  852. msgstr "Abrindo G-Code."
  853. #: FlatCAMApp.py:9086
  854. msgid ""
  855. "Failed to create CNCJob Object. Probable not a GCode file.\n"
  856. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  857. "processing"
  858. msgstr "Falha ao criar o objeto Trabalho CNC. Provavelmente não é um "
  859. "arquivo G-Code. \n"
  860. "A tentativa de criar um objeto de Trabalho CNC do arquivo G-Code falhou "
  861. "durante o processamento"
  862. #: FlatCAMApp.py:9128
  863. msgid "Failed to open config file"
  864. msgstr "Falha ao abrir o arquivo de configuração"
  865. #: FlatCAMApp.py:9149
  866. msgid "Loading Project ... Please Wait ..."
  867. msgstr "Carregando projeto ... Por favor aguarde ..."
  868. #: FlatCAMApp.py:9157 FlatCAMApp.py:9176
  869. msgid "Failed to open project file"
  870. msgstr "Falha ao abrir o arquivo de projeto"
  871. #: FlatCAMApp.py:9200
  872. msgid "Loading Project ... restoring"
  873. msgstr "Carregando projeto ... restaurando"
  874. #: FlatCAMApp.py:9210
  875. msgid "Project loaded from"
  876. msgstr "Projeto carregado de"
  877. #: FlatCAMApp.py:9316
  878. msgid "Available commands:\n"
  879. msgstr "Comandos disponíveis:\n"
  880. #: FlatCAMApp.py:9318
  881. msgid ""
  882. "\n"
  883. "\n"
  884. "Type help <command_name> for usage.\n"
  885. " Example: help open_gerber"
  886. msgstr ""
  887. "\n"
  888. "\n"
  889. "Digite help <nome_do_comando> para forma de uso.\n"
  890. " Exemplo: help open_gerber"
  891. #: FlatCAMApp.py:9468
  892. msgid "Shows list of commands."
  893. msgstr "Mostra a lista de comandos."
  894. #: FlatCAMApp.py:9526
  895. msgid "Failed to load recent item list."
  896. msgstr "Falha ao carregar a lista de itens recentes."
  897. #: FlatCAMApp.py:9534
  898. msgid "Failed to parse recent item list."
  899. msgstr "Falha ao analisar a lista de itens recentes."
  900. #: FlatCAMApp.py:9545
  901. msgid "Failed to load recent projects item list."
  902. msgstr "Falha ao carregar a lista de projetos recentes."
  903. #: FlatCAMApp.py:9553
  904. msgid "Failed to parse recent project item list."
  905. msgstr "Falha ao analisar a lista de projetos recentes."
  906. #: FlatCAMApp.py:9612 FlatCAMApp.py:9635
  907. msgid "Clear Recent files"
  908. msgstr "Limpar arquivos recentes"
  909. #: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
  910. msgid "<b>Shortcut Key List</b>"
  911. msgstr "<b>Lista de Teclas de Atalho</b>"
  912. #: FlatCAMApp.py:9664
  913. #, python-brace-format
  914. msgid ""
  915. "\n"
  916. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  917. "from Project Tab</strong></span></p>\n"
  918. "\n"
  919. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  920. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  921. "\n"
  922. "<ol>\n"
  923. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  924. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  925. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  926. "GUI.<br />\n"
  927. "\t<br />\n"
  928. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  929. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  930. "through the menu/toolbar links offered within the app.</span><br />\n"
  931. "\t&nbsp;</li>\n"
  932. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  933. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  934. "strong>(more simpler is to double click the object name in the Project Tab), "
  935. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  936. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  937. ">\n"
  938. "\t<br />\n"
  939. "\tIf the selection of the object is done on the canvas by single click "
  940. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  941. "properties will be displayed into the Selected Tab. Alternatively, double "
  942. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  943. "strong> and populate it even if it was out of focus.<br />\n"
  944. "\t<br />\n"
  945. "\tYou can change the parameters in this screen and the flow direction is "
  946. "like this:<br />\n"
  947. "\t<br />\n"
  948. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  949. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  950. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  951. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  952. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  953. "span></li>\n"
  954. "</ol>\n"
  955. "\n"
  956. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  957. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  958. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  959. "\n"
  960. " "
  961. msgstr ""
  962. "\n"
  963. "<p><span style=\"font-size:{tsize}px\"><strong>Aba Selecionado - Escolha um "
  964. "Item na Aba Projeto</strong></span></p>\n"
  965. "\n"
  966. "<p><span style=\"font-size:{fsize}px\"><strong>Detalhes</strong>:<br/>\n"
  967. "O fluxo normal de trabalho no FlatCAM é o seguinte:</span></p>\n"
  968. "\n"
  969. "<ol>\n"
  970. "\t<li><span style=\"font-size:{fsize}px\">Ler/Importar um arquivo Gerber, "
  971. "Excellon, G-Code, DXF, Imagem Raster ou SVG no FlatCAM usando os menus, "
  972. "barras de trabalho, teclas de atalho ou mesmo arrastando e soltando os "
  973. "arquivos na GUI.<br/>\n"
  974. "\t<br/>\n"
  975. "\tVocê pode também ler um <strong>projeto FlatCAM</strong> clicando duas "
  976. "vezes no arquivo de projeto, arrastando e soltando o arquivo na GUI do "
  977. "FlatCAM ou através dos links de menu/barra de ferramentas oferecidos dentro "
  978. "do aplicativo.</span><br/>\n"
  979. "\t&nbsp;</li>\n"
  980. "\t<li><span style=\"font-size:{fsize}px\">Uma vez que um objeto está "
  981. "disponível na <strong>Aba Projeto</strong>, selecione-o e então vá para a "
  982. "<strong>Aba Selecionado</strong> (ou clique duas vezes no nome do objeto na "
  983. "<strong>Aba Projeto</strong>). A <strong>Aba Selecionado</strong> será "
  984. "atualizada com as propriedades do objeto de acordo com o tipo: Gerber, "
  985. "Excellon, Geometria ou Trabalho CNC.<br/>\n"
  986. "\t<br/>\n"
  987. "\tSe a seleção do objeto for feita na tela com um único clique, e a "
  988. "<strong>Aba Selecionado</strong> estiver em foco, novamente as propriedades "
  989. "do objeto serão exibidas na <strong>Aba Selecionado</strong>. Como "
  990. "alternativa, clicar duas vezes no objeto na tela trará a <strong>Aba "
  991. "Selecionado</strong> e a preencherá mesmo que esteja fora de foco.<br/>\n"
  992. "\t<br/>\n"
  993. "\tVocê pode alterar os parâmetros nesta tela e o fluxo é assim:<br/>\n"
  994. "\t<br/>\n"
  995. "\t<strong>Objeto Gerber/Excellon</strong> -&gt; Alterar Parâmetros -&gt; "
  996. "Gerar Geometria -&gt;<strong> Objeto Geometria </strong>-&gt; Adicionar "
  997. "Ferramentas (alterar parâmetro na Aba Selecionado) -&gt; Gerar Trabalho CNC -"
  998. "&gt;<strong> Objeto Trabalho CNC </strong>-&gt; Verificar G-Code (com Editar "
  999. "Código CNC) e/ou acrescentar/pré-anexar ao G-Code (novamente, na "
  1000. "<strong>ABA SELECIONADO)&nbsp;</strong>-&gt; Salvar G-Code</span></li>\n"
  1001. "</ol>\n"
  1002. "\n"
  1003. "<p><span style=\"font-size:{fsize}px\">Uma lista de teclas de atalhos está "
  1004. "disponível em <strong>Ajuda -&gt; Lista de Teclas de Atalho</strong>&nbsp;ou "
  1005. "usando a sua tecla de atalho: <strong>F3</strong>.</span></p>\n"
  1006. "\n"
  1007. " "
  1008. #: FlatCAMApp.py:9743
  1009. msgid "Failed checking for latest version. Could not connect."
  1010. msgstr "Falha na verificação da versão mais recente. Não foi "
  1011. "possível conectar."
  1012. #: FlatCAMApp.py:9751
  1013. msgid "Could not parse information about latest version."
  1014. msgstr "Não foi possível analisar informações sobre a versão mais recente."
  1015. #: FlatCAMApp.py:9762
  1016. msgid "FlatCAM is up to date!"
  1017. msgstr "O FlatCAM está atualizado!"
  1018. #: FlatCAMApp.py:9767
  1019. msgid "Newer Version Available"
  1020. msgstr "Nova Versão Disponível"
  1021. #: FlatCAMApp.py:9768
  1022. msgid ""
  1023. "There is a newer version of FlatCAM available for download:\n"
  1024. "\n"
  1025. msgstr ""
  1026. "Existe uma versão mais nova do FlatCAM disponível para download:\n"
  1027. "\n"
  1028. #: FlatCAMApp.py:9770
  1029. msgid "info"
  1030. msgstr "info"
  1031. #: FlatCAMApp.py:9825
  1032. msgid "All plots disabled."
  1033. msgstr "Todos os gráficos desabilitados."
  1034. #: FlatCAMApp.py:9832
  1035. msgid "All non selected plots disabled."
  1036. msgstr "Todos os gráficos não selecionados desabilitados."
  1037. #: FlatCAMApp.py:9839
  1038. msgid "All plots enabled."
  1039. msgstr "Todos os gráficos habilitados."
  1040. #: FlatCAMApp.py:9846
  1041. msgid "Selected plots enabled..."
  1042. msgstr "Gráficos selecionados habilitados..."
  1043. #: FlatCAMApp.py:9855
  1044. msgid "Selected plots disabled..."
  1045. msgstr "Gráficos selecionados desabilitados..."
  1046. #: FlatCAMApp.py:9873
  1047. msgid "Enabling plots ..."
  1048. msgstr "Habilitando gráficos..."
  1049. #: FlatCAMApp.py:9907
  1050. msgid "Disabling plots ..."
  1051. msgstr "Desabilitando gráficos..."
  1052. #: FlatCAMApp.py:9929
  1053. msgid "Working ..."
  1054. msgstr "Trabalhando ..."
  1055. #: FlatCAMApp.py:9967
  1056. msgid "Saving FlatCAM Project"
  1057. msgstr "Salvando o Projeto FlatCAM"
  1058. #: FlatCAMApp.py:9989 FlatCAMApp.py:10024
  1059. msgid "Project saved to"
  1060. msgstr "Projeto salvo em"
  1061. #: FlatCAMApp.py:10008
  1062. msgid "Failed to verify project file"
  1063. msgstr "Falha ao verificar o arquivo do projeto"
  1064. #: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
  1065. msgid "Retry to save it."
  1066. msgstr "Tente salvá-lo novamente."
  1067. #: FlatCAMApp.py:10016 FlatCAMApp.py:10027
  1068. msgid "Failed to parse saved project file"
  1069. msgstr "Falha ao analisar o arquivo de projeto salvo"
  1070. #: FlatCAMApp.py:10238
  1071. msgid "The user requested a graceful exit of the current task."
  1072. msgstr "O usuário solicitou uma saída normal da tarefa atual."
  1073. #: FlatCAMObj.py:213
  1074. #, python-brace-format
  1075. msgid "[success] Name changed from {old} to {new}"
  1076. msgstr "Nome alterado de {old} para {new}"
  1077. #: FlatCAMObj.py:222
  1078. msgid "Offsetting..."
  1079. msgstr "Deslocando..."
  1080. #: FlatCAMObj.py:237
  1081. msgid "Scaling..."
  1082. msgstr "Dimensionando..."
  1083. #: FlatCAMObj.py:253
  1084. msgid "Skewing..."
  1085. msgstr "Inclinando..."
  1086. #: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
  1087. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1088. msgstr "<span style=\"color:green;\"><b>Básico</b></span>"
  1089. #: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
  1090. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1091. msgstr "<span style=\"color:red;\"><b>Avançado</b></span>"
  1092. #: FlatCAMObj.py:802
  1093. msgid "Buffering solid geometry"
  1094. msgstr ""
  1095. #: FlatCAMObj.py:805 flatcamGUI/FlatCAMGUI.py:4322
  1096. #: flatcamTools/ToolNonCopperClear.py:1531
  1097. #: flatcamTools/ToolNonCopperClear.py:1625
  1098. #: flatcamTools/ToolNonCopperClear.py:1637
  1099. #: flatcamTools/ToolNonCopperClear.py:1864
  1100. #: flatcamTools/ToolNonCopperClear.py:1956
  1101. #: flatcamTools/ToolNonCopperClear.py:1968
  1102. msgid "Buffering"
  1103. msgstr ""
  1104. #: FlatCAMObj.py:811
  1105. msgid "Done"
  1106. msgstr "Pronto"
  1107. #: FlatCAMObj.py:1071 FlatCAMObj.py:1178
  1108. #: flatcamTools/ToolNonCopperClear.py:1560
  1109. #: flatcamTools/ToolNonCopperClear.py:1888
  1110. msgid "Isolation geometry could not be generated."
  1111. msgstr "A geometria de isolação não pôde ser gerada."
  1112. #: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
  1113. msgid "Rough"
  1114. msgstr "Desbaste"
  1115. #: FlatCAMObj.py:1133 FlatCAMObj.py:1201
  1116. msgid "Isolation geometry created"
  1117. msgstr "Geometria de isolação criada"
  1118. #: FlatCAMObj.py:1386
  1119. msgid "Plotting Apertures"
  1120. msgstr "Mostrando Aberturas"
  1121. #: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
  1122. msgid "Total Drills"
  1123. msgstr "Total de Furos"
  1124. #: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
  1125. msgid "Total Slots"
  1126. msgstr "Total de Fendas"
  1127. #: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
  1128. #: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
  1129. #: FlatCAMObj.py:4907 FlatCAMObj.py:5405
  1130. #: flatcamEditors/FlatCAMExcEditor.py:2416
  1131. #: flatcamEditors/FlatCAMGeoEditor.py:1080
  1132. #: flatcamEditors/FlatCAMGeoEditor.py:1117
  1133. #: flatcamEditors/FlatCAMGeoEditor.py:1138
  1134. #: flatcamEditors/FlatCAMGeoEditor.py:1159
  1135. #: flatcamEditors/FlatCAMGeoEditor.py:1196
  1136. #: flatcamEditors/FlatCAMGeoEditor.py:1228
  1137. #: flatcamEditors/FlatCAMGeoEditor.py:1249
  1138. #: flatcamEditors/FlatCAMGrbEditor.py:5283
  1139. #: flatcamEditors/FlatCAMGrbEditor.py:5326
  1140. #: flatcamEditors/FlatCAMGrbEditor.py:5353
  1141. #: flatcamEditors/FlatCAMGrbEditor.py:5380
  1142. #: flatcamEditors/FlatCAMGrbEditor.py:5421
  1143. #: flatcamEditors/FlatCAMGrbEditor.py:5459
  1144. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
  1145. #: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
  1146. #: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
  1147. #: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
  1148. #: flatcamTools/ToolCalculators.py:398 flatcamTools/ToolCalculators.py:409
  1149. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolFilm.py:254
  1150. #: flatcamTools/ToolNonCopperClear.py:862
  1151. #: flatcamTools/ToolNonCopperClear.py:873
  1152. #: flatcamTools/ToolNonCopperClear.py:883
  1153. #: flatcamTools/ToolNonCopperClear.py:901
  1154. #: flatcamTools/ToolNonCopperClear.py:980
  1155. #: flatcamTools/ToolNonCopperClear.py:1062
  1156. #: flatcamTools/ToolNonCopperClear.py:1341
  1157. #: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
  1158. #: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
  1159. #: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
  1160. #: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
  1161. #: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
  1162. #: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
  1163. #: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
  1164. #: flatcamTools/ToolSolderPaste.py:764 flatcamTools/ToolSolderPaste.py:839
  1165. #: flatcamTools/ToolTransform.py:474 flatcamTools/ToolTransform.py:508
  1166. #: flatcamTools/ToolTransform.py:526 flatcamTools/ToolTransform.py:544
  1167. #: flatcamTools/ToolTransform.py:578 flatcamTools/ToolTransform.py:607
  1168. #: flatcamTools/ToolTransform.py:625
  1169. msgid "Wrong value format entered, use a number."
  1170. msgstr "Formato incorreto, use um número."
  1171. #: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
  1172. msgid "Please select one or more tools from the list and try again."
  1173. msgstr "Selecione uma ou mais ferramentas da lista e tente novamente."
  1174. #: FlatCAMObj.py:2614
  1175. msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
  1176. msgstr "A ferramenta BROCA é maior que o tamanho do furo. Cancelado."
  1177. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1178. msgid "Tool_nr"
  1179. msgstr "Ferramenta_nr"
  1180. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1181. #: flatcamEditors/FlatCAMExcEditor.py:1500
  1182. #: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
  1183. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  1184. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1185. msgid "Diameter"
  1186. msgstr "Diâmetro"
  1187. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1188. msgid "Drills_Nr"
  1189. msgstr "Furo_Nr"
  1190. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1191. msgid "Slots_Nr"
  1192. msgstr "Fenda_Nr"
  1193. #: FlatCAMObj.py:2707
  1194. msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
  1195. msgstr "A ferramenta fresa para FENDAS é maior que o tamanho do furo. Cancelado."
  1196. #: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
  1197. msgid ""
  1198. "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
  1199. "\"]"
  1200. msgstr ""
  1201. "Valor com formato incorreto para self.defaults[\"z_pdepth\"] ou "
  1202. "self.options[\"z_pdepth\"]"
  1203. #: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
  1204. msgid ""
  1205. "Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1206. "options[\"feedrate_probe\"]"
  1207. msgstr ""
  1208. "Valor com formato incorreto para self.defaults[\"feedrate_probe"
  1209. "\"] ou self.options[\"feedrate_probe\"]"
  1210. #: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
  1211. msgid "Generating CNC Code"
  1212. msgstr "Gerando Código CNC"
  1213. #: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
  1214. msgid ""
  1215. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1216. "y) \n"
  1217. "but now there is only one value, not two. "
  1218. msgstr ""
  1219. "O campo Troca de Ferramentas X, Y em Editar -> Preferências deve "
  1220. "estar no formato (x, y).\n"
  1221. "Agora existe apenas um valor, não dois."
  1222. #: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
  1223. msgid "Iso"
  1224. msgstr "Isolação"
  1225. #: FlatCAMObj.py:3261
  1226. msgid "Finish"
  1227. msgstr "Acabamento"
  1228. #: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
  1229. #: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
  1230. #: flatcamGUI/ObjectUI.py:1061
  1231. msgid "Copy"
  1232. msgstr "Copiar"
  1233. #: FlatCAMObj.py:3775
  1234. msgid "Please enter the desired tool diameter in Float format."
  1235. msgstr "Por favor, insira o diâmetro da ferramenta desejada no formato "
  1236. "Flutuante."
  1237. #: FlatCAMObj.py:3849
  1238. msgid "Tool added in Tool Table."
  1239. msgstr "Ferramenta adicionada na Tabela de Ferramentas."
  1240. #: FlatCAMObj.py:3853
  1241. msgid "Default Tool added. Wrong value format entered."
  1242. msgstr "Ferramenta padrão adicionada. Valor inserico com formato incorreto."
  1243. #: FlatCAMObj.py:3886 FlatCAMObj.py:3895
  1244. msgid "Failed. Select a tool to copy."
  1245. msgstr "Falhou. Selecione uma ferramenta para copiar."
  1246. #: FlatCAMObj.py:3923
  1247. msgid "Tool was copied in Tool Table."
  1248. msgstr "A ferramenta foi copiada na tabela de ferramentas."
  1249. #: FlatCAMObj.py:3953
  1250. msgid "Tool was edited in Tool Table."
  1251. msgstr "A ferramenta foi editada na Tabela de Ferramentas."
  1252. #: FlatCAMObj.py:3982 FlatCAMObj.py:3991
  1253. msgid "Failed. Select a tool to delete."
  1254. msgstr "Falhou. Selecione uma ferramenta para excluir."
  1255. #: FlatCAMObj.py:4014
  1256. msgid "Tool was deleted in Tool Table."
  1257. msgstr "A ferramenta foi eliminada da Tabela de Ferramentas."
  1258. #: FlatCAMObj.py:4444
  1259. #, python-format
  1260. msgid "This Geometry can't be processed because it is %s geometry."
  1261. msgstr "Esta Geometria não pode ser processada porque é %s geometria."
  1262. #: FlatCAMObj.py:4486
  1263. msgid "Failed. No tool selected in the tool table ..."
  1264. msgstr "Falhou. Nenhuma ferramenta selecionada na tabela de ferramentas ..."
  1265. #: FlatCAMObj.py:4524
  1266. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
  1267. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
  1268. #: FlatCAMObj.py:4673 FlatCAMObj.py:4913
  1269. msgid ""
  1270. "Tool Offset is selected in Tool Table but no value is provided.\n"
  1271. "Add a Tool Offset or change the Offset Type."
  1272. msgstr ""
  1273. "Deslocamento de Ferramenta selecionado na Tabela de Ferramentas, mas nenhum "
  1274. "valor foi fornecido.\n"
  1275. "Adicione um Deslocamento de Ferramenta ou altere o Tipo de Deslocamento."
  1276. #: FlatCAMObj.py:4724 FlatCAMObj.py:4954
  1277. msgid "G-Code parsing in progress..."
  1278. msgstr "Análisando o G-Code..."
  1279. #: FlatCAMObj.py:4726 FlatCAMObj.py:4956
  1280. msgid "G-Code parsing finished..."
  1281. msgstr "Análise do G-Code finalisada..."
  1282. #: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
  1283. msgid "Finished G-Code processing..."
  1284. msgstr "Processamento do G-Code finalisado..."
  1285. #: FlatCAMObj.py:4736 FlatCAMObj.py:4968
  1286. #, python-format
  1287. msgid "G-Code processing failed with error: %s"
  1288. msgstr "Processamento do G-Code falhou com erro: %s"
  1289. #: FlatCAMObj.py:4788
  1290. msgid ""
  1291. " Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1292. "options[\"feedrate_probe\"]"
  1293. msgstr ""
  1294. " Valor com formato incorreto para self.defaults[\"feedrate_probe\"] ou self."
  1295. "options[\"feedrate_probe\"]"
  1296. #: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
  1297. msgid "Cancelled. Empty file, it has no geometry"
  1298. msgstr "Cancelado. Arquivo vazio, não tem geometria"
  1299. #: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
  1300. msgid "CNCjob created"
  1301. msgstr ""
  1302. #: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
  1303. msgid "Scale factor has to be a number: integer or float."
  1304. msgstr "O fator de escala deve ser um número: inteiro ou flutuante."
  1305. #: FlatCAMObj.py:5264
  1306. msgid "Geometry Scale done."
  1307. msgstr "Redimensionamento de geometria feita."
  1308. #: FlatCAMObj.py:5281 camlib.py:3685
  1309. msgid ""
  1310. "An (x,y) pair of values are needed. Probable you entered only one value in "
  1311. "the Offset field."
  1312. msgstr ""
  1313. "Um par (x,y) de valores é necessário. Provavelmente você "
  1314. "digitou apenas um valor no campo Deslocamento."
  1315. #: FlatCAMObj.py:5335
  1316. msgid "Geometry Offset done."
  1317. msgstr "Deslocamento de Geometria feito."
  1318. #: FlatCAMObj.py:5364
  1319. msgid ""
  1320. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1321. "y)\n"
  1322. "but now there is only one value, not two."
  1323. msgstr ""
  1324. #: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
  1325. msgid "Export Machine Code ..."
  1326. msgstr "Exportar Código da Máquina ..."
  1327. #: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
  1328. msgid "Export Machine Code cancelled ..."
  1329. msgstr "Exportar código da máquina cancelado ..."
  1330. #: FlatCAMObj.py:5934
  1331. msgid "Machine Code file saved to"
  1332. msgstr "Arquivo G-Code salvo em"
  1333. #: FlatCAMObj.py:5958
  1334. msgid "FlatCAMCNNJob.on_edit_code_click() -->"
  1335. msgstr "FlatCAMCNNJob.on_edit_code_click() -->"
  1336. #: FlatCAMObj.py:5966
  1337. msgid "Loaded Machine Code into Code Editor"
  1338. msgstr "G-Code aberto no Editor de Códigos"
  1339. #: FlatCAMObj.py:6078
  1340. msgid "This CNCJob object can't be processed because it is a"
  1341. msgstr "Este objeto Trabalho CNC não pode ser processado porque é um"
  1342. #: FlatCAMObj.py:6080
  1343. msgid "CNCJob object"
  1344. msgstr "objeto de Trabalho CNC"
  1345. #: FlatCAMObj.py:6132
  1346. msgid "G-code does not have a units code: either G20 or G21"
  1347. msgstr "O G-Code não possui um código de unidade: G20 ou G21"
  1348. #: FlatCAMObj.py:6144
  1349. msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
  1350. msgstr "Cancelado. O código personalizado para Troca de Ferramentas está "
  1351. "ativado, mas está vazio."
  1352. #: FlatCAMObj.py:6150
  1353. msgid "Toolchange G-code was replaced by a custom code."
  1354. msgstr "O G-Code para Troca de Ferramentas foi substituído por um código personalizado."
  1355. #: FlatCAMObj.py:6177
  1356. msgid "Saved to"
  1357. msgstr "Salvo em"
  1358. #: FlatCAMObj.py:6187 FlatCAMObj.py:6197
  1359. msgid ""
  1360. "The used postprocessor file has to have in it's name: 'toolchange_custom'"
  1361. msgstr ""
  1362. "O arquivo de pós-processamento deve ter em seu nome: 'toolchange_custom'"
  1363. #: FlatCAMObj.py:6201
  1364. msgid "There is no postprocessor file."
  1365. msgstr "Não há arquivo de pós-processamento."
  1366. #: FlatCAMProcess.py:172
  1367. msgid "processes running."
  1368. msgstr "processos executando."
  1369. #: FlatCAMTranslation.py:91
  1370. msgid "The application will restart."
  1371. msgstr "O aplicativo reiniciará."
  1372. #: FlatCAMTranslation.py:92
  1373. #, python-format
  1374. msgid "Are you sure do you want to change the current language to %s?"
  1375. msgstr "Você tem certeza de que quer alterar o idioma para %s?"
  1376. #: FlatCAMTranslation.py:94
  1377. msgid "Apply Language ..."
  1378. msgstr "Aplicar o Idioma ..."
  1379. #: ObjectCollection.py:426
  1380. #, python-brace-format
  1381. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1382. msgstr "Objeto renomeado de <b>{old}</b> para <b>{new}</b>"
  1383. #: ObjectCollection.py:766
  1384. msgid "Cause of error"
  1385. msgstr "Motivo do erro"
  1386. #: camlib.py:215
  1387. msgid "self.solid_geometry is neither BaseGeometry or list."
  1388. msgstr "self.solid_geometry não é nem BaseGeometry nem lista."
  1389. #: camlib.py:1522
  1390. msgid "Object was mirrored"
  1391. msgstr "O objeto foi espelhado"
  1392. #: camlib.py:1525
  1393. msgid "Failed to mirror. No object selected"
  1394. msgstr "Falha ao espelhar. Nenhum objeto selecionado"
  1395. #: camlib.py:1594
  1396. msgid "Object was rotated"
  1397. msgstr "O objeto foi rotacionado"
  1398. #: camlib.py:1597
  1399. msgid "Failed to rotate. No object selected"
  1400. msgstr "Falha ao girar. Nenhum objeto selecionado"
  1401. #: camlib.py:1665
  1402. msgid "Object was skewed"
  1403. msgstr "O objeto foi inclinado"
  1404. #: camlib.py:1668
  1405. msgid "Failed to skew. No object selected"
  1406. msgstr "Falha ao inclinar. Nenhum objeto selecionado"
  1407. #: camlib.py:2443
  1408. msgid "Gerber processing. Parsing"
  1409. msgstr "Processando Gerber. Analisando."
  1410. #: camlib.py:2443
  1411. msgid "lines"
  1412. msgstr "linhas"
  1413. #: camlib.py:2942 camlib.py:3030
  1414. msgid "Coordinates missing, line ignored"
  1415. msgstr "Coordenadas faltando, linha ignorada"
  1416. #: camlib.py:2944 camlib.py:3032
  1417. msgid "GERBER file might be CORRUPT. Check the file !!!"
  1418. msgstr "O arquivo GERBER pode estar CORROMPIDO. Verifique o arquivo !!!"
  1419. #: camlib.py:2994
  1420. msgid ""
  1421. "Region does not have enough points. File will be processed but there are "
  1422. "parser errors. Line number"
  1423. msgstr ""
  1424. "A região não possui pontos suficientes. O arquivo será processado, "
  1425. "mas há erros na análise. Número da linha"
  1426. #: camlib.py:3364
  1427. msgid "Gerber processing. Joining"
  1428. msgstr "Processando Gerber. Unindo."
  1429. #: camlib.py:3364
  1430. msgid "polygons"
  1431. msgstr "polígonos"
  1432. #: camlib.py:3399
  1433. msgid "Gerber Line"
  1434. msgstr "Linha Gerber"
  1435. #: camlib.py:3399
  1436. msgid "Gerber Line Content"
  1437. msgstr "Conteúdo"
  1438. #: camlib.py:3401
  1439. msgid "Gerber Parser ERROR"
  1440. msgstr "Erro de Análise"
  1441. #: camlib.py:3649
  1442. msgid "Gerber Scale done."
  1443. msgstr "Redimensionamento Gerber pronto."
  1444. #: camlib.py:3739
  1445. msgid "Gerber Offset done."
  1446. msgstr "Deslocamento Gerber pronto."
  1447. #: camlib.py:3816
  1448. msgid "Gerber Mirror done."
  1449. msgstr "Espelhamento Gerber pronto."
  1450. #: camlib.py:3885
  1451. msgid "Gerber Skew done."
  1452. msgstr "Inclinação Gerber pronta."
  1453. #: camlib.py:3946
  1454. msgid "Gerber Rotate done."
  1455. msgstr "Rotação Gerber pronta."
  1456. #: camlib.py:4233
  1457. msgid "This is GCODE mark"
  1458. msgstr "Esta é a marca G-CODE"
  1459. #: camlib.py:4349
  1460. msgid ""
  1461. "No tool diameter info's. See shell.\n"
  1462. "A tool change event: T"
  1463. msgstr ""
  1464. #: camlib.py:4352
  1465. msgid ""
  1466. "was found but the Excellon file have no informations regarding the tool "
  1467. "diameters therefore the application will try to load it by using some 'fake' "
  1468. "diameters.\n"
  1469. "The user needs to edit the resulting Excellon object and change the "
  1470. "diameters to reflect the real diameters."
  1471. msgstr ""
  1472. "foi encontrado mas o arquivo Excellon não possui informações sobre os diâmetros "
  1473. "da ferramenta. \nO aplicativo tentará carregá-lo usando alguns diâmetros 'falsos'./nO usuário precisa editar o objeto Excellon resultante e\n"
  1474. "alterar os diâmetros para os valores reais."
  1475. #: camlib.py:4807
  1476. #, python-brace-format
  1477. msgid ""
  1478. "{e_code} Excellon Parser error.\n"
  1479. "Parsing Failed. Line {l_nr}: {line}\n"
  1480. msgstr ""
  1481. "{e_code} Erro do Analisador Excellon.\n"
  1482. "Análise falhou. Linha {l_nr}: {line}\n"
  1483. #: camlib.py:4890
  1484. msgid ""
  1485. "Excellon.create_geometry() -> a drill location was skipped due of not having "
  1486. "a tool associated.\n"
  1487. "Check the resulting GCode."
  1488. msgstr ""
  1489. "Excellon.create_geometry () -> um furo foi ignorado por não ter "
  1490. "uma ferramenta associada.\n"
  1491. "Verifique o G-Code resultante."
  1492. #: camlib.py:5564
  1493. msgid "There is no such parameter"
  1494. msgstr "Não existe esse parâmetro"
  1495. #: camlib.py:5635
  1496. msgid ""
  1497. "The Cut Z parameter has positive value. It is the depth value to drill into "
  1498. "material.\n"
  1499. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1500. "therefore the app will convert the value to negative. Check the resulting "
  1501. "CNC code (Gcode etc)."
  1502. msgstr ""
  1503. "O parâmetro Profundidade de Corte está positivo. Este valor é a\n"
  1504. "profundidade para cortar o material, e deve ser negativo. Supondo que seja\n"
  1505. "um erro de digitação, o aplicativo converterá o valor para negativo.\n"
  1506. "Verifique o código CNC resultante (G-Code, etc.)."
  1507. #: camlib.py:5643 camlib.py:6316 camlib.py:6658
  1508. msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
  1509. msgstr "O parâmetro Profundidade de Corte é zero. Não haverá corte, "
  1510. "ignorando arquivo"
  1511. #: camlib.py:5695
  1512. msgid "Creating a list of points to drill..."
  1513. msgstr "Criando uma lista de pontos para furar..."
  1514. #: camlib.py:5778
  1515. msgid "Starting G-Code"
  1516. msgstr "Iniciando o G-Code"
  1517. #: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
  1518. msgid "Starting G-Code for tool with diameter"
  1519. msgstr "Iniciando o G-Code para ferramenta com diâmetro"
  1520. #: camlib.py:5931 camlib.py:6077 camlib.py:6184
  1521. msgid "G91 coordinates not implemented"
  1522. msgstr "coordenadas G91 não implementadas"
  1523. #: camlib.py:5937 camlib.py:6083 camlib.py:6190
  1524. msgid "The loaded Excellon file has no drills"
  1525. msgstr "O arquivo Excellon carregado não tem brocas"
  1526. #: camlib.py:6089
  1527. msgid "Wrong optimization type selected."
  1528. msgstr "Tipo de otimização incorreto selecionado."
  1529. #: camlib.py:6212
  1530. msgid "Finished G-Code generation..."
  1531. msgstr "Geração de G-Code concluída..."
  1532. #: camlib.py:6289
  1533. msgid ""
  1534. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1535. "y) \n"
  1536. "but now there is only one value, not two."
  1537. msgstr ""
  1538. #: camlib.py:6302 camlib.py:6644
  1539. msgid ""
  1540. "Cut_Z parameter is None or zero. Most likely a bad combinations of other "
  1541. "parameters."
  1542. msgstr ""
  1543. "Profundidade de Corte está vazio ou é zero. Provavelmente é uma "
  1544. "combinação ruim de outros parâmetros."
  1545. #: camlib.py:6308 camlib.py:6650
  1546. msgid ""
  1547. "The Cut Z parameter has positive value. It is the depth value to cut into "
  1548. "material.\n"
  1549. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1550. "therefore the app will convert the value to negative.Check the resulting CNC "
  1551. "code (Gcode etc)."
  1552. msgstr ""
  1553. "O parâmetro Profundidade de Corte está positivo. Este valor é a\n"
  1554. "profundidade para cortar o material, e deve ser negativo. Supondo que seja\n"
  1555. "um erro de digitação, o aplicativo converterá o valor para negativo.\n"
  1556. "Verifique o código CNC resultante (G-Code, etc.)."
  1557. #: camlib.py:6326 camlib.py:6664
  1558. msgid "Travel Z parameter is None or zero."
  1559. msgstr "O parâmetro Altura de Deslocamento Z é Nulo ou zero."
  1560. #: camlib.py:6331 camlib.py:6669
  1561. msgid ""
  1562. "The Travel Z parameter has negative value. It is the height value to travel "
  1563. "between cuts.\n"
  1564. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1565. "therefore the app will convert the value to positive.Check the resulting CNC "
  1566. "code (Gcode etc)."
  1567. msgstr ""
  1568. "O parâmetro Altura de Deslocamento tem valor negativo. Este valor\n"
  1569. "é a altura nos deslocamentos entre os cortes, e deve ser positivo. Supondo\n"
  1570. "que seja um erro de digitação, o aplicativo converterá o valor para positivo.\n"
  1571. "Verifique o código CNC resultante (G-Code, etc.)."
  1572. #: camlib.py:6339 camlib.py:6677
  1573. msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
  1574. msgstr "O parâmetro Altura de Deslocamento é zero. Isso é perigoso, "
  1575. "ignorando arquivo"
  1576. #: camlib.py:6354 camlib.py:6696
  1577. msgid "Indexing geometry before generating G-Code..."
  1578. msgstr "Indexando geometrias antes de gerar o G-Code..."
  1579. #: camlib.py:6408 camlib.py:6753
  1580. msgid "Starting G-Code..."
  1581. msgstr "Iniciando o G-Code..."
  1582. #: camlib.py:6495 camlib.py:6837
  1583. msgid "Finished G-Code generation"
  1584. msgstr "Geração de G-Code concluída..."
  1585. #: camlib.py:6497
  1586. msgid "paths traced"
  1587. msgstr "caminho traçado"
  1588. #: camlib.py:6532
  1589. msgid "Expected a Geometry, got"
  1590. msgstr "Esperando uma geometria, recebido"
  1591. #: camlib.py:6539
  1592. msgid ""
  1593. "Trying to generate a CNC Job from a Geometry object without solid_geometry."
  1594. msgstr ""
  1595. Tentando gerar um trabalho CNC a partir de um objeto Geometria "
  1596. "sem solid_geometry."
  1597. #: camlib.py:6578
  1598. #, python-format
  1599. msgid "[ERROR_NOTCL] %s"
  1600. msgstr "[ERROR_NOTCL] %s"
  1601. #: camlib.py:6839
  1602. msgid " paths traced."
  1603. msgstr " caminhos traçados."
  1604. #: camlib.py:6868
  1605. msgid "There is no tool data in the SolderPaste geometry."
  1606. msgstr "Não há dados de ferramenta na geometria de Pasta de Solda."
  1607. #: camlib.py:6955
  1608. msgid "Finished SolderPste G-Code generation"
  1609. msgstr "Geração de G-Code para Pasta de Solda concluída"
  1610. #: camlib.py:6957
  1611. msgid "paths traced."
  1612. msgstr "caminhos traçados."
  1613. #: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
  1614. msgid "G91 coordinates not implemented ..."
  1615. msgstr "Coordenadas G91 não implementadas..."
  1616. #: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
  1617. #: flatcamEditors/FlatCAMExcEditor.py:152
  1618. #: flatcamEditors/FlatCAMExcEditor.py:356
  1619. #: flatcamEditors/FlatCAMExcEditor.py:548
  1620. #: flatcamEditors/FlatCAMGrbEditor.py:238
  1621. #: flatcamEditors/FlatCAMGrbEditor.py:243
  1622. msgid "Click to place ..."
  1623. msgstr "Clique para colocar ..."
  1624. #: flatcamEditors/FlatCAMExcEditor.py:54
  1625. msgid "To add a drill first select a tool"
  1626. msgstr "Para adicionar uma broca, primeiro selecione uma ferramenta"
  1627. #: flatcamEditors/FlatCAMExcEditor.py:117
  1628. msgid "Done. Drill added."
  1629. msgstr "Feito. Broca adicionada."
  1630. #: flatcamEditors/FlatCAMExcEditor.py:160
  1631. msgid "To add an Drill Array first select a tool in Tool Table"
  1632. msgstr "Para adicionar um Matriz de Brocas, primeiro selecione uma "
  1633. "ferramenta na Tabela de Ferramentas"
  1634. #: flatcamEditors/FlatCAMExcEditor.py:176
  1635. #: flatcamEditors/FlatCAMExcEditor.py:386
  1636. #: flatcamEditors/FlatCAMExcEditor.py:596
  1637. #: flatcamEditors/FlatCAMExcEditor.py:1098
  1638. #: flatcamEditors/FlatCAMExcEditor.py:1123
  1639. #: flatcamEditors/FlatCAMGrbEditor.py:462
  1640. #: flatcamEditors/FlatCAMGrbEditor.py:1859
  1641. #: flatcamEditors/FlatCAMGrbEditor.py:1887
  1642. msgid "Click on target location ..."
  1643. msgstr "Clique no local de destino ..."
  1644. #: flatcamEditors/FlatCAMExcEditor.py:193
  1645. msgid "Click on the Drill Circular Array Start position"
  1646. msgstr "Clique na posição inicial da Matriz Circular de Brocas"
  1647. #: flatcamEditors/FlatCAMExcEditor.py:215
  1648. #: flatcamEditors/FlatCAMExcEditor.py:635
  1649. #: flatcamEditors/FlatCAMGrbEditor.py:505
  1650. msgid "The value is not Float. Check for comma instead of dot separator."
  1651. msgstr "O valor não é flutuante. Verifique se há uma vírgula em vez do ponto "
  1652. "no separador decimal."
  1653. #: flatcamEditors/FlatCAMExcEditor.py:219
  1654. msgid "The value is mistyped. Check the value"
  1655. msgstr "O valor foi digitado incorretamente. Verifique o valor"
  1656. #: flatcamEditors/FlatCAMExcEditor.py:318
  1657. msgid "Too many drills for the selected spacing angle."
  1658. msgstr "Muitas brocas para o ângulo de espaçamento selecionado."
  1659. #: flatcamEditors/FlatCAMExcEditor.py:336
  1660. msgid "Done. Drill Array added."
  1661. msgstr "Matriz de Brocas adicionada."
  1662. #: flatcamEditors/FlatCAMExcEditor.py:365
  1663. msgid "To add a slot first select a tool"
  1664. msgstr "Para adicionar um ranhura, primeiro selecione uma ferramenta"
  1665. #: flatcamEditors/FlatCAMExcEditor.py:423
  1666. #: flatcamEditors/FlatCAMExcEditor.py:430
  1667. #: flatcamEditors/FlatCAMExcEditor.py:701
  1668. #: flatcamEditors/FlatCAMExcEditor.py:708
  1669. msgid "Value is missing or wrong format. Add it and retry."
  1670. msgstr "Valor está faltando ou formato errado. Adicione e tente novamente."
  1671. #: flatcamEditors/FlatCAMExcEditor.py:529
  1672. msgid "Done. Adding Slot completed."
  1673. msgstr "Feito. Ranhura adicionada."
  1674. #: flatcamEditors/FlatCAMExcEditor.py:556
  1675. msgid "To add an Slot Array first select a tool in Tool Table"
  1676. msgstr "Para adicionar uma matriz de ranhuras, primeiro selecione "
  1677. "uma ferramenta na Tabela de Ferramentas"
  1678. #: flatcamEditors/FlatCAMExcEditor.py:613
  1679. msgid "Click on the Slot Circular Array Start position"
  1680. msgstr "Clique na posição inicial da matriz circular da ranhura"
  1681. #: flatcamEditors/FlatCAMExcEditor.py:639
  1682. #: flatcamEditors/FlatCAMGrbEditor.py:509
  1683. msgid "The value is mistyped. Check the value."
  1684. msgstr "O valor digitado está incorreto. Verifique o valor."
  1685. #: flatcamEditors/FlatCAMExcEditor.py:818
  1686. msgid "Too many Slots for the selected spacing angle."
  1687. msgstr "Muitas Ranhuras para o ângulo de espaçamento selecionado."
  1688. #: flatcamEditors/FlatCAMExcEditor.py:841
  1689. msgid "Done. Slot Array added."
  1690. msgstr "Feito. Matriz de Ranhuras adicionada."
  1691. #: flatcamEditors/FlatCAMExcEditor.py:858
  1692. msgid "Click on the Drill(s) to resize ..."
  1693. msgstr "Clique na(s) Broca(s) para redimensionar ..."
  1694. #: flatcamEditors/FlatCAMExcEditor.py:888
  1695. msgid "Resize drill(s) failed. Please enter a diameter for resize."
  1696. msgstr "Redimensionar broca(s) falhou. Por favor insira um diâmetro "
  1697. "para redimensionar."
  1698. #: flatcamEditors/FlatCAMExcEditor.py:978
  1699. #: flatcamEditors/FlatCAMExcEditor.py:1048
  1700. msgid "Cancelled."
  1701. msgstr "Cancelado."
  1702. #: flatcamEditors/FlatCAMExcEditor.py:1069
  1703. msgid "Drill/Slot Resize completed."
  1704. msgstr "Redimensionamento de broca/ranhura concluído."
  1705. #: flatcamEditors/FlatCAMExcEditor.py:1072
  1706. msgid "Cancelled. No drills/slots selected for resize ..."
  1707. msgstr "Cancelado. Nenhuma broca/ranhura selecionada para "
  1708. "redimensionar ..."
  1709. #: flatcamEditors/FlatCAMExcEditor.py:1100
  1710. #: flatcamEditors/FlatCAMGrbEditor.py:1861
  1711. msgid "Click on reference location ..."
  1712. msgstr "Clique no local de referência ..."
  1713. #: flatcamEditors/FlatCAMExcEditor.py:1156
  1714. msgid "Done. Drill(s) Move completed."
  1715. msgstr "Movimento da Broca realizado."
  1716. #: flatcamEditors/FlatCAMExcEditor.py:1254
  1717. msgid "Done. Drill(s) copied."
  1718. msgstr "Broca(s) copiada(s)."
  1719. #: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
  1720. msgid "Excellon Editor"
  1721. msgstr "Editor Excellon"
  1722. #: flatcamEditors/FlatCAMExcEditor.py:1480
  1723. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  1724. msgid "Name:"
  1725. msgstr "Nome:"
  1726. #: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
  1727. #: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
  1728. #: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
  1729. msgid "Tools Table"
  1730. msgstr "Tabela de Ferramentas"
  1731. #: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
  1732. msgid ""
  1733. "Tools in this Excellon object\n"
  1734. "when are used for drilling."
  1735. msgstr ""
  1736. "Ferramentas neste objeto Excellon \n"
  1737. "quando são usadas para perfuração."
  1738. #: flatcamEditors/FlatCAMExcEditor.py:1508
  1739. msgid "Add/Delete Tool"
  1740. msgstr "Adicionar/Excluir Ferramenta"
  1741. #: flatcamEditors/FlatCAMExcEditor.py:1510
  1742. msgid ""
  1743. "Add/Delete a tool to the tool list\n"
  1744. "for this Excellon object."
  1745. msgstr ""
  1746. "Adicionar/Excluir uma ferramenta para a lista de ferramentas\n"
  1747. "para este objeto Excellon."
  1748. #: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
  1749. #: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
  1750. msgid "Tool Dia"
  1751. msgstr "Diâmetro da Ferramenta:"
  1752. #: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
  1753. #: flatcamGUI/ObjectUI.py:1040
  1754. msgid "Diameter for the new tool"
  1755. msgstr "Diâmetro da nova ferramenta"
  1756. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1757. msgid "Add Tool"
  1758. msgstr "Adicionar Ferramenta"
  1759. #: flatcamEditors/FlatCAMExcEditor.py:1530
  1760. msgid ""
  1761. "Add a new tool to the tool list\n"
  1762. "with the diameter specified above."
  1763. msgstr ""
  1764. "Adiciona uma nova ferramenta à lista de ferramentas\n"
  1765. "com o diâmetro especificado acima."
  1766. #: flatcamEditors/FlatCAMExcEditor.py:1542
  1767. msgid "Delete Tool"
  1768. msgstr "Excluir Ferramenta"
  1769. #: flatcamEditors/FlatCAMExcEditor.py:1544
  1770. msgid ""
  1771. "Delete a tool in the tool list\n"
  1772. "by selecting a row in the tool table."
  1773. msgstr ""
  1774. "Exclui uma ferramenta da lista de ferramentas selecionando uma linha na "
  1775. "tabela de ferramentas."
  1776. #: flatcamEditors/FlatCAMExcEditor.py:1562
  1777. msgid "Resize Drill(s)"
  1778. msgstr "Redimensionar Broca(s)"
  1779. #: flatcamEditors/FlatCAMExcEditor.py:1564
  1780. msgid "Resize a drill or a selection of drills."
  1781. msgstr "Redimensiona uma broca ou uma seleção de brocas."
  1782. #: flatcamEditors/FlatCAMExcEditor.py:1571
  1783. msgid "Resize Dia"
  1784. msgstr "Novo Diâmetro:"
  1785. #: flatcamEditors/FlatCAMExcEditor.py:1573
  1786. msgid "Diameter to resize to."
  1787. msgstr "Novo diâmetro"
  1788. #: flatcamEditors/FlatCAMExcEditor.py:1581
  1789. msgid "Resize"
  1790. msgstr "Redimensionar"
  1791. #: flatcamEditors/FlatCAMExcEditor.py:1583
  1792. msgid "Resize drill(s)"
  1793. msgstr "Redimensionar broca(s)"
  1794. #: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
  1795. msgid "Add Drill Array"
  1796. msgstr "Adicionar Matriz de Brocas"
  1797. #: flatcamEditors/FlatCAMExcEditor.py:1610
  1798. msgid "Add an array of drills (linear or circular array)"
  1799. msgstr "Adiciona uma matriz de brocas (matriz linear ou circular)"
  1800. #: flatcamEditors/FlatCAMExcEditor.py:1616
  1801. msgid ""
  1802. "Select the type of drills array to create.\n"
  1803. "It can be Linear X(Y) or Circular"
  1804. msgstr ""
  1805. "Selecione o tipo de matriz de brocas para criar.\n"
  1806. "Pode ser Linear X(Y) ou Circular"
  1807. #: flatcamEditors/FlatCAMExcEditor.py:1619
  1808. #: flatcamEditors/FlatCAMExcEditor.py:1821
  1809. #: flatcamEditors/FlatCAMGrbEditor.py:2647
  1810. msgid "Linear"
  1811. msgstr "Linear"
  1812. #: flatcamEditors/FlatCAMExcEditor.py:1620
  1813. #: flatcamEditors/FlatCAMExcEditor.py:1822
  1814. #: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
  1815. #: flatcamTools/ToolNonCopperClear.py:203
  1816. msgid "Circular"
  1817. msgstr "Circular"
  1818. #: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
  1819. msgid "Nr of drills"
  1820. msgstr "Nº de brocas"
  1821. #: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
  1822. msgid "Specify how many drills to be in the array."
  1823. msgstr "Especifique quantas brocas devem estar na matriz."
  1824. #: flatcamEditors/FlatCAMExcEditor.py:1646
  1825. #: flatcamEditors/FlatCAMExcEditor.py:1693
  1826. #: flatcamEditors/FlatCAMExcEditor.py:1757
  1827. #: flatcamEditors/FlatCAMExcEditor.py:1848
  1828. #: flatcamEditors/FlatCAMExcEditor.py:1895
  1829. #: flatcamEditors/FlatCAMGrbEditor.py:2674
  1830. #: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
  1831. msgid "Direction"
  1832. msgstr "Direção"
  1833. #: flatcamEditors/FlatCAMExcEditor.py:1648
  1834. #: flatcamEditors/FlatCAMExcEditor.py:1850
  1835. #: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
  1836. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
  1837. msgid ""
  1838. "Direction on which the linear array is oriented:\n"
  1839. "- 'X' - horizontal axis \n"
  1840. "- 'Y' - vertical axis or \n"
  1841. "- 'Angle' - a custom angle for the array inclination"
  1842. msgstr ""
  1843. "Direção na qual a matriz linear é orientada: \n"
  1844. "- 'X' - eixo horizontal\n"
  1845. "- 'Y' - eixo vertical ou\n"
  1846. "- 'Ângulo' - um ângulo personalizado para a inclinação da matriz"
  1847. #: flatcamEditors/FlatCAMExcEditor.py:1655
  1848. #: flatcamEditors/FlatCAMExcEditor.py:1766
  1849. #: flatcamEditors/FlatCAMExcEditor.py:1857
  1850. #: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
  1851. #: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
  1852. #: flatcamGUI/FlatCAMGUI.py:5703
  1853. msgid "X"
  1854. msgstr "X"
  1855. #: flatcamEditors/FlatCAMExcEditor.py:1656
  1856. #: flatcamEditors/FlatCAMExcEditor.py:1767
  1857. #: flatcamEditors/FlatCAMExcEditor.py:1858
  1858. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
  1859. #: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
  1860. #: flatcamGUI/FlatCAMGUI.py:5704
  1861. msgid "Y"
  1862. msgstr "Y"
  1863. #: flatcamEditors/FlatCAMExcEditor.py:1657
  1864. #: flatcamEditors/FlatCAMExcEditor.py:1671
  1865. #: flatcamEditors/FlatCAMExcEditor.py:1705
  1866. #: flatcamEditors/FlatCAMExcEditor.py:1768
  1867. #: flatcamEditors/FlatCAMExcEditor.py:1772
  1868. #: flatcamEditors/FlatCAMExcEditor.py:1859
  1869. #: flatcamEditors/FlatCAMExcEditor.py:1873
  1870. #: flatcamEditors/FlatCAMExcEditor.py:1907
  1871. #: flatcamEditors/FlatCAMGrbEditor.py:2685
  1872. #: flatcamEditors/FlatCAMGrbEditor.py:2698
  1873. #: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
  1874. #: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
  1875. #: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
  1876. #: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
  1877. #: flatcamGUI/FlatCAMGUI.py:5722 flatcamTools/ToolTransform.py:68
  1878. msgid "Angle"
  1879. msgstr "Ângulo"
  1880. #: flatcamEditors/FlatCAMExcEditor.py:1661
  1881. #: flatcamEditors/FlatCAMExcEditor.py:1863
  1882. #: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
  1883. #: flatcamGUI/FlatCAMGUI.py:5711
  1884. msgid "Pitch"
  1885. msgstr "Passo"
  1886. #: flatcamEditors/FlatCAMExcEditor.py:1663
  1887. #: flatcamEditors/FlatCAMExcEditor.py:1865
  1888. #: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
  1889. #: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
  1890. msgid "Pitch = Distance between elements of the array."
  1891. msgstr "Passo = Distância entre os elementos da matriz."
  1892. #: flatcamEditors/FlatCAMExcEditor.py:1673
  1893. #: flatcamEditors/FlatCAMExcEditor.py:1875
  1894. #: flatcamEditors/FlatCAMGrbEditor.py:2700
  1895. msgid ""
  1896. "Angle at which the linear array is placed.\n"
  1897. "The precision is of max 2 decimals.\n"
  1898. "Min value is: -359.99 degrees.\n"
  1899. "Max value is: 360.00 degrees."
  1900. msgstr ""
  1901. "Ângulo no qual a matriz linear é colocada.\n"
  1902. "A precisão é de no máximo 2 decimais.\n"
  1903. "Valor mínimo: -359.99 graus.\n"
  1904. "Valor máximo: 360.00 graus."
  1905. #: flatcamEditors/FlatCAMExcEditor.py:1694
  1906. #: flatcamEditors/FlatCAMExcEditor.py:1896
  1907. #: flatcamEditors/FlatCAMGrbEditor.py:2721
  1908. msgid ""
  1909. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1910. "clockwise."
  1911. msgstr ""
  1912. "Sentido da matriz circular. Pode ser CW = horário ou CCW = "
  1913. "anti-horário."
  1914. #: flatcamEditors/FlatCAMExcEditor.py:1701
  1915. #: flatcamEditors/FlatCAMExcEditor.py:1903
  1916. #: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
  1917. #: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
  1918. #: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
  1919. msgid "CW"
  1920. msgstr "CW"
  1921. #: flatcamEditors/FlatCAMExcEditor.py:1702
  1922. #: flatcamEditors/FlatCAMExcEditor.py:1904
  1923. #: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
  1924. #: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
  1925. #: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
  1926. msgid "CCW"
  1927. msgstr "CCW"
  1928. #: flatcamEditors/FlatCAMExcEditor.py:1706
  1929. #: flatcamEditors/FlatCAMExcEditor.py:1908
  1930. #: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
  1931. #: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
  1932. #: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
  1933. #: flatcamGUI/FlatCAMGUI.py:5750
  1934. msgid "Angle at which each element in circular array is placed."
  1935. msgstr "Ângulo no qual cada elemento na matriz circular é colocado."
  1936. #: flatcamEditors/FlatCAMExcEditor.py:1736
  1937. msgid "Slot Parameters"
  1938. msgstr "Parâmetros de Ranhura"
  1939. #: flatcamEditors/FlatCAMExcEditor.py:1738
  1940. msgid ""
  1941. "Parameters for adding a slot (hole with oval shape)\n"
  1942. "either single or as an part of an array."
  1943. msgstr ""
  1944. "Parâmetros para adicionar uma ranhura (furo com forma oval),\n"
  1945. "tanto única quanto parte de uma matriz."
  1946. #: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
  1947. #: flatcamTools/ToolProperties.py:350
  1948. msgid "Length"
  1949. msgstr "Comprimento"
  1950. #: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
  1951. msgid "Length = The length of the slot."
  1952. msgstr "Comprimento = o comprimento da ranhura."
  1953. #: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
  1954. msgid ""
  1955. "Direction on which the slot is oriented:\n"
  1956. "- 'X' - horizontal axis \n"
  1957. "- 'Y' - vertical axis or \n"
  1958. "- 'Angle' - a custom angle for the slot inclination"
  1959. msgstr ""
  1960. "Direção na qual a ranhura é orientada:\n"
  1961. "- 'X' - eixo horizontal\n"
  1962. "- 'Y' - eixo vertical ou\n"
  1963. "- 'Angle' - um ângulo personalizado para a inclinação da ranhura"
  1964. #: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
  1965. msgid ""
  1966. "Angle at which the slot is placed.\n"
  1967. "The precision is of max 2 decimals.\n"
  1968. "Min value is: -359.99 degrees.\n"
  1969. "Max value is: 360.00 degrees."
  1970. msgstr ""
  1971. "Ângulo no qual a ranhura é colocada.\n"
  1972. "A precisão é de no máximo 2 decimais.\n"
  1973. "Valor mínimo: -359.99 graus.\n"
  1974. "Valor máximo: 360.00 graus."
  1975. #: flatcamEditors/FlatCAMExcEditor.py:1807
  1976. msgid "Slot Array Parameters"
  1977. msgstr "Parâm. da matriz de ranhuras"
  1978. #: flatcamEditors/FlatCAMExcEditor.py:1809
  1979. msgid "Parameters for the array of slots (linear or circular array)"
  1980. msgstr "Parâmetros da matriz de ranhuras (matriz linear ou circular)"
  1981. #: flatcamEditors/FlatCAMExcEditor.py:1818
  1982. msgid ""
  1983. "Select the type of slot array to create.\n"
  1984. "It can be Linear X(Y) or Circular"
  1985. msgstr ""
  1986. "Selecione o tipo de matriz de ranhuras para criar.\n"
  1987. "Pode ser Linear X(Y) ou Circular"
  1988. #: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
  1989. msgid "Nr of slots"
  1990. msgstr "Nº de ranhuras"
  1991. #: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
  1992. msgid "Specify how many slots to be in the array."
  1993. msgstr "Especifique o número de ranhuras da matriz."
  1994. #: flatcamEditors/FlatCAMExcEditor.py:2428
  1995. msgid ""
  1996. "Tool already in the original or actual tool list.\n"
  1997. "Save and reedit Excellon if you need to add this tool. "
  1998. msgstr ""
  1999. "Ferramenta já na lista de ferramentas original ou atual.\n"
  2000. "Salve e reedite Excellon se precisar adicionar essa ferramenta.
  2001. #: flatcamEditors/FlatCAMExcEditor.py:2437
  2002. msgid "Added new tool with dia"
  2003. msgstr "Adicionada nova ferramenta com diâmetro"
  2004. #: flatcamEditors/FlatCAMExcEditor.py:2469
  2005. msgid "Select a tool in Tool Table"
  2006. msgstr "Selecione uma ferramenta na Tabela de Ferramentas"
  2007. #: flatcamEditors/FlatCAMExcEditor.py:2502
  2008. msgid "Deleted tool with diameter"
  2009. msgstr "Ferramenta excluída com diâmetro"
  2010. #: flatcamEditors/FlatCAMExcEditor.py:2652
  2011. msgid "Done. Tool edit completed."
  2012. msgstr "Edição de ferramenta concluída."
  2013. #: flatcamEditors/FlatCAMExcEditor.py:3187
  2014. msgid "There are no Tools definitions in the file. Aborting Excellon creation."
  2015. msgstr "Não há definições de ferramentas no arquivo. Abortando a criação do Excellon."
  2016. #: flatcamEditors/FlatCAMExcEditor.py:3191
  2017. msgid "An internal error has ocurred. See Shell.\n"
  2018. msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
  2019. #: flatcamEditors/FlatCAMExcEditor.py:3197
  2020. msgid "Creating Excellon."
  2021. msgstr "Criando Excellon."
  2022. #: flatcamEditors/FlatCAMExcEditor.py:3207
  2023. msgid "Excellon editing finished."
  2024. msgstr "Edição de Excellon concluída."
  2025. #: flatcamEditors/FlatCAMExcEditor.py:3225
  2026. msgid "Cancelled. There is no Tool/Drill selected"
  2027. msgstr "Cancelado. Não há ferramenta/broca selecionada"
  2028. #: flatcamEditors/FlatCAMExcEditor.py:3810
  2029. msgid "Done. Drill(s) deleted."
  2030. msgstr "Brocas(s) excluída(s)."
  2031. #: flatcamEditors/FlatCAMExcEditor.py:3882
  2032. #: flatcamEditors/FlatCAMExcEditor.py:3892
  2033. #: flatcamEditors/FlatCAMGrbEditor.py:4576
  2034. msgid "Click on the circular array Center position"
  2035. msgstr "Clique na posição central da matriz circular"
  2036. #: flatcamEditors/FlatCAMGeoEditor.py:82
  2037. msgid "Buffer distance:"
  2038. msgstr "Distância do buffer:"
  2039. #: flatcamEditors/FlatCAMGeoEditor.py:83
  2040. msgid "Buffer corner:"
  2041. msgstr "Canto do buffer:"
  2042. #: flatcamEditors/FlatCAMGeoEditor.py:85
  2043. msgid ""
  2044. "There are 3 types of corners:\n"
  2045. " - 'Round': the corner is rounded for exterior buffer.\n"
  2046. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  2047. " - 'Beveled:' the corner is a line that directly connects the features "
  2048. "meeting in the corner"
  2049. msgstr ""
  2050. "Existem 3 tipos de cantos:\n"
  2051. " - 'Redondo': o canto é arredondado para buffer externo.\n"
  2052. " - 'Quadrado:' o canto é em um ângulo agudo para buffer externo.\n"
  2053. " - 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
  2054. "encontrados no canto"
  2055. #: flatcamEditors/FlatCAMGeoEditor.py:91
  2056. #: flatcamEditors/FlatCAMGrbEditor.py:2522
  2057. msgid "Round"
  2058. msgstr "Redondo"
  2059. #: flatcamEditors/FlatCAMGeoEditor.py:92
  2060. #: flatcamEditors/FlatCAMGrbEditor.py:2523
  2061. msgid "Square"
  2062. msgstr "Quadrado"
  2063. #: flatcamEditors/FlatCAMGeoEditor.py:93
  2064. #: flatcamEditors/FlatCAMGrbEditor.py:2524
  2065. msgid "Beveled"
  2066. msgstr "Chanfrado"
  2067. #: flatcamEditors/FlatCAMGeoEditor.py:100
  2068. msgid "Buffer Interior"
  2069. msgstr "Buffer Interior"
  2070. #: flatcamEditors/FlatCAMGeoEditor.py:102
  2071. msgid "Buffer Exterior"
  2072. msgstr "Buffer Exterior"
  2073. #: flatcamEditors/FlatCAMGeoEditor.py:108
  2074. msgid "Full Buffer"
  2075. msgstr "Buffer Completo"
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:129
  2077. #: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
  2078. msgid "Buffer Tool"
  2079. msgstr "Ferramenta Buffer"
  2080. #: flatcamEditors/FlatCAMGeoEditor.py:141
  2081. #: flatcamEditors/FlatCAMGeoEditor.py:158
  2082. #: flatcamEditors/FlatCAMGeoEditor.py:175
  2083. #: flatcamEditors/FlatCAMGeoEditor.py:2740
  2084. #: flatcamEditors/FlatCAMGeoEditor.py:2770
  2085. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2086. #: flatcamEditors/FlatCAMGrbEditor.py:4629
  2087. msgid "Buffer distance value is missing or wrong format. Add it and retry."
  2088. msgstr "O valor da distância do buffer está ausente ou em formato "
  2089. "incorreto. Altere e tente novamente."
  2090. #: flatcamEditors/FlatCAMGeoEditor.py:345
  2091. msgid "Text Tool"
  2092. msgstr "Ferramenta de Texto"
  2093. #: flatcamEditors/FlatCAMGeoEditor.py:403 flatcamGUI/FlatCAMGUI.py:826
  2094. msgid "Tool"
  2095. msgstr "Ferramenta"
  2096. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:4356
  2097. #: flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:6699
  2098. #: flatcamGUI/FlatCAMGUI.py:6859 flatcamGUI/ObjectUI.py:264
  2099. #: flatcamTools/ToolCutOut.py:91
  2100. msgid "Tool dia"
  2101. msgstr "Diâmetro da Ferramenta"
  2102. #: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6861
  2103. msgid ""
  2104. "Diameter of the tool to\n"
  2105. "be used in the operation."
  2106. msgstr ""
  2107. "Diâmetro da ferramenta para \n"
  2108. "ser usada na operação."
  2109. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamGUI/FlatCAMGUI.py:6545
  2110. #: flatcamGUI/FlatCAMGUI.py:6890 flatcamTools/ToolNonCopperClear.py:283
  2111. #: flatcamTools/ToolPaint.py:205
  2112. msgid "Overlap Rate"
  2113. msgstr "Taxa de Sobreposição"
  2114. #: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6892
  2115. #: flatcamTools/ToolPaint.py:207
  2116. #, python-format
  2117. msgid ""
  2118. "How much (fraction) of the tool width to overlap each tool pass.\n"
  2119. "Example:\n"
  2120. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  2121. "\n"
  2122. "Adjust the value starting with lower values\n"
  2123. "and increasing it if areas that should be painted are still \n"
  2124. "not painted.\n"
  2125. "Lower values = faster processing, faster execution on PCB.\n"
  2126. "Higher values = slow processing and slow execution on CNC\n"
  2127. "due of too many paths."
  2128. msgstr ""
  2129. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  2130. "ferramenta.\n"
  2131. "Exemplo:\n"
  2132. "Um valor de 0.25 significa uma sobreposição de 25% do diâmetro da "
  2133. "ferramenta.\n"
  2134. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  2135. "deveria ser pintada não foi pintada.\n"
  2136. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  2137. "Valores maiores = processamento lento e execução lenta no CNC \n"
  2138. " devido ao número de caminhos."
  2139. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6562
  2140. #: flatcamGUI/FlatCAMGUI.py:6723 flatcamGUI/FlatCAMGUI.py:6907
  2141. #: flatcamTools/ToolNonCopperClear.py:299 flatcamTools/ToolPaint.py:222
  2142. msgid "Margin"
  2143. msgstr "Margem"
  2144. #: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6909
  2145. #: flatcamTools/ToolPaint.py:224
  2146. msgid ""
  2147. "Distance by which to avoid\n"
  2148. "the edges of the polygon to\n"
  2149. "be painted."
  2150. msgstr ""
  2151. "Distância pela qual evitar \n"
  2152. "as bordas do polígono para \n"
  2153. "ser pintado."
  2154. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6571
  2155. #: flatcamGUI/FlatCAMGUI.py:6918 flatcamTools/ToolNonCopperClear.py:308
  2156. #: flatcamTools/ToolPaint.py:233
  2157. msgid "Method"
  2158. msgstr "Método"
  2159. #: flatcamEditors/FlatCAMGeoEditor.py:476
  2160. msgid ""
  2161. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  2162. "<BR><B>Seed-based</B>: Outwards from seed."
  2163. msgstr ""
  2164. "Algoritmo para pintar o polígono: <BR><B>Padrão</B>: Passo fixo para dentro."
  2165. "<BR><B>Baseado em semente</B>: para fora da semente."
  2166. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6580
  2167. #: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolNonCopperClear.py:317
  2168. #: flatcamTools/ToolPaint.py:242
  2169. msgid "Standard"
  2170. msgstr "Padrão"
  2171. #: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6581
  2172. #: flatcamGUI/FlatCAMGUI.py:6928 flatcamTools/ToolNonCopperClear.py:318
  2173. #: flatcamTools/ToolPaint.py:243
  2174. msgid "Seed-based"
  2175. msgstr "Baseado em semente"
  2176. #: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6582
  2177. #: flatcamGUI/FlatCAMGUI.py:6929 flatcamTools/ToolNonCopperClear.py:319
  2178. #: flatcamTools/ToolPaint.py:244
  2179. msgid "Straight lines"
  2180. msgstr "Linhas retas"
  2181. #: flatcamEditors/FlatCAMGeoEditor.py:489
  2182. msgid "Connect:"
  2183. msgstr "Conectar:"
  2184. #: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6589
  2185. #: flatcamGUI/FlatCAMGUI.py:6936 flatcamTools/ToolNonCopperClear.py:326
  2186. #: flatcamTools/ToolPaint.py:251
  2187. msgid ""
  2188. "Draw lines between resulting\n"
  2189. "segments to minimize tool lifts."
  2190. msgstr ""
  2191. "Desenha linhas entre os segmentos resultantes\n"
  2192. "para minimizar as elevações de ferramentas."
  2193. #: flatcamEditors/FlatCAMGeoEditor.py:498
  2194. msgid "Contour:"
  2195. msgstr "Contorno:"
  2196. #: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6599
  2197. #: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolNonCopperClear.py:335
  2198. #: flatcamTools/ToolPaint.py:260
  2199. msgid ""
  2200. "Cut around the perimeter of the polygon\n"
  2201. "to trim rough edges."
  2202. msgstr "Corta no perímetro do polígono para cortar as arestas."
  2203. #: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1673
  2204. msgid "Paint"
  2205. msgstr "Pintura"
  2206. #: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
  2207. #: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
  2208. #: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
  2209. msgid "Paint Tool"
  2210. msgstr "Ferramenta de Pintura"
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:566
  2212. msgid "Paint cancelled. No shape selected."
  2213. msgstr "Pintura cancelada. Nenhuma forma selecionada."
  2214. #: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
  2215. #: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
  2216. #: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
  2217. msgid "Tool diameter value is missing or wrong format. Add it and retry."
  2218. msgstr "O valor do diâmetro da ferramenta está ausente ou em formato "
  2219. "incorreto. Altere e tente novamente."
  2220. #: flatcamEditors/FlatCAMGeoEditor.py:589
  2221. msgid "Overlap value is missing or wrong format. Add it and retry."
  2222. msgstr "O valor de sobreposição está ausente ou em formato "
  2223. "incorreto. Altere e tente novamente."
  2224. #: flatcamEditors/FlatCAMGeoEditor.py:601
  2225. msgid "Margin distance value is missing or wrong format. Add it and retry."
  2226. msgstr "O valor da distância da margem está ausente ou em formato "
  2227. "incorreto. Altere e tente novamente."
  2228. #: flatcamEditors/FlatCAMGeoEditor.py:609
  2229. #: flatcamEditors/FlatCAMGeoEditor.py:2746
  2230. #: flatcamEditors/FlatCAMGeoEditor.py:2776
  2231. #: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
  2232. #: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
  2233. msgid "Tools"
  2234. msgstr "Ferramentas"
  2235. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2236. #: flatcamEditors/FlatCAMGeoEditor.py:993
  2237. #: flatcamEditors/FlatCAMGrbEditor.py:4812
  2238. #: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
  2239. #: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
  2240. msgid "Transform Tool"
  2241. msgstr "Ferramenta Transformar"
  2242. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2243. #: flatcamEditors/FlatCAMGeoEditor.py:682
  2244. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2245. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
  2246. #: flatcamTools/ToolTransform.py:82
  2247. msgid "Rotate"
  2248. msgstr "Girar"
  2249. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2250. #: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
  2251. msgid "Skew/Shear"
  2252. msgstr "Inclinar"
  2253. #: flatcamEditors/FlatCAMGeoEditor.py:623
  2254. #: flatcamEditors/FlatCAMGrbEditor.py:2569
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
  2256. #: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
  2257. #: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
  2258. #: flatcamTools/ToolTransform.py:26
  2259. msgid "Scale"
  2260. msgstr "Redimensionar"
  2261. #: flatcamEditors/FlatCAMGeoEditor.py:624
  2262. #: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
  2263. msgid "Mirror (Flip)"
  2264. msgstr "Espelhar (Flip)"
  2265. #: flatcamEditors/FlatCAMGeoEditor.py:625
  2266. #: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
  2267. #: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
  2268. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  2269. #: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
  2270. msgid "Offset"
  2271. msgstr "Deslocamento"
  2272. #: flatcamEditors/FlatCAMGeoEditor.py:636
  2273. #: flatcamEditors/FlatCAMGrbEditor.py:4829
  2274. #, python-format
  2275. msgid "Editor %s"
  2276. msgstr "Editor %s"
  2277. #: flatcamEditors/FlatCAMGeoEditor.py:668
  2278. #: flatcamEditors/FlatCAMGrbEditor.py:4861
  2279. msgid "Angle:"
  2280. msgstr "Ângulo:"
  2281. #: flatcamEditors/FlatCAMGeoEditor.py:670
  2282. #: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
  2283. #: flatcamTools/ToolTransform.py:70
  2284. msgid ""
  2285. "Angle for Rotation action, in degrees.\n"
  2286. "Float number between -360 and 359.\n"
  2287. "Positive numbers for CW motion.\n"
  2288. "Negative numbers for CCW motion."
  2289. msgstr ""
  2290. "Ângulo para a ação Rotação, em graus. \n"
  2291. "Número flutuante entre -360 e 359. \n"
  2292. "Números positivos para movimento horário. \n"
  2293. "Números negativos para movimento anti-horário."
  2294. #: flatcamEditors/FlatCAMGeoEditor.py:684
  2295. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2296. msgid ""
  2297. "Rotate the selected shape(s).\n"
  2298. "The point of reference is the middle of\n"
  2299. "the bounding box for all selected shapes."
  2300. msgstr ""
  2301. "Gira a(s) forma(s) selecionada(s). \n"
  2302. "O ponto de referência é o meio da caixa\n"
  2303. "delimitadora para todas as formas selecionadas."
  2304. #: flatcamEditors/FlatCAMGeoEditor.py:707
  2305. #: flatcamEditors/FlatCAMGrbEditor.py:4900
  2306. msgid "Angle X:"
  2307. msgstr "Ângulo X:"
  2308. #: flatcamEditors/FlatCAMGeoEditor.py:709
  2309. #: flatcamEditors/FlatCAMGeoEditor.py:727
  2310. #: flatcamEditors/FlatCAMGrbEditor.py:4902
  2311. #: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
  2312. #: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
  2313. #: flatcamTools/ToolTransform.py:127
  2314. msgid ""
  2315. "Angle for Skew action, in degrees.\n"
  2316. "Float number between -360 and 359."
  2317. msgstr ""
  2318. "Ângulo de inclinação, em graus.\n"
  2319. "Número flutuante entre -360 e 359."
  2320. #: flatcamEditors/FlatCAMGeoEditor.py:718
  2321. #: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
  2322. msgid "Skew X"
  2323. msgstr "Inclinar X"
  2324. #: flatcamEditors/FlatCAMGeoEditor.py:720
  2325. #: flatcamEditors/FlatCAMGeoEditor.py:738
  2326. #: flatcamEditors/FlatCAMGrbEditor.py:4913
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:4931
  2328. msgid ""
  2329. "Skew/shear the selected shape(s).\n"
  2330. "The point of reference is the middle of\n"
  2331. "the bounding box for all selected shapes."
  2332. msgstr ""
  2333. "Inclinar/distorcer a(s) forma(s) selecionada(s).\n"
  2334. "O ponto de referência é o meio da caixa\n"
  2335. "delimitadora para todas as formas selecionadas."
  2336. #: flatcamEditors/FlatCAMGeoEditor.py:725
  2337. #: flatcamEditors/FlatCAMGrbEditor.py:4918
  2338. msgid "Angle Y:"
  2339. msgstr "Ângulo Y:"
  2340. #: flatcamEditors/FlatCAMGeoEditor.py:736
  2341. #: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
  2342. msgid "Skew Y"
  2343. msgstr "Inclinar Y"
  2344. #: flatcamEditors/FlatCAMGeoEditor.py:764
  2345. #: flatcamEditors/FlatCAMGrbEditor.py:4957
  2346. msgid "Factor X:"
  2347. msgstr "Fator X:"
  2348. #: flatcamEditors/FlatCAMGeoEditor.py:766
  2349. #: flatcamEditors/FlatCAMGrbEditor.py:4959
  2350. msgid "Factor for Scale action over X axis."
  2351. msgstr "Fator de escala sobre o eixo X."
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:774
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
  2354. msgid "Scale X"
  2355. msgstr "Redimensionar X"
  2356. #: flatcamEditors/FlatCAMGeoEditor.py:776
  2357. #: flatcamEditors/FlatCAMGeoEditor.py:793
  2358. #: flatcamEditors/FlatCAMGrbEditor.py:4969
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:4986
  2360. msgid ""
  2361. "Scale the selected shape(s).\n"
  2362. "The point of reference depends on \n"
  2363. "the Scale reference checkbox state."
  2364. msgstr ""
  2365. "Redimensiona a(s) forma(s) selecionada(s).\n"
  2366. "O ponto de referência depende\n"
  2367. "do estado da caixa de seleção."
  2368. #: flatcamEditors/FlatCAMGeoEditor.py:781
  2369. #: flatcamEditors/FlatCAMGrbEditor.py:4974
  2370. msgid "Factor Y:"
  2371. msgstr "Fator Y:"
  2372. #: flatcamEditors/FlatCAMGeoEditor.py:783
  2373. #: flatcamEditors/FlatCAMGrbEditor.py:4976
  2374. msgid "Factor for Scale action over Y axis."
  2375. msgstr "Fator para ação de escala no eixo Y."
  2376. #: flatcamEditors/FlatCAMGeoEditor.py:791
  2377. #: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
  2378. msgid "Scale Y"
  2379. msgstr "Redimensionar Y"
  2380. #: flatcamEditors/FlatCAMGeoEditor.py:800
  2381. #: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
  2382. #: flatcamTools/ToolTransform.py:200
  2383. msgid "Link"
  2384. msgstr "Fixar Taxa"
  2385. #: flatcamEditors/FlatCAMGeoEditor.py:802
  2386. #: flatcamEditors/FlatCAMGrbEditor.py:4995
  2387. msgid ""
  2388. "Scale the selected shape(s)\n"
  2389. "using the Scale Factor X for both axis."
  2390. msgstr ""
  2391. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2392. "usando o Fator de Escala X para ambos os eixos."
  2393. #: flatcamEditors/FlatCAMGeoEditor.py:808
  2394. #: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
  2395. #: flatcamTools/ToolTransform.py:209
  2396. msgid "Scale Reference"
  2397. msgstr "Referência de escala"
  2398. #: flatcamEditors/FlatCAMGeoEditor.py:810
  2399. #: flatcamEditors/FlatCAMGrbEditor.py:5003
  2400. msgid ""
  2401. "Scale the selected shape(s)\n"
  2402. "using the origin reference when checked,\n"
  2403. "and the center of the biggest bounding box\n"
  2404. "of the selected shapes when unchecked."
  2405. msgstr ""
  2406. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2407. "usando a referência de origem quando marcada,\n"
  2408. "e o centro da maior caixa delimitadora\n"
  2409. "de formas selecionadas quando desmarcado."
  2410. #: flatcamEditors/FlatCAMGeoEditor.py:838
  2411. #: flatcamEditors/FlatCAMGrbEditor.py:5032
  2412. msgid "Value X:"
  2413. msgstr "Valor X:"
  2414. #: flatcamEditors/FlatCAMGeoEditor.py:840
  2415. #: flatcamEditors/FlatCAMGrbEditor.py:5034
  2416. msgid "Value for Offset action on X axis."
  2417. msgstr "Valor para o deslocamento no eixo X."
  2418. #: flatcamEditors/FlatCAMGeoEditor.py:848
  2419. #: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
  2420. msgid "Offset X"
  2421. msgstr "Deslocar X"
  2422. #: flatcamEditors/FlatCAMGeoEditor.py:850
  2423. #: flatcamEditors/FlatCAMGeoEditor.py:868
  2424. #: flatcamEditors/FlatCAMGrbEditor.py:5044
  2425. #: flatcamEditors/FlatCAMGrbEditor.py:5062
  2426. msgid ""
  2427. "Offset the selected shape(s).\n"
  2428. "The point of reference is the middle of\n"
  2429. "the bounding box for all selected shapes.\n"
  2430. msgstr ""
  2431. "Desloca a(s) forma(s) selecionada(s).\n"
  2432. "O ponto de referência é o meio da\n"
  2433. "caixa delimitadora para todas as formas selecionadas.\n"
  2434. #: flatcamEditors/FlatCAMGeoEditor.py:856
  2435. #: flatcamEditors/FlatCAMGrbEditor.py:5050
  2436. msgid "Value Y:"
  2437. msgstr "Valor Y:"
  2438. #: flatcamEditors/FlatCAMGeoEditor.py:858
  2439. #: flatcamEditors/FlatCAMGrbEditor.py:5052
  2440. msgid "Value for Offset action on Y axis."
  2441. msgstr "Valor para a ação de deslocamento no eixo Y."
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:866
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
  2444. msgid "Offset Y"
  2445. msgstr "Deslocar Y"
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:897
  2447. #: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
  2448. msgid "Flip on X"
  2449. msgstr "Espelhar no X"
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:899
  2451. #: flatcamEditors/FlatCAMGeoEditor.py:907
  2452. #: flatcamEditors/FlatCAMGrbEditor.py:5093
  2453. #: flatcamEditors/FlatCAMGrbEditor.py:5101
  2454. msgid ""
  2455. "Flip the selected shape(s) over the X axis.\n"
  2456. "Does not create a new shape."
  2457. msgstr ""
  2458. "Espelha as formas selecionadas sobre o eixo X.\n"
  2459. "Não cria uma nova forma."
  2460. #: flatcamEditors/FlatCAMGeoEditor.py:905
  2461. #: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
  2462. msgid "Flip on Y"
  2463. msgstr "Espelhar no Y"
  2464. #: flatcamEditors/FlatCAMGeoEditor.py:914
  2465. #: flatcamEditors/FlatCAMGrbEditor.py:5108
  2466. msgid "Ref Pt"
  2467. msgstr "Ponto de Referência"
  2468. #: flatcamEditors/FlatCAMGeoEditor.py:916
  2469. #: flatcamEditors/FlatCAMGrbEditor.py:5110
  2470. msgid ""
  2471. "Flip the selected shape(s)\n"
  2472. "around the point in Point Entry Field.\n"
  2473. "\n"
  2474. "The point coordinates can be captured by\n"
  2475. "left click on canvas together with pressing\n"
  2476. "SHIFT key. \n"
  2477. "Then click Add button to insert coordinates.\n"
  2478. "Or enter the coords in format (x, y) in the\n"
  2479. "Point Entry field and click Flip on X(Y)"
  2480. msgstr ""
  2481. "Espelha a(s) forma(s) selecionada(s)\n"
  2482. "em relação às coordenadas abaixo.\n"
  2483. "\n"
  2484. "As coordenadas do ponto podem ser inseridas:\n"
  2485. "- com clique no botão esquerdo junto com a tecla\n"
  2486. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  2487. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  2488. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  2489. #: flatcamEditors/FlatCAMGeoEditor.py:928
  2490. #: flatcamEditors/FlatCAMGrbEditor.py:5122
  2491. msgid "Point:"
  2492. msgstr "Ponto:"
  2493. #: flatcamEditors/FlatCAMGeoEditor.py:930
  2494. #: flatcamEditors/FlatCAMGrbEditor.py:5124
  2495. msgid ""
  2496. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2497. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2498. "the 'y' in (x, y) will be used when using Flip on Y."
  2499. msgstr ""
  2500. "Coordenadas no formato (x, y) usadas como referência para espelhamento. \n"
  2501. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  2502. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:942
  2504. #: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
  2505. msgid ""
  2506. "The point coordinates can be captured by\n"
  2507. "left click on canvas together with pressing\n"
  2508. "SHIFT key. Then click Add button to insert."
  2509. msgstr ""
  2510. "As coordenadas do ponto podem ser capturadas por\n"
  2511. "botão esquerdo na tela junto com a tecla\n"
  2512. "SHIFT pressionada. Em seguida, clique no botão Adicionar para inserir."
  2513. #: flatcamEditors/FlatCAMGeoEditor.py:1058
  2514. #: flatcamEditors/FlatCAMGrbEditor.py:5262
  2515. msgid "Transformation cancelled. No shape selected."
  2516. msgstr "Transformação cancelada. Nenhuma forma selecionada."
  2517. #: flatcamEditors/FlatCAMGeoEditor.py:1267
  2518. #: flatcamEditors/FlatCAMGrbEditor.py:5508
  2519. msgid "No shape selected. Please Select a shape to rotate!"
  2520. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2521. "para girar!""
  2522. #: flatcamEditors/FlatCAMGeoEditor.py:1270
  2523. #: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
  2524. msgid "Appying Rotate"
  2525. msgstr "Aplicando Girar"
  2526. #: flatcamEditors/FlatCAMGeoEditor.py:1299
  2527. #: flatcamEditors/FlatCAMGrbEditor.py:5545
  2528. msgid "Done. Rotate completed."
  2529. msgstr "Girar concluído."
  2530. #: flatcamEditors/FlatCAMGeoEditor.py:1305
  2531. msgid "Rotation action was not executed"
  2532. msgstr "O giro não foi executado"
  2533. #: flatcamEditors/FlatCAMGeoEditor.py:1317
  2534. #: flatcamEditors/FlatCAMGrbEditor.py:5566
  2535. msgid "No shape selected. Please Select a shape to flip!"
  2536. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2537. "para espelhar!"
  2538. #: flatcamEditors/FlatCAMGeoEditor.py:1320
  2539. #: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
  2540. msgid "Applying Flip"
  2541. msgstr "Aplicando Espelhamento"
  2542. #: flatcamEditors/FlatCAMGeoEditor.py:1351
  2543. #: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
  2544. msgid "Flip on the Y axis done"
  2545. msgstr "Concluído o espelhamento no eixo Y"
  2546. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  2547. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
  2548. msgid "Flip on the X axis done"
  2549. msgstr "Concluído o espelhamento no eixo Y"
  2550. #: flatcamEditors/FlatCAMGeoEditor.py:1366
  2551. msgid "Flip action was not executed"
  2552. msgstr "O espelhamento não foi executado"
  2553. #: flatcamEditors/FlatCAMGeoEditor.py:1376
  2554. #: flatcamEditors/FlatCAMGrbEditor.py:5640
  2555. msgid "No shape selected. Please Select a shape to shear/skew!"
  2556. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2557. "para inclinar!"
  2558. #: flatcamEditors/FlatCAMGeoEditor.py:1379
  2559. #: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
  2560. msgid "Applying Skew"
  2561. msgstr "Inclinando"
  2562. #: flatcamEditors/FlatCAMGeoEditor.py:1405
  2563. #: flatcamEditors/FlatCAMGrbEditor.py:5680
  2564. msgid "Skew on the X axis done"
  2565. msgstr "Inclinação no eixo X concluída"
  2566. #: flatcamEditors/FlatCAMGeoEditor.py:1408
  2567. #: flatcamEditors/FlatCAMGrbEditor.py:5683
  2568. msgid "Skew on the Y axis done"
  2569. msgstr "Inclinação no eixo Y concluída"
  2570. #: flatcamEditors/FlatCAMGeoEditor.py:1413
  2571. msgid "Skew action was not executed"
  2572. msgstr "A inclinação não foi executada"
  2573. #: flatcamEditors/FlatCAMGeoEditor.py:1425
  2574. #: flatcamEditors/FlatCAMGrbEditor.py:5708
  2575. msgid "No shape selected. Please Select a shape to scale!"
  2576. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2577. "para redimensionar!"
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:1428
  2579. #: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
  2580. msgid "Applying Scale"
  2581. msgstr "Redimensionando"
  2582. #: flatcamEditors/FlatCAMGeoEditor.py:1463
  2583. #: flatcamEditors/FlatCAMGrbEditor.py:5751
  2584. msgid "Scale on the X axis done"
  2585. msgstr "Redimensionamento no eixo X concluído"
  2586. #: flatcamEditors/FlatCAMGeoEditor.py:1466
  2587. #: flatcamEditors/FlatCAMGrbEditor.py:5754
  2588. msgid "Scale on the Y axis done"
  2589. msgstr "Redimensionamento no eixo Y concluído"
  2590. #: flatcamEditors/FlatCAMGeoEditor.py:1470
  2591. msgid "Scale action was not executed"
  2592. msgstr "O redimensionamento não foi executado"
  2593. #: flatcamEditors/FlatCAMGeoEditor.py:1480
  2594. #: flatcamEditors/FlatCAMGrbEditor.py:5772
  2595. msgid "No shape selected. Please Select a shape to offset!"
  2596. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2597. "para deslocar!"
  2598. #: flatcamEditors/FlatCAMGeoEditor.py:1483
  2599. #: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
  2600. msgid "Applying Offset"
  2601. msgstr "Deslocando"
  2602. #: flatcamEditors/FlatCAMGeoEditor.py:1496
  2603. #: flatcamEditors/FlatCAMGrbEditor.py:5799
  2604. msgid "Offset on the X axis done"
  2605. msgstr "Deslocamento no eixo X concluído"
  2606. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2607. #: flatcamEditors/FlatCAMGrbEditor.py:5802
  2608. msgid "Offset on the Y axis done"
  2609. msgstr "Deslocamento no eixo Y concluído"
  2610. #: flatcamEditors/FlatCAMGeoEditor.py:1504
  2611. msgid "Offset action was not executed"
  2612. msgstr "O deslocamento não foi executado"
  2613. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2614. #: flatcamEditors/FlatCAMGrbEditor.py:5811
  2615. msgid "Rotate ..."
  2616. msgstr "Girar ..."
  2617. #: flatcamEditors/FlatCAMGeoEditor.py:1509
  2618. #: flatcamEditors/FlatCAMGeoEditor.py:1564
  2619. #: flatcamEditors/FlatCAMGeoEditor.py:1581
  2620. #: flatcamEditors/FlatCAMGrbEditor.py:5812
  2621. #: flatcamEditors/FlatCAMGrbEditor.py:5867
  2622. #: flatcamEditors/FlatCAMGrbEditor.py:5884
  2623. msgid "Enter an Angle Value (degrees)"
  2624. msgstr "Digite um valor para o ângulo (graus)"
  2625. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2626. #: flatcamEditors/FlatCAMGrbEditor.py:5821
  2627. msgid "Geometry shape rotate done"
  2628. msgstr "Rotação da geometria concluída"
  2629. #: flatcamEditors/FlatCAMGeoEditor.py:1522
  2630. #: flatcamEditors/FlatCAMGrbEditor.py:5825
  2631. msgid "Geometry shape rotate cancelled"
  2632. msgstr "Rotação da geometria cancelada"
  2633. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2634. #: flatcamEditors/FlatCAMGrbEditor.py:5830
  2635. msgid "Offset on X axis ..."
  2636. msgstr "Deslocamento no eixo X ..."
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:1528
  2638. #: flatcamEditors/FlatCAMGeoEditor.py:1547
  2639. #: flatcamEditors/FlatCAMGrbEditor.py:5831
  2640. #: flatcamEditors/FlatCAMGrbEditor.py:5850
  2641. msgid "Enter a distance Value"
  2642. msgstr "Digite um valor para a distância"
  2643. #: flatcamEditors/FlatCAMGeoEditor.py:1537
  2644. #: flatcamEditors/FlatCAMGrbEditor.py:5840
  2645. msgid "Geometry shape offset on X axis done"
  2646. msgstr "Deslocamento da forma no eixo X concluído"
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:1541
  2648. #: flatcamEditors/FlatCAMGrbEditor.py:5844
  2649. msgid "Geometry shape offset X cancelled"
  2650. msgstr "Deslocamento da forma no eixo X cancelado"
  2651. #: flatcamEditors/FlatCAMGeoEditor.py:1546
  2652. #: flatcamEditors/FlatCAMGrbEditor.py:5849
  2653. msgid "Offset on Y axis ..."
  2654. msgstr "Deslocamento no eixo Y ..."
  2655. #: flatcamEditors/FlatCAMGeoEditor.py:1556
  2656. #: flatcamEditors/FlatCAMGrbEditor.py:5859
  2657. msgid "Geometry shape offset on Y axis done"
  2658. msgstr "Deslocamento da forma no eixo Y concluído"
  2659. #: flatcamEditors/FlatCAMGeoEditor.py:1560
  2660. msgid "Geometry shape offset on Y axis canceled"
  2661. msgstr "Deslocamento da forma no eixo Y cancelado"
  2662. #: flatcamEditors/FlatCAMGeoEditor.py:1563
  2663. #: flatcamEditors/FlatCAMGrbEditor.py:5866
  2664. msgid "Skew on X axis ..."
  2665. msgstr "Inclinação no eixo X ..."
  2666. #: flatcamEditors/FlatCAMGeoEditor.py:1573
  2667. #: flatcamEditors/FlatCAMGrbEditor.py:5876
  2668. msgid "Geometry shape skew on X axis done"
  2669. msgstr "Inclinação no eixo X concluída"
  2670. #: flatcamEditors/FlatCAMGeoEditor.py:1577
  2671. msgid "Geometry shape skew on X axis canceled"
  2672. msgstr "Inclinação no eixo X cancelada"
  2673. #: flatcamEditors/FlatCAMGeoEditor.py:1580
  2674. #: flatcamEditors/FlatCAMGrbEditor.py:5883
  2675. msgid "Skew on Y axis ..."
  2676. msgstr "Inclinação no eixo Y ..."
  2677. #: flatcamEditors/FlatCAMGeoEditor.py:1590
  2678. #: flatcamEditors/FlatCAMGrbEditor.py:5893
  2679. msgid "Geometry shape skew on Y axis done"
  2680. msgstr "Inclinação no eixo Y concluída"
  2681. #: flatcamEditors/FlatCAMGeoEditor.py:1594
  2682. msgid "Geometry shape skew on Y axis canceled"
  2683. msgstr "Inclinação no eixo Y cancelada"
  2684. #: flatcamEditors/FlatCAMGeoEditor.py:1958
  2685. #: flatcamEditors/FlatCAMGeoEditor.py:2010
  2686. #: flatcamEditors/FlatCAMGrbEditor.py:1396
  2687. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2688. msgid "Click on Center point ..."
  2689. msgstr "Clique no ponto central ..."
  2690. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2691. #: flatcamEditors/FlatCAMGrbEditor.py:1404
  2692. msgid "Click on Perimeter point to complete ..."
  2693. msgstr "Clique no ponto Perímetro para completar ..."
  2694. #: flatcamEditors/FlatCAMGeoEditor.py:1995
  2695. msgid "Done. Adding Circle completed."
  2696. msgstr "Círculo adicionado."
  2697. #: flatcamEditors/FlatCAMGeoEditor.py:2030
  2698. #: flatcamEditors/FlatCAMGrbEditor.py:1498
  2699. msgid "Click on Start point ..."
  2700. msgstr "Clique no ponto inicial ..."
  2701. #: flatcamEditors/FlatCAMGeoEditor.py:2032
  2702. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2703. msgid "Click on Point3 ..."
  2704. msgstr "Clique no ponto 3 ..."
  2705. #: flatcamEditors/FlatCAMGeoEditor.py:2034
  2706. #: flatcamEditors/FlatCAMGrbEditor.py:1502
  2707. msgid "Click on Stop point ..."
  2708. msgstr "Clique no ponto de parada ..."
  2709. #: flatcamEditors/FlatCAMGeoEditor.py:2039
  2710. #: flatcamEditors/FlatCAMGrbEditor.py:1507
  2711. msgid "Click on Stop point to complete ..."
  2712. msgstr "Clique no ponto de parada para completar ..."
  2713. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2714. #: flatcamEditors/FlatCAMGrbEditor.py:1509
  2715. msgid "Click on Point2 to complete ..."
  2716. msgstr "Clique no ponto 2 para completar ..."
  2717. #: flatcamEditors/FlatCAMGeoEditor.py:2043
  2718. #: flatcamEditors/FlatCAMGrbEditor.py:1511
  2719. msgid "Click on Center point to complete ..."
  2720. msgstr "Clique no ponto central para completar ..."
  2721. #: flatcamEditors/FlatCAMGeoEditor.py:2055
  2722. #: flatcamEditors/FlatCAMGrbEditor.py:1523
  2723. #, python-format
  2724. msgid "Direction: %s"
  2725. msgstr "Direção: %s"
  2726. #: flatcamEditors/FlatCAMGeoEditor.py:2065
  2727. #: flatcamEditors/FlatCAMGrbEditor.py:1533
  2728. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2729. msgstr "Modo: Iniciar -> Parar -> Centro. Clique no ponto inicial ..."
  2730. #: flatcamEditors/FlatCAMGeoEditor.py:2068
  2731. #: flatcamEditors/FlatCAMGrbEditor.py:1536
  2732. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2733. msgstr "Modo: Ponto 1 -> Ponto 3 -> Ponto 2. Clique no Ponto 1 ..."
  2734. #: flatcamEditors/FlatCAMGeoEditor.py:2071
  2735. #: flatcamEditors/FlatCAMGrbEditor.py:1539
  2736. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2737. msgstr "Modo: Centro -> Iniciar -> Parar. Clique no ponto central ..."
  2738. #: flatcamEditors/FlatCAMGeoEditor.py:2210
  2739. msgid "Done. Arc completed."
  2740. msgstr "Arco adicionado."
  2741. #: flatcamEditors/FlatCAMGeoEditor.py:2229
  2742. #: flatcamEditors/FlatCAMGeoEditor.py:2283
  2743. #: flatcamEditors/FlatCAMGeoEditor.py:2656
  2744. msgid "Click on 1st corner ..."
  2745. msgstr "Clique no primeiro canto ..."
  2746. #: flatcamEditors/FlatCAMGeoEditor.py:2235
  2747. msgid "Click on opposite corner to complete ..."
  2748. msgstr "Clique no canto oposto para completar ..."
  2749. #: flatcamEditors/FlatCAMGeoEditor.py:2264
  2750. msgid "Done. Rectangle completed."
  2751. msgstr "Retângulo adicionado."
  2752. #: flatcamEditors/FlatCAMGeoEditor.py:2290
  2753. msgid "Click on next Point or click right mouse button to complete ..."
  2754. msgstr "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2755. "completar ..."
  2756. #: flatcamEditors/FlatCAMGeoEditor.py:2319
  2757. msgid "Done. Polygon completed."
  2758. msgstr "Polígono adicionado."
  2759. #: flatcamEditors/FlatCAMGeoEditor.py:2329
  2760. #: flatcamEditors/FlatCAMGeoEditor.py:2375
  2761. #: flatcamEditors/FlatCAMGrbEditor.py:1085
  2762. #: flatcamEditors/FlatCAMGrbEditor.py:1287
  2763. msgid "Backtracked one point ..."
  2764. msgstr "Retrocedeu um ponto ..."
  2765. #: flatcamEditors/FlatCAMGeoEditor.py:2357
  2766. msgid "[success] Done. Path completed."
  2767. msgstr "Caminho concluído."
  2768. #: flatcamEditors/FlatCAMGeoEditor.py:2475
  2769. msgid "MOVE: No shape selected. Select a shape to move"
  2770. msgstr "MOVER: Nenhuma forma selecionada. Selecione uma forma para mover"
  2771. #: flatcamEditors/FlatCAMGeoEditor.py:2477
  2772. #: flatcamEditors/FlatCAMGeoEditor.py:2489
  2773. msgid " MOVE: Click on reference point ..."
  2774. msgstr "MOVER: Clique no ponto de referência ..."
  2775. #: flatcamEditors/FlatCAMGeoEditor.py:2480
  2776. msgid " Click on destination point ..."
  2777. msgstr "Clique no ponto de destino ..."
  2778. #: flatcamEditors/FlatCAMGeoEditor.py:2515
  2779. msgid "Done. Geometry(s) Move completed."
  2780. msgstr "Movimento de Geometria(s) concluído."
  2781. #: flatcamEditors/FlatCAMGeoEditor.py:2636
  2782. msgid "Done. Geometry(s) Copy completed."
  2783. msgstr "Geometria(s) copiada(s)."
  2784. #: flatcamEditors/FlatCAMGeoEditor.py:2673
  2785. msgid ""
  2786. "Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
  2787. "Error"
  2788. msgstr ""
  2789. "Fonte não suportada. Apenas Regular, Bold, Italic e BoldItalic são "
  2790. "suportados. Erro"
  2791. #: flatcamEditors/FlatCAMGeoEditor.py:2681
  2792. msgid "No text to add."
  2793. msgstr "Nenhum texto para adicionar."
  2794. #: flatcamEditors/FlatCAMGeoEditor.py:2688
  2795. msgid " Done. Adding Text completed."
  2796. msgstr "Texto adicionado."
  2797. #: flatcamEditors/FlatCAMGeoEditor.py:2716
  2798. msgid "Create buffer geometry ..."
  2799. msgstr "Criar buffer de geometria ..."
  2800. #: flatcamEditors/FlatCAMGeoEditor.py:2728
  2801. #: flatcamEditors/FlatCAMGeoEditor.py:2758
  2802. #: flatcamEditors/FlatCAMGeoEditor.py:2788
  2803. msgid "Buffer cancelled. No shape selected."
  2804. msgstr "Buffer cancelado. Nenhuma forma selecionada."
  2805. #: flatcamEditors/FlatCAMGeoEditor.py:2753
  2806. #: flatcamEditors/FlatCAMGrbEditor.py:4674
  2807. msgid "Done. Buffer Tool completed."
  2808. msgstr "Buffer concluído."
  2809. #: flatcamEditors/FlatCAMGeoEditor.py:2783
  2810. msgid "Done. Buffer Int Tool completed."
  2811. msgstr "Buffer Interno concluído."
  2812. #: flatcamEditors/FlatCAMGeoEditor.py:2813
  2813. msgid "Done. Buffer Ext Tool completed."
  2814. msgstr "Buffer Externo concluído."
  2815. #: flatcamEditors/FlatCAMGeoEditor.py:2848
  2816. #: flatcamEditors/FlatCAMGrbEditor.py:2068
  2817. msgid "Select a shape to act as deletion area ..."
  2818. msgstr "Selecione uma forma para atuar como área de exclusão ..."
  2819. #: flatcamEditors/FlatCAMGeoEditor.py:2850
  2820. #: flatcamEditors/FlatCAMGeoEditor.py:2869
  2821. #: flatcamEditors/FlatCAMGeoEditor.py:2875
  2822. #: flatcamEditors/FlatCAMGrbEditor.py:2070
  2823. msgid "Click to pick-up the erase shape..."
  2824. msgstr "Clique para pegar a forma a apagar ..."
  2825. #: flatcamEditors/FlatCAMGeoEditor.py:2879
  2826. #: flatcamEditors/FlatCAMGrbEditor.py:2127
  2827. msgid "Click to erase ..."
  2828. msgstr "Clique para apagar ..."
  2829. #: flatcamEditors/FlatCAMGeoEditor.py:2909
  2830. #: flatcamEditors/FlatCAMGrbEditor.py:2161
  2831. msgid "Done. Eraser tool action completed."
  2832. msgstr "Apagado."
  2833. #: flatcamEditors/FlatCAMGeoEditor.py:2952
  2834. msgid "Create Paint geometry ..."
  2835. msgstr "Criar geometria de pintura ..."
  2836. #: flatcamEditors/FlatCAMGeoEditor.py:2966
  2837. #: flatcamEditors/FlatCAMGrbEditor.py:2312
  2838. msgid "Shape transformations ..."
  2839. msgstr "Transformações de forma ..."
  2840. #: flatcamEditors/FlatCAMGeoEditor.py:3545
  2841. msgid "Editing MultiGeo Geometry, tool"
  2842. msgstr "Editando Geometria MultiGeo, ferramenta"
  2843. #: flatcamEditors/FlatCAMGeoEditor.py:3547
  2844. msgid "with diameter"
  2845. msgstr "com diâmetro"
  2846. #: flatcamEditors/FlatCAMGeoEditor.py:3924
  2847. msgid "Copy cancelled. No shape selected."
  2848. msgstr "Cópia cancelada. Nenhuma forma selecionada."
  2849. #: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
  2850. #: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
  2851. #: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
  2852. #: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
  2853. msgid "Click on target point."
  2854. msgstr "Clique no ponto alvo."
  2855. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2856. #: flatcamEditors/FlatCAMGeoEditor.py:4210
  2857. msgid "A selection of at least 2 geo items is required to do Intersection."
  2858. msgstr "É necessária uma seleção de pelo menos 2 itens geométricos "
  2859. "para fazer a interseção."
  2860. #: flatcamEditors/FlatCAMGeoEditor.py:4296
  2861. #: flatcamEditors/FlatCAMGeoEditor.py:4405
  2862. msgid ""
  2863. "Negative buffer value is not accepted. Use Buffer interior to generate an "
  2864. "'inside' shape"
  2865. msgstr "Valor de buffer negativo não é aceito. Use o Buffer interior "
  2866. "para gerar uma forma 'interna'"
  2867. #: flatcamEditors/FlatCAMGeoEditor.py:4306
  2868. #: flatcamEditors/FlatCAMGeoEditor.py:4362
  2869. #: flatcamEditors/FlatCAMGeoEditor.py:4414
  2870. msgid "Nothing selected for buffering."
  2871. msgstr "Nada selecionado para armazenamento em buffer."
  2872. #: flatcamEditors/FlatCAMGeoEditor.py:4311
  2873. #: flatcamEditors/FlatCAMGeoEditor.py:4367
  2874. #: flatcamEditors/FlatCAMGeoEditor.py:4419
  2875. msgid "Invalid distance for buffering."
  2876. msgstr "Distância inválida para armazenamento em buffer."
  2877. #: flatcamEditors/FlatCAMGeoEditor.py:4335
  2878. #: flatcamEditors/FlatCAMGeoEditor.py:4439
  2879. msgid "Failed, the result is empty. Choose a different buffer value."
  2880. msgstr "Falhou, o resultado está vazio. Escolha um valor diferente para o buffer."
  2881. #: flatcamEditors/FlatCAMGeoEditor.py:4346
  2882. msgid "Full buffer geometry created."
  2883. msgstr "Buffer de geometria completa criado."
  2884. #: flatcamEditors/FlatCAMGeoEditor.py:4353
  2885. msgid "Negative buffer value is not accepted."
  2886. msgstr "Valor de buffer negativo não é aceito."
  2887. #: flatcamEditors/FlatCAMGeoEditor.py:4387
  2888. msgid "Failed, the result is empty. Choose a smaller buffer value."
  2889. msgstr "alhou, o resultado está vazio. Escolha um valor menor para o buffer."
  2890. #: flatcamEditors/FlatCAMGeoEditor.py:4398
  2891. msgid "Interior buffer geometry created."
  2892. msgstr "Buffer de Geometria interna criado."
  2893. #: flatcamEditors/FlatCAMGeoEditor.py:4450
  2894. msgid "Exterior buffer geometry created."
  2895. msgstr "Buffer de Geometria externa criado."
  2896. #: flatcamEditors/FlatCAMGeoEditor.py:4515
  2897. msgid "Nothing selected for painting."
  2898. msgstr "Nada selecionado para pintura."
  2899. #: flatcamEditors/FlatCAMGeoEditor.py:4522
  2900. msgid "Invalid value for"
  2901. msgstr "Valor inválido para"
  2902. #: flatcamEditors/FlatCAMGeoEditor.py:4528
  2903. #, python-format
  2904. msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
  2905. msgstr "Não foi possível fazer a Pintura. O valor de sobreposição deve "
  2906. "ser menor do que 1.00 (100%)."
  2907. #: flatcamEditors/FlatCAMGeoEditor.py:4587
  2908. #, python-format
  2909. msgid ""
  2910. "Could not do Paint. Try a different combination of parameters. Or a "
  2911. "different method of Paint\n"
  2912. "%s"
  2913. msgstr ""
  2914. "Não foi possível pintar. Tente uma combinação diferente de "
  2915. "parâmetros, ou um método diferente de Pintura\n"
  2916. "%s"
  2917. #: flatcamEditors/FlatCAMGeoEditor.py:4598
  2918. msgid "[success] Paint done."
  2919. msgstr "Pintura concluída."
  2920. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2921. msgid "To add an Pad first select a aperture in Aperture Table"
  2922. msgstr "Para adicionar um Pad, primeiro selecione uma abertura na "
  2923. "Tabela de Aberturas"
  2924. #: flatcamEditors/FlatCAMGrbEditor.py:215
  2925. #: flatcamEditors/FlatCAMGrbEditor.py:409
  2926. msgid "Aperture size is zero. It needs to be greater than zero."
  2927. msgstr "O tamanho da abertura é zero. Precisa ser maior que zero."
  2928. #: flatcamEditors/FlatCAMGrbEditor.py:366
  2929. #: flatcamEditors/FlatCAMGrbEditor.py:674
  2930. msgid ""
  2931. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2932. msgstr ""
  2933. "Tipo de abertura incompatível. Selecione uma abertura do tipo 'C', 'R' ou 'O'."
  2934. #: flatcamEditors/FlatCAMGrbEditor.py:379
  2935. msgid "Done. Adding Pad completed."
  2936. msgstr "Pad adicionado."
  2937. #: flatcamEditors/FlatCAMGrbEditor.py:401
  2938. msgid "To add an Pad Array first select a aperture in Aperture Table"
  2939. msgstr "Para adicionar uma Matriz de Pads, primeiro selecione uma "
  2940. "abertura na Tabela de Aberturas"
  2941. #: flatcamEditors/FlatCAMGrbEditor.py:479
  2942. msgid "Click on the Pad Circular Array Start position"
  2943. msgstr "Clique na posição inicial da Matriz Circular de Pads"
  2944. #: flatcamEditors/FlatCAMGrbEditor.py:700
  2945. msgid "Too many Pads for the selected spacing angle."
  2946. msgstr "Muitos Pads para o ângulo de espaçamento selecionado."
  2947. #: flatcamEditors/FlatCAMGrbEditor.py:723
  2948. msgid "Done. Pad Array added."
  2949. msgstr "Matriz de pads adicionada."
  2950. #: flatcamEditors/FlatCAMGrbEditor.py:744
  2951. msgid "Select shape(s) and then click ..."
  2952. msgstr "Selecione a(s) forma(s) e então clique ..."
  2953. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2954. msgid "Failed. Nothing selected."
  2955. msgstr "Falhou. Nada selecionado."
  2956. #: flatcamEditors/FlatCAMGrbEditor.py:772
  2957. msgid ""
  2958. "Failed. Poligonize works only on geometries belonging to the same aperture."
  2959. msgstr ""
  2960. "Falhou. Poligonize funciona apenas em geometrias pertencentes à mesma abertura."
  2961. #: flatcamEditors/FlatCAMGrbEditor.py:826
  2962. msgid "Done. Poligonize completed."
  2963. msgstr "Poligonizar concluído."
  2964. #: flatcamEditors/FlatCAMGrbEditor.py:879
  2965. #: flatcamEditors/FlatCAMGrbEditor.py:1102
  2966. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2967. msgid "Corner Mode 1: 45 degrees ..."
  2968. msgstr "Canto Modo 1: 45 graus ..."
  2969. #: flatcamEditors/FlatCAMGrbEditor.py:881
  2970. msgid "Click on 1st point ..."
  2971. msgstr "Clique no primeiro ponto ..."
  2972. #: flatcamEditors/FlatCAMGrbEditor.py:891
  2973. #: flatcamEditors/FlatCAMGrbEditor.py:1202
  2974. msgid "Click on next Point or click Right mouse button to complete ..."
  2975. msgstr ""
  2976. "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2977. "completar ..."
  2978. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2979. #: flatcamEditors/FlatCAMGrbEditor.py:1123
  2980. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2981. msgstr "Canto Modo 2: 45 graus invertido ..."
  2982. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2983. #: flatcamEditors/FlatCAMGrbEditor.py:1120
  2984. msgid "Corner Mode 3: 90 degrees ..."
  2985. msgstr "Canto Modo 3: 90 graus ..."
  2986. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2987. #: flatcamEditors/FlatCAMGrbEditor.py:1117
  2988. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2989. msgstr "Canto Modo 4: 90 graus invertido ..."
  2990. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2991. #: flatcamEditors/FlatCAMGrbEditor.py:1114
  2992. msgid "Corner Mode 5: Free angle ..."
  2993. msgstr "Canto Modo 5: Ângulo livre ..."
  2994. #: flatcamEditors/FlatCAMGrbEditor.py:1153
  2995. #: flatcamEditors/FlatCAMGrbEditor.py:1319
  2996. #: flatcamEditors/FlatCAMGrbEditor.py:1358
  2997. msgid "Track Mode 1: 45 degrees ..."
  2998. msgstr "Trilha Modo 1: 45 graus ..."
  2999. #: flatcamEditors/FlatCAMGrbEditor.py:1299
  3000. #: flatcamEditors/FlatCAMGrbEditor.py:1353
  3001. msgid "Track Mode 2: Reverse 45 degrees ..."
  3002. msgstr "Trilha Modo 2: 45 graus invertido ..."
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:1304
  3004. #: flatcamEditors/FlatCAMGrbEditor.py:1348
  3005. msgid "Track Mode 3: 90 degrees ..."
  3006. msgstr "Trilha Modo 3: 90 graus ..."
  3007. #: flatcamEditors/FlatCAMGrbEditor.py:1309
  3008. #: flatcamEditors/FlatCAMGrbEditor.py:1343
  3009. msgid "Track Mode 4: Reverse 90 degrees ..."
  3010. msgstr "Trilha Modo 4: 90 graus invertido ..."
  3011. #: flatcamEditors/FlatCAMGrbEditor.py:1314
  3012. #: flatcamEditors/FlatCAMGrbEditor.py:1338
  3013. msgid "Track Mode 5: Free angle ..."
  3014. msgstr "Trilha Modo 5: Ângulo livre ..."
  3015. #: flatcamEditors/FlatCAMGrbEditor.py:1720
  3016. msgid "Scale the selected Gerber apertures ..."
  3017. msgstr "Redimensiona as aberturas de Gerber selecionadas ..."
  3018. #: flatcamEditors/FlatCAMGrbEditor.py:1762
  3019. msgid "Buffer the selected apertures ..."
  3020. msgstr "Buffer das aberturas selecionadas ..."
  3021. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  3022. msgid "Mark polygon areas in the edited Gerber ..."
  3023. msgstr "Marca áreas de polígonos no Gerber editado..."
  3024. #: flatcamEditors/FlatCAMGrbEditor.py:1852
  3025. msgid "Nothing selected to move"
  3026. msgstr "Nada selecionado para mover"
  3027. #: flatcamEditors/FlatCAMGrbEditor.py:1976
  3028. msgid "Done. Apertures Move completed."
  3029. msgstr "Aberturas movidas."
  3030. #: flatcamEditors/FlatCAMGrbEditor.py:2053
  3031. msgid "Done. Apertures copied."
  3032. msgstr "Aberturas copiadas."
  3033. #: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
  3034. #: flatcamGUI/FlatCAMGUI.py:4629
  3035. msgid "Gerber Editor"
  3036. msgstr "Editor Gerber"
  3037. #: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
  3038. #: flatcamTools/ToolProperties.py:137
  3039. msgid "Apertures"
  3040. msgstr "Aberturas"
  3041. #: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
  3042. msgid "Apertures Table for the Gerber Object."
  3043. msgstr "Tabela de Aberturas para o Objeto Gerber."
  3044. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3045. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3046. msgid "Code"
  3047. msgstr "Código"
  3048. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3050. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  3051. msgid "Type"
  3052. msgstr "Tipo"
  3053. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3054. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3055. msgid "Size"
  3056. msgstr "Tamanho"
  3057. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3058. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3059. msgid "Dim"
  3060. msgstr "Dim"
  3061. #: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
  3062. msgid "Index"
  3063. msgstr "Índice"
  3064. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  3065. #: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
  3066. msgid "Aperture Code"
  3067. msgstr "Código de Abertura"
  3068. #: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
  3069. msgid "Type of aperture: circular, rectangle, macros etc"
  3070. msgstr "Tipo de abertura: circular, retângulo, macros etc"
  3071. #: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
  3072. msgid "Aperture Size:"
  3073. msgstr "Tamanho da abertura:"
  3074. #: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
  3075. msgid ""
  3076. "Aperture Dimensions:\n"
  3077. " - (width, height) for R, O type.\n"
  3078. " - (dia, nVertices) for P type"
  3079. msgstr ""
  3080. "Dimensões da abertura: \n"
  3081. " - (largura, altura) para o tipo R, O. \n"
  3082. " - (dia, nVertices) para o tipo P"
  3083. #: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
  3084. msgid "Code for the new aperture"
  3085. msgstr "Código para a nova abertura"
  3086. #: flatcamEditors/FlatCAMGrbEditor.py:2430
  3087. msgid "Aperture Size"
  3088. msgstr "Tamanho da abertura"
  3089. #: flatcamEditors/FlatCAMGrbEditor.py:2432
  3090. msgid ""
  3091. "Size for the new aperture.\n"
  3092. "If aperture type is 'R' or 'O' then\n"
  3093. "this value is automatically\n"
  3094. "calculated as:\n"
  3095. "sqrt(width**2 + height**2)"
  3096. msgstr ""
  3097. "Tamanho para a nova abertura.\n"
  3098. "Se o tipo de abertura for 'R' ou 'O' então\n"
  3099. "este valor será automaticamente\n"
  3100. "calculado como:\n"
  3101. "sqrt(largura^2 + altura^2)"
  3102. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  3103. msgid "Aperture Type"
  3104. msgstr "Tipo de Abertura"
  3105. #: flatcamEditors/FlatCAMGrbEditor.py:2446
  3106. msgid ""
  3107. "Select the type of new aperture. Can be:\n"
  3108. "C = circular\n"
  3109. "R = rectangular\n"
  3110. "O = oblong"
  3111. msgstr ""
  3112. "Selecione o tipo da nova abertura. Pode ser:\n"
  3113. "C = circular \n"
  3114. "R = retangular \n"
  3115. "O = oblongo"
  3116. #: flatcamEditors/FlatCAMGrbEditor.py:2457
  3117. msgid "Aperture Dim"
  3118. msgstr "Dim Abertura"
  3119. #: flatcamEditors/FlatCAMGrbEditor.py:2459
  3120. msgid ""
  3121. "Dimensions for the new aperture.\n"
  3122. "Active only for rectangular apertures (type R).\n"
  3123. "The format is (width, height)"
  3124. msgstr ""
  3125. "Dimensões da nova abertura.\n"
  3126. "Ativa apenas para aberturas retangulares (tipo R).\n"
  3127. "O formato é (largura, altura)"
  3128. #: flatcamEditors/FlatCAMGrbEditor.py:2468
  3129. msgid "Add/Delete Aperture"
  3130. msgstr "Adicionar/Excluir Abertura:"
  3131. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  3132. msgid "Add/Delete an aperture in the aperture table"
  3133. msgstr "Adicionar/Excluir uma abertura na tabela de aberturas"
  3134. #: flatcamEditors/FlatCAMGrbEditor.py:2479
  3135. msgid "Add a new aperture to the aperture list."
  3136. msgstr "Adiciona uma nova abertura à lista de aberturas."
  3137. #: flatcamEditors/FlatCAMGrbEditor.py:2484
  3138. msgid "Delete a aperture in the aperture list"
  3139. msgstr "Exclui uma abertura da lista de aberturas"
  3140. #: flatcamEditors/FlatCAMGrbEditor.py:2501
  3141. msgid "Buffer Aperture"
  3142. msgstr "Buffer Abertura"
  3143. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  3144. msgid "Buffer a aperture in the aperture list"
  3145. msgstr "Buffer de uma abertura na lista de aberturas"
  3146. #: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
  3147. msgid "Buffer distance"
  3148. msgstr "Distância do buffer"
  3149. #: flatcamEditors/FlatCAMGrbEditor.py:2514
  3150. msgid "Buffer corner"
  3151. msgstr "Canto do buffer"
  3152. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  3153. msgid ""
  3154. "There are 3 types of corners:\n"
  3155. " - 'Round': the corner is rounded.\n"
  3156. " - 'Square:' the corner is met in a sharp angle.\n"
  3157. " - 'Beveled:' the corner is a line that directly connects the features "
  3158. "meeting in the corner"
  3159. msgstr ""
  3160. "Existem 3 tipos de cantos:\n"
  3161. " - 'Redondo': o canto é arredondado.\n"
  3162. " - 'Quadrado:' o canto é em um ângulo agudo.\n"
  3163. " - 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
  3164. "reunidos no canto"
  3165. #: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
  3166. #: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
  3167. #: flatcamGUI/FlatCAMGUI.py:2085
  3168. msgid "Buffer"
  3169. msgstr "Buffer"
  3170. #: flatcamEditors/FlatCAMGrbEditor.py:2546
  3171. msgid "Scale Aperture"
  3172. msgstr "Redim. Abertura"
  3173. #: flatcamEditors/FlatCAMGrbEditor.py:2548
  3174. msgid "Scale a aperture in the aperture list"
  3175. msgstr "Redimensiona uma abertura na lista de aberturas"
  3176. #: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
  3177. msgid "Scale factor"
  3178. msgstr "Fator de Escala"
  3179. #: flatcamEditors/FlatCAMGrbEditor.py:2558
  3180. msgid ""
  3181. "The factor by which to scale the selected aperture.\n"
  3182. "Values can be between 0.0000 and 999.9999"
  3183. msgstr ""
  3184. "O fator para redimensionar a abertura selecionada. \n"
  3185. "Os valores podem estar entre 0.0000 e 999.9999"
  3186. #: flatcamEditors/FlatCAMGrbEditor.py:2584
  3187. msgid "Mark polygon areas"
  3188. msgstr "Marcar áreas de polígono"
  3189. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  3190. msgid "Mark the polygon areas."
  3191. msgstr "Marcar as áreas de polígonos."
  3192. #: flatcamEditors/FlatCAMGrbEditor.py:2594
  3193. msgid "Area UPPER threshold"
  3194. msgstr "Limite de área SUPERIOR"
  3195. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  3196. msgid ""
  3197. "The threshold value, all areas less than this are marked.\n"
  3198. "Can have a value between 0.0000 and 9999.9999"
  3199. msgstr ""
  3200. "Valor limite, todas as áreas menores que isso são marcadas.\n"
  3201. "Pode ser um valor entre 0.0000 e 9999.9999"
  3202. #: flatcamEditors/FlatCAMGrbEditor.py:2602
  3203. msgid "Area LOWER threshold"
  3204. msgstr "Limite de área INFERIOR"
  3205. #: flatcamEditors/FlatCAMGrbEditor.py:2604
  3206. msgid ""
  3207. "The threshold value, all areas more than this are marked.\n"
  3208. "Can have a value between 0.0000 and 9999.9999"
  3209. msgstr ""
  3210. "Valor limite, todas as áreas maiores que isso são marcadas.\n"
  3211. "Pode ser um valor entre 0.0000 e 9999.9999"
  3212. #: flatcamEditors/FlatCAMGrbEditor.py:2617
  3213. msgid "Go"
  3214. msgstr "Ir"
  3215. #: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
  3216. #: flatcamGUI/FlatCAMGUI.py:2075
  3217. msgid "Add Pad Array"
  3218. msgstr "Adicionar Matriz de Pads"
  3219. #: flatcamEditors/FlatCAMGrbEditor.py:2638
  3220. msgid "Add an array of pads (linear or circular array)"
  3221. msgstr "Adicione uma matriz de pads (matriz linear ou circular)"
  3222. #: flatcamEditors/FlatCAMGrbEditor.py:2644
  3223. msgid ""
  3224. "Select the type of pads array to create.\n"
  3225. "It can be Linear X(Y) or Circular"
  3226. msgstr ""
  3227. "Selecione o tipo de matriz de pads para criar.\n"
  3228. "Pode ser Linear X(Y) ou Circular"
  3229. #: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
  3230. msgid "Nr of pads"
  3231. msgstr "Nº de pads"
  3232. #: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
  3233. msgid "Specify how many pads to be in the array."
  3234. msgstr "Especifique quantos pads devem estar na matriz."
  3235. #: flatcamEditors/FlatCAMGrbEditor.py:3153
  3236. #: flatcamEditors/FlatCAMGrbEditor.py:3157
  3237. msgid "Aperture code value is missing or wrong format. Add it and retry."
  3238. msgstr "O valor do código de abertura está ausente ou em formato "
  3239. "incorreto. Altere e tente novamente."
  3240. #: flatcamEditors/FlatCAMGrbEditor.py:3193
  3241. msgid ""
  3242. "Aperture dimensions value is missing or wrong format. Add it in format "
  3243. "(width, height) and retry."
  3244. msgstr "O valor das dimensões da abertura está ausente ou está no "
  3245. "formato errado. Altere (largura, altura) e tente novamente."
  3246. #: flatcamEditors/FlatCAMGrbEditor.py:3206
  3247. msgid "Aperture size value is missing or wrong format. Add it and retry."
  3248. msgstr "O valor do tamanho da abertura está ausente ou está no "
  3249. "formato errado. Altere e tente novamente."
  3250. #: flatcamEditors/FlatCAMGrbEditor.py:3217
  3251. msgid "Aperture already in the aperture table."
  3252. msgstr "Abertura já na tabela de aberturas."
  3253. #: flatcamEditors/FlatCAMGrbEditor.py:3225
  3254. msgid "Added new aperture with code"
  3255. msgstr "Adicionada nova abertura com código"
  3256. #: flatcamEditors/FlatCAMGrbEditor.py:3254
  3257. msgid " Select an aperture in Aperture Table"
  3258. msgstr "Selecione uma abertura na Tabela de Aberturas"
  3259. #: flatcamEditors/FlatCAMGrbEditor.py:3261
  3260. msgid "Select an aperture in Aperture Table -->"
  3261. msgstr "Selecione uma abertura na Tabela de Aberturas ->"
  3262. #: flatcamEditors/FlatCAMGrbEditor.py:3285
  3263. msgid "Deleted aperture with code"
  3264. msgstr "Abertura excluída com código"
  3265. #: flatcamEditors/FlatCAMGrbEditor.py:3748
  3266. #, python-format
  3267. msgid "Adding aperture: %s geo ..."
  3268. msgstr "Adicionando abertura: %s geo ..."
  3269. #: flatcamEditors/FlatCAMGrbEditor.py:3936
  3270. msgid ""
  3271. "There are no Aperture definitions in the file. Aborting Gerber creation."
  3272. msgstr "Não há definições da Abertura no arquivo. Abortando a criação "
  3273. "de Gerber."
  3274. #: flatcamEditors/FlatCAMGrbEditor.py:3944
  3275. msgid "Creating Gerber."
  3276. msgstr "Criando Gerber."
  3277. #: flatcamEditors/FlatCAMGrbEditor.py:3953
  3278. msgid "Done. Gerber editing finished."
  3279. msgstr "Edição de Gerber concluída."
  3280. #: flatcamEditors/FlatCAMGrbEditor.py:3970
  3281. msgid "Cancelled. No aperture is selected"
  3282. msgstr ""
  3283. #: flatcamEditors/FlatCAMGrbEditor.py:4505
  3284. msgid "Failed. No aperture geometry is selected."
  3285. msgstr "Cancelado. Nenhuma abertura selecionada"
  3286. #: flatcamEditors/FlatCAMGrbEditor.py:4514
  3287. msgid "Done. Apertures geometry deleted."
  3288. msgstr "Abertura excluída."
  3289. #: flatcamEditors/FlatCAMGrbEditor.py:4657
  3290. msgid "No aperture to buffer. Select at least one aperture and try again."
  3291. msgstr "Nenhuma abertura para buffer. Selecione pelo menos uma "
  3292. "abertura e tente novamente."
  3293. #: flatcamEditors/FlatCAMGrbEditor.py:4670
  3294. msgid "Failed."
  3295. msgstr "Falhou."
  3296. #: flatcamEditors/FlatCAMGrbEditor.py:4689
  3297. msgid "Scale factor value is missing or wrong format. Add it and retry."
  3298. msgstr "O valor do fator de escala está ausente ou está em formato "
  3299. "incorreto. Altere e tente novamente."
  3300. #: flatcamEditors/FlatCAMGrbEditor.py:4721
  3301. msgid "No aperture to scale. Select at least one aperture and try again."
  3302. msgstr "Nenhuma abertura para redimensionar. Selecione pelo menos uma "
  3303. "abertura e tente novamente."
  3304. #: flatcamEditors/FlatCAMGrbEditor.py:4737
  3305. msgid "Done. Scale Tool completed."
  3306. msgstr "Redimensionamento concluído."
  3307. #: flatcamEditors/FlatCAMGrbEditor.py:4775
  3308. msgid "Polygon areas marked."
  3309. msgstr "Áreas de polígono marcadas."
  3310. #: flatcamEditors/FlatCAMGrbEditor.py:4778
  3311. msgid "There are no polygons to mark area."
  3312. msgstr "Não há polígonos para marcar a área."
  3313. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  3314. msgid "Rotation action was not executed."
  3315. msgstr "A rotação não foi executada."
  3316. #: flatcamEditors/FlatCAMGrbEditor.py:5688
  3317. msgid "Skew action was not executed."
  3318. msgstr "A inclinação não foi executada."
  3319. #: flatcamEditors/FlatCAMGrbEditor.py:5758
  3320. msgid "Scale action was not executed."
  3321. msgstr "O redimensionamento não foi executado."
  3322. #: flatcamEditors/FlatCAMGrbEditor.py:5807
  3323. msgid "Offset action was not executed."
  3324. msgstr "O deslocamento não foi executado."
  3325. #: flatcamEditors/FlatCAMGrbEditor.py:5863
  3326. msgid "Geometry shape offset Y cancelled"
  3327. msgstr "Deslocamento Y cancelado."
  3328. #: flatcamEditors/FlatCAMGrbEditor.py:5880
  3329. msgid "Geometry shape skew X cancelled"
  3330. msgstr "Inclinação X cancelada."
  3331. #: flatcamEditors/FlatCAMGrbEditor.py:5897
  3332. msgid "Geometry shape skew Y cancelled"
  3333. msgstr "Inclinação Y cancelada."
  3334. #: flatcamGUI/FlatCAMGUI.py:52
  3335. msgid "&File"
  3336. msgstr "&Arquivo"
  3337. #: flatcamGUI/FlatCAMGUI.py:57
  3338. msgid "&New Project ...\tCTRL+N"
  3339. msgstr "&Novo Projeto ...\tCTRL+N"
  3340. #: flatcamGUI/FlatCAMGUI.py:59
  3341. msgid "Will create a new, blank project"
  3342. msgstr "Criará um novo projeto em branco"
  3343. #: flatcamGUI/FlatCAMGUI.py:64
  3344. msgid "&New"
  3345. msgstr "&Novo"
  3346. #: flatcamGUI/FlatCAMGUI.py:67
  3347. msgid "Geometry\tN"
  3348. msgstr "Geometria\tN"
  3349. #: flatcamGUI/FlatCAMGUI.py:69
  3350. msgid "Will create a new, empty Geometry Object."
  3351. msgstr "Criará um novo Objeto Geometria vazio."
  3352. #: flatcamGUI/FlatCAMGUI.py:71
  3353. msgid "Gerber\tB"
  3354. msgstr "Gerber\tB"
  3355. #: flatcamGUI/FlatCAMGUI.py:73
  3356. msgid "Will create a new, empty Gerber Object."
  3357. msgstr "Criará um novo Objeto Gerber vazio."
  3358. #: flatcamGUI/FlatCAMGUI.py:75
  3359. msgid "Excellon\tL"
  3360. msgstr "Excellon\tL"
  3361. #: flatcamGUI/FlatCAMGUI.py:77
  3362. msgid "Will create a new, empty Excellon Object."
  3363. msgstr "Criará um novo Objeto Excellon vazio."
  3364. #: flatcamGUI/FlatCAMGUI.py:80 flatcamTools/ToolPcbWizard.py:62
  3365. #: flatcamTools/ToolPcbWizard.py:69
  3366. msgid "Open"
  3367. msgstr "Abrir"
  3368. #: flatcamGUI/FlatCAMGUI.py:84
  3369. msgid "Open &Project ..."
  3370. msgstr "Abrir &Projeto ..."
  3371. #: flatcamGUI/FlatCAMGUI.py:90
  3372. msgid "Open &Gerber ...\tCTRL+G"
  3373. msgstr "Abrir &Gerber ...\tCTRL+G"
  3374. #: flatcamGUI/FlatCAMGUI.py:95
  3375. msgid "Open &Excellon ...\tCTRL+E"
  3376. msgstr "Abrir &Excellon ...\tCTRL+E"
  3377. #: flatcamGUI/FlatCAMGUI.py:99
  3378. msgid "Open G-&Code ..."
  3379. msgstr "Abrir G-&Code ..."
  3380. #: flatcamGUI/FlatCAMGUI.py:105
  3381. msgid "Open Config ..."
  3382. msgstr "Abrir Configuração ..."
  3383. #: flatcamGUI/FlatCAMGUI.py:109
  3384. msgid "Recent projects"
  3385. msgstr "Projetos Recentes"
  3386. #: flatcamGUI/FlatCAMGUI.py:110
  3387. msgid "Recent files"
  3388. msgstr "Arquivos Recentes"
  3389. #: flatcamGUI/FlatCAMGUI.py:116
  3390. msgid "Scripting"
  3391. msgstr "Scripting"
  3392. #: flatcamGUI/FlatCAMGUI.py:119
  3393. msgid "New Script ..."
  3394. msgstr "Novo Script ..."
  3395. #: flatcamGUI/FlatCAMGUI.py:120
  3396. msgid "Open Script ..."
  3397. msgstr "Abrir Script ..."
  3398. #: flatcamGUI/FlatCAMGUI.py:122
  3399. msgid "Run Script ...\tSHIFT+S"
  3400. msgstr "Executar Script ...\tSHIFT+S"
  3401. #: flatcamGUI/FlatCAMGUI.py:124
  3402. msgid ""
  3403. "Will run the opened Tcl Script thus\n"
  3404. "enabling the automation of certain\n"
  3405. "functions of FlatCAM."
  3406. msgstr ""
  3407. "Executará o script TCL aberto,\n"
  3408. "ativando a automação de certas\n"
  3409. "funções do FlatCAM."
  3410. #: flatcamGUI/FlatCAMGUI.py:137
  3411. msgid "Import"
  3412. msgstr "Importar"
  3413. #: flatcamGUI/FlatCAMGUI.py:139
  3414. msgid "&SVG as Geometry Object ..."
  3415. msgstr "&SVG como Objeto de Geometria ..."
  3416. #: flatcamGUI/FlatCAMGUI.py:142
  3417. msgid "&SVG as Gerber Object ..."
  3418. msgstr "&SVG como Objeto Gerber ..."
  3419. #: flatcamGUI/FlatCAMGUI.py:147
  3420. msgid "&DXF as Geometry Object ..."
  3421. msgstr "&DXF como Objeto de Geometria ..."
  3422. #: flatcamGUI/FlatCAMGUI.py:150
  3423. msgid "&DXF as Gerber Object ..."
  3424. msgstr "&DXF como Objeto Gerber ..."
  3425. #: flatcamGUI/FlatCAMGUI.py:155
  3426. msgid "Export"
  3427. msgstr "Exportar"
  3428. #: flatcamGUI/FlatCAMGUI.py:158
  3429. msgid "Export &SVG ..."
  3430. msgstr "Exportar &SVG ..."
  3431. #: flatcamGUI/FlatCAMGUI.py:161
  3432. msgid "Export DXF ..."
  3433. msgstr "Exportar DXF ..."
  3434. #: flatcamGUI/FlatCAMGUI.py:166
  3435. msgid "Export &PNG ..."
  3436. msgstr "Exportar &PNG ..."
  3437. #: flatcamGUI/FlatCAMGUI.py:168
  3438. msgid ""
  3439. "Will export an image in PNG format,\n"
  3440. "the saved image will contain the visual \n"
  3441. "information currently in FlatCAM Plot Area."
  3442. msgstr ""
  3443. "Exportará uma imagem em formato PNG.\n"
  3444. "A imagem salva conterá as informações\n"
  3445. "visuais atualmente na área gráfica FlatCAM."
  3446. #: flatcamGUI/FlatCAMGUI.py:177
  3447. msgid "Export &Excellon ..."
  3448. msgstr "Exportar &Excellon ..."
  3449. #: flatcamGUI/FlatCAMGUI.py:179
  3450. msgid ""
  3451. "Will export an Excellon Object as Excellon file,\n"
  3452. "the coordinates format, the file units and zeros\n"
  3453. "are set in Preferences -> Excellon Export."
  3454. msgstr ""
  3455. "Exportará um Objeto Excellon como arquivo Excellon.\n"
  3456. "O formato das coordenadas, das unidades de arquivo e dos zeros\n"
  3457. "são definidos em Preferências -> Exportação de Excellon."
  3458. #: flatcamGUI/FlatCAMGUI.py:186
  3459. msgid "Export &Gerber ..."
  3460. msgstr "Exportar &Gerber ..."
  3461. #: flatcamGUI/FlatCAMGUI.py:188
  3462. msgid ""
  3463. "Will export an Gerber Object as Gerber file,\n"
  3464. "the coordinates format, the file units and zeros\n"
  3465. "are set in Preferences -> Gerber Export."
  3466. msgstr ""
  3467. "Exportará um Objeto Gerber como arquivo Gerber.\n"
  3468. "O formato das coordenadas, das unidades de arquivo e dos zeros\n"
  3469. "são definidos em Preferências -> Exportar Gerber."
  3470. #: flatcamGUI/FlatCAMGUI.py:204
  3471. msgid "Backup"
  3472. msgstr "Backup"
  3473. #: flatcamGUI/FlatCAMGUI.py:208
  3474. msgid "Import Preferences from file ..."
  3475. msgstr "Importar preferências de um arquivo ..."
  3476. #: flatcamGUI/FlatCAMGUI.py:213
  3477. msgid "Export Preferences to file ..."
  3478. msgstr "Exportar Preferências para um arquivo ..."
  3479. #: flatcamGUI/FlatCAMGUI.py:219 flatcamGUI/FlatCAMGUI.py:546
  3480. msgid "Save"
  3481. msgstr "Salvar"
  3482. #: flatcamGUI/FlatCAMGUI.py:222
  3483. msgid "&Save Project ..."
  3484. msgstr "&Salvar Projeto ..."
  3485. #: flatcamGUI/FlatCAMGUI.py:227
  3486. msgid "Save Project &As ...\tCTRL+S"
  3487. msgstr "S&alvar Projeto Como ...\tCTRL+S"
  3488. #: flatcamGUI/FlatCAMGUI.py:232
  3489. msgid "Save Project C&opy ..."
  3490. msgstr "Salvar Cópia do Pr&ojeto ..."
  3491. #: flatcamGUI/FlatCAMGUI.py:239
  3492. msgid "E&xit"
  3493. msgstr "Sair"
  3494. #: flatcamGUI/FlatCAMGUI.py:245
  3495. msgid "&Edit"
  3496. msgstr "&Editar"
  3497. #: flatcamGUI/FlatCAMGUI.py:248
  3498. msgid "Edit Object\tE"
  3499. msgstr "Editar Objeto\tE"
  3500. #: flatcamGUI/FlatCAMGUI.py:249
  3501. msgid "Close Editor\tCTRL+S"
  3502. msgstr "Fechar Editor\tCTRL+S"
  3503. #: flatcamGUI/FlatCAMGUI.py:257
  3504. msgid "Conversion"
  3505. msgstr "Conversão"
  3506. #: flatcamGUI/FlatCAMGUI.py:259
  3507. msgid "&Join Geo/Gerber/Exc -> Geo"
  3508. msgstr "&Unir Geo/Gerber/Exc -> Geo"
  3509. #: flatcamGUI/FlatCAMGUI.py:261
  3510. msgid ""
  3511. "Merge a selection of objects, which can be of type:\n"
  3512. "- Gerber\n"
  3513. "- Excellon\n"
  3514. "- Geometry\n"
  3515. "into a new combo Geometry object."
  3516. msgstr ""
  3517. "Mescla uma seleção de objetos, que podem ser do tipo:\n"
  3518. "- Gerber\n"
  3519. "- Excellon\n"
  3520. "- Geometria\n"
  3521. " em um novo objeto Geometria."
  3522. #: flatcamGUI/FlatCAMGUI.py:268
  3523. msgid "Join Excellon(s) -> Excellon"
  3524. msgstr "Unir Excellon(s) -> Excellon"
  3525. #: flatcamGUI/FlatCAMGUI.py:270
  3526. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3527. msgstr "Mescla uma seleção de objetos Excellon em um novo objeto Excellon."
  3528. #: flatcamGUI/FlatCAMGUI.py:273
  3529. msgid "Join Gerber(s) -> Gerber"
  3530. msgstr "Unir Gerber(s) -> Gerber"
  3531. #: flatcamGUI/FlatCAMGUI.py:275
  3532. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3533. msgstr "Mescla uma seleção de objetos Gerber em um novo objeto Gerber."
  3534. #: flatcamGUI/FlatCAMGUI.py:280
  3535. msgid "Convert Single to MultiGeo"
  3536. msgstr "Converter Single para MultiGeo"
  3537. #: flatcamGUI/FlatCAMGUI.py:282
  3538. msgid ""
  3539. "Will convert a Geometry object from single_geometry type\n"
  3540. "to a multi_geometry type."
  3541. msgstr ""
  3542. "Converterá um objeto Geometria do tipo single_geometry\n"
  3543. "em um tipo multi_geometry."
  3544. #: flatcamGUI/FlatCAMGUI.py:286
  3545. msgid "Convert Multi to SingleGeo"
  3546. msgstr "Converter Multi para SingleGeo"
  3547. #: flatcamGUI/FlatCAMGUI.py:288
  3548. msgid ""
  3549. "Will convert a Geometry object from multi_geometry type\n"
  3550. "to a single_geometry type."
  3551. msgstr ""
  3552. "Converterá um objeto Geometria do tipo multi_geometry\n"
  3553. "em um tipo single_geometry."
  3554. #: flatcamGUI/FlatCAMGUI.py:294
  3555. msgid "Convert Any to Geo"
  3556. msgstr "Converter Qualquer para Geo"
  3557. #: flatcamGUI/FlatCAMGUI.py:296
  3558. msgid "Convert Any to Gerber"
  3559. msgstr "Converter Qualquer para Gerber"
  3560. #: flatcamGUI/FlatCAMGUI.py:301
  3561. msgid "&Copy\tCTRL+C"
  3562. msgstr "&Copiar\tCTRL+C"
  3563. #: flatcamGUI/FlatCAMGUI.py:305
  3564. msgid "&Delete\tDEL"
  3565. msgstr "Excluir\tDEL"
  3566. #: flatcamGUI/FlatCAMGUI.py:309
  3567. msgid "Se&t Origin\tO"
  3568. msgstr "Definir Origem\tO"
  3569. #: flatcamGUI/FlatCAMGUI.py:310
  3570. msgid "Jump to Location\tJ"
  3571. msgstr "Ir para a localização\tJ"
  3572. #: flatcamGUI/FlatCAMGUI.py:315
  3573. msgid "Toggle Units\tQ"
  3574. msgstr "Alternar Unidades\tQ"
  3575. #: flatcamGUI/FlatCAMGUI.py:316
  3576. msgid "&Select All\tCTRL+A"
  3577. msgstr "&Selecionar Tudo\tCTRL+A"
  3578. #: flatcamGUI/FlatCAMGUI.py:320
  3579. msgid "&Preferences\tSHIFT+P"
  3580. msgstr "&Preferências\tSHIFT+P"
  3581. #: flatcamGUI/FlatCAMGUI.py:323
  3582. msgid "&Options"
  3583. msgstr "&Opções"
  3584. #: flatcamGUI/FlatCAMGUI.py:338
  3585. msgid "&Rotate Selection\tSHIFT+(R)"
  3586. msgstr "Gi&rar Seleção\tSHIFT+(R)"
  3587. #: flatcamGUI/FlatCAMGUI.py:343
  3588. msgid "&Skew on X axis\tSHIFT+X"
  3589. msgstr ""
  3590. #: flatcamGUI/FlatCAMGUI.py:345
  3591. msgid "S&kew on Y axis\tSHIFT+Y"
  3592. msgstr ""
  3593. #: flatcamGUI/FlatCAMGUI.py:350
  3594. msgid "Flip on &X axis\tX"
  3595. msgstr ""
  3596. #: flatcamGUI/FlatCAMGUI.py:352
  3597. msgid "Flip on &Y axis\tY"
  3598. msgstr ""
  3599. #: flatcamGUI/FlatCAMGUI.py:357
  3600. msgid "View source\tALT+S"
  3601. msgstr ""
  3602. #: flatcamGUI/FlatCAMGUI.py:362
  3603. msgid "&View"
  3604. msgstr ""
  3605. #: flatcamGUI/FlatCAMGUI.py:363
  3606. msgid "Enable all plots\tALT+1"
  3607. msgstr ""
  3608. #: flatcamGUI/FlatCAMGUI.py:365
  3609. msgid "Disable all plots\tALT+2"
  3610. msgstr ""
  3611. #: flatcamGUI/FlatCAMGUI.py:367
  3612. msgid "Disable non-selected\tALT+3"
  3613. msgstr ""
  3614. #: flatcamGUI/FlatCAMGUI.py:370
  3615. msgid "&Zoom Fit\tV"
  3616. msgstr ""
  3617. #: flatcamGUI/FlatCAMGUI.py:371
  3618. msgid "&Zoom In\t="
  3619. msgstr ""
  3620. #: flatcamGUI/FlatCAMGUI.py:372
  3621. msgid "&Zoom Out\t-"
  3622. msgstr ""
  3623. #: flatcamGUI/FlatCAMGUI.py:376
  3624. msgid "Toggle Code Editor\tCTRL+E"
  3625. msgstr ""
  3626. #: flatcamGUI/FlatCAMGUI.py:379
  3627. msgid "&Toggle FullScreen\tALT+F10"
  3628. msgstr ""
  3629. #: flatcamGUI/FlatCAMGUI.py:381
  3630. msgid "&Toggle Plot Area\tCTRL+F10"
  3631. msgstr ""
  3632. #: flatcamGUI/FlatCAMGUI.py:383
  3633. msgid "&Toggle Project/Sel/Tool\t`"
  3634. msgstr ""
  3635. #: flatcamGUI/FlatCAMGUI.py:386
  3636. msgid "&Toggle Grid Snap\tG"
  3637. msgstr ""
  3638. #: flatcamGUI/FlatCAMGUI.py:388
  3639. msgid "&Toggle Axis\tSHIFT+G"
  3640. msgstr ""
  3641. #: flatcamGUI/FlatCAMGUI.py:391
  3642. msgid "Toggle Workspace\tSHIFT+W"
  3643. msgstr ""
  3644. #: flatcamGUI/FlatCAMGUI.py:394
  3645. msgid "&Tool"
  3646. msgstr ""
  3647. #: flatcamGUI/FlatCAMGUI.py:396
  3648. msgid "&Command Line\tS"
  3649. msgstr ""
  3650. #: flatcamGUI/FlatCAMGUI.py:399
  3651. msgid "&Help"
  3652. msgstr ""
  3653. #: flatcamGUI/FlatCAMGUI.py:400
  3654. msgid "Help\tF1"
  3655. msgstr ""
  3656. #: flatcamGUI/FlatCAMGUI.py:401
  3657. msgid "FlatCAM.org"
  3658. msgstr ""
  3659. #: flatcamGUI/FlatCAMGUI.py:404
  3660. msgid "Shortcuts List\tF3"
  3661. msgstr ""
  3662. #: flatcamGUI/FlatCAMGUI.py:405
  3663. msgid "YouTube Channel\tF4"
  3664. msgstr ""
  3665. #: flatcamGUI/FlatCAMGUI.py:407
  3666. msgid "About"
  3667. msgstr ""
  3668. #: flatcamGUI/FlatCAMGUI.py:414
  3669. msgid "Add Circle\tO"
  3670. msgstr ""
  3671. #: flatcamGUI/FlatCAMGUI.py:416
  3672. msgid "Add Arc\tA"
  3673. msgstr ""
  3674. #: flatcamGUI/FlatCAMGUI.py:419
  3675. msgid "Add Rectangle\tR"
  3676. msgstr ""
  3677. #: flatcamGUI/FlatCAMGUI.py:422
  3678. msgid "Add Polygon\tN"
  3679. msgstr ""
  3680. #: flatcamGUI/FlatCAMGUI.py:424
  3681. msgid "Add Path\tP"
  3682. msgstr ""
  3683. #: flatcamGUI/FlatCAMGUI.py:426
  3684. msgid "Add Text\tT"
  3685. msgstr ""
  3686. #: flatcamGUI/FlatCAMGUI.py:429
  3687. msgid "Polygon Union\tU"
  3688. msgstr ""
  3689. #: flatcamGUI/FlatCAMGUI.py:431
  3690. msgid "Polygon Intersection\tE"
  3691. msgstr ""
  3692. #: flatcamGUI/FlatCAMGUI.py:433
  3693. msgid "Polygon Subtraction\tS"
  3694. msgstr ""
  3695. #: flatcamGUI/FlatCAMGUI.py:437
  3696. msgid "Cut Path\tX"
  3697. msgstr ""
  3698. #: flatcamGUI/FlatCAMGUI.py:439
  3699. msgid "Copy Geom\tC"
  3700. msgstr ""
  3701. #: flatcamGUI/FlatCAMGUI.py:441
  3702. msgid "Delete Shape\tDEL"
  3703. msgstr ""
  3704. #: flatcamGUI/FlatCAMGUI.py:444 flatcamGUI/FlatCAMGUI.py:521
  3705. msgid "Move\tM"
  3706. msgstr ""
  3707. #: flatcamGUI/FlatCAMGUI.py:446
  3708. msgid "Buffer Tool\tB"
  3709. msgstr ""
  3710. #: flatcamGUI/FlatCAMGUI.py:449
  3711. msgid "Paint Tool\tI"
  3712. msgstr ""
  3713. #: flatcamGUI/FlatCAMGUI.py:452
  3714. msgid "Transform Tool\tALT+R"
  3715. msgstr ""
  3716. #: flatcamGUI/FlatCAMGUI.py:456
  3717. msgid "Toggle Corner Snap\tK"
  3718. msgstr ""
  3719. #: flatcamGUI/FlatCAMGUI.py:459
  3720. msgid ">Excellon Editor<"
  3721. msgstr ""
  3722. #: flatcamGUI/FlatCAMGUI.py:463
  3723. msgid "Add Drill Array\tA"
  3724. msgstr ""
  3725. #: flatcamGUI/FlatCAMGUI.py:465
  3726. msgid "Add Drill\tD"
  3727. msgstr ""
  3728. #: flatcamGUI/FlatCAMGUI.py:469
  3729. msgid "Add Slot Array\tQ"
  3730. msgstr ""
  3731. #: flatcamGUI/FlatCAMGUI.py:471
  3732. msgid "Add Slot\tW"
  3733. msgstr ""
  3734. #: flatcamGUI/FlatCAMGUI.py:475
  3735. msgid "Resize Drill(S)\tR"
  3736. msgstr ""
  3737. #: flatcamGUI/FlatCAMGUI.py:477 flatcamGUI/FlatCAMGUI.py:516
  3738. msgid "Copy\tC"
  3739. msgstr ""
  3740. #: flatcamGUI/FlatCAMGUI.py:479 flatcamGUI/FlatCAMGUI.py:518
  3741. msgid "Delete\tDEL"
  3742. msgstr ""
  3743. #: flatcamGUI/FlatCAMGUI.py:484
  3744. msgid "Move Drill(s)\tM"
  3745. msgstr ""
  3746. #: flatcamGUI/FlatCAMGUI.py:487
  3747. msgid ">Gerber Editor<"
  3748. msgstr ""
  3749. #: flatcamGUI/FlatCAMGUI.py:491
  3750. msgid "Add Pad\tP"
  3751. msgstr ""
  3752. #: flatcamGUI/FlatCAMGUI.py:493
  3753. msgid "Add Pad Array\tA"
  3754. msgstr ""
  3755. #: flatcamGUI/FlatCAMGUI.py:495
  3756. msgid "Add Track\tT"
  3757. msgstr ""
  3758. #: flatcamGUI/FlatCAMGUI.py:497
  3759. msgid "Add Region\tN"
  3760. msgstr ""
  3761. #: flatcamGUI/FlatCAMGUI.py:501
  3762. msgid "Poligonize\tALT+N"
  3763. msgstr ""
  3764. #: flatcamGUI/FlatCAMGUI.py:503
  3765. msgid "Add SemiDisc\tE"
  3766. msgstr ""
  3767. #: flatcamGUI/FlatCAMGUI.py:504
  3768. msgid "Add Disc\tD"
  3769. msgstr ""
  3770. #: flatcamGUI/FlatCAMGUI.py:506
  3771. msgid "Buffer\tB"
  3772. msgstr ""
  3773. #: flatcamGUI/FlatCAMGUI.py:507
  3774. msgid "Scale\tS"
  3775. msgstr ""
  3776. #: flatcamGUI/FlatCAMGUI.py:509
  3777. msgid "Mark Area\tALT+A"
  3778. msgstr ""
  3779. #: flatcamGUI/FlatCAMGUI.py:511
  3780. msgid "Eraser\tCTRL+E"
  3781. msgstr ""
  3782. #: flatcamGUI/FlatCAMGUI.py:513
  3783. msgid "Transform\tALT+R"
  3784. msgstr ""
  3785. #: flatcamGUI/FlatCAMGUI.py:537
  3786. msgid "Enable Plot"
  3787. msgstr ""
  3788. #: flatcamGUI/FlatCAMGUI.py:538
  3789. msgid "Disable Plot"
  3790. msgstr ""
  3791. #: flatcamGUI/FlatCAMGUI.py:540
  3792. msgid "Generate CNC"
  3793. msgstr ""
  3794. #: flatcamGUI/FlatCAMGUI.py:541
  3795. msgid "View Source"
  3796. msgstr ""
  3797. #: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
  3798. msgid "Edit"
  3799. msgstr ""
  3800. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
  3801. #: flatcamTools/ToolProperties.py:24
  3802. msgid "Properties"
  3803. msgstr ""
  3804. #: flatcamGUI/FlatCAMGUI.py:578
  3805. msgid "File Toolbar"
  3806. msgstr ""
  3807. #: flatcamGUI/FlatCAMGUI.py:582
  3808. msgid "Edit Toolbar"
  3809. msgstr ""
  3810. #: flatcamGUI/FlatCAMGUI.py:586
  3811. msgid "View Toolbar"
  3812. msgstr ""
  3813. #: flatcamGUI/FlatCAMGUI.py:590
  3814. msgid "Shell Toolbar"
  3815. msgstr ""
  3816. #: flatcamGUI/FlatCAMGUI.py:594
  3817. msgid "Tools Toolbar"
  3818. msgstr ""
  3819. #: flatcamGUI/FlatCAMGUI.py:598
  3820. msgid "Excellon Editor Toolbar"
  3821. msgstr ""
  3822. #: flatcamGUI/FlatCAMGUI.py:602
  3823. msgid "Geometry Editor Toolbar"
  3824. msgstr ""
  3825. #: flatcamGUI/FlatCAMGUI.py:606
  3826. msgid "Gerber Editor Toolbar"
  3827. msgstr ""
  3828. #: flatcamGUI/FlatCAMGUI.py:610
  3829. msgid "Grid Toolbar"
  3830. msgstr ""
  3831. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
  3832. msgid "Open project"
  3833. msgstr ""
  3834. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
  3835. msgid "Save project"
  3836. msgstr ""
  3837. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
  3838. msgid "New Blank Geometry"
  3839. msgstr ""
  3840. #: flatcamGUI/FlatCAMGUI.py:634
  3841. msgid "New Blank Gerber"
  3842. msgstr ""
  3843. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
  3844. msgid "New Blank Excellon"
  3845. msgstr ""
  3846. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
  3847. msgid "Editor"
  3848. msgstr ""
  3849. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
  3850. msgid "Save Object and close the Editor"
  3851. msgstr ""
  3852. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
  3853. msgid "&Delete"
  3854. msgstr ""
  3855. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
  3856. msgid "&Replot"
  3857. msgstr ""
  3858. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
  3859. msgid "&Clear plot"
  3860. msgstr ""
  3861. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
  3862. msgid "Zoom In"
  3863. msgstr ""
  3864. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
  3865. msgid "Zoom Out"
  3866. msgstr ""
  3867. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
  3868. #: flatcamGUI/FlatCAMGUI.py:1993
  3869. msgid "Zoom Fit"
  3870. msgstr ""
  3871. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
  3872. msgid "&Command Line"
  3873. msgstr ""
  3874. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
  3875. msgid "2Sided Tool"
  3876. msgstr ""
  3877. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
  3878. msgid "&Cutout Tool"
  3879. msgstr ""
  3880. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
  3881. #: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
  3882. msgid "NCC Tool"
  3883. msgstr ""
  3884. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
  3885. msgid "Panel Tool"
  3886. msgstr ""
  3887. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
  3888. #: flatcamTools/ToolFilm.py:209
  3889. msgid "Film Tool"
  3890. msgstr ""
  3891. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
  3892. #: flatcamTools/ToolSolderPaste.py:455
  3893. msgid "SolderPaste Tool"
  3894. msgstr ""
  3895. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
  3896. #: flatcamTools/ToolSub.py:28
  3897. msgid "Substract Tool"
  3898. msgstr ""
  3899. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
  3900. msgid "Calculators Tool"
  3901. msgstr ""
  3902. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
  3903. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
  3904. #: flatcamGUI/FlatCAMGUI.py:2073
  3905. msgid "Select"
  3906. msgstr ""
  3907. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
  3908. msgid "Add Drill Hole"
  3909. msgstr ""
  3910. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
  3911. msgid "Add Drill Hole Array"
  3912. msgstr ""
  3913. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
  3914. #: flatcamGUI/FlatCAMGUI.py:2025
  3915. msgid "Add Slot"
  3916. msgstr ""
  3917. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
  3918. #: flatcamGUI/FlatCAMGUI.py:2027
  3919. msgid "Add Slot Array"
  3920. msgstr ""
  3921. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
  3922. #: flatcamGUI/FlatCAMGUI.py:2024
  3923. msgid "Resize Drill"
  3924. msgstr ""
  3925. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
  3926. msgid "Copy Drill"
  3927. msgstr ""
  3928. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
  3929. msgid "Delete Drill"
  3930. msgstr ""
  3931. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
  3932. msgid "Move Drill"
  3933. msgstr ""
  3934. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
  3935. msgid "Add Circle"
  3936. msgstr ""
  3937. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
  3938. msgid "Add Arc"
  3939. msgstr ""
  3940. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
  3941. msgid "Add Rectangle"
  3942. msgstr ""
  3943. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
  3944. msgid "Add Path"
  3945. msgstr ""
  3946. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
  3947. msgid "Add Polygon"
  3948. msgstr ""
  3949. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
  3950. msgid "Add Text"
  3951. msgstr ""
  3952. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
  3953. msgid "Add Buffer"
  3954. msgstr ""
  3955. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
  3956. msgid "Paint Shape"
  3957. msgstr ""
  3958. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
  3959. #: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
  3960. #: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
  3961. msgid "Eraser"
  3962. msgstr ""
  3963. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
  3964. msgid "Polygon Union"
  3965. msgstr ""
  3966. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
  3967. msgid "Polygon Intersection"
  3968. msgstr ""
  3969. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
  3970. msgid "Polygon Subtraction"
  3971. msgstr ""
  3972. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
  3973. msgid "Cut Path"
  3974. msgstr ""
  3975. #: flatcamGUI/FlatCAMGUI.py:716
  3976. msgid "Copy Shape(s)"
  3977. msgstr ""
  3978. #: flatcamGUI/FlatCAMGUI.py:719
  3979. msgid "Delete Shape '-'"
  3980. msgstr ""
  3981. #: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
  3982. #: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
  3983. #: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
  3984. msgid "Transformations"
  3985. msgstr ""
  3986. #: flatcamGUI/FlatCAMGUI.py:723
  3987. msgid "Move Objects "
  3988. msgstr ""
  3989. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
  3990. msgid "Add Pad"
  3991. msgstr ""
  3992. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
  3993. msgid "Add Track"
  3994. msgstr ""
  3995. #: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
  3996. msgid "Add Region"
  3997. msgstr ""
  3998. #: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
  3999. #: flatcamGUI/FlatCAMGUI.py:2079
  4000. msgid "Poligonize"
  4001. msgstr ""
  4002. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
  4003. #: flatcamGUI/FlatCAMGUI.py:2081
  4004. msgid "SemiDisc"
  4005. msgstr ""
  4006. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
  4007. #: flatcamGUI/FlatCAMGUI.py:2082
  4008. msgid "Disc"
  4009. msgstr ""
  4010. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
  4011. #: flatcamGUI/FlatCAMGUI.py:2088
  4012. msgid "Mark Area"
  4013. msgstr ""
  4014. #: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
  4015. #: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
  4016. #: flatcamTools/ToolMove.py:26
  4017. msgid "Move"
  4018. msgstr ""
  4019. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
  4020. msgid "Snap to grid"
  4021. msgstr ""
  4022. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
  4023. msgid "Grid X snapping distance"
  4024. msgstr ""
  4025. #: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
  4026. msgid "Grid Y snapping distance"
  4027. msgstr ""
  4028. #: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
  4029. msgid ""
  4030. "When active, value on Grid_X\n"
  4031. "is copied to the Grid_Y value."
  4032. msgstr ""
  4033. #: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
  4034. msgid "Snap to corner"
  4035. msgstr ""
  4036. #: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
  4037. #: flatcamGUI/FlatCAMGUI.py:3575
  4038. msgid "Max. magnet distance"
  4039. msgstr ""
  4040. #: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
  4041. msgid "Project"
  4042. msgstr ""
  4043. #: flatcamGUI/FlatCAMGUI.py:819
  4044. msgid "Selected"
  4045. msgstr ""
  4046. #: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:846
  4047. msgid "Plot Area"
  4048. msgstr ""
  4049. #: flatcamGUI/FlatCAMGUI.py:872
  4050. msgid "General"
  4051. msgstr ""
  4052. #: flatcamGUI/FlatCAMGUI.py:881
  4053. msgid "APP. DEFAULTS"
  4054. msgstr ""
  4055. #: flatcamGUI/FlatCAMGUI.py:882
  4056. msgid "PROJ. OPTIONS "
  4057. msgstr ""
  4058. #: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
  4059. msgid "GERBER"
  4060. msgstr ""
  4061. #: flatcamGUI/FlatCAMGUI.py:904 flatcamTools/ToolDblSided.py:71
  4062. msgid "EXCELLON"
  4063. msgstr ""
  4064. #: flatcamGUI/FlatCAMGUI.py:914 flatcamTools/ToolDblSided.py:95
  4065. msgid "GEOMETRY"
  4066. msgstr ""
  4067. #: flatcamGUI/FlatCAMGUI.py:924
  4068. msgid "CNC-JOB"
  4069. msgstr ""
  4070. #: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
  4071. msgid "TOOLS"
  4072. msgstr ""
  4073. #: flatcamGUI/FlatCAMGUI.py:943
  4074. msgid "FILE ASSOCIATIONS"
  4075. msgstr ""
  4076. #: flatcamGUI/FlatCAMGUI.py:960
  4077. msgid "Import Preferences"
  4078. msgstr ""
  4079. #: flatcamGUI/FlatCAMGUI.py:963
  4080. msgid ""
  4081. "Import a full set of FlatCAM settings from a file\n"
  4082. "previously saved on HDD.\n"
  4083. "\n"
  4084. "FlatCAM automatically save a 'factory_defaults' file\n"
  4085. "on the first start. Do not delete that file."
  4086. msgstr ""
  4087. #: flatcamGUI/FlatCAMGUI.py:970
  4088. msgid "Export Preferences"
  4089. msgstr ""
  4090. #: flatcamGUI/FlatCAMGUI.py:973
  4091. msgid ""
  4092. "Export a full set of FlatCAM settings in a file\n"
  4093. "that is saved on HDD."
  4094. msgstr ""
  4095. #: flatcamGUI/FlatCAMGUI.py:978
  4096. msgid "Open Pref Folder"
  4097. msgstr ""
  4098. #: flatcamGUI/FlatCAMGUI.py:981
  4099. msgid "Open the folder where FlatCAM save the preferences files."
  4100. msgstr ""
  4101. #: flatcamGUI/FlatCAMGUI.py:992
  4102. msgid ""
  4103. "Save the current settings in the 'current_defaults' file\n"
  4104. "which is the file storing the working default preferences."
  4105. msgstr ""
  4106. #: flatcamGUI/FlatCAMGUI.py:1018
  4107. msgid ""
  4108. "<b>General Shortcut list</b><br>\n"
  4109. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4110. "\"width:283px\">\n"
  4111. " <tbody>\n"
  4112. " <tr height=\"20\">\n"
  4113. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4114. "td>\n"
  4115. " <td width=\"194\"><span style=\"color:"
  4116. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4117. " </tr>\n"
  4118. " <tr height=\"20\">\n"
  4119. " <td height=\"20\">&nbsp;</td>\n"
  4120. " <td>&nbsp;</td>\n"
  4121. " </tr>\n"
  4122. " <tr height=\"20\">\n"
  4123. " <td height=\"20\"><strong>1</strong></td>\n"
  4124. " <td>&nbsp;Switch to Project Tab</td>\n"
  4125. " </tr>\n"
  4126. " <tr height=\"20\">\n"
  4127. " <td height=\"20\"><strong>2</strong></td>\n"
  4128. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4129. " </tr>\n"
  4130. " <tr height=\"20\">\n"
  4131. " <td height=\"20\"><strong>3</strong></td>\n"
  4132. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4133. " </tr>\n"
  4134. " <tr height=\"20\">\n"
  4135. " <td height=\"20\">&nbsp;</td>\n"
  4136. " <td>&nbsp;</td>\n"
  4137. " </tr>\n"
  4138. " <tr height=\"20\">\n"
  4139. " <td height=\"20\"><strong>B</strong></td>\n"
  4140. " <td>&nbsp;New Gerber</td>\n"
  4141. " </tr>\n"
  4142. " <tr height=\"20\">\n"
  4143. " <td height=\"20\"><strong>E</strong></td>\n"
  4144. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4145. " </tr>\n"
  4146. " <tr height=\"20\">\n"
  4147. " <td height=\"20\"><strong>G</strong></td>\n"
  4148. " <td>&nbsp;Grid On/Off</td>\n"
  4149. " </tr>\n"
  4150. " <tr height=\"20\">\n"
  4151. " <td height=\"20\"><strong>J</strong></td>\n"
  4152. " <td>&nbsp;Jump to Coordinates</td>\n"
  4153. " </tr>\n"
  4154. " <tr height=\"20\">\n"
  4155. " <td height=\"20\"><strong>L</strong></td>\n"
  4156. " <td>&nbsp;New Excellon</td>\n"
  4157. " </tr>\n"
  4158. " <tr height=\"20\">\n"
  4159. " <td height=\"20\"><strong>M</strong></td>\n"
  4160. " <td>&nbsp;Move Obj</td>\n"
  4161. " </tr>\n"
  4162. " <tr height=\"20\">\n"
  4163. " <td height=\"20\"><strong>N</strong></td>\n"
  4164. " <td>&nbsp;New Geometry</td>\n"
  4165. " </tr>\n"
  4166. " <tr height=\"20\">\n"
  4167. " <td height=\"20\"><strong>O</strong></td>\n"
  4168. " <td>&nbsp;Set Origin</td>\n"
  4169. " </tr>\n"
  4170. " <tr height=\"20\">\n"
  4171. " <td height=\"20\"><strong>Q</strong></td>\n"
  4172. " <td>&nbsp;Change Units</td>\n"
  4173. " </tr>\n"
  4174. " <tr height=\"20\">\n"
  4175. " <td height=\"20\"><strong>P</strong></td>\n"
  4176. " <td>&nbsp;Open Properties Tool</td>\n"
  4177. " </tr>\n"
  4178. " <tr height=\"20\">\n"
  4179. " <td height=\"20\"><strong>R</strong></td>\n"
  4180. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4181. " </tr>\n"
  4182. " <tr height=\"20\">\n"
  4183. " <td height=\"20\"><strong>S</strong></td>\n"
  4184. " <td>&nbsp;Shell Toggle</td>\n"
  4185. " </tr>\n"
  4186. " <tr height=\"20\">\n"
  4187. " <td height=\"20\"><strong>T</strong></td>\n"
  4188. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4189. "or in Tools NCC or Tools Paint)</td>\n"
  4190. " </tr>\n"
  4191. " <tr height=\"20\">\n"
  4192. " <td height=\"20\"><strong>V</strong></td>\n"
  4193. " <td>&nbsp;Zoom Fit</td>\n"
  4194. " </tr>\n"
  4195. " <tr height=\"20\">\n"
  4196. " <td height=\"20\"><strong>X</strong></td>\n"
  4197. " <td>&nbsp;Flip on X_axis</td>\n"
  4198. " </tr>\n"
  4199. " <tr height=\"20\">\n"
  4200. " <td height=\"20\"><strong>Y</strong></td>\n"
  4201. " <td>&nbsp;Flip on Y_axis</td>\n"
  4202. " </tr>\n"
  4203. " <tr height=\"20\">\n"
  4204. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4205. " <td>&nbsp;Zoom Out</td>\n"
  4206. " </tr>\n"
  4207. " <tr height=\"20\">\n"
  4208. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4209. " <td>&nbsp;Zoom In</td>\n"
  4210. " </tr>\n"
  4211. " <tr height=\"20\">\n"
  4212. " <td height=\"20\">&nbsp;</td>\n"
  4213. " <td>&nbsp;</td>\n"
  4214. " </tr>\n"
  4215. " <tr height=\"20\">\n"
  4216. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4217. " <td>&nbsp;Select All</td>\n"
  4218. " </tr>\n"
  4219. " <tr height=\"20\">\n"
  4220. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4221. " <td>&nbsp;Copy Obj</td>\n"
  4222. " </tr>\n"
  4223. " <tr height=\"20\">\n"
  4224. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4225. " <td>&nbsp;Open Excellon File</td>\n"
  4226. " </tr>\n"
  4227. " <tr height=\"20\">\n"
  4228. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4229. " <td>&nbsp;Open Gerber File</td>\n"
  4230. " </tr>\n"
  4231. " <tr height=\"20\">\n"
  4232. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4233. " <td>&nbsp;New Project</td>\n"
  4234. " </tr>\n"
  4235. " <tr height=\"20\">\n"
  4236. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4237. " <td>&nbsp;Measurement Tool</td>\n"
  4238. " </tr>\n"
  4239. " <tr height=\"20\">\n"
  4240. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4241. " <td>&nbsp;Open Project</td>\n"
  4242. " </tr>\n"
  4243. " <tr height=\"20\">\n"
  4244. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4245. " <td>&nbsp;Save Project As</td>\n"
  4246. " </tr>\n"
  4247. " <tr height=\"20\">\n"
  4248. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4249. " <td>&nbsp;Toggle Plot Area</td>\n"
  4250. " </tr>\n"
  4251. " <tr height=\"20\">\n"
  4252. " <td height=\"20\">&nbsp;</td>\n"
  4253. " <td>&nbsp;</td>\n"
  4254. " </tr>\n"
  4255. " <tr height=\"20\">\n"
  4256. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4257. " <td>&nbsp;Copy Obj_Name</td>\n"
  4258. " </tr>\n"
  4259. " <tr height=\"20\">\n"
  4260. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4261. " <td>&nbsp;Toggle Code Editor</td>\n"
  4262. " </tr>\n"
  4263. " <tr height=\"20\">\n"
  4264. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4265. " <td>&nbsp;Toggle the axis</td>\n"
  4266. " </tr>\n"
  4267. " <tr height=\"20\">\n"
  4268. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4269. " <td>&nbsp;Open Preferences Window</td>\n"
  4270. " </tr>\n"
  4271. " <tr height=\"20\">\n"
  4272. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4273. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4274. " </tr>\n"
  4275. " <tr height=\"20\">\n"
  4276. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4277. " <td>&nbsp;Run a Script</td>\n"
  4278. " </tr>\n"
  4279. " <tr height=\"20\">\n"
  4280. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4281. " <td>&nbsp;Toggle the workspace</td>\n"
  4282. " </tr>\n"
  4283. " <tr height=\"20\">\n"
  4284. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4285. " <td>&nbsp;Skew on X axis</td>\n"
  4286. " </tr>\n"
  4287. " <tr height=\"20\">\n"
  4288. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4289. " <td>&nbsp;Skew on Y axis</td>\n"
  4290. " </tr>\n"
  4291. " <tr height=\"20\">\n"
  4292. " <td height=\"20\">&nbsp;</td>\n"
  4293. " <td>&nbsp;</td>\n"
  4294. " </tr>\n"
  4295. " <tr height=\"20\">\n"
  4296. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4297. " <td>&nbsp;Calculators Tool</td>\n"
  4298. " </tr>\n"
  4299. " <tr height=\"20\">\n"
  4300. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4301. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4302. " </tr>\n"
  4303. " <tr height=\"20\">\n"
  4304. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4305. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4306. " </tr>\n"
  4307. " <tr height=\"20\">\n"
  4308. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4309. " <td>&nbsp;Film PCB Tool</td>\n"
  4310. " </tr>\n"
  4311. " <tr height=\"20\">\n"
  4312. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4313. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4314. " </tr>\n"
  4315. " <tr height=\"20\">\n"
  4316. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4317. " <td>&nbsp;Paint Area Tool</td>\n"
  4318. " </tr>\n"
  4319. " <tr height=\"20\">\n"
  4320. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4321. " <td>&nbsp;PDF Import Tool</td>\n"
  4322. " </tr>\n"
  4323. " <tr height=\"20\">\n"
  4324. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4325. " <td>&nbsp;Transformations Tool</td>\n"
  4326. " </tr>\n"
  4327. " <tr height=\"20\">\n"
  4328. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4329. " <td>&nbsp;View File Source</td>\n"
  4330. " </tr>\n"
  4331. " <tr height=\"20\">\n"
  4332. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4333. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4334. " </tr>\n"
  4335. " <tr height=\"20\">\n"
  4336. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4337. " <td>&nbsp;Enable all Plots</td>\n"
  4338. " </tr>\n"
  4339. " <tr height=\"20\">\n"
  4340. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4341. " <td>&nbsp;Disable all Plots</td>\n"
  4342. " </tr>\n"
  4343. " <tr height=\"20\">\n"
  4344. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4345. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4346. " </tr>\n"
  4347. " <tr height=\"20\">\n"
  4348. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4349. " <td>&nbsp;Toggle Full Screen</td>\n"
  4350. " </tr> \n"
  4351. " <tr height=\"20\">\n"
  4352. " <td height=\"20\">&nbsp;</td>\n"
  4353. " <td>&nbsp;</td>\n"
  4354. " </tr>\n"
  4355. " <tr height=\"20\">\n"
  4356. " <td height=\"20\"><strong>CTRL+ALT+X</strong></td>\n"
  4357. " <td>&nbsp;Abort current task (gracefully)</td>\n"
  4358. " </tr> \n"
  4359. " <tr height=\"20\">\n"
  4360. " <td height=\"20\">&nbsp;</td>\n"
  4361. " <td>&nbsp;</td>\n"
  4362. " </tr>\n"
  4363. " <tr height=\"20\">\n"
  4364. " <td height=\"20\"><strong>F1</strong></td>\n"
  4365. " <td>&nbsp;Open Online Manual</td>\n"
  4366. " </tr>\n"
  4367. " <tr height=\"20\">\n"
  4368. " <td height=\"20\"><strong>F4</strong></td>\n"
  4369. " <td>&nbsp;Open Online Tutorials</td>\n"
  4370. " </tr>\n"
  4371. " <tr height=\"20\">\n"
  4372. " <td height=\"20\"><strong>Del</strong></td>\n"
  4373. " <td>&nbsp;Delete Object</td>\n"
  4374. " </tr>\n"
  4375. " <tr height=\"20\">\n"
  4376. " <td height=\"20\"><strong>Del</strong></td>\n"
  4377. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4378. " </tr>\n"
  4379. " <tr height=\"20\">\n"
  4380. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4381. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4382. "Side)</td>\n"
  4383. " </tr>\n"
  4384. " <tr height=\"20\">\n"
  4385. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4386. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4387. " </tr>\n"
  4388. " <tr height=\"20\">\n"
  4389. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4390. " <td>&nbsp;Deselects all objects</td>\n"
  4391. " </tr>\n"
  4392. " </tbody>\n"
  4393. " </table>\n"
  4394. " \n"
  4395. " "
  4396. msgstr ""
  4397. #: flatcamGUI/FlatCAMGUI.py:1311
  4398. msgid ""
  4399. "<b>Editor Shortcut list</b><br>\n"
  4400. " <br>\n"
  4401. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4402. "strong><br>\n"
  4403. " \n"
  4404. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4405. "\"width:283px\">\n"
  4406. " <tbody>\n"
  4407. " <tr height=\"20\">\n"
  4408. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4409. "td>\n"
  4410. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4411. " </tr>\n"
  4412. " <tr height=\"20\">\n"
  4413. " <td height=\"20\"><strong>B</strong></td>\n"
  4414. " <td>&nbsp;Buffer Tool</td>\n"
  4415. " </tr>\n"
  4416. " <tr height=\"20\">\n"
  4417. " <td height=\"20\"><strong>C</strong></td>\n"
  4418. " <td>&nbsp;Copy Geo Item</td>\n"
  4419. " </tr>\n"
  4420. " <tr height=\"20\">\n"
  4421. " <td height=\"20\"><strong>D</strong></td>\n"
  4422. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4423. "direction: CW or CCW</td>\n"
  4424. " </tr>\n"
  4425. " <tr height=\"20\">\n"
  4426. " <td height=\"20\"><strong>E</strong></td>\n"
  4427. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4428. " </tr>\n"
  4429. " <tr height=\"20\">\n"
  4430. " <td height=\"20\"><strong>I</strong></td>\n"
  4431. " <td>&nbsp;Paint Tool</td>\n"
  4432. " </tr>\n"
  4433. " <tr height=\"20\">\n"
  4434. " <td height=\"20\"><strong>J</strong></td>\n"
  4435. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4436. " </tr>\n"
  4437. " <tr height=\"20\">\n"
  4438. " <td height=\"20\"><strong>K</strong></td>\n"
  4439. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4440. " </tr>\n"
  4441. " <tr height=\"20\">\n"
  4442. " <td height=\"20\"><strong>M</strong></td>\n"
  4443. " <td>&nbsp;Move Geo Item</td>\n"
  4444. " </tr>\n"
  4445. " <tr height=\"20\">\n"
  4446. " <td height=\"20\"><strong>M</strong></td>\n"
  4447. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4448. "modes</td>\n"
  4449. " </tr>\n"
  4450. " <tr height=\"20\">\n"
  4451. " <td height=\"20\"><strong>N</strong></td>\n"
  4452. " <td>&nbsp;Draw a Polygon</td>\n"
  4453. " </tr>\n"
  4454. " <tr height=\"20\">\n"
  4455. " <td height=\"20\"><strong>O</strong></td>\n"
  4456. " <td>&nbsp;Draw a Circle</td>\n"
  4457. " </tr>\n"
  4458. " <tr height=\"20\">\n"
  4459. " <td height=\"20\"><strong>P</strong></td>\n"
  4460. " <td>&nbsp;Draw a Path</td>\n"
  4461. " </tr>\n"
  4462. " <tr height=\"20\">\n"
  4463. " <td height=\"20\"><strong>R</strong></td>\n"
  4464. " <td>&nbsp;Draw Rectangle</td>\n"
  4465. " </tr>\n"
  4466. " <tr height=\"20\">\n"
  4467. " <td height=\"20\"><strong>S</strong></td>\n"
  4468. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4469. " </tr>\n"
  4470. " <tr height=\"20\">\n"
  4471. " <td height=\"20\"><strong>T</strong></td>\n"
  4472. " <td>&nbsp;Add Text Tool</td>\n"
  4473. " </tr>\n"
  4474. " <tr height=\"20\">\n"
  4475. " <td height=\"20\"><strong>U</strong></td>\n"
  4476. " <td>&nbsp;Polygon Union Tool</td>\n"
  4477. " </tr>\n"
  4478. " <tr height=\"20\">\n"
  4479. " <td height=\"20\"><strong>X</strong></td>\n"
  4480. " <td>&nbsp;Flip shape on X axis</td>\n"
  4481. " </tr>\n"
  4482. " <tr height=\"20\">\n"
  4483. " <td height=\"20\"><strong>Y</strong></td>\n"
  4484. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4485. " </tr>\n"
  4486. " <tr height=\"20\">\n"
  4487. " <td height=\"20\">&nbsp;</td>\n"
  4488. " <td>&nbsp;</td>\n"
  4489. " </tr>\n"
  4490. " <tr height=\"20\">\n"
  4491. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4492. " <td>&nbsp;Skew shape on X axis</td>\n"
  4493. " </tr>\n"
  4494. " <tr height=\"20\">\n"
  4495. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4496. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4497. " </tr>\n"
  4498. " <tr height=\"20\">\n"
  4499. " <td height=\"20\">&nbsp;</td>\n"
  4500. " <td>&nbsp;</td>\n"
  4501. " </tr>\n"
  4502. " <tr height=\"20\">\n"
  4503. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4504. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4505. " </tr>\n"
  4506. " <tr height=\"20\">\n"
  4507. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4508. " <td>&nbsp;Offset shape on X axis</td>\n"
  4509. " </tr>\n"
  4510. " <tr height=\"20\">\n"
  4511. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4512. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4513. " </tr>\n"
  4514. " <tr height=\"20\">\n"
  4515. " <td height=\"20\">&nbsp;</td>\n"
  4516. " <td>&nbsp;</td>\n"
  4517. " </tr>\n"
  4518. " <tr height=\"20\">\n"
  4519. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4520. " <td>&nbsp;Measurement Tool</td>\n"
  4521. " </tr>\n"
  4522. " <tr height=\"20\">\n"
  4523. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4524. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4525. " </tr>\n"
  4526. " <tr height=\"20\">\n"
  4527. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4528. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4529. " </tr>\n"
  4530. " <tr height=\"20\">\n"
  4531. " <td height=\"20\">&nbsp;</td>\n"
  4532. " <td>&nbsp;</td>\n"
  4533. " </tr>\n"
  4534. " <tr height=\"20\">\n"
  4535. " <td height=\"20\"><strong>Space</strong></td>\n"
  4536. " <td>&nbsp;Rotate Geometry</td>\n"
  4537. " </tr>\n"
  4538. " <tr height=\"20\">\n"
  4539. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4540. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4541. " </tr>\n"
  4542. " <tr height=\"20\">\n"
  4543. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4544. " <td>&nbsp;Abort and return to Select</td>\n"
  4545. " </tr>\n"
  4546. " <tr height=\"20\">\n"
  4547. " <td height=\"20\"><strong>Del</strong></td>\n"
  4548. " <td>&nbsp;Delete Shape</td>\n"
  4549. " </tr>\n"
  4550. " </tbody>\n"
  4551. " </table>\n"
  4552. " <br>\n"
  4553. " <br>\n"
  4554. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4555. "strong><br>\n"
  4556. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4557. "\"width:283px\">\n"
  4558. " <tbody>\n"
  4559. " <tr height=\"20\">\n"
  4560. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4561. "td>\n"
  4562. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4563. " </tr>\n"
  4564. " <tr height=\"20\">\n"
  4565. " <td height=\"20\"><strong>C</strong></td>\n"
  4566. " <td>&nbsp;Copy Drill(s)</td>\n"
  4567. " </tr>\n"
  4568. " <tr height=\"20\">\n"
  4569. " <td height=\"20\"><strong>D</strong></td>\n"
  4570. " <td>&nbsp;Add Drill</td>\n"
  4571. " </tr>\n"
  4572. " <tr height=\"20\">\n"
  4573. " <td height=\"20\"><strong>J</strong></td>\n"
  4574. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4575. " </tr>\n"
  4576. " <tr height=\"20\">\n"
  4577. " <td height=\"20\"><strong>M</strong></td>\n"
  4578. " <td>&nbsp;Move Drill(s)</td>\n"
  4579. " </tr>\n"
  4580. " <tr height=\"20\">\n"
  4581. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4582. "td>\n"
  4583. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4584. " </tr>\n"
  4585. " <tr height=\"20\">\n"
  4586. " <td height=\"20\"><strong>R</strong></td>\n"
  4587. " <td>&nbsp;Resize Drill(s)</td>\n"
  4588. " </tr>\n"
  4589. " <tr height=\"20\">\n"
  4590. " <td height=\"20\"><strong>T</strong></td>\n"
  4591. " <td>&nbsp;Add a new Tool</td>\n"
  4592. " </tr>\n"
  4593. " <tr height=\"20\">\n"
  4594. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4595. "td>\n"
  4596. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4597. " </tr>\n"
  4598. " <tr height=\"20\">\n"
  4599. " <td height=\"20\">&nbsp;</td>\n"
  4600. " <td>&nbsp;</td>\n"
  4601. " </tr>\n"
  4602. " <tr height=\"20\">\n"
  4603. " <td height=\"20\"><strong>Del</strong></td>\n"
  4604. " <td>&nbsp;Delete Drill(s)</td>\n"
  4605. " </tr>\n"
  4606. " <tr height=\"20\">\n"
  4607. " <td height=\"20\"><strong>Del</strong></td>\n"
  4608. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4609. " </tr>\n"
  4610. " <tr height=\"20\">\n"
  4611. " <td height=\"20\">&nbsp;</td>\n"
  4612. " <td>&nbsp;</td>\n"
  4613. " </tr>\n"
  4614. " <tr height=\"20\">\n"
  4615. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4616. " <td>&nbsp;Abort and return to Select</td>\n"
  4617. " </tr>\n"
  4618. " <tr height=\"20\">\n"
  4619. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4620. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4621. " </tr>\n"
  4622. " </tbody>\n"
  4623. " </table>\n"
  4624. " <br>\n"
  4625. " <br>\n"
  4626. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4627. "strong><br>\n"
  4628. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4629. "\"width:283px\">\n"
  4630. " <tbody>\n"
  4631. " <tr height=\"20\">\n"
  4632. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4633. "td>\n"
  4634. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4635. " </tr>\n"
  4636. " <tr height=\"20\">\n"
  4637. " <td height=\"20\"><strong>B</strong></td>\n"
  4638. " <td>&nbsp;Buffer</td>\n"
  4639. " </tr>\n"
  4640. " <tr height=\"20\">\n"
  4641. " <td height=\"20\"><strong>C</strong></td>\n"
  4642. " <td>&nbsp;Copy</td>\n"
  4643. " </tr>\n"
  4644. " <tr height=\"20\">\n"
  4645. " <td height=\"20\"><strong>D</strong></td>\n"
  4646. " <td>&nbsp;Add Disc</td>\n"
  4647. " </tr>\n"
  4648. " <tr height=\"20\">\n"
  4649. " <td height=\"20\"><strong>E</strong></td>\n"
  4650. " <td>&nbsp;Add SemiDisc</td>\n"
  4651. " </tr>\n"
  4652. " <tr height=\"20\">\n"
  4653. " <td height=\"20\"><strong>J</strong></td>\n"
  4654. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4655. " </tr>\n"
  4656. " <tr height=\"20\">\n"
  4657. " <td height=\"20\"><strong>M</strong></td>\n"
  4658. " <td>&nbsp;Move</td>\n"
  4659. " </tr>\n"
  4660. " <tr height=\"20\">\n"
  4661. " <td height=\"20\"><strong>N</strong></td>\n"
  4662. " <td>&nbsp;Add Region</td>\n"
  4663. " </tr>\n"
  4664. " <tr height=\"20\">\n"
  4665. " <td height=\"20\"><strong>P</strong></td>\n"
  4666. " <td>&nbsp;Add Pad</td>\n"
  4667. " </tr>\n"
  4668. " <tr height=\"20\">\n"
  4669. " <td height=\"20\"><strong>R</strong></td>\n"
  4670. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4671. "REVERSE the bend modes</td>\n"
  4672. " </tr>\n"
  4673. " <tr height=\"20\">\n"
  4674. " <td height=\"20\"><strong>S</strong></td>\n"
  4675. " <td>&nbsp;Scale</td>\n"
  4676. " </tr>\n"
  4677. " <tr height=\"20\">\n"
  4678. " <td height=\"20\"><strong>T</strong></td>\n"
  4679. " <td>&nbsp;Add Track</td>\n"
  4680. " </tr>\n"
  4681. " <tr height=\"20\">\n"
  4682. " <td height=\"20\"><strong>T</strong></td>\n"
  4683. " <td>&nbsp;Within Track & Region Tools will cycle "
  4684. "FORWARD the bend modes</td>\n"
  4685. " </tr>\n"
  4686. " <tr height=\"20\">\n"
  4687. " <td height=\"20\">&nbsp;</td>\n"
  4688. " <td>&nbsp;</td>\n"
  4689. " </tr>\n"
  4690. " <tr height=\"20\">\n"
  4691. " <td height=\"20\"><strong>Del</strong></td>\n"
  4692. " <td>&nbsp;Delete</td>\n"
  4693. " </tr>\n"
  4694. " <tr height=\"20\">\n"
  4695. " <td height=\"20\"><strong>Del</strong></td>\n"
  4696. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4697. " </tr>\n"
  4698. " <tr height=\"20\">\n"
  4699. " <td height=\"20\">&nbsp;</td>\n"
  4700. " <td>&nbsp;</td>\n"
  4701. " </tr>\n"
  4702. " <tr height=\"20\">\n"
  4703. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4704. " <td>&nbsp;Abort and return to Select</td>\n"
  4705. " </tr>\n"
  4706. " <tr height=\"20\">\n"
  4707. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4708. " <td>&nbsp;Eraser Tool</td>\n"
  4709. " </tr>\n"
  4710. " <tr height=\"20\">\n"
  4711. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4712. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4713. " </tr>\n"
  4714. " <tr height=\"20\">\n"
  4715. " <td height=\"20\">&nbsp;</td>\n"
  4716. " <td>&nbsp;</td>\n"
  4717. " </tr>\n"
  4718. " <tr height=\"20\">\n"
  4719. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4720. " <td>&nbsp;Mark Area Tool</td>\n"
  4721. " </tr>\n"
  4722. " <tr height=\"20\">\n"
  4723. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4724. " <td>&nbsp;Poligonize Tool</td>\n"
  4725. " </tr>\n"
  4726. " <tr height=\"20\">\n"
  4727. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4728. " <td>&nbsp;Transformation Tool</td>\n"
  4729. " </tr>\n"
  4730. " </tbody>\n"
  4731. " </table>\n"
  4732. " "
  4733. msgstr ""
  4734. #: flatcamGUI/FlatCAMGUI.py:1642
  4735. msgid "Toggle Visibility"
  4736. msgstr ""
  4737. #: flatcamGUI/FlatCAMGUI.py:1643
  4738. msgid "Toggle Panel"
  4739. msgstr ""
  4740. #: flatcamGUI/FlatCAMGUI.py:1646
  4741. msgid "New"
  4742. msgstr ""
  4743. #: flatcamGUI/FlatCAMGUI.py:1647
  4744. msgid "Geometry"
  4745. msgstr ""
  4746. #: flatcamGUI/FlatCAMGUI.py:1649
  4747. msgid "Excellon"
  4748. msgstr ""
  4749. #: flatcamGUI/FlatCAMGUI.py:1654
  4750. msgid "Grids"
  4751. msgstr ""
  4752. #: flatcamGUI/FlatCAMGUI.py:1656
  4753. msgid "View"
  4754. msgstr ""
  4755. #: flatcamGUI/FlatCAMGUI.py:1658
  4756. msgid "Clear Plot"
  4757. msgstr ""
  4758. #: flatcamGUI/FlatCAMGUI.py:1659
  4759. msgid "Replot"
  4760. msgstr ""
  4761. #: flatcamGUI/FlatCAMGUI.py:1662
  4762. msgid "Geo Editor"
  4763. msgstr ""
  4764. #: flatcamGUI/FlatCAMGUI.py:1663
  4765. msgid "Path"
  4766. msgstr ""
  4767. #: flatcamGUI/FlatCAMGUI.py:1664
  4768. msgid "Rectangle"
  4769. msgstr ""
  4770. #: flatcamGUI/FlatCAMGUI.py:1666
  4771. msgid "Circle"
  4772. msgstr ""
  4773. #: flatcamGUI/FlatCAMGUI.py:1667
  4774. msgid "Polygon"
  4775. msgstr ""
  4776. #: flatcamGUI/FlatCAMGUI.py:1668
  4777. msgid "Arc"
  4778. msgstr ""
  4779. #: flatcamGUI/FlatCAMGUI.py:1671
  4780. msgid "Text"
  4781. msgstr ""
  4782. #: flatcamGUI/FlatCAMGUI.py:1677
  4783. msgid "Union"
  4784. msgstr ""
  4785. #: flatcamGUI/FlatCAMGUI.py:1678
  4786. msgid "Intersection"
  4787. msgstr ""
  4788. #: flatcamGUI/FlatCAMGUI.py:1679
  4789. msgid "Substraction"
  4790. msgstr ""
  4791. #: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
  4792. #: flatcamGUI/ObjectUI.py:1409
  4793. msgid "Cut"
  4794. msgstr ""
  4795. #: flatcamGUI/FlatCAMGUI.py:1687
  4796. msgid "Pad"
  4797. msgstr ""
  4798. #: flatcamGUI/FlatCAMGUI.py:1688
  4799. msgid "Pad Array"
  4800. msgstr ""
  4801. #: flatcamGUI/FlatCAMGUI.py:1691
  4802. msgid "Track"
  4803. msgstr ""
  4804. #: flatcamGUI/FlatCAMGUI.py:1692
  4805. msgid "Region"
  4806. msgstr ""
  4807. #: flatcamGUI/FlatCAMGUI.py:1708
  4808. msgid "Exc Editor"
  4809. msgstr ""
  4810. #: flatcamGUI/FlatCAMGUI.py:1709
  4811. msgid "Add Drill"
  4812. msgstr ""
  4813. #: flatcamGUI/FlatCAMGUI.py:1745
  4814. msgid "Print Preview"
  4815. msgstr ""
  4816. #: flatcamGUI/FlatCAMGUI.py:1746
  4817. msgid "Print Code"
  4818. msgstr ""
  4819. #: flatcamGUI/FlatCAMGUI.py:1747
  4820. msgid "Find in Code"
  4821. msgstr ""
  4822. #: flatcamGUI/FlatCAMGUI.py:1752
  4823. msgid "Replace With"
  4824. msgstr ""
  4825. #: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
  4826. #: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
  4827. msgid "All"
  4828. msgstr ""
  4829. #: flatcamGUI/FlatCAMGUI.py:1758
  4830. msgid ""
  4831. "When checked it will replace all instances in the 'Find' box\n"
  4832. "with the text in the 'Replace' box.."
  4833. msgstr ""
  4834. #: flatcamGUI/FlatCAMGUI.py:1761
  4835. msgid "Open Code"
  4836. msgstr ""
  4837. #: flatcamGUI/FlatCAMGUI.py:1762
  4838. msgid "Save Code"
  4839. msgstr ""
  4840. #: flatcamGUI/FlatCAMGUI.py:1797
  4841. msgid ""
  4842. "Relative neasurement.\n"
  4843. "Reference is last click position"
  4844. msgstr ""
  4845. #: flatcamGUI/FlatCAMGUI.py:1803
  4846. msgid ""
  4847. "Absolute neasurement.\n"
  4848. "Reference is (X=0, Y= 0) position"
  4849. msgstr ""
  4850. #: flatcamGUI/FlatCAMGUI.py:1933
  4851. msgid "Lock Toolbars"
  4852. msgstr ""
  4853. #: flatcamGUI/FlatCAMGUI.py:2038
  4854. msgid "Select 'Esc'"
  4855. msgstr ""
  4856. #: flatcamGUI/FlatCAMGUI.py:2063
  4857. msgid "Copy Objects"
  4858. msgstr ""
  4859. #: flatcamGUI/FlatCAMGUI.py:2065
  4860. msgid "Delete Shape"
  4861. msgstr ""
  4862. #: flatcamGUI/FlatCAMGUI.py:2070
  4863. msgid "Move Objects"
  4864. msgstr ""
  4865. #: flatcamGUI/FlatCAMGUI.py:2506
  4866. msgid ""
  4867. "Please first select a geometry item to be cutted\n"
  4868. "then select the geometry item that will be cutted\n"
  4869. "out of the first item. In the end press ~X~ key or\n"
  4870. "the toolbar button."
  4871. msgstr ""
  4872. #: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
  4873. #: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
  4874. msgid "Warning"
  4875. msgstr ""
  4876. #: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
  4877. msgid "[success] Done."
  4878. msgstr ""
  4879. #: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
  4880. #: flatcamGUI/FlatCAMGUI.py:2999
  4881. msgid "[WARNING_NOTCL] Cancelled."
  4882. msgstr ""
  4883. #: flatcamGUI/FlatCAMGUI.py:2645
  4884. msgid ""
  4885. "Please select geometry items \n"
  4886. "on which to perform Intersection Tool."
  4887. msgstr ""
  4888. #: flatcamGUI/FlatCAMGUI.py:2704
  4889. msgid ""
  4890. "Please select geometry items \n"
  4891. "on which to perform Substraction Tool."
  4892. msgstr ""
  4893. #: flatcamGUI/FlatCAMGUI.py:2724
  4894. msgid ""
  4895. "Please select geometry items \n"
  4896. "on which to perform union."
  4897. msgstr ""
  4898. #: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
  4899. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4900. msgstr ""
  4901. #: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
  4902. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4903. msgstr ""
  4904. #: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
  4905. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4906. msgstr ""
  4907. #: flatcamGUI/FlatCAMGUI.py:3155
  4908. msgid "New Tool ..."
  4909. msgstr ""
  4910. #: flatcamGUI/FlatCAMGUI.py:3156
  4911. msgid "Enter a Tool Diameter"
  4912. msgstr ""
  4913. #: flatcamGUI/FlatCAMGUI.py:3164
  4914. #, python-brace-format
  4915. msgid "[success] Added new tool with dia: {dia} {units}"
  4916. msgstr ""
  4917. #: flatcamGUI/FlatCAMGUI.py:3211
  4918. msgid "Measurement Tool exit..."
  4919. msgstr ""
  4920. #: flatcamGUI/FlatCAMGUI.py:3312
  4921. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  4922. msgstr ""
  4923. #: flatcamGUI/FlatCAMGUI.py:3554
  4924. msgid "GUI Preferences"
  4925. msgstr ""
  4926. #: flatcamGUI/FlatCAMGUI.py:3560
  4927. msgid "Grid X value"
  4928. msgstr ""
  4929. #: flatcamGUI/FlatCAMGUI.py:3562
  4930. msgid "This is the Grid snap value on X axis."
  4931. msgstr ""
  4932. #: flatcamGUI/FlatCAMGUI.py:3567
  4933. msgid "Grid Y value"
  4934. msgstr ""
  4935. #: flatcamGUI/FlatCAMGUI.py:3569
  4936. msgid "This is the Grid snap value on Y axis."
  4937. msgstr ""
  4938. #: flatcamGUI/FlatCAMGUI.py:3574
  4939. msgid "Snap Max"
  4940. msgstr ""
  4941. #: flatcamGUI/FlatCAMGUI.py:3579
  4942. msgid "Workspace"
  4943. msgstr ""
  4944. #: flatcamGUI/FlatCAMGUI.py:3581
  4945. msgid ""
  4946. "Draw a delimiting rectangle on canvas.\n"
  4947. "The purpose is to illustrate the limits for our work."
  4948. msgstr ""
  4949. #: flatcamGUI/FlatCAMGUI.py:3584
  4950. msgid "Wk. format"
  4951. msgstr ""
  4952. #: flatcamGUI/FlatCAMGUI.py:3586
  4953. msgid ""
  4954. "Select the type of rectangle to be used on canvas,\n"
  4955. "as valid workspace."
  4956. msgstr ""
  4957. #: flatcamGUI/FlatCAMGUI.py:3599
  4958. msgid "Plot Fill"
  4959. msgstr ""
  4960. #: flatcamGUI/FlatCAMGUI.py:3601
  4961. msgid ""
  4962. "Set the fill color for plotted objects.\n"
  4963. "First 6 digits are the color and the last 2\n"
  4964. "digits are for alpha (transparency) level."
  4965. msgstr ""
  4966. #: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
  4967. #: flatcamGUI/FlatCAMGUI.py:3715
  4968. msgid "Alpha Level"
  4969. msgstr ""
  4970. #: flatcamGUI/FlatCAMGUI.py:3617
  4971. msgid "Set the fill transparency for plotted objects."
  4972. msgstr ""
  4973. #: flatcamGUI/FlatCAMGUI.py:3634
  4974. msgid "Plot Line"
  4975. msgstr ""
  4976. #: flatcamGUI/FlatCAMGUI.py:3636
  4977. msgid "Set the line color for plotted objects."
  4978. msgstr ""
  4979. #: flatcamGUI/FlatCAMGUI.py:3648
  4980. msgid "Sel. Fill"
  4981. msgstr ""
  4982. #: flatcamGUI/FlatCAMGUI.py:3650
  4983. msgid ""
  4984. "Set the fill color for the selection box\n"
  4985. "in case that the selection is done from left to right.\n"
  4986. "First 6 digits are the color and the last 2\n"
  4987. "digits are for alpha (transparency) level."
  4988. msgstr ""
  4989. #: flatcamGUI/FlatCAMGUI.py:3667
  4990. msgid "Set the fill transparency for the 'left to right' selection box."
  4991. msgstr ""
  4992. #: flatcamGUI/FlatCAMGUI.py:3684
  4993. msgid "Sel. Line"
  4994. msgstr ""
  4995. #: flatcamGUI/FlatCAMGUI.py:3686
  4996. msgid "Set the line color for the 'left to right' selection box."
  4997. msgstr ""
  4998. #: flatcamGUI/FlatCAMGUI.py:3698
  4999. msgid "Sel2. Fill"
  5000. msgstr ""
  5001. #: flatcamGUI/FlatCAMGUI.py:3700
  5002. msgid ""
  5003. "Set the fill color for the selection box\n"
  5004. "in case that the selection is done from right to left.\n"
  5005. "First 6 digits are the color and the last 2\n"
  5006. "digits are for alpha (transparency) level."
  5007. msgstr ""
  5008. #: flatcamGUI/FlatCAMGUI.py:3717
  5009. msgid "Set the fill transparency for selection 'right to left' box."
  5010. msgstr ""
  5011. #: flatcamGUI/FlatCAMGUI.py:3734
  5012. msgid "Sel2. Line"
  5013. msgstr ""
  5014. #: flatcamGUI/FlatCAMGUI.py:3736
  5015. msgid "Set the line color for the 'right to left' selection box."
  5016. msgstr ""
  5017. #: flatcamGUI/FlatCAMGUI.py:3748
  5018. msgid "Editor Draw"
  5019. msgstr ""
  5020. #: flatcamGUI/FlatCAMGUI.py:3750
  5021. msgid "Set the color for the shape."
  5022. msgstr ""
  5023. #: flatcamGUI/FlatCAMGUI.py:3762
  5024. msgid "Editor Draw Sel."
  5025. msgstr ""
  5026. #: flatcamGUI/FlatCAMGUI.py:3764
  5027. msgid "Set the color of the shape when selected."
  5028. msgstr ""
  5029. #: flatcamGUI/FlatCAMGUI.py:3776
  5030. msgid "Project Items"
  5031. msgstr ""
  5032. #: flatcamGUI/FlatCAMGUI.py:3778
  5033. msgid "Set the color of the items in Project Tab Tree."
  5034. msgstr ""
  5035. #: flatcamGUI/FlatCAMGUI.py:3789
  5036. msgid "Proj. Dis. Items"
  5037. msgstr ""
  5038. #: flatcamGUI/FlatCAMGUI.py:3791
  5039. msgid ""
  5040. "Set the color of the items in Project Tab Tree,\n"
  5041. "for the case when the items are disabled."
  5042. msgstr ""
  5043. #: flatcamGUI/FlatCAMGUI.py:3842
  5044. msgid "GUI Settings"
  5045. msgstr ""
  5046. #: flatcamGUI/FlatCAMGUI.py:3848
  5047. msgid "Layout"
  5048. msgstr ""
  5049. #: flatcamGUI/FlatCAMGUI.py:3850
  5050. msgid ""
  5051. "Select an layout for FlatCAM.\n"
  5052. "It is applied immediately."
  5053. msgstr ""
  5054. #: flatcamGUI/FlatCAMGUI.py:3866
  5055. msgid "Style"
  5056. msgstr ""
  5057. #: flatcamGUI/FlatCAMGUI.py:3868
  5058. msgid ""
  5059. "Select an style for FlatCAM.\n"
  5060. "It will be applied at the next app start."
  5061. msgstr ""
  5062. #: flatcamGUI/FlatCAMGUI.py:3879
  5063. msgid "HDPI Support"
  5064. msgstr ""
  5065. #: flatcamGUI/FlatCAMGUI.py:3881
  5066. msgid ""
  5067. "Enable High DPI support for FlatCAM.\n"
  5068. "It will be applied at the next app start."
  5069. msgstr ""
  5070. #: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
  5071. msgid "Clear GUI Settings"
  5072. msgstr ""
  5073. #: flatcamGUI/FlatCAMGUI.py:3896
  5074. msgid ""
  5075. "Clear the GUI settings for FlatCAM,\n"
  5076. "such as: layout, gui state, style, hdpi support etc."
  5077. msgstr ""
  5078. #: flatcamGUI/FlatCAMGUI.py:3899
  5079. msgid "Clear"
  5080. msgstr ""
  5081. #: flatcamGUI/FlatCAMGUI.py:3903
  5082. msgid "Hover Shape"
  5083. msgstr ""
  5084. #: flatcamGUI/FlatCAMGUI.py:3905
  5085. msgid ""
  5086. "Enable display of a hover shape for FlatCAM objects.\n"
  5087. "It is displayed whenever the mouse cursor is hovering\n"
  5088. "over any kind of not-selected object."
  5089. msgstr ""
  5090. #: flatcamGUI/FlatCAMGUI.py:3912
  5091. msgid "Sel. Shape"
  5092. msgstr ""
  5093. #: flatcamGUI/FlatCAMGUI.py:3914
  5094. msgid ""
  5095. "Enable the display of a selection shape for FlatCAM objects.\n"
  5096. "It is displayed whenever the mouse selects an object\n"
  5097. "either by clicking or dragging mouse from left to right or\n"
  5098. "right to left."
  5099. msgstr ""
  5100. #: flatcamGUI/FlatCAMGUI.py:3921
  5101. msgid "NB Font Size"
  5102. msgstr ""
  5103. #: flatcamGUI/FlatCAMGUI.py:3923
  5104. msgid ""
  5105. "This sets the font size for the elements found in the Notebook.\n"
  5106. "The notebook is the collapsible area in the left side of the GUI,\n"
  5107. "and include the Project, Selected and Tool tabs."
  5108. msgstr ""
  5109. #: flatcamGUI/FlatCAMGUI.py:3938
  5110. msgid "Axis Font Size"
  5111. msgstr ""
  5112. #: flatcamGUI/FlatCAMGUI.py:3940
  5113. msgid "This sets the font size for canvas axis."
  5114. msgstr ""
  5115. #: flatcamGUI/FlatCAMGUI.py:3991
  5116. msgid "Are you sure you want to delete the GUI Settings? \n"
  5117. msgstr ""
  5118. #: flatcamGUI/FlatCAMGUI.py:4015
  5119. msgid "App Preferences"
  5120. msgstr ""
  5121. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
  5122. #: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
  5123. #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
  5124. msgid "Units"
  5125. msgstr ""
  5126. #: flatcamGUI/FlatCAMGUI.py:4022
  5127. msgid ""
  5128. "The default value for FlatCAM units.\n"
  5129. "Whatever is selected here is set every time\n"
  5130. "FLatCAM is started."
  5131. msgstr ""
  5132. #: flatcamGUI/FlatCAMGUI.py:4025
  5133. msgid "IN"
  5134. msgstr ""
  5135. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
  5136. #: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
  5137. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5138. msgid "MM"
  5139. msgstr ""
  5140. #: flatcamGUI/FlatCAMGUI.py:4029
  5141. msgid "APP. LEVEL"
  5142. msgstr ""
  5143. #: flatcamGUI/FlatCAMGUI.py:4030
  5144. msgid ""
  5145. "Choose the default level of usage for FlatCAM.\n"
  5146. "BASIC level -> reduced functionality, best for beginner's.\n"
  5147. "ADVANCED level -> full functionality.\n"
  5148. "\n"
  5149. "The choice here will influence the parameters in\n"
  5150. "the Selected Tab for all kinds of FlatCAM objects."
  5151. msgstr ""
  5152. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
  5153. msgid "Basic"
  5154. msgstr ""
  5155. #: flatcamGUI/FlatCAMGUI.py:4036
  5156. msgid "Advanced"
  5157. msgstr ""
  5158. #: flatcamGUI/FlatCAMGUI.py:4039
  5159. msgid "Portable app"
  5160. msgstr ""
  5161. #: flatcamGUI/FlatCAMGUI.py:4040
  5162. msgid ""
  5163. "Choose if the application should run as portable.\n"
  5164. "\n"
  5165. "If Checked the application will run portable,\n"
  5166. "which means that the preferences files will be saved\n"
  5167. "in the application folder, in the lib\\config subfolder."
  5168. msgstr ""
  5169. #: flatcamGUI/FlatCAMGUI.py:4047
  5170. msgid "Languages"
  5171. msgstr ""
  5172. #: flatcamGUI/FlatCAMGUI.py:4048
  5173. msgid "Set the language used throughout FlatCAM."
  5174. msgstr ""
  5175. #: flatcamGUI/FlatCAMGUI.py:4051
  5176. msgid "Apply Language"
  5177. msgstr ""
  5178. #: flatcamGUI/FlatCAMGUI.py:4052
  5179. msgid ""
  5180. "Set the language used throughout FlatCAM.\n"
  5181. "The app will restart after click.Windows: When FlatCAM is installed in "
  5182. "Program Files\n"
  5183. "directory, it is possible that the app will not\n"
  5184. "restart after the button is clicked due of Windows\n"
  5185. "security features. In this case the language will be\n"
  5186. "applied at the next app start."
  5187. msgstr ""
  5188. #: flatcamGUI/FlatCAMGUI.py:4061
  5189. msgid "Shell at StartUp"
  5190. msgstr ""
  5191. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
  5192. msgid ""
  5193. "Check this box if you want the shell to\n"
  5194. "start automatically at startup."
  5195. msgstr ""
  5196. #: flatcamGUI/FlatCAMGUI.py:4073
  5197. msgid "Version Check"
  5198. msgstr ""
  5199. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
  5200. msgid ""
  5201. "Check this box if you want to check\n"
  5202. "for a new version automatically at startup."
  5203. msgstr ""
  5204. #: flatcamGUI/FlatCAMGUI.py:4085
  5205. msgid "Send Stats"
  5206. msgstr ""
  5207. #: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
  5208. msgid ""
  5209. "Check this box if you agree to send anonymous\n"
  5210. "stats automatically at startup, to help improve FlatCAM."
  5211. msgstr ""
  5212. #: flatcamGUI/FlatCAMGUI.py:4099
  5213. msgid "Pan Button"
  5214. msgstr ""
  5215. #: flatcamGUI/FlatCAMGUI.py:4100
  5216. msgid ""
  5217. "Select the mouse button to use for panning:\n"
  5218. "- MMB --> Middle Mouse Button\n"
  5219. "- RMB --> Right Mouse Button"
  5220. msgstr ""
  5221. #: flatcamGUI/FlatCAMGUI.py:4103
  5222. msgid "MMB"
  5223. msgstr ""
  5224. #: flatcamGUI/FlatCAMGUI.py:4104
  5225. msgid "RMB"
  5226. msgstr ""
  5227. #: flatcamGUI/FlatCAMGUI.py:4107
  5228. msgid "Multiple Sel"
  5229. msgstr ""
  5230. #: flatcamGUI/FlatCAMGUI.py:4108
  5231. msgid "Select the key used for multiple selection."
  5232. msgstr ""
  5233. #: flatcamGUI/FlatCAMGUI.py:4109
  5234. msgid "CTRL"
  5235. msgstr ""
  5236. #: flatcamGUI/FlatCAMGUI.py:4110
  5237. msgid "SHIFT"
  5238. msgstr ""
  5239. #: flatcamGUI/FlatCAMGUI.py:4113
  5240. msgid "Project at StartUp"
  5241. msgstr ""
  5242. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
  5243. msgid ""
  5244. "Check this box if you want the project/selected/tool tab area to\n"
  5245. "to be shown automatically at startup."
  5246. msgstr ""
  5247. #: flatcamGUI/FlatCAMGUI.py:4125
  5248. msgid "Project AutoHide"
  5249. msgstr ""
  5250. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
  5251. msgid ""
  5252. "Check this box if you want the project/selected/tool tab area to\n"
  5253. "hide automatically when there are no objects loaded and\n"
  5254. "to show whenever a new object is created."
  5255. msgstr ""
  5256. #: flatcamGUI/FlatCAMGUI.py:4139
  5257. msgid "Enable ToolTips"
  5258. msgstr ""
  5259. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
  5260. msgid ""
  5261. "Check this box if you want to have toolTips displayed\n"
  5262. "when hovering with mouse over items throughout the App."
  5263. msgstr ""
  5264. #: flatcamGUI/FlatCAMGUI.py:4149
  5265. msgid "Workers number"
  5266. msgstr ""
  5267. #: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
  5268. msgid ""
  5269. "The number of Qthreads made available to the App.\n"
  5270. "A bigger number may finish the jobs more quickly but\n"
  5271. "depending on your computer speed, may make the App\n"
  5272. "unresponsive. Can have a value between 2 and 16.\n"
  5273. "Default value is 2.\n"
  5274. "After change, it will be applied at next App start."
  5275. msgstr ""
  5276. #: flatcamGUI/FlatCAMGUI.py:4170
  5277. msgid "Geo Tolerance"
  5278. msgstr ""
  5279. #: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
  5280. msgid ""
  5281. "This value can counter the effect of the Circle Steps\n"
  5282. "parameter. Default value is 0.01.\n"
  5283. "A lower value will increase the detail both in image\n"
  5284. "and in Gcode for the circles, with a higher cost in\n"
  5285. "performance. Higher value will provide more\n"
  5286. "performance at the expense of level of detail."
  5287. msgstr ""
  5288. #: flatcamGUI/FlatCAMGUI.py:4220
  5289. msgid "\"Open\" behavior"
  5290. msgstr ""
  5291. #: flatcamGUI/FlatCAMGUI.py:4222
  5292. msgid ""
  5293. "When checked the path for the last saved file is used when saving files,\n"
  5294. "and the path for the last opened file is used when opening files.\n"
  5295. "\n"
  5296. "When unchecked the path for opening files is the one used last: either the\n"
  5297. "path for saving files or the path for opening files."
  5298. msgstr ""
  5299. #: flatcamGUI/FlatCAMGUI.py:4231
  5300. msgid "Delete object confirmation"
  5301. msgstr ""
  5302. #: flatcamGUI/FlatCAMGUI.py:4233
  5303. msgid ""
  5304. "When checked the application will ask for user confirmation\n"
  5305. "whenever the Delete object(s) event is triggered, either by\n"
  5306. "menu shortcut or key shortcut."
  5307. msgstr ""
  5308. #: flatcamGUI/FlatCAMGUI.py:4240
  5309. msgid "Save Compressed Project"
  5310. msgstr ""
  5311. #: flatcamGUI/FlatCAMGUI.py:4242
  5312. msgid ""
  5313. "Whether to save a compressed or uncompressed project.\n"
  5314. "When checked it will save a compressed FlatCAM project."
  5315. msgstr ""
  5316. #: flatcamGUI/FlatCAMGUI.py:4253
  5317. msgid "Compression Level"
  5318. msgstr ""
  5319. #: flatcamGUI/FlatCAMGUI.py:4255
  5320. msgid ""
  5321. "The level of compression used when saving\n"
  5322. "a FlatCAM project. Higher value means better compression\n"
  5323. "but require more RAM usage and more processing time."
  5324. msgstr ""
  5325. #: flatcamGUI/FlatCAMGUI.py:4281
  5326. msgid "Gerber General"
  5327. msgstr ""
  5328. #: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
  5329. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
  5330. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
  5331. #: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
  5332. msgid "Plot Options"
  5333. msgstr ""
  5334. #: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
  5335. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
  5336. msgid "Solid"
  5337. msgstr ""
  5338. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
  5339. msgid "Solid color polygons."
  5340. msgstr ""
  5341. #: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
  5342. msgid "M-Color"
  5343. msgstr ""
  5344. #: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
  5345. msgid "Draw polygons in different colors."
  5346. msgstr ""
  5347. #: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
  5348. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
  5349. #: flatcamGUI/ObjectUI.py:601
  5350. msgid "Plot"
  5351. msgstr ""
  5352. #: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
  5353. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
  5354. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
  5355. #: flatcamGUI/ObjectUI.py:1503
  5356. msgid "Plot (show) this object."
  5357. msgstr ""
  5358. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
  5359. #: flatcamGUI/FlatCAMGUI.py:6230
  5360. msgid "Circle Steps"
  5361. msgstr ""
  5362. #: flatcamGUI/FlatCAMGUI.py:4314
  5363. msgid ""
  5364. "The number of circle steps for Gerber \n"
  5365. "circular aperture linear approximation."
  5366. msgstr ""
  5367. #: flatcamGUI/FlatCAMGUI.py:4324
  5368. msgid ""
  5369. "Buffering type:\n"
  5370. "- None --> best performance, fast file loading but no so good display\n"
  5371. "- Full --> slow file loading but good visuals. This is the default.\n"
  5372. "<<WARNING>>: Don't change this unless you know what you are doing !!!"
  5373. msgstr ""
  5374. #: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
  5375. #: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
  5376. #: flatcamTools/ToolProperties.py:318
  5377. msgid "None"
  5378. msgstr ""
  5379. #: flatcamGUI/FlatCAMGUI.py:4330
  5380. msgid "Full"
  5381. msgstr ""
  5382. #: flatcamGUI/FlatCAMGUI.py:4342
  5383. msgid "Gerber Options"
  5384. msgstr ""
  5385. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
  5386. msgid "Isolation Routing"
  5387. msgstr ""
  5388. #: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
  5389. msgid ""
  5390. "Create a Geometry object with\n"
  5391. "toolpaths to cut outside polygons."
  5392. msgstr ""
  5393. #: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
  5394. #: flatcamGUI/ObjectUI.py:848
  5395. msgid "Diameter of the cutting tool."
  5396. msgstr ""
  5397. #: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
  5398. msgid "# Passes"
  5399. msgstr ""
  5400. #: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
  5401. msgid ""
  5402. "Width of the isolation gap in\n"
  5403. "number (integer) of tool widths."
  5404. msgstr ""
  5405. #: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
  5406. msgid "Pass overlap"
  5407. msgstr ""
  5408. #: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
  5409. #, python-format
  5410. msgid ""
  5411. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5412. "Example:\n"
  5413. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5414. "above."
  5415. msgstr ""
  5416. #: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
  5417. #: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
  5418. msgid "Milling Type"
  5419. msgstr ""
  5420. #: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
  5421. msgid ""
  5422. "Milling type:\n"
  5423. "- climb / best for precision milling and to reduce tool usage\n"
  5424. "- conventional / useful when there is no backlash compensation"
  5425. msgstr ""
  5426. #: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
  5427. #: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
  5428. msgid "Climb"
  5429. msgstr ""
  5430. #: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
  5431. #: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
  5432. msgid "Conv."
  5433. msgstr ""
  5434. #: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
  5435. msgid "Combine Passes"
  5436. msgstr ""
  5437. #: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
  5438. msgid "Combine all passes into one object"
  5439. msgstr ""
  5440. #: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
  5441. msgid "Non-copper regions"
  5442. msgstr ""
  5443. #: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
  5444. msgid ""
  5445. "Create polygons covering the\n"
  5446. "areas without copper on the PCB.\n"
  5447. "Equivalent to the inverse of this\n"
  5448. "object. Can be used to remove all\n"
  5449. "copper from a specified region."
  5450. msgstr ""
  5451. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
  5452. #: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
  5453. msgid "Boundary Margin"
  5454. msgstr ""
  5455. #: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
  5456. msgid ""
  5457. "Specify the edge of the PCB\n"
  5458. "by drawing a box around all\n"
  5459. "objects with this minimum\n"
  5460. "distance."
  5461. msgstr ""
  5462. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
  5463. #: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
  5464. msgid "Rounded Geo"
  5465. msgstr ""
  5466. #: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
  5467. msgid "Resulting geometry will have rounded corners."
  5468. msgstr ""
  5469. #: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
  5470. #: flatcamTools/ToolPanelize.py:85
  5471. msgid "Bounding Box"
  5472. msgstr ""
  5473. #: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
  5474. msgid ""
  5475. "Distance of the edges of the box\n"
  5476. "to the nearest polygon."
  5477. msgstr ""
  5478. #: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
  5479. msgid ""
  5480. "If the bounding box is \n"
  5481. "to have rounded corners\n"
  5482. "their radius is equal to\n"
  5483. "the margin."
  5484. msgstr ""
  5485. #: flatcamGUI/FlatCAMGUI.py:4470
  5486. msgid "Gerber Adv. Options"
  5487. msgstr ""
  5488. #: flatcamGUI/FlatCAMGUI.py:4473
  5489. msgid "Advanced Param."
  5490. msgstr ""
  5491. #: flatcamGUI/FlatCAMGUI.py:4475
  5492. msgid ""
  5493. "A list of Gerber advanced parameters.\n"
  5494. "Those parameters are available only for\n"
  5495. "Advanced App. Level."
  5496. msgstr ""
  5497. #: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
  5498. msgid "\"Follow\""
  5499. msgstr ""
  5500. #: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
  5501. msgid ""
  5502. "Generate a 'Follow' geometry.\n"
  5503. "This means that it will cut through\n"
  5504. "the middle of the trace."
  5505. msgstr ""
  5506. #: flatcamGUI/FlatCAMGUI.py:4494
  5507. msgid "Table Show/Hide"
  5508. msgstr ""
  5509. #: flatcamGUI/FlatCAMGUI.py:4496
  5510. msgid ""
  5511. "Toggle the display of the Gerber Apertures Table.\n"
  5512. "Also, on hide, it will delete all mark shapes\n"
  5513. "that are drawn on canvas."
  5514. msgstr ""
  5515. #: flatcamGUI/FlatCAMGUI.py:4535
  5516. msgid "Gerber Export"
  5517. msgstr ""
  5518. #: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
  5519. msgid "Export Options"
  5520. msgstr ""
  5521. #: flatcamGUI/FlatCAMGUI.py:4540
  5522. msgid ""
  5523. "The parameters set here are used in the file exported\n"
  5524. "when using the File -> Export -> Export Gerber menu entry."
  5525. msgstr ""
  5526. #: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
  5527. msgid "The units used in the Gerber file."
  5528. msgstr ""
  5529. #: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
  5530. #: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
  5531. #: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
  5532. msgid "INCH"
  5533. msgstr ""
  5534. #: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
  5535. msgid "Int/Decimals"
  5536. msgstr ""
  5537. #: flatcamGUI/FlatCAMGUI.py:4565
  5538. msgid ""
  5539. "The number of digits in the whole part of the number\n"
  5540. "and in the fractional part of the number."
  5541. msgstr ""
  5542. #: flatcamGUI/FlatCAMGUI.py:4576
  5543. msgid ""
  5544. "This numbers signify the number of digits in\n"
  5545. "the whole part of Gerber coordinates."
  5546. msgstr ""
  5547. #: flatcamGUI/FlatCAMGUI.py:4590
  5548. msgid ""
  5549. "This numbers signify the number of digits in\n"
  5550. "the decimal part of Gerber coordinates."
  5551. msgstr ""
  5552. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
  5553. msgid "Zeros"
  5554. msgstr ""
  5555. #: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
  5556. msgid ""
  5557. "This sets the type of Gerber zeros.\n"
  5558. "If LZ then Leading Zeros are removed and\n"
  5559. "Trailing Zeros are kept.\n"
  5560. "If TZ is checked then Trailing Zeros are removed\n"
  5561. "and Leading Zeros are kept."
  5562. msgstr ""
  5563. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
  5564. #: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
  5565. msgid "LZ"
  5566. msgstr ""
  5567. #: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
  5568. #: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
  5569. msgid "TZ"
  5570. msgstr ""
  5571. #: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
  5572. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
  5573. #: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
  5574. #: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
  5575. #: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
  5576. #: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
  5577. #: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
  5578. msgid "Parameters"
  5579. msgstr ""
  5580. #: flatcamGUI/FlatCAMGUI.py:4634
  5581. msgid "A list of Gerber Editor parameters."
  5582. msgstr ""
  5583. #: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
  5584. #: flatcamGUI/FlatCAMGUI.py:6125
  5585. msgid "Selection limit"
  5586. msgstr ""
  5587. #: flatcamGUI/FlatCAMGUI.py:4644
  5588. msgid ""
  5589. "Set the number of selected Gerber geometry\n"
  5590. "items above which the utility geometry\n"
  5591. "becomes just a selection rectangle.\n"
  5592. "Increases the performance when moving a\n"
  5593. "large number of geometric elements."
  5594. msgstr ""
  5595. #: flatcamGUI/FlatCAMGUI.py:4656
  5596. msgid "New Aperture code"
  5597. msgstr ""
  5598. #: flatcamGUI/FlatCAMGUI.py:4668
  5599. msgid "New Aperture size"
  5600. msgstr ""
  5601. #: flatcamGUI/FlatCAMGUI.py:4670
  5602. msgid "Size for the new aperture"
  5603. msgstr ""
  5604. #: flatcamGUI/FlatCAMGUI.py:4680
  5605. msgid "New Aperture type"
  5606. msgstr ""
  5607. #: flatcamGUI/FlatCAMGUI.py:4682
  5608. msgid ""
  5609. "Type for the new aperture.\n"
  5610. "Can be 'C', 'R' or 'O'."
  5611. msgstr ""
  5612. #: flatcamGUI/FlatCAMGUI.py:4703
  5613. msgid "Aperture Dimensions"
  5614. msgstr ""
  5615. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
  5616. #: flatcamGUI/FlatCAMGUI.py:6445
  5617. msgid "Diameters of the cutting tools, separated by ','"
  5618. msgstr ""
  5619. #: flatcamGUI/FlatCAMGUI.py:4711
  5620. #, python-format
  5621. msgid "<b>%s:</b>"
  5622. msgstr ""
  5623. #: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
  5624. #: flatcamGUI/FlatCAMGUI.py:5695
  5625. msgid "Linear Dir."
  5626. msgstr ""
  5627. #: flatcamGUI/FlatCAMGUI.py:4751
  5628. msgid "Circular Pad Array"
  5629. msgstr ""
  5630. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
  5631. #: flatcamGUI/FlatCAMGUI.py:5735
  5632. msgid "Circular Dir."
  5633. msgstr ""
  5634. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
  5635. #: flatcamGUI/FlatCAMGUI.py:5737
  5636. msgid ""
  5637. "Direction for circular array.\n"
  5638. "Can be CW = clockwise or CCW = counter clockwise."
  5639. msgstr ""
  5640. #: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
  5641. #: flatcamGUI/FlatCAMGUI.py:5748
  5642. msgid "Circ. Angle"
  5643. msgstr ""
  5644. #: flatcamGUI/FlatCAMGUI.py:4783
  5645. msgid "Distance at which to buffer the Gerber element."
  5646. msgstr ""
  5647. #: flatcamGUI/FlatCAMGUI.py:4790
  5648. msgid "Scale Tool"
  5649. msgstr ""
  5650. #: flatcamGUI/FlatCAMGUI.py:4796
  5651. msgid "Factor to scale the Gerber element."
  5652. msgstr ""
  5653. #: flatcamGUI/FlatCAMGUI.py:4803
  5654. msgid "Mark Area Tool"
  5655. msgstr ""
  5656. #: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
  5657. msgid "Threshold low"
  5658. msgstr ""
  5659. #: flatcamGUI/FlatCAMGUI.py:4809
  5660. msgid "Threshold value under which the apertures are not marked."
  5661. msgstr ""
  5662. #: flatcamGUI/FlatCAMGUI.py:4819
  5663. msgid "Threshold value over which the apertures are not marked."
  5664. msgstr ""
  5665. #: flatcamGUI/FlatCAMGUI.py:4835
  5666. msgid "Excellon General"
  5667. msgstr ""
  5668. #: flatcamGUI/FlatCAMGUI.py:4857
  5669. msgid "Excellon Format"
  5670. msgstr ""
  5671. #: flatcamGUI/FlatCAMGUI.py:4859
  5672. msgid ""
  5673. "The NC drill files, usually named Excellon files\n"
  5674. "are files that can be found in different formats.\n"
  5675. "Here we set the format used when the provided\n"
  5676. "coordinates are not using period.\n"
  5677. "\n"
  5678. "Possible presets:\n"
  5679. "\n"
  5680. "PROTEUS 3:3 MM LZ\n"
  5681. "DipTrace 5:2 MM TZ\n"
  5682. "DipTrace 4:3 MM LZ\n"
  5683. "\n"
  5684. "EAGLE 3:3 MM TZ\n"
  5685. "EAGLE 4:3 MM TZ\n"
  5686. "EAGLE 2:5 INCH TZ\n"
  5687. "EAGLE 3:5 INCH TZ\n"
  5688. "\n"
  5689. "ALTIUM 2:4 INCH LZ\n"
  5690. "Sprint Layout 2:4 INCH LZ\n"
  5691. "KiCAD 3:5 INCH TZ"
  5692. msgstr ""
  5693. #: flatcamGUI/FlatCAMGUI.py:4887
  5694. msgid "Default values for INCH are 2:4"
  5695. msgstr ""
  5696. #: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
  5697. #: flatcamGUI/FlatCAMGUI.py:5403
  5698. msgid ""
  5699. "This numbers signify the number of digits in\n"
  5700. "the whole part of Excellon coordinates."
  5701. msgstr ""
  5702. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
  5703. #: flatcamGUI/FlatCAMGUI.py:5417
  5704. msgid ""
  5705. "This numbers signify the number of digits in\n"
  5706. "the decimal part of Excellon coordinates."
  5707. msgstr ""
  5708. #: flatcamGUI/FlatCAMGUI.py:4917
  5709. msgid "METRIC"
  5710. msgstr ""
  5711. #: flatcamGUI/FlatCAMGUI.py:4920
  5712. msgid "Default values for METRIC are 3:3"
  5713. msgstr ""
  5714. #: flatcamGUI/FlatCAMGUI.py:4951
  5715. msgid "Default <b>Zeros</b>"
  5716. msgstr ""
  5717. #: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
  5718. msgid ""
  5719. "This sets the type of Excellon zeros.\n"
  5720. "If LZ then Leading Zeros are kept and\n"
  5721. "Trailing Zeros are removed.\n"
  5722. "If TZ is checked then Trailing Zeros are kept\n"
  5723. "and Leading Zeros are removed."
  5724. msgstr ""
  5725. #: flatcamGUI/FlatCAMGUI.py:4965
  5726. msgid ""
  5727. "This sets the default type of Excellon zeros.\n"
  5728. "If it is not detected in the parsed file the value here\n"
  5729. "will be used.If LZ then Leading Zeros are kept and\n"
  5730. "Trailing Zeros are removed.\n"
  5731. "If TZ is checked then Trailing Zeros are kept\n"
  5732. "and Leading Zeros are removed."
  5733. msgstr ""
  5734. #: flatcamGUI/FlatCAMGUI.py:4975
  5735. msgid "Default <b>Units</b>"
  5736. msgstr ""
  5737. #: flatcamGUI/FlatCAMGUI.py:4978
  5738. msgid ""
  5739. "This sets the default units of Excellon files.\n"
  5740. "If it is not detected in the parsed file the value here\n"
  5741. "will be used.Some Excellon files don't have an header\n"
  5742. "therefore this parameter will be used."
  5743. msgstr ""
  5744. #: flatcamGUI/FlatCAMGUI.py:4989
  5745. msgid ""
  5746. "This sets the units of Excellon files.\n"
  5747. "Some Excellon files don't have an header\n"
  5748. "therefore this parameter will be used."
  5749. msgstr ""
  5750. #: flatcamGUI/FlatCAMGUI.py:4997
  5751. msgid "Excellon Optimization"
  5752. msgstr ""
  5753. #: flatcamGUI/FlatCAMGUI.py:5000
  5754. msgid "Algorithm: "
  5755. msgstr ""
  5756. #: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
  5757. msgid ""
  5758. "This sets the optimization type for the Excellon drill path.\n"
  5759. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5760. "Guided Local Path is used. Default search time is 3sec.\n"
  5761. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5762. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5763. "\n"
  5764. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5765. "Travelling Salesman algorithm for path optimization."
  5766. msgstr ""
  5767. #: flatcamGUI/FlatCAMGUI.py:5013
  5768. msgid "MH"
  5769. msgstr ""
  5770. #: flatcamGUI/FlatCAMGUI.py:5027
  5771. msgid "Optimization Time"
  5772. msgstr ""
  5773. #: flatcamGUI/FlatCAMGUI.py:5030
  5774. msgid ""
  5775. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5776. "maximum threshold for how much time is spent doing the\n"
  5777. "path optimization. This max duration is set here.\n"
  5778. "In seconds."
  5779. msgstr ""
  5780. #: flatcamGUI/FlatCAMGUI.py:5073
  5781. msgid "Excellon Options"
  5782. msgstr ""
  5783. #: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
  5784. #: flatcamGUI/ObjectUI.py:643
  5785. msgid "Create CNC Job"
  5786. msgstr ""
  5787. #: flatcamGUI/FlatCAMGUI.py:5078
  5788. msgid ""
  5789. "Parameters used to create a CNC Job object\n"
  5790. "for this drill object."
  5791. msgstr ""
  5792. #: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
  5793. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
  5794. #: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
  5795. #: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
  5796. msgid "Cut Z"
  5797. msgstr ""
  5798. #: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
  5799. msgid ""
  5800. "Drill depth (negative)\n"
  5801. "below the copper surface."
  5802. msgstr ""
  5803. #: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
  5804. #: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
  5805. msgid "Travel Z"
  5806. msgstr ""
  5807. #: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
  5808. msgid ""
  5809. "Tool height when travelling\n"
  5810. "across the XY plane."
  5811. msgstr ""
  5812. #: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
  5813. #: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
  5814. msgid "Tool change"
  5815. msgstr ""
  5816. #: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
  5817. msgid ""
  5818. "Include tool-change sequence\n"
  5819. "in G-Code (Pause for tool change)."
  5820. msgstr ""
  5821. #: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
  5822. msgid "Toolchange Z"
  5823. msgstr ""
  5824. #: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
  5825. #: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
  5826. msgid ""
  5827. "Z-axis position (height) for\n"
  5828. "tool change."
  5829. msgstr ""
  5830. #: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
  5831. msgid "Feedrate (Plunge)"
  5832. msgstr ""
  5833. #: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
  5834. msgid ""
  5835. "Tool speed while drilling\n"
  5836. "(in units per minute).\n"
  5837. "This is for linear move G01."
  5838. msgstr ""
  5839. #: flatcamGUI/FlatCAMGUI.py:5134
  5840. msgid "Spindle Speed"
  5841. msgstr ""
  5842. #: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
  5843. msgid ""
  5844. "Speed of the spindle\n"
  5845. "in RPM (optional)"
  5846. msgstr ""
  5847. #: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
  5848. msgid "Spindle dir."
  5849. msgstr ""
  5850. #: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
  5851. msgid ""
  5852. "This sets the direction that the spindle is rotating.\n"
  5853. "It can be either:\n"
  5854. "- CW = clockwise or\n"
  5855. "- CCW = counter clockwise"
  5856. msgstr ""
  5857. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
  5858. #: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
  5859. msgid "Dwell"
  5860. msgstr ""
  5861. #: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
  5862. #: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
  5863. msgid ""
  5864. "Pause to allow the spindle to reach its\n"
  5865. "speed before cutting."
  5866. msgstr ""
  5867. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
  5868. msgid "Duration"
  5869. msgstr ""
  5870. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
  5871. #: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
  5872. msgid "Number of time units for spindle to dwell."
  5873. msgstr ""
  5874. #: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
  5875. #: flatcamGUI/ObjectUI.py:765
  5876. msgid "Postprocessor"
  5877. msgstr ""
  5878. #: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
  5879. msgid ""
  5880. "The postprocessor JSON file that dictates\n"
  5881. "Gcode output."
  5882. msgstr ""
  5883. #: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
  5884. msgid "Gcode"
  5885. msgstr ""
  5886. #: flatcamGUI/FlatCAMGUI.py:5190
  5887. msgid ""
  5888. "Choose what to use for GCode generation:\n"
  5889. "'Drills', 'Slots' or 'Both'.\n"
  5890. "When choosing 'Slots' or 'Both', slots will be\n"
  5891. "converted to drills."
  5892. msgstr ""
  5893. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
  5894. msgid "Mill Holes"
  5895. msgstr ""
  5896. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
  5897. msgid "Create Geometry for milling holes."
  5898. msgstr ""
  5899. #: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
  5900. msgid "Drill Tool dia"
  5901. msgstr ""
  5902. #: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
  5903. msgid "Slot Tool dia"
  5904. msgstr ""
  5905. #: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
  5906. msgid ""
  5907. "Diameter of the cutting tool\n"
  5908. "when milling slots."
  5909. msgstr ""
  5910. #: flatcamGUI/FlatCAMGUI.py:5233
  5911. msgid "Defaults"
  5912. msgstr ""
  5913. #: flatcamGUI/FlatCAMGUI.py:5246
  5914. msgid "Excellon Adv. Options"
  5915. msgstr ""
  5916. #: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
  5917. msgid "Advanced Options"
  5918. msgstr ""
  5919. #: flatcamGUI/FlatCAMGUI.py:5254
  5920. msgid ""
  5921. "Parameters used to create a CNC Job object\n"
  5922. "for this drill object that are shown when App Level is Advanced."
  5923. msgstr ""
  5924. #: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
  5925. msgid "Offset Z"
  5926. msgstr ""
  5927. #: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
  5928. msgid ""
  5929. "Some drill bits (the larger ones) need to drill deeper\n"
  5930. "to create the desired exit hole diameter due of the tip shape.\n"
  5931. "The value here can compensate the Cut Z parameter."
  5932. msgstr ""
  5933. #: flatcamGUI/FlatCAMGUI.py:5271
  5934. msgid "Toolchange X,Y"
  5935. msgstr ""
  5936. #: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
  5937. msgid "Toolchange X,Y position."
  5938. msgstr ""
  5939. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
  5940. #: flatcamGUI/ObjectUI.py:693
  5941. msgid "Start move Z"
  5942. msgstr ""
  5943. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
  5944. msgid ""
  5945. "Height of the tool just after start.\n"
  5946. "Delete the value if you don't need this feature."
  5947. msgstr ""
  5948. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
  5949. #: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
  5950. msgid "End move Z"
  5951. msgstr ""
  5952. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
  5953. #: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
  5954. msgid ""
  5955. "Height of the tool after\n"
  5956. "the last move at the end of the job."
  5957. msgstr ""
  5958. #: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
  5959. msgid "Feedrate Rapids"
  5960. msgstr ""
  5961. #: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
  5962. msgid ""
  5963. "Tool speed while drilling\n"
  5964. "(in units per minute).\n"
  5965. "This is for the rapid move G00.\n"
  5966. "It is useful only for Marlin,\n"
  5967. "ignore for any other cases."
  5968. msgstr ""
  5969. #: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
  5970. #: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
  5971. msgid "Probe Z depth"
  5972. msgstr ""
  5973. #: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
  5974. #: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
  5975. msgid ""
  5976. "The maximum depth that the probe is allowed\n"
  5977. "to probe. Negative value, in current units."
  5978. msgstr ""
  5979. #: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
  5980. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
  5981. msgid "Feedrate Probe"
  5982. msgstr ""
  5983. #: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
  5984. #: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
  5985. msgid "The feedrate used while the probe is probing."
  5986. msgstr ""
  5987. #: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
  5988. msgid "Fast Plunge"
  5989. msgstr ""
  5990. #: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
  5991. msgid ""
  5992. "By checking this, the vertical move from\n"
  5993. "Z_Toolchange to Z_move is done with G0,\n"
  5994. "meaning the fastest speed available.\n"
  5995. "WARNING: the move is done at Toolchange X,Y coords."
  5996. msgstr ""
  5997. #: flatcamGUI/FlatCAMGUI.py:5339
  5998. msgid "Fast Retract"
  5999. msgstr ""
  6000. #: flatcamGUI/FlatCAMGUI.py:5341
  6001. msgid ""
  6002. "Exit hole strategy.\n"
  6003. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6004. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6005. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6006. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6007. "(travel height) is done as fast as possible (G0) in one move."
  6008. msgstr ""
  6009. #: flatcamGUI/FlatCAMGUI.py:5360
  6010. msgid "Excellon Export"
  6011. msgstr ""
  6012. #: flatcamGUI/FlatCAMGUI.py:5365
  6013. msgid ""
  6014. "The parameters set here are used in the file exported\n"
  6015. "when using the File -> Export -> Export Excellon menu entry."
  6016. msgstr ""
  6017. #: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
  6018. msgid "The units used in the Excellon file."
  6019. msgstr ""
  6020. #: flatcamGUI/FlatCAMGUI.py:5390
  6021. msgid ""
  6022. "The NC drill files, usually named Excellon files\n"
  6023. "are files that can be found in different formats.\n"
  6024. "Here we set the format used when the provided\n"
  6025. "coordinates are not using period."
  6026. msgstr ""
  6027. #: flatcamGUI/FlatCAMGUI.py:5426
  6028. msgid "Format"
  6029. msgstr ""
  6030. #: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
  6031. msgid ""
  6032. "Select the kind of coordinates format used.\n"
  6033. "Coordinates can be saved with decimal point or without.\n"
  6034. "When there is no decimal point, it is required to specify\n"
  6035. "the number of digits for integer part and the number of decimals.\n"
  6036. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6037. "or TZ = trailing zeros are kept."
  6038. msgstr ""
  6039. #: flatcamGUI/FlatCAMGUI.py:5435
  6040. msgid "Decimal"
  6041. msgstr ""
  6042. #: flatcamGUI/FlatCAMGUI.py:5436
  6043. msgid "No-Decimal"
  6044. msgstr ""
  6045. #: flatcamGUI/FlatCAMGUI.py:5462
  6046. msgid ""
  6047. "This sets the default type of Excellon zeros.\n"
  6048. "If LZ then Leading Zeros are kept and\n"
  6049. "Trailing Zeros are removed.\n"
  6050. "If TZ is checked then Trailing Zeros are kept\n"
  6051. "and Leading Zeros are removed."
  6052. msgstr ""
  6053. #: flatcamGUI/FlatCAMGUI.py:5472
  6054. msgid "Slot type"
  6055. msgstr ""
  6056. #: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
  6057. msgid ""
  6058. "This sets how the slots will be exported.\n"
  6059. "If ROUTED then the slots will be routed\n"
  6060. "using M15/M16 commands.\n"
  6061. "If DRILLED(G85) the slots will be exported\n"
  6062. "using the Drilled slot command (G85)."
  6063. msgstr ""
  6064. #: flatcamGUI/FlatCAMGUI.py:5482
  6065. msgid "Routed"
  6066. msgstr ""
  6067. #: flatcamGUI/FlatCAMGUI.py:5483
  6068. msgid "Drilled(G85)"
  6069. msgstr ""
  6070. #: flatcamGUI/FlatCAMGUI.py:5515
  6071. msgid "A list of Excellon Editor parameters."
  6072. msgstr ""
  6073. #: flatcamGUI/FlatCAMGUI.py:5525
  6074. msgid ""
  6075. "Set the number of selected Excellon geometry\n"
  6076. "items above which the utility geometry\n"
  6077. "becomes just a selection rectangle.\n"
  6078. "Increases the performance when moving a\n"
  6079. "large number of geometric elements."
  6080. msgstr ""
  6081. #: flatcamGUI/FlatCAMGUI.py:5537
  6082. msgid "New Tool Dia"
  6083. msgstr ""
  6084. #: flatcamGUI/FlatCAMGUI.py:5560
  6085. msgid "Linear Drill Array"
  6086. msgstr ""
  6087. #: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
  6088. #, python-format
  6089. msgid "%s:"
  6090. msgstr ""
  6091. #: flatcamGUI/FlatCAMGUI.py:5600
  6092. msgid "Circular Drill Array"
  6093. msgstr ""
  6094. #: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
  6095. msgid "Slots"
  6096. msgstr ""
  6097. #: flatcamGUI/FlatCAMGUI.py:5679
  6098. msgid "Linear Slot Array"
  6099. msgstr ""
  6100. #: flatcamGUI/FlatCAMGUI.py:5731
  6101. msgid "Circular Slot Array"
  6102. msgstr ""
  6103. #: flatcamGUI/FlatCAMGUI.py:5765
  6104. msgid "Geometry General"
  6105. msgstr ""
  6106. #: flatcamGUI/FlatCAMGUI.py:5784
  6107. msgid ""
  6108. "The number of circle steps for <b>Geometry</b> \n"
  6109. "circle and arc shapes linear approximation."
  6110. msgstr ""
  6111. #: flatcamGUI/FlatCAMGUI.py:5812
  6112. msgid "Geometry Options"
  6113. msgstr ""
  6114. #: flatcamGUI/FlatCAMGUI.py:5819
  6115. msgid ""
  6116. "Create a CNC Job object\n"
  6117. "tracing the contours of this\n"
  6118. "Geometry object."
  6119. msgstr ""
  6120. #: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
  6121. msgid ""
  6122. "Cutting depth (negative)\n"
  6123. "below the copper surface."
  6124. msgstr ""
  6125. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
  6126. msgid "Multi-Depth"
  6127. msgstr ""
  6128. #: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
  6129. msgid ""
  6130. "Use multiple passes to limit\n"
  6131. "the cut depth in each pass. Will\n"
  6132. "cut multiple times until Cut Z is\n"
  6133. "reached."
  6134. msgstr ""
  6135. #: flatcamGUI/FlatCAMGUI.py:5851
  6136. msgid "Depth/Pass"
  6137. msgstr ""
  6138. #: flatcamGUI/FlatCAMGUI.py:5853
  6139. msgid ""
  6140. "The depth to cut on each pass,\n"
  6141. "when multidepth is enabled.\n"
  6142. "It has positive value although\n"
  6143. "it is a fraction from the depth\n"
  6144. "which has negative value."
  6145. msgstr ""
  6146. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
  6147. msgid ""
  6148. "Height of the tool when\n"
  6149. "moving without cutting."
  6150. msgstr ""
  6151. #: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
  6152. msgid ""
  6153. "Include tool-change sequence\n"
  6154. "in the Machine Code (Pause for tool change)."
  6155. msgstr ""
  6156. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
  6157. msgid "Feed Rate X-Y"
  6158. msgstr ""
  6159. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
  6160. msgid ""
  6161. "Cutting speed in the XY\n"
  6162. "plane in units per minute"
  6163. msgstr ""
  6164. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
  6165. msgid "Feed Rate Z"
  6166. msgstr ""
  6167. #: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
  6168. msgid ""
  6169. "Cutting speed in the XY\n"
  6170. "plane in units per minute.\n"
  6171. "It is called also Plunge."
  6172. msgstr ""
  6173. #: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
  6174. #: flatcamGUI/ObjectUI.py:1267
  6175. msgid "Spindle speed"
  6176. msgstr ""
  6177. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
  6178. msgid ""
  6179. "Speed of the spindle in RPM (optional).\n"
  6180. "If LASER postprocessor is used,\n"
  6181. "this value is the power of laser."
  6182. msgstr ""
  6183. #: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
  6184. msgid ""
  6185. "The Postprocessor file that dictates\n"
  6186. "the Machine Code (like GCode, RML, HPGL) output."
  6187. msgstr ""
  6188. #: flatcamGUI/FlatCAMGUI.py:5984
  6189. msgid "Geometry Adv. Options"
  6190. msgstr ""
  6191. #: flatcamGUI/FlatCAMGUI.py:5991
  6192. msgid ""
  6193. "Parameters to create a CNC Job object\n"
  6194. "tracing the contours of a Geometry object."
  6195. msgstr ""
  6196. #: flatcamGUI/FlatCAMGUI.py:6011
  6197. msgid ""
  6198. "Height of the tool just after starting the work.\n"
  6199. "Delete the value if you don't need this feature."
  6200. msgstr ""
  6201. #: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
  6202. msgid "Feed Rate Rapids"
  6203. msgstr ""
  6204. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
  6205. msgid ""
  6206. "Cutting speed in the XY plane\n"
  6207. "(in units per minute).\n"
  6208. "This is for the rapid move G00.\n"
  6209. "It is useful only for Marlin,\n"
  6210. "ignore for any other cases."
  6211. msgstr ""
  6212. #: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
  6213. msgid "Re-cut 1st pt."
  6214. msgstr ""
  6215. #: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
  6216. msgid ""
  6217. "In order to remove possible\n"
  6218. "copper leftovers where first cut\n"
  6219. "meet with last cut, we generate an\n"
  6220. "extended cut over the first cut section."
  6221. msgstr ""
  6222. #: flatcamGUI/FlatCAMGUI.py:6083
  6223. msgid "Seg. X size"
  6224. msgstr ""
  6225. #: flatcamGUI/FlatCAMGUI.py:6085
  6226. msgid ""
  6227. "The size of the trace segment on the X axis.\n"
  6228. "Useful for auto-leveling.\n"
  6229. "A value of 0 means no segmentation on the X axis."
  6230. msgstr ""
  6231. #: flatcamGUI/FlatCAMGUI.py:6094
  6232. msgid "Seg. Y size"
  6233. msgstr ""
  6234. #: flatcamGUI/FlatCAMGUI.py:6096
  6235. msgid ""
  6236. "The size of the trace segment on the Y axis.\n"
  6237. "Useful for auto-leveling.\n"
  6238. "A value of 0 means no segmentation on the Y axis."
  6239. msgstr ""
  6240. #: flatcamGUI/FlatCAMGUI.py:6112
  6241. msgid "Geometry Editor"
  6242. msgstr ""
  6243. #: flatcamGUI/FlatCAMGUI.py:6117
  6244. msgid "A list of Geometry Editor parameters."
  6245. msgstr ""
  6246. #: flatcamGUI/FlatCAMGUI.py:6127
  6247. msgid ""
  6248. "Set the number of selected geometry\n"
  6249. "items above which the utility geometry\n"
  6250. "becomes just a selection rectangle.\n"
  6251. "Increases the performance when moving a\n"
  6252. "large number of geometric elements."
  6253. msgstr ""
  6254. #: flatcamGUI/FlatCAMGUI.py:6146
  6255. msgid "CNC Job General"
  6256. msgstr ""
  6257. #: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
  6258. #: flatcamGUI/ObjectUI.py:1501
  6259. msgid "Plot Object"
  6260. msgstr ""
  6261. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
  6262. msgid "Plot kind"
  6263. msgstr ""
  6264. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
  6265. msgid ""
  6266. "This selects the kind of geometries on the canvas to plot.\n"
  6267. "Those can be either of type 'Travel' which means the moves\n"
  6268. "above the work piece or it can be of type 'Cut',\n"
  6269. "which means the moves that cut into the material."
  6270. msgstr ""
  6271. #: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
  6272. msgid "Travel"
  6273. msgstr ""
  6274. #: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
  6275. msgid "Display Annotation"
  6276. msgstr ""
  6277. #: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
  6278. msgid ""
  6279. "This selects if to display text annotation on the plot.\n"
  6280. "When checked it will display numbers in order for each end\n"
  6281. "of a travel line."
  6282. msgstr ""
  6283. #: flatcamGUI/FlatCAMGUI.py:6197
  6284. msgid "Annotation Size"
  6285. msgstr ""
  6286. #: flatcamGUI/FlatCAMGUI.py:6199
  6287. msgid "The font size of the annotation text. In pixels."
  6288. msgstr ""
  6289. #: flatcamGUI/FlatCAMGUI.py:6207
  6290. msgid "Annotation Color"
  6291. msgstr ""
  6292. #: flatcamGUI/FlatCAMGUI.py:6209
  6293. msgid "Set the font color for the annotation texts."
  6294. msgstr ""
  6295. #: flatcamGUI/FlatCAMGUI.py:6232
  6296. msgid ""
  6297. "The number of circle steps for <b>GCode</b> \n"
  6298. "circle and arc shapes linear approximation."
  6299. msgstr ""
  6300. #: flatcamGUI/FlatCAMGUI.py:6240
  6301. msgid "Travel dia"
  6302. msgstr ""
  6303. #: flatcamGUI/FlatCAMGUI.py:6242
  6304. msgid ""
  6305. "The width of the travel lines to be\n"
  6306. "rendered in the plot."
  6307. msgstr ""
  6308. #: flatcamGUI/FlatCAMGUI.py:6253
  6309. msgid "Coordinates decimals"
  6310. msgstr ""
  6311. #: flatcamGUI/FlatCAMGUI.py:6255
  6312. msgid ""
  6313. "The number of decimals to be used for \n"
  6314. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6315. msgstr ""
  6316. #: flatcamGUI/FlatCAMGUI.py:6263
  6317. msgid "Feedrate decimals"
  6318. msgstr ""
  6319. #: flatcamGUI/FlatCAMGUI.py:6265
  6320. msgid ""
  6321. "The number of decimals to be used for \n"
  6322. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6323. msgstr ""
  6324. #: flatcamGUI/FlatCAMGUI.py:6273
  6325. msgid "Coordinates type"
  6326. msgstr ""
  6327. #: flatcamGUI/FlatCAMGUI.py:6275
  6328. msgid ""
  6329. "The type of coordinates to be used in Gcode.\n"
  6330. "Can be:\n"
  6331. "- Absolute G90 -> the reference is the origin x=0, y=0\n"
  6332. "- Incremental G91 -> the reference is the previous position"
  6333. msgstr ""
  6334. #: flatcamGUI/FlatCAMGUI.py:6281
  6335. msgid "Absolute G90"
  6336. msgstr ""
  6337. #: flatcamGUI/FlatCAMGUI.py:6282
  6338. msgid "Incremental G91"
  6339. msgstr ""
  6340. #: flatcamGUI/FlatCAMGUI.py:6299
  6341. msgid "CNC Job Options"
  6342. msgstr ""
  6343. #: flatcamGUI/FlatCAMGUI.py:6302
  6344. msgid "Export G-Code"
  6345. msgstr ""
  6346. #: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
  6347. #: flatcamGUI/ObjectUI.py:1535
  6348. msgid ""
  6349. "Export and save G-Code to\n"
  6350. "make this object to a file."
  6351. msgstr ""
  6352. #: flatcamGUI/FlatCAMGUI.py:6310
  6353. msgid "Prepend to G-Code"
  6354. msgstr ""
  6355. #: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
  6356. msgid ""
  6357. "Type here any G-Code commands you would\n"
  6358. "like to add at the beginning of the G-Code file."
  6359. msgstr ""
  6360. #: flatcamGUI/FlatCAMGUI.py:6321
  6361. msgid "Append to G-Code"
  6362. msgstr ""
  6363. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
  6364. msgid ""
  6365. "Type here any G-Code commands you would\n"
  6366. "like to append to the generated file.\n"
  6367. "I.e.: M2 (End of program)"
  6368. msgstr ""
  6369. #: flatcamGUI/FlatCAMGUI.py:6340
  6370. msgid "CNC Job Adv. Options"
  6371. msgstr ""
  6372. #: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
  6373. msgid "Export CNC Code"
  6374. msgstr ""
  6375. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
  6376. msgid "Toolchange G-Code"
  6377. msgstr ""
  6378. #: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
  6379. msgid ""
  6380. "Type here any G-Code commands you would\n"
  6381. "like to be executed when Toolchange event is encountered.\n"
  6382. "This will constitute a Custom Toolchange GCode,\n"
  6383. "or a Toolchange Macro.\n"
  6384. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6385. "\n"
  6386. "WARNING: it can be used only with a postprocessor file\n"
  6387. "that has 'toolchange_custom' in it's name and this is built\n"
  6388. "having as template the 'Toolchange Custom' posprocessor file."
  6389. msgstr ""
  6390. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
  6391. msgid "Use Toolchange Macro"
  6392. msgstr ""
  6393. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
  6394. msgid ""
  6395. "Check this box if you want to use\n"
  6396. "a Custom Toolchange GCode (macro)."
  6397. msgstr ""
  6398. #: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
  6399. msgid ""
  6400. "A list of the FlatCAM variables that can be used\n"
  6401. "in the Toolchange event.\n"
  6402. "They have to be surrounded by the '%' symbol"
  6403. msgstr ""
  6404. #: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
  6405. msgid "FlatCAM CNC parameters"
  6406. msgstr ""
  6407. #: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
  6408. msgid "tool = tool number"
  6409. msgstr ""
  6410. #: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
  6411. msgid "tooldia = tool diameter"
  6412. msgstr ""
  6413. #: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
  6414. msgid "t_drills = for Excellon, total number of drills"
  6415. msgstr ""
  6416. #: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
  6417. msgid "x_toolchange = X coord for Toolchange"
  6418. msgstr ""
  6419. #: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
  6420. msgid "y_toolchange = Y coord for Toolchange"
  6421. msgstr ""
  6422. #: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
  6423. msgid "z_toolchange = Z coord for Toolchange"
  6424. msgstr ""
  6425. #: flatcamGUI/FlatCAMGUI.py:6404
  6426. msgid "z_cut = Z depth for the cut"
  6427. msgstr ""
  6428. #: flatcamGUI/FlatCAMGUI.py:6405
  6429. msgid "z_move = Z height for travel"
  6430. msgstr ""
  6431. #: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
  6432. msgid "z_depthpercut = the step value for multidepth cut"
  6433. msgstr ""
  6434. #: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
  6435. msgid "spindlesspeed = the value for the spindle speed"
  6436. msgstr ""
  6437. #: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
  6438. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6439. msgstr ""
  6440. #: flatcamGUI/FlatCAMGUI.py:6430
  6441. msgid "NCC Tool Options"
  6442. msgstr ""
  6443. #: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
  6444. msgid ""
  6445. "Create a Geometry object with\n"
  6446. "toolpaths to cut all non-copper regions."
  6447. msgstr ""
  6448. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
  6449. msgid "Tools dia"
  6450. msgstr ""
  6451. #: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
  6452. msgid "Tool Type"
  6453. msgstr ""
  6454. #: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
  6455. #: flatcamTools/ToolNonCopperClear.py:197
  6456. #: flatcamTools/ToolNonCopperClear.py:205
  6457. msgid ""
  6458. "Default tool type:\n"
  6459. "- 'V-shape'\n"
  6460. "- Circular"
  6461. msgstr ""
  6462. #: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
  6463. msgid "V-shape"
  6464. msgstr ""
  6465. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
  6466. #: flatcamTools/ToolNonCopperClear.py:220
  6467. msgid "V-Tip Dia"
  6468. msgstr ""
  6469. #: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
  6470. #: flatcamTools/ToolNonCopperClear.py:222
  6471. msgid "The tip diameter for V-Shape Tool"
  6472. msgstr ""
  6473. #: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
  6474. #: flatcamTools/ToolNonCopperClear.py:227
  6475. msgid "V-Tip Angle"
  6476. msgstr ""
  6477. #: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
  6478. #: flatcamTools/ToolNonCopperClear.py:229
  6479. msgid ""
  6480. "The tip angle for V-Shape Tool.\n"
  6481. "In degree."
  6482. msgstr ""
  6483. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
  6484. #: flatcamTools/ToolNonCopperClear.py:149
  6485. #: flatcamTools/ToolNonCopperClear.py:157
  6486. msgid ""
  6487. "Milling type when the selected tool is of type: 'iso_op':\n"
  6488. "- climb / best for precision milling and to reduce tool usage\n"
  6489. "- conventional / useful when there is no backlash compensation"
  6490. msgstr ""
  6491. #: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
  6492. #: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
  6493. msgid "Tool order"
  6494. msgstr ""
  6495. #: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
  6496. #: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
  6497. #: flatcamTools/ToolNonCopperClear.py:164
  6498. #: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
  6499. #: flatcamTools/ToolPaint.py:147
  6500. msgid ""
  6501. "This set the way that the tools in the tools table are used.\n"
  6502. "'No' --> means that the used order is the one in the tool table\n"
  6503. "'Forward' --> means that the tools will be ordered from small to big\n"
  6504. "'Reverse' --> menas that the tools will ordered from big to small\n"
  6505. "\n"
  6506. "WARNING: using rest machining will automatically set the order\n"
  6507. "in reverse and disable this control."
  6508. msgstr ""
  6509. #: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
  6510. #: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
  6511. msgid "Forward"
  6512. msgstr ""
  6513. #: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
  6514. #: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
  6515. msgid "Reverse"
  6516. msgstr ""
  6517. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
  6518. #: flatcamTools/ToolNonCopperClear.py:271
  6519. #: flatcamTools/ToolNonCopperClear.py:276
  6520. msgid ""
  6521. "Depth of cut into material. Negative value.\n"
  6522. "In FlatCAM units."
  6523. msgstr ""
  6524. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
  6525. #, python-format
  6526. msgid ""
  6527. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6528. "Example:\n"
  6529. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6530. "\n"
  6531. "Adjust the value starting with lower values\n"
  6532. "and increasing it if areas that should be cleared are still \n"
  6533. "not cleared.\n"
  6534. "Lower values = faster processing, faster execution on PCB.\n"
  6535. "Higher values = slow processing and slow execution on CNC\n"
  6536. "due of too many paths."
  6537. msgstr ""
  6538. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
  6539. msgid "Bounding box margin."
  6540. msgstr ""
  6541. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
  6542. #: flatcamTools/ToolNonCopperClear.py:310
  6543. msgid ""
  6544. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6545. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6546. "lines."
  6547. msgstr ""
  6548. #: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
  6549. #: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
  6550. msgid "Connect"
  6551. msgstr ""
  6552. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
  6553. #: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
  6554. msgid "Contour"
  6555. msgstr ""
  6556. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
  6557. #: flatcamTools/ToolPaint.py:267
  6558. msgid "Rest M."
  6559. msgstr ""
  6560. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
  6561. msgid ""
  6562. "If checked, use 'rest machining'.\n"
  6563. "Basically it will clear copper outside PCB features,\n"
  6564. "using the biggest tool and continue with the next tools,\n"
  6565. "from bigger to smaller, to clear areas of copper that\n"
  6566. "could not be cleared by previous tool, until there is\n"
  6567. "no more copper to clear or there are no more tools.\n"
  6568. "If not checked, use the standard algorithm."
  6569. msgstr ""
  6570. #: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
  6571. #: flatcamTools/ToolNonCopperClear.py:359
  6572. #: flatcamTools/ToolNonCopperClear.py:371
  6573. msgid ""
  6574. "If used, it will add an offset to the copper features.\n"
  6575. "The copper clearing will finish to a distance\n"
  6576. "from the copper features.\n"
  6577. "The value can be between 0 and 10 FlatCAM units."
  6578. msgstr ""
  6579. #: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
  6580. msgid "Offset value"
  6581. msgstr ""
  6582. #: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
  6583. msgid "Itself"
  6584. msgstr ""
  6585. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
  6586. msgid "Area"
  6587. msgstr ""
  6588. #: flatcamGUI/FlatCAMGUI.py:6653
  6589. msgid "Ref"
  6590. msgstr ""
  6591. #: flatcamGUI/FlatCAMGUI.py:6654
  6592. msgid "Reference"
  6593. msgstr ""
  6594. #: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
  6595. msgid ""
  6596. "- 'Itself' - the non copper clearing extent\n"
  6597. "is based on the object that is copper cleared.\n"
  6598. " - 'Area Selection' - left mouse click to start selection of the area to be "
  6599. "painted.\n"
  6600. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6601. "areas.\n"
  6602. "- 'Reference Object' - will do non copper clearing within the area\n"
  6603. "specified by another object."
  6604. msgstr ""
  6605. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
  6606. msgid "Normal"
  6607. msgstr ""
  6608. #: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
  6609. msgid "Progressive"
  6610. msgstr ""
  6611. #: flatcamGUI/FlatCAMGUI.py:6669
  6612. msgid "NCC Plotting"
  6613. msgstr ""
  6614. #: flatcamGUI/FlatCAMGUI.py:6671
  6615. msgid ""
  6616. "- 'Normal' - normal plotting, done at the end of the NCC job\n"
  6617. "- 'Progressive' - after each shape is generated it will be plotted."
  6618. msgstr ""
  6619. #: flatcamGUI/FlatCAMGUI.py:6685
  6620. msgid "Cutout Tool Options"
  6621. msgstr ""
  6622. #: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
  6623. msgid ""
  6624. "Create toolpaths to cut around\n"
  6625. "the PCB and separate it from\n"
  6626. "the original board."
  6627. msgstr ""
  6628. #: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
  6629. msgid ""
  6630. "Diameter of the tool used to cutout\n"
  6631. "the PCB shape out of the surrounding material."
  6632. msgstr ""
  6633. #: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
  6634. msgid "Obj kind"
  6635. msgstr ""
  6636. #: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
  6637. msgid ""
  6638. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6639. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6640. "Gerber object, which is made\n"
  6641. "out of many individual PCB outlines."
  6642. msgstr ""
  6643. #: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
  6644. #: flatcamTools/ToolCutOut.py:84
  6645. msgid "Single"
  6646. msgstr ""
  6647. #: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
  6648. msgid "Panel"
  6649. msgstr ""
  6650. #: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
  6651. msgid ""
  6652. "Margin over bounds. A positive value here\n"
  6653. "will make the cutout of the PCB further from\n"
  6654. "the actual PCB border"
  6655. msgstr ""
  6656. #: flatcamGUI/FlatCAMGUI.py:6733
  6657. msgid "Gap size"
  6658. msgstr ""
  6659. #: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
  6660. msgid ""
  6661. "The size of the bridge gaps in the cutout\n"
  6662. "used to keep the board connected to\n"
  6663. "the surrounding material (the one \n"
  6664. "from which the PCB is cutout)."
  6665. msgstr ""
  6666. #: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
  6667. msgid "Gaps"
  6668. msgstr ""
  6669. #: flatcamGUI/FlatCAMGUI.py:6746
  6670. msgid ""
  6671. "Number of gaps used for the cutout.\n"
  6672. "There can be maximum 8 bridges/gaps.\n"
  6673. "The choices are:\n"
  6674. "- None - no gaps\n"
  6675. "- lr - left + right\n"
  6676. "- tb - top + bottom\n"
  6677. "- 4 - left + right +top + bottom\n"
  6678. "- 2lr - 2*left + 2*right\n"
  6679. "- 2tb - 2*top + 2*bottom\n"
  6680. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6681. msgstr ""
  6682. #: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
  6683. msgid "Convex Sh."
  6684. msgstr ""
  6685. #: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
  6686. msgid ""
  6687. "Create a convex shape surrounding the entire PCB.\n"
  6688. "Used only if the source object type is Gerber."
  6689. msgstr ""
  6690. #: flatcamGUI/FlatCAMGUI.py:6784
  6691. msgid "2Sided Tool Options"
  6692. msgstr ""
  6693. #: flatcamGUI/FlatCAMGUI.py:6789
  6694. msgid ""
  6695. "A tool to help in creating a double sided\n"
  6696. "PCB using alignment holes."
  6697. msgstr ""
  6698. #: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
  6699. msgid "Drill dia"
  6700. msgstr ""
  6701. #: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
  6702. #: flatcamTools/ToolDblSided.py:236
  6703. msgid "Diameter of the drill for the alignment holes."
  6704. msgstr ""
  6705. #: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
  6706. msgid "Mirror Axis:"
  6707. msgstr ""
  6708. #: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
  6709. msgid "Mirror vertically (X) or horizontally (Y)."
  6710. msgstr ""
  6711. #: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
  6712. msgid "Point"
  6713. msgstr ""
  6714. #: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
  6715. msgid "Box"
  6716. msgstr ""
  6717. #: flatcamGUI/FlatCAMGUI.py:6823
  6718. msgid "Axis Ref"
  6719. msgstr ""
  6720. #: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
  6721. msgid ""
  6722. "The axis should pass through a <b>point</b> or cut\n"
  6723. " a specified <b>box</b> (in a FlatCAM object) through \n"
  6724. "the center."
  6725. msgstr ""
  6726. #: flatcamGUI/FlatCAMGUI.py:6841
  6727. msgid "Paint Tool Options"
  6728. msgstr ""
  6729. #: flatcamGUI/FlatCAMGUI.py:6846
  6730. msgid "<b>Parameters:</b>"
  6731. msgstr ""
  6732. #: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
  6733. msgid ""
  6734. "Creates tool paths to cover the\n"
  6735. "whole area of a polygon (remove\n"
  6736. "all copper). You will be asked\n"
  6737. "to click on the desired polygon."
  6738. msgstr ""
  6739. #: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
  6740. msgid "Selection"
  6741. msgstr ""
  6742. #: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
  6743. #: flatcamTools/ToolPaint.py:300
  6744. msgid ""
  6745. "How to select Polygons to be painted.\n"
  6746. "\n"
  6747. "- 'Area Selection' - left mouse click to start selection of the area to be "
  6748. "painted.\n"
  6749. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6750. "areas.\n"
  6751. "- 'All Polygons' - the Paint will start after click.\n"
  6752. "- 'Reference Object' - will do non copper clearing within the area\n"
  6753. "specified by another object."
  6754. msgstr ""
  6755. #: flatcamGUI/FlatCAMGUI.py:6967
  6756. msgid "Ref."
  6757. msgstr ""
  6758. #: flatcamGUI/FlatCAMGUI.py:6975
  6759. msgid "Paint Plotting"
  6760. msgstr ""
  6761. #: flatcamGUI/FlatCAMGUI.py:6977
  6762. msgid ""
  6763. "- 'Normal' - normal plotting, done at the end of the Paint job\n"
  6764. "- 'Progressive' - after each shape is generated it will be plotted."
  6765. msgstr ""
  6766. #: flatcamGUI/FlatCAMGUI.py:6991
  6767. msgid "Film Tool Options"
  6768. msgstr ""
  6769. #: flatcamGUI/FlatCAMGUI.py:6996
  6770. msgid ""
  6771. "Create a PCB film from a Gerber or Geometry\n"
  6772. "FlatCAM object.\n"
  6773. "The file is saved in SVG format."
  6774. msgstr ""
  6775. #: flatcamGUI/FlatCAMGUI.py:7007
  6776. msgid "Film Type"
  6777. msgstr ""
  6778. #: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
  6779. msgid ""
  6780. "Generate a Positive black film or a Negative film.\n"
  6781. "Positive means that it will print the features\n"
  6782. "with black on a white canvas.\n"
  6783. "Negative means that it will print the features\n"
  6784. "with white on a black canvas.\n"
  6785. "The Film format is SVG."
  6786. msgstr ""
  6787. #: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
  6788. msgid "Border"
  6789. msgstr ""
  6790. #: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
  6791. msgid ""
  6792. "Specify a border around the object.\n"
  6793. "Only for negative film.\n"
  6794. "It helps if we use as a Box Object the same \n"
  6795. "object as in Film Object. It will create a thick\n"
  6796. "black bar around the actual print allowing for a\n"
  6797. "better delimitation of the outline features which are of\n"
  6798. "white color like the rest and which may confound with the\n"
  6799. "surroundings if not for this border."
  6800. msgstr ""
  6801. #: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
  6802. msgid "Scale Stroke"
  6803. msgstr ""
  6804. #: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
  6805. msgid ""
  6806. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6807. "It means that the line that envelope each SVG feature will be thicker or "
  6808. "thinner,\n"
  6809. "therefore the fine features may be more affected by this parameter."
  6810. msgstr ""
  6811. #: flatcamGUI/FlatCAMGUI.py:7052
  6812. msgid "Panelize Tool Options"
  6813. msgstr ""
  6814. #: flatcamGUI/FlatCAMGUI.py:7057
  6815. msgid ""
  6816. "Create an object that contains an array of (x, y) elements,\n"
  6817. "each element is a copy of the source object spaced\n"
  6818. "at a X distance, Y distance of each other."
  6819. msgstr ""
  6820. #: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
  6821. msgid "Spacing cols"
  6822. msgstr ""
  6823. #: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
  6824. msgid ""
  6825. "Spacing between columns of the desired panel.\n"
  6826. "In current units."
  6827. msgstr ""
  6828. #: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
  6829. msgid "Spacing rows"
  6830. msgstr ""
  6831. #: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
  6832. msgid ""
  6833. "Spacing between rows of the desired panel.\n"
  6834. "In current units."
  6835. msgstr ""
  6836. #: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
  6837. msgid "Columns"
  6838. msgstr ""
  6839. #: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
  6840. msgid "Number of columns of the desired panel"
  6841. msgstr ""
  6842. #: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
  6843. msgid "Rows"
  6844. msgstr ""
  6845. #: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
  6846. msgid "Number of rows of the desired panel"
  6847. msgstr ""
  6848. #: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
  6849. msgid "Gerber"
  6850. msgstr ""
  6851. #: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
  6852. msgid "Geo"
  6853. msgstr ""
  6854. #: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
  6855. msgid "Panel Type"
  6856. msgstr ""
  6857. #: flatcamGUI/FlatCAMGUI.py:7109
  6858. msgid ""
  6859. "Choose the type of object for the panel object:\n"
  6860. "- Gerber\n"
  6861. "- Geometry"
  6862. msgstr ""
  6863. #: flatcamGUI/FlatCAMGUI.py:7118
  6864. msgid "Constrain within"
  6865. msgstr ""
  6866. #: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
  6867. msgid ""
  6868. "Area define by DX and DY within to constrain the panel.\n"
  6869. "DX and DY values are in current units.\n"
  6870. "Regardless of how many columns and rows are desired,\n"
  6871. "the final panel will have as many columns and rows as\n"
  6872. "they fit completely within selected area."
  6873. msgstr ""
  6874. #: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
  6875. msgid "Width (DX)"
  6876. msgstr ""
  6877. #: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
  6878. msgid ""
  6879. "The width (DX) within which the panel must fit.\n"
  6880. "In current units."
  6881. msgstr ""
  6882. #: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
  6883. msgid "Height (DY)"
  6884. msgstr ""
  6885. #: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
  6886. msgid ""
  6887. "The height (DY)within which the panel must fit.\n"
  6888. "In current units."
  6889. msgstr ""
  6890. #: flatcamGUI/FlatCAMGUI.py:7154
  6891. msgid "Calculators Tool Options"
  6892. msgstr ""
  6893. #: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
  6894. msgid "V-Shape Tool Calculator"
  6895. msgstr ""
  6896. #: flatcamGUI/FlatCAMGUI.py:7159
  6897. msgid ""
  6898. "Calculate the tool diameter for a given V-shape tool,\n"
  6899. "having the tip diameter, tip angle and\n"
  6900. "depth-of-cut as parameters."
  6901. msgstr ""
  6902. #: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
  6903. msgid "Tip Diameter"
  6904. msgstr ""
  6905. #: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
  6906. msgid ""
  6907. "This is the tool tip diameter.\n"
  6908. "It is specified by manufacturer."
  6909. msgstr ""
  6910. #: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
  6911. msgid "Tip Angle"
  6912. msgstr ""
  6913. #: flatcamGUI/FlatCAMGUI.py:7182
  6914. msgid ""
  6915. "This is the angle on the tip of the tool.\n"
  6916. "It is specified by manufacturer."
  6917. msgstr ""
  6918. #: flatcamGUI/FlatCAMGUI.py:7192
  6919. msgid ""
  6920. "This is depth to cut into material.\n"
  6921. "In the CNCJob object it is the CutZ parameter."
  6922. msgstr ""
  6923. #: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
  6924. msgid "ElectroPlating Calculator"
  6925. msgstr ""
  6926. #: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
  6927. msgid ""
  6928. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6929. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6930. "chloride."
  6931. msgstr ""
  6932. #: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
  6933. msgid "Board Length"
  6934. msgstr ""
  6935. #: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
  6936. msgid "This is the board length. In centimeters."
  6937. msgstr ""
  6938. #: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
  6939. msgid "Board Width"
  6940. msgstr ""
  6941. #: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
  6942. msgid "This is the board width.In centimeters."
  6943. msgstr ""
  6944. #: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
  6945. msgid "Current Density"
  6946. msgstr ""
  6947. #: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
  6948. msgid ""
  6949. "Current density to pass through the board. \n"
  6950. "In Amps per Square Feet ASF."
  6951. msgstr ""
  6952. #: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
  6953. msgid "Copper Growth"
  6954. msgstr ""
  6955. #: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
  6956. msgid ""
  6957. "How thick the copper growth is intended to be.\n"
  6958. "In microns."
  6959. msgstr ""
  6960. #: flatcamGUI/FlatCAMGUI.py:7251
  6961. msgid "Transform Tool Options"
  6962. msgstr ""
  6963. #: flatcamGUI/FlatCAMGUI.py:7256
  6964. msgid ""
  6965. "Various transformations that can be applied\n"
  6966. "on a FlatCAM object."
  6967. msgstr ""
  6968. #: flatcamGUI/FlatCAMGUI.py:7266
  6969. msgid "Rotate Angle"
  6970. msgstr ""
  6971. #: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
  6972. msgid "Skew_X angle"
  6973. msgstr ""
  6974. #: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
  6975. msgid "Skew_Y angle"
  6976. msgstr ""
  6977. #: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
  6978. msgid "Scale_X factor"
  6979. msgstr ""
  6980. #: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
  6981. msgid "Factor for scaling on X axis."
  6982. msgstr ""
  6983. #: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
  6984. msgid "Scale_Y factor"
  6985. msgstr ""
  6986. #: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
  6987. msgid "Factor for scaling on Y axis."
  6988. msgstr ""
  6989. #: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
  6990. msgid ""
  6991. "Scale the selected object(s)\n"
  6992. "using the Scale_X factor for both axis."
  6993. msgstr ""
  6994. #: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
  6995. msgid ""
  6996. "Scale the selected object(s)\n"
  6997. "using the origin reference when checked,\n"
  6998. "and the center of the biggest bounding box\n"
  6999. "of the selected objects when unchecked."
  7000. msgstr ""
  7001. #: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
  7002. msgid "Offset_X val"
  7003. msgstr ""
  7004. #: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
  7005. msgid "Distance to offset on X axis. In current units."
  7006. msgstr ""
  7007. #: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
  7008. msgid "Offset_Y val"
  7009. msgstr ""
  7010. #: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
  7011. msgid "Distance to offset on Y axis. In current units."
  7012. msgstr ""
  7013. #: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
  7014. msgid "Mirror Reference"
  7015. msgstr ""
  7016. #: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
  7017. msgid ""
  7018. "Flip the selected object(s)\n"
  7019. "around the point in Point Entry Field.\n"
  7020. "\n"
  7021. "The point coordinates can be captured by\n"
  7022. "left click on canvas together with pressing\n"
  7023. "SHIFT key. \n"
  7024. "Then click Add button to insert coordinates.\n"
  7025. "Or enter the coords in format (x, y) in the\n"
  7026. "Point Entry field and click Flip on X(Y)"
  7027. msgstr ""
  7028. #: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
  7029. msgid " Mirror Ref. Point"
  7030. msgstr ""
  7031. #: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
  7032. msgid ""
  7033. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7034. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7035. "the 'y' in (x, y) will be used when using Flip on Y and"
  7036. msgstr ""
  7037. #: flatcamGUI/FlatCAMGUI.py:7383
  7038. msgid "SolderPaste Tool Options"
  7039. msgstr ""
  7040. #: flatcamGUI/FlatCAMGUI.py:7388
  7041. msgid ""
  7042. "A tool to create GCode for dispensing\n"
  7043. "solder paste onto a PCB."
  7044. msgstr ""
  7045. #: flatcamGUI/FlatCAMGUI.py:7399
  7046. msgid "Diameters of nozzle tools, separated by ','"
  7047. msgstr ""
  7048. #: flatcamGUI/FlatCAMGUI.py:7406
  7049. msgid "New Nozzle Dia"
  7050. msgstr ""
  7051. #: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
  7052. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7053. msgstr ""
  7054. #: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
  7055. msgid "Z Dispense Start"
  7056. msgstr ""
  7057. #: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
  7058. msgid "The height (Z) when solder paste dispensing starts."
  7059. msgstr ""
  7060. #: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
  7061. msgid "Z Dispense"
  7062. msgstr ""
  7063. #: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
  7064. msgid "The height (Z) when doing solder paste dispensing."
  7065. msgstr ""
  7066. #: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
  7067. msgid "Z Dispense Stop"
  7068. msgstr ""
  7069. #: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
  7070. msgid "The height (Z) when solder paste dispensing stops."
  7071. msgstr ""
  7072. #: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
  7073. msgid "Z Travel"
  7074. msgstr ""
  7075. #: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
  7076. msgid ""
  7077. "The height (Z) for travel between pads\n"
  7078. "(without dispensing solder paste)."
  7079. msgstr ""
  7080. #: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
  7081. msgid "Z Toolchange"
  7082. msgstr ""
  7083. #: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
  7084. msgid "The height (Z) for tool (nozzle) change."
  7085. msgstr ""
  7086. #: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
  7087. msgid "Toolchange X-Y"
  7088. msgstr ""
  7089. #: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
  7090. msgid ""
  7091. "The X,Y location for tool (nozzle) change.\n"
  7092. "The format is (x, y) where x and y are real numbers."
  7093. msgstr ""
  7094. #: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
  7095. msgid "Feedrate X-Y"
  7096. msgstr ""
  7097. #: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
  7098. msgid "Feedrate (speed) while moving on the X-Y plane."
  7099. msgstr ""
  7100. #: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
  7101. msgid "Feedrate Z"
  7102. msgstr ""
  7103. #: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
  7104. msgid ""
  7105. "Feedrate (speed) while moving vertically\n"
  7106. "(on Z plane)."
  7107. msgstr ""
  7108. #: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
  7109. msgid "Feedrate Z Dispense"
  7110. msgstr ""
  7111. #: flatcamGUI/FlatCAMGUI.py:7493
  7112. msgid ""
  7113. "Feedrate (speed) while moving up vertically\n"
  7114. "to Dispense position (on Z plane)."
  7115. msgstr ""
  7116. #: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
  7117. msgid "Spindle Speed FWD"
  7118. msgstr ""
  7119. #: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
  7120. msgid ""
  7121. "The dispenser speed while pushing solder paste\n"
  7122. "through the dispenser nozzle."
  7123. msgstr ""
  7124. #: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
  7125. msgid "Dwell FWD"
  7126. msgstr ""
  7127. #: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
  7128. msgid "Pause after solder dispensing."
  7129. msgstr ""
  7130. #: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
  7131. msgid "Spindle Speed REV"
  7132. msgstr ""
  7133. #: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
  7134. msgid ""
  7135. "The dispenser speed while retracting solder paste\n"
  7136. "through the dispenser nozzle."
  7137. msgstr ""
  7138. #: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
  7139. msgid "Dwell REV"
  7140. msgstr ""
  7141. #: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
  7142. msgid ""
  7143. "Pause after solder paste dispenser retracted,\n"
  7144. "to allow pressure equilibrium."
  7145. msgstr ""
  7146. #: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
  7147. #: flatcamTools/ToolSolderPaste.py:276
  7148. msgid "PostProcessor"
  7149. msgstr ""
  7150. #: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
  7151. msgid "Files that control the GCode generation."
  7152. msgstr ""
  7153. #: flatcamGUI/FlatCAMGUI.py:7556
  7154. msgid "Substractor Tool Options"
  7155. msgstr ""
  7156. #: flatcamGUI/FlatCAMGUI.py:7561
  7157. msgid ""
  7158. "A tool to substract one Gerber or Geometry object\n"
  7159. "from another of the same type."
  7160. msgstr ""
  7161. #: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
  7162. msgid "Close paths"
  7163. msgstr ""
  7164. #: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
  7165. msgid ""
  7166. "Checking this will close the paths cut by the Geometry substractor object."
  7167. msgstr ""
  7168. #: flatcamGUI/FlatCAMGUI.py:7578
  7169. msgid "Excellon File associations"
  7170. msgstr ""
  7171. #: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
  7172. #: flatcamGUI/FlatCAMGUI.py:7647
  7173. msgid "Extensions list"
  7174. msgstr ""
  7175. #: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
  7176. #: flatcamGUI/FlatCAMGUI.py:7649
  7177. msgid ""
  7178. "List of file extensions to be\n"
  7179. "associated with FlatCAM."
  7180. msgstr ""
  7181. #: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
  7182. #: flatcamGUI/FlatCAMGUI.py:7662
  7183. msgid ""
  7184. "Apply the file associations between\n"
  7185. "FlatCAM and the files with above extensions.\n"
  7186. "They will be active after next logon.\n"
  7187. "This work only in Windows."
  7188. msgstr ""
  7189. #: flatcamGUI/FlatCAMGUI.py:7611
  7190. msgid "GCode File associations"
  7191. msgstr ""
  7192. #: flatcamGUI/FlatCAMGUI.py:7644
  7193. msgid "Gerber File associations"
  7194. msgstr ""
  7195. #: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
  7196. msgid "Idle."
  7197. msgstr ""
  7198. #: flatcamGUI/FlatCAMGUI.py:7722
  7199. msgid "Application started ..."
  7200. msgstr ""
  7201. #: flatcamGUI/FlatCAMGUI.py:7723
  7202. msgid "Hello!"
  7203. msgstr ""
  7204. #: flatcamGUI/ObjectUI.py:33
  7205. msgid "FlatCAM Object"
  7206. msgstr ""
  7207. #: flatcamGUI/ObjectUI.py:58
  7208. msgid ""
  7209. "BASIC is suitable for a beginner. Many parameters\n"
  7210. "are hidden from the user in this mode.\n"
  7211. "ADVANCED mode will make available all parameters.\n"
  7212. "\n"
  7213. "To change the application LEVEL, go to:\n"
  7214. "Edit -> Preferences -> General and check:\n"
  7215. "'APP. LEVEL' radio button."
  7216. msgstr ""
  7217. #: flatcamGUI/ObjectUI.py:81
  7218. msgid "Change the size of the object."
  7219. msgstr ""
  7220. #: flatcamGUI/ObjectUI.py:89
  7221. msgid "Factor"
  7222. msgstr ""
  7223. #: flatcamGUI/ObjectUI.py:91
  7224. msgid ""
  7225. "Factor by which to multiply\n"
  7226. "geometric features of this object."
  7227. msgstr ""
  7228. #: flatcamGUI/ObjectUI.py:102
  7229. msgid "Perform scaling operation."
  7230. msgstr ""
  7231. #: flatcamGUI/ObjectUI.py:110
  7232. msgid "Change the position of this object."
  7233. msgstr ""
  7234. #: flatcamGUI/ObjectUI.py:117
  7235. msgid "Vector"
  7236. msgstr ""
  7237. #: flatcamGUI/ObjectUI.py:119
  7238. msgid ""
  7239. "Amount by which to move the object\n"
  7240. "in the x and y axes in (x, y) format."
  7241. msgstr ""
  7242. #: flatcamGUI/ObjectUI.py:129
  7243. msgid "Perform the offset operation."
  7244. msgstr ""
  7245. #: flatcamGUI/ObjectUI.py:143
  7246. msgid "Gerber Object"
  7247. msgstr ""
  7248. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
  7249. #: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
  7250. msgid "Name"
  7251. msgstr ""
  7252. #: flatcamGUI/ObjectUI.py:203
  7253. msgid ""
  7254. "Toggle the display of the Gerber Apertures Table.\n"
  7255. "When unchecked, it will delete all mark shapes\n"
  7256. "that are drawn on canvas."
  7257. msgstr ""
  7258. #: flatcamGUI/ObjectUI.py:213
  7259. msgid "Mark All"
  7260. msgstr ""
  7261. #: flatcamGUI/ObjectUI.py:215
  7262. msgid ""
  7263. "When checked it will display all the apertures.\n"
  7264. "When unchecked, it will delete all mark shapes\n"
  7265. "that are drawn on canvas."
  7266. msgstr ""
  7267. #: flatcamGUI/ObjectUI.py:243
  7268. msgid "Mark the aperture instances on canvas."
  7269. msgstr ""
  7270. #: flatcamGUI/ObjectUI.py:266
  7271. msgid ""
  7272. "Diameter of the cutting tool.\n"
  7273. "If you want to have an isolation path\n"
  7274. "inside the actual shape of the Gerber\n"
  7275. "feature, use a negative value for\n"
  7276. "this parameter."
  7277. msgstr ""
  7278. #: flatcamGUI/ObjectUI.py:324
  7279. msgid "Except"
  7280. msgstr ""
  7281. #: flatcamGUI/ObjectUI.py:325
  7282. msgid ""
  7283. "When the isolation geometry is generated,\n"
  7284. "by checking this, the area of the object bellow\n"
  7285. "will be subtracted from the isolation geometry."
  7286. msgstr ""
  7287. #: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
  7288. #: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
  7289. msgid "Obj Type"
  7290. msgstr ""
  7291. #: flatcamGUI/ObjectUI.py:352
  7292. msgid ""
  7293. "Specify the type of object to be excepted from isolation.\n"
  7294. "It can be of type: Gerber or Geometry.\n"
  7295. "What is selected here will dictate the kind\n"
  7296. "of objects that will populate the 'Object' combobox."
  7297. msgstr ""
  7298. #: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
  7299. #: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
  7300. #: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
  7301. msgid "Object"
  7302. msgstr ""
  7303. #: flatcamGUI/ObjectUI.py:366
  7304. msgid "Object whose area will be removed from isolation geometry."
  7305. msgstr ""
  7306. #: flatcamGUI/ObjectUI.py:370
  7307. msgid "Generate Isolation Geometry"
  7308. msgstr ""
  7309. #: flatcamGUI/ObjectUI.py:372
  7310. msgid ""
  7311. "Create a Geometry object with toolpaths to cut \n"
  7312. "isolation outside, inside or on both sides of the\n"
  7313. "object. For a Gerber object outside means outside\n"
  7314. "of the Gerber feature and inside means inside of\n"
  7315. "the Gerber feature, if possible at all. This means\n"
  7316. "that only if the Gerber feature has openings inside, they\n"
  7317. "will be isolated. If what is wanted is to cut isolation\n"
  7318. "inside the actual Gerber feature, use a negative tool\n"
  7319. "diameter above."
  7320. msgstr ""
  7321. #: flatcamGUI/ObjectUI.py:384
  7322. msgid "Buffer Solid Geometry"
  7323. msgstr ""
  7324. #: flatcamGUI/ObjectUI.py:386
  7325. msgid ""
  7326. "This button is shown only when the Gerber file\n"
  7327. "is loaded without buffering.\n"
  7328. "Clicking this will create the buffered geometry\n"
  7329. "required for isolation."
  7330. msgstr ""
  7331. #: flatcamGUI/ObjectUI.py:393
  7332. msgid "FULL Geo"
  7333. msgstr ""
  7334. #: flatcamGUI/ObjectUI.py:395
  7335. msgid ""
  7336. "Create the Geometry Object\n"
  7337. "for isolation routing. It contains both\n"
  7338. "the interiors and exteriors geometry."
  7339. msgstr ""
  7340. #: flatcamGUI/ObjectUI.py:404
  7341. msgid "Ext Geo"
  7342. msgstr ""
  7343. #: flatcamGUI/ObjectUI.py:406
  7344. msgid ""
  7345. "Create the Geometry Object\n"
  7346. "for isolation routing containing\n"
  7347. "only the exteriors geometry."
  7348. msgstr ""
  7349. #: flatcamGUI/ObjectUI.py:413
  7350. msgid "Int Geo"
  7351. msgstr ""
  7352. #: flatcamGUI/ObjectUI.py:415
  7353. msgid ""
  7354. "Create the Geometry Object\n"
  7355. "for isolation routing containing\n"
  7356. "only the interiors geometry."
  7357. msgstr ""
  7358. #: flatcamGUI/ObjectUI.py:445
  7359. msgid "Clear N-copper"
  7360. msgstr ""
  7361. #: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
  7362. msgid ""
  7363. "Create the Geometry Object\n"
  7364. "for non-copper routing."
  7365. msgstr ""
  7366. #: flatcamGUI/ObjectUI.py:461
  7367. msgid "Board cutout"
  7368. msgstr ""
  7369. #: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
  7370. msgid "Cutout Tool"
  7371. msgstr ""
  7372. #: flatcamGUI/ObjectUI.py:470
  7373. msgid ""
  7374. "Generate the geometry for\n"
  7375. "the board cutout."
  7376. msgstr ""
  7377. #: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
  7378. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  7379. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  7380. msgid "Generate Geo"
  7381. msgstr ""
  7382. #: flatcamGUI/ObjectUI.py:515
  7383. msgid ""
  7384. "Create a geometry surrounding the Gerber object.\n"
  7385. "Square shape."
  7386. msgstr ""
  7387. #: flatcamGUI/ObjectUI.py:542
  7388. msgid "Generate the Geometry object."
  7389. msgstr ""
  7390. #: flatcamGUI/ObjectUI.py:554
  7391. msgid "Excellon Object"
  7392. msgstr ""
  7393. #: flatcamGUI/ObjectUI.py:565
  7394. msgid "Solid circles."
  7395. msgstr ""
  7396. #: flatcamGUI/ObjectUI.py:613
  7397. msgid "Drills"
  7398. msgstr ""
  7399. #: flatcamGUI/ObjectUI.py:618
  7400. msgid ""
  7401. "This is the Tool Number.\n"
  7402. "When ToolChange is checked, on toolchange event this value\n"
  7403. "will be showed as a T1, T2 ... Tn in the Machine Code.\n"
  7404. "\n"
  7405. "Here the tools are selected for G-code generation."
  7406. msgstr ""
  7407. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
  7408. #: flatcamTools/ToolPaint.py:120
  7409. msgid ""
  7410. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7411. "is the cut width into the material."
  7412. msgstr ""
  7413. #: flatcamGUI/ObjectUI.py:626
  7414. msgid ""
  7415. "The number of Drill holes. Holes that are drilled with\n"
  7416. "a drill bit."
  7417. msgstr ""
  7418. #: flatcamGUI/ObjectUI.py:629
  7419. msgid ""
  7420. "The number of Slot holes. Holes that are created by\n"
  7421. "milling them with an endmill bit."
  7422. msgstr ""
  7423. #: flatcamGUI/ObjectUI.py:636
  7424. msgid ""
  7425. "Toggle display of the drills for the current tool.\n"
  7426. "This does not select the tools for G-code generation."
  7427. msgstr ""
  7428. #: flatcamGUI/ObjectUI.py:645
  7429. msgid ""
  7430. "Create a CNC Job object\n"
  7431. "for this drill object."
  7432. msgstr ""
  7433. #: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
  7434. msgid "Tool change Z"
  7435. msgstr ""
  7436. #: flatcamGUI/ObjectUI.py:799
  7437. msgid ""
  7438. "Select from the Tools Table above\n"
  7439. "the hole dias that are to be drilled.\n"
  7440. "Use the # column to make the selection."
  7441. msgstr ""
  7442. #: flatcamGUI/ObjectUI.py:809
  7443. msgid ""
  7444. "Choose what to use for GCode generation:\n"
  7445. "'Drills', 'Slots' or 'Both'.\n"
  7446. "When choosing 'Slots' or 'Both', slots will be\n"
  7447. "converted to a series of drills."
  7448. msgstr ""
  7449. #: flatcamGUI/ObjectUI.py:824
  7450. msgid "Create Drills GCode"
  7451. msgstr ""
  7452. #: flatcamGUI/ObjectUI.py:826
  7453. msgid "Generate the CNC Job."
  7454. msgstr ""
  7455. #: flatcamGUI/ObjectUI.py:838
  7456. msgid ""
  7457. "Select from the Tools Table above\n"
  7458. "the hole dias that are to be milled.\n"
  7459. "Use the # column to make the selection."
  7460. msgstr ""
  7461. #: flatcamGUI/ObjectUI.py:853
  7462. msgid "Mill Drills Geo"
  7463. msgstr ""
  7464. #: flatcamGUI/ObjectUI.py:855
  7465. msgid ""
  7466. "Create the Geometry Object\n"
  7467. "for milling DRILLS toolpaths."
  7468. msgstr ""
  7469. #: flatcamGUI/ObjectUI.py:870
  7470. msgid "Mill Slots Geo"
  7471. msgstr ""
  7472. #: flatcamGUI/ObjectUI.py:872
  7473. msgid ""
  7474. "Create the Geometry Object\n"
  7475. "for milling SLOTS toolpaths."
  7476. msgstr ""
  7477. #: flatcamGUI/ObjectUI.py:890
  7478. msgid "Geometry Object"
  7479. msgstr ""
  7480. #: flatcamGUI/ObjectUI.py:921
  7481. msgid ""
  7482. "Tools in this Geometry object used for cutting.\n"
  7483. "The 'Offset' entry will set an offset for the cut.\n"
  7484. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7485. "'Type' entry is only informative and it allow to know the \n"
  7486. "intent of using the current tool. \n"
  7487. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7488. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7489. "ball(B), or V-Shaped(V). \n"
  7490. "When V-shaped is selected the 'Type' entry is automatically \n"
  7491. "set to Isolation, the CutZ parameter in the UI form is\n"
  7492. "grayed out and Cut Z is automatically calculated from the newly \n"
  7493. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7494. msgstr ""
  7495. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7496. msgid "Dia"
  7497. msgstr ""
  7498. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7499. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  7500. msgid "TT"
  7501. msgstr ""
  7502. #: flatcamGUI/ObjectUI.py:959
  7503. msgid ""
  7504. "This is the Tool Number.\n"
  7505. "When ToolChange is checked, on toolchange event this value\n"
  7506. "will be showed as a T1, T2 ... Tn"
  7507. msgstr ""
  7508. #: flatcamGUI/ObjectUI.py:970
  7509. msgid ""
  7510. "The value for the Offset can be:\n"
  7511. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7512. "line.\n"
  7513. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7514. "'pocket'.\n"
  7515. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7516. msgstr ""
  7517. #: flatcamGUI/ObjectUI.py:977
  7518. msgid ""
  7519. "The (Operation) Type has only informative value. Usually the UI form "
  7520. "values \n"
  7521. "are choose based on the operation type and this will serve as a reminder.\n"
  7522. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7523. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7524. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7525. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7526. "tip."
  7527. msgstr ""
  7528. #: flatcamGUI/ObjectUI.py:986
  7529. msgid ""
  7530. "The Tool Type (TT) can be:\n"
  7531. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7532. "cut width in material\n"
  7533. "is exactly the tool diameter.\n"
  7534. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7535. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7536. "two additional UI form\n"
  7537. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7538. "the Z-Cut parameter such\n"
  7539. "as the cut width into material will be equal with the value in the Tool "
  7540. "Diameter column of this table.\n"
  7541. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7542. "as Isolation."
  7543. msgstr ""
  7544. #: flatcamGUI/ObjectUI.py:998
  7545. msgid ""
  7546. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7547. "that holds the geometry\n"
  7548. "data into the tools. For those geometries, deleting the tool will delete the "
  7549. "geometry data also,\n"
  7550. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7551. "plot on canvas\n"
  7552. "for the corresponding tool."
  7553. msgstr ""
  7554. #: flatcamGUI/ObjectUI.py:1011
  7555. msgid "Tool Offset"
  7556. msgstr ""
  7557. #: flatcamGUI/ObjectUI.py:1014
  7558. msgid ""
  7559. "The value to offset the cut when \n"
  7560. "the Offset type selected is 'Offset'.\n"
  7561. "The value can be positive for 'outside'\n"
  7562. "cut and negative for 'inside' cut."
  7563. msgstr ""
  7564. #: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
  7565. #: flatcamTools/ToolPaint.py:178
  7566. msgid ""
  7567. "Add a new tool to the Tool Table\n"
  7568. "with the diameter specified above."
  7569. msgstr ""
  7570. #: flatcamGUI/ObjectUI.py:1064
  7571. msgid ""
  7572. "Copy a selection of tools in the Tool Table\n"
  7573. "by first selecting a row in the Tool Table."
  7574. msgstr ""
  7575. #: flatcamGUI/ObjectUI.py:1072
  7576. msgid ""
  7577. "Delete a selection of tools in the Tool Table\n"
  7578. "by first selecting a row in the Tool Table."
  7579. msgstr ""
  7580. #: flatcamGUI/ObjectUI.py:1088
  7581. msgid "Tool Data"
  7582. msgstr ""
  7583. #: flatcamGUI/ObjectUI.py:1091
  7584. msgid ""
  7585. "The data used for creating GCode.\n"
  7586. "Each tool store it's own set of such data."
  7587. msgstr ""
  7588. #: flatcamGUI/ObjectUI.py:1158
  7589. msgid "Depth of each pass (positive)."
  7590. msgstr ""
  7591. #: flatcamGUI/ObjectUI.py:1332
  7592. msgid ""
  7593. "Add at least one tool in the tool-table.\n"
  7594. "Click the header to select all, or Ctrl + LMB\n"
  7595. "for custom selection of tools."
  7596. msgstr ""
  7597. #: flatcamGUI/ObjectUI.py:1339
  7598. msgid "Generate"
  7599. msgstr ""
  7600. #: flatcamGUI/ObjectUI.py:1341
  7601. msgid "Generate the CNC Job object."
  7602. msgstr ""
  7603. #: flatcamGUI/ObjectUI.py:1348
  7604. msgid "Paint Area"
  7605. msgstr ""
  7606. #: flatcamGUI/ObjectUI.py:1362
  7607. msgid "Launch Paint Tool in Tools Tab."
  7608. msgstr ""
  7609. #: flatcamGUI/ObjectUI.py:1378
  7610. msgid "CNC Job Object"
  7611. msgstr ""
  7612. #: flatcamGUI/ObjectUI.py:1429
  7613. msgid "Travelled dist."
  7614. msgstr ""
  7615. #: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
  7616. msgid ""
  7617. "This is the total travelled distance on X-Y plane.\n"
  7618. "In current units."
  7619. msgstr ""
  7620. #: flatcamGUI/ObjectUI.py:1441
  7621. msgid "Estimated time"
  7622. msgstr ""
  7623. #: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
  7624. msgid ""
  7625. "This is the estimated time to do the routing/drilling,\n"
  7626. "without the time spent in ToolChange events."
  7627. msgstr ""
  7628. #: flatcamGUI/ObjectUI.py:1483
  7629. msgid "CNC Tools Table"
  7630. msgstr ""
  7631. #: flatcamGUI/ObjectUI.py:1486
  7632. msgid ""
  7633. "Tools in this CNCJob object used for cutting.\n"
  7634. "The tool diameter is used for plotting on canvas.\n"
  7635. "The 'Offset' entry will set an offset for the cut.\n"
  7636. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7637. "'Type' entry is only informative and it allow to know the \n"
  7638. "intent of using the current tool. \n"
  7639. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7640. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7641. "ball(B), or V-Shaped(V)."
  7642. msgstr ""
  7643. #: flatcamGUI/ObjectUI.py:1518
  7644. msgid "P"
  7645. msgstr ""
  7646. #: flatcamGUI/ObjectUI.py:1524
  7647. msgid "Update Plot"
  7648. msgstr ""
  7649. #: flatcamGUI/ObjectUI.py:1526
  7650. msgid "Update the plot."
  7651. msgstr ""
  7652. #: flatcamGUI/ObjectUI.py:1541
  7653. msgid "Prepend to CNC Code"
  7654. msgstr ""
  7655. #: flatcamGUI/ObjectUI.py:1552
  7656. msgid "Append to CNC Code"
  7657. msgstr ""
  7658. #: flatcamGUI/ObjectUI.py:1620
  7659. msgid "z_cut = depth where to cut"
  7660. msgstr ""
  7661. #: flatcamGUI/ObjectUI.py:1621
  7662. msgid "z_move = height where to travel"
  7663. msgstr ""
  7664. #: flatcamGUI/ObjectUI.py:1640
  7665. msgid "View CNC Code"
  7666. msgstr ""
  7667. #: flatcamGUI/ObjectUI.py:1642
  7668. msgid ""
  7669. "Opens TAB to view/modify/print G-Code\n"
  7670. "file."
  7671. msgstr ""
  7672. #: flatcamGUI/ObjectUI.py:1647
  7673. msgid "Save CNC Code"
  7674. msgstr ""
  7675. #: flatcamGUI/ObjectUI.py:1649
  7676. msgid ""
  7677. "Opens dialog to save G-Code\n"
  7678. "file."
  7679. msgstr ""
  7680. #: flatcamParsers/ParseFont.py:305
  7681. msgid "Font not supported, try another one."
  7682. msgstr ""
  7683. #: flatcamTools/ToolCalculators.py:24
  7684. msgid "Calculators"
  7685. msgstr ""
  7686. #: flatcamTools/ToolCalculators.py:26
  7687. msgid "Units Calculator"
  7688. msgstr ""
  7689. #: flatcamTools/ToolCalculators.py:68
  7690. msgid "Here you enter the value to be converted from INCH to MM"
  7691. msgstr ""
  7692. #: flatcamTools/ToolCalculators.py:73
  7693. msgid "Here you enter the value to be converted from MM to INCH"
  7694. msgstr ""
  7695. #: flatcamTools/ToolCalculators.py:104
  7696. msgid ""
  7697. "This is the angle of the tip of the tool.\n"
  7698. "It is specified by manufacturer."
  7699. msgstr ""
  7700. #: flatcamTools/ToolCalculators.py:111
  7701. msgid ""
  7702. "This is the depth to cut into the material.\n"
  7703. "In the CNCJob is the CutZ parameter."
  7704. msgstr ""
  7705. #: flatcamTools/ToolCalculators.py:114
  7706. msgid "Tool Diameter"
  7707. msgstr ""
  7708. #: flatcamTools/ToolCalculators.py:118
  7709. msgid ""
  7710. "This is the tool diameter to be entered into\n"
  7711. "FlatCAM Gerber section.\n"
  7712. "In the CNCJob section it is called >Tool dia<."
  7713. msgstr ""
  7714. #: flatcamTools/ToolCalculators.py:129 flatcamTools/ToolCalculators.py:210
  7715. msgid "Calculate"
  7716. msgstr ""
  7717. #: flatcamTools/ToolCalculators.py:132
  7718. msgid ""
  7719. "Calculate either the Cut Z or the effective tool diameter,\n"
  7720. " depending on which is desired and which is known. "
  7721. msgstr ""
  7722. #: flatcamTools/ToolCalculators.py:186
  7723. msgid "Current Value"
  7724. msgstr ""
  7725. #: flatcamTools/ToolCalculators.py:190
  7726. msgid ""
  7727. "This is the current intensity value\n"
  7728. "to be set on the Power Supply. In Amps."
  7729. msgstr ""
  7730. #: flatcamTools/ToolCalculators.py:194
  7731. msgid "Time"
  7732. msgstr ""
  7733. #: flatcamTools/ToolCalculators.py:198
  7734. msgid ""
  7735. "This is the calculated time required for the procedure.\n"
  7736. "In minutes."
  7737. msgstr ""
  7738. #: flatcamTools/ToolCalculators.py:213
  7739. msgid ""
  7740. "Calculate the current intensity value and the procedure time,\n"
  7741. "depending on the parameters above"
  7742. msgstr ""
  7743. #: flatcamTools/ToolCalculators.py:262
  7744. msgid "Calc. Tool"
  7745. msgstr ""
  7746. #: flatcamTools/ToolCutOut.py:18
  7747. msgid "Cutout PCB"
  7748. msgstr ""
  7749. #: flatcamTools/ToolCutOut.py:55
  7750. msgid ""
  7751. "Specify the type of object to be cutout.\n"
  7752. "It can be of type: Gerber or Geometry.\n"
  7753. "What is selected here will dictate the kind\n"
  7754. "of objects that will populate the 'Object' combobox."
  7755. msgstr ""
  7756. #: flatcamTools/ToolCutOut.py:71
  7757. msgid "Object to be cutout. "
  7758. msgstr ""
  7759. #: flatcamTools/ToolCutOut.py:100
  7760. msgid "Margin:"
  7761. msgstr ""
  7762. #: flatcamTools/ToolCutOut.py:110
  7763. msgid "Gap size:"
  7764. msgstr ""
  7765. #: flatcamTools/ToolCutOut.py:137
  7766. msgid "A. Automatic Bridge Gaps"
  7767. msgstr ""
  7768. #: flatcamTools/ToolCutOut.py:139
  7769. msgid "This section handle creation of automatic bridge gaps."
  7770. msgstr ""
  7771. #: flatcamTools/ToolCutOut.py:150
  7772. msgid ""
  7773. "Number of gaps used for the Automatic cutout.\n"
  7774. "There can be maximum 8 bridges/gaps.\n"
  7775. "The choices are:\n"
  7776. "- None - no gaps\n"
  7777. "- lr - left + right\n"
  7778. "- tb - top + bottom\n"
  7779. "- 4 - left + right +top + bottom\n"
  7780. "- 2lr - 2*left + 2*right\n"
  7781. "- 2tb - 2*top + 2*bottom\n"
  7782. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7783. msgstr ""
  7784. #: flatcamTools/ToolCutOut.py:174
  7785. msgid "FreeForm"
  7786. msgstr ""
  7787. #: flatcamTools/ToolCutOut.py:176
  7788. msgid ""
  7789. "The cutout shape can be of ny shape.\n"
  7790. "Useful when the PCB has a non-rectangular shape."
  7791. msgstr ""
  7792. #: flatcamTools/ToolCutOut.py:185
  7793. msgid ""
  7794. "Cutout the selected object.\n"
  7795. "The cutout shape can be of any shape.\n"
  7796. "Useful when the PCB has a non-rectangular shape."
  7797. msgstr ""
  7798. #: flatcamTools/ToolCutOut.py:194
  7799. msgid "Rectangular"
  7800. msgstr ""
  7801. #: flatcamTools/ToolCutOut.py:196
  7802. msgid ""
  7803. "The resulting cutout shape is\n"
  7804. "always a rectangle shape and it will be\n"
  7805. "the bounding box of the Object."
  7806. msgstr ""
  7807. #: flatcamTools/ToolCutOut.py:205
  7808. msgid ""
  7809. "Cutout the selected object.\n"
  7810. "The resulting cutout shape is\n"
  7811. "always a rectangle shape and it will be\n"
  7812. "the bounding box of the Object."
  7813. msgstr ""
  7814. #: flatcamTools/ToolCutOut.py:213
  7815. msgid "B. Manual Bridge Gaps"
  7816. msgstr ""
  7817. #: flatcamTools/ToolCutOut.py:215
  7818. msgid ""
  7819. "This section handle creation of manual bridge gaps.\n"
  7820. "This is done by mouse clicking on the perimeter of the\n"
  7821. "Geometry object that is used as a cutout object. "
  7822. msgstr ""
  7823. #: flatcamTools/ToolCutOut.py:231
  7824. msgid "Geo Obj"
  7825. msgstr ""
  7826. #: flatcamTools/ToolCutOut.py:233
  7827. msgid "Geometry object used to create the manual cutout."
  7828. msgstr ""
  7829. #: flatcamTools/ToolCutOut.py:244
  7830. msgid "Manual Geo"
  7831. msgstr ""
  7832. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  7833. msgid ""
  7834. "If the object to be cutout is a Gerber\n"
  7835. "first create a Geometry that surrounds it,\n"
  7836. "to be used as the cutout, if one doesn't exist yet.\n"
  7837. "Select the source Gerber file in the top object combobox."
  7838. msgstr ""
  7839. #: flatcamTools/ToolCutOut.py:266
  7840. msgid "Manual Add Bridge Gaps"
  7841. msgstr ""
  7842. #: flatcamTools/ToolCutOut.py:268
  7843. msgid ""
  7844. "Use the left mouse button (LMB) click\n"
  7845. "to create a bridge gap to separate the PCB from\n"
  7846. "the surrounding material."
  7847. msgstr ""
  7848. #: flatcamTools/ToolCutOut.py:275
  7849. msgid "Generate Gap"
  7850. msgstr ""
  7851. #: flatcamTools/ToolCutOut.py:277
  7852. msgid ""
  7853. "Use the left mouse button (LMB) click\n"
  7854. "to create a bridge gap to separate the PCB from\n"
  7855. "the surrounding material.\n"
  7856. "The LMB click has to be done on the perimeter of\n"
  7857. "the Geometry object used as a cutout geometry."
  7858. msgstr ""
  7859. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
  7860. #: flatcamTools/ToolNonCopperClear.py:1124
  7861. #: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
  7862. #: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
  7863. #: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
  7864. #: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
  7865. #: tclCommands/TclCommandCopperClear.py:131
  7866. #: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
  7867. msgid "Could not retrieve object"
  7868. msgstr ""
  7869. #: flatcamTools/ToolCutOut.py:376
  7870. msgid ""
  7871. "There is no object selected for Cutout.\n"
  7872. "Select one and try again."
  7873. msgstr ""
  7874. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
  7875. #: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
  7876. msgid "Tool Diameter is zero value. Change it to a positive real number."
  7877. msgstr ""
  7878. #: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
  7879. #: flatcamTools/ToolCutOut.py:870
  7880. msgid "Margin value is missing or wrong format. Add it and retry."
  7881. msgstr ""
  7882. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
  7883. #: flatcamTools/ToolCutOut.py:771
  7884. msgid "Gap size value is missing or wrong format. Add it and retry."
  7885. msgstr ""
  7886. #: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
  7887. msgid "Number of gaps value is missing. Add it and retry."
  7888. msgstr ""
  7889. #: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
  7890. msgid ""
  7891. "Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
  7892. "Fill in a correct value and retry. "
  7893. msgstr ""
  7894. #: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
  7895. msgid ""
  7896. "Cutout operation cannot be done on a multi-geo Geometry.\n"
  7897. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7898. "Geometry,\n"
  7899. "and after that perform Cutout."
  7900. msgstr ""
  7901. #: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
  7902. msgid "Any form CutOut operation finished."
  7903. msgstr ""
  7904. #: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
  7905. #, python-format
  7906. msgid "Object not found: %s"
  7907. msgstr ""
  7908. #: flatcamTools/ToolCutOut.py:744
  7909. msgid ""
  7910. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7911. msgstr ""
  7912. #: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
  7913. msgid "Could not retrieve Geometry object"
  7914. msgstr ""
  7915. #: flatcamTools/ToolCutOut.py:804
  7916. msgid "Geometry object for manual cutout not found"
  7917. msgstr ""
  7918. #: flatcamTools/ToolCutOut.py:814
  7919. msgid "Added manual Bridge Gap."
  7920. msgstr ""
  7921. #: flatcamTools/ToolCutOut.py:826
  7922. msgid "Could not retrieve Gerber object"
  7923. msgstr ""
  7924. #: flatcamTools/ToolCutOut.py:831
  7925. msgid ""
  7926. "There is no Gerber object selected for Cutout.\n"
  7927. "Select one and try again."
  7928. msgstr ""
  7929. #: flatcamTools/ToolCutOut.py:837
  7930. msgid ""
  7931. "The selected object has to be of Gerber type.\n"
  7932. "Select a Gerber file and try again."
  7933. msgstr ""
  7934. #: flatcamTools/ToolCutOut.py:892
  7935. msgid "Geometry not supported for cutout"
  7936. msgstr ""
  7937. #: flatcamTools/ToolCutOut.py:928
  7938. msgid "Making manual bridge gap..."
  7939. msgstr ""
  7940. #: flatcamTools/ToolDblSided.py:18
  7941. msgid "2-Sided PCB"
  7942. msgstr ""
  7943. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7944. #: flatcamTools/ToolDblSided.py:100
  7945. msgid "Mirror"
  7946. msgstr ""
  7947. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7948. #: flatcamTools/ToolDblSided.py:102
  7949. msgid ""
  7950. "Mirrors (flips) the specified object around \n"
  7951. "the specified axis. Does not create a new \n"
  7952. "object, but modifies it."
  7953. msgstr ""
  7954. #: flatcamTools/ToolDblSided.py:73
  7955. msgid "Excellon Object to be mirrored."
  7956. msgstr ""
  7957. #: flatcamTools/ToolDblSided.py:97
  7958. msgid "Geometry Obj to be mirrored."
  7959. msgstr ""
  7960. #: flatcamTools/ToolDblSided.py:133
  7961. msgid "Axis Ref:"
  7962. msgstr ""
  7963. #: flatcamTools/ToolDblSided.py:152
  7964. msgid "Point/Box Reference"
  7965. msgstr ""
  7966. #: flatcamTools/ToolDblSided.py:154
  7967. msgid ""
  7968. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7969. "the mirroring axis passes.\n"
  7970. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7971. "Geo).\n"
  7972. "Through the center of this object pass the mirroring axis selected above."
  7973. msgstr ""
  7974. #: flatcamTools/ToolDblSided.py:162
  7975. msgid ""
  7976. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7977. "axis \n"
  7978. " selected in 'MIRROR AXIS' pass.\n"
  7979. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7980. "and left mouse button click on canvas or you can enter the coords manually."
  7981. msgstr ""
  7982. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
  7983. #: flatcamTools/ToolPaint.py:318
  7984. msgid "Gerber Reference Box Object"
  7985. msgstr ""
  7986. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
  7987. #: flatcamTools/ToolPaint.py:319
  7988. msgid "Excellon Reference Box Object"
  7989. msgstr ""
  7990. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
  7991. #: flatcamTools/ToolPaint.py:320
  7992. msgid "Geometry Reference Box Object"
  7993. msgstr ""
  7994. #: flatcamTools/ToolDblSided.py:192
  7995. msgid "Alignment Drill Coordinates"
  7996. msgstr ""
  7997. #: flatcamTools/ToolDblSided.py:194
  7998. msgid ""
  7999. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8000. "each set of (x, y) coordinates\n"
  8001. "entered here, a pair of drills will be created:\n"
  8002. "\n"
  8003. "- one drill at the coordinates from the field\n"
  8004. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8005. "Axis'."
  8006. msgstr ""
  8007. #: flatcamTools/ToolDblSided.py:209
  8008. msgid ""
  8009. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8010. "on one side of the mirror axis.\n"
  8011. "\n"
  8012. "The coordinates set can be obtained:\n"
  8013. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8014. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  8015. "field.\n"
  8016. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  8017. "field and click Paste.\n"
  8018. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  8019. msgstr ""
  8020. #: flatcamTools/ToolDblSided.py:223
  8021. msgid "Alignment Drill Diameter"
  8022. msgstr ""
  8023. #: flatcamTools/ToolDblSided.py:246
  8024. msgid "Create Excellon Object"
  8025. msgstr ""
  8026. #: flatcamTools/ToolDblSided.py:248
  8027. msgid ""
  8028. "Creates an Excellon Object containing the\n"
  8029. "specified alignment holes and their mirror\n"
  8030. "images."
  8031. msgstr ""
  8032. #: flatcamTools/ToolDblSided.py:254
  8033. msgid "Reset"
  8034. msgstr ""
  8035. #: flatcamTools/ToolDblSided.py:256
  8036. msgid "Resets all the fields."
  8037. msgstr ""
  8038. #: flatcamTools/ToolDblSided.py:306
  8039. msgid "2-Sided Tool"
  8040. msgstr ""
  8041. #: flatcamTools/ToolDblSided.py:331
  8042. msgid ""
  8043. "'Point' reference is selected and 'Point' coordinates are missing. Add them "
  8044. "and retry."
  8045. msgstr ""
  8046. #: flatcamTools/ToolDblSided.py:350
  8047. msgid "There is no Box reference object loaded. Load one and retry."
  8048. msgstr ""
  8049. #: flatcamTools/ToolDblSided.py:373
  8050. msgid "No value or wrong format in Drill Dia entry. Add it and retry."
  8051. msgstr ""
  8052. #: flatcamTools/ToolDblSided.py:380
  8053. msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
  8054. msgstr ""
  8055. #: flatcamTools/ToolDblSided.py:403
  8056. msgid "Excellon object with alignment drills created..."
  8057. msgstr ""
  8058. #: flatcamTools/ToolDblSided.py:412
  8059. msgid "There is no Gerber object loaded ..."
  8060. msgstr ""
  8061. #: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
  8062. #: flatcamTools/ToolDblSided.py:503
  8063. msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
  8064. msgstr ""
  8065. #: flatcamTools/ToolDblSided.py:426
  8066. msgid ""
  8067. "'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
  8068. msgstr ""
  8069. #: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
  8070. #: flatcamTools/ToolDblSided.py:517
  8071. msgid "There is no Box object loaded ..."
  8072. msgstr ""
  8073. #: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
  8074. #: flatcamTools/ToolDblSided.py:527
  8075. msgid "was mirrored"
  8076. msgstr ""
  8077. #: flatcamTools/ToolDblSided.py:455
  8078. msgid "There is no Excellon object loaded ..."
  8079. msgstr ""
  8080. #: flatcamTools/ToolDblSided.py:470
  8081. msgid ""
  8082. "There are no Point coordinates in the Point field. Add coords and try "
  8083. "again ..."
  8084. msgstr ""
  8085. #: flatcamTools/ToolDblSided.py:499
  8086. msgid "There is no Geometry object loaded ..."
  8087. msgstr ""
  8088. #: flatcamTools/ToolFilm.py:25
  8089. msgid "Film PCB"
  8090. msgstr ""
  8091. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  8092. #: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
  8093. msgid "Object Type"
  8094. msgstr ""
  8095. #: flatcamTools/ToolFilm.py:58
  8096. msgid ""
  8097. "Specify the type of object for which to create the film.\n"
  8098. "The object can be of type: Gerber or Geometry.\n"
  8099. "The selection here decide the type of objects that will be\n"
  8100. "in the Film Object combobox."
  8101. msgstr ""
  8102. #: flatcamTools/ToolFilm.py:71
  8103. msgid "Film Object"
  8104. msgstr ""
  8105. #: flatcamTools/ToolFilm.py:73
  8106. msgid "Object for which to create the film."
  8107. msgstr ""
  8108. #: flatcamTools/ToolFilm.py:89
  8109. msgid "Box Type:"
  8110. msgstr ""
  8111. #: flatcamTools/ToolFilm.py:91
  8112. msgid ""
  8113. "Specify the type of object to be used as an container for\n"
  8114. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  8115. "the type of objects that will be\n"
  8116. "in the Box Object combobox."
  8117. msgstr ""
  8118. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  8119. msgid "Box Object"
  8120. msgstr ""
  8121. #: flatcamTools/ToolFilm.py:106
  8122. msgid ""
  8123. "The actual object that is used a container for the\n"
  8124. " selected object for which we create the film.\n"
  8125. "Usually it is the PCB outline but it can be also the\n"
  8126. "same object for which the film is created."
  8127. msgstr ""
  8128. #: flatcamTools/ToolFilm.py:114
  8129. msgid "Positive"
  8130. msgstr ""
  8131. #: flatcamTools/ToolFilm.py:115
  8132. msgid "Negative"
  8133. msgstr ""
  8134. #: flatcamTools/ToolFilm.py:116
  8135. msgid "Film Type:"
  8136. msgstr ""
  8137. #: flatcamTools/ToolFilm.py:157
  8138. msgid "Save Film"
  8139. msgstr ""
  8140. #: flatcamTools/ToolFilm.py:159
  8141. msgid ""
  8142. "Create a Film for the selected object, within\n"
  8143. "the specified box. Does not create a new \n"
  8144. " FlatCAM object, but directly save it in SVG format\n"
  8145. "which can be opened with Inkscape."
  8146. msgstr ""
  8147. #: flatcamTools/ToolFilm.py:231
  8148. msgid "No FlatCAM object selected. Load an object for Film and retry."
  8149. msgstr ""
  8150. #: flatcamTools/ToolFilm.py:238
  8151. msgid "No FlatCAM object selected. Load an object for Box and retry."
  8152. msgstr ""
  8153. #: flatcamTools/ToolFilm.py:260
  8154. msgid "Generating Film ..."
  8155. msgstr ""
  8156. #: flatcamTools/ToolFilm.py:265 flatcamTools/ToolFilm.py:269
  8157. msgid "Export SVG positive"
  8158. msgstr ""
  8159. #: flatcamTools/ToolFilm.py:274
  8160. msgid "Export SVG positive cancelled."
  8161. msgstr ""
  8162. #: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
  8163. msgid "Export SVG negative"
  8164. msgstr ""
  8165. #: flatcamTools/ToolFilm.py:290
  8166. msgid "Export SVG negative cancelled."
  8167. msgstr ""
  8168. #: flatcamTools/ToolImage.py:25
  8169. msgid "Image as Object"
  8170. msgstr ""
  8171. #: flatcamTools/ToolImage.py:31
  8172. msgid "Image to PCB"
  8173. msgstr ""
  8174. #: flatcamTools/ToolImage.py:55
  8175. msgid ""
  8176. "Specify the type of object to create from the image.\n"
  8177. "It can be of type: Gerber or Geometry."
  8178. msgstr ""
  8179. #: flatcamTools/ToolImage.py:63
  8180. msgid "DPI value"
  8181. msgstr ""
  8182. #: flatcamTools/ToolImage.py:65
  8183. msgid "Specify a DPI value for the image."
  8184. msgstr ""
  8185. #: flatcamTools/ToolImage.py:72
  8186. msgid "Level of detail"
  8187. msgstr ""
  8188. #: flatcamTools/ToolImage.py:81
  8189. msgid "Image type"
  8190. msgstr ""
  8191. #: flatcamTools/ToolImage.py:83
  8192. msgid ""
  8193. "Choose a method for the image interpretation.\n"
  8194. "B/W means a black & white image. Color means a colored image."
  8195. msgstr ""
  8196. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  8197. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  8198. msgid "Mask value"
  8199. msgstr ""
  8200. #: flatcamTools/ToolImage.py:92
  8201. msgid ""
  8202. "Mask for monochrome image.\n"
  8203. "Takes values between [0 ... 255].\n"
  8204. "Decides the level of details to include\n"
  8205. "in the resulting geometry.\n"
  8206. "0 means no detail and 255 means everything \n"
  8207. "(which is totally black)."
  8208. msgstr ""
  8209. #: flatcamTools/ToolImage.py:105
  8210. msgid ""
  8211. "Mask for RED color.\n"
  8212. "Takes values between [0 ... 255].\n"
  8213. "Decides the level of details to include\n"
  8214. "in the resulting geometry."
  8215. msgstr ""
  8216. #: flatcamTools/ToolImage.py:116
  8217. msgid ""
  8218. "Mask for GREEN color.\n"
  8219. "Takes values between [0 ... 255].\n"
  8220. "Decides the level of details to include\n"
  8221. "in the resulting geometry."
  8222. msgstr ""
  8223. #: flatcamTools/ToolImage.py:127
  8224. msgid ""
  8225. "Mask for BLUE color.\n"
  8226. "Takes values between [0 ... 255].\n"
  8227. "Decides the level of details to include\n"
  8228. "in the resulting geometry."
  8229. msgstr ""
  8230. #: flatcamTools/ToolImage.py:139
  8231. msgid "Import image"
  8232. msgstr ""
  8233. #: flatcamTools/ToolImage.py:141
  8234. msgid "Open a image of raster type and then import it in FlatCAM."
  8235. msgstr ""
  8236. #: flatcamTools/ToolImage.py:175
  8237. msgid "Image Tool"
  8238. msgstr ""
  8239. #: flatcamTools/ToolImage.py:205 flatcamTools/ToolImage.py:208
  8240. msgid "Import IMAGE"
  8241. msgstr ""
  8242. #: flatcamTools/ToolMeasurement.py:26
  8243. msgid "Measurement"
  8244. msgstr ""
  8245. #: flatcamTools/ToolMeasurement.py:44
  8246. msgid "Those are the units in which the distance is measured."
  8247. msgstr ""
  8248. #: flatcamTools/ToolMeasurement.py:45
  8249. msgid "METRIC (mm)"
  8250. msgstr ""
  8251. #: flatcamTools/ToolMeasurement.py:45
  8252. msgid "INCH (in)"
  8253. msgstr ""
  8254. #: flatcamTools/ToolMeasurement.py:48
  8255. msgid "Start"
  8256. msgstr ""
  8257. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  8258. msgid "Coords"
  8259. msgstr ""
  8260. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  8261. msgid "This is measuring Start point coordinates."
  8262. msgstr ""
  8263. #: flatcamTools/ToolMeasurement.py:51
  8264. msgid "Stop"
  8265. msgstr ""
  8266. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  8267. msgid "This is the measuring Stop point coordinates."
  8268. msgstr ""
  8269. #: flatcamTools/ToolMeasurement.py:54
  8270. msgid "Dx"
  8271. msgstr ""
  8272. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  8273. msgid "This is the distance measured over the X axis."
  8274. msgstr ""
  8275. #: flatcamTools/ToolMeasurement.py:57
  8276. msgid "Dy"
  8277. msgstr ""
  8278. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  8279. msgid "This is the distance measured over the Y axis."
  8280. msgstr ""
  8281. #: flatcamTools/ToolMeasurement.py:60
  8282. msgid "DISTANCE"
  8283. msgstr ""
  8284. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  8285. msgid "This is the point to point Euclidian distance."
  8286. msgstr ""
  8287. #: flatcamTools/ToolMeasurement.py:83
  8288. msgid "Measure"
  8289. msgstr ""
  8290. #: flatcamTools/ToolMeasurement.py:131
  8291. msgid "Meas. Tool"
  8292. msgstr ""
  8293. #: flatcamTools/ToolMeasurement.py:176
  8294. msgid "MEASURING: Click on the Start point ..."
  8295. msgstr ""
  8296. #: flatcamTools/ToolMeasurement.py:269
  8297. msgid "MEASURING: Click on the Destination point ..."
  8298. msgstr ""
  8299. #: flatcamTools/ToolMeasurement.py:277
  8300. #, python-brace-format
  8301. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8302. msgstr ""
  8303. #: flatcamTools/ToolMove.py:84
  8304. msgid "MOVE: Click on the Start point ..."
  8305. msgstr ""
  8306. #: flatcamTools/ToolMove.py:91
  8307. msgid "MOVE action cancelled. No object(s) to move."
  8308. msgstr ""
  8309. #: flatcamTools/ToolMove.py:113
  8310. msgid "MOVE: Click on the Destination point ..."
  8311. msgstr ""
  8312. #: flatcamTools/ToolMove.py:134
  8313. msgid "Moving..."
  8314. msgstr ""
  8315. #: flatcamTools/ToolMove.py:137
  8316. msgid "No object(s) selected."
  8317. msgstr ""
  8318. #: flatcamTools/ToolMove.py:162
  8319. msgid "ToolMove.on_left_click()"
  8320. msgstr ""
  8321. #: flatcamTools/ToolMove.py:179
  8322. msgid "ToolMove.on_left_click() --> Error when mouse left click."
  8323. msgstr ""
  8324. #: flatcamTools/ToolMove.py:215
  8325. msgid "Move action cancelled."
  8326. msgstr ""
  8327. #: flatcamTools/ToolMove.py:227
  8328. msgid "Object(s) not selected"
  8329. msgstr ""
  8330. #: flatcamTools/ToolNonCopperClear.py:26
  8331. msgid "Non-Copper Clearing"
  8332. msgstr ""
  8333. #: flatcamTools/ToolNonCopperClear.py:71
  8334. msgid ""
  8335. "Specify the type of object to be cleared of excess copper.\n"
  8336. "It can be of type: Gerber or Geometry.\n"
  8337. "What is selected here will dictate the kind\n"
  8338. "of objects that will populate the 'Object' combobox."
  8339. msgstr ""
  8340. #: flatcamTools/ToolNonCopperClear.py:88
  8341. msgid "Object to be cleared of excess copper."
  8342. msgstr ""
  8343. #: flatcamTools/ToolNonCopperClear.py:98
  8344. msgid ""
  8345. "Tools pool from which the algorithm\n"
  8346. "will pick the ones used for copper clearing."
  8347. msgstr ""
  8348. #: flatcamTools/ToolNonCopperClear.py:107
  8349. msgid "Operation"
  8350. msgstr ""
  8351. #: flatcamTools/ToolNonCopperClear.py:113
  8352. msgid ""
  8353. "This is the Tool Number.\n"
  8354. "Non copper clearing will start with the tool with the biggest \n"
  8355. "diameter, continuing until there are no more tools.\n"
  8356. "Only tools that create NCC clearing geometry will still be present\n"
  8357. "in the resulting geometry. This is because with some tools\n"
  8358. "this function will not be able to create painting geometry."
  8359. msgstr ""
  8360. #: flatcamTools/ToolNonCopperClear.py:121
  8361. msgid ""
  8362. "Tool Diameter. It's value (in current FlatCAM units)\n"
  8363. "is the cut width into the material."
  8364. msgstr ""
  8365. #: flatcamTools/ToolNonCopperClear.py:125
  8366. msgid ""
  8367. "The Tool Type (TT) can be:\n"
  8368. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
  8369. "the cut width in material is exactly the tool diameter.\n"
  8370. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8371. "- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
  8372. "form\n"
  8373. "and enable two additional UI form fields in the resulting geometry: V-Tip "
  8374. "Dia and\n"
  8375. "V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
  8376. "such\n"
  8377. "as the cut width into material will be equal with the value in the Tool "
  8378. "Diameter\n"
  8379. "column of this table.\n"
  8380. "Choosing the 'V-Shape' Tool Type automatically will select the Operation "
  8381. "Type\n"
  8382. "in the resulting geometry as Isolation."
  8383. msgstr ""
  8384. #: flatcamTools/ToolNonCopperClear.py:138
  8385. msgid ""
  8386. "The 'Operation' can be:\n"
  8387. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  8388. "If it's not successful then the non-copper clearing will fail, too.\n"
  8389. "- Clear -> the regular non-copper clearing."
  8390. msgstr ""
  8391. #: flatcamTools/ToolNonCopperClear.py:191
  8392. msgid "Tool Selection"
  8393. msgstr ""
  8394. #: flatcamTools/ToolNonCopperClear.py:214
  8395. msgid "Diameter for the new tool to add in the Tool Table"
  8396. msgstr ""
  8397. #: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
  8398. #: flatcamTools/ToolSolderPaste.py:123
  8399. msgid ""
  8400. "Delete a selection of tools in the Tool Table\n"
  8401. "by first selecting a row(s) in the Tool Table."
  8402. msgstr ""
  8403. #: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
  8404. msgid "Area Selection"
  8405. msgstr ""
  8406. #: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
  8407. msgid "Reference Object"
  8408. msgstr ""
  8409. #: flatcamTools/ToolNonCopperClear.py:399
  8410. msgid "Reference:"
  8411. msgstr ""
  8412. #: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
  8413. msgid "Ref. Type"
  8414. msgstr ""
  8415. #: flatcamTools/ToolNonCopperClear.py:416
  8416. msgid ""
  8417. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  8418. "It can be Gerber, Excellon or Geometry."
  8419. msgstr ""
  8420. #: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
  8421. msgid "Ref. Object"
  8422. msgstr ""
  8423. #: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
  8424. msgid "The FlatCAM object to be used as non copper clearing reference."
  8425. msgstr ""
  8426. #: flatcamTools/ToolNonCopperClear.py:440
  8427. msgid "Generate Geometry"
  8428. msgstr ""
  8429. #: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
  8430. #: flatcamTools/ToolSolderPaste.py:769
  8431. msgid "Please enter a tool diameter to add, in Float format."
  8432. msgstr ""
  8433. #: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
  8434. msgid "Adding tool cancelled. Tool already in Tool Table."
  8435. msgstr ""
  8436. #: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
  8437. msgid "New tool added to Tool Table."
  8438. msgstr ""
  8439. #: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
  8440. msgid "Tool from Tool Table was edited."
  8441. msgstr ""
  8442. #: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
  8443. #: flatcamTools/ToolSolderPaste.py:860
  8444. msgid "Edit cancelled. New diameter value is already in the Tool Table."
  8445. msgstr ""
  8446. #: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
  8447. msgid "Delete failed. Select a tool to delete."
  8448. msgstr ""
  8449. #: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
  8450. msgid "Tool(s) deleted from Tool Table."
  8451. msgstr ""
  8452. #: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
  8453. msgid "on_paint_button_click"
  8454. msgstr ""
  8455. #: flatcamTools/ToolNonCopperClear.py:1067
  8456. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  8457. msgstr ""
  8458. #: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
  8459. #, python-format
  8460. msgid "Could not retrieve object: %s"
  8461. msgstr ""
  8462. #: flatcamTools/ToolNonCopperClear.py:1103
  8463. msgid "Wrong Tool Dia value format entered, use a number."
  8464. msgstr ""
  8465. #: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
  8466. msgid "No selected tools in Tool Table."
  8467. msgstr ""
  8468. #: flatcamTools/ToolNonCopperClear.py:1137
  8469. msgid "Click the start point of the area."
  8470. msgstr ""
  8471. #: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
  8472. msgid "Click the end point of the paint area."
  8473. msgstr ""
  8474. #: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
  8475. msgid "Zone added. Click to start adding next zone or right click to finish."
  8476. msgstr ""
  8477. #: flatcamTools/ToolNonCopperClear.py:1318
  8478. msgid "Non-Copper clearing ..."
  8479. msgstr ""
  8480. #: flatcamTools/ToolNonCopperClear.py:1327
  8481. msgid "NCC Tool started. Reading parameters."
  8482. msgstr ""
  8483. #: flatcamTools/ToolNonCopperClear.py:1395
  8484. msgid "NCC Tool. Preparing non-copper polygons."
  8485. msgstr ""
  8486. #: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
  8487. msgid "No object available."
  8488. msgstr ""
  8489. #: flatcamTools/ToolNonCopperClear.py:1465
  8490. msgid "The reference object type is not supported."
  8491. msgstr ""
  8492. #: flatcamTools/ToolNonCopperClear.py:1487
  8493. msgid ""
  8494. "NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
  8495. msgstr ""
  8496. #: flatcamTools/ToolNonCopperClear.py:1519
  8497. msgid "NCC Tool. Calculate 'empty' area."
  8498. msgstr ""
  8499. #: flatcamTools/ToolNonCopperClear.py:1534
  8500. #: flatcamTools/ToolNonCopperClear.py:1628
  8501. #: flatcamTools/ToolNonCopperClear.py:1640
  8502. #: flatcamTools/ToolNonCopperClear.py:1867
  8503. #: flatcamTools/ToolNonCopperClear.py:1959
  8504. #: flatcamTools/ToolNonCopperClear.py:1971
  8505. msgid "Buffering finished"
  8506. msgstr ""
  8507. #: flatcamTools/ToolNonCopperClear.py:1647
  8508. #: flatcamTools/ToolNonCopperClear.py:1977
  8509. msgid "The selected object is not suitable for copper clearing."
  8510. msgstr ""
  8511. #: flatcamTools/ToolNonCopperClear.py:1652
  8512. #: flatcamTools/ToolNonCopperClear.py:1982
  8513. msgid "Could not get the extent of the area to be non copper cleared."
  8514. msgstr ""
  8515. #: flatcamTools/ToolNonCopperClear.py:1659
  8516. msgid "NCC Tool. Finished calculation of 'empty' area."
  8517. msgstr ""
  8518. #: flatcamTools/ToolNonCopperClear.py:1669
  8519. #: flatcamTools/ToolNonCopperClear.py:2007
  8520. msgid "NCC Tool clearing with tool diameter = "
  8521. msgstr ""
  8522. #: flatcamTools/ToolNonCopperClear.py:1672
  8523. #: flatcamTools/ToolNonCopperClear.py:2010
  8524. msgid "started."
  8525. msgstr ""
  8526. #: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
  8527. #: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
  8528. #: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
  8529. msgid ""
  8530. "There is no Painting Geometry in the file.\n"
  8531. "Usually it means that the tool diameter is too big for the painted "
  8532. "geometry.\n"
  8533. "Change the painting parameters and try again."
  8534. msgstr ""
  8535. #: flatcamTools/ToolNonCopperClear.py:1820
  8536. msgid "NCC Tool clear all done."
  8537. msgstr ""
  8538. #: flatcamTools/ToolNonCopperClear.py:1822
  8539. msgid "NCC Tool clear all done but the copper features isolation is broken for"
  8540. msgstr ""
  8541. #: flatcamTools/ToolNonCopperClear.py:1825
  8542. #: flatcamTools/ToolNonCopperClear.py:2173
  8543. msgid "tools"
  8544. msgstr ""
  8545. #: flatcamTools/ToolNonCopperClear.py:2169
  8546. msgid "NCC Tool Rest Machining clear all done."
  8547. msgstr ""
  8548. #: flatcamTools/ToolNonCopperClear.py:2172
  8549. msgid ""
  8550. "NCC Tool Rest Machining clear all done but the copper features isolation is "
  8551. "broken for"
  8552. msgstr ""
  8553. #: flatcamTools/ToolNonCopperClear.py:2596
  8554. msgid ""
  8555. "Try to use the Buffering Type = Full in Preferences -> Gerber General. "
  8556. "Reload the Gerber file after this change."
  8557. msgstr ""
  8558. #: flatcamTools/ToolPDF.py:38
  8559. msgid "PDF Import Tool"
  8560. msgstr ""
  8561. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  8562. msgid "Open PDF"
  8563. msgstr ""
  8564. #: flatcamTools/ToolPDF.py:159
  8565. msgid "Open PDF cancelled"
  8566. msgstr ""
  8567. #: flatcamTools/ToolPDF.py:190
  8568. msgid "Parsing PDF file ..."
  8569. msgstr ""
  8570. #: flatcamTools/ToolPDF.py:220
  8571. #, python-format
  8572. msgid "[success] Opened: %s"
  8573. msgstr ""
  8574. #: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
  8575. #, python-format
  8576. msgid "Rendering PDF layer #%d ..."
  8577. msgstr ""
  8578. #: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
  8579. msgid "Open PDF file failed."
  8580. msgstr ""
  8581. #: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
  8582. msgid "Rendered"
  8583. msgstr ""
  8584. #: flatcamTools/ToolPaint.py:70
  8585. msgid ""
  8586. "Specify the type of object to be painted.\n"
  8587. "It can be of type: Gerber or Geometry.\n"
  8588. "What is selected here will dictate the kind\n"
  8589. "of objects that will populate the 'Object' combobox."
  8590. msgstr ""
  8591. #: flatcamTools/ToolPaint.py:87
  8592. msgid "Object to be painted."
  8593. msgstr ""
  8594. #: flatcamTools/ToolPaint.py:97
  8595. msgid ""
  8596. "Tools pool from which the algorithm\n"
  8597. "will pick the ones used for painting."
  8598. msgstr ""
  8599. #: flatcamTools/ToolPaint.py:112
  8600. msgid ""
  8601. "This is the Tool Number.\n"
  8602. "Painting will start with the tool with the biggest diameter,\n"
  8603. "continuing until there are no more tools.\n"
  8604. "Only tools that create painting geometry will still be present\n"
  8605. "in the resulting geometry. This is because with some tools\n"
  8606. "this function will not be able to create painting geometry."
  8607. msgstr ""
  8608. #: flatcamTools/ToolPaint.py:124
  8609. msgid ""
  8610. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8611. "informative only. Being circular, <BR>the cut width in material is exactly "
  8612. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8613. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8614. "parameter in the resulting geometry UI form and enable two additional UI "
  8615. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8616. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8617. "material will be equal with the value in the Tool Diameter column of this "
  8618. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8619. "the Operation Type in the resulting geometry as Isolation."
  8620. msgstr ""
  8621. #: flatcamTools/ToolPaint.py:164
  8622. msgid "Diameter for the new tool."
  8623. msgstr ""
  8624. #: flatcamTools/ToolPaint.py:235
  8625. msgid ""
  8626. "Algorithm for painting:\n"
  8627. "- Standard: Fixed step inwards.\n"
  8628. "- Seed-based: Outwards from seed.\n"
  8629. "- Line-based: Parallel lines."
  8630. msgstr ""
  8631. #: flatcamTools/ToolPaint.py:269
  8632. msgid ""
  8633. "If checked, use 'rest machining'.\n"
  8634. "Basically it will clear copper outside PCB features,\n"
  8635. "using the biggest tool and continue with the next tools,\n"
  8636. "from bigger to smaller, to clear areas of copper that\n"
  8637. "could not be cleared by previous tool, until there is\n"
  8638. "no more copper to clear or there are no more tools.\n"
  8639. "\n"
  8640. "If not checked, use the standard algorithm."
  8641. msgstr ""
  8642. #: flatcamTools/ToolPaint.py:294
  8643. msgid "Single Polygon"
  8644. msgstr ""
  8645. #: flatcamTools/ToolPaint.py:296
  8646. msgid "All Polygons"
  8647. msgstr ""
  8648. #: flatcamTools/ToolPaint.py:314
  8649. msgid ""
  8650. "The type of FlatCAM object to be used as paint reference.\n"
  8651. "It can be Gerber, Excellon or Geometry."
  8652. msgstr ""
  8653. #: flatcamTools/ToolPaint.py:339
  8654. msgid "Create Paint Geometry"
  8655. msgstr ""
  8656. #: flatcamTools/ToolPaint.py:341
  8657. msgid ""
  8658. "- 'Area Selection' - left mouse click to start selection of the area to be "
  8659. "painted.\n"
  8660. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  8661. "areas.\n"
  8662. "- 'All Polygons' - the Paint will start after click.\n"
  8663. "- 'Reference Object' - will do non copper clearing within the area\n"
  8664. "specified by another object."
  8665. msgstr ""
  8666. #: flatcamTools/ToolPaint.py:912
  8667. msgid "Paint Tool. Reading parameters."
  8668. msgstr ""
  8669. #: flatcamTools/ToolPaint.py:927
  8670. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
  8671. msgstr ""
  8672. #: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
  8673. msgid "Click inside the desired polygon."
  8674. msgstr ""
  8675. #: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
  8676. #: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
  8677. msgid "Object not found"
  8678. msgstr ""
  8679. #: flatcamTools/ToolPaint.py:959
  8680. msgid "Can't do Paint on MultiGeo geometries"
  8681. msgstr ""
  8682. #: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
  8683. msgid "Painting polygon..."
  8684. msgstr ""
  8685. #: flatcamTools/ToolPaint.py:1025
  8686. msgid "Click the start point of the paint area."
  8687. msgstr ""
  8688. #: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
  8689. #: flatcamTools/ToolPaint.py:1202
  8690. msgid "Paint Tool. Normal painting polygon task started."
  8691. msgstr ""
  8692. #: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
  8693. #: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
  8694. #: flatcamTools/ToolPaint.py:2224
  8695. msgid "Buffering geometry..."
  8696. msgstr ""
  8697. #: flatcamTools/ToolPaint.py:1236
  8698. msgid "[WARNING] No polygon found."
  8699. msgstr ""
  8700. #: flatcamTools/ToolPaint.py:1240
  8701. #, python-format
  8702. msgid "Paint Tool. Painting polygon at location: %s"
  8703. msgstr ""
  8704. #: flatcamTools/ToolPaint.py:1323
  8705. msgid "Geometry could not be painted completely"
  8706. msgstr ""
  8707. #: flatcamTools/ToolPaint.py:1368
  8708. msgid ""
  8709. "Could not do Paint. Try a different combination of parameters. Or a "
  8710. "different strategy of paint"
  8711. msgstr ""
  8712. #: flatcamTools/ToolPaint.py:1417
  8713. msgid "Paint Single Done."
  8714. msgstr ""
  8715. #: flatcamTools/ToolPaint.py:1442
  8716. msgid "PaintTool.paint_poly()"
  8717. msgstr ""
  8718. #: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
  8719. #: flatcamTools/ToolPaint.py:2383
  8720. msgid "Polygon Paint started ..."
  8721. msgstr ""
  8722. #: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
  8723. msgid "Painting polygons..."
  8724. msgstr ""
  8725. #: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
  8726. #: flatcamTools/ToolPaint.py:1592
  8727. msgid "Paint Tool. Normal painting all task started."
  8728. msgstr ""
  8729. #: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
  8730. #: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
  8731. msgid "Painting with tool diameter = "
  8732. msgstr ""
  8733. #: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
  8734. #: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
  8735. msgid "started"
  8736. msgstr ""
  8737. #: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
  8738. msgid ""
  8739. "Could not do Paint All. Try a different combination of parameters. Or a "
  8740. "different Method of paint"
  8741. msgstr ""
  8742. #: flatcamTools/ToolPaint.py:1751
  8743. msgid "[success] Paint All Done."
  8744. msgstr ""
  8745. #: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
  8746. #: flatcamTools/ToolPaint.py:1767
  8747. msgid "Paint Tool. Rest machining painting all task started."
  8748. msgstr ""
  8749. #: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
  8750. msgid "Paint All with Rest-Machining done."
  8751. msgstr ""
  8752. #: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
  8753. #: flatcamTools/ToolPaint.py:2049
  8754. msgid "Paint Tool. Normal painting area task started."
  8755. msgstr ""
  8756. #: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
  8757. #, python-format
  8758. msgid ""
  8759. "Could not do Paint All. Try a different combination of parameters. Or a "
  8760. "different Method of paint\n"
  8761. "%s"
  8762. msgstr ""
  8763. #: flatcamTools/ToolPaint.py:2212
  8764. msgid "[success] Paint Area Done."
  8765. msgstr ""
  8766. #: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
  8767. #: flatcamTools/ToolPaint.py:2228
  8768. msgid "Paint Tool. Rest machining painting area task started."
  8769. msgstr ""
  8770. #: flatcamTools/ToolPanelize.py:25
  8771. msgid "Panelize PCB"
  8772. msgstr ""
  8773. #: flatcamTools/ToolPanelize.py:58
  8774. msgid ""
  8775. "Specify the type of object to be panelized\n"
  8776. "It can be of type: Gerber, Excellon or Geometry.\n"
  8777. "The selection here decide the type of objects that will be\n"
  8778. "in the Object combobox."
  8779. msgstr ""
  8780. #: flatcamTools/ToolPanelize.py:73
  8781. msgid ""
  8782. "Object to be panelized. This means that it will\n"
  8783. "be duplicated in an array of rows and columns."
  8784. msgstr ""
  8785. #: flatcamTools/ToolPanelize.py:86
  8786. msgid "Penelization Reference"
  8787. msgstr ""
  8788. #: flatcamTools/ToolPanelize.py:88
  8789. msgid ""
  8790. "Choose the reference for panelization:\n"
  8791. "- Object = the bounding box of a different object\n"
  8792. "- Bounding Box = the bounding box of the object to be panelized\n"
  8793. "\n"
  8794. "The reference is useful when doing panelization for more than one\n"
  8795. "object. The spacings (really offsets) will be applied in reference\n"
  8796. "to this reference object therefore maintaining the panelized\n"
  8797. "objects in sync."
  8798. msgstr ""
  8799. #: flatcamTools/ToolPanelize.py:111
  8800. msgid "Box Type"
  8801. msgstr ""
  8802. #: flatcamTools/ToolPanelize.py:113
  8803. msgid ""
  8804. "Specify the type of object to be used as an container for\n"
  8805. "panelization. It can be: Gerber or Geometry type.\n"
  8806. "The selection here decide the type of objects that will be\n"
  8807. "in the Box Object combobox."
  8808. msgstr ""
  8809. #: flatcamTools/ToolPanelize.py:128
  8810. msgid ""
  8811. "The actual object that is used a container for the\n"
  8812. " selected object that is to be panelized."
  8813. msgstr ""
  8814. #: flatcamTools/ToolPanelize.py:134
  8815. msgid "Panel Data"
  8816. msgstr ""
  8817. #: flatcamTools/ToolPanelize.py:136
  8818. msgid ""
  8819. "This informations will shape the resulting panel.\n"
  8820. "The number of rows and columns will set how many\n"
  8821. "duplicates of the original geometry will be generated.\n"
  8822. "\n"
  8823. "The spacings will set the distance between any two\n"
  8824. "elements of the panel array."
  8825. msgstr ""
  8826. #: flatcamTools/ToolPanelize.py:185
  8827. msgid ""
  8828. "Choose the type of object for the panel object:\n"
  8829. "- Geometry\n"
  8830. "- Gerber"
  8831. msgstr ""
  8832. #: flatcamTools/ToolPanelize.py:193
  8833. msgid "Constrain panel within"
  8834. msgstr ""
  8835. #: flatcamTools/ToolPanelize.py:227
  8836. msgid "Panelize Object"
  8837. msgstr ""
  8838. #: flatcamTools/ToolPanelize.py:229
  8839. msgid ""
  8840. "Panelize the specified object around the specified box.\n"
  8841. "In other words it creates multiple copies of the source object,\n"
  8842. "arranged in a 2D array of rows and columns."
  8843. msgstr ""
  8844. #: flatcamTools/ToolPanelize.py:277
  8845. msgid "Panel. Tool"
  8846. msgstr ""
  8847. #: flatcamTools/ToolPanelize.py:465
  8848. msgid "Columns or Rows are zero value. Change them to a positive integer."
  8849. msgstr ""
  8850. #: flatcamTools/ToolPanelize.py:490
  8851. msgid "Generating panel ... Please wait."
  8852. msgstr ""
  8853. #: flatcamTools/ToolPanelize.py:631
  8854. msgid "Panel done..."
  8855. msgstr ""
  8856. #: flatcamTools/ToolPanelize.py:634
  8857. #, python-brace-format
  8858. msgid ""
  8859. "{text} Too big for the constrain area. Final panel has {col} columns and "
  8860. "{row} rows"
  8861. msgstr ""
  8862. #: flatcamTools/ToolPanelize.py:638
  8863. msgid "Generating panel..."
  8864. msgstr ""
  8865. #: flatcamTools/ToolPanelize.py:643
  8866. msgid "Panel created successfully."
  8867. msgstr ""
  8868. #: flatcamTools/ToolPcbWizard.py:32
  8869. msgid "PcbWizard Import Tool"
  8870. msgstr ""
  8871. #: flatcamTools/ToolPcbWizard.py:40
  8872. msgid "Import 2-file Excellon"
  8873. msgstr ""
  8874. #: flatcamTools/ToolPcbWizard.py:51
  8875. msgid "Load files"
  8876. msgstr ""
  8877. #: flatcamTools/ToolPcbWizard.py:57
  8878. msgid "Excellon file"
  8879. msgstr ""
  8880. #: flatcamTools/ToolPcbWizard.py:59
  8881. msgid ""
  8882. "Load the Excellon file.\n"
  8883. "Usually it has a .DRL extension"
  8884. msgstr ""
  8885. #: flatcamTools/ToolPcbWizard.py:65
  8886. msgid "INF file"
  8887. msgstr ""
  8888. #: flatcamTools/ToolPcbWizard.py:67
  8889. msgid "Load the INF file."
  8890. msgstr ""
  8891. #: flatcamTools/ToolPcbWizard.py:79
  8892. msgid "Tool Number"
  8893. msgstr ""
  8894. #: flatcamTools/ToolPcbWizard.py:81
  8895. msgid "Tool diameter in file units."
  8896. msgstr ""
  8897. #: flatcamTools/ToolPcbWizard.py:87
  8898. msgid "Excellon format"
  8899. msgstr ""
  8900. #: flatcamTools/ToolPcbWizard.py:95
  8901. msgid "Int. digits"
  8902. msgstr ""
  8903. #: flatcamTools/ToolPcbWizard.py:97
  8904. msgid "The number of digits for the integral part of the coordinates."
  8905. msgstr ""
  8906. #: flatcamTools/ToolPcbWizard.py:104
  8907. msgid "Frac. digits"
  8908. msgstr ""
  8909. #: flatcamTools/ToolPcbWizard.py:106
  8910. msgid "The number of digits for the fractional part of the coordinates."
  8911. msgstr ""
  8912. #: flatcamTools/ToolPcbWizard.py:113
  8913. msgid "No Suppression"
  8914. msgstr ""
  8915. #: flatcamTools/ToolPcbWizard.py:114
  8916. msgid "Zeros supp."
  8917. msgstr ""
  8918. #: flatcamTools/ToolPcbWizard.py:116
  8919. msgid ""
  8920. "The type of zeros suppression used.\n"
  8921. "Can be of type:\n"
  8922. "- LZ = leading zeros are kept\n"
  8923. "- TZ = trailing zeros are kept\n"
  8924. "- No Suppression = no zero suppression"
  8925. msgstr ""
  8926. #: flatcamTools/ToolPcbWizard.py:129
  8927. msgid ""
  8928. "The type of units that the coordinates and tool\n"
  8929. "diameters are using. Can be INCH or MM."
  8930. msgstr ""
  8931. #: flatcamTools/ToolPcbWizard.py:136
  8932. msgid "Import Excellon"
  8933. msgstr ""
  8934. #: flatcamTools/ToolPcbWizard.py:138
  8935. msgid ""
  8936. "Import in FlatCAM an Excellon file\n"
  8937. "that store it's information's in 2 files.\n"
  8938. "One usually has .DRL extension while\n"
  8939. "the other has .INF extension."
  8940. msgstr ""
  8941. #: flatcamTools/ToolPcbWizard.py:197
  8942. msgid "PCBWizard Tool"
  8943. msgstr ""
  8944. #: flatcamTools/ToolPcbWizard.py:291 flatcamTools/ToolPcbWizard.py:295
  8945. msgid "Load PcbWizard Excellon file"
  8946. msgstr ""
  8947. #: flatcamTools/ToolPcbWizard.py:314 flatcamTools/ToolPcbWizard.py:318
  8948. msgid "Load PcbWizard INF file"
  8949. msgstr ""
  8950. #: flatcamTools/ToolPcbWizard.py:366
  8951. msgid ""
  8952. "The INF file does not contain the tool table.\n"
  8953. "Try to open the Excellon file from File -> Open -> Excellon\n"
  8954. "and edit the drill diameters manually."
  8955. msgstr ""
  8956. #: flatcamTools/ToolPcbWizard.py:387
  8957. msgid "PcbWizard .INF file loaded."
  8958. msgstr ""
  8959. #: flatcamTools/ToolPcbWizard.py:392
  8960. msgid "Main PcbWizard Excellon file loaded."
  8961. msgstr ""
  8962. #: flatcamTools/ToolPcbWizard.py:431
  8963. msgid "Cannot parse file"
  8964. msgstr ""
  8965. #: flatcamTools/ToolPcbWizard.py:456
  8966. msgid "Importing Excellon."
  8967. msgstr ""
  8968. #: flatcamTools/ToolPcbWizard.py:463
  8969. msgid "Import Excellon file failed."
  8970. msgstr ""
  8971. #: flatcamTools/ToolPcbWizard.py:471
  8972. msgid "Imported"
  8973. msgstr ""
  8974. #: flatcamTools/ToolPcbWizard.py:475
  8975. msgid "Excellon merging is in progress. Please wait..."
  8976. msgstr ""
  8977. #: flatcamTools/ToolPcbWizard.py:478
  8978. msgid "The imported Excellon file is None."
  8979. msgstr ""
  8980. #: flatcamTools/ToolProperties.py:112
  8981. msgid "Properties Tool was not displayed. No object selected."
  8982. msgstr ""
  8983. #: flatcamTools/ToolProperties.py:120
  8984. msgid "Object Properties are displayed."
  8985. msgstr ""
  8986. #: flatcamTools/ToolProperties.py:121
  8987. msgid "Properties Tool"
  8988. msgstr ""
  8989. #: flatcamTools/ToolProperties.py:130
  8990. msgid "TYPE"
  8991. msgstr ""
  8992. #: flatcamTools/ToolProperties.py:131
  8993. msgid "NAME"
  8994. msgstr ""
  8995. #: flatcamTools/ToolProperties.py:132
  8996. msgid "Dimensions"
  8997. msgstr ""
  8998. #: flatcamTools/ToolProperties.py:135
  8999. msgid "Options"
  9000. msgstr ""
  9001. #: flatcamTools/ToolProperties.py:146
  9002. msgid "Geo Type"
  9003. msgstr ""
  9004. #: flatcamTools/ToolProperties.py:147
  9005. msgid "Single-Geo"
  9006. msgstr ""
  9007. #: flatcamTools/ToolProperties.py:147
  9008. msgid "Multi-Geo"
  9009. msgstr ""
  9010. #: flatcamTools/ToolProperties.py:155
  9011. msgid "Calculating dimensions ... Please wait."
  9012. msgstr ""
  9013. #: flatcamTools/ToolProperties.py:246
  9014. msgid "Inch"
  9015. msgstr ""
  9016. #: flatcamTools/ToolProperties.py:247
  9017. msgid "Metric"
  9018. msgstr ""
  9019. #: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
  9020. #: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
  9021. msgid "Present"
  9022. msgstr ""
  9023. #: flatcamTools/ToolProperties.py:352
  9024. msgid "Width"
  9025. msgstr ""
  9026. #: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
  9027. msgid "Box Area"
  9028. msgstr ""
  9029. #: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
  9030. msgid "Convex_Hull Area"
  9031. msgstr ""
  9032. #: flatcamTools/ToolShell.py:69
  9033. msgid "...proccessing..."
  9034. msgstr ""
  9035. #: flatcamTools/ToolShell.py:71
  9036. #, python-format
  9037. msgid "...proccessing... [%s]"
  9038. msgstr ""
  9039. #: flatcamTools/ToolSolderPaste.py:37
  9040. msgid "Solder Paste Tool"
  9041. msgstr ""
  9042. #: flatcamTools/ToolSolderPaste.py:65
  9043. msgid "Gerber Solder paste object. "
  9044. msgstr ""
  9045. #: flatcamTools/ToolSolderPaste.py:72
  9046. msgid ""
  9047. "Tools pool from which the algorithm\n"
  9048. "will pick the ones used for dispensing solder paste."
  9049. msgstr ""
  9050. #: flatcamTools/ToolSolderPaste.py:87
  9051. msgid ""
  9052. "This is the Tool Number.\n"
  9053. "The solder dispensing will start with the tool with the biggest \n"
  9054. "diameter, continuing until there are no more Nozzle tools.\n"
  9055. "If there are no longer tools but there are still pads not covered\n"
  9056. " with solder paste, the app will issue a warning message box."
  9057. msgstr ""
  9058. #: flatcamTools/ToolSolderPaste.py:94
  9059. msgid ""
  9060. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  9061. "is the width of the solder paste dispensed."
  9062. msgstr ""
  9063. #: flatcamTools/ToolSolderPaste.py:101
  9064. msgid "New Nozzle Tool"
  9065. msgstr ""
  9066. #: flatcamTools/ToolSolderPaste.py:117
  9067. msgid ""
  9068. "Add a new nozzle tool to the Tool Table\n"
  9069. "with the diameter specified above."
  9070. msgstr ""
  9071. #: flatcamTools/ToolSolderPaste.py:129
  9072. msgid "Generate solder paste dispensing geometry."
  9073. msgstr ""
  9074. #: flatcamTools/ToolSolderPaste.py:142
  9075. msgid "STEP 1"
  9076. msgstr ""
  9077. #: flatcamTools/ToolSolderPaste.py:144
  9078. msgid ""
  9079. "First step is to select a number of nozzle tools for usage\n"
  9080. "and then optionally modify the GCode parameters bellow."
  9081. msgstr ""
  9082. #: flatcamTools/ToolSolderPaste.py:147
  9083. msgid ""
  9084. "Select tools.\n"
  9085. "Modify parameters."
  9086. msgstr ""
  9087. #: flatcamTools/ToolSolderPaste.py:235
  9088. msgid ""
  9089. "Feedrate (speed) while moving up vertically\n"
  9090. " to Dispense position (on Z plane)."
  9091. msgstr ""
  9092. #: flatcamTools/ToolSolderPaste.py:289
  9093. msgid "Generate GCode"
  9094. msgstr ""
  9095. #: flatcamTools/ToolSolderPaste.py:291
  9096. msgid ""
  9097. "Generate GCode for Solder Paste dispensing\n"
  9098. "on PCB pads."
  9099. msgstr ""
  9100. #: flatcamTools/ToolSolderPaste.py:306
  9101. msgid "STEP 2"
  9102. msgstr ""
  9103. #: flatcamTools/ToolSolderPaste.py:308
  9104. msgid ""
  9105. "Second step is to create a solder paste dispensing\n"
  9106. "geometry out of an Solder Paste Mask Gerber file."
  9107. msgstr ""
  9108. #: flatcamTools/ToolSolderPaste.py:324
  9109. msgid "Geo Result"
  9110. msgstr ""
  9111. #: flatcamTools/ToolSolderPaste.py:326
  9112. msgid ""
  9113. "Geometry Solder Paste object.\n"
  9114. "The name of the object has to end in:\n"
  9115. "'_solderpaste' as a protection."
  9116. msgstr ""
  9117. #: flatcamTools/ToolSolderPaste.py:335
  9118. msgid "STEP 3"
  9119. msgstr ""
  9120. #: flatcamTools/ToolSolderPaste.py:337
  9121. msgid ""
  9122. "Third step is to select a solder paste dispensing geometry,\n"
  9123. "and then generate a CNCJob object.\n"
  9124. "\n"
  9125. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  9126. "first you need to generate a geometry with those new params,\n"
  9127. "and only after that you can generate an updated CNCJob."
  9128. msgstr ""
  9129. #: flatcamTools/ToolSolderPaste.py:357
  9130. msgid "CNC Result"
  9131. msgstr ""
  9132. #: flatcamTools/ToolSolderPaste.py:359
  9133. msgid ""
  9134. "CNCJob Solder paste object.\n"
  9135. "In order to enable the GCode save section,\n"
  9136. "the name of the object has to end in:\n"
  9137. "'_solderpaste' as a protection."
  9138. msgstr ""
  9139. #: flatcamTools/ToolSolderPaste.py:369
  9140. msgid "View GCode"
  9141. msgstr ""
  9142. #: flatcamTools/ToolSolderPaste.py:371
  9143. msgid ""
  9144. "View the generated GCode for Solder Paste dispensing\n"
  9145. "on PCB pads."
  9146. msgstr ""
  9147. #: flatcamTools/ToolSolderPaste.py:375
  9148. msgid "Save GCode"
  9149. msgstr ""
  9150. #: flatcamTools/ToolSolderPaste.py:377
  9151. msgid ""
  9152. "Save the generated GCode for Solder Paste dispensing\n"
  9153. "on PCB pads, to a file."
  9154. msgstr ""
  9155. #: flatcamTools/ToolSolderPaste.py:381
  9156. msgid "STEP 4"
  9157. msgstr ""
  9158. #: flatcamTools/ToolSolderPaste.py:383
  9159. msgid ""
  9160. "Fourth step (and last) is to select a CNCJob made from \n"
  9161. "a solder paste dispensing geometry, and then view/save it's GCode."
  9162. msgstr ""
  9163. #: flatcamTools/ToolSolderPaste.py:412
  9164. msgid "Delete Object"
  9165. msgstr ""
  9166. #: flatcamTools/ToolSolderPaste.py:799
  9167. msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
  9168. msgstr ""
  9169. #: flatcamTools/ToolSolderPaste.py:805
  9170. msgid "New Nozzle tool added to Tool Table."
  9171. msgstr ""
  9172. #: flatcamTools/ToolSolderPaste.py:848
  9173. msgid "Nozzle tool from Tool Table was edited."
  9174. msgstr ""
  9175. #: flatcamTools/ToolSolderPaste.py:906
  9176. msgid "Delete failed. Select a Nozzle tool to delete."
  9177. msgstr ""
  9178. #: flatcamTools/ToolSolderPaste.py:912
  9179. msgid "Nozzle tool(s) deleted from Tool Table."
  9180. msgstr ""
  9181. #: flatcamTools/ToolSolderPaste.py:968
  9182. msgid "No SolderPaste mask Gerber object loaded."
  9183. msgstr ""
  9184. #: flatcamTools/ToolSolderPaste.py:986
  9185. msgid "Creating Solder Paste dispensing geometry."
  9186. msgstr ""
  9187. #: flatcamTools/ToolSolderPaste.py:999
  9188. msgid "No Nozzle tools in the tool table."
  9189. msgstr ""
  9190. #: flatcamTools/ToolSolderPaste.py:1126
  9191. msgid "Cancelled. Empty file, it has no geometry..."
  9192. msgstr ""
  9193. #: flatcamTools/ToolSolderPaste.py:1130
  9194. msgid "Solder Paste geometry generated successfully"
  9195. msgstr ""
  9196. #: flatcamTools/ToolSolderPaste.py:1137
  9197. msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
  9198. msgstr ""
  9199. #: flatcamTools/ToolSolderPaste.py:1151
  9200. msgid "Generating Solder Paste dispensing geometry..."
  9201. msgstr ""
  9202. #: flatcamTools/ToolSolderPaste.py:1172
  9203. msgid "There is no Geometry object available."
  9204. msgstr ""
  9205. #: flatcamTools/ToolSolderPaste.py:1177
  9206. msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
  9207. msgstr ""
  9208. #: flatcamTools/ToolSolderPaste.py:1285
  9209. msgid "ToolSolderPaste CNCjob created"
  9210. msgstr ""
  9211. #: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
  9212. #: flatcamTools/ToolSolderPaste.py:1378
  9213. msgid ""
  9214. "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
  9215. msgstr ""
  9216. #: flatcamTools/ToolSolderPaste.py:1348
  9217. msgid "No Gcode in the object"
  9218. msgstr ""
  9219. #: flatcamTools/ToolSolderPaste.py:1358
  9220. msgid "ToolSolderPaste.on_view_gcode()"
  9221. msgstr ""
  9222. #: flatcamTools/ToolSolderPaste.py:1388
  9223. msgid "Export GCode ..."
  9224. msgstr ""
  9225. #: flatcamTools/ToolSolderPaste.py:1436
  9226. msgid "Solder paste dispenser GCode file saved to"
  9227. msgstr ""
  9228. #: flatcamTools/ToolSub.py:57
  9229. msgid "Gerber Objects"
  9230. msgstr ""
  9231. #: flatcamTools/ToolSub.py:66 flatcamTools/ToolSub.py:112
  9232. msgid "Target"
  9233. msgstr ""
  9234. #: flatcamTools/ToolSub.py:68
  9235. msgid ""
  9236. "Gerber object from which to substract\n"
  9237. "the substractor Gerber object."
  9238. msgstr ""
  9239. #: flatcamTools/ToolSub.py:80 flatcamTools/ToolSub.py:126
  9240. msgid "Substractor"
  9241. msgstr ""
  9242. #: flatcamTools/ToolSub.py:82
  9243. msgid ""
  9244. "Gerber object that will be substracted\n"
  9245. "from the target Gerber object."
  9246. msgstr ""
  9247. #: flatcamTools/ToolSub.py:89
  9248. msgid "Substract Gerber"
  9249. msgstr ""
  9250. #: flatcamTools/ToolSub.py:91
  9251. msgid ""
  9252. "Will remove the area occupied by the substractor\n"
  9253. "Gerber from the Target Gerber.\n"
  9254. "Can be used to remove the overlapping silkscreen\n"
  9255. "over the soldermask."
  9256. msgstr ""
  9257. #: flatcamTools/ToolSub.py:103
  9258. msgid "Geometry Objects"
  9259. msgstr ""
  9260. #: flatcamTools/ToolSub.py:114
  9261. msgid ""
  9262. "Geometry object from which to substract\n"
  9263. "the substractor Geometry object."
  9264. msgstr ""
  9265. #: flatcamTools/ToolSub.py:128
  9266. msgid ""
  9267. "Geometry object that will be substracted\n"
  9268. "from the target Geometry object."
  9269. msgstr ""
  9270. #: flatcamTools/ToolSub.py:139
  9271. msgid "Substract Geometry"
  9272. msgstr ""
  9273. #: flatcamTools/ToolSub.py:141
  9274. msgid ""
  9275. "Will remove the area occupied by the substractor\n"
  9276. "Geometry from the Target Geometry."
  9277. msgstr ""
  9278. #: flatcamTools/ToolSub.py:228
  9279. msgid "Sub Tool"
  9280. msgstr ""
  9281. #: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
  9282. msgid "No Target object loaded."
  9283. msgstr ""
  9284. #: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
  9285. msgid "No Substractor object loaded."
  9286. msgstr ""
  9287. #: flatcamTools/ToolSub.py:314
  9288. #, python-format
  9289. msgid "Parsing aperture %s geometry ..."
  9290. msgstr ""
  9291. #: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
  9292. msgid "Generating new object ..."
  9293. msgstr ""
  9294. #: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
  9295. #: flatcamTools/ToolSub.py:704
  9296. msgid "Generating new object failed."
  9297. msgstr ""
  9298. #: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
  9299. msgid "Created"
  9300. msgstr ""
  9301. #: flatcamTools/ToolSub.py:476
  9302. msgid "Currently, the Substractor geometry cannot be of type Multigeo."
  9303. msgstr ""
  9304. #: flatcamTools/ToolSub.py:521
  9305. msgid "Parsing solid_geometry ..."
  9306. msgstr ""
  9307. #: flatcamTools/ToolSub.py:523
  9308. #, python-format
  9309. msgid "Parsing tool %s geometry ..."
  9310. msgstr ""
  9311. #: flatcamTools/ToolTransform.py:23
  9312. msgid "Object Transform"
  9313. msgstr ""
  9314. #: flatcamTools/ToolTransform.py:84
  9315. msgid ""
  9316. "Rotate the selected object(s).\n"
  9317. "The point of reference is the middle of\n"
  9318. "the bounding box for all selected objects."
  9319. msgstr ""
  9320. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  9321. msgid ""
  9322. "Skew/shear the selected object(s).\n"
  9323. "The point of reference is the middle of\n"
  9324. "the bounding box for all selected objects."
  9325. msgstr ""
  9326. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  9327. msgid ""
  9328. "Scale the selected object(s).\n"
  9329. "The point of reference depends on \n"
  9330. "the Scale reference checkbox state."
  9331. msgstr ""
  9332. #: flatcamTools/ToolTransform.py:251 flatcamTools/ToolTransform.py:268
  9333. msgid ""
  9334. "Offset the selected object(s).\n"
  9335. "The point of reference is the middle of\n"
  9336. "the bounding box for all selected objects.\n"
  9337. msgstr ""
  9338. #: flatcamTools/ToolTransform.py:298 flatcamTools/ToolTransform.py:306
  9339. msgid ""
  9340. "Flip the selected object(s) over the X axis.\n"
  9341. "Does not create a new object.\n"
  9342. " "
  9343. msgstr ""
  9344. #: flatcamTools/ToolTransform.py:643
  9345. msgid "No object selected. Please Select an object to rotate!"
  9346. msgstr ""
  9347. #: flatcamTools/ToolTransform.py:671
  9348. msgid "CNCJob objects can't be rotated."
  9349. msgstr ""
  9350. #: flatcamTools/ToolTransform.py:679
  9351. msgid "Rotate done"
  9352. msgstr ""
  9353. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9354. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9355. #: flatcamTools/ToolTransform.py:903
  9356. msgid "Due of"
  9357. msgstr ""
  9358. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9359. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9360. #: flatcamTools/ToolTransform.py:903
  9361. msgid "action was not executed."
  9362. msgstr ""
  9363. #: flatcamTools/ToolTransform.py:696
  9364. msgid "No object selected. Please Select an object to flip"
  9365. msgstr ""
  9366. #: flatcamTools/ToolTransform.py:731
  9367. msgid "CNCJob objects can't be mirrored/flipped."
  9368. msgstr ""
  9369. #: flatcamTools/ToolTransform.py:769
  9370. msgid "No object selected. Please Select an object to shear/skew!"
  9371. msgstr ""
  9372. #: flatcamTools/ToolTransform.py:791
  9373. msgid "CNCJob objects can't be skewed."
  9374. msgstr ""
  9375. #: flatcamTools/ToolTransform.py:803
  9376. #, python-format
  9377. msgid "[success] Skew on the %s axis done ..."
  9378. msgstr ""
  9379. #: flatcamTools/ToolTransform.py:820
  9380. msgid "No object selected. Please Select an object to scale!"
  9381. msgstr ""
  9382. #: flatcamTools/ToolTransform.py:853
  9383. msgid "CNCJob objects can't be scaled."
  9384. msgstr ""
  9385. #: flatcamTools/ToolTransform.py:863
  9386. msgid "Scale on the"
  9387. msgstr ""
  9388. #: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
  9389. msgid "axis done"
  9390. msgstr ""
  9391. #: flatcamTools/ToolTransform.py:875
  9392. msgid "No object selected. Please Select an object to offset!"
  9393. msgstr ""
  9394. #: flatcamTools/ToolTransform.py:884
  9395. msgid "CNCJob objects can't be offset."
  9396. msgstr ""
  9397. #: flatcamTools/ToolTransform.py:898
  9398. msgid "Offset on the"
  9399. msgstr ""
  9400. #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
  9401. msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
  9402. msgstr ""
  9403. #: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
  9404. msgid "Expected -box <value>."
  9405. msgstr ""
  9406. #: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
  9407. #: tclCommands/TclCommandScale.py:63
  9408. msgid "Could not retrieve box object"
  9409. msgstr ""
  9410. #: tclCommands/TclCommandCopperClear.py:263
  9411. msgid ""
  9412. "None of the following args: 'ref', 'all' were found or none was set to 1.\n"
  9413. "Copper clearing failed."
  9414. msgstr ""
  9415. #: tclCommands/TclCommandPaint.py:210
  9416. msgid "Expected -x <value> and -y <value>."
  9417. msgstr ""
  9418. #: tclCommands/TclCommandPaint.py:257
  9419. msgid ""
  9420. "There was none of the following args: 'ref', 'single', 'all'.\n"
  9421. "Paint failed."
  9422. msgstr ""
  9423. #: tclCommands/TclCommandScale.py:83
  9424. msgid "Expected -origin <origin> or -origin <min_bounds> or -origin <center>."
  9425. msgstr ""
  9426. #: tclCommands/TclCommandScale.py:92
  9427. msgid "Expected -x <value> -y <value>."
  9428. msgstr ""
  9429. #: tclCommands/TclCommandSubtractRectangle.py:49
  9430. msgid "No Geometry name in args. Provide a name and try again."
  9431. msgstr ""
  9432. #~ msgid ""
  9433. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9434. #~ "Example:\n"
  9435. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9436. #~ "\n"
  9437. #~ "Adjust the value starting with lower values\n"
  9438. #~ "and increasing it if areas that should be painted are still \n"
  9439. #~ "not painted.\n"
  9440. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9441. #~ "Higher values = slow processing and slow execution on CNC\n"
  9442. #~ "due of too many paths."
  9443. #~ msgstr ""
  9444. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9445. #~ "Example:\n"
  9446. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9447. #~ "\n"
  9448. #~ "Adjust the value starting with lower values\n"
  9449. #~ "and increasing it if areas that should be painted are still \n"
  9450. #~ "not painted.\n"
  9451. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9452. #~ "Higher values = slow processing and slow execution on CNC\n"
  9453. #~ "due of too many paths."
  9454. #~| msgid "z_toolchange = Z coord for Toolchange"
  9455. #~ msgid "z_cut = Z coord for Toolchange"
  9456. #~ msgstr "z_cut = Z coord for Toolchange"
  9457. #~| msgid "z_toolchange = Z coord for Toolchange"
  9458. #~ msgid "z_move = Z coord for Toolchange"
  9459. #~ msgstr "z_move = Z coord for Toolchange"
  9460. #~ msgid "%s/Project_%s"
  9461. #~ msgstr "%s/Project_%s"
  9462. #~ msgid "tool_tab"
  9463. #~ msgstr "tool_tab"