strings.po 448 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254
  1. # Copyright (C) YEAR ORGANIZATION
  2. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  3. #
  4. msgid ""
  5. msgstr ""
  6. "Project-Id-Version: \n"
  7. "POT-Creation-Date: 2019-07-17 13:14+0300\n"
  8. "PO-Revision-Date: 2019-07-17 13:17+0300\n"
  9. "Last-Translator: Carlos Stein <carlos.stein@gmail.com>\n"
  10. "Language-Team: \n"
  11. "Language: pt_BR\n"
  12. "MIME-Version: 1.0\n"
  13. "Content-Type: text/plain; charset=UTF-8\n"
  14. "Content-Transfer-Encoding: 8bit\n"
  15. "Generated-By: pygettext.py 1.5\n"
  16. "X-Generator: Poedit 2.2.3\n"
  17. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  18. "X-Poedit-Basepath: ../../..\n"
  19. "X-Poedit-SearchPath-0: .\n"
  20. "X-Poedit-SearchPathExcluded-0: build\n"
  21. "X-Poedit-SearchPathExcluded-1: doc\n"
  22. "X-Poedit-SearchPathExcluded-2: tests\n"
  23. #: FlatCAMApp.py:922
  24. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  25. msgstr ""
  26. "[ERROR] Não foi possível encontrar os arquivos de idioma. As strings do "
  27. "aplicativo estão faltando."
  28. #: FlatCAMApp.py:1833
  29. msgid ""
  30. "(Type help to get started)\n"
  31. "\n"
  32. msgstr ""
  33. "(Digite help para iniciar)\n"
  34. "\n"
  35. #: FlatCAMApp.py:2018 ObjectCollection.py:80 flatcamTools/ToolImage.py:213
  36. #: flatcamTools/ToolPcbWizard.py:296 flatcamTools/ToolPcbWizard.py:319
  37. msgid "Open cancelled."
  38. msgstr "Abrir cancelado."
  39. #: FlatCAMApp.py:2032
  40. msgid "Open Config file failed."
  41. msgstr "Falha em abrir o arquivo de Configuração."
  42. #: FlatCAMApp.py:2046
  43. msgid "Open Script file failed."
  44. msgstr "Falha em abrir o arquivo de Script."
  45. #: FlatCAMApp.py:2244
  46. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  47. msgstr ""
  48. "[WARNING_NOTCL] Selecione um Objeto Geometria, Gerber ou Excellon para "
  49. "editar."
  50. #: FlatCAMApp.py:2254
  51. msgid ""
  52. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  53. "Geometry is not possible.\n"
  54. "Edit only one geometry at a time."
  55. msgstr ""
  56. "[WARNING_NOTCL] A edição simultânea de ferramentas geometria em uma "
  57. "Geometria MultiGeo não é possível. \n"
  58. " Editar apenas uma geometria por vez."
  59. #: FlatCAMApp.py:2309
  60. msgid "[WARNING_NOTCL] Editor is activated ..."
  61. msgstr "[WARNING_NOTCL] Editor está ativado ..."
  62. #: FlatCAMApp.py:2327
  63. msgid "Do you want to save the edited object?"
  64. msgstr "Você quer salvar o objeto editado?"
  65. #: FlatCAMApp.py:2328 flatcamGUI/FlatCAMGUI.py:1637
  66. msgid "Close Editor"
  67. msgstr "Fechar editor"
  68. #: FlatCAMApp.py:2331 FlatCAMApp.py:3423 FlatCAMApp.py:6009
  69. #: FlatCAMTranslation.py:91 flatcamGUI/FlatCAMGUI.py:3760
  70. msgid "Yes"
  71. msgstr "Sim"
  72. #: FlatCAMApp.py:2332 FlatCAMApp.py:3424 FlatCAMApp.py:6010
  73. #: FlatCAMTranslation.py:92 flatcamGUI/FlatCAMGUI.py:3761
  74. msgid "No"
  75. msgstr "Não"
  76. #: FlatCAMApp.py:2333 FlatCAMApp.py:3425 FlatCAMApp.py:3856 FlatCAMApp.py:6011
  77. msgid "Cancel"
  78. msgstr "Cancelar"
  79. #: FlatCAMApp.py:2360
  80. msgid "[WARNING] Object empty after edit."
  81. msgstr "[WARNING] Objeto vazio após a edição."
  82. #: FlatCAMApp.py:2382 FlatCAMApp.py:2401 FlatCAMApp.py:2413
  83. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  84. msgstr ""
  85. "[WARNING_NOTCL] Selecione um objeto Gerber, Geometria ou Excellon para "
  86. "atualizar."
  87. #: FlatCAMApp.py:2385
  88. #, python-format
  89. msgid "[selected] %s is updated, returning to App..."
  90. msgstr "[selected] %s está atualizado, retornando ao App ..."
  91. #: FlatCAMApp.py:2750
  92. msgid "[ERROR] Could not load defaults file."
  93. msgstr "[ERROR] Não foi possível carregar o arquivo padrão."
  94. #: FlatCAMApp.py:2762
  95. msgid "[ERROR] Failed to parse defaults file."
  96. msgstr "[ERROR] Falha ao analisar o arquivo de padrões."
  97. #: FlatCAMApp.py:2783 FlatCAMApp.py:2787
  98. msgid "Import FlatCAM Preferences"
  99. msgstr "Importar Preferências do FlatCAM"
  100. #: FlatCAMApp.py:2793
  101. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  102. msgstr "[WARNING_NOTCL] Importação de preferências do FlatCAM cancelada."
  103. #: FlatCAMApp.py:2801 FlatCAMApp.py:2855 FlatCAMApp.py:3302
  104. msgid "[ERROR_NOTCL] Could not load defaults file."
  105. msgstr "[ERROR_NOTCL] Não foi possível carregar o arquivo de padrões."
  106. #: FlatCAMApp.py:2809 FlatCAMApp.py:3311
  107. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  108. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo de padrões."
  109. #: FlatCAMApp.py:2812
  110. #, python-format
  111. msgid "[success] Imported Defaults from %s"
  112. msgstr "[success] Padrões importados de %s"
  113. #: FlatCAMApp.py:2827 FlatCAMApp.py:2832
  114. msgid "Export FlatCAM Preferences"
  115. msgstr "Exportar preferências do FlatCAM"
  116. #: FlatCAMApp.py:2839
  117. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  118. msgstr "[WARNING_NOTCL] Exportação de preferências do FlatCAM cancelada."
  119. #: FlatCAMApp.py:2874 FlatCAMApp.py:3356
  120. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  121. msgstr "[ERROR_NOTCL] Falha ao gravar os padrões no arquivo."
  122. #: FlatCAMApp.py:2927
  123. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  124. msgstr ""
  125. "[ERROR_NOTCL] Falha ao abrir o arquivo de arquivos recentes para gravação."
  126. #: FlatCAMApp.py:3004 camlib.py:4457
  127. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  128. msgstr ""
  129. "[ERROR_NOTCL] Ocorreu um erro interno. Veja shell (linha de comando). \n"
  130. #: FlatCAMApp.py:3005
  131. #, python-brace-format
  132. msgid ""
  133. "Object ({kind}) failed because: {error} \n"
  134. "\n"
  135. msgstr ""
  136. "Objeto ({kind}) falhou porque: {error} \n"
  137. "\n"
  138. #: FlatCAMApp.py:3025
  139. msgid "Converting units to "
  140. msgstr "Convertendo unidades para "
  141. #: FlatCAMApp.py:3104 FlatCAMApp.py:3107 FlatCAMApp.py:3110 FlatCAMApp.py:3113
  142. #, python-brace-format
  143. msgid ""
  144. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  145. "span>"
  146. msgstr ""
  147. "[selected] {kind} criado/selecionado: <span style =\"color:{color};\">{name}"
  148. "</span>"
  149. #: FlatCAMApp.py:3207
  150. #, python-brace-format
  151. msgid ""
  152. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  153. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  154. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  155. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  156. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  157. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  158. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  159. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  160. "downloads/\">here.</a><BR>"
  161. msgstr ""
  162. "<font size=8><B>FlatCAM</B></font><BR>Versão {version} {beta} ({date}) - "
  163. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  164. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B>Principais "
  165. "colaboradores:</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius "
  166. "Stanciu<BR>Matthieu Berthomé<BR>e muitos outros encontrados <a href = "
  167. "\"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED\">aqui.</"
  168. "a><BR><BR>O desenvolvimento é feito <a href = \"https://bitbucket.org/jpcgt/"
  169. "flatcam/src/Beta/\">aqui.</a><BR>Área de DOWNLOAD <a href = \"https://"
  170. "bitbucket.org/jpcgt/flatcam/downloads/\">aqui.</a><BR>"
  171. #: FlatCAMApp.py:3360
  172. msgid "[success] Defaults saved."
  173. msgstr "[success] Padrões salvos."
  174. #: FlatCAMApp.py:3381
  175. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  176. msgstr ""
  177. "[ERROR_NOTCL] Não foi possível carregar o arquivo de padrões de fábrica."
  178. #: FlatCAMApp.py:3390
  179. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  180. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo de padrões de fábrica."
  181. #: FlatCAMApp.py:3404
  182. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  183. msgstr "[ERROR_NOTCL] Falha ao gravar os padrões de fábrica no arquivo."
  184. #: FlatCAMApp.py:3408
  185. msgid "Factory defaults saved."
  186. msgstr "Padrões de fábrica salvos."
  187. #: FlatCAMApp.py:3413 flatcamGUI/FlatCAMGUI.py:3136
  188. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  189. msgstr ""
  190. "[WARNING_NOTCL] O aplicativo está salvando o projeto. Por favor, espere ..."
  191. #: FlatCAMApp.py:3418
  192. msgid ""
  193. "There are files/objects modified in FlatCAM. \n"
  194. "Do you want to Save the project?"
  195. msgstr ""
  196. "Existem arquivos/objetos modificados no FlatCAM. \n"
  197. "Você quer salvar o projeto?"
  198. #: FlatCAMApp.py:3421 FlatCAMApp.py:6007
  199. msgid "Save changes"
  200. msgstr "Salvar alterações"
  201. #: FlatCAMApp.py:3488
  202. msgid ""
  203. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  204. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  205. "is to convert from one to another and retry joining \n"
  206. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  207. "be lost and the result may not be what was expected. \n"
  208. "Check the generated GCODE."
  209. msgstr ""
  210. "[ERROR] Falha ao unir. Os objetos Geometria são de tipos diferentes. \n"
  211. "Pelo menos um é do tipo MultiGeo e o outro é do tipo SingleGeo. Uma "
  212. "possibilidade é converter de um para outro e tentar unir, \n"
  213. "mas no caso de converter de MultiGeo para SingleGeo, as informações podem "
  214. "ser perdidas e o resultado pode não ser o esperado. \n"
  215. "Verifique o G-CODE gerado."
  216. #: FlatCAMApp.py:3529
  217. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  218. msgstr ""
  219. "[ERROR_NOTCL] Falha. A união de Excellon funciona apenas em objetos Excellon."
  220. #: FlatCAMApp.py:3551
  221. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  222. msgstr ""
  223. "[ERROR_NOTCL] Falha. A união de Gerber funciona apenas em objetos Gerber."
  224. #: FlatCAMApp.py:3566 FlatCAMApp.py:3591
  225. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  226. msgstr ""
  227. "[ERROR_NOTCL] Falha. Selecione um Objeto de Geometria e tente novamente."
  228. #: FlatCAMApp.py:3570 FlatCAMApp.py:3595
  229. #, python-format
  230. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  231. msgstr "[ERROR_NOTCL] Geometria FlatCAM esperada, recebido %s"
  232. #: FlatCAMApp.py:3583
  233. msgid "[success] A Geometry object was converted to MultiGeo type."
  234. msgstr "[success] Um objeto Geometria foi convertido para o tipo MultiGeo."
  235. #: FlatCAMApp.py:3609
  236. msgid "[success] A Geometry object was converted to SingleGeo type."
  237. msgstr "[success] Um objeto Geometria foi convertido para o tipo SingleGeo."
  238. #: FlatCAMApp.py:3850
  239. msgid "Toggle Units"
  240. msgstr "Alternar Unidades"
  241. #: FlatCAMApp.py:3852
  242. msgid "<B>Change project units ...</B>"
  243. msgstr "<B>Alterar unidades do projeto ...</B>"
  244. #: FlatCAMApp.py:3853
  245. msgid ""
  246. "Changing the units of the project causes all geometrical properties of all "
  247. "objects to be scaled accordingly.\n"
  248. "Continue?"
  249. msgstr ""
  250. "Alterar as unidades do projeto fará com que todas as propriedades geométricas"
  251. "de todos os objetos sejam redimensionadas.\n"
  252. "Continuar?"
  253. #: FlatCAMApp.py:3855 FlatCAMApp.py:4694 FlatCAMApp.py:6282 FlatCAMApp.py:6293
  254. #: FlatCAMApp.py:6533 FlatCAMApp.py:6543
  255. msgid "Ok"
  256. msgstr "Ok"
  257. #: FlatCAMApp.py:3900
  258. #, python-format
  259. msgid "[success] Converted units to %s"
  260. msgstr "[success] Unidades convertidas para %s"
  261. #: FlatCAMApp.py:3911
  262. msgid "[WARNING_NOTCL] Units conversion cancelled."
  263. msgstr "[WARNING_NOTCL] Conversão de unidades cancelada."
  264. #: FlatCAMApp.py:4563
  265. msgid "Open file"
  266. msgstr "Abrir arquivo"
  267. #: FlatCAMApp.py:4594 FlatCAMApp.py:4599
  268. msgid "Export G-Code ..."
  269. msgstr "Exportar G-Code ..."
  270. #: FlatCAMApp.py:4602
  271. msgid "[WARNING_NOTCL] Export Code cancelled."
  272. msgstr "[WARNING_NOTCL] Exportar G-Code cancelado."
  273. #: FlatCAMApp.py:4612
  274. msgid "[WARNING] No such file or directory"
  275. msgstr "[WARNING] Nenhum arquivo ou diretório"
  276. #: FlatCAMApp.py:4619
  277. #, python-format
  278. msgid "Saved to: %s"
  279. msgstr "Salvo para: %s"
  280. #: FlatCAMApp.py:4682 FlatCAMApp.py:4715 FlatCAMApp.py:4726 FlatCAMApp.py:4737
  281. #: flatcamTools/ToolNonCopperClear.py:490 flatcamTools/ToolSolderPaste.py:763
  282. msgid ""
  283. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  284. "format."
  285. msgstr ""
  286. "[WARNING_NOTCL] Insira um diâmetro de ferramenta com valor diferente de "
  287. "zero, no formato Flutuante."
  288. #: FlatCAMApp.py:4687 FlatCAMApp.py:4720 FlatCAMApp.py:4731 FlatCAMApp.py:4742
  289. #: flatcamGUI/FlatCAMGUI.py:3031
  290. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  291. msgstr "[WARNING_NOTCL] Adicionar ferramenta cancelada ..."
  292. #: FlatCAMApp.py:4690
  293. msgid ""
  294. "Adding Tool works only when Advanced is checked.\n"
  295. "Go to Preferences -> General - Show Advanced Options."
  296. msgstr ""
  297. "Adicionar Ferramenta funciona somente quando Avançado está marcado. \n"
  298. "Vá para Preferências -> Geral - Mostrar Opções Avançadas."
  299. #: FlatCAMApp.py:4803
  300. msgid "Object(s) deleted ..."
  301. msgstr "Objeto(s) excluído(s) ..."
  302. #: FlatCAMApp.py:4807
  303. msgid "Failed. No object(s) selected..."
  304. msgstr "Falha. Nenhum objeto selecionado ..."
  305. #: FlatCAMApp.py:4809
  306. msgid "Save the work in Editor and try again ..."
  307. msgstr "Salve o trabalho no Editor e tente novamente ..."
  308. #: FlatCAMApp.py:4822
  309. msgid "Click to set the origin ..."
  310. msgstr "Clique para definir a origem ..."
  311. #: FlatCAMApp.py:4834
  312. msgid "Jump to ..."
  313. msgstr "Pule para ..."
  314. #: FlatCAMApp.py:4835
  315. msgid "Enter the coordinates in format X,Y:"
  316. msgstr "Digite as coordenadas no formato X,Y:"
  317. #: FlatCAMApp.py:4842
  318. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  319. msgstr "Coordenadas erradas. Insira as coordenadas no formato: X,Y"
  320. #: FlatCAMApp.py:4860 flatcamEditors/FlatCAMExcEditor.py:2320
  321. #: flatcamEditors/FlatCAMExcEditor.py:2327
  322. #: flatcamEditors/FlatCAMGeoEditor.py:3648
  323. #: flatcamEditors/FlatCAMGeoEditor.py:3662
  324. #: flatcamEditors/FlatCAMGrbEditor.py:1040
  325. #: flatcamEditors/FlatCAMGrbEditor.py:1141
  326. #: flatcamEditors/FlatCAMGrbEditor.py:1409
  327. #: flatcamEditors/FlatCAMGrbEditor.py:1666
  328. #: flatcamEditors/FlatCAMGrbEditor.py:4071
  329. #: flatcamEditors/FlatCAMGrbEditor.py:4085 flatcamGUI/FlatCAMGUI.py:2435
  330. #: flatcamGUI/FlatCAMGUI.py:2447
  331. msgid "[success] Done."
  332. msgstr "[success] Pronto."
  333. #: FlatCAMApp.py:4992 FlatCAMApp.py:5059
  334. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  335. msgstr ""
  336. "[WARNING_NOTCL] Nenhum objeto está selecionado. Selecione um objeto e tente "
  337. "novamente."
  338. #: FlatCAMApp.py:5100
  339. msgid "[success] Origin set ..."
  340. msgstr "[success] Origem definida ..."
  341. #: FlatCAMApp.py:5120
  342. msgid "Preferences"
  343. msgstr "Preferências"
  344. #: FlatCAMApp.py:5140
  345. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  346. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Espelhar no eixo Y."
  347. #: FlatCAMApp.py:5165
  348. msgid "[success] Flip on Y axis done."
  349. msgstr "[success] Espelhar no eixo Y pronto."
  350. #: FlatCAMApp.py:5167 FlatCAMApp.py:5207
  351. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  352. #: flatcamEditors/FlatCAMGrbEditor.py:5498 flatcamTools/ToolTransform.py:747
  353. #, python-format
  354. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  355. msgstr "[ERROR_NOTCL] Devido a %s, a ação de espelhamento não foi executada."
  356. #: FlatCAMApp.py:5180
  357. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  358. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Espelhar no eixo X."
  359. #: FlatCAMApp.py:5205
  360. msgid "[success] Flip on X axis done."
  361. msgstr "[success] Espelhar no eixo X pronto."
  362. #: FlatCAMApp.py:5220
  363. msgid "[WARNING_NOTCL] No object selected to Rotate."
  364. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Girar."
  365. #: FlatCAMApp.py:5223 FlatCAMApp.py:5268 FlatCAMApp.py:5299
  366. msgid "Transform"
  367. msgstr "Transformar"
  368. #: FlatCAMApp.py:5223 FlatCAMApp.py:5268 FlatCAMApp.py:5299
  369. msgid "Enter the Angle value:"
  370. msgstr "Digite o valor do Ângulo:"
  371. #: FlatCAMApp.py:5253
  372. msgid "[success] Rotation done."
  373. msgstr "[success] Rotação realizada."
  374. #: FlatCAMApp.py:5255 flatcamEditors/FlatCAMGeoEditor.py:1298
  375. #: flatcamEditors/FlatCAMGrbEditor.py:5427 flatcamTools/ToolTransform.py:676
  376. #, python-format
  377. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  378. msgstr "[ERROR_NOTCL] Devido a %s, o movimento de rotação não foi executado."
  379. #: FlatCAMApp.py:5266
  380. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  381. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Inclinar no eixo X."
  382. #: FlatCAMApp.py:5287
  383. msgid "[success] Skew on X axis done."
  384. msgstr "[success] Inclinação no eixo X concluída."
  385. #: FlatCAMApp.py:5297
  386. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  387. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Inclinar no eixo Y."
  388. #: FlatCAMApp.py:5318
  389. msgid "[success] Skew on Y axis done."
  390. msgstr "[success] Inclinação no eixo Y concluída."
  391. #: FlatCAMApp.py:5388
  392. msgid "Grid On/Off"
  393. msgstr "Liga/Desliga a Grade"
  394. #: FlatCAMApp.py:5401 flatcamEditors/FlatCAMGeoEditor.py:937
  395. #: flatcamEditors/FlatCAMGrbEditor.py:2424
  396. #: flatcamEditors/FlatCAMGrbEditor.py:5016 flatcamGUI/ObjectUI.py:991
  397. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  398. #: flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131
  399. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:478
  400. #: flatcamTools/ToolTransform.py:337
  401. msgid "Add"
  402. msgstr "Adicionar"
  403. #: FlatCAMApp.py:5402 FlatCAMObj.py:3300
  404. #: flatcamEditors/FlatCAMGrbEditor.py:2429 flatcamGUI/FlatCAMGUI.py:531
  405. #: flatcamGUI/FlatCAMGUI.py:731 flatcamGUI/FlatCAMGUI.py:1635
  406. #: flatcamGUI/FlatCAMGUI.py:1974 flatcamGUI/ObjectUI.py:1007
  407. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143
  408. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:480
  409. msgid "Delete"
  410. msgstr "Excluir"
  411. #: FlatCAMApp.py:5415
  412. msgid "New Grid ..."
  413. msgstr "Nova Grade ..."
  414. #: FlatCAMApp.py:5416
  415. msgid "Enter a Grid Value:"
  416. msgstr "Digite um valor para grade:"
  417. #: FlatCAMApp.py:5424 FlatCAMApp.py:5451
  418. msgid ""
  419. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  420. "format."
  421. msgstr ""
  422. "[WARNING_NOTCL] Por favor, insira um valor de grade com valor diferente de "
  423. "zero, no formato Flutuante."
  424. #: FlatCAMApp.py:5430
  425. msgid "[success] New Grid added ..."
  426. msgstr "[success] Nova Grade adicionada ..."
  427. #: FlatCAMApp.py:5433
  428. msgid "[WARNING_NOTCL] Grid already exists ..."
  429. msgstr "[WARNING_NOTCL] Grade já existe ..."
  430. #: FlatCAMApp.py:5436
  431. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  432. msgstr "[WARNING_NOTCL] Adicionar nova grade cancelada ..."
  433. #: FlatCAMApp.py:5458
  434. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  435. msgstr "[ERROR_NOTCL] O valor da grade não existe ..."
  436. #: FlatCAMApp.py:5461
  437. msgid "[success] Grid Value deleted ..."
  438. msgstr "[success] Grade apagada ..."
  439. #: FlatCAMApp.py:5464
  440. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  441. msgstr "[WARNING_NOTCL] Excluir valor de grade cancelado ..."
  442. #: FlatCAMApp.py:5470
  443. msgid "Key Shortcut List"
  444. msgstr "Lista de Atalhos"
  445. #: FlatCAMApp.py:5503
  446. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  447. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para copiar nome"
  448. #: FlatCAMApp.py:5507
  449. msgid "Name copied on clipboard ..."
  450. msgstr "Nome copiado na área de transferência ..."
  451. #: FlatCAMApp.py:5549 flatcamEditors/FlatCAMGrbEditor.py:4012
  452. msgid "[success] Coordinates copied to clipboard."
  453. msgstr "[success] Coordenadas copiadas para a área de transferência."
  454. #: FlatCAMApp.py:5805 FlatCAMApp.py:5808 FlatCAMApp.py:5811 FlatCAMApp.py:5814
  455. #: FlatCAMApp.py:5829 FlatCAMApp.py:5832 FlatCAMApp.py:5835 FlatCAMApp.py:5838
  456. #: FlatCAMApp.py:5878 FlatCAMApp.py:5881 FlatCAMApp.py:5884 FlatCAMApp.py:5887
  457. #: ObjectCollection.py:719 ObjectCollection.py:722 ObjectCollection.py:725
  458. #: ObjectCollection.py:728
  459. #, python-brace-format
  460. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  461. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selecionado"
  462. #: FlatCAMApp.py:6004
  463. msgid ""
  464. "There are files/objects opened in FlatCAM.\n"
  465. "Creating a New project will delete them.\n"
  466. "Do you want to Save the project?"
  467. msgstr ""
  468. "Existem arquivos/objetos abertos no FlatCAM.\n"
  469. "Criar um novo projeto irá apagá-los.\n"
  470. "Você quer Salvar o Projeto?"
  471. #: FlatCAMApp.py:6025
  472. msgid "[success] New Project created..."
  473. msgstr "[success] Novo Projeto criado ..."
  474. #: FlatCAMApp.py:6141 FlatCAMApp.py:6144 flatcamGUI/FlatCAMGUI.py:612
  475. #: flatcamGUI/FlatCAMGUI.py:1851
  476. msgid "Open Gerber"
  477. msgstr "Abrir Gerber"
  478. #: FlatCAMApp.py:6149
  479. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  480. msgstr "[WARNING_NOTCL] Abrir Gerber cancelado."
  481. #: FlatCAMApp.py:6170 FlatCAMApp.py:6173 flatcamGUI/FlatCAMGUI.py:613
  482. #: flatcamGUI/FlatCAMGUI.py:1852
  483. msgid "Open Excellon"
  484. msgstr "Abrir Excellon"
  485. #: FlatCAMApp.py:6178
  486. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  487. msgstr "[WARNING_NOTCL] Abrir Excellon cancelado."
  488. #: FlatCAMApp.py:6200 FlatCAMApp.py:6203
  489. msgid "Open G-Code"
  490. msgstr "Abrir G-Code"
  491. #: FlatCAMApp.py:6208
  492. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  493. msgstr "[WARNING_NOTCL] Abrir G-Code cancelado."
  494. #: FlatCAMApp.py:6226 FlatCAMApp.py:6229
  495. msgid "Open Project"
  496. msgstr "Abrir Projeto"
  497. #: FlatCAMApp.py:6237
  498. msgid "[WARNING_NOTCL] Open Project cancelled."
  499. msgstr "[WARNING_NOTCL] Abrir Projeto cancelado."
  500. #: FlatCAMApp.py:6256 FlatCAMApp.py:6259
  501. msgid "Open Configuration File"
  502. msgstr "Abrir Arquivo de Configuração"
  503. #: FlatCAMApp.py:6263
  504. msgid "[WARNING_NOTCL] Open Config cancelled."
  505. msgstr "[WARNING_NOTCL] Abrir Arquivo de Configuração cancelado."
  506. #: FlatCAMApp.py:6278 FlatCAMApp.py:6529 FlatCAMApp.py:8682 FlatCAMApp.py:8702
  507. #: FlatCAMApp.py:8723 FlatCAMApp.py:8745
  508. msgid "[WARNING_NOTCL] No object selected."
  509. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  510. #: FlatCAMApp.py:6279 FlatCAMApp.py:6530
  511. msgid "Please Select a Geometry object to export"
  512. msgstr "Por favor, selecione um objeto Geometria para exportar"
  513. #: FlatCAMApp.py:6290
  514. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  515. msgstr ""
  516. "[ERROR_NOTCL] Somente objetos Geometria, Gerber e Trabalho CNC podem ser "
  517. "usados."
  518. #: FlatCAMApp.py:6303 FlatCAMApp.py:6307
  519. msgid "Export SVG"
  520. msgstr "Exportar SVG"
  521. #: FlatCAMApp.py:6312
  522. msgid "[WARNING_NOTCL] Export SVG cancelled."
  523. msgstr "[WARNING_NOTCL] Exportar SVG cancelado."
  524. #: FlatCAMApp.py:6331
  525. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  526. msgstr ""
  527. "[WARNING_NOTCL] Os dados devem ser uma matriz 3D com a última dimensão 3 ou 4"
  528. #: FlatCAMApp.py:6337 FlatCAMApp.py:6341
  529. msgid "Export PNG Image"
  530. msgstr "Exportar Imagem PNG"
  531. #: FlatCAMApp.py:6346
  532. msgid "Export PNG cancelled."
  533. msgstr "Exportar PNG cancelado."
  534. #: FlatCAMApp.py:6365
  535. msgid ""
  536. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  537. msgstr ""
  538. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  539. "Gerber para exportar."
  540. #: FlatCAMApp.py:6370 FlatCAMApp.py:6493
  541. msgid ""
  542. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  543. msgstr ""
  544. "[ERROR_NOTCL] Falhou. Somente objetos Gerber podem ser salvos como arquivos "
  545. "Gerber ..."
  546. #: FlatCAMApp.py:6382
  547. msgid "Save Gerber source file"
  548. msgstr "Salvar arquivo fonte Gerber"
  549. #: FlatCAMApp.py:6387
  550. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  551. msgstr "[WARNING_NOTCL] Salvar arquivo fonte Gerber cancelado."
  552. #: FlatCAMApp.py:6406
  553. msgid ""
  554. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  555. "export."
  556. msgstr ""
  557. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  558. "Excellon para exportar."
  559. #: FlatCAMApp.py:6411 FlatCAMApp.py:6452
  560. msgid ""
  561. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  562. msgstr ""
  563. "[ERROR_NOTCL] Falha. Somente objetos Excellon podem ser salvos como arquivos "
  564. "Excellon ..."
  565. #: FlatCAMApp.py:6419 FlatCAMApp.py:6423
  566. msgid "Save Excellon source file"
  567. msgstr "Salvar o arquivo fonte Excellon"
  568. #: FlatCAMApp.py:6428
  569. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  570. msgstr "[WARNING_NOTCL] Salvar arquivo fonte Excellon cancelado."
  571. #: FlatCAMApp.py:6447
  572. msgid ""
  573. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  574. "export."
  575. msgstr ""
  576. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  577. "Excellon para exportar."
  578. #: FlatCAMApp.py:6460 FlatCAMApp.py:6464
  579. msgid "Export Excellon"
  580. msgstr "Exportar Excellon"
  581. #: FlatCAMApp.py:6469
  582. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  583. msgstr "[WARNING_NOTCL] Exportar Excellon cancelado."
  584. #: FlatCAMApp.py:6488
  585. msgid ""
  586. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  587. msgstr ""
  588. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  589. "Gerber para exportar."
  590. #: FlatCAMApp.py:6501 FlatCAMApp.py:6505
  591. msgid "Export Gerber"
  592. msgstr "Exportar Gerber"
  593. #: FlatCAMApp.py:6510
  594. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  595. msgstr "[WARNING_NOTCL] Exportar Gerber cancelado."
  596. #: FlatCAMApp.py:6540
  597. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  598. msgstr "[ERROR_NOTCL] Apenas objetos Geometria podem ser usados."
  599. #: FlatCAMApp.py:6554 FlatCAMApp.py:6558
  600. msgid "Export DXF"
  601. msgstr "Exportar DXF"
  602. #: FlatCAMApp.py:6564
  603. msgid "[WARNING_NOTCL] Export DXF cancelled."
  604. msgstr "[WARNING_NOTCL] Exportar DXF cancelado."
  605. #: FlatCAMApp.py:6584 FlatCAMApp.py:6587
  606. msgid "Import SVG"
  607. msgstr "Importar SVG"
  608. #: FlatCAMApp.py:6596
  609. msgid "[WARNING_NOTCL] Open SVG cancelled."
  610. msgstr "[WARNING_NOTCL] Abrir SVG cancelado."
  611. #: FlatCAMApp.py:6615 FlatCAMApp.py:6619
  612. msgid "Import DXF"
  613. msgstr "Importar DXF"
  614. #: FlatCAMApp.py:6628
  615. msgid "[WARNING_NOTCL] Open DXF cancelled."
  616. msgstr "[WARNING_NOTCL] Abrir DXF cancelado."
  617. #: FlatCAMApp.py:6646
  618. #, python-format
  619. msgid "%s"
  620. msgstr "%s"
  621. #: FlatCAMApp.py:6666
  622. msgid ""
  623. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  624. msgstr ""
  625. "[WARNING_NOTCL] Selecione um arquivo Gerber ou Excellon para visualizar o "
  626. "arquivo fonte."
  627. #: FlatCAMApp.py:6673
  628. msgid ""
  629. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  630. "file code."
  631. msgstr ""
  632. "[WARNING_NOTCL] Não há nenhum objeto selecionado para ver o código fonte do "
  633. "arquivo."
  634. #: FlatCAMApp.py:6681
  635. msgid "Source Editor"
  636. msgstr "Editor de fontes"
  637. #: FlatCAMApp.py:6691
  638. #, python-format
  639. msgid "[ERROR]App.on_view_source() -->%s"
  640. msgstr "[ERROR]App.on_view_source() -->%s"
  641. #: FlatCAMApp.py:6703 FlatCAMApp.py:7845 FlatCAMObj.py:5593
  642. #: flatcamTools/ToolSolderPaste.py:1280
  643. msgid "Code Editor"
  644. msgstr "Editor de Códigos"
  645. #: FlatCAMApp.py:6715
  646. msgid "Script Editor"
  647. msgstr "Editor de Script"
  648. #: FlatCAMApp.py:6718
  649. msgid ""
  650. "#\n"
  651. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  652. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  653. "html\n"
  654. "#\n"
  655. "\n"
  656. "# FlatCAM commands list:\n"
  657. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  658. "AlignDrillGrid, ClearShell, Cncjob,\n"
  659. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  660. "GeoUnion, GetNames, GetSys,\n"
  661. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  662. "ListSys, MillHoles, Mirror, New,\n"
  663. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  664. "Options, Paint, Panelize,\n"
  665. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  666. "SubtractRectangle, Version,\n"
  667. "# WriteGCode\n"
  668. "#\n"
  669. "\n"
  670. msgstr ""
  671. "#\n"
  672. "# CRIAR UM NOVO SCRIPT TCL FLATCAM\n"
  673. "# Tutorial TCL aqui: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  674. "html\n"
  675. "#\n"
  676. "\n"
  677. "# Lista de comandos FlatCAM:\n"
  678. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  679. "AlignDrillGrid, ClearShell, Cncjob,\n"
  680. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  681. "GeoUnion, GetNames, GetSys,\n"
  682. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  683. "ListSys, MillHoles, Mirror, New,\n"
  684. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  685. "Options, Paint, Panelize,\n"
  686. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  687. "SubtractRectangle, Version,\n"
  688. "# WriteGCode\n"
  689. "#\n"
  690. "\n"
  691. #: FlatCAMApp.py:6741 FlatCAMApp.py:6744
  692. msgid "Open TCL script"
  693. msgstr "Abrir script TCL"
  694. #: FlatCAMApp.py:6752
  695. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  696. msgstr "[WARNING_NOTCL] Abrir script TCL cancelado."
  697. #: FlatCAMApp.py:6764
  698. #, python-format
  699. msgid "[ERROR]App.on_fileopenscript() -->%s"
  700. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  701. #: FlatCAMApp.py:6790 FlatCAMApp.py:6793
  702. msgid "Run TCL script"
  703. msgstr "Executar script TCL"
  704. #: FlatCAMApp.py:6801
  705. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  706. msgstr "[WARNING_NOTCL] Executar script TCL cancelado."
  707. #: FlatCAMApp.py:6851 FlatCAMApp.py:6855
  708. msgid "Save Project As ..."
  709. msgstr "Salvar Projeto Como ..."
  710. #: FlatCAMApp.py:6852
  711. #, python-brace-format
  712. msgid "{l_save}/Project_{date}"
  713. msgstr "{l_save}/Project_{date}"
  714. #: FlatCAMApp.py:6860
  715. msgid "[WARNING_NOTCL] Save Project cancelled."
  716. msgstr "[WARNING_NOTCL] Salvar Projeto cancelado."
  717. #: FlatCAMApp.py:6904
  718. msgid "Exporting SVG"
  719. msgstr "Exportando SVG"
  720. #: FlatCAMApp.py:6938 FlatCAMApp.py:7044 FlatCAMApp.py:7159
  721. #, python-format
  722. msgid "[success] SVG file exported to %s"
  723. msgstr "[success] Arquivo SVG exportado para %s"
  724. #: FlatCAMApp.py:6969 FlatCAMApp.py:7090
  725. #, python-format
  726. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  727. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  728. #: FlatCAMApp.py:7047 FlatCAMApp.py:7162
  729. msgid "Generating Film ... Please wait."
  730. msgstr "Gerando Filme ... Por favor, aguarde."
  731. #: FlatCAMApp.py:7310
  732. #, python-format
  733. msgid "[success] Excellon file exported to %s"
  734. msgstr "[success] Arquivo Excellon exportado para %s"
  735. #: FlatCAMApp.py:7317
  736. msgid "Exporting Excellon"
  737. msgstr "Exportando Excellon"
  738. #: FlatCAMApp.py:7322 FlatCAMApp.py:7329
  739. msgid "[ERROR_NOTCL] Could not export Excellon file."
  740. msgstr "[ERROR_NOTCL] Não foi possível exportar o arquivo Excellon."
  741. #: FlatCAMApp.py:7427
  742. #, python-format
  743. msgid "[success] Gerber file exported to %s"
  744. msgstr "[success] Arquivo Gerber exportado para %s"
  745. #: FlatCAMApp.py:7434
  746. msgid "Exporting Gerber"
  747. msgstr "Exportando Gerber"
  748. #: FlatCAMApp.py:7439 FlatCAMApp.py:7446
  749. msgid "[ERROR_NOTCL] Could not export Gerber file."
  750. msgstr "[ERROR_NOTCL] Não foi possível exportar o arquivo Gerber."
  751. #: FlatCAMApp.py:7486
  752. #, python-format
  753. msgid "[success] DXF file exported to %s"
  754. msgstr "[success] Arquivo DXF exportado para %s"
  755. #: FlatCAMApp.py:7492
  756. msgid "Exporting DXF"
  757. msgstr "Exportando DXF"
  758. #: FlatCAMApp.py:7497 FlatCAMApp.py:7504
  759. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  760. msgstr "[[WARNING_NOTCL]] Não foi possível exportar o arquivo DXF."
  761. #: FlatCAMApp.py:7524 FlatCAMApp.py:7566 FlatCAMApp.py:7610
  762. msgid ""
  763. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  764. "Gerber are supported"
  765. msgstr ""
  766. "[ERROR_NOTCL] O tipo escolhido não é suportado como parâmetro. Apenas "
  767. "Geometria e Gerber são suportados"
  768. #: FlatCAMApp.py:7534
  769. msgid "Importing SVG"
  770. msgstr "Importando SVG"
  771. #: FlatCAMApp.py:7545 FlatCAMApp.py:7587 FlatCAMApp.py:7630 FlatCAMApp.py:7707
  772. #: FlatCAMApp.py:7768 FlatCAMApp.py:7831 flatcamTools/ToolPDF.py:212
  773. #, python-format
  774. msgid "[success] Opened: %s"
  775. msgstr "[success] Aberto: %s"
  776. #: FlatCAMApp.py:7576
  777. msgid "Importing DXF"
  778. msgstr "Importando DXF"
  779. #: FlatCAMApp.py:7618
  780. msgid "Importing Image"
  781. msgstr "Importando Imagem"
  782. #: FlatCAMApp.py:7659 FlatCAMApp.py:7661
  783. #, python-format
  784. msgid "[ERROR_NOTCL] Failed to open file: %s"
  785. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo: %s"
  786. #: FlatCAMApp.py:7664
  787. #, python-brace-format
  788. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  789. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo: {name}. {error}"
  790. #: FlatCAMApp.py:7671 FlatCAMObj.py:4271
  791. #: flatcamEditors/FlatCAMExcEditor.py:2077
  792. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  793. msgstr "[ERROR] Um erro interno ocorreu. Veja shell (linha de comando). \n"
  794. #: FlatCAMApp.py:7680
  795. msgid ""
  796. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  797. msgstr ""
  798. "[ERROR_NOTCL] O objeto não é um arquivo Gerber ou está vazio. Abortando a "
  799. "criação de objetos."
  800. #: FlatCAMApp.py:7688
  801. msgid "Opening Gerber"
  802. msgstr "Abrindo Gerber"
  803. #: FlatCAMApp.py:7698
  804. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  805. msgstr ""
  806. "[ERROR_NOTCL] Abrir Gerber falhou. Provavelmente não é um arquivo Gerber."
  807. #: FlatCAMApp.py:7731 flatcamTools/ToolPcbWizard.py:418
  808. msgid "[ERROR_NOTCL] This is not Excellon file."
  809. msgstr "[ERROR_NOTCL] Este não é um arquivo Excellon."
  810. #: FlatCAMApp.py:7734
  811. #, python-format
  812. msgid "[ERROR_NOTCL] Cannot open file: %s"
  813. msgstr "[ERROR_NOTCL] Não é possível abrir o arquivo: %s"
  814. #: FlatCAMApp.py:7739 flatcamTools/ToolPcbWizard.py:427
  815. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  816. msgstr ""
  817. "[ERROR_NOTCL] Ocorreu um erro interno. Veja shell. (linha de comando)\n"
  818. #: FlatCAMApp.py:7752 flatcamTools/ToolPDF.py:262
  819. #: flatcamTools/ToolPcbWizard.py:440
  820. #, python-format
  821. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  822. msgstr "[ERROR_NOTCL] Nenhuma geometria encontrada no arquivo: %s"
  823. #: FlatCAMApp.py:7755
  824. msgid "Opening Excellon."
  825. msgstr "Abrindo o Excellon."
  826. #: FlatCAMApp.py:7761
  827. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  828. msgstr ""
  829. "[ERROR_NOTCL] Falha ao abrir Excellon. Provavelmente não é um arquivo "
  830. "Excellon."
  831. #: FlatCAMApp.py:7798
  832. #, python-format
  833. msgid "[ERROR_NOTCL] Failed to open %s"
  834. msgstr "[ERROR_NOTCL] Falha ao abrir %s"
  835. #: FlatCAMApp.py:7808
  836. msgid "[ERROR_NOTCL] This is not GCODE"
  837. msgstr "[ERROR_NOTCL] Não é G-Code"
  838. #: FlatCAMApp.py:7814
  839. msgid "Opening G-Code."
  840. msgstr "Abrindo G-Code."
  841. #: FlatCAMApp.py:7822
  842. msgid ""
  843. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  844. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  845. "processing"
  846. msgstr ""
  847. "[ERROR_NOTCL] Falha ao criar o objeto Trabalho CNC. Provavelmente não é um "
  848. "arquivo G-Code. \n"
  849. "A tentativa de criar um objeto FlatCAM Trabalho CNC do arquivo G-Code falhou "
  850. "durante o processamento"
  851. #: FlatCAMApp.py:7862
  852. #, python-format
  853. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  854. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo de configuração: %s"
  855. #: FlatCAMApp.py:7888 FlatCAMApp.py:7905
  856. #, python-format
  857. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  858. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo do projeto: %s"
  859. #: FlatCAMApp.py:7928
  860. #, python-format
  861. msgid "[success] Project loaded from: %s"
  862. msgstr "[success] Projeto carregado de: %s"
  863. #: FlatCAMApp.py:8033
  864. msgid "Available commands:\n"
  865. msgstr "Comandos disponíveis:\n"
  866. #: FlatCAMApp.py:8035
  867. msgid ""
  868. "\n"
  869. "\n"
  870. "Type help <command_name> for usage.\n"
  871. " Example: help open_gerber"
  872. msgstr ""
  873. "\n"
  874. "\n"
  875. "Digite help <nome_do_comando> para forma de uso. \n"
  876. " Exemplo: help open_gerber"
  877. #: FlatCAMApp.py:8185
  878. msgid "Shows list of commands."
  879. msgstr "Mostra a lista de comandos."
  880. #: FlatCAMApp.py:8242
  881. msgid "[ERROR_NOTCL] Failed to load recent item list."
  882. msgstr "[ERROR_NOTCL] Falha ao carregar a lista de itens recentes."
  883. #: FlatCAMApp.py:8249
  884. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  885. msgstr "[ERROR_NOTCL] Falha ao analisar a lista de itens recentes."
  886. #: FlatCAMApp.py:8293
  887. msgid "Clear Recent files"
  888. msgstr "Limpar arquivos recentes"
  889. #: FlatCAMApp.py:8310 flatcamGUI/FlatCAMGUI.py:975
  890. msgid "<b>Shortcut Key List</b>"
  891. msgstr "<b>Lista de Teclas de Atalho</b>"
  892. #: FlatCAMApp.py:8317
  893. msgid ""
  894. "\n"
  895. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
  896. "Project Tab</strong></span></p>\n"
  897. "\n"
  898. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  899. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  900. "\n"
  901. "<ol>\n"
  902. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
  903. "DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
  904. "toolbars, key shortcuts or even dragging and dropping the files on the GUI."
  905. "<br />\n"
  906. "\t<br />\n"
  907. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  908. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  909. "through the menu/toolbar links offered within the app.</span><br />\n"
  910. "\t&nbsp;</li>\n"
  911. "\t<li><span style=\"font-size:10px\">Once an object is available in the "
  912. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  913. "strong>(more simpler is to double click the object name in the Project Tab), "
  914. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  915. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  916. ">\n"
  917. "\t<br />\n"
  918. "\tIf the selection of the object is done on the canvas by single click "
  919. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  920. "properties will be displayed into the Selected Tab. Alternatively, double "
  921. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  922. "strong> and populate it even if it was out of focus.<br />\n"
  923. "\t<br />\n"
  924. "\tYou can change the parameters in this screen and the flow direction is "
  925. "like this:<br />\n"
  926. "\t<br />\n"
  927. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  928. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  929. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  930. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  931. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  932. "span></li>\n"
  933. "</ol>\n"
  934. "\n"
  935. "<p><span style=\"font-size:10px\">A list of key shortcuts is available "
  936. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  937. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  938. "\n"
  939. " "
  940. msgstr ""
  941. "\n"
  942. "<p><span style=\"font-size:14px\"><strong>Aba Selecionado - Escolha um Item "
  943. "da Aba Projeto</strong></span></p>\n"
  944. "\n"
  945. "<p><span style=\"font-size:10px\"><strong>Detalhes</strong>:<br/>\n"
  946. "O fluxo normal de trabalho no FlatCAM é o seguinte:</span></p>\n"
  947. "\n"
  948. "<ol>\n"
  949. "\t<li><span style=\"font-size:10px\">Ler/Importar um arquivo Gerber, "
  950. "Excellon, G-Code, DXF, Imagem Raster ou SVG no FlatCAM usando os menu&#39;s, "
  951. "barras de trabalho, teclas de atalho ou mesmo arrastando e soltando os "
  952. "arquivos na GUI.<br/>\n"
  953. "\t<br />\n"
  954. "\tVocê pode também ler um <strong>projeto FlatCAM</strong> clicando duas "
  955. "vezes no arquivo de projeto, arrastando soltando o arquivo na GUI do FlatCAM "
  956. "ou através dos links de menu/barra de ferramentas oferecidos dentro do "
  957. "aplicativo.</span><br />\n"
  958. "\t&nbsp;</li>\n"
  959. "\t<li><span style=\"font-size:10px\">Uma vez que um objeto está disponível "
  960. "na Aba Projeto, selecionando-o e então focando em <strong>ABA SELECIONADO</"
  961. "strong> (mais simples é clicar duas vezes no nome do objeto na aba Projeto), "
  962. "a <strong>ABA SELECIONADO</strong> será atualizada com as propriedades do "
  963. "objeto de acordo com o tipo: Gerber, Excellon, Geometria ou Trabalho CNC.<br/"
  964. ">\n"
  965. "\t<br />\n"
  966. "\tSe a seleção do objeto for feita na tela com um único clique, e a "
  967. "<strong>ABA SELECIONADO</strong> estiver em foco, novamente as propriedades "
  968. "do objeto serão exibidas na Aba Selecionado. Como alternativa, clicar duas "
  969. "vezes no objeto na tela trará a <strong>ABA SELECIONADO</strong> e a "
  970. "preencherá mesmo que esteja fora de foco.<br/>\n"
  971. "\t<br />\n"
  972. "\tVocê pode alterar os parâmetros nesta tela e o fluxo é assim:<br />\n"
  973. "\t<br />\n"
  974. "\t<strong>Objeto Gerber/Excellon</strong> -&gt; Alterar Parâmetros -&gt; "
  975. "Gerar Geometria -&gt;<strong> Objeto Geometria </strong>-&gt; Adicionar "
  976. "Ferramentas (alterar parâmetro na Aba Selecionado) -&gt; Gerar Trabalho CNC -"
  977. "&gt;<strong> Objeto Trabalho CNC </strong>-&gt; Verificar G-Code (com Editar "
  978. "Código CNC) e/ou acrescentar/pré-anexar ao G-Code (novamente, na "
  979. "<strong>ABA SELECIONADO)&nbsp;</strong>-&gt; Salvar G-Code</span></li>\n"
  980. "</ol>\n"
  981. "\n"
  982. "<p><span style=\"font-size:10px\">Uma lista de teclas de atalhos está "
  983. "disponível em <strong>Ajuda -&gt; Lista de Atalhos</strong>&nbsp;ou usando a "
  984. "sua tecla de atalho: <strng>F3</strong>.</span></p>\n"
  985. "\n"
  986. " "
  987. #: FlatCAMApp.py:8424
  988. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  989. msgstr ""
  990. "[WARNING_NOTCL] Falha na verificação da versão mais recente. Não foi "
  991. "possível conectar."
  992. #: FlatCAMApp.py:8431
  993. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  994. msgstr ""
  995. "[ERROR_NOTCL] Não foi possível analisar informações sobre a versão mais "
  996. "recente."
  997. #: FlatCAMApp.py:8441
  998. msgid "[success] FlatCAM is up to date!"
  999. msgstr "[success] O FlatCAM está atualizado!"
  1000. #: FlatCAMApp.py:8446
  1001. msgid "Newer Version Available"
  1002. msgstr "Nova Versão Disponível"
  1003. #: FlatCAMApp.py:8447
  1004. msgid ""
  1005. "There is a newer version of FlatCAM available for download:\n"
  1006. "\n"
  1007. msgstr ""
  1008. "Existe uma versão mais nova do FlatCAM disponível para download:\n"
  1009. "\n"
  1010. #: FlatCAMApp.py:8449
  1011. msgid "info"
  1012. msgstr "info"
  1013. #: FlatCAMApp.py:8468
  1014. msgid "[success] All plots disabled."
  1015. msgstr "[success] Todos os gráficos desabilitados."
  1016. #: FlatCAMApp.py:8474
  1017. msgid "[success] All non selected plots disabled."
  1018. msgstr "[success] Todos os gráficos não selecionados desabilitados."
  1019. #: FlatCAMApp.py:8480
  1020. msgid "[success] All plots enabled."
  1021. msgstr "[success] Todos os gráficos habilitados."
  1022. #: FlatCAMApp.py:8486
  1023. msgid "[success] Selected plots enabled..."
  1024. msgstr "[success] Gráficos selecionados habilitados ..."
  1025. #: FlatCAMApp.py:8494
  1026. msgid "[success] Selected plots disabled..."
  1027. msgstr "[success] Gráficos selecionados desabilitados..."
  1028. #: FlatCAMApp.py:8504 FlatCAMApp.py:8517
  1029. msgid "Working ..."
  1030. msgstr "Trabalhando ..."
  1031. #: FlatCAMApp.py:8551
  1032. msgid "Saving FlatCAM Project"
  1033. msgstr "Salvando o Projeto FlatCAM"
  1034. #: FlatCAMApp.py:8572 FlatCAMApp.py:8603
  1035. #, python-format
  1036. msgid "[success] Project saved to: %s"
  1037. msgstr "[success] Projeto salvo em: %s"
  1038. #: FlatCAMApp.py:8590
  1039. #, python-format
  1040. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1041. msgstr ""
  1042. "[ERROR_NOTCL] Falha ao verificar o arquivo do projeto: %s . Tente salvá-lo "
  1043. "novamente."
  1044. #: FlatCAMApp.py:8597
  1045. #, python-format
  1046. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1047. msgstr ""
  1048. "[ERROR_NOTCL] Falha ao analisar o arquivo de projeto salvo: %s . Tente salvá-"
  1049. "lo novamente."
  1050. #: FlatCAMApp.py:8605
  1051. #, python-format
  1052. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1053. msgstr ""
  1054. "[ERROR_NOTCL] Falha ao salvar o arquivo de projeto: %s . Tente salvá-lo "
  1055. "novamente."
  1056. #: FlatCAMObj.py:207
  1057. #, python-brace-format
  1058. msgid "[success] Name changed from {old} to {new}"
  1059. msgstr "[success] Nome alterado de {old} para {new}"
  1060. #: FlatCAMObj.py:553 FlatCAMObj.py:2038 FlatCAMObj.py:3305 FlatCAMObj.py:5490
  1061. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1062. msgstr "<span style=\"color:green;\"><b>Básico</b></span>"
  1063. #: FlatCAMObj.py:565 FlatCAMObj.py:2054 FlatCAMObj.py:3327 FlatCAMObj.py:5496
  1064. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1065. msgstr "<span style=\"color:red;\"><b>Avançado</b></span>"
  1066. #: FlatCAMObj.py:927 FlatCAMObj.py:982
  1067. #, python-format
  1068. msgid "[success] Isolation geometry created: %s"
  1069. msgstr "[success] Geometria de isolamento criada: %s"
  1070. #: FlatCAMObj.py:1161
  1071. msgid "Plotting Apertures"
  1072. msgstr "Mostrando Aberturas"
  1073. #: FlatCAMObj.py:1881 flatcamEditors/FlatCAMExcEditor.py:1368
  1074. msgid "Total Drills"
  1075. msgstr "Total de Furos"
  1076. #: FlatCAMObj.py:1907 flatcamEditors/FlatCAMExcEditor.py:1400
  1077. msgid "Total Slots"
  1078. msgstr "Total de Fendas"
  1079. #: FlatCAMObj.py:2110 FlatCAMObj.py:3379 FlatCAMObj.py:3679 FlatCAMObj.py:3874
  1080. #: FlatCAMObj.py:3887 FlatCAMObj.py:4004 FlatCAMObj.py:4421 FlatCAMObj.py:4659
  1081. #: FlatCAMObj.py:5072 flatcamEditors/FlatCAMExcEditor.py:1474
  1082. #: flatcamTools/ToolCalculators.py:304 flatcamTools/ToolCalculators.py:315
  1083. #: flatcamTools/ToolCalculators.py:327 flatcamTools/ToolCalculators.py:342
  1084. #: flatcamTools/ToolCalculators.py:355 flatcamTools/ToolCalculators.py:369
  1085. #: flatcamTools/ToolCalculators.py:380 flatcamTools/ToolCalculators.py:391
  1086. #: flatcamTools/ToolCalculators.py:402 flatcamTools/ToolFilm.py:241
  1087. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:481
  1088. #: flatcamTools/ToolNonCopperClear.py:553
  1089. #: flatcamTools/ToolNonCopperClear.py:630
  1090. #: flatcamTools/ToolNonCopperClear.py:647 flatcamTools/ToolPaint.py:537
  1091. #: flatcamTools/ToolPaint.py:609 flatcamTools/ToolPaint.py:746
  1092. #: flatcamTools/ToolPaint.py:846 flatcamTools/ToolPaint.py:1000
  1093. #: flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397
  1094. #: flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423
  1095. #: flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446
  1096. #: flatcamTools/ToolSolderPaste.py:754 flatcamTools/ToolSolderPaste.py:826
  1097. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1098. msgstr "[ERROR_NOTCL] Formato incorreto, use um número."
  1099. #: FlatCAMObj.py:2334 FlatCAMObj.py:2426 FlatCAMObj.py:2549
  1100. msgid ""
  1101. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1102. msgstr ""
  1103. "[ERROR_NOTCL] Selecione uma ou mais ferramentas da lista e tente novamente."
  1104. #: FlatCAMObj.py:2341
  1105. msgid ""
  1106. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1107. msgstr ""
  1108. "[ERROR_NOTCL] A ferramenta de fresagem para BROCAS é maior que o tamanho do "
  1109. "furo. Cancelado."
  1110. #: FlatCAMObj.py:2355 FlatCAMObj.py:2450 FlatCAMObj.py:2569
  1111. msgid "Tool_nr"
  1112. msgstr "Ferramenta_nr"
  1113. #: FlatCAMObj.py:2355 FlatCAMObj.py:2450 FlatCAMObj.py:2569
  1114. #: flatcamEditors/FlatCAMExcEditor.py:819
  1115. #: flatcamEditors/FlatCAMExcEditor.py:2020 flatcamGUI/ObjectUI.py:556
  1116. #: flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80
  1117. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1118. msgid "Diameter"
  1119. msgstr "Diâmetro"
  1120. #: FlatCAMObj.py:2355 FlatCAMObj.py:2450 FlatCAMObj.py:2569
  1121. msgid "Drills_Nr"
  1122. msgstr "Furo_Nr"
  1123. #: FlatCAMObj.py:2355 FlatCAMObj.py:2450 FlatCAMObj.py:2569
  1124. msgid "Slots_Nr"
  1125. msgstr "Fenda_Nr"
  1126. #: FlatCAMObj.py:2436
  1127. msgid ""
  1128. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1129. msgstr ""
  1130. "[ERROR_NOTCL] A ferramenta de fresagem para FENDAS é maior que o tamanho do "
  1131. "furo. Cancelado."
  1132. #: FlatCAMObj.py:2611 FlatCAMObj.py:4309 FlatCAMObj.py:4525 FlatCAMObj.py:4842
  1133. msgid ""
  1134. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1135. "options[\"z_pdepth\"]"
  1136. msgstr ""
  1137. "[ERROR_NOTCL] Formato de valor incorreto para self.defaults[\"z_pdepth\"] ou "
  1138. "self.options[\"z_pdepth\"]"
  1139. #: FlatCAMObj.py:2623 FlatCAMObj.py:4321 FlatCAMObj.py:4537 FlatCAMObj.py:4854
  1140. msgid ""
  1141. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1142. "self.options[\"feedrate_probe\"]"
  1143. msgstr ""
  1144. "[ERROR_NOTCL] Formato de valor incorreto para self.defaults[\"feedrate_probe"
  1145. "\"] ou self.options[\"feedrate_probe\"]"
  1146. #: FlatCAMObj.py:2655 FlatCAMObj.py:4730 FlatCAMObj.py:4735 FlatCAMObj.py:4885
  1147. msgid "Generating CNC Code"
  1148. msgstr "Gerando Código CNC"
  1149. #: FlatCAMObj.py:2681 FlatCAMObj.py:5031 camlib.py:5167 camlib.py:5626
  1150. #: camlib.py:5889
  1151. msgid ""
  1152. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1153. "format (x, y) \n"
  1154. "but now there is only one value, not two. "
  1155. msgstr ""
  1156. "[ERROR] O campo Toolchange X, Y em Editar -> Preferências tem que estar no "
  1157. "formato (x, y) \n"
  1158. "mas agora existe apenas um valor, não dois. "
  1159. #: FlatCAMObj.py:3001 FlatCAMObj.py:3930 FlatCAMObj.py:3931 FlatCAMObj.py:3940
  1160. msgid "Iso"
  1161. msgstr "Iso"
  1162. #: FlatCAMObj.py:3001 FlatCAMObj.py:3262 FlatCAMObj.py:3544
  1163. msgid "Rough"
  1164. msgstr "Rude"
  1165. #: FlatCAMObj.py:3001
  1166. msgid "Finish"
  1167. msgstr "Terminar"
  1168. #: FlatCAMObj.py:3298 flatcamGUI/FlatCAMGUI.py:530 flatcamGUI/FlatCAMGUI.py:729
  1169. #: flatcamGUI/FlatCAMGUI.py:1634 flatcamGUI/FlatCAMGUI.py:1972
  1170. #: flatcamGUI/ObjectUI.py:999
  1171. msgid "Copy"
  1172. msgstr "Copiar"
  1173. #: FlatCAMObj.py:3514
  1174. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1175. msgstr ""
  1176. "[ERROR_NOTCL] Por favor, insira o diâmetro da ferramenta desejada no formato "
  1177. "Flutuante."
  1178. #: FlatCAMObj.py:3589
  1179. msgid "[success] Tool added in Tool Table."
  1180. msgstr "[success] Ferramenta adicionada na Tabela de Ferramentas."
  1181. #: FlatCAMObj.py:3594
  1182. msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  1183. msgstr ""
  1184. "[ERROR_NOTCL] Ferramenta padrão adicionada. Formato de valor incorreto "
  1185. "inserido."
  1186. #: FlatCAMObj.py:3624 FlatCAMObj.py:3634
  1187. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1188. msgstr "[WARNING_NOTCL] Falhou. Selecione uma ferramenta para copiar."
  1189. #: FlatCAMObj.py:3663
  1190. msgid "[success] Tool was copied in Tool Table."
  1191. msgstr "[success] A ferramenta foi copiada na tabela de ferramentas."
  1192. #: FlatCAMObj.py:3696
  1193. msgid "[success] Tool was edited in Tool Table."
  1194. msgstr "[success] A ferramenta foi editada na Tabela de Ferramentas."
  1195. #: FlatCAMObj.py:3727 FlatCAMObj.py:3737
  1196. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1197. msgstr "[WARNING_NOTCL] Falhou. Selecione uma ferramenta para excluir."
  1198. #: FlatCAMObj.py:3761
  1199. msgid "[success] Tool was deleted in Tool Table."
  1200. msgstr "[success] A ferramenta foi eliminada da Tabela de Ferramentas."
  1201. #: FlatCAMObj.py:4190
  1202. #, python-format
  1203. msgid ""
  1204. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1205. msgstr ""
  1206. "[WARNING_NOTCL] Esta Geometria não pode ser processada porque é %s geometria."
  1207. #: FlatCAMObj.py:4207
  1208. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1209. msgstr "[ERROR_NOTCL] Valor inserido no formato errado. Use um número."
  1210. #: FlatCAMObj.py:4234
  1211. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1212. msgstr ""
  1213. "[ERROR_NOTCL] Falhou. Nenhuma ferramenta selecionada na tabela de "
  1214. "ferramentas ..."
  1215. #: FlatCAMObj.py:4272
  1216. #, python-format
  1217. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1218. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1219. #: FlatCAMObj.py:4430 FlatCAMObj.py:4668
  1220. msgid ""
  1221. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1222. "Add a Tool Offset or change the Offset Type."
  1223. msgstr ""
  1224. "[WARNING] Tool Offset é selecionado na Tabela de Ferramentas, mas nenhum "
  1225. "valor é fornecido. \n"
  1226. "Adicione um Offset de Ferramenta ou altere o Tipo de Deslocamento."
  1227. #: FlatCAMObj.py:4549 flatcamTools/ToolSolderPaste.py:1108
  1228. #: flatcamTools/ToolSolderPaste.py:1164
  1229. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1230. msgstr "[ERROR_NOTCL] Cancelado. Arquivo vazio, não tem geometria ..."
  1231. #: FlatCAMObj.py:4918 FlatCAMObj.py:4928 camlib.py:3348 camlib.py:3357
  1232. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1233. msgstr ""
  1234. "[ERROR_NOTCL] O fator de escala deve ser um número: inteiro ou flutuante."
  1235. #: FlatCAMObj.py:4966
  1236. msgid "[success] Geometry Scale done."
  1237. msgstr "[success] Redimensionamento de geometria feita."
  1238. #: FlatCAMObj.py:4983 camlib.py:3426
  1239. msgid ""
  1240. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1241. "one value in the Offset field."
  1242. msgstr ""
  1243. "[ERROR_NOTCL] Um par de valores (x,y) é necessário. Provavelmente você "
  1244. "digitou apenas um valor no campo Deslocamento."
  1245. #: FlatCAMObj.py:5003
  1246. msgid "[success] Geometry Offset done."
  1247. msgstr "[success] Deslocamento de Geometria feito."
  1248. #: FlatCAMObj.py:5558 FlatCAMObj.py:5563 flatcamTools/ToolSolderPaste.py:1364
  1249. msgid "Export Machine Code ..."
  1250. msgstr "Exportar Código da Máquina ..."
  1251. #: FlatCAMObj.py:5569 flatcamTools/ToolSolderPaste.py:1367
  1252. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1253. msgstr "[WARNING_NOTCL] Exportar código da máquina cancelado ..."
  1254. #: FlatCAMObj.py:5582
  1255. #, python-format
  1256. msgid "[success] Machine Code file saved to: %s"
  1257. msgstr "[success] Arquivo de código da máquina salvo em: %s"
  1258. #: FlatCAMObj.py:5604
  1259. #, python-format
  1260. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1261. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1262. #: FlatCAMObj.py:5721
  1263. #, python-format
  1264. msgid ""
  1265. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1266. "CNCJob object."
  1267. msgstr ""
  1268. "[WARNING_NOTCL] Este objeto Trabalho CNC não pode ser processado porque é um "
  1269. "objeto %s CNCJob."
  1270. #: FlatCAMObj.py:5774
  1271. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1272. msgstr "[ERROR_NOTCL] O G-Code não possui um código de unidade: G20 ou G21"
  1273. #: FlatCAMObj.py:5787
  1274. msgid ""
  1275. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1276. "empty."
  1277. msgstr ""
  1278. "[ERROR_NOTCL] Cancelado. O código personalizado do Toolchange está ativado, "
  1279. "mas está vazio."
  1280. #: FlatCAMObj.py:5794
  1281. msgid "[success] Toolchange G-code was replaced by a custom code."
  1282. msgstr ""
  1283. "[success] O G-Code do Toolchange foi substituído por um código personalizado."
  1284. #: FlatCAMObj.py:5809 flatcamTools/ToolSolderPaste.py:1393
  1285. msgid "[WARNING_NOTCL] No such file or directory"
  1286. msgstr "[WARNING_NOTCL] Nenhum arquivo ou diretório"
  1287. #: FlatCAMObj.py:5829 FlatCAMObj.py:5841
  1288. msgid ""
  1289. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1290. "'toolchange_custom'"
  1291. msgstr ""
  1292. "[WARNING_NOTCL] O arquivo do postprocessor usado deve ter em seu nome: "
  1293. "'toolchange_custom'"
  1294. #: FlatCAMObj.py:5847
  1295. msgid "[ERROR] There is no postprocessor file."
  1296. msgstr "[ERROR] Não há arquivo de pós-processador."
  1297. #: FlatCAMTranslation.py:86
  1298. msgid "The application will restart."
  1299. msgstr "O aplicativo reiniciará."
  1300. #: FlatCAMTranslation.py:87
  1301. #, python-format
  1302. msgid "Are you sure do you want to change the current language to %s?"
  1303. msgstr "Você tem certeza de que quer alterar o idioma para %s?"
  1304. #: FlatCAMTranslation.py:89
  1305. msgid "Apply Language ..."
  1306. msgstr "Aplicar o Idioma ..."
  1307. #: ObjectCollection.py:420
  1308. #, python-brace-format
  1309. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1310. msgstr "Objeto renomeado de <b>{old}</b> para <b>{new}</b>"
  1311. #: ObjectCollection.py:759
  1312. #, python-format
  1313. msgid "[ERROR] Cause of error: %s"
  1314. msgstr "[ERROR] Causa do erro: %s"
  1315. #: camlib.py:197
  1316. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1317. msgstr "[ERROR_NOTCL] self.solid_geometry não é nem BaseGeometry nem lista."
  1318. #: camlib.py:1391
  1319. msgid "[success] Object was mirrored ..."
  1320. msgstr "[success] Objeto foi espelhado ..."
  1321. #: camlib.py:1393
  1322. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1323. msgstr "[ERROR_NOTCL] Falha ao espelhar. Nenhum objeto selecionado"
  1324. #: camlib.py:1429
  1325. msgid "[success] Object was rotated ..."
  1326. msgstr "[success] Objeto foi rotacionado ..."
  1327. #: camlib.py:1431
  1328. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1329. msgstr "[ERROR_NOTCL] Falha ao girar. Nenhum objeto selecionado"
  1330. #: camlib.py:1465
  1331. msgid "[success] Object was skewed ..."
  1332. msgstr "[success] Objeto foi inclinado ..."
  1333. #: camlib.py:1467
  1334. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1335. msgstr "[ERROR_NOTCL] Falha ao inclinar. Nenhum objeto selecionado"
  1336. #: camlib.py:2728 camlib.py:2813
  1337. #, python-format
  1338. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1339. msgstr "[WARNING] Coordenadas faltando, linha ignorada: %s"
  1340. #: camlib.py:2729 camlib.py:2814
  1341. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1342. msgstr ""
  1343. "[WARNING_NOTCL] O arquivo GERBER pode estar CORROMPIDO. Verifique o "
  1344. "arquivo !!!"
  1345. #: camlib.py:2778
  1346. #, python-format
  1347. msgid ""
  1348. "[ERROR] Region does not have enough points. File will be processed but there "
  1349. "are parser errors. Line number: %s"
  1350. msgstr ""
  1351. "[ERROR] A região não possui pontos suficientes. O arquivo será processado, "
  1352. "mas há erros de analisador. Número da linha: %s"
  1353. #: camlib.py:3170
  1354. #, python-format
  1355. msgid ""
  1356. "[ERROR]Gerber Parser ERROR.\n"
  1357. "%s:"
  1358. msgstr ""
  1359. "[ERROR]ERRO na análise do Gerber.\n"
  1360. "%s:"
  1361. #: camlib.py:3394
  1362. msgid "[success] Gerber Scale done."
  1363. msgstr "[success] Redimensionamento Gerber pronto."
  1364. #: camlib.py:3459
  1365. msgid "[success] Gerber Offset done."
  1366. msgstr "[success] Deslocamento Gerber pronto."
  1367. #: camlib.py:3513
  1368. msgid "[success] Gerber Mirror done."
  1369. msgstr "[success] Espelhamento Gerber pronto."
  1370. #: camlib.py:3559
  1371. msgid "[success] Gerber Skew done."
  1372. msgstr "[success] Inclinação Gerber pronta."
  1373. #: camlib.py:3597
  1374. msgid "[success] Gerber Rotate done."
  1375. msgstr "[success] Rotação Gerber pronta."
  1376. #: camlib.py:3878
  1377. #, python-format
  1378. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1379. msgstr "[ERROR_NOTCL] Esta é a marca G-CODE: %s"
  1380. #: camlib.py:3993
  1381. #, python-format
  1382. msgid ""
  1383. "[WARNING] No tool diameter info's. See shell.\n"
  1384. "A tool change event: T%s was found but the Excellon file have no "
  1385. "informations regarding the tool diameters therefore the application will try "
  1386. "to load it by using some 'fake' diameters.\n"
  1387. "The user needs to edit the resulting Excellon object and change the "
  1388. "diameters to reflect the real diameters."
  1389. msgstr ""
  1390. "[WARNING] Nenhuma informação de diâmetro de ferramenta. Veja shell. (linha "
  1391. "de comando)\n"
  1392. "Um evento de troca de ferramenta: T%s foi encontrado mas o arquivo Excellon "
  1393. "não possui\n"
  1394. "informações sobre os diâmetros da ferramenta. O aplicativo tentará carregá-"
  1395. "lo usando\n"
  1396. "alguns diâmetros 'falsos'. O usuário precisa editar o objeto Excellon "
  1397. "resultante e\n"
  1398. "alterar os diâmetros para os valores reais."
  1399. #: camlib.py:4458
  1400. #, python-brace-format
  1401. msgid ""
  1402. "[ERROR] Excellon Parser error.\n"
  1403. "Parsing Failed. Line {l_nr}: {line}\n"
  1404. msgstr ""
  1405. "[ERROR] Erro do Analisador Excellon. \n"
  1406. "Análise falhou. Linha {l_nr}: {line} \n"
  1407. #: camlib.py:4537
  1408. msgid ""
  1409. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1410. "not having a tool associated.\n"
  1411. "Check the resulting GCode."
  1412. msgstr ""
  1413. "[WARNING] Excellon.create_geometry () -> um furo foi ignorado por não ter "
  1414. "uma ferramenta associada. \n"
  1415. "Verifique o G-Code resultante."
  1416. #: camlib.py:5076
  1417. #, python-format
  1418. msgid "[ERROR] There is no such parameter: %s"
  1419. msgstr "[ERROR] Não existe esse parâmetro: %s"
  1420. #: camlib.py:5146
  1421. msgid ""
  1422. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1423. "drill into material.\n"
  1424. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1425. "therefore the app will convert the value to negative. Check the resulting "
  1426. "CNC code (Gcode etc)."
  1427. msgstr ""
  1428. "[WARNING] O parâmetro Cut Z está positivo. Uma vez que é o valor de "
  1429. "profundidade para cortar o material, \n"
  1430. "o parâmetro Cut Z precisa ter um valor negativo. Supondo que seja um erro de "
  1431. "digitação, o aplicativo converterá o valor para negativo.Verifique o código "
  1432. "CNC resultante (G-Code, etc.)."
  1433. #: camlib.py:5153 camlib.py:5649 camlib.py:5912
  1434. #, python-format
  1435. msgid ""
  1436. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1437. msgstr ""
  1438. "[WARNING] O parâmetro Cut Z é zero. Não haverá corte, ignorando arquivo %s"
  1439. #: camlib.py:5382 camlib.py:5479 camlib.py:5537
  1440. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1441. msgstr "[ERROR_NOTCL] O arquivo Excellon carregado não tem brocas ..."
  1442. #: camlib.py:5484
  1443. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1444. msgstr "[ERROR_NOTCL] Tipo de otimização incorreto selecionado."
  1445. #: camlib.py:5637 camlib.py:5900
  1446. msgid ""
  1447. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1448. "combinations of other parameters."
  1449. msgstr ""
  1450. "O parâmetro [ERROR_NOTCL] Cut_Z está vazio ou é zero. O mais provável é uma "
  1451. "combinação ruim de outros parâmetros."
  1452. #: camlib.py:5642 camlib.py:5905
  1453. msgid ""
  1454. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1455. "cut into material.\n"
  1456. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1457. "therefore the app will convert the value to negative.Check the resulting CNC "
  1458. "code (Gcode etc)."
  1459. msgstr ""
  1460. "[WARNING] O parâmetro Cut Z está positivo. Uma vez que é o valor de "
  1461. "profundidade para cortar o material, \n"
  1462. "o parâmetro Cut Z precisa ter um valor negativo. Supondo que seja um erro de "
  1463. "digitação, o aplicativo converterá o valor para negativo.Verifique o código "
  1464. "CNC resultante (G-Code, etc.)."
  1465. #: camlib.py:5654 camlib.py:5917
  1466. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1467. msgstr "[ERROR_NOTCL] O parâmetro Travel Z é Nulo ou zero."
  1468. #: camlib.py:5658 camlib.py:5921
  1469. msgid ""
  1470. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1471. "to travel between cuts.\n"
  1472. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1473. "therefore the app will convert the value to positive.Check the resulting CNC "
  1474. "code (Gcode etc)."
  1475. msgstr ""
  1476. "[WARNING] O parâmetro Travel Z tem valor negativo. Este é o valor da altura "
  1477. "para viajar entre os cortes, \n"
  1478. "e precisa ter um valor positivo. Supondo que seja um erro de digitação, o "
  1479. "aplicativo converterá o valor para positivo.Verifique o código CNC "
  1480. "resultante (G-Code, etc.)."
  1481. #: camlib.py:5665 camlib.py:5928
  1482. #, python-format
  1483. msgid ""
  1484. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1485. msgstr ""
  1486. "[WARNING] O parâmetro Z Travel é zero. Isso é perigoso, ignorando arquivo %s"
  1487. #: camlib.py:5795
  1488. #, python-format
  1489. msgid "[ERROR]Expected a Geometry, got %s"
  1490. msgstr "[ERROR] Esperada uma geometria, recebido %s"
  1491. #: camlib.py:5801
  1492. msgid ""
  1493. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1494. "solid_geometry."
  1495. msgstr ""
  1496. "[ERROR_NOTCL] Tentando gerar um trabalho CNC a partir de um objeto Geometria "
  1497. "sem solid_geometry."
  1498. #: camlib.py:5840
  1499. msgid ""
  1500. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1501. "current_geometry.\n"
  1502. "Raise the value (in module) and try again."
  1503. msgstr ""
  1504. "[ERROR_NOTCL] O valor de Deslocamento da Ferramenta é muito negativo para "
  1505. "usar na current_geometry.\n"
  1506. "Altere o valor e tente novamente."
  1507. #: camlib.py:6052
  1508. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1509. msgstr ""
  1510. "[ERROR_NOTCL] Não há dados da ferramenta na geometria da Pasta de Solda."
  1511. #: flatcamEditors/FlatCAMExcEditor.py:37 flatcamEditors/FlatCAMExcEditor.py:143
  1512. #: flatcamEditors/FlatCAMGrbEditor.py:229
  1513. #: flatcamEditors/FlatCAMGrbEditor.py:234
  1514. msgid "Click to place ..."
  1515. msgstr "Clique para colocar ..."
  1516. #: flatcamEditors/FlatCAMExcEditor.py:46
  1517. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1518. msgstr ""
  1519. "[WARNING_NOTCL] Para adicionar uma broca, primeiro selecione uma ferramenta"
  1520. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:165
  1521. #: flatcamEditors/FlatCAMExcEditor.py:450
  1522. #: flatcamEditors/FlatCAMExcEditor.py:475
  1523. #: flatcamEditors/FlatCAMGrbEditor.py:451
  1524. #: flatcamEditors/FlatCAMGrbEditor.py:1818
  1525. #: flatcamEditors/FlatCAMGrbEditor.py:1846
  1526. msgid "Click on target location ..."
  1527. msgstr "Clique no local de destino ..."
  1528. #: flatcamEditors/FlatCAMExcEditor.py:108
  1529. msgid "[success] Done. Drill added."
  1530. msgstr "[success] Feito. Broca adicionada."
  1531. #: flatcamEditors/FlatCAMExcEditor.py:150
  1532. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1533. msgstr ""
  1534. "[WARNING_NOTCL] Para adicionar um Matriz de Brocas, primeiro selecione uma "
  1535. "ferramenta na Tabela de Ferramentas"
  1536. #: flatcamEditors/FlatCAMExcEditor.py:182
  1537. msgid "Click on the Drill Circular Array Start position"
  1538. msgstr "Clique na posição inicial Matriz Circular de Brocas"
  1539. #: flatcamEditors/FlatCAMExcEditor.py:204
  1540. #: flatcamEditors/FlatCAMGrbEditor.py:494
  1541. msgid ""
  1542. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1543. "separator."
  1544. msgstr ""
  1545. "[ERROR_NOTCL] O valor não é flutuante. Verifique uma vírgula em vez do ponto "
  1546. "no separador decimal."
  1547. #: flatcamEditors/FlatCAMExcEditor.py:207
  1548. #, python-format
  1549. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1550. msgstr ""
  1551. "[ERROR_NOTCL] O valor foi digitado incorretamente. Verifique o valor. %s"
  1552. #: flatcamEditors/FlatCAMExcEditor.py:305
  1553. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1554. msgstr ""
  1555. "[WARNING_NOTCL] Brocas demais para o ângulo de espaçamento selecionado."
  1556. #: flatcamEditors/FlatCAMExcEditor.py:322
  1557. msgid "[success] Done. Drill Array added."
  1558. msgstr "[success] Matriz de Brocas adicionada."
  1559. #: flatcamEditors/FlatCAMExcEditor.py:333
  1560. msgid "Click on the Drill(s) to resize ..."
  1561. msgstr "Clique na(s) Broca(s) para redimensionar ..."
  1562. #: flatcamEditors/FlatCAMExcEditor.py:354
  1563. msgid ""
  1564. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1565. msgstr ""
  1566. "[ERROR_NOTCL] Redimensionar broca(s) falhou. Por favor insira um diâmetro "
  1567. "para redimensionar."
  1568. #: flatcamEditors/FlatCAMExcEditor.py:424
  1569. msgid "[success] Done. Drill Resize completed."
  1570. msgstr "[success] Feito. Redimensionamento de broca concluído."
  1571. #: flatcamEditors/FlatCAMExcEditor.py:427
  1572. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1573. msgstr ""
  1574. "[WARNING_NOTCL] Cancelado. Nenhuma broca selecionada para redimensionar ..."
  1575. #: flatcamEditors/FlatCAMExcEditor.py:452
  1576. #: flatcamEditors/FlatCAMGrbEditor.py:1820
  1577. msgid "Click on reference location ..."
  1578. msgstr "Clique no local de referência ..."
  1579. #: flatcamEditors/FlatCAMExcEditor.py:507
  1580. msgid "[success] Done. Drill(s) Move completed."
  1581. msgstr "[success] Feito. Movimento da Broca realizado."
  1582. #: flatcamEditors/FlatCAMExcEditor.py:592
  1583. msgid "[success] Done. Drill(s) copied."
  1584. msgstr "[success] Feito. Drill(s) copiado."
  1585. #: flatcamEditors/FlatCAMExcEditor.py:792 flatcamGUI/FlatCAMGUI.py:5038
  1586. msgid "Excellon Editor"
  1587. msgstr "Editor Excellon"
  1588. #: flatcamEditors/FlatCAMExcEditor.py:799
  1589. #: flatcamEditors/FlatCAMGrbEditor.py:2308
  1590. msgid "Name:"
  1591. msgstr "Nome:"
  1592. #: flatcamEditors/FlatCAMExcEditor.py:805 flatcamTools/ToolNonCopperClear.py:72
  1593. #: flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1594. msgid "Tools Table"
  1595. msgstr "Tabela de Ferramentas"
  1596. #: flatcamEditors/FlatCAMExcEditor.py:807 flatcamGUI/ObjectUI.py:538
  1597. msgid ""
  1598. "Tools in this Excellon object\n"
  1599. "when are used for drilling."
  1600. msgstr ""
  1601. "Ferramentas neste objeto Excellon \n"
  1602. "quando são usadas para perfuração."
  1603. #: flatcamEditors/FlatCAMExcEditor.py:827
  1604. msgid "Add/Delete Tool"
  1605. msgstr "Adicionar/Excluir Ferramenta"
  1606. #: flatcamEditors/FlatCAMExcEditor.py:829
  1607. msgid ""
  1608. "Add/Delete a tool to the tool list\n"
  1609. "for this Excellon object."
  1610. msgstr ""
  1611. "Adicionar/Excluir uma ferramenta para a lista de ferramentas \\ npara este "
  1612. "objeto Excellon."
  1613. #: flatcamEditors/FlatCAMExcEditor.py:837 flatcamTools/ToolCutOut.py:78
  1614. msgid "Tool Dia:"
  1615. msgstr "Diâmetro da Ferramenta:"
  1616. #: flatcamEditors/FlatCAMExcEditor.py:839 flatcamGUI/FlatCAMGUI.py:5067
  1617. #: flatcamGUI/ObjectUI.py:978
  1618. msgid "Diameter for the new tool"
  1619. msgstr "Diâmetro para a nova ferramenta"
  1620. #: flatcamEditors/FlatCAMExcEditor.py:847
  1621. msgid "Add Tool"
  1622. msgstr "Adicionar Ferramenta"
  1623. #: flatcamEditors/FlatCAMExcEditor.py:849
  1624. msgid ""
  1625. "Add a new tool to the tool list\n"
  1626. "with the diameter specified above."
  1627. msgstr ""
  1628. "Adicione uma nova ferramenta à lista de ferramentas \n"
  1629. "com o diâmetro especificado acima."
  1630. #: flatcamEditors/FlatCAMExcEditor.py:861
  1631. msgid "Delete Tool"
  1632. msgstr "Excluir ferramenta"
  1633. #: flatcamEditors/FlatCAMExcEditor.py:863
  1634. msgid ""
  1635. "Delete a tool in the tool list\n"
  1636. "by selecting a row in the tool table."
  1637. msgstr ""
  1638. "Excluir uma ferramenta na lista de ferramentas selecionando uma linha na "
  1639. "tabela de ferramentas."
  1640. #: flatcamEditors/FlatCAMExcEditor.py:881
  1641. msgid "Resize Drill(s)"
  1642. msgstr "Redimensionar broca(s)"
  1643. #: flatcamEditors/FlatCAMExcEditor.py:883
  1644. msgid "Resize a drill or a selection of drills."
  1645. msgstr "Redimensione uma broca ou uma seleção de brocas."
  1646. #: flatcamEditors/FlatCAMExcEditor.py:890
  1647. msgid "Resize Dia:"
  1648. msgstr "Redimensionar Dia:"
  1649. #: flatcamEditors/FlatCAMExcEditor.py:892
  1650. msgid "Diameter to resize to."
  1651. msgstr "Diâmetro para redimensionar para."
  1652. #: flatcamEditors/FlatCAMExcEditor.py:900
  1653. msgid "Resize"
  1654. msgstr "Redimensionar"
  1655. #: flatcamEditors/FlatCAMExcEditor.py:902
  1656. msgid "Resize drill(s)"
  1657. msgstr "Redimensionar broca(s)"
  1658. #: flatcamEditors/FlatCAMExcEditor.py:924 flatcamGUI/FlatCAMGUI.py:1631
  1659. msgid "Add Drill Array"
  1660. msgstr "Adicionar Matriz de Brocas"
  1661. #: flatcamEditors/FlatCAMExcEditor.py:926
  1662. msgid "Add an array of drills (linear or circular array)"
  1663. msgstr "Adicione uma matriz de brocas (matriz linear ou circular)"
  1664. #: flatcamEditors/FlatCAMExcEditor.py:932
  1665. msgid ""
  1666. "Select the type of drills array to create.\n"
  1667. "It can be Linear X(Y) or Circular"
  1668. msgstr ""
  1669. "Selecione o tipo de matriz de brocas para criar.\n"
  1670. "Pode ser Linear X(Y) ou Circular"
  1671. #: flatcamEditors/FlatCAMExcEditor.py:935
  1672. #: flatcamEditors/FlatCAMGrbEditor.py:2595
  1673. msgid "Linear"
  1674. msgstr "Linear"
  1675. #: flatcamEditors/FlatCAMExcEditor.py:936
  1676. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  1677. msgid "Circular"
  1678. msgstr "Circular"
  1679. #: flatcamEditors/FlatCAMExcEditor.py:944 flatcamGUI/FlatCAMGUI.py:5077
  1680. msgid "Nr of drills:"
  1681. msgstr "Nº de brocas:"
  1682. #: flatcamEditors/FlatCAMExcEditor.py:946 flatcamGUI/FlatCAMGUI.py:5079
  1683. msgid "Specify how many drills to be in the array."
  1684. msgstr "Especifique quantas brocas devem estar na matriz."
  1685. #: flatcamEditors/FlatCAMExcEditor.py:964
  1686. #: flatcamEditors/FlatCAMExcEditor.py:1010
  1687. #: flatcamEditors/FlatCAMGrbEditor.py:2622
  1688. #: flatcamEditors/FlatCAMGrbEditor.py:2667
  1689. msgid "Direction:"
  1690. msgstr "Direção:"
  1691. #: flatcamEditors/FlatCAMExcEditor.py:966
  1692. #: flatcamEditors/FlatCAMGrbEditor.py:2624 flatcamGUI/FlatCAMGUI.py:5094
  1693. msgid ""
  1694. "Direction on which the linear array is oriented:\n"
  1695. "- 'X' - horizontal axis \n"
  1696. "- 'Y' - vertical axis or \n"
  1697. "- 'Angle' - a custom angle for the array inclination"
  1698. msgstr ""
  1699. "Direção na qual a matriz linear é orientada: \n"
  1700. "- 'X' - eixo horizontal \n"
  1701. "- 'Y' - eixo vertical ou \n"
  1702. "- 'Ângulo' - um ângulo personalizado para a inclinação da matriz"
  1703. #: flatcamEditors/FlatCAMExcEditor.py:973
  1704. #: flatcamEditors/FlatCAMGrbEditor.py:2631 flatcamGUI/FlatCAMGUI.py:5100
  1705. msgid "X"
  1706. msgstr "X"
  1707. #: flatcamEditors/FlatCAMExcEditor.py:974
  1708. #: flatcamEditors/FlatCAMGrbEditor.py:2632 flatcamGUI/FlatCAMGUI.py:5101
  1709. msgid "Y"
  1710. msgstr "Y"
  1711. #: flatcamEditors/FlatCAMExcEditor.py:975
  1712. #: flatcamEditors/FlatCAMGrbEditor.py:2633 flatcamGUI/FlatCAMGUI.py:5102
  1713. msgid "Angle"
  1714. msgstr "Ângulo"
  1715. #: flatcamEditors/FlatCAMExcEditor.py:979
  1716. #: flatcamEditors/FlatCAMGrbEditor.py:2637 flatcamGUI/FlatCAMGUI.py:5108
  1717. msgid "Pitch:"
  1718. msgstr "Passo:"
  1719. #: flatcamEditors/FlatCAMExcEditor.py:981
  1720. #: flatcamEditors/FlatCAMGrbEditor.py:2639 flatcamGUI/FlatCAMGUI.py:5110
  1721. msgid "Pitch = Distance between elements of the array."
  1722. msgstr "Passo = Distância entre os elementos da matriz."
  1723. #: flatcamEditors/FlatCAMExcEditor.py:989
  1724. #: flatcamEditors/FlatCAMExcEditor.py:1024
  1725. #: flatcamEditors/FlatCAMGeoEditor.py:665
  1726. #: flatcamEditors/FlatCAMGrbEditor.py:2646
  1727. #: flatcamEditors/FlatCAMGrbEditor.py:2682
  1728. #: flatcamEditors/FlatCAMGrbEditor.py:4743 flatcamGUI/FlatCAMGUI.py:5119
  1729. #: flatcamTools/ToolTransform.py:68
  1730. msgid "Angle:"
  1731. msgstr "Ângulo:"
  1732. #: flatcamEditors/FlatCAMExcEditor.py:991
  1733. #: flatcamEditors/FlatCAMGrbEditor.py:2648
  1734. msgid ""
  1735. "Angle at which the linear array is placed.\n"
  1736. "The precision is of max 2 decimals.\n"
  1737. "Min value is: -359.99 degrees.\n"
  1738. "Max value is: 360.00 degrees."
  1739. msgstr ""
  1740. "Ângulo no qual a matriz linear é colocada. \n"
  1741. "A precisão é de no máximo 2 decimais. \n"
  1742. "O valor mínimo é: -359.99 graus. \n"
  1743. "O valor máximo é: 360,00 graus."
  1744. #: flatcamEditors/FlatCAMExcEditor.py:1012
  1745. #: flatcamEditors/FlatCAMGrbEditor.py:2669
  1746. msgid ""
  1747. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1748. "clockwise."
  1749. msgstr ""
  1750. "Direção para matriz circular. Pode ser CW = sentido horário ou CCW = sentido "
  1751. "anti-horário."
  1752. #: flatcamEditors/FlatCAMExcEditor.py:1020
  1753. #: flatcamEditors/FlatCAMGrbEditor.py:2677 flatcamGUI/FlatCAMGUI.py:4703
  1754. #: flatcamGUI/FlatCAMGUI.py:5138 flatcamGUI/FlatCAMGUI.py:5327
  1755. msgid "CW"
  1756. msgstr ""
  1757. #: flatcamEditors/FlatCAMExcEditor.py:1021
  1758. #: flatcamEditors/FlatCAMGrbEditor.py:2678 flatcamGUI/FlatCAMGUI.py:4704
  1759. #: flatcamGUI/FlatCAMGUI.py:5139 flatcamGUI/FlatCAMGUI.py:5328
  1760. msgid "CCW"
  1761. msgstr ""
  1762. #: flatcamEditors/FlatCAMExcEditor.py:1026
  1763. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:5121
  1764. #: flatcamGUI/FlatCAMGUI.py:5147
  1765. msgid "Angle at which each element in circular array is placed."
  1766. msgstr "Ângulo no qual cada elemento na matriz circular é colocado."
  1767. #: flatcamEditors/FlatCAMExcEditor.py:1487
  1768. msgid ""
  1769. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1770. "Save and reedit Excellon if you need to add this tool. "
  1771. msgstr ""
  1772. "[WARNING_NOTCL] Ferramenta já na lista de ferramentas original ou atual. \n"
  1773. "Salve e reexiba Excellon se precisar adicionar essa ferramenta. "
  1774. #: flatcamEditors/FlatCAMExcEditor.py:1496 flatcamGUI/FlatCAMGUI.py:3027
  1775. #, python-brace-format
  1776. msgid "[success] Added new tool with dia: {dia} {units}"
  1777. msgstr "[success] Adicionada nova ferramenta com dia: {dia} {units}"
  1778. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1779. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1780. msgstr "[WARNING_NOTCL] Selecione uma ferramenta na Tabela de Ferramentas"
  1781. #: flatcamEditors/FlatCAMExcEditor.py:1560
  1782. #, python-brace-format
  1783. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1784. msgstr "[success] Ferramenta excluída com dia: {del_dia} {units}"
  1785. #: flatcamEditors/FlatCAMExcEditor.py:2074
  1786. msgid ""
  1787. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1788. "creation."
  1789. msgstr ""
  1790. "[ERROR_NOTCL] Não há definições de ferramentas no arquivo. Abortando a "
  1791. "criação do Excellon."
  1792. #: flatcamEditors/FlatCAMExcEditor.py:2083
  1793. msgid "Creating Excellon."
  1794. msgstr "Criando Excellon."
  1795. #: flatcamEditors/FlatCAMExcEditor.py:2092
  1796. msgid "[success] Excellon editing finished."
  1797. msgstr "[success] Edição de Excellon terminada."
  1798. #: flatcamEditors/FlatCAMExcEditor.py:2109
  1799. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1800. msgstr "[WARNING_NOTCL] Cancelado. Não há ferramenta/broca selecionada"
  1801. #: flatcamEditors/FlatCAMExcEditor.py:2637
  1802. msgid "[success] Done. Drill(s) deleted."
  1803. msgstr "[success] Feito. Brocas(s) excluída(s)."
  1804. #: flatcamEditors/FlatCAMExcEditor.py:2705
  1805. #: flatcamEditors/FlatCAMGrbEditor.py:4461
  1806. msgid "Click on the circular array Center position"
  1807. msgstr "Clique na posição central da matriz circular"
  1808. #: flatcamEditors/FlatCAMGeoEditor.py:80
  1809. #: flatcamEditors/FlatCAMGrbEditor.py:2460
  1810. msgid "Buffer distance:"
  1811. msgstr "Distância do buffer:"
  1812. #: flatcamEditors/FlatCAMGeoEditor.py:81
  1813. #: flatcamEditors/FlatCAMGrbEditor.py:2461
  1814. msgid "Buffer corner:"
  1815. msgstr "Canto do buffer:"
  1816. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1817. msgid ""
  1818. "There are 3 types of corners:\n"
  1819. " - 'Round': the corner is rounded for exterior buffer.\n"
  1820. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1821. " - 'Beveled:' the corner is a line that directly connects the features "
  1822. "meeting in the corner"
  1823. msgstr ""
  1824. "Existem 3 tipos de cantos: \n"
  1825. " - 'Round': o canto é arredondado para buffer externo. \n"
  1826. " - 'Square:' o canto é encontrado em um ângulo agudo para buffer externo. \n"
  1827. " - 'Beveled:' o canto é uma linha que conecta diretamente os recursos "
  1828. "encontrados no canto"
  1829. #: flatcamEditors/FlatCAMGeoEditor.py:89
  1830. #: flatcamEditors/FlatCAMGrbEditor.py:2469
  1831. msgid "Round"
  1832. msgstr "Round"
  1833. #: flatcamEditors/FlatCAMGeoEditor.py:90
  1834. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  1835. msgid "Square"
  1836. msgstr "Square"
  1837. #: flatcamEditors/FlatCAMGeoEditor.py:91
  1838. #: flatcamEditors/FlatCAMGrbEditor.py:2471
  1839. msgid "Beveled"
  1840. msgstr "Beveled"
  1841. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1842. msgid "Buffer Interior"
  1843. msgstr "Buffer Interior"
  1844. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1845. msgid "Buffer Exterior"
  1846. msgstr "Buffer Exterior"
  1847. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1848. msgid "Full Buffer"
  1849. msgstr "Buffer Completo"
  1850. #: flatcamEditors/FlatCAMGeoEditor.py:127
  1851. #: flatcamEditors/FlatCAMGeoEditor.py:2682
  1852. msgid "Buffer Tool"
  1853. msgstr "Ferramenta Buffer"
  1854. #: flatcamEditors/FlatCAMGeoEditor.py:138
  1855. #: flatcamEditors/FlatCAMGeoEditor.py:155
  1856. #: flatcamEditors/FlatCAMGeoEditor.py:172
  1857. #: flatcamEditors/FlatCAMGeoEditor.py:2700
  1858. #: flatcamEditors/FlatCAMGeoEditor.py:2726
  1859. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  1860. #: flatcamEditors/FlatCAMGrbEditor.py:4513
  1861. msgid ""
  1862. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  1863. "retry."
  1864. msgstr ""
  1865. "[WARNING_NOTCL] O valor da distância do buffer está ausente ou em formato "
  1866. "incorreto. Altere e tente novamente."
  1867. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1868. msgid "Text Tool"
  1869. msgstr "Ferramenta de Texto"
  1870. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:810
  1871. msgid "Tool"
  1872. msgstr "Ferramenta"
  1873. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4084
  1874. #: flatcamGUI/FlatCAMGUI.py:5193 flatcamGUI/FlatCAMGUI.py:5627
  1875. #: flatcamGUI/FlatCAMGUI.py:5904 flatcamGUI/FlatCAMGUI.py:6044
  1876. #: flatcamGUI/ObjectUI.py:260
  1877. msgid "Tool dia:"
  1878. msgstr "Diâmetro da Ferramenta:"
  1879. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6046
  1880. msgid ""
  1881. "Diameter of the tool to\n"
  1882. "be used in the operation."
  1883. msgstr ""
  1884. "Diâmetro da ferramenta para \n"
  1885. "ser usada na operação."
  1886. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5810
  1887. #: flatcamGUI/FlatCAMGUI.py:6055 flatcamTools/ToolNonCopperClear.py:165
  1888. #: flatcamTools/ToolPaint.py:160
  1889. msgid "Overlap Rate:"
  1890. msgstr "Taxa de Sobreposição:"
  1891. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1892. #, python-format
  1893. msgid ""
  1894. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1895. "Example:\n"
  1896. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1897. "\n"
  1898. "Adjust the value starting with lower values\n"
  1899. "and increasing it if areas that should be painted are still \n"
  1900. "not painted.\n"
  1901. "Lower values = faster processing, faster execution on PCB.\n"
  1902. "Higher values = slow processing and slow execution on CNC\n"
  1903. "due of too many paths."
  1904. msgstr ""
  1905. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  1906. "ferramenta.\n"
  1907. "Exemplo:\n"
  1908. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da "
  1909. "ferramenta.\n"
  1910. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  1911. "deveria ser pintada não foi pintada.\n"
  1912. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  1913. "Valores maiores = processamento lento e execução lenta no CNC \n"
  1914. " devido ao número de caminhos."
  1915. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5826
  1916. #: flatcamGUI/FlatCAMGUI.py:5912 flatcamGUI/FlatCAMGUI.py:6065
  1917. #: flatcamTools/ToolCutOut.py:87 flatcamTools/ToolNonCopperClear.py:181
  1918. #: flatcamTools/ToolPaint.py:177
  1919. msgid "Margin:"
  1920. msgstr "Margem:"
  1921. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6067
  1922. #: flatcamTools/ToolPaint.py:179
  1923. msgid ""
  1924. "Distance by which to avoid\n"
  1925. "the edges of the polygon to\n"
  1926. "be painted."
  1927. msgstr ""
  1928. "Distância pela qual evitar \n"
  1929. "as bordas do polígono para \n"
  1930. "ser pintado."
  1931. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5835
  1932. #: flatcamGUI/FlatCAMGUI.py:6076 flatcamTools/ToolNonCopperClear.py:190
  1933. #: flatcamTools/ToolPaint.py:188
  1934. msgid "Method:"
  1935. msgstr "Método:"
  1936. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6078
  1937. msgid ""
  1938. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  1939. "<BR><B>Seed-based</B>: Outwards from seed."
  1940. msgstr ""
  1941. "Algoritmo para pintar o polígono: <BR><B>Padrão</B>: Passo fixo para dentro."
  1942. "<BR><B>Baseado em semente</B>: para fora da semente."
  1943. #: flatcamEditors/FlatCAMGeoEditor.py:480 flatcamGUI/FlatCAMGUI.py:5844
  1944. #: flatcamGUI/FlatCAMGUI.py:6084 flatcamTools/ToolNonCopperClear.py:199
  1945. #: flatcamTools/ToolPaint.py:197
  1946. msgid "Standard"
  1947. msgstr "Padrão"
  1948. #: flatcamEditors/FlatCAMGeoEditor.py:481 flatcamGUI/FlatCAMGUI.py:5845
  1949. #: flatcamGUI/FlatCAMGUI.py:6085 flatcamTools/ToolNonCopperClear.py:200
  1950. #: flatcamTools/ToolPaint.py:198
  1951. msgid "Seed-based"
  1952. msgstr "Baseado em semente"
  1953. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:5846
  1954. #: flatcamGUI/FlatCAMGUI.py:6086 flatcamTools/ToolNonCopperClear.py:201
  1955. #: flatcamTools/ToolPaint.py:199
  1956. msgid "Straight lines"
  1957. msgstr "Linhas retas"
  1958. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5851
  1959. #: flatcamGUI/FlatCAMGUI.py:6091 flatcamTools/ToolNonCopperClear.py:206
  1960. #: flatcamTools/ToolPaint.py:204
  1961. msgid "Connect:"
  1962. msgstr "Conectar:"
  1963. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5853
  1964. #: flatcamGUI/FlatCAMGUI.py:6093 flatcamTools/ToolNonCopperClear.py:208
  1965. #: flatcamTools/ToolPaint.py:206
  1966. msgid ""
  1967. "Draw lines between resulting\n"
  1968. "segments to minimize tool lifts."
  1969. msgstr ""
  1970. "Desenhe linhas entre os \n"
  1971. "segmentos resultantes para minimizar as elevações de ferramentas."
  1972. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5860
  1973. #: flatcamGUI/FlatCAMGUI.py:6101 flatcamTools/ToolNonCopperClear.py:215
  1974. #: flatcamTools/ToolPaint.py:213
  1975. msgid "Contour:"
  1976. msgstr "Contorno:"
  1977. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5862
  1978. #: flatcamGUI/FlatCAMGUI.py:6103 flatcamTools/ToolNonCopperClear.py:217
  1979. #: flatcamTools/ToolPaint.py:215
  1980. msgid ""
  1981. "Cut around the perimeter of the polygon\n"
  1982. "to trim rough edges."
  1983. msgstr "Corte o perímetro do polígono para cortar as arestas."
  1984. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1985. msgid "Paint"
  1986. msgstr "Pintura"
  1987. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:647
  1988. #: flatcamGUI/FlatCAMGUI.py:1885 flatcamGUI/ObjectUI.py:1314
  1989. #: flatcamTools/ToolPaint.py:340
  1990. msgid "Paint Tool"
  1991. msgstr "Ferramenta de Pintura"
  1992. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1993. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1994. msgstr "[WARNING_NOTCL] Pintura cancelada. Nenhuma forma selecionada."
  1995. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:356
  1996. #: flatcamTools/ToolCutOut.py:525 flatcamTools/ToolCutOut.py:665
  1997. #: flatcamTools/ToolCutOut.py:770 flatcamTools/ToolDblSided.py:362
  1998. msgid ""
  1999. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  2000. "retry."
  2001. msgstr ""
  2002. "[WARNING_NOTCL] O valor do diâmetro da ferramenta está ausente ou em formato "
  2003. "incorreto. Altere e tente novamente."
  2004. #: flatcamEditors/FlatCAMGeoEditor.py:585
  2005. msgid ""
  2006. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  2007. msgstr ""
  2008. "[WARNING_NOTCL] O valor de sobreposição está ausente ou em formato "
  2009. "incorreto. Altere e tente novamente."
  2010. #: flatcamEditors/FlatCAMGeoEditor.py:597
  2011. msgid ""
  2012. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  2013. "retry."
  2014. msgstr ""
  2015. "[WARNING_NOTCL] O valor da distância da margem está ausente ou em formato "
  2016. "incorreto. Altere e tente novamente."
  2017. #: flatcamEditors/FlatCAMGeoEditor.py:606
  2018. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  2019. #: flatcamEditors/FlatCAMGeoEditor.py:2733
  2020. #: flatcamEditors/FlatCAMGeoEditor.py:2759
  2021. #: flatcamTools/ToolNonCopperClear.py:817 flatcamTools/ToolProperties.py:104
  2022. msgid "Tools"
  2023. msgstr "Ferramentas"
  2024. #: flatcamEditors/FlatCAMGeoEditor.py:617
  2025. #: flatcamEditors/FlatCAMGeoEditor.py:990
  2026. #: flatcamEditors/FlatCAMGrbEditor.py:4694
  2027. #: flatcamEditors/FlatCAMGrbEditor.py:5079 flatcamGUI/FlatCAMGUI.py:658
  2028. #: flatcamGUI/FlatCAMGUI.py:1898 flatcamTools/ToolTransform.py:397
  2029. msgid "Transform Tool"
  2030. msgstr "Ferramenta Transformar"
  2031. #: flatcamEditors/FlatCAMGeoEditor.py:618
  2032. #: flatcamEditors/FlatCAMGeoEditor.py:679
  2033. #: flatcamEditors/FlatCAMGrbEditor.py:4695
  2034. #: flatcamEditors/FlatCAMGrbEditor.py:4757 flatcamTools/ToolTransform.py:24
  2035. #: flatcamTools/ToolTransform.py:82
  2036. msgid "Rotate"
  2037. msgstr "Girar"
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:619
  2039. #: flatcamEditors/FlatCAMGrbEditor.py:4696 flatcamTools/ToolTransform.py:25
  2040. msgid "Skew/Shear"
  2041. msgstr "Inclinar"
  2042. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2043. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  2044. #: flatcamEditors/FlatCAMGrbEditor.py:4697 flatcamGUI/FlatCAMGUI.py:722
  2045. #: flatcamGUI/FlatCAMGUI.py:1966 flatcamGUI/ObjectUI.py:100
  2046. #: flatcamTools/ToolTransform.py:26
  2047. msgid "Scale"
  2048. msgstr "Redimensionar"
  2049. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2050. #: flatcamEditors/FlatCAMGrbEditor.py:4698 flatcamTools/ToolTransform.py:27
  2051. msgid "Mirror (Flip)"
  2052. msgstr "Espelhar (Flip)"
  2053. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2054. #: flatcamEditors/FlatCAMGrbEditor.py:4699 flatcamGUI/ObjectUI.py:127
  2055. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  2056. #: flatcamTools/ToolTransform.py:28
  2057. msgid "Offset"
  2058. msgstr "Deslocar"
  2059. #: flatcamEditors/FlatCAMGeoEditor.py:633
  2060. #: flatcamEditors/FlatCAMGrbEditor.py:4711
  2061. #, python-format
  2062. msgid "Editor %s"
  2063. msgstr "Editor %s"
  2064. #: flatcamEditors/FlatCAMGeoEditor.py:667
  2065. #: flatcamEditors/FlatCAMGrbEditor.py:4745 flatcamTools/ToolTransform.py:70
  2066. msgid ""
  2067. "Angle for Rotation action, in degrees.\n"
  2068. "Float number between -360 and 359.\n"
  2069. "Positive numbers for CW motion.\n"
  2070. "Negative numbers for CCW motion."
  2071. msgstr ""
  2072. "Ângulo para a ação Rotação, em graus. \n"
  2073. "Número flutuante entre -360 e 359. \n"
  2074. "Números positivos para movimento horário. \n"
  2075. "Números negativos para movimento anti-horário."
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:681
  2077. #: flatcamEditors/FlatCAMGrbEditor.py:4759
  2078. msgid ""
  2079. "Rotate the selected shape(s).\n"
  2080. "The point of reference is the middle of\n"
  2081. "the bounding box for all selected shapes."
  2082. msgstr ""
  2083. "Gira a(s) forma(s) selecionada(s). \n"
  2084. "O ponto de referência é o meio da \n"
  2085. "caixa delimitadora para todas as formas selecionadas."
  2086. #: flatcamEditors/FlatCAMGeoEditor.py:704
  2087. #: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamTools/ToolTransform.py:107
  2088. msgid "Angle X:"
  2089. msgstr "Ângulo X:"
  2090. #: flatcamEditors/FlatCAMGeoEditor.py:706
  2091. #: flatcamEditors/FlatCAMGeoEditor.py:724
  2092. #: flatcamEditors/FlatCAMGrbEditor.py:4784
  2093. #: flatcamEditors/FlatCAMGrbEditor.py:4802 flatcamTools/ToolTransform.py:109
  2094. #: flatcamTools/ToolTransform.py:127
  2095. msgid ""
  2096. "Angle for Skew action, in degrees.\n"
  2097. "Float number between -360 and 359."
  2098. msgstr ""
  2099. "Ângulo de inclinação, em graus. \n"
  2100. "Número flutuante entre -360 e 359."
  2101. #: flatcamEditors/FlatCAMGeoEditor.py:715
  2102. #: flatcamEditors/FlatCAMGrbEditor.py:4793 flatcamTools/ToolTransform.py:118
  2103. msgid "Skew X"
  2104. msgstr "Inclinar X"
  2105. #: flatcamEditors/FlatCAMGeoEditor.py:717
  2106. #: flatcamEditors/FlatCAMGeoEditor.py:735
  2107. #: flatcamEditors/FlatCAMGrbEditor.py:4795
  2108. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2109. msgid ""
  2110. "Skew/shear the selected shape(s).\n"
  2111. "The point of reference is the middle of\n"
  2112. "the bounding box for all selected shapes."
  2113. msgstr ""
  2114. "Inclinar/distorcer a(s) forma(s) selecionada(s). \n"
  2115. "O ponto de referência é o meio da \n"
  2116. "caixa delimitadora para todas as formas selecionadas."
  2117. #: flatcamEditors/FlatCAMGeoEditor.py:722
  2118. #: flatcamEditors/FlatCAMGrbEditor.py:4800 flatcamTools/ToolTransform.py:125
  2119. msgid "Angle Y:"
  2120. msgstr "Ângulo Y:"
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:733
  2122. #: flatcamEditors/FlatCAMGrbEditor.py:4811 flatcamTools/ToolTransform.py:136
  2123. msgid "Skew Y"
  2124. msgstr "Inclinar Y"
  2125. #: flatcamEditors/FlatCAMGeoEditor.py:761
  2126. #: flatcamEditors/FlatCAMGrbEditor.py:4839 flatcamTools/ToolTransform.py:164
  2127. msgid "Factor X:"
  2128. msgstr "Fator X:"
  2129. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2130. #: flatcamEditors/FlatCAMGrbEditor.py:4841 flatcamTools/ToolTransform.py:166
  2131. msgid "Factor for Scale action over X axis."
  2132. msgstr "Fator de escala sobre o eixo X."
  2133. #: flatcamEditors/FlatCAMGeoEditor.py:771
  2134. #: flatcamEditors/FlatCAMGrbEditor.py:4849 flatcamTools/ToolTransform.py:174
  2135. msgid "Scale X"
  2136. msgstr "Redimensionar X"
  2137. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2138. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2139. #: flatcamEditors/FlatCAMGrbEditor.py:4851
  2140. #: flatcamEditors/FlatCAMGrbEditor.py:4868
  2141. msgid ""
  2142. "Scale the selected shape(s).\n"
  2143. "The point of reference depends on \n"
  2144. "the Scale reference checkbox state."
  2145. msgstr ""
  2146. "Redimensiona a(s) forma(s) selecionada(s). \n"
  2147. "O ponto de referência depende \n"
  2148. "do estado da caixa de seleção."
  2149. #: flatcamEditors/FlatCAMGeoEditor.py:778
  2150. #: flatcamEditors/FlatCAMGrbEditor.py:4856 flatcamTools/ToolTransform.py:181
  2151. msgid "Factor Y:"
  2152. msgstr "Fator Y:"
  2153. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2154. #: flatcamEditors/FlatCAMGrbEditor.py:4858 flatcamTools/ToolTransform.py:183
  2155. msgid "Factor for Scale action over Y axis."
  2156. msgstr "Fator para ação de escala no eixo Y."
  2157. #: flatcamEditors/FlatCAMGeoEditor.py:788
  2158. #: flatcamEditors/FlatCAMGrbEditor.py:4866 flatcamTools/ToolTransform.py:191
  2159. msgid "Scale Y"
  2160. msgstr "Redimensionar Y"
  2161. #: flatcamEditors/FlatCAMGeoEditor.py:797
  2162. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamGUI/FlatCAMGUI.py:6450
  2163. #: flatcamTools/ToolTransform.py:200
  2164. msgid "Link"
  2165. msgstr "Fixar Taxa"
  2166. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2167. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2168. msgid ""
  2169. "Scale the selected shape(s)\n"
  2170. "using the Scale Factor X for both axis."
  2171. msgstr ""
  2172. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2173. "usando o Fator de Escala X para ambos os eixos."
  2174. #: flatcamEditors/FlatCAMGeoEditor.py:805
  2175. #: flatcamEditors/FlatCAMGrbEditor.py:4883 flatcamGUI/FlatCAMGUI.py:6458
  2176. #: flatcamTools/ToolTransform.py:208
  2177. msgid "Scale Reference"
  2178. msgstr "Referência de escala"
  2179. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2180. #: flatcamEditors/FlatCAMGrbEditor.py:4885
  2181. msgid ""
  2182. "Scale the selected shape(s)\n"
  2183. "using the origin reference when checked,\n"
  2184. "and the center of the biggest bounding box\n"
  2185. "of the selected shapes when unchecked."
  2186. msgstr ""
  2187. "Redimensiona a(s) forma(s) selecionada(s) \n"
  2188. "usando a referência de origem quando marcada, \n"
  2189. "e o centro da maior caixa delimitadora \n"
  2190. "de formas selecionadas quando desmarcado."
  2191. #: flatcamEditors/FlatCAMGeoEditor.py:835
  2192. #: flatcamEditors/FlatCAMGrbEditor.py:4914 flatcamTools/ToolTransform.py:238
  2193. msgid "Value X:"
  2194. msgstr "Valor X:"
  2195. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2196. #: flatcamEditors/FlatCAMGrbEditor.py:4916 flatcamTools/ToolTransform.py:240
  2197. msgid "Value for Offset action on X axis."
  2198. msgstr "Valor para o deslocamento no eixo X."
  2199. #: flatcamEditors/FlatCAMGeoEditor.py:845
  2200. #: flatcamEditors/FlatCAMGrbEditor.py:4924 flatcamTools/ToolTransform.py:248
  2201. msgid "Offset X"
  2202. msgstr "Deslocar X"
  2203. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2204. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2205. #: flatcamEditors/FlatCAMGrbEditor.py:4926
  2206. #: flatcamEditors/FlatCAMGrbEditor.py:4944
  2207. msgid ""
  2208. "Offset the selected shape(s).\n"
  2209. "The point of reference is the middle of\n"
  2210. "the bounding box for all selected shapes.\n"
  2211. msgstr ""
  2212. "Desloca a(s) forma(s) selecionada(s). \n"
  2213. "O ponto de referência é o meio da \n"
  2214. "caixa delimitadora para todas as formas selecionadas. \n"
  2215. #: flatcamEditors/FlatCAMGeoEditor.py:853
  2216. #: flatcamEditors/FlatCAMGrbEditor.py:4932 flatcamTools/ToolTransform.py:255
  2217. msgid "Value Y:"
  2218. msgstr "Valor Y:"
  2219. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2220. #: flatcamEditors/FlatCAMGrbEditor.py:4934 flatcamTools/ToolTransform.py:257
  2221. msgid "Value for Offset action on Y axis."
  2222. msgstr "Valor para a ação de deslocamento no eixo Y."
  2223. #: flatcamEditors/FlatCAMGeoEditor.py:863
  2224. #: flatcamEditors/FlatCAMGrbEditor.py:4942 flatcamTools/ToolTransform.py:265
  2225. msgid "Offset Y"
  2226. msgstr "Deslocar Y"
  2227. #: flatcamEditors/FlatCAMGeoEditor.py:894
  2228. #: flatcamEditors/FlatCAMGrbEditor.py:4973 flatcamTools/ToolTransform.py:295
  2229. msgid "Flip on X"
  2230. msgstr "Espelhar no X"
  2231. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2232. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2233. #: flatcamEditors/FlatCAMGrbEditor.py:4975
  2234. #: flatcamEditors/FlatCAMGrbEditor.py:4983
  2235. msgid ""
  2236. "Flip the selected shape(s) over the X axis.\n"
  2237. "Does not create a new shape."
  2238. msgstr ""
  2239. "Espelha as formas selecionadas sobre o eixo X. \n"
  2240. "Não cria uma nova forma."
  2241. #: flatcamEditors/FlatCAMGeoEditor.py:902
  2242. #: flatcamEditors/FlatCAMGrbEditor.py:4981 flatcamTools/ToolTransform.py:303
  2243. msgid "Flip on Y"
  2244. msgstr "Espelhar no Y"
  2245. #: flatcamEditors/FlatCAMGeoEditor.py:911
  2246. #: flatcamEditors/FlatCAMGrbEditor.py:4990 flatcamTools/ToolTransform.py:312
  2247. msgid "Ref Pt"
  2248. msgstr "Ponto de Referência"
  2249. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2250. #: flatcamEditors/FlatCAMGrbEditor.py:4992
  2251. msgid ""
  2252. "Flip the selected shape(s)\n"
  2253. "around the point in Point Entry Field.\n"
  2254. "\n"
  2255. "The point coordinates can be captured by\n"
  2256. "left click on canvas together with pressing\n"
  2257. "SHIFT key. \n"
  2258. "Then click Add button to insert coordinates.\n"
  2259. "Or enter the coords in format (x, y) in the\n"
  2260. "Point Entry field and click Flip on X(Y)"
  2261. msgstr ""
  2262. "Espelha a(s) forma(s) selecionada(s)\n"
  2263. "em relação às coordenadas abaixo. \n"
  2264. "\n"
  2265. "As coordenadas do ponto podem ser inseridas:\n"
  2266. "- com clique no botão esquerdo junto com a tecla\n"
  2267. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  2268. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  2269. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  2270. #: flatcamEditors/FlatCAMGeoEditor.py:925
  2271. #: flatcamEditors/FlatCAMGrbEditor.py:5004 flatcamTools/ToolTransform.py:325
  2272. msgid "Point:"
  2273. msgstr "Ponto de Ref.:"
  2274. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2275. #: flatcamEditors/FlatCAMGrbEditor.py:5006
  2276. msgid ""
  2277. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2278. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2279. "the 'y' in (x, y) will be used when using Flip on Y."
  2280. msgstr ""
  2281. "Coordenadas no formato (x, y) usadas como referência para espelhamento. \n"
  2282. "O 'x' em (x, y) será usado ao usar Espelhar em X e \n"
  2283. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  2284. #: flatcamEditors/FlatCAMGeoEditor.py:939
  2285. #: flatcamEditors/FlatCAMGrbEditor.py:5018 flatcamTools/ToolTransform.py:339
  2286. msgid ""
  2287. "The point coordinates can be captured by\n"
  2288. "left click on canvas together with pressing\n"
  2289. "SHIFT key. Then click Add button to insert."
  2290. msgstr ""
  2291. "As coordenadas do ponto podem ser capturadas por \n"
  2292. "botão esquerdo na tela junto com a tecla \n"
  2293. "SHIFT pressionada. Em seguida, clique no botão Adicionar para inserir."
  2294. #: flatcamEditors/FlatCAMGeoEditor.py:1054
  2295. #: flatcamEditors/FlatCAMGrbEditor.py:5143
  2296. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2297. msgstr "[WARNING_NOTCL] Transformação cancelada. Nenhuma forma selecionada."
  2298. #: flatcamEditors/FlatCAMGeoEditor.py:1075
  2299. #: flatcamEditors/FlatCAMGrbEditor.py:5163 flatcamTools/ToolTransform.py:467
  2300. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2301. msgstr ""
  2302. "[ERROR_NOTCL] Formato de valor incorreto inserido para Girar, use um número."
  2303. #: flatcamEditors/FlatCAMGeoEditor.py:1112
  2304. #: flatcamEditors/FlatCAMGrbEditor.py:5206 flatcamTools/ToolTransform.py:501
  2305. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2306. msgstr ""
  2307. "[ERROR_NOTCL] Formato de valor incorreto inserido para Inclinação X, use um "
  2308. "número."
  2309. #: flatcamEditors/FlatCAMGeoEditor.py:1133
  2310. #: flatcamEditors/FlatCAMGrbEditor.py:5233 flatcamTools/ToolTransform.py:519
  2311. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2312. msgstr ""
  2313. "[ERROR_NOTCL] Formato de valor incorreto inserido para Inclinação Y, use um "
  2314. "número."
  2315. #: flatcamEditors/FlatCAMGeoEditor.py:1154
  2316. #: flatcamEditors/FlatCAMGrbEditor.py:5260 flatcamTools/ToolTransform.py:537
  2317. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2318. msgstr ""
  2319. "[ERROR_NOTCL] Formato de valor incorreto inserido na Escala X, use um número."
  2320. #: flatcamEditors/FlatCAMGeoEditor.py:1191
  2321. #: flatcamEditors/FlatCAMGrbEditor.py:5301 flatcamTools/ToolTransform.py:571
  2322. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2323. msgstr ""
  2324. "[ERROR_NOTCL] Formato de valor incorreto inserido para a Escala Y, use um "
  2325. "número."
  2326. #: flatcamEditors/FlatCAMGeoEditor.py:1223
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:5339 flatcamTools/ToolTransform.py:600
  2328. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2329. msgstr ""
  2330. "[ERROR_NOTCL] Formato de valor incorreto inserido para o deslocamento X, use "
  2331. "um número."
  2332. #: flatcamEditors/FlatCAMGeoEditor.py:1244
  2333. #: flatcamEditors/FlatCAMGrbEditor.py:5365 flatcamTools/ToolTransform.py:618
  2334. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2335. msgstr ""
  2336. "[ERROR_NOTCL] Formato de valor incorreto inserido para o deslocamento Y, use "
  2337. "um número."
  2338. #: flatcamEditors/FlatCAMGeoEditor.py:1262
  2339. #: flatcamEditors/FlatCAMGrbEditor.py:5388
  2340. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2341. msgstr ""
  2342. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2343. "para girar!"
  2344. #: flatcamEditors/FlatCAMGeoEditor.py:1265
  2345. #: flatcamEditors/FlatCAMGrbEditor.py:5391 flatcamTools/ToolTransform.py:639
  2346. msgid "Appying Rotate"
  2347. msgstr "Aplicando Girar"
  2348. #: flatcamEditors/FlatCAMGeoEditor.py:1293
  2349. #: flatcamEditors/FlatCAMGrbEditor.py:5424
  2350. msgid "[success] Done. Rotate completed."
  2351. msgstr "[success] Girar concluído."
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:1309
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:5443
  2354. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2355. msgstr ""
  2356. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2357. "para espelhar!"
  2358. #: flatcamEditors/FlatCAMGeoEditor.py:1312
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:5446 flatcamTools/ToolTransform.py:690
  2360. msgid "Applying Flip"
  2361. msgstr "Aplicando Espelho"
  2362. #: flatcamEditors/FlatCAMGeoEditor.py:1342
  2363. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolTransform.py:732
  2364. msgid "[success] Flip on the Y axis done ..."
  2365. msgstr "[success] Espelhamento no eixo Y feito ..."
  2366. #: flatcamEditors/FlatCAMGeoEditor.py:1345
  2367. #: flatcamEditors/FlatCAMGrbEditor.py:5493 flatcamTools/ToolTransform.py:741
  2368. msgid "[success] Flip on the X axis done ..."
  2369. msgstr "[success] Espelhamento no eixo X feito ..."
  2370. #: flatcamEditors/FlatCAMGeoEditor.py:1364
  2371. #: flatcamEditors/FlatCAMGrbEditor.py:5513
  2372. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2373. msgstr ""
  2374. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2375. "para inclinar!"
  2376. #: flatcamEditors/FlatCAMGeoEditor.py:1367
  2377. #: flatcamEditors/FlatCAMGrbEditor.py:5516 flatcamTools/ToolTransform.py:759
  2378. msgid "Applying Skew"
  2379. msgstr "Inclinando"
  2380. #: flatcamEditors/FlatCAMGeoEditor.py:1392
  2381. #: flatcamEditors/FlatCAMGrbEditor.py:5551 flatcamTools/ToolTransform.py:790
  2382. #, python-format
  2383. msgid "[success] Skew on the %s axis done ..."
  2384. msgstr "[success] Inclinação no eixo %s concluída ..."
  2385. #: flatcamEditors/FlatCAMGeoEditor.py:1396
  2386. #: flatcamEditors/FlatCAMGrbEditor.py:5555 flatcamTools/ToolTransform.py:794
  2387. #, python-format
  2388. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2389. msgstr "[ERROR_NOTCL] Devido a %s , a ação Inclinar não foi executada."
  2390. #: flatcamEditors/FlatCAMGeoEditor.py:1407
  2391. #: flatcamEditors/FlatCAMGrbEditor.py:5574
  2392. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2393. msgstr ""
  2394. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2395. "para redimensionar!"
  2396. #: flatcamEditors/FlatCAMGeoEditor.py:1410
  2397. #: flatcamEditors/FlatCAMGrbEditor.py:5577 flatcamTools/ToolTransform.py:808
  2398. msgid "Applying Scale"
  2399. msgstr "Redimensionando"
  2400. #: flatcamEditors/FlatCAMGeoEditor.py:1443
  2401. #: flatcamEditors/FlatCAMGrbEditor.py:5615 flatcamTools/ToolTransform.py:847
  2402. #, python-format
  2403. msgid "[success] Scale on the %s axis done ..."
  2404. msgstr "[success] Redimensionamento no eixo %s concluído ..."
  2405. #: flatcamEditors/FlatCAMGeoEditor.py:1446
  2406. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:850
  2407. #, python-format
  2408. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2409. msgstr "[ERROR_NOTCL] Devido a %s, o redimensionamento não foi executado."
  2410. #: flatcamEditors/FlatCAMGeoEditor.py:1455
  2411. #: flatcamEditors/FlatCAMGrbEditor.py:5631
  2412. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2413. msgstr ""
  2414. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2415. "para deslocar!"
  2416. #: flatcamEditors/FlatCAMGeoEditor.py:1458
  2417. #: flatcamEditors/FlatCAMGrbEditor.py:5634 flatcamTools/ToolTransform.py:860
  2418. msgid "Applying Offset"
  2419. msgstr "Aplicando Deslocamento"
  2420. #: flatcamEditors/FlatCAMGeoEditor.py:1469
  2421. #: flatcamEditors/FlatCAMGrbEditor.py:5656 flatcamTools/ToolTransform.py:879
  2422. #, python-format
  2423. msgid "[success] Offset on the %s axis done ..."
  2424. msgstr "[success] Deslocamento no eixo %s concluído ..."
  2425. #: flatcamEditors/FlatCAMGeoEditor.py:1473
  2426. #: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:883
  2427. #, python-format
  2428. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2429. msgstr "[ERROR_NOTCL] Devido a %s , a ação de deslocamento não foi executada."
  2430. #: flatcamEditors/FlatCAMGeoEditor.py:1477
  2431. #: flatcamEditors/FlatCAMGrbEditor.py:5664
  2432. msgid "Rotate ..."
  2433. msgstr "Girar ..."
  2434. #: flatcamEditors/FlatCAMGeoEditor.py:1478
  2435. #: flatcamEditors/FlatCAMGeoEditor.py:1535
  2436. #: flatcamEditors/FlatCAMGeoEditor.py:1552
  2437. #: flatcamEditors/FlatCAMGrbEditor.py:5665
  2438. #: flatcamEditors/FlatCAMGrbEditor.py:5722
  2439. #: flatcamEditors/FlatCAMGrbEditor.py:5739
  2440. msgid "Enter an Angle Value (degrees):"
  2441. msgstr "Digite um valor de ângulo (graus):"
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:1487
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5674
  2444. msgid "[success] Geometry shape rotate done..."
  2445. msgstr "[success] Rotação da geometria feito ..."
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:1492
  2447. #: flatcamEditors/FlatCAMGrbEditor.py:5679
  2448. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2449. msgstr "[WARNING_NOTCL] Rotação da geometria cancelada ..."
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:1498
  2451. #: flatcamEditors/FlatCAMGrbEditor.py:5685
  2452. msgid "Offset on X axis ..."
  2453. msgstr "Deslocamento no eixo X ..."
  2454. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2455. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2456. #: flatcamEditors/FlatCAMGrbEditor.py:5686
  2457. #: flatcamEditors/FlatCAMGrbEditor.py:5705
  2458. #, python-format
  2459. msgid "Enter a distance Value (%s):"
  2460. msgstr "Digite um valor de distância ( %s ):"
  2461. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2462. #: flatcamEditors/FlatCAMGrbEditor.py:5695
  2463. msgid "[success] Geometry shape offset on X axis done..."
  2464. msgstr "[success] Deslocamento da forma da geometria no eixo X ..."
  2465. #: flatcamEditors/FlatCAMGeoEditor.py:1512
  2466. #: flatcamEditors/FlatCAMGrbEditor.py:5699
  2467. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2468. msgstr "[WARNING_NOTCL] Deslocamento da forma da geometria X cancelada ..."
  2469. #: flatcamEditors/FlatCAMGeoEditor.py:1517
  2470. #: flatcamEditors/FlatCAMGrbEditor.py:5704
  2471. msgid "Offset on Y axis ..."
  2472. msgstr "Deslocamento no eixo Y ..."
  2473. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2474. #: flatcamEditors/FlatCAMGrbEditor.py:5714
  2475. msgid "[success] Geometry shape offset on Y axis done..."
  2476. msgstr "[success] Deslocamento da forma da geometria no eixo Y ..."
  2477. #: flatcamEditors/FlatCAMGeoEditor.py:1531
  2478. #: flatcamEditors/FlatCAMGrbEditor.py:5718
  2479. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2480. msgstr "[WARNING_NOTCL] Deslocamento da forma da geometria Y cancelado ..."
  2481. #: flatcamEditors/FlatCAMGeoEditor.py:1534
  2482. #: flatcamEditors/FlatCAMGrbEditor.py:5721
  2483. msgid "Skew on X axis ..."
  2484. msgstr "Inclinação no eixo X ..."
  2485. #: flatcamEditors/FlatCAMGeoEditor.py:1544
  2486. #: flatcamEditors/FlatCAMGrbEditor.py:5731
  2487. msgid "[success] Geometry shape skew on X axis done..."
  2488. msgstr "[success] Forma de geometria inclinada no eixo X ..."
  2489. #: flatcamEditors/FlatCAMGeoEditor.py:1548
  2490. #: flatcamEditors/FlatCAMGrbEditor.py:5735
  2491. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2492. msgstr "[WARNING_NOTCL] Forma de geometria inclinada X cancelada ..."
  2493. #: flatcamEditors/FlatCAMGeoEditor.py:1551
  2494. #: flatcamEditors/FlatCAMGrbEditor.py:5738
  2495. msgid "Skew on Y axis ..."
  2496. msgstr "Inclinação no eixo Y ..."
  2497. #: flatcamEditors/FlatCAMGeoEditor.py:1561
  2498. #: flatcamEditors/FlatCAMGrbEditor.py:5748
  2499. msgid "[success] Geometry shape skew on Y axis done..."
  2500. msgstr "[success] Forma de geometria inclinada no eixo Y ..."
  2501. #: flatcamEditors/FlatCAMGeoEditor.py:1565
  2502. #: flatcamEditors/FlatCAMGrbEditor.py:5752
  2503. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2504. msgstr "[WARNING_NOTCL] Forma da geometria inclinada Y cancelada ..."
  2505. #: flatcamEditors/FlatCAMGeoEditor.py:1929
  2506. #: flatcamEditors/FlatCAMGeoEditor.py:1980
  2507. #: flatcamEditors/FlatCAMGrbEditor.py:1361
  2508. #: flatcamEditors/FlatCAMGrbEditor.py:1430
  2509. msgid "Click on Center point ..."
  2510. msgstr "Clique no ponto central ..."
  2511. #: flatcamEditors/FlatCAMGeoEditor.py:1936
  2512. #: flatcamEditors/FlatCAMGrbEditor.py:1369
  2513. msgid "Click on Perimeter point to complete ..."
  2514. msgstr "Clique no ponto Perímetro para completar ..."
  2515. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2516. msgid "[success] Done. Adding Circle completed."
  2517. msgstr "[success] Feito. Adicionando Círculo concluído."
  2518. #: flatcamEditors/FlatCAMGeoEditor.py:2000
  2519. #: flatcamEditors/FlatCAMGrbEditor.py:1462
  2520. msgid "Click on Start point ..."
  2521. msgstr "Clique no ponto inicial ..."
  2522. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2523. #: flatcamEditors/FlatCAMGrbEditor.py:1464
  2524. msgid "Click on Point3 ..."
  2525. msgstr "Clique no ponto 3 ..."
  2526. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2527. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2528. msgid "Click on Stop point ..."
  2529. msgstr "Clique no ponto de parada ..."
  2530. #: flatcamEditors/FlatCAMGeoEditor.py:2009
  2531. #: flatcamEditors/FlatCAMGrbEditor.py:1471
  2532. msgid "Click on Stop point to complete ..."
  2533. msgstr "Clique no ponto de parada para completar ..."
  2534. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2535. #: flatcamEditors/FlatCAMGrbEditor.py:1473
  2536. msgid "Click on Point2 to complete ..."
  2537. msgstr "Clique no ponto 2 para completar ..."
  2538. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2539. #: flatcamEditors/FlatCAMGrbEditor.py:1475
  2540. msgid "Click on Center point to complete ..."
  2541. msgstr "Clique no ponto central para completar ..."
  2542. #: flatcamEditors/FlatCAMGeoEditor.py:2025
  2543. #: flatcamEditors/FlatCAMGrbEditor.py:1487
  2544. #, python-format
  2545. msgid "Direction: %s"
  2546. msgstr "Direção: %s"
  2547. #: flatcamEditors/FlatCAMGeoEditor.py:2035
  2548. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2549. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2550. msgstr "Modo: Iniciar -> Parar -> Centro. Clique no ponto inicial ..."
  2551. #: flatcamEditors/FlatCAMGeoEditor.py:2038
  2552. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2553. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2554. msgstr "Modo: Ponto 1 -> Ponto 3 -> Ponto 2. Clique no Ponto 1 ..."
  2555. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2556. #: flatcamEditors/FlatCAMGrbEditor.py:1503
  2557. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2558. msgstr "Modo: Centro -> Iniciar -> Parar. Clique no ponto central ..."
  2559. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  2560. msgid "[success] Done. Arc completed."
  2561. msgstr "[success] Feito. Arco concluído."
  2562. #: flatcamEditors/FlatCAMGeoEditor.py:2198
  2563. #: flatcamEditors/FlatCAMGeoEditor.py:2251
  2564. #: flatcamEditors/FlatCAMGeoEditor.py:2626
  2565. msgid "Click on 1st corner ..."
  2566. msgstr "Clique no primeiro canto ..."
  2567. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  2568. msgid "Click on opposite corner to complete ..."
  2569. msgstr "Clique no canto oposto para completar ..."
  2570. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  2571. msgid "[success] Done. Rectangle completed."
  2572. msgstr "[success] Feito. Retângulo concluído."
  2573. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  2574. msgid "Click on next Point or click right mouse button to complete ..."
  2575. msgstr ""
  2576. "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2577. "completar ..."
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  2579. msgid "[success] Done. Polygon completed."
  2580. msgstr "[success] Feito. Polígono concluído."
  2581. #: flatcamEditors/FlatCAMGeoEditor.py:2296
  2582. #: flatcamEditors/FlatCAMGeoEditor.py:2342
  2583. #: flatcamEditors/FlatCAMGrbEditor.py:1058
  2584. #: flatcamEditors/FlatCAMGrbEditor.py:1252
  2585. msgid "Backtracked one point ..."
  2586. msgstr "Retrocedeu um ponto ..."
  2587. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  2588. msgid "[success] Done. Path completed."
  2589. msgstr "[success] Feito. Caminho concluído."
  2590. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  2591. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2592. msgstr ""
  2593. "[WARNING_NOTCL] MOVE: Nenhuma forma selecionada. Selecione uma forma para "
  2594. "mover ..."
  2595. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2596. #: flatcamEditors/FlatCAMGeoEditor.py:2461
  2597. msgid " MOVE: Click on reference point ..."
  2598. msgstr " MOVE: Clique no ponto de referência ..."
  2599. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  2600. msgid " Click on destination point ..."
  2601. msgstr " Clique no ponto de destino ..."
  2602. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  2603. msgid "[success] Done. Geometry(s) Move completed."
  2604. msgstr "[success] Feito. Movimento de Geometria(s) completo."
  2605. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  2606. msgid "[success] Done. Geometry(s) Copy completed."
  2607. msgstr "[success] Feito. Cópia de Geometria(s) concluída."
  2608. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  2609. #, python-format
  2610. msgid ""
  2611. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2612. "supported. Error: %s"
  2613. msgstr ""
  2614. "[ERROR] Fonte não suportada. Apenas Regular, Bold, Italic e BoldItalic são "
  2615. "suportados. Erro: %s"
  2616. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  2617. msgid "[success] Done. Adding Text completed."
  2618. msgstr "[success] Feito. Adicionando texto concluído."
  2619. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  2620. msgid "Create buffer geometry ..."
  2621. msgstr "Criar geometria de buffer ..."
  2622. #: flatcamEditors/FlatCAMGeoEditor.py:2689
  2623. #: flatcamEditors/FlatCAMGeoEditor.py:2715
  2624. #: flatcamEditors/FlatCAMGeoEditor.py:2741
  2625. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2626. msgstr "[WARNING_NOTCL] Buffer cancelado. Nenhuma forma selecionada."
  2627. #: flatcamEditors/FlatCAMGeoEditor.py:2711
  2628. #: flatcamEditors/FlatCAMGrbEditor.py:4558
  2629. msgid "[success] Done. Buffer Tool completed."
  2630. msgstr "[success] Feito. Ferramenta Buffer concluída."
  2631. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  2632. msgid "[success] Done. Buffer Int Tool completed."
  2633. msgstr "[success] Feito. Ferramenta Buffer Int concluída."
  2634. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2635. msgid "[success] Done. Buffer Ext Tool completed."
  2636. msgstr "[success] Feito. Ferramenta Buffer Ext concluída."
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:2798
  2638. #: flatcamEditors/FlatCAMGrbEditor.py:2025
  2639. msgid "Select a shape to act as deletion area ..."
  2640. msgstr "Selecione uma forma para atuar como área de exclusão ..."
  2641. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2642. #: flatcamEditors/FlatCAMGeoEditor.py:2819
  2643. #: flatcamEditors/FlatCAMGeoEditor.py:2825
  2644. #: flatcamEditors/FlatCAMGrbEditor.py:2027
  2645. msgid "Click to pick-up the erase shape..."
  2646. msgstr "Clique para pegar a forma de apagar ..."
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:2829
  2648. #: flatcamEditors/FlatCAMGrbEditor.py:2084
  2649. msgid "Click to erase ..."
  2650. msgstr "Clique para apagar ..."
  2651. #: flatcamEditors/FlatCAMGeoEditor.py:2858
  2652. #: flatcamEditors/FlatCAMGrbEditor.py:2117
  2653. msgid "[success] Done. Eraser tool action completed."
  2654. msgstr "[success] Feito. Ação da ferramenta Borracha concluída."
  2655. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  2656. msgid "Create Paint geometry ..."
  2657. msgstr "Criar geometria de pintura ..."
  2658. #: flatcamEditors/FlatCAMGeoEditor.py:2915
  2659. #: flatcamEditors/FlatCAMGrbEditor.py:2259
  2660. msgid "Shape transformations ..."
  2661. msgstr "Transformações de forma ..."
  2662. #: flatcamEditors/FlatCAMGeoEditor.py:3419
  2663. #, python-brace-format
  2664. msgid ""
  2665. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2666. msgstr ""
  2667. "[WARNING_NOTCL] Editando Geometria MultiGeo, ferramenta: {tool} com "
  2668. "diâmetro: {dia}"
  2669. #: flatcamEditors/FlatCAMGeoEditor.py:3796
  2670. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2671. msgstr "[WARNING_NOTCL] Cópia cancelada. Nenhuma forma selecionada."
  2672. #: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2757
  2673. #: flatcamGUI/FlatCAMGUI.py:2803 flatcamGUI/FlatCAMGUI.py:2821
  2674. #: flatcamGUI/FlatCAMGUI.py:2952 flatcamGUI/FlatCAMGUI.py:2964
  2675. #: flatcamGUI/FlatCAMGUI.py:2998
  2676. msgid "Click on target point."
  2677. msgstr "Clique no ponto alvo."
  2678. #: flatcamEditors/FlatCAMGeoEditor.py:4047
  2679. #: flatcamEditors/FlatCAMGeoEditor.py:4082
  2680. msgid ""
  2681. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2682. "Intersection."
  2683. msgstr ""
  2684. "[WARNING_NOTCL] É necessária uma seleção de pelo menos 2 itens geográficos "
  2685. "para fazer a interseção."
  2686. #: flatcamEditors/FlatCAMGeoEditor.py:4166
  2687. #: flatcamEditors/FlatCAMGeoEditor.py:4204
  2688. #: flatcamEditors/FlatCAMGeoEditor.py:4280
  2689. msgid ""
  2690. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2691. "generate an 'inside' shape"
  2692. msgstr ""
  2693. "[ERROR_NOTCL] Valor de buffer negativo não é aceito. Use o Buffer interior "
  2694. "para gerar uma forma 'interna'"
  2695. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2696. #: flatcamEditors/FlatCAMGeoEditor.py:4213
  2697. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2698. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2699. msgstr "[WARNING_NOTCL] Nada selecionado para armazenamento em buffer."
  2700. #: flatcamEditors/FlatCAMGeoEditor.py:4179
  2701. #: flatcamEditors/FlatCAMGeoEditor.py:4217
  2702. #: flatcamEditors/FlatCAMGeoEditor.py:4292
  2703. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2704. msgstr "[WARNING_NOTCL] Distância inválida para armazenamento em buffer."
  2705. #: flatcamEditors/FlatCAMGeoEditor.py:4189
  2706. #: flatcamEditors/FlatCAMGeoEditor.py:4301
  2707. msgid ""
  2708. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2709. msgstr ""
  2710. "[ERROR_NOTCL] Falhou, o resultado está vazio. Escolha um valor de buffer "
  2711. "diferente."
  2712. #: flatcamEditors/FlatCAMGeoEditor.py:4197
  2713. msgid "[success] Full buffer geometry created."
  2714. msgstr "[success] Geometria completa do buffer criada."
  2715. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2716. msgid ""
  2717. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2718. msgstr ""
  2719. "[ERROR_NOTCL] Falhou, o resultado está vazio. Escolha um valor de buffer "
  2720. "menor."
  2721. #: flatcamEditors/FlatCAMGeoEditor.py:4242
  2722. msgid "[success] Interior buffer geometry created."
  2723. msgstr "[success] Geometria do buffer interna criada."
  2724. #: flatcamEditors/FlatCAMGeoEditor.py:4313
  2725. msgid "[success] Exterior buffer geometry created."
  2726. msgstr "[success] Geometria de buffer externa criada."
  2727. #: flatcamEditors/FlatCAMGeoEditor.py:4377
  2728. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2729. msgstr "[WARNING_NOTCL] Nada selecionado para pintura."
  2730. #: flatcamEditors/FlatCAMGeoEditor.py:4383
  2731. msgid "[WARNING] Invalid value for {}"
  2732. msgstr "[WARNING] Valor inválido para {}"
  2733. #: flatcamEditors/FlatCAMGeoEditor.py:4389
  2734. msgid ""
  2735. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2736. "(100%)."
  2737. msgstr ""
  2738. "[ERROR_NOTCL] Não foi possível fazer o Paint. O valor de sobreposição tem "
  2739. "que ser menor que 1,00 (100%)."
  2740. #: flatcamEditors/FlatCAMGeoEditor.py:4448
  2741. #, python-format
  2742. msgid ""
  2743. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2744. "different method of Paint\n"
  2745. "%s"
  2746. msgstr ""
  2747. "[ERROR] Não foi possível pintar. Tente uma combinação diferente de "
  2748. "parâmetros. Ou um método diferente de Paint \n"
  2749. " %s"
  2750. #: flatcamEditors/FlatCAMGeoEditor.py:4459
  2751. msgid "[success] Paint done."
  2752. msgstr "[success] Pintura feita."
  2753. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2754. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2755. msgstr ""
  2756. "[WARNING_NOTCL] Para adicionar um Pad, primeiro selecione uma abertura na "
  2757. "Tabela de Abertura"
  2758. #: flatcamEditors/FlatCAMGrbEditor.py:206
  2759. #: flatcamEditors/FlatCAMGrbEditor.py:398
  2760. msgid ""
  2761. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2762. msgstr ""
  2763. "[WARNING_NOTCL] O tamanho da abertura é zero. Precisa ser maior que zero."
  2764. #: flatcamEditors/FlatCAMGrbEditor.py:357
  2765. #: flatcamEditors/FlatCAMGrbEditor.py:662
  2766. msgid ""
  2767. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2768. msgstr ""
  2769. "Tipo de abertura incompatível. Selecione uma abertura com o tipo 'C', 'R' ou "
  2770. "'O'."
  2771. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2772. msgid "[success] Done. Adding Pad completed."
  2773. msgstr "[success] Feito. Adicionando Pad concluído."
  2774. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2775. msgid ""
  2776. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2777. msgstr ""
  2778. "[WARNING_NOTCL] Para adicionar uma Matriz de Pads, primeiro selecione uma "
  2779. "abertura na Tabela de Abertura"
  2780. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2781. msgid "Click on the Pad Circular Array Start position"
  2782. msgstr "Clique na posição inicial da Matriz Circular de Pads"
  2783. #: flatcamEditors/FlatCAMGrbEditor.py:497
  2784. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  2785. msgstr "[ERROR_NOTCL] O valor é digitado incorretamente. Verifique o valor."
  2786. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2787. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2788. msgstr ""
  2789. "[WARNING_NOTCL] Demasiados Pads para o ângulo de espaçamento selecionado."
  2790. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2791. msgid "[success] Done. Pad Array added."
  2792. msgstr "[success] Matriz de Pads adicionada."
  2793. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2794. msgid "Select shape(s) and then click ..."
  2795. msgstr "Selecione a(s) forma(s) e clique em ..."
  2796. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2797. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2798. msgstr "[ERROR_NOTCL] Falhou. Nada selecionado."
  2799. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2800. msgid ""
  2801. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  2802. "same aperture."
  2803. msgstr ""
  2804. "[WARNING_NOTCL] Falhou. Poligonize funciona apenas em geometrias "
  2805. "pertencentes à mesma abertura."
  2806. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2807. msgid "[success] Done. Poligonize completed."
  2808. msgstr "[success] Feito. Poligonizar concluído."
  2809. #: flatcamEditors/FlatCAMGrbEditor.py:860
  2810. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2811. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2812. msgid "Corner Mode 1: 45 degrees ..."
  2813. msgstr "Modo de canto 1: 45 graus ..."
  2814. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2815. msgid "Click on 1st point ..."
  2816. msgstr "Clique no primeiro ponto ..."
  2817. #: flatcamEditors/FlatCAMGrbEditor.py:872
  2818. #: flatcamEditors/FlatCAMGrbEditor.py:1170
  2819. msgid "Click on next Point or click Right mouse button to complete ..."
  2820. msgstr ""
  2821. "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2822. "completar ..."
  2823. #: flatcamEditors/FlatCAMGrbEditor.py:1063
  2824. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2825. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2826. msgstr "Modo de canto 2: 45 graus invertido ..."
  2827. #: flatcamEditors/FlatCAMGrbEditor.py:1066
  2828. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2829. msgid "Corner Mode 3: 90 degrees ..."
  2830. msgstr "Modo de canto 3: 90 graus ..."
  2831. #: flatcamEditors/FlatCAMGrbEditor.py:1069
  2832. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2833. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2834. msgstr "Modo de canto 4: 90 graus invertido ..."
  2835. #: flatcamEditors/FlatCAMGrbEditor.py:1072
  2836. #: flatcamEditors/FlatCAMGrbEditor.py:1087
  2837. msgid "Corner Mode 5: Free angle ..."
  2838. msgstr "Modo de canto 5: Ângulo livre ..."
  2839. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2840. #: flatcamEditors/FlatCAMGrbEditor.py:1284
  2841. #: flatcamEditors/FlatCAMGrbEditor.py:1323
  2842. msgid "Track Mode 1: 45 degrees ..."
  2843. msgstr "Modo de Trilha 1: 45 graus ..."
  2844. #: flatcamEditors/FlatCAMGrbEditor.py:1264
  2845. #: flatcamEditors/FlatCAMGrbEditor.py:1318
  2846. msgid "Track Mode 2: Reverse 45 degrees ..."
  2847. msgstr "Modo de Trilha 2: 45 graus invertido ..."
  2848. #: flatcamEditors/FlatCAMGrbEditor.py:1269
  2849. #: flatcamEditors/FlatCAMGrbEditor.py:1313
  2850. msgid "Track Mode 3: 90 degrees ..."
  2851. msgstr "Modo de Trilha 3: 90 graus ..."
  2852. #: flatcamEditors/FlatCAMGrbEditor.py:1274
  2853. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  2854. msgid "Track Mode 4: Reverse 90 degrees ..."
  2855. msgstr "Modo de Trilha 4: 90 graus invertido ..."
  2856. #: flatcamEditors/FlatCAMGrbEditor.py:1279
  2857. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  2858. msgid "Track Mode 5: Free angle ..."
  2859. msgstr "Modo de Trilha 5: Ângulo livre ..."
  2860. #: flatcamEditors/FlatCAMGrbEditor.py:1683
  2861. msgid "Scale the selected Gerber apertures ..."
  2862. msgstr "Redimensiona as aberturas de Gerber selecionadas ..."
  2863. #: flatcamEditors/FlatCAMGrbEditor.py:1725
  2864. msgid "Buffer the selected apertures ..."
  2865. msgstr "Buffer as aberturas selecionadas ..."
  2866. #: flatcamEditors/FlatCAMGrbEditor.py:1767
  2867. msgid "Mark polygon areas in the edited Gerber ..."
  2868. msgstr "Marcar áreas de polígonos no Gerber editado..."
  2869. #: flatcamEditors/FlatCAMGrbEditor.py:1811
  2870. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2871. msgstr "[WARNING_NOTCL] Nada selecionado para se mover ..."
  2872. #: flatcamEditors/FlatCAMGrbEditor.py:1934
  2873. msgid "[success] Done. Apertures Move completed."
  2874. msgstr "[success] Feito. Mover Aberturas completo."
  2875. #: flatcamEditors/FlatCAMGrbEditor.py:2010
  2876. msgid "[success] Done. Apertures copied."
  2877. msgstr "[success] Feito. Aberturas copiadas."
  2878. #: flatcamEditors/FlatCAMGrbEditor.py:2301 flatcamGUI/FlatCAMGUI.py:1623
  2879. #: flatcamGUI/FlatCAMGUI.py:4353
  2880. msgid "Gerber Editor"
  2881. msgstr "Editor Gerber"
  2882. #: flatcamEditors/FlatCAMGrbEditor.py:2321 flatcamGUI/ObjectUI.py:192
  2883. msgid "<b>Apertures:</b>"
  2884. msgstr "<b> Aberturas: </b>"
  2885. #: flatcamEditors/FlatCAMGrbEditor.py:2323 flatcamGUI/ObjectUI.py:194
  2886. msgid "Apertures Table for the Gerber Object."
  2887. msgstr "Mesa de Aberturas para o Objeto Gerber."
  2888. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2889. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:228
  2890. msgid "Code"
  2891. msgstr "Código"
  2892. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2893. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:228
  2894. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  2895. msgid "Type"
  2896. msgstr "Tipo"
  2897. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2898. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:228
  2899. msgid "Size"
  2900. msgstr "Tamanho"
  2901. #: flatcamEditors/FlatCAMGrbEditor.py:2334
  2902. #: flatcamEditors/FlatCAMGrbEditor.py:3712 flatcamGUI/ObjectUI.py:228
  2903. msgid "Dim"
  2904. msgstr "Dim"
  2905. #: flatcamEditors/FlatCAMGrbEditor.py:2338 flatcamGUI/ObjectUI.py:232
  2906. msgid "Index"
  2907. msgstr "Índice"
  2908. #: flatcamEditors/FlatCAMGrbEditor.py:2340 flatcamGUI/ObjectUI.py:234
  2909. msgid "Aperture Code"
  2910. msgstr "Código de Abertura"
  2911. #: flatcamEditors/FlatCAMGrbEditor.py:2342 flatcamGUI/ObjectUI.py:236
  2912. msgid "Type of aperture: circular, rectangle, macros etc"
  2913. msgstr "Tipo de abertura: circular, retângulo, macros etc"
  2914. #: flatcamEditors/FlatCAMGrbEditor.py:2344
  2915. #: flatcamEditors/FlatCAMGrbEditor.py:2377 flatcamGUI/ObjectUI.py:238
  2916. msgid "Aperture Size:"
  2917. msgstr "Tamanho da abertura:"
  2918. #: flatcamEditors/FlatCAMGrbEditor.py:2346 flatcamGUI/ObjectUI.py:240
  2919. msgid ""
  2920. "Aperture Dimensions:\n"
  2921. " - (width, height) for R, O type.\n"
  2922. " - (dia, nVertices) for P type"
  2923. msgstr ""
  2924. "Dimensões da abertura: \n"
  2925. " - (largura, altura) para o tipo R, O. \n"
  2926. " - (dia, nVertices) para o tipo P"
  2927. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  2928. msgid "Aperture Code:"
  2929. msgstr "Código de Abertura:"
  2930. #: flatcamEditors/FlatCAMGrbEditor.py:2369
  2931. msgid "Code for the new aperture"
  2932. msgstr "Código para a nova abertura"
  2933. #: flatcamEditors/FlatCAMGrbEditor.py:2379
  2934. msgid ""
  2935. "Size for the new aperture.\n"
  2936. "If aperture type is 'R' or 'O' then\n"
  2937. "this value is automatically\n"
  2938. "calculated as:\n"
  2939. "sqrt(width**2 + height**2)"
  2940. msgstr ""
  2941. "Tamanho para a nova abertura. \n"
  2942. "Se o tipo de abertura for 'R' ou 'O' então \n"
  2943. "este valor será automaticamente \n"
  2944. "calculado como: \n"
  2945. "sqrt (largura^2 + altura^2)"
  2946. #: flatcamEditors/FlatCAMGrbEditor.py:2391
  2947. msgid "Aperture Type:"
  2948. msgstr "Tipo de Abertura:"
  2949. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  2950. msgid ""
  2951. "Select the type of new aperture. Can be:\n"
  2952. "C = circular\n"
  2953. "R = rectangular\n"
  2954. "O = oblong"
  2955. msgstr ""
  2956. "Selecione o tipo de nova abertura. Pode ser: \n"
  2957. "C = circular \n"
  2958. "R = retangular \n"
  2959. "O = oblongo"
  2960. #: flatcamEditors/FlatCAMGrbEditor.py:2404
  2961. msgid "Aperture Dim:"
  2962. msgstr "Dim Abertura:"
  2963. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  2964. msgid ""
  2965. "Dimensions for the new aperture.\n"
  2966. "Active only for rectangular apertures (type R).\n"
  2967. "The format is (width, height)"
  2968. msgstr ""
  2969. "Dimensões da nova abertura. \n"
  2970. "Ativa apenas para aberturas retangulares (tipo R). \n"
  2971. "O formato é (largura, altura)"
  2972. #: flatcamEditors/FlatCAMGrbEditor.py:2415
  2973. msgid "Add/Delete Aperture:"
  2974. msgstr "Adicionar/Excluir Abertura:"
  2975. #: flatcamEditors/FlatCAMGrbEditor.py:2417
  2976. msgid "Add/Delete an aperture in the aperture table"
  2977. msgstr "Adicionar/Excluir uma abertura na tabela de abertura"
  2978. #: flatcamEditors/FlatCAMGrbEditor.py:2426
  2979. msgid "Add a new aperture to the aperture list."
  2980. msgstr "Adicione uma nova abertura à lista de abertura."
  2981. #: flatcamEditors/FlatCAMGrbEditor.py:2431
  2982. msgid "Delete a aperture in the aperture list"
  2983. msgstr "Excluir uma abertura da lista de abertura"
  2984. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  2985. msgid "Buffer Aperture:"
  2986. msgstr "Buffer Aperture:"
  2987. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  2988. msgid "Buffer a aperture in the aperture list"
  2989. msgstr "Buffer de uma abertura na lista de abertura"
  2990. #: flatcamEditors/FlatCAMGrbEditor.py:2463
  2991. msgid ""
  2992. "There are 3 types of corners:\n"
  2993. " - 'Round': the corner is rounded.\n"
  2994. " - 'Square:' the corner is met in a sharp angle.\n"
  2995. " - 'Beveled:' the corner is a line that directly connects the features "
  2996. "meeting in the corner"
  2997. msgstr ""
  2998. "Existem 3 tipos de cantos: \n"
  2999. " - 'Round': o canto é arredondado. \n"
  3000. " - 'Square:' o canto é ângulo agudo. \n"
  3001. " - 'Beveled:' o canto é uma linha que conecta diretamente os recursos "
  3002. "reunidos no canto"
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:2478 flatcamGUI/FlatCAMGUI.py:721
  3004. #: flatcamGUI/FlatCAMGUI.py:1965
  3005. msgid "Buffer"
  3006. msgstr "Buffer"
  3007. #: flatcamEditors/FlatCAMGrbEditor.py:2493
  3008. msgid "Scale Aperture:"
  3009. msgstr "Redimensiona Abertura:"
  3010. #: flatcamEditors/FlatCAMGrbEditor.py:2495
  3011. msgid "Scale a aperture in the aperture list"
  3012. msgstr "Redimensionar uma abertura na lista de abertura"
  3013. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  3014. msgid "Scale factor:"
  3015. msgstr "Fator de escala:"
  3016. #: flatcamEditors/FlatCAMGrbEditor.py:2505
  3017. msgid ""
  3018. "The factor by which to scale the selected aperture.\n"
  3019. "Values can be between 0.0000 and 999.9999"
  3020. msgstr ""
  3021. "O fator para redimensionar a abertura selecionada. \n"
  3022. "Os valores podem estar entre 0,0000 e 999,9999"
  3023. #: flatcamEditors/FlatCAMGrbEditor.py:2531
  3024. msgid "Mark polygon areas:"
  3025. msgstr "Marcar áreas de polígonos:"
  3026. #: flatcamEditors/FlatCAMGrbEditor.py:2533
  3027. msgid "Mark the polygon areas."
  3028. msgstr "Marcar as áreas de polígonos."
  3029. #: flatcamEditors/FlatCAMGrbEditor.py:2541
  3030. msgid "Area UPPER threshold:"
  3031. msgstr "Limite de área SUPERIOR:"
  3032. #: flatcamEditors/FlatCAMGrbEditor.py:2543
  3033. msgid ""
  3034. "The threshold value, all areas less than this are marked.\n"
  3035. "Can have a value between 0.0000 and 9999.9999"
  3036. msgstr ""
  3037. "Valor limite, todas as áreas menores que isso são marcadas."
  3038. "Pode ser um valor entre 0.0000 e 9999.9999"
  3039. #: flatcamEditors/FlatCAMGrbEditor.py:2549
  3040. msgid "Area LOWER threshold:"
  3041. msgstr "Limite de área INFERIOR:"
  3042. #: flatcamEditors/FlatCAMGrbEditor.py:2551
  3043. msgid ""
  3044. "The threshold value, all areas more than this are marked.\n"
  3045. "Can have a value between 0.0000 and 9999.9999"
  3046. msgstr ""
  3047. "Valor limite, todas as áreas maiores que isso são marcadas."
  3048. "Pode ser um valor entre 0.0000 e 9999.9999"
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:2564
  3050. msgid "Go"
  3051. msgstr "Ir"
  3052. #: flatcamEditors/FlatCAMGrbEditor.py:2584 flatcamGUI/FlatCAMGUI.py:711
  3053. #: flatcamGUI/FlatCAMGUI.py:1955
  3054. msgid "Add Pad Array"
  3055. msgstr "Adicionar Matriz de Pads"
  3056. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  3057. msgid "Add an array of pads (linear or circular array)"
  3058. msgstr "Adicione uma matriz de pads (matriz linear ou circular)"
  3059. #: flatcamEditors/FlatCAMGrbEditor.py:2592
  3060. msgid ""
  3061. "Select the type of pads array to create.\n"
  3062. "It can be Linear X(Y) or Circular"
  3063. msgstr ""
  3064. "Selecione o tipo de matriz de pads para criar. \n"
  3065. "Pode ser Linear X(Y) ou Circular"
  3066. #: flatcamEditors/FlatCAMGrbEditor.py:2603
  3067. msgid "Nr of pads:"
  3068. msgstr "Nº de pads:"
  3069. #: flatcamEditors/FlatCAMGrbEditor.py:2605
  3070. msgid "Specify how many pads to be in the array."
  3071. msgstr "Especifique quantos pads devem estar na matriz."
  3072. #: flatcamEditors/FlatCAMGrbEditor.py:3093
  3073. #: flatcamEditors/FlatCAMGrbEditor.py:3097
  3074. msgid ""
  3075. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  3076. "retry."
  3077. msgstr ""
  3078. "[WARNING_NOTCL] O valor do código de abertura está em falta ou em formato "
  3079. "incorreto. Altere e tente novamente."
  3080. #: flatcamEditors/FlatCAMGrbEditor.py:3133
  3081. msgid ""
  3082. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3083. "in format (width, height) and retry."
  3084. msgstr ""
  3085. "[WARNING_NOTCL] O valor das dimensões da abertura está em falta ou está no "
  3086. "formato errado. Altere (largura, altura) e tente novamente."
  3087. #: flatcamEditors/FlatCAMGrbEditor.py:3145
  3088. msgid ""
  3089. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3090. "retry."
  3091. msgstr ""
  3092. "[WARNING_NOTCL] O valor do tamanho da abertura está ausente ou está no "
  3093. "formato errado. Altere e tente novamente."
  3094. #: flatcamEditors/FlatCAMGrbEditor.py:3156
  3095. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  3096. msgstr "[WARNING_NOTCL] Abertura já na tabela de abertura."
  3097. #: flatcamEditors/FlatCAMGrbEditor.py:3163
  3098. #, python-brace-format
  3099. msgid "[success] Added new aperture with code: {apid}"
  3100. msgstr "[success] Adicionada nova abertura com código: {apid}"
  3101. #: flatcamEditors/FlatCAMGrbEditor.py:3191
  3102. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3103. msgstr "[WARNING_NOTCL] Selecione uma abertura na Tabela de Abertura"
  3104. #: flatcamEditors/FlatCAMGrbEditor.py:3197
  3105. #, python-format
  3106. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3107. msgstr "[WARNING_NOTCL] Selecione uma abertura na Tabela de Abertura -> %s"
  3108. #: flatcamEditors/FlatCAMGrbEditor.py:3220
  3109. #, python-brace-format
  3110. msgid "[success] Deleted aperture with code: {del_dia}"
  3111. msgstr "[success] Abertura excluída com código: {del_dia}"
  3112. #: flatcamEditors/FlatCAMGrbEditor.py:3641
  3113. #, python-format
  3114. msgid "Adding aperture: %s geo ..."
  3115. msgstr "Adicionando abertura: %s geo ..."
  3116. #: flatcamEditors/FlatCAMGrbEditor.py:3829
  3117. msgid ""
  3118. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3119. "creation."
  3120. msgstr ""
  3121. "[ERROR_NOTCL] Não há definições do Aperture no arquivo. Abortando a criação "
  3122. "de Gerber."
  3123. #: flatcamEditors/FlatCAMGrbEditor.py:3832
  3124. msgid "[ERROR] An internal error has occurred. See shell.\n"
  3125. msgstr "[ERROR] Ocorreu um erro interno. Veja shell. (linha de comando)\n"
  3126. #: flatcamEditors/FlatCAMGrbEditor.py:3837
  3127. msgid "Creating Gerber."
  3128. msgstr "Criando Gerber."
  3129. #: flatcamEditors/FlatCAMGrbEditor.py:3845
  3130. msgid "[success] Gerber editing finished."
  3131. msgstr "[success] Edição de Gerber finalizada."
  3132. #: flatcamEditors/FlatCAMGrbEditor.py:3861
  3133. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3134. msgstr "[WARNING_NOTCL] Cancelado. Nenhuma abertura selecionada"
  3135. #: flatcamEditors/FlatCAMGrbEditor.py:4391
  3136. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3137. msgstr "[ERROR_NOTCL] Falhou. Nenhuma geometria de abertura selecionada."
  3138. #: flatcamEditors/FlatCAMGrbEditor.py:4399
  3139. msgid "[success] Done. Apertures geometry deleted."
  3140. msgstr "[success] Feito. Geometria das aberturas excluída."
  3141. #: flatcamEditors/FlatCAMGrbEditor.py:4542
  3142. msgid ""
  3143. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3144. "again."
  3145. msgstr ""
  3146. "[WARNING_NOTCL] Nenhuma abertura para buffer. Selecione pelo menos uma "
  3147. "abertura e tente novamente."
  3148. #: flatcamEditors/FlatCAMGrbEditor.py:4555
  3149. #, python-format
  3150. msgid ""
  3151. "[ERROR_NOTCL] Failed.\n"
  3152. "%s"
  3153. msgstr ""
  3154. "[ERROR_NOTCL] falhou. \n"
  3155. " %s"
  3156. #: flatcamEditors/FlatCAMGrbEditor.py:4572
  3157. msgid ""
  3158. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3159. "retry."
  3160. msgstr ""
  3161. "[WARNING_NOTCL] O valor do fator de escala está ausente ou está em formato "
  3162. "incorreto. Altere e tente novamente."
  3163. #: flatcamEditors/FlatCAMGrbEditor.py:4605
  3164. msgid ""
  3165. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3166. "again."
  3167. msgstr ""
  3168. "[WARNING_NOTCL] Nenhuma abertura a redimensionar. Selecione pelo menos uma "
  3169. "abertura e tente novamente."
  3170. #: flatcamEditors/FlatCAMGrbEditor.py:4621
  3171. msgid "[success] Done. Scale Tool completed."
  3172. msgstr "[success] Redimensionamento concluído."
  3173. #: flatcamEditors/FlatCAMGrbEditor.py:4658
  3174. msgid "[success] Polygon areas marked."
  3175. msgstr "[success] Áreas de polígono marcadas."
  3176. #: flatcamEditors/FlatCAMGrbEditor.py:4660
  3177. msgid "[WARNING_NOTCL] There are no polygons to mark area."
  3178. msgstr "[WARNING_NOTCL] Não há polígonos para marcar a área."
  3179. #: flatcamGUI/FlatCAMGUI.py:50
  3180. msgid "&File"
  3181. msgstr "&Arquivo"
  3182. #: flatcamGUI/FlatCAMGUI.py:55
  3183. msgid "&New Project ...\tCTRL+N"
  3184. msgstr "&Novo Projeto ...\tCTRL + N"
  3185. #: flatcamGUI/FlatCAMGUI.py:57
  3186. msgid "Will create a new, blank project"
  3187. msgstr "Vai criar um novo projeto em branco"
  3188. #: flatcamGUI/FlatCAMGUI.py:62
  3189. msgid "&New"
  3190. msgstr "&Novo"
  3191. #: flatcamGUI/FlatCAMGUI.py:65
  3192. msgid "Geometry\tN"
  3193. msgstr "Geometria\tN"
  3194. #: flatcamGUI/FlatCAMGUI.py:67
  3195. msgid "Will create a new, empty Geometry Object."
  3196. msgstr "Irá criar um novo Objeto Geometria vazio."
  3197. #: flatcamGUI/FlatCAMGUI.py:69
  3198. msgid "Gerber\tB"
  3199. msgstr "Gerber\tB"
  3200. #: flatcamGUI/FlatCAMGUI.py:71
  3201. msgid "Will create a new, empty Gerber Object."
  3202. msgstr "Irá criar um novo Objeto Gerber vazio."
  3203. #: flatcamGUI/FlatCAMGUI.py:73
  3204. msgid "Excellon\tL"
  3205. msgstr "Excellon\tL"
  3206. #: flatcamGUI/FlatCAMGUI.py:75
  3207. msgid "Will create a new, empty Excellon Object."
  3208. msgstr "Irá criar um novo Objeto Excellon vazio."
  3209. #: flatcamGUI/FlatCAMGUI.py:78 flatcamTools/ToolPcbWizard.py:62
  3210. #: flatcamTools/ToolPcbWizard.py:69
  3211. msgid "Open"
  3212. msgstr "Abrir"
  3213. #: flatcamGUI/FlatCAMGUI.py:83
  3214. msgid "Open &Gerber ...\tCTRL+G"
  3215. msgstr "Abrir &Gerber ...\tCTRL+G"
  3216. #: flatcamGUI/FlatCAMGUI.py:90
  3217. msgid "Open &Excellon ...\tCTRL+E"
  3218. msgstr "Abrir &Excellon ...\tCTRL+E"
  3219. #: flatcamGUI/FlatCAMGUI.py:95
  3220. msgid "Open G-&Code ..."
  3221. msgstr "Abrir G-&Code ..."
  3222. #: flatcamGUI/FlatCAMGUI.py:99
  3223. msgid "Open &Project ..."
  3224. msgstr "Abrir &Projeto ..."
  3225. #: flatcamGUI/FlatCAMGUI.py:105
  3226. msgid "Open Config ..."
  3227. msgstr "Abrir Configuração ..."
  3228. #: flatcamGUI/FlatCAMGUI.py:109
  3229. msgid "Recent files"
  3230. msgstr "Arquivos recentes"
  3231. #: flatcamGUI/FlatCAMGUI.py:115
  3232. msgid "Scripting"
  3233. msgstr "Scripting"
  3234. #: flatcamGUI/FlatCAMGUI.py:118
  3235. msgid "New Script ..."
  3236. msgstr "Novo Script ..."
  3237. #: flatcamGUI/FlatCAMGUI.py:120
  3238. msgid "Open Script ..."
  3239. msgstr "Abrir Script ..."
  3240. #: flatcamGUI/FlatCAMGUI.py:122
  3241. msgid "Run Script ...\tSHIFT+S"
  3242. msgstr "Executar Script ...\tSHIFT+S"
  3243. #: flatcamGUI/FlatCAMGUI.py:125
  3244. msgid ""
  3245. "Will run the opened Tcl Script thus\n"
  3246. "enabling the automation of certain\n"
  3247. "functions of FlatCAM."
  3248. msgstr ""
  3249. "Irá executar o script TCL aberto \n"
  3250. "ativando a automação de certas \n"
  3251. "funções do FlatCAM."
  3252. #: flatcamGUI/FlatCAMGUI.py:138
  3253. msgid "Import"
  3254. msgstr "Importar"
  3255. #: flatcamGUI/FlatCAMGUI.py:140
  3256. msgid "&SVG as Geometry Object ..."
  3257. msgstr "&SVG como Objeto de Geometria ..."
  3258. #: flatcamGUI/FlatCAMGUI.py:143
  3259. msgid "&SVG as Gerber Object ..."
  3260. msgstr "&SVG como objeto Gerber ..."
  3261. #: flatcamGUI/FlatCAMGUI.py:148
  3262. msgid "&DXF as Geometry Object ..."
  3263. msgstr "&DXF como Objeto de Geometria ..."
  3264. #: flatcamGUI/FlatCAMGUI.py:151
  3265. msgid "&DXF as Gerber Object ..."
  3266. msgstr "&DXF como Objeto Gerber ..."
  3267. #: flatcamGUI/FlatCAMGUI.py:156
  3268. msgid "Export"
  3269. msgstr "Exportar"
  3270. #: flatcamGUI/FlatCAMGUI.py:159
  3271. msgid "Export &SVG ..."
  3272. msgstr "Exportar &SVG ..."
  3273. #: flatcamGUI/FlatCAMGUI.py:162
  3274. msgid "Export DXF ..."
  3275. msgstr "Exportar DXF ..."
  3276. #: flatcamGUI/FlatCAMGUI.py:167
  3277. msgid "Export &PNG ..."
  3278. msgstr "Exportar &PNG ..."
  3279. #: flatcamGUI/FlatCAMGUI.py:169
  3280. msgid ""
  3281. "Will export an image in PNG format,\n"
  3282. "the saved image will contain the visual \n"
  3283. "information currently in FlatCAM Plot Area."
  3284. msgstr ""
  3285. "Irá exportar uma imagem em formato PNG, \n"
  3286. " a imagem salva conterá as informações \n"
  3287. " visuais atualmente na área gráfica FlatCAM."
  3288. #: flatcamGUI/FlatCAMGUI.py:177
  3289. msgid "Export &Excellon ..."
  3290. msgstr "Exportar &Excellon ..."
  3291. #: flatcamGUI/FlatCAMGUI.py:180
  3292. msgid ""
  3293. "Will export an Excellon Object as Excellon file,\n"
  3294. "the coordinates format, the file units and zeros\n"
  3295. "are set in Preferences -> Excellon Export."
  3296. msgstr ""
  3297. "Irá exportar um Objeto Excellon como arquivo Excel, \n"
  3298. "no formato de coordenadas, as unidades de arquivo e os zeros \n"
  3299. "são definidos em Preferências -> Exportação de Excellon."
  3300. #: flatcamGUI/FlatCAMGUI.py:186
  3301. msgid "Export &Gerber ..."
  3302. msgstr "Exportar &Gerber ..."
  3303. #: flatcamGUI/FlatCAMGUI.py:189
  3304. msgid ""
  3305. "Will export an Gerber Object as Gerber file,\n"
  3306. "the coordinates format, the file units and zeros\n"
  3307. "are set in Preferences -> Gerber Export."
  3308. msgstr ""
  3309. "Irá exportar um Objeto Gerber como arquivo Gerber, \n"
  3310. "o formato de coordenadas, as unidades de arquivo e os zeros \n"
  3311. "estão definidos em Preferências -> Exportação de Gerber."
  3312. #: flatcamGUI/FlatCAMGUI.py:199
  3313. msgid "Save &Defaults"
  3314. msgstr "Salvar Pa&drões"
  3315. #: flatcamGUI/FlatCAMGUI.py:205 flatcamGUI/FlatCAMGUI.py:532
  3316. msgid "Save"
  3317. msgstr "Salvar"
  3318. #: flatcamGUI/FlatCAMGUI.py:208
  3319. msgid "&Save Project ..."
  3320. msgstr "&Salvar Projeto ..."
  3321. #: flatcamGUI/FlatCAMGUI.py:213
  3322. msgid "Save Project &As ...\tCTRL+S"
  3323. msgstr "Salvar Projeto &Como ...\tCTRL+S"
  3324. #: flatcamGUI/FlatCAMGUI.py:217
  3325. msgid "Save Project C&opy ..."
  3326. msgstr "Salvar Cópia do Pr&ojeto ..."
  3327. #: flatcamGUI/FlatCAMGUI.py:225
  3328. msgid "E&xit"
  3329. msgstr "Sair"
  3330. #: flatcamGUI/FlatCAMGUI.py:231
  3331. msgid "&Edit"
  3332. msgstr "&Editar"
  3333. #: flatcamGUI/FlatCAMGUI.py:234
  3334. msgid "Edit Object\tE"
  3335. msgstr "Editar Objeto\tE"
  3336. #: flatcamGUI/FlatCAMGUI.py:235
  3337. msgid "Close Editor\tCTRL+S"
  3338. msgstr "Fechar Editor\tCTRL+S"
  3339. #: flatcamGUI/FlatCAMGUI.py:243
  3340. msgid "Conversion"
  3341. msgstr "Conversão"
  3342. #: flatcamGUI/FlatCAMGUI.py:245
  3343. msgid "&Join Geo/Gerber/Exc -> Geo"
  3344. msgstr "&Unir Geo/Gerber/Exc -> Geo"
  3345. #: flatcamGUI/FlatCAMGUI.py:247
  3346. msgid ""
  3347. "Merge a selection of objects, which can be of type:\n"
  3348. "- Gerber\n"
  3349. "- Excellon\n"
  3350. "- Geometry\n"
  3351. "into a new combo Geometry object."
  3352. msgstr ""
  3353. "Mesclar uma seleção de objetos, que podem ser do tipo: \n"
  3354. "- Gerber\n"
  3355. "- Excellon\n"
  3356. "- Geometria\n"
  3357. " em um novo objeto Geometria."
  3358. #: flatcamGUI/FlatCAMGUI.py:254
  3359. msgid "Join Excellon(s) -> Excellon"
  3360. msgstr "Unir Excellon(s) -> Excellon"
  3361. #: flatcamGUI/FlatCAMGUI.py:256
  3362. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3363. msgstr "Mesclar uma seleção de objetos Excellon em um novo objeto Excellon."
  3364. #: flatcamGUI/FlatCAMGUI.py:259
  3365. msgid "Join Gerber(s) -> Gerber"
  3366. msgstr "Unir Gerber(s) -> Gerber"
  3367. #: flatcamGUI/FlatCAMGUI.py:261
  3368. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3369. msgstr "Mesclar uma seleção de objetos Gerber em um novo objeto Gerber."
  3370. #: flatcamGUI/FlatCAMGUI.py:266
  3371. msgid "Convert Single to MultiGeo"
  3372. msgstr "Converter Single para MultiGeo"
  3373. #: flatcamGUI/FlatCAMGUI.py:268
  3374. msgid ""
  3375. "Will convert a Geometry object from single_geometry type\n"
  3376. "to a multi_geometry type."
  3377. msgstr ""
  3378. "Converterá um objeto Geometria do tipo single_geometry\n"
  3379. "em um tipo multi_geometry."
  3380. #: flatcamGUI/FlatCAMGUI.py:272
  3381. msgid "Convert Multi to SingleGeo"
  3382. msgstr "Converter Multi para SingleGeo"
  3383. #: flatcamGUI/FlatCAMGUI.py:274
  3384. msgid ""
  3385. "Will convert a Geometry object from multi_geometry type\n"
  3386. "to a single_geometry type."
  3387. msgstr ""
  3388. "Converterá um objeto Geometria do tipo multi_geometry\n"
  3389. "em um tipo single_geometry."
  3390. #: flatcamGUI/FlatCAMGUI.py:280
  3391. msgid "Convert Any to Geo"
  3392. msgstr "Converter Qualquer para Geo"
  3393. #: flatcamGUI/FlatCAMGUI.py:282
  3394. msgid "Convert Any to Gerber"
  3395. msgstr "Converter Qualquer para Gerber"
  3396. #: flatcamGUI/FlatCAMGUI.py:287
  3397. msgid "&Copy\tCTRL+C"
  3398. msgstr "&Copiar\tCTRL+C"
  3399. #: flatcamGUI/FlatCAMGUI.py:291
  3400. msgid "&Delete\tDEL"
  3401. msgstr "&Excluir\tDEL"
  3402. #: flatcamGUI/FlatCAMGUI.py:295
  3403. msgid "Se&t Origin\tO"
  3404. msgstr "De&finir Origem\tO"
  3405. #: flatcamGUI/FlatCAMGUI.py:296
  3406. msgid "Jump to Location\tJ"
  3407. msgstr "Ir para a localização\tJ"
  3408. #: flatcamGUI/FlatCAMGUI.py:301
  3409. msgid "Toggle Units\tQ"
  3410. msgstr "Alternar Unidades\tQ"
  3411. #: flatcamGUI/FlatCAMGUI.py:303
  3412. msgid "&Select All\tCTRL+A"
  3413. msgstr "&Selecionar Tudo\tCTRL+A"
  3414. #: flatcamGUI/FlatCAMGUI.py:307
  3415. msgid "&Preferences\tSHIFT+P"
  3416. msgstr "&Preferências\tSHIFT+P"
  3417. #: flatcamGUI/FlatCAMGUI.py:310
  3418. msgid "&Options"
  3419. msgstr "&Opções"
  3420. #: flatcamGUI/FlatCAMGUI.py:325
  3421. msgid "&Rotate Selection\tSHIFT+(R)"
  3422. msgstr "Gi&rar seleção\tSHIFT+(R)"
  3423. #: flatcamGUI/FlatCAMGUI.py:330
  3424. msgid "&Skew on X axis\tSHIFT+X"
  3425. msgstr "&Inclinar no eixo X\tSHIFT+X"
  3426. #: flatcamGUI/FlatCAMGUI.py:332
  3427. msgid "S&kew on Y axis\tSHIFT+Y"
  3428. msgstr "&Inclinar no eixo Y\tSHIFT+Y"
  3429. #: flatcamGUI/FlatCAMGUI.py:337
  3430. msgid "Flip on &X axis\tX"
  3431. msgstr "Espelhar no eixo &X\tX"
  3432. #: flatcamGUI/FlatCAMGUI.py:339
  3433. msgid "Flip on &Y axis\tY"
  3434. msgstr "Espelhar no eixo &Y\tY"
  3435. #: flatcamGUI/FlatCAMGUI.py:344
  3436. msgid "View source\tALT+S"
  3437. msgstr "Ver fonte\tALT+S"
  3438. #: flatcamGUI/FlatCAMGUI.py:349
  3439. msgid "&View"
  3440. msgstr "&Ver"
  3441. #: flatcamGUI/FlatCAMGUI.py:350
  3442. msgid "Enable all plots\tALT+1"
  3443. msgstr "Habilitar todos os gráficos\tALT+1"
  3444. #: flatcamGUI/FlatCAMGUI.py:352
  3445. msgid "Disable all plots\tALT+2"
  3446. msgstr "Desabilitar todos os gráficos\tALT+2"
  3447. #: flatcamGUI/FlatCAMGUI.py:354
  3448. msgid "Disable non-selected\tALT+3"
  3449. msgstr "Desabilitar os não selecionados\tALT+3"
  3450. #: flatcamGUI/FlatCAMGUI.py:357
  3451. msgid "&Zoom Fit\tV"
  3452. msgstr "&Zoom Ajustado\tV"
  3453. #: flatcamGUI/FlatCAMGUI.py:358
  3454. msgid "&Zoom In\t="
  3455. msgstr "&Zoom +\t="
  3456. #: flatcamGUI/FlatCAMGUI.py:359
  3457. msgid "&Zoom Out\t-"
  3458. msgstr "&Zoom -\t-"
  3459. #: flatcamGUI/FlatCAMGUI.py:363
  3460. msgid "Toggle Code Editor\tCTRL+E"
  3461. msgstr "Alternar o Editor de Códigos\tCTRL+E"
  3462. #: flatcamGUI/FlatCAMGUI.py:366
  3463. msgid "&Toggle FullScreen\tALT+F10"
  3464. msgstr "Alternar &Tela Cheia\tALT+F10"
  3465. #: flatcamGUI/FlatCAMGUI.py:368
  3466. msgid "&Toggle Plot Area\tCTRL+F10"
  3467. msgstr "Al&ternar Área de Gráficos\tCTRL+F10"
  3468. #: flatcamGUI/FlatCAMGUI.py:370
  3469. msgid "&Toggle Project/Sel/Tool\t`"
  3470. msgstr "Al&ternar Projeto/Sel/Ferram\t`"
  3471. #: flatcamGUI/FlatCAMGUI.py:373
  3472. msgid "&Toggle Grid Snap\tG"
  3473. msgstr "Al&ternar Encaixe na Grade\tG"
  3474. #: flatcamGUI/FlatCAMGUI.py:375
  3475. msgid "&Toggle Axis\tSHIFT+G"
  3476. msgstr "&Alternar Eixo\tSHIFT+G"
  3477. #: flatcamGUI/FlatCAMGUI.py:378
  3478. msgid "Toggle Workspace\tSHIFT+W"
  3479. msgstr "Al&ternar Espaço de Trabalho\tSHIFT+W"
  3480. #: flatcamGUI/FlatCAMGUI.py:381
  3481. msgid "&Tool"
  3482. msgstr "Ferramen&ta"
  3483. #: flatcamGUI/FlatCAMGUI.py:383
  3484. msgid "&Command Line\tS"
  3485. msgstr "Linha de &Comando\tS"
  3486. #: flatcamGUI/FlatCAMGUI.py:386
  3487. msgid "&Help"
  3488. msgstr "&Ajuda"
  3489. #: flatcamGUI/FlatCAMGUI.py:387
  3490. msgid "Help\tF1"
  3491. msgstr "Ajuda\tF1"
  3492. #: flatcamGUI/FlatCAMGUI.py:388
  3493. msgid "FlatCAM.org"
  3494. msgstr "FlatCAM.org"
  3495. #: flatcamGUI/FlatCAMGUI.py:391
  3496. msgid "Shortcuts List\tF3"
  3497. msgstr "Lista de Atalhos\tF3"
  3498. #: flatcamGUI/FlatCAMGUI.py:392
  3499. msgid "YouTube Channel\tF4"
  3500. msgstr "Canal do no YouTube\tF4"
  3501. #: flatcamGUI/FlatCAMGUI.py:394
  3502. msgid "About"
  3503. msgstr "Sobre"
  3504. #: flatcamGUI/FlatCAMGUI.py:401
  3505. msgid "Add Circle\tO"
  3506. msgstr "Adicionar Círculo\tO"
  3507. #: flatcamGUI/FlatCAMGUI.py:403
  3508. msgid "Add Arc\tA"
  3509. msgstr "Adicionar Arco\tA"
  3510. #: flatcamGUI/FlatCAMGUI.py:406
  3511. msgid "Add Rectangle\tR"
  3512. msgstr "Adicionar Retângulo\tR"
  3513. #: flatcamGUI/FlatCAMGUI.py:409
  3514. msgid "Add Polygon\tN"
  3515. msgstr "Adicionar Polígono\tN"
  3516. #: flatcamGUI/FlatCAMGUI.py:411
  3517. msgid "Add Path\tP"
  3518. msgstr "Adicionar Caminho\tP"
  3519. #: flatcamGUI/FlatCAMGUI.py:413
  3520. msgid "Add Text\tT"
  3521. msgstr "Adicionar Texto\tT"
  3522. #: flatcamGUI/FlatCAMGUI.py:416
  3523. msgid "Polygon Union\tU"
  3524. msgstr "Unir Polígonos\tU"
  3525. #: flatcamGUI/FlatCAMGUI.py:418
  3526. msgid "Polygon Intersection\tE"
  3527. msgstr "Interseção de Polígonos\tE"
  3528. #: flatcamGUI/FlatCAMGUI.py:420
  3529. msgid "Polygon Subtraction\tS"
  3530. msgstr "Subtração de Polígonos\tS"
  3531. #: flatcamGUI/FlatCAMGUI.py:424
  3532. msgid "Cut Path\tX"
  3533. msgstr "Caminho de Corte\tX"
  3534. #: flatcamGUI/FlatCAMGUI.py:426
  3535. msgid "Copy Geom\tC"
  3536. msgstr "Copiar Geom\tC"
  3537. #: flatcamGUI/FlatCAMGUI.py:428
  3538. msgid "Delete Shape\tDEL"
  3539. msgstr "Excluir Forma\tDEL"
  3540. #: flatcamGUI/FlatCAMGUI.py:431 flatcamGUI/FlatCAMGUI.py:507
  3541. msgid "Move\tM"
  3542. msgstr "Mover\tM"
  3543. #: flatcamGUI/FlatCAMGUI.py:433
  3544. msgid "Buffer Tool\tB"
  3545. msgstr "Ferramenta Buffer\tB"
  3546. #: flatcamGUI/FlatCAMGUI.py:436
  3547. msgid "Paint Tool\tI"
  3548. msgstr "Ferramenta de Pintura\tI"
  3549. #: flatcamGUI/FlatCAMGUI.py:439
  3550. msgid "Transform Tool\tALT+R"
  3551. msgstr "Ferramenta de Transformação\tALT+R"
  3552. #: flatcamGUI/FlatCAMGUI.py:443
  3553. msgid "Toggle Corner Snap\tK"
  3554. msgstr "Alternar Encaixe de Canto\tK"
  3555. #: flatcamGUI/FlatCAMGUI.py:446
  3556. msgid ">Excellon Editor<"
  3557. msgstr ">Editor Excellon<"
  3558. #: flatcamGUI/FlatCAMGUI.py:450
  3559. msgid "Add Drill Array\tA"
  3560. msgstr "Adicionar Matriz de Brocas\tA"
  3561. #: flatcamGUI/FlatCAMGUI.py:452
  3562. msgid "Add Drill\tD"
  3563. msgstr "Adicionar Broca\tD"
  3564. #: flatcamGUI/FlatCAMGUI.py:456
  3565. msgid "Resize Drill(S)\tR"
  3566. msgstr "Redimensionar Broca(s)\tR"
  3567. #: flatcamGUI/FlatCAMGUI.py:458 flatcamGUI/FlatCAMGUI.py:500
  3568. msgid "Copy\tC"
  3569. msgstr "Copiar\tC"
  3570. #: flatcamGUI/FlatCAMGUI.py:460 flatcamGUI/FlatCAMGUI.py:502
  3571. msgid "Delete\tDEL"
  3572. msgstr "Excluir\tDEL"
  3573. #: flatcamGUI/FlatCAMGUI.py:465
  3574. msgid "Move Drill(s)\tM"
  3575. msgstr "Mover Broca(s)\tM"
  3576. #: flatcamGUI/FlatCAMGUI.py:468
  3577. msgid ">Gerber Editor<"
  3578. msgstr ">Editor Gerber<"
  3579. #: flatcamGUI/FlatCAMGUI.py:472
  3580. msgid "Add Pad\tP"
  3581. msgstr "Adicionar Pad\tP"
  3582. #: flatcamGUI/FlatCAMGUI.py:474
  3583. msgid "Add Pad Array\tA"
  3584. msgstr "Adicionar Matriz de Pads\tA"
  3585. #: flatcamGUI/FlatCAMGUI.py:476
  3586. msgid "Add Track\tT"
  3587. msgstr "Adicionar Trilha\tT"
  3588. #: flatcamGUI/FlatCAMGUI.py:478
  3589. msgid "Add Region\tN"
  3590. msgstr "Adicionar Região\tN"
  3591. #: flatcamGUI/FlatCAMGUI.py:482
  3592. msgid "Poligonize\tALT+N"
  3593. msgstr "Poligonizar\tALT+N"
  3594. #: flatcamGUI/FlatCAMGUI.py:484
  3595. msgid "Add SemiDisc\tE"
  3596. msgstr "Adicionar SemiDisc\tE"
  3597. #: flatcamGUI/FlatCAMGUI.py:486
  3598. msgid "Add Disc\tD"
  3599. msgstr "Adicionar Disco\tD"
  3600. #: flatcamGUI/FlatCAMGUI.py:488
  3601. msgid "Buffer\tB"
  3602. msgstr "Buffer\tB"
  3603. #: flatcamGUI/FlatCAMGUI.py:490
  3604. msgid "Scale\tS"
  3605. msgstr "Escala\tS"
  3606. #: flatcamGUI/FlatCAMGUI.py:492
  3607. msgid "Mark Area\tALT+A"
  3608. msgstr "Marcar Área\tALT+A"
  3609. #: flatcamGUI/FlatCAMGUI.py:494
  3610. msgid "Eraser\tCTRL+E"
  3611. msgstr "Apagar\tCTRL+E"
  3612. #: flatcamGUI/FlatCAMGUI.py:496
  3613. msgid "Transform\tALT+R"
  3614. msgstr "Transformar\tALT+R"
  3615. #: flatcamGUI/FlatCAMGUI.py:523
  3616. msgid "Enable Plot"
  3617. msgstr "Habilitar Gráfico"
  3618. #: flatcamGUI/FlatCAMGUI.py:524 flatcamGUI/FlatCAMGUI.py:1596
  3619. msgid "Disable Plot"
  3620. msgstr "Desabilitar Gráfico"
  3621. #: flatcamGUI/FlatCAMGUI.py:526
  3622. msgid "Generate CNC"
  3623. msgstr "Gerar CNC"
  3624. #: flatcamGUI/FlatCAMGUI.py:527
  3625. msgid "View Source"
  3626. msgstr "Ver Fonte"
  3627. #: flatcamGUI/FlatCAMGUI.py:529 flatcamGUI/FlatCAMGUI.py:1636
  3628. msgid "Edit"
  3629. msgstr "Editar"
  3630. #: flatcamGUI/FlatCAMGUI.py:535 flatcamGUI/FlatCAMGUI.py:1642
  3631. #: flatcamTools/ToolProperties.py:25
  3632. msgid "Properties"
  3633. msgstr "Propriedades"
  3634. #: flatcamGUI/FlatCAMGUI.py:564
  3635. msgid "File Toolbar"
  3636. msgstr "Barra de Ferramentas de Arquivos"
  3637. #: flatcamGUI/FlatCAMGUI.py:568
  3638. msgid "Edit Toolbar"
  3639. msgstr "Barra de Ferramentas Editar"
  3640. #: flatcamGUI/FlatCAMGUI.py:572
  3641. msgid "View Toolbar"
  3642. msgstr "Barra de Ferramentas Ver"
  3643. #: flatcamGUI/FlatCAMGUI.py:576
  3644. msgid "Shell Toolbar"
  3645. msgstr "Barra de Ferramentas Shell"
  3646. #: flatcamGUI/FlatCAMGUI.py:580
  3647. msgid "Tools Toolbar"
  3648. msgstr "Barra de Ferramentas Ferramentas"
  3649. #: flatcamGUI/FlatCAMGUI.py:584
  3650. msgid "Excellon Editor Toolbar"
  3651. msgstr "Barra de Ferramentas Editor Excellon"
  3652. #: flatcamGUI/FlatCAMGUI.py:588
  3653. msgid "Geometry Editor Toolbar"
  3654. msgstr "Barra de Ferramentas Editor de Geometria"
  3655. #: flatcamGUI/FlatCAMGUI.py:592
  3656. msgid "Gerber Editor Toolbar"
  3657. msgstr "Barra de Ferramentas Editor Gerber"
  3658. #: flatcamGUI/FlatCAMGUI.py:596
  3659. msgid "Grid Toolbar"
  3660. msgstr "Barra de Ferramentas Grade"
  3661. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1854
  3662. msgid "Open project"
  3663. msgstr "Abrir projeto"
  3664. #: flatcamGUI/FlatCAMGUI.py:616 flatcamGUI/FlatCAMGUI.py:1855
  3665. msgid "Save project"
  3666. msgstr "Salvar projeto"
  3667. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1858
  3668. msgid "New Blank Geometry"
  3669. msgstr "Nova Geometria em Branco"
  3670. #: flatcamGUI/FlatCAMGUI.py:620
  3671. msgid "New Blank Gerber"
  3672. msgstr "Novo Gerber em branco"
  3673. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1859
  3674. msgid "New Blank Excellon"
  3675. msgstr "Novo Excellon em branco"
  3676. #: flatcamGUI/FlatCAMGUI.py:623 flatcamGUI/FlatCAMGUI.py:1861
  3677. msgid "Editor"
  3678. msgstr "Editor"
  3679. #: flatcamGUI/FlatCAMGUI.py:625 flatcamGUI/FlatCAMGUI.py:1863
  3680. msgid "Save Object and close the Editor"
  3681. msgstr "Salvar objeto e fechar o editor"
  3682. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1867
  3683. msgid "&Delete"
  3684. msgstr "&Excluir"
  3685. #: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1870
  3686. msgid "&Replot"
  3687. msgstr "&Redesenhar"
  3688. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1871
  3689. msgid "&Clear plot"
  3690. msgstr "Limpar gráfi&co"
  3691. #: flatcamGUI/FlatCAMGUI.py:634 flatcamGUI/FlatCAMGUI.py:1872
  3692. msgid "Zoom In"
  3693. msgstr "Zoom +"
  3694. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1873
  3695. msgid "Zoom Out"
  3696. msgstr "Zoom -"
  3697. #: flatcamGUI/FlatCAMGUI.py:636 flatcamGUI/FlatCAMGUI.py:1611
  3698. #: flatcamGUI/FlatCAMGUI.py:1874
  3699. msgid "Zoom Fit"
  3700. msgstr "Zoom Ajustado"
  3701. #: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1879
  3702. msgid "&Command Line"
  3703. msgstr "Linha de &Comando"
  3704. #: flatcamGUI/FlatCAMGUI.py:644 flatcamGUI/FlatCAMGUI.py:1882
  3705. msgid "2Sided Tool"
  3706. msgstr "PCB de 2 Faces"
  3707. #: flatcamGUI/FlatCAMGUI.py:645 flatcamGUI/FlatCAMGUI.py:1883
  3708. msgid "&Cutout Tool"
  3709. msgstr "Ferramenta de &Corte"
  3710. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1884
  3711. #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285
  3712. msgid "NCC Tool"
  3713. msgstr "Ferramenta NCC"
  3714. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1888
  3715. msgid "Panel Tool"
  3716. msgstr "Ferramenta de Painel"
  3717. #: flatcamGUI/FlatCAMGUI.py:651 flatcamGUI/FlatCAMGUI.py:1889
  3718. #: flatcamTools/ToolFilm.py:204
  3719. msgid "Film Tool"
  3720. msgstr "Ferramenta de Filme"
  3721. #: flatcamGUI/FlatCAMGUI.py:652 flatcamGUI/FlatCAMGUI.py:1891
  3722. #: flatcamTools/ToolSolderPaste.py:450
  3723. msgid "SolderPaste Tool"
  3724. msgstr "Ferramenta Pasta de Solda"
  3725. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1892
  3726. #: flatcamTools/ToolSub.py:26
  3727. msgid "Substract Tool"
  3728. msgstr "Ferramenta Subtrair"
  3729. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:1897
  3730. msgid "Calculators Tool"
  3731. msgstr "Calculadoras"
  3732. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:675
  3733. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1901
  3734. #: flatcamGUI/FlatCAMGUI.py:1953
  3735. msgid "Select"
  3736. msgstr "Selecionar"
  3737. #: flatcamGUI/FlatCAMGUI.py:662 flatcamGUI/FlatCAMGUI.py:1902
  3738. msgid "Add Drill Hole"
  3739. msgstr "Adicionar Furo"
  3740. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1904
  3741. msgid "Add Drill Hole Array"
  3742. msgstr "Adicionar Matriz do Furos"
  3743. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1905
  3744. msgid "Resize Drill"
  3745. msgstr "Redimensionar Broca"
  3746. #: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1908
  3747. msgid "Copy Drill"
  3748. msgstr "Copiar Broca"
  3749. #: flatcamGUI/FlatCAMGUI.py:669 flatcamGUI/FlatCAMGUI.py:1910
  3750. msgid "Delete Drill"
  3751. msgstr "Excluir Broca"
  3752. #: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1913
  3753. msgid "Move Drill"
  3754. msgstr "Mover Broca"
  3755. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1917
  3756. msgid "Add Circle"
  3757. msgstr "Adicionar Círculo"
  3758. #: flatcamGUI/FlatCAMGUI.py:677 flatcamGUI/FlatCAMGUI.py:1918
  3759. msgid "Add Arc"
  3760. msgstr "Adicionar Arco"
  3761. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1920
  3762. msgid "Add Rectangle"
  3763. msgstr "Adicionar Retângulo"
  3764. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1923
  3765. msgid "Add Path"
  3766. msgstr "Adicionar Caminho"
  3767. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1925
  3768. msgid "Add Polygon"
  3769. msgstr "Adicionar Polígono"
  3770. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:1927
  3771. msgid "Add Text"
  3772. msgstr "Adicionar Texto"
  3773. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:1929
  3774. msgid "Add Buffer"
  3775. msgstr "Adicionar Buffer"
  3776. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1930
  3777. msgid "Paint Shape"
  3778. msgstr "Pintar Forma"
  3779. #: flatcamGUI/FlatCAMGUI.py:688 flatcamGUI/FlatCAMGUI.py:726
  3780. #: flatcamGUI/FlatCAMGUI.py:1931 flatcamGUI/FlatCAMGUI.py:1969
  3781. msgid "Eraser"
  3782. msgstr "Apagador"
  3783. #: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1935
  3784. msgid "Polygon Union"
  3785. msgstr "União de Polígonos"
  3786. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:1937
  3787. msgid "Polygon Intersection"
  3788. msgstr "Interseção de Polígonos"
  3789. #: flatcamGUI/FlatCAMGUI.py:695 flatcamGUI/FlatCAMGUI.py:1939
  3790. msgid "Polygon Subtraction"
  3791. msgstr "Subtração de Polígonos"
  3792. #: flatcamGUI/FlatCAMGUI.py:698 flatcamGUI/FlatCAMGUI.py:1942
  3793. msgid "Cut Path"
  3794. msgstr "Caminho de Corte"
  3795. #: flatcamGUI/FlatCAMGUI.py:699
  3796. msgid "Copy Shape(s)"
  3797. msgstr "Copiar Forma(s)"
  3798. #: flatcamGUI/FlatCAMGUI.py:702
  3799. msgid "Delete Shape '-'"
  3800. msgstr "Excluir Forma '-'"
  3801. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:733
  3802. #: flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/FlatCAMGUI.py:1976
  3803. msgid "Transformations"
  3804. msgstr "Transformações"
  3805. #: flatcamGUI/FlatCAMGUI.py:706
  3806. msgid "Move Objects "
  3807. msgstr "Mover Objetos "
  3808. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:1954
  3809. msgid "Add Pad"
  3810. msgstr "Adicionar Pad"
  3811. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:1956
  3812. msgid "Add Track"
  3813. msgstr "Adicionar Trilha"
  3814. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1957
  3815. msgid "Add Region"
  3816. msgstr "Adicionar Região"
  3817. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:1959
  3818. msgid "Poligonize"
  3819. msgstr "Poligonizar"
  3820. #: flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1961
  3821. msgid "SemiDisc"
  3822. msgstr "SemiDisco"
  3823. #: flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1962
  3824. msgid "Disc"
  3825. msgstr "Disco"
  3826. #: flatcamGUI/FlatCAMGUI.py:724 flatcamGUI/FlatCAMGUI.py:1968
  3827. msgid "Mark Area"
  3828. msgstr "Marcar Área"
  3829. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1621
  3830. #: flatcamGUI/FlatCAMGUI.py:1641 flatcamGUI/FlatCAMGUI.py:1978
  3831. #: flatcamTools/ToolMove.py:26
  3832. msgid "Move"
  3833. msgstr "Mover"
  3834. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1984
  3835. msgid "Snap to grid"
  3836. msgstr "Encaixar na Grade"
  3837. #: flatcamGUI/FlatCAMGUI.py:744 flatcamGUI/FlatCAMGUI.py:1987
  3838. msgid "Grid X snapping distance"
  3839. msgstr "Distância de encaixe Grade X"
  3840. #: flatcamGUI/FlatCAMGUI.py:749 flatcamGUI/FlatCAMGUI.py:1992
  3841. msgid "Grid Y snapping distance"
  3842. msgstr "Distância de encaixe Grade Y"
  3843. #: flatcamGUI/FlatCAMGUI.py:755 flatcamGUI/FlatCAMGUI.py:1998
  3844. msgid ""
  3845. "When active, value on Grid_X\n"
  3846. "is copied to the Grid_Y value."
  3847. msgstr ""
  3848. "Quando ativo, o valor em Grid_X\n"
  3849. "é copiado para o valor Grid_Y."
  3850. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2004
  3851. msgid "Snap to corner"
  3852. msgstr "Encaixar no canto"
  3853. #: flatcamGUI/FlatCAMGUI.py:765 flatcamGUI/FlatCAMGUI.py:2008
  3854. #: flatcamGUI/FlatCAMGUI.py:3374
  3855. msgid "Max. magnet distance"
  3856. msgstr "Max. distância magnética"
  3857. #: flatcamGUI/FlatCAMGUI.py:793 flatcamGUI/FlatCAMGUI.py:1605
  3858. msgid "Project"
  3859. msgstr "Projeto"
  3860. #: flatcamGUI/FlatCAMGUI.py:803
  3861. msgid "Selected"
  3862. msgstr "Selecionado"
  3863. #: flatcamGUI/FlatCAMGUI.py:822 flatcamGUI/FlatCAMGUI.py:830
  3864. msgid "Plot Area"
  3865. msgstr "Área de Gráfico"
  3866. #: flatcamGUI/FlatCAMGUI.py:854
  3867. msgid "General"
  3868. msgstr "Geral"
  3869. #: flatcamGUI/FlatCAMGUI.py:863
  3870. msgid "APP. DEFAULTS"
  3871. msgstr "PADRÕES APP."
  3872. #: flatcamGUI/FlatCAMGUI.py:864
  3873. msgid "PROJ. OPTIONS "
  3874. msgstr "OPÇÕES PROJ."
  3875. #: flatcamGUI/FlatCAMGUI.py:875
  3876. msgid "GERBER"
  3877. msgstr "Gerber"
  3878. #: flatcamGUI/FlatCAMGUI.py:884
  3879. msgid "EXCELLON"
  3880. msgstr "Excellon"
  3881. #: flatcamGUI/FlatCAMGUI.py:893
  3882. msgid "GEOMETRY"
  3883. msgstr "Geometria"
  3884. #: flatcamGUI/FlatCAMGUI.py:903
  3885. msgid "CNC-JOB"
  3886. msgstr "Trabalho CNC"
  3887. #: flatcamGUI/FlatCAMGUI.py:912
  3888. msgid "TOOLS"
  3889. msgstr "Ferramentas"
  3890. #: flatcamGUI/FlatCAMGUI.py:929
  3891. msgid "Import Preferences"
  3892. msgstr "Importar Preferências"
  3893. #: flatcamGUI/FlatCAMGUI.py:932
  3894. msgid ""
  3895. "Import a full set of FlatCAM settings from a file\n"
  3896. "previously saved on HDD.\n"
  3897. "\n"
  3898. "FlatCAM automatically save a 'factory_defaults' file\n"
  3899. "on the first start. Do not delete that file."
  3900. msgstr ""
  3901. "Importa um conjunto completo de configurações do FlatCAM de um arquivo\n"
  3902. "previamente salvo no HDD.\n"
  3903. "\n"
  3904. "FlatCAM salva automaticamente o arquivo 'factory_defaults'\n"
  3905. "na primeira inicialização. Não exclua esse arquivo."
  3906. #: flatcamGUI/FlatCAMGUI.py:939
  3907. msgid "Export Preferences"
  3908. msgstr "Exportar Preferências"
  3909. #: flatcamGUI/FlatCAMGUI.py:942
  3910. msgid ""
  3911. "Export a full set of FlatCAM settings in a file\n"
  3912. "that is saved on HDD."
  3913. msgstr ""
  3914. "Exporta um conjunto completo de configurações do FlatCAM em um arquivo\n"
  3915. "salvo no HDD."
  3916. #: flatcamGUI/FlatCAMGUI.py:947
  3917. msgid "Open Pref Folder"
  3918. msgstr "Abrir a Pasta Pref"
  3919. #: flatcamGUI/FlatCAMGUI.py:950
  3920. msgid "Open the folder where FlatCAM save the preferences files."
  3921. msgstr "Abre a pasta onde o FlatCAM salva os arquivos de preferências."
  3922. #: flatcamGUI/FlatCAMGUI.py:958
  3923. msgid "Save Preferences"
  3924. msgstr "Salvar Preferências"
  3925. #: flatcamGUI/FlatCAMGUI.py:961
  3926. msgid ""
  3927. "Save the current settings in the 'current_defaults' file\n"
  3928. "which is the file storing the working default preferences."
  3929. msgstr ""
  3930. "Salve as configurações atuais no arquivo 'current_defaults'\n"
  3931. "que armazena as preferências padrão de trabalho."
  3932. #: flatcamGUI/FlatCAMGUI.py:987
  3933. msgid ""
  3934. "<b>General Shortcut list</b><br>\n"
  3935. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  3936. "\"width:283px\">\n"
  3937. " <tbody>\n"
  3938. " <tr height=\"20\">\n"
  3939. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  3940. "td>\n"
  3941. " <td width=\"194\"><span style=\"color:"
  3942. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3943. " </tr>\n"
  3944. " <tr height=\"20\">\n"
  3945. " <td height=\"20\">&nbsp;</td>\n"
  3946. " <td>&nbsp;</td>\n"
  3947. " </tr>\n"
  3948. " <tr height=\"20\">\n"
  3949. " <td height=\"20\"><strong>1</strong></td>\n"
  3950. " <td>&nbsp;Switch to Project Tab</td>\n"
  3951. " </tr>\n"
  3952. " <tr height=\"20\">\n"
  3953. " <td height=\"20\"><strong>2</strong></td>\n"
  3954. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3955. " </tr>\n"
  3956. " <tr height=\"20\">\n"
  3957. " <td height=\"20\"><strong>3</strong></td>\n"
  3958. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3959. " </tr>\n"
  3960. " <tr height=\"20\">\n"
  3961. " <td height=\"20\">&nbsp;</td>\n"
  3962. " <td>&nbsp;</td>\n"
  3963. " </tr>\n"
  3964. " <tr height=\"20\">\n"
  3965. " <td height=\"20\"><strong>B</strong></td>\n"
  3966. " <td>&nbsp;New Gerber</td>\n"
  3967. " </tr>\n"
  3968. " <tr height=\"20\">\n"
  3969. " <td height=\"20\"><strong>E</strong></td>\n"
  3970. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3971. " </tr>\n"
  3972. " <tr height=\"20\">\n"
  3973. " <td height=\"20\"><strong>G</strong></td>\n"
  3974. " <td>&nbsp;Grid On/Off</td>\n"
  3975. " </tr>\n"
  3976. " <tr height=\"20\">\n"
  3977. " <td height=\"20\"><strong>J</strong></td>\n"
  3978. " <td>&nbsp;Jump to Coordinates</td>\n"
  3979. " </tr>\n"
  3980. " <tr height=\"20\">\n"
  3981. " <td height=\"20\"><strong>L</strong></td>\n"
  3982. " <td>&nbsp;New Excellon</td>\n"
  3983. " </tr>\n"
  3984. " <tr height=\"20\">\n"
  3985. " <td height=\"20\"><strong>M</strong></td>\n"
  3986. " <td>&nbsp;Move Obj</td>\n"
  3987. " </tr>\n"
  3988. " <tr height=\"20\">\n"
  3989. " <td height=\"20\"><strong>N</strong></td>\n"
  3990. " <td>&nbsp;New Geometry</td>\n"
  3991. " </tr>\n"
  3992. " <tr height=\"20\">\n"
  3993. " <td height=\"20\"><strong>O</strong></td>\n"
  3994. " <td>&nbsp;Set Origin</td>\n"
  3995. " </tr>\n"
  3996. " <tr height=\"20\">\n"
  3997. " <td height=\"20\"><strong>Q</strong></td>\n"
  3998. " <td>&nbsp;Change Units</td>\n"
  3999. " </tr>\n"
  4000. " <tr height=\"20\">\n"
  4001. " <td height=\"20\"><strong>P</strong></td>\n"
  4002. " <td>&nbsp;Open Properties Tool</td>\n"
  4003. " </tr>\n"
  4004. " <tr height=\"20\">\n"
  4005. " <td height=\"20\"><strong>R</strong></td>\n"
  4006. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4007. " </tr>\n"
  4008. " <tr height=\"20\">\n"
  4009. " <td height=\"20\"><strong>S</strong></td>\n"
  4010. " <td>&nbsp;Shell Toggle</td>\n"
  4011. " </tr>\n"
  4012. " <tr height=\"20\">\n"
  4013. " <td height=\"20\"><strong>T</strong></td>\n"
  4014. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4015. "or in Tools NCC or Tools Paint)</td>\n"
  4016. " </tr>\n"
  4017. " <tr height=\"20\">\n"
  4018. " <td height=\"20\"><strong>V</strong></td>\n"
  4019. " <td>&nbsp;Zoom Fit</td>\n"
  4020. " </tr>\n"
  4021. " <tr height=\"20\">\n"
  4022. " <td height=\"20\"><strong>X</strong></td>\n"
  4023. " <td>&nbsp;Flip on X_axis</td>\n"
  4024. " </tr>\n"
  4025. " <tr height=\"20\">\n"
  4026. " <td height=\"20\"><strong>Y</strong></td>\n"
  4027. " <td>&nbsp;Flip on Y_axis</td>\n"
  4028. " </tr>\n"
  4029. " <tr height=\"20\">\n"
  4030. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4031. " <td>&nbsp;Zoom Out</td>\n"
  4032. " </tr>\n"
  4033. " <tr height=\"20\">\n"
  4034. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4035. " <td>&nbsp;Zoom In</td>\n"
  4036. " </tr>\n"
  4037. " <tr height=\"20\">\n"
  4038. " <td height=\"20\">&nbsp;</td>\n"
  4039. " <td>&nbsp;</td>\n"
  4040. " </tr>\n"
  4041. " <tr height=\"20\">\n"
  4042. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4043. " <td>&nbsp;Select All</td>\n"
  4044. " </tr>\n"
  4045. " <tr height=\"20\">\n"
  4046. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4047. " <td>&nbsp;Copy Obj</td>\n"
  4048. " </tr>\n"
  4049. " <tr height=\"20\">\n"
  4050. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4051. " <td>&nbsp;Open Excellon File</td>\n"
  4052. " </tr>\n"
  4053. " <tr height=\"20\">\n"
  4054. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4055. " <td>&nbsp;Open Gerber File</td>\n"
  4056. " </tr>\n"
  4057. " <tr height=\"20\">\n"
  4058. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4059. " <td>&nbsp;New Project</td>\n"
  4060. " </tr>\n"
  4061. " <tr height=\"20\">\n"
  4062. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4063. " <td>&nbsp;Measurement Tool</td>\n"
  4064. " </tr>\n"
  4065. " <tr height=\"20\">\n"
  4066. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4067. " <td>&nbsp;Open Project</td>\n"
  4068. " </tr>\n"
  4069. " <tr height=\"20\">\n"
  4070. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4071. " <td>&nbsp;Save Project As</td>\n"
  4072. " </tr>\n"
  4073. " <tr height=\"20\">\n"
  4074. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4075. " <td>&nbsp;Toggle Plot Area</td>\n"
  4076. " </tr>\n"
  4077. " <tr height=\"20\">\n"
  4078. " <td height=\"20\">&nbsp;</td>\n"
  4079. " <td>&nbsp;</td>\n"
  4080. " </tr>\n"
  4081. " <tr height=\"20\">\n"
  4082. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4083. " <td>&nbsp;Copy Obj_Name</td>\n"
  4084. " </tr>\n"
  4085. " <tr height=\"20\">\n"
  4086. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4087. " <td>&nbsp;Toggle Code Editor</td>\n"
  4088. " </tr>\n"
  4089. " <tr height=\"20\">\n"
  4090. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4091. " <td>&nbsp;Toggle the axis</td>\n"
  4092. " </tr>\n"
  4093. " <tr height=\"20\">\n"
  4094. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4095. " <td>&nbsp;Open Preferences Window</td>\n"
  4096. " </tr>\n"
  4097. " <tr height=\"20\">\n"
  4098. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4099. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4100. " </tr>\n"
  4101. " <tr height=\"20\">\n"
  4102. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4103. " <td>&nbsp;Run a Script</td>\n"
  4104. " </tr>\n"
  4105. " <tr height=\"20\">\n"
  4106. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4107. " <td>&nbsp;Toggle the workspace</td>\n"
  4108. " </tr>\n"
  4109. " <tr height=\"20\">\n"
  4110. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4111. " <td>&nbsp;Skew on X axis</td>\n"
  4112. " </tr>\n"
  4113. " <tr height=\"20\">\n"
  4114. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4115. " <td>&nbsp;Skew on Y axis</td>\n"
  4116. " </tr>\n"
  4117. " <tr height=\"20\">\n"
  4118. " <td height=\"20\">&nbsp;</td>\n"
  4119. " <td>&nbsp;</td>\n"
  4120. " </tr>\n"
  4121. " <tr height=\"20\">\n"
  4122. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4123. " <td>&nbsp;Calculators Tool</td>\n"
  4124. " </tr>\n"
  4125. " <tr height=\"20\">\n"
  4126. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4127. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4128. " </tr>\n"
  4129. " <tr height=\"20\">\n"
  4130. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4131. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4132. " </tr>\n"
  4133. " <tr height=\"20\">\n"
  4134. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4135. " <td>&nbsp;Film PCB Tool</td>\n"
  4136. " </tr>\n"
  4137. " <tr height=\"20\">\n"
  4138. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4139. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4140. " </tr>\n"
  4141. " <tr height=\"20\">\n"
  4142. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4143. " <td>&nbsp;Paint Area Tool</td>\n"
  4144. " </tr>\n"
  4145. " <tr height=\"20\">\n"
  4146. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4147. " <td>&nbsp;PDF Import Tool</td>\n"
  4148. " </tr>\n"
  4149. " <tr height=\"20\">\n"
  4150. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4151. " <td>&nbsp;Transformations Tool</td>\n"
  4152. " </tr>\n"
  4153. " <tr height=\"20\">\n"
  4154. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4155. " <td>&nbsp;View File Source</td>\n"
  4156. " </tr>\n"
  4157. " <tr height=\"20\">\n"
  4158. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4159. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4160. " </tr>\n"
  4161. " <tr height=\"20\">\n"
  4162. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4163. " <td>&nbsp;Enable all Plots</td>\n"
  4164. " </tr>\n"
  4165. " <tr height=\"20\">\n"
  4166. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4167. " <td>&nbsp;Disable all Plots</td>\n"
  4168. " </tr>\n"
  4169. " <tr height=\"20\">\n"
  4170. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4171. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4172. " </tr>\n"
  4173. " <tr height=\"20\">\n"
  4174. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4175. " <td>&nbsp;Toggle Full Screen</td>\n"
  4176. " </tr>\n"
  4177. " <tr height=\"20\">\n"
  4178. " <td height=\"20\">&nbsp;</td>\n"
  4179. " <td>&nbsp;</td>\n"
  4180. " </tr>\n"
  4181. " <tr height=\"20\">\n"
  4182. " <td height=\"20\"><strong>F1</strong></td>\n"
  4183. " <td>&nbsp;Open Online Manual</td>\n"
  4184. " </tr>\n"
  4185. " <tr height=\"20\">\n"
  4186. " <td height=\"20\"><strong>F4</strong></td>\n"
  4187. " <td>&nbsp;Open Online Tutorials</td>\n"
  4188. " </tr>\n"
  4189. " <tr height=\"20\">\n"
  4190. " <td height=\"20\"><strong>Del</strong></td>\n"
  4191. " <td>&nbsp;Delete Object</td>\n"
  4192. " </tr>\n"
  4193. " <tr height=\"20\">\n"
  4194. " <td height=\"20\"><strong>Del</strong></td>\n"
  4195. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4196. " </tr>\n"
  4197. " <tr height=\"20\">\n"
  4198. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4199. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4200. "Side)</td>\n"
  4201. " </tr>\n"
  4202. " <tr height=\"20\">\n"
  4203. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4204. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4205. " </tr>\n"
  4206. " <tr height=\"20\">\n"
  4207. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4208. " <td>&nbsp;Deselects all objects</td>\n"
  4209. " </tr>\n"
  4210. " </tbody>\n"
  4211. " </table>\n"
  4212. " \n"
  4213. " "
  4214. msgstr ""
  4215. "<b>Lista de Atalhos Gerais</b><br>\n"
  4216. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4217. "\"width:283px\">\n"
  4218. " <tbody>\n"
  4219. " <tr height=\"20\">\n"
  4220. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4221. "td>\n"
  4222. " <td width=\"194\"><span style=\"color:"
  4223. "#006400\"><strong>&nbsp;MOSTRA LISTA DE ATALHOS</strong></span></td>\n"
  4224. " </tr>\n"
  4225. " <tr height=\"20\">\n"
  4226. " <td height=\"20\">&nbsp;</td>\n"
  4227. " <td>&nbsp;</td>\n"
  4228. " </tr>\n"
  4229. " <tr height=\"20\">\n"
  4230. " <td height=\"20\"><strong>1</strong></td>\n"
  4231. " <td>&nbsp;Vai para a Aba do Projeto</td>\n"
  4232. " </tr>\n"
  4233. " <tr height=\"20\">\n"
  4234. " <td height=\"20\"><strong>2</strong></td>\n"
  4235. " <td>&nbsp;Vai para a Aba Selecionado</td>\n"
  4236. " </tr>\n"
  4237. " <tr height=\"20\">\n"
  4238. " <td height=\"20\"><strong>3</strong></td>\n"
  4239. " <td>&nbsp;Vai para a Aba Ferramenta</td>\n"
  4240. " </tr>\n"
  4241. " <tr height=\"20\">\n"
  4242. " <td height=\"20\">&nbsp;</td>\n"
  4243. " <td>&nbsp;</td>\n"
  4244. " </tr>\n"
  4245. " <tr height=\"20\">\n"
  4246. " <td height=\"20\"><strong>B</strong></td>\n"
  4247. " <td>&nbsp;Novo Gerber</td>\n"
  4248. " </tr>\n"
  4249. " <tr height=\"20\">\n"
  4250. " <td height=\"20\"><strong>E</strong></td>\n"
  4251. " <td>&nbsp;Editar Objeto (se selecionado)</td>\n"
  4252. " </tr>\n"
  4253. " <tr height=\"20\">\n"
  4254. " <td height=\"20\"><strong>G</strong></td>\n"
  4255. " <td>&nbsp;Liga/Desliga a Grade</td>\n"
  4256. " </tr>\n"
  4257. " <tr height=\"20\">\n"
  4258. " <td height=\"20\"><strong>J</strong></td>\n"
  4259. " <td>&nbsp;Vai para as Coordenadas</td>\n"
  4260. " </tr>\n"
  4261. " <tr height=\"20\">\n"
  4262. " <td height=\"20\"><strong>L</strong></td>\n"
  4263. " <td>&nbsp;Novo Excellon</td>\n"
  4264. " </tr>\n"
  4265. " <tr height=\"20\">\n"
  4266. " <td height=\"20\"><strong>M</strong></td>\n"
  4267. " <td>&nbsp;Move Objeto</td>\n"
  4268. " </tr>\n"
  4269. " <tr height=\"20\">\n"
  4270. " <td height=\"20\"><strong>N</strong></td>\n"
  4271. " <td>&nbsp;Nova Geometria</td>\n"
  4272. " </tr>\n"
  4273. " <tr height=\"20\">\n"
  4274. " <td height=\"20\"><strong>O</strong></td>\n"
  4275. " <td>&nbsp;Ajusta Origem</td>\n"
  4276. " </tr>\n"
  4277. " <tr height=\"20\">\n"
  4278. " <td height=\"20\"><strong>Q</strong></td>\n"
  4279. " <td>&nbsp;Altera Unidades</td>\n"
  4280. " </tr>\n"
  4281. " <tr height=\"20\">\n"
  4282. " <td height=\"20\"><strong>P</strong></td>\n"
  4283. " <td>&nbsp;Abre Propriedades da Ferramenta</td>\n"
  4284. " </tr>\n"
  4285. " <tr height=\"20\">\n"
  4286. " <td height=\"20\"><strong>R</strong></td>\n"
  4287. " <td>&nbsp;Gira 90 graus horários</td>\n"
  4288. " </tr>\n"
  4289. " <tr height=\"20\">\n"
  4290. " <td height=\"20\"><strong>S</strong></td>\n"
  4291. " <td>&nbsp;Alterna Linha de Comando</td>\n"
  4292. " </tr>\n"
  4293. " <tr height=\"20\">\n"
  4294. " <td height=\"20\"><strong>T</strong></td>\n"
  4295. " <td>&nbsp;Aiciona uma Ferramenta (quando na Aba "
  4296. "Selecionado ou em Ferramentas NCC ou de Pintura)</td>\n"
  4297. " </tr>\n"
  4298. " <tr height=\"20\">\n"
  4299. " <td height=\"20\"><strong>V</strong></td>\n"
  4300. " <td>&nbsp;Zoom Ajustado</td>\n"
  4301. " </tr>\n"
  4302. " <tr height=\"20\">\n"
  4303. " <td height=\"20\"><strong>X</strong></td>\n"
  4304. " <td>&nbsp;Espelha em X</td>\n"
  4305. " </tr>\n"
  4306. " <tr height=\"20\">\n"
  4307. " <td height=\"20\"><strong>Y</strong></td>\n"
  4308. " <td>&nbsp;Espelha em Y</td>\n"
  4309. " </tr>\n"
  4310. " <tr height=\"20\">\n"
  4311. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4312. " <td>&nbsp;Zoom -</td>\n"
  4313. " </tr>\n"
  4314. " <tr height=\"20\">\n"
  4315. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4316. " <td>&nbsp;Zoom +</td>\n"
  4317. " </tr>\n"
  4318. " <tr height=\"20\">\n"
  4319. " <td height=\"20\">&nbsp;</td>\n"
  4320. " <td>&nbsp;</td>\n"
  4321. " </tr>\n"
  4322. " <tr height=\"20\">\n"
  4323. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4324. " <td>&nbsp;Seleciona Todos</td>\n"
  4325. " </tr>\n"
  4326. " <tr height=\"20\">\n"
  4327. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4328. " <td>&nbsp;Copiar Objeto</td>\n"
  4329. " </tr>\n"
  4330. " <tr height=\"20\">\n"
  4331. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4332. " <td>&nbsp;Abrir Arquivo Excellon</td>\n"
  4333. " </tr>\n"
  4334. " <tr height=\"20\">\n"
  4335. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4336. " <td>&nbsp;Abrir Arquivo Gerber</td>\n"
  4337. " </tr>\n"
  4338. " <tr height=\"20\">\n"
  4339. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4340. " <td>&nbsp;Novo Projeto</td>\n"
  4341. " </tr>\n"
  4342. " <tr height=\"20\">\n"
  4343. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4344. " <td>&nbsp;Ferramenta de Medição</td>\n"
  4345. " </tr>\n"
  4346. " <tr height=\"20\">\n"
  4347. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4348. " <td>&nbsp;Abrir Projeto</td>\n"
  4349. " </tr>\n"
  4350. " <tr height=\"20\">\n"
  4351. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4352. " <td>&nbsp;Salvar Projeto Como</td>\n"
  4353. " </tr>\n"
  4354. " <tr height=\"20\">\n"
  4355. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4356. " <td>&nbsp;Alternar Área de Gráfico</td>\n"
  4357. " </tr>\n"
  4358. " <tr height=\"20\">\n"
  4359. " <td height=\"20\">&nbsp;</td>\n"
  4360. " <td>&nbsp;</td>\n"
  4361. " </tr>\n"
  4362. " <tr height=\"20\">\n"
  4363. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4364. " <td>&nbsp;Copiar Obj_Name</td>\n"
  4365. " </tr>\n"
  4366. " <tr height=\"20\">\n"
  4367. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4368. " <td>&nbsp;Alterna Editor de Código</td>\n"
  4369. " </tr>\n"
  4370. " <tr height=\"20\">\n"
  4371. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4372. " <td>&nbsp;Alterna o Eixo</td>\n"
  4373. " </tr>\n"
  4374. " <tr height=\"20\">\n"
  4375. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4376. " <td>&nbsp;Abre Janela de Preferências</td>\n"
  4377. " </tr>\n"
  4378. " <tr height=\"20\">\n"
  4379. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4380. " <td>&nbsp;Gira 90 graus antihorário</td>\n"
  4381. " </tr>\n"
  4382. " <tr height=\"20\">\n"
  4383. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4384. " <td>&nbsp;Executa um Script</td>\n"
  4385. " </tr>\n"
  4386. " <tr height=\"20\">\n"
  4387. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4388. " <td>&nbsp;Alterna o Local de Trabalho</td>\n"
  4389. " </tr>\n"
  4390. " <tr height=\"20\">\n"
  4391. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4392. " <td>&nbsp;Inclina no Eixo X</td>\n"
  4393. " </tr>\n"
  4394. " <tr height=\"20\">\n"
  4395. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4396. " <td>&nbsp;Inclina no Eixo Y</td>\n"
  4397. " </tr>\n"
  4398. " <tr height=\"20\">\n"
  4399. " <td height=\"20\">&nbsp;</td>\n"
  4400. " <td>&nbsp;</td>\n"
  4401. " </tr>\n"
  4402. " <tr height=\"20\">\n"
  4403. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4404. " <td>&nbsp;Calculadoras</td>\n"
  4405. " </tr>\n"
  4406. " <tr height=\"20\">\n"
  4407. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4408. " <td>&nbsp;Ferramenta PCB 2-Faces</td>\n"
  4409. " </tr>\n"
  4410. " <tr height=\"20\">\n"
  4411. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4412. " <td>&nbsp;Ferramenta Pasta de Solda</td>\n"
  4413. " </tr>\n"
  4414. " <tr height=\"20\">\n"
  4415. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4416. " <td>&nbsp;Ferramenta Filme PCB</td>\n"
  4417. " </tr>\n"
  4418. " <tr height=\"20\">\n"
  4419. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4420. " <td>&nbsp;Ferramenta Retirar Cobre (NCC)</td>\n"
  4421. " </tr>\n"
  4422. " <tr height=\"20\">\n"
  4423. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4424. " <td>&nbsp;Ferramenta Pintura de Área</td>\n"
  4425. " </tr>\n"
  4426. " <tr height=\"20\">\n"
  4427. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4428. " <td>&nbsp;Ferramenta Importar PDF</td>\n"
  4429. " </tr>\n"
  4430. " <tr height=\"20\">\n"
  4431. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4432. " <td>&nbsp;Ferramenta Transformações</td>\n"
  4433. " </tr>\n"
  4434. " <tr height=\"20\">\n"
  4435. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4436. " <td>&nbsp;Ver Arquivo Fonte</td>\n"
  4437. " </tr>\n"
  4438. " <tr height=\"20\">\n"
  4439. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4440. " <td>&nbsp;Ferramenta Recorte PCB</td>\n"
  4441. " </tr>\n"
  4442. " <tr height=\"20\">\n"
  4443. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4444. " <td>&nbsp;Habilita todos os Gráficos</td>\n"
  4445. " </tr>\n"
  4446. " <tr height=\"20\">\n"
  4447. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4448. " <td>&nbsp;Desabilita todos os Gráficos</td>\n"
  4449. " </tr>\n"
  4450. " <tr height=\"20\">\n"
  4451. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4452. " <td>&nbsp;Desabilita todos os Gráficos não "
  4453. "selecionados</td>\n"
  4454. " </tr>\n"
  4455. " <tr height=\"20\">\n"
  4456. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4457. " <td>&nbsp;Alterna Tela Cheia</td>\n"
  4458. " </tr>\n"
  4459. " <tr height=\"20\">\n"
  4460. " <td height=\"20\">&nbsp;</td>\n"
  4461. " <td>&nbsp;</td>\n"
  4462. " </tr>\n"
  4463. " <tr height=\"20\">\n"
  4464. " <td height=\"20\"><strong>F1</strong></td>\n"
  4465. " <td>&nbsp;Abrir Manual Online</td>\n"
  4466. " </tr>\n"
  4467. " <tr height=\"20\">\n"
  4468. " <td height=\"20\"><strong>F4</strong></td>\n"
  4469. " <td>&nbsp;Abrir Tutoriais Online</td>\n"
  4470. " </tr>\n"
  4471. " <tr height=\"20\">\n"
  4472. " <td height=\"20\"><strong>Del</strong></td>\n"
  4473. " <td>&nbsp;Excluir Objeto</td>\n"
  4474. " </tr>\n"
  4475. " <tr height=\"20\">\n"
  4476. " <td height=\"20\"><strong>Del</strong></td>\n"
  4477. " <td>&nbsp;Alternar: Excluir Ferramenta</td>\n"
  4478. " </tr>\n"
  4479. " <tr height=\"20\">\n"
  4480. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4481. " <td>&nbsp;(Seta Esquerda e Tecla_1)Alterna Área "
  4482. "Notebook (Lado Esquerdo)</td>\n"
  4483. " </tr>\n"
  4484. " <tr height=\"20\">\n"
  4485. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4486. " <td>&nbsp;(Des)habilita Objeto Gráfico</td>\n"
  4487. " </tr>\n"
  4488. " <tr height=\"20\">\n"
  4489. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4490. " <td>&nbsp;Deseleciona todos os objetos</td>\n"
  4491. " </tr>\n"
  4492. " </tbody>\n"
  4493. " </table>\n"
  4494. " \n"
  4495. " "
  4496. #: flatcamGUI/FlatCAMGUI.py:1272
  4497. #, fuzzy
  4498. #| msgid ""
  4499. #| "<b>Editor Shortcut list</b><br>\n"
  4500. #| " <br>\n"
  4501. #| " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4502. #| "strong><br>\n"
  4503. #| " \n"
  4504. #| " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4505. #| "\"width:283px\">\n"
  4506. #| " <tbody>\n"
  4507. #| " <tr height=\"20\">\n"
  4508. #| " <td height=\"20\" width=\"89\"><strong>A</"
  4509. #| "strong></td>\n"
  4510. #| " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4511. #| " </tr>\n"
  4512. #| " <tr height=\"20\">\n"
  4513. #| " <td height=\"20\"><strong>B</strong></td>\n"
  4514. #| " <td>&nbsp;Buffer Tool</td>\n"
  4515. #| " </tr>\n"
  4516. #| " <tr height=\"20\">\n"
  4517. #| " <td height=\"20\"><strong>C</strong></td>\n"
  4518. #| " <td>&nbsp;Copy Geo Item</td>\n"
  4519. #| " </tr>\n"
  4520. #| " <tr height=\"20\">\n"
  4521. #| " <td height=\"20\"><strong>D</strong></td>\n"
  4522. #| " <td>&nbsp;Within Add Arc will toogle the ARC "
  4523. #| "direction: CW or CCW</td>\n"
  4524. #| " </tr>\n"
  4525. #| " <tr height=\"20\">\n"
  4526. #| " <td height=\"20\"><strong>E</strong></td>\n"
  4527. #| " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4528. #| " </tr>\n"
  4529. #| " <tr height=\"20\">\n"
  4530. #| " <td height=\"20\"><strong>I</strong></td>\n"
  4531. #| " <td>&nbsp;Paint Tool</td>\n"
  4532. #| " </tr>\n"
  4533. #| " <tr height=\"20\">\n"
  4534. #| " <td height=\"20\"><strong>J</strong></td>\n"
  4535. #| " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4536. #| " </tr>\n"
  4537. #| " <tr height=\"20\">\n"
  4538. #| " <td height=\"20\"><strong>K</strong></td>\n"
  4539. #| " <td>&nbsp;Toggle Corner Snap</td>\n"
  4540. #| " </tr>\n"
  4541. #| " <tr height=\"20\">\n"
  4542. #| " <td height=\"20\"><strong>M</strong></td>\n"
  4543. #| " <td>&nbsp;Move Geo Item</td>\n"
  4544. #| " </tr>\n"
  4545. #| " <tr height=\"20\">\n"
  4546. #| " <td height=\"20\"><strong>M</strong></td>\n"
  4547. #| " <td>&nbsp;Within Add Arc will cycle through the "
  4548. #| "ARC modes</td>\n"
  4549. #| " </tr>\n"
  4550. #| " <tr height=\"20\">\n"
  4551. #| " <td height=\"20\"><strong>N</strong></td>\n"
  4552. #| " <td>&nbsp;Draw a Polygon</td>\n"
  4553. #| " </tr>\n"
  4554. #| " <tr height=\"20\">\n"
  4555. #| " <td height=\"20\"><strong>O</strong></td>\n"
  4556. #| " <td>&nbsp;Draw a Circle</td>\n"
  4557. #| " </tr>\n"
  4558. #| " <tr height=\"20\">\n"
  4559. #| " <td height=\"20\"><strong>P</strong></td>\n"
  4560. #| " <td>&nbsp;Draw a Path</td>\n"
  4561. #| " </tr>\n"
  4562. #| " <tr height=\"20\">\n"
  4563. #| " <td height=\"20\"><strong>R</strong></td>\n"
  4564. #| " <td>&nbsp;Draw Rectangle</td>\n"
  4565. #| " </tr>\n"
  4566. #| " <tr height=\"20\">\n"
  4567. #| " <td height=\"20\"><strong>S</strong></td>\n"
  4568. #| " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4569. #| " </tr>\n"
  4570. #| " <tr height=\"20\">\n"
  4571. #| " <td height=\"20\"><strong>T</strong></td>\n"
  4572. #| " <td>&nbsp;Add Text Tool</td>\n"
  4573. #| " </tr>\n"
  4574. #| " <tr height=\"20\">\n"
  4575. #| " <td height=\"20\"><strong>U</strong></td>\n"
  4576. #| " <td>&nbsp;Polygon Union Tool</td>\n"
  4577. #| " </tr>\n"
  4578. #| " <tr height=\"20\">\n"
  4579. #| " <td height=\"20\"><strong>X</strong></td>\n"
  4580. #| " <td>&nbsp;Flip shape on X axis</td>\n"
  4581. #| " </tr>\n"
  4582. #| " <tr height=\"20\">\n"
  4583. #| " <td height=\"20\"><strong>Y</strong></td>\n"
  4584. #| " <td>&nbsp;Flip shape on Y axis</td>\n"
  4585. #| " </tr>\n"
  4586. #| " <tr height=\"20\">\n"
  4587. #| " <td height=\"20\">&nbsp;</td>\n"
  4588. #| " <td>&nbsp;</td>\n"
  4589. #| " </tr>\n"
  4590. #| " <tr height=\"20\">\n"
  4591. #| " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4592. #| " <td>&nbsp;Skew shape on X axis</td>\n"
  4593. #| " </tr>\n"
  4594. #| " <tr height=\"20\">\n"
  4595. #| " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4596. #| " <td>&nbsp;Skew shape on Y axis</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>ALT+R</strong></td>\n"
  4604. #| " <td>&nbsp;Editor Transformation Tool</td>\n"
  4605. #| " </tr>\n"
  4606. #| " <tr height=\"20\">\n"
  4607. #| " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4608. #| " <td>&nbsp;Offset shape on X axis</td>\n"
  4609. #| " </tr>\n"
  4610. #| " <tr height=\"20\">\n"
  4611. #| " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4612. #| " <td>&nbsp;Offset shape on Y axis</td>\n"
  4613. #| " </tr>\n"
  4614. #| " <tr height=\"20\">\n"
  4615. #| " <td height=\"20\">&nbsp;</td>\n"
  4616. #| " <td>&nbsp;</td>\n"
  4617. #| " </tr>\n"
  4618. #| " <tr height=\"20\">\n"
  4619. #| " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4620. #| " <td>&nbsp;Measurement Tool</td>\n"
  4621. #| " </tr>\n"
  4622. #| " <tr height=\"20\">\n"
  4623. #| " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4624. #| " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4625. #| " </tr>\n"
  4626. #| " <tr height=\"20\">\n"
  4627. #| " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4628. #| " <td>&nbsp;Polygon Cut Tool</td>\n"
  4629. #| " </tr>\n"
  4630. #| " <tr height=\"20\">\n"
  4631. #| " <td height=\"20\">&nbsp;</td>\n"
  4632. #| " <td>&nbsp;</td>\n"
  4633. #| " </tr>\n"
  4634. #| " <tr height=\"20\">\n"
  4635. #| " <td height=\"20\"><strong>Space</strong></td>\n"
  4636. #| " <td>&nbsp;Rotate Geometry</td>\n"
  4637. #| " </tr>\n"
  4638. #| " <tr height=\"20\">\n"
  4639. #| " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4640. #| " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4641. #| " </tr>\n"
  4642. #| " <tr height=\"20\">\n"
  4643. #| " <td height=\"20\"><strong>ESC</strong></td>\n"
  4644. #| " <td>&nbsp;Abort and return to Select</td>\n"
  4645. #| " </tr>\n"
  4646. #| " <tr height=\"20\">\n"
  4647. #| " <td height=\"20\"><strong>Del</strong></td>\n"
  4648. #| " <td>&nbsp;Delete Shape</td>\n"
  4649. #| " </tr>\n"
  4650. #| " </tbody>\n"
  4651. #| " </table>\n"
  4652. #| " <br>\n"
  4653. #| " <br>\n"
  4654. #| " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4655. #| "strong><br>\n"
  4656. #| " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4657. #| "\"width:283px\">\n"
  4658. #| " <tbody>\n"
  4659. #| " <tr height=\"20\">\n"
  4660. #| " <td height=\"20\" width=\"89\"><strong>A</"
  4661. #| "strong></td>\n"
  4662. #| " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4663. #| " </tr>\n"
  4664. #| " <tr height=\"20\">\n"
  4665. #| " <td height=\"20\"><strong>C</strong></td>\n"
  4666. #| " <td>&nbsp;Copy Drill(s)</td>\n"
  4667. #| " </tr>\n"
  4668. #| " <tr height=\"20\">\n"
  4669. #| " <td height=\"20\"><strong>D</strong></td>\n"
  4670. #| " <td>&nbsp;Add Drill</td>\n"
  4671. #| " </tr>\n"
  4672. #| " <tr height=\"20\">\n"
  4673. #| " <td height=\"20\"><strong>J</strong></td>\n"
  4674. #| " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4675. #| " </tr>\n"
  4676. #| " <tr height=\"20\">\n"
  4677. #| " <td height=\"20\"><strong>M</strong></td>\n"
  4678. #| " <td>&nbsp;Move Drill(s)</td>\n"
  4679. #| " </tr>\n"
  4680. #| " <tr height=\"20\">\n"
  4681. #| " <td height=\"20\"><strong>R</strong></td>\n"
  4682. #| " <td>&nbsp;Resize Drill(s)</td>\n"
  4683. #| " </tr>\n"
  4684. #| " <tr height=\"20\">\n"
  4685. #| " <td height=\"20\"><strong>T</strong></td>\n"
  4686. #| " <td>&nbsp;Add a new Tool</td>\n"
  4687. #| " </tr>\n"
  4688. #| " <tr height=\"20\">\n"
  4689. #| " <td height=\"20\">&nbsp;</td>\n"
  4690. #| " <td>&nbsp;</td>\n"
  4691. #| " </tr>\n"
  4692. #| " <tr height=\"20\">\n"
  4693. #| " <td height=\"20\"><strong>Del</strong></td>\n"
  4694. #| " <td>&nbsp;Delete Drill(s)</td>\n"
  4695. #| " </tr>\n"
  4696. #| " <tr height=\"20\">\n"
  4697. #| " <td height=\"20\"><strong>Del</strong></td>\n"
  4698. #| " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4699. #| " </tr>\n"
  4700. #| " <tr height=\"20\">\n"
  4701. #| " <td height=\"20\">&nbsp;</td>\n"
  4702. #| " <td>&nbsp;</td>\n"
  4703. #| " </tr>\n"
  4704. #| " <tr height=\"20\">\n"
  4705. #| " <td height=\"20\"><strong>ESC</strong></td>\n"
  4706. #| " <td>&nbsp;Abort and return to Select</td>\n"
  4707. #| " </tr>\n"
  4708. #| " <tr height=\"20\">\n"
  4709. #| " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4710. #| " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4711. #| " </tr>\n"
  4712. #| " </tbody>\n"
  4713. #| " </table>\n"
  4714. #| " <br>\n"
  4715. #| " <br>\n"
  4716. #| " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4717. #| "strong><br>\n"
  4718. #| " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4719. #| "\"width:283px\">\n"
  4720. #| " <tbody>\n"
  4721. #| " <tr height=\"20\">\n"
  4722. #| " <td height=\"20\" width=\"89\"><strong>A</"
  4723. #| "strong></td>\n"
  4724. #| " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4725. #| " </tr>\n"
  4726. #| " <tr height=\"20\">\n"
  4727. #| " <td height=\"20\"><strong>B</strong></td>\n"
  4728. #| " <td>&nbsp;Buffer</td>\n"
  4729. #| " </tr>\n"
  4730. #| " <tr height=\"20\">\n"
  4731. #| " <td height=\"20\"><strong>C</strong></td>\n"
  4732. #| " <td>&nbsp;Copy</td>\n"
  4733. #| " </tr>\n"
  4734. #| " <tr height=\"20\">\n"
  4735. #| " <td height=\"20\"><strong>D</strong></td>\n"
  4736. #| " <td>&nbsp;Add Disc</td>\n"
  4737. #| " </tr>\n"
  4738. #| " <tr height=\"20\">\n"
  4739. #| " <td height=\"20\"><strong>E</strong></td>\n"
  4740. #| " <td>&nbsp;Add SemiDisc</td>\n"
  4741. #| " </tr>\n"
  4742. #| " <tr height=\"20\">\n"
  4743. #| " <td height=\"20\"><strong>J</strong></td>\n"
  4744. #| " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4745. #| " </tr>\n"
  4746. #| " <tr height=\"20\">\n"
  4747. #| " <td height=\"20\"><strong>M</strong></td>\n"
  4748. #| " <td>&nbsp;Move</td>\n"
  4749. #| " </tr>\n"
  4750. #| " <tr height=\"20\">\n"
  4751. #| " <td height=\"20\"><strong>N</strong></td>\n"
  4752. #| " <td>&nbsp;Add Region</td>\n"
  4753. #| " </tr>\n"
  4754. #| " <tr height=\"20\">\n"
  4755. #| " <td height=\"20\"><strong>P</strong></td>\n"
  4756. #| " <td>&nbsp;Add Pad</td>\n"
  4757. #| " </tr>\n"
  4758. #| " <tr height=\"20\">\n"
  4759. #| " <td height=\"20\"><strong>R</strong></td>\n"
  4760. #| " <td>&nbsp;Within Track & Region Tools will cycle "
  4761. #| "in REVERSE the bend modes</td>\n"
  4762. #| " </tr>\n"
  4763. #| " <tr height=\"20\">\n"
  4764. #| " <td height=\"20\"><strong>S</strong></td>\n"
  4765. #| " <td>&nbsp;Scale</td>\n"
  4766. #| " </tr>\n"
  4767. #| " <tr height=\"20\">\n"
  4768. #| " <td height=\"20\"><strong>T</strong></td>\n"
  4769. #| " <td>&nbsp;Add Track</td>\n"
  4770. #| " </tr>\n"
  4771. #| " <tr height=\"20\">\n"
  4772. #| " <td height=\"20\"><strong>T</strong></td>\n"
  4773. #| " <td>&nbsp;Within Track & Region Tools will cycle "
  4774. #| "FORWARD the bend modes</td>\n"
  4775. #| " </tr>\n"
  4776. #| " <tr height=\"20\">\n"
  4777. #| " <td height=\"20\">&nbsp;</td>\n"
  4778. #| " <td>&nbsp;</td>\n"
  4779. #| " </tr>\n"
  4780. #| " <tr height=\"20\">\n"
  4781. #| " <td height=\"20\"><strong>Del</strong></td>\n"
  4782. #| " <td>&nbsp;Delete</td>\n"
  4783. #| " </tr>\n"
  4784. #| " <tr height=\"20\">\n"
  4785. #| " <td height=\"20\"><strong>Del</strong></td>\n"
  4786. #| " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4787. #| " </tr>\n"
  4788. #| " <tr height=\"20\">\n"
  4789. #| " <td height=\"20\">&nbsp;</td>\n"
  4790. #| " <td>&nbsp;</td>\n"
  4791. #| " </tr>\n"
  4792. #| " <tr height=\"20\">\n"
  4793. #| " <td height=\"20\"><strong>ESC</strong></td>\n"
  4794. #| " <td>&nbsp;Abort and return to Select</td>\n"
  4795. #| " </tr>\n"
  4796. #| " <tr height=\"20\">\n"
  4797. #| " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4798. #| " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4799. #| " </tr>\n"
  4800. #| " <tr height=\"20\">\n"
  4801. #| " <td height=\"20\">&nbsp;</td>\n"
  4802. #| " <td>&nbsp;</td>\n"
  4803. #| " </tr>\n"
  4804. #| " <tr height=\"20\">\n"
  4805. #| " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4806. #| " <td>&nbsp;Transformation Tool</td>\n"
  4807. #| " </tr>\n"
  4808. #| " </tbody>\n"
  4809. #| " </table>\n"
  4810. #| " "
  4811. msgid ""
  4812. "<b>Editor Shortcut list</b><br>\n"
  4813. " <br>\n"
  4814. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4815. "strong><br>\n"
  4816. " \n"
  4817. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4818. "\"width:283px\">\n"
  4819. " <tbody>\n"
  4820. " <tr height=\"20\">\n"
  4821. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4822. "td>\n"
  4823. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4824. " </tr>\n"
  4825. " <tr height=\"20\">\n"
  4826. " <td height=\"20\"><strong>B</strong></td>\n"
  4827. " <td>&nbsp;Buffer Tool</td>\n"
  4828. " </tr>\n"
  4829. " <tr height=\"20\">\n"
  4830. " <td height=\"20\"><strong>C</strong></td>\n"
  4831. " <td>&nbsp;Copy Geo Item</td>\n"
  4832. " </tr>\n"
  4833. " <tr height=\"20\">\n"
  4834. " <td height=\"20\"><strong>D</strong></td>\n"
  4835. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4836. "direction: CW or CCW</td>\n"
  4837. " </tr>\n"
  4838. " <tr height=\"20\">\n"
  4839. " <td height=\"20\"><strong>E</strong></td>\n"
  4840. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4841. " </tr>\n"
  4842. " <tr height=\"20\">\n"
  4843. " <td height=\"20\"><strong>I</strong></td>\n"
  4844. " <td>&nbsp;Paint Tool</td>\n"
  4845. " </tr>\n"
  4846. " <tr height=\"20\">\n"
  4847. " <td height=\"20\"><strong>J</strong></td>\n"
  4848. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4849. " </tr>\n"
  4850. " <tr height=\"20\">\n"
  4851. " <td height=\"20\"><strong>K</strong></td>\n"
  4852. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4853. " </tr>\n"
  4854. " <tr height=\"20\">\n"
  4855. " <td height=\"20\"><strong>M</strong></td>\n"
  4856. " <td>&nbsp;Move Geo Item</td>\n"
  4857. " </tr>\n"
  4858. " <tr height=\"20\">\n"
  4859. " <td height=\"20\"><strong>M</strong></td>\n"
  4860. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4861. "modes</td>\n"
  4862. " </tr>\n"
  4863. " <tr height=\"20\">\n"
  4864. " <td height=\"20\"><strong>N</strong></td>\n"
  4865. " <td>&nbsp;Draw a Polygon</td>\n"
  4866. " </tr>\n"
  4867. " <tr height=\"20\">\n"
  4868. " <td height=\"20\"><strong>O</strong></td>\n"
  4869. " <td>&nbsp;Draw a Circle</td>\n"
  4870. " </tr>\n"
  4871. " <tr height=\"20\">\n"
  4872. " <td height=\"20\"><strong>P</strong></td>\n"
  4873. " <td>&nbsp;Draw a Path</td>\n"
  4874. " </tr>\n"
  4875. " <tr height=\"20\">\n"
  4876. " <td height=\"20\"><strong>R</strong></td>\n"
  4877. " <td>&nbsp;Draw Rectangle</td>\n"
  4878. " </tr>\n"
  4879. " <tr height=\"20\">\n"
  4880. " <td height=\"20\"><strong>S</strong></td>\n"
  4881. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4882. " </tr>\n"
  4883. " <tr height=\"20\">\n"
  4884. " <td height=\"20\"><strong>T</strong></td>\n"
  4885. " <td>&nbsp;Add Text Tool</td>\n"
  4886. " </tr>\n"
  4887. " <tr height=\"20\">\n"
  4888. " <td height=\"20\"><strong>U</strong></td>\n"
  4889. " <td>&nbsp;Polygon Union Tool</td>\n"
  4890. " </tr>\n"
  4891. " <tr height=\"20\">\n"
  4892. " <td height=\"20\"><strong>X</strong></td>\n"
  4893. " <td>&nbsp;Flip shape on X axis</td>\n"
  4894. " </tr>\n"
  4895. " <tr height=\"20\">\n"
  4896. " <td height=\"20\"><strong>Y</strong></td>\n"
  4897. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4898. " </tr>\n"
  4899. " <tr height=\"20\">\n"
  4900. " <td height=\"20\">&nbsp;</td>\n"
  4901. " <td>&nbsp;</td>\n"
  4902. " </tr>\n"
  4903. " <tr height=\"20\">\n"
  4904. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4905. " <td>&nbsp;Skew shape on X axis</td>\n"
  4906. " </tr>\n"
  4907. " <tr height=\"20\">\n"
  4908. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4909. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4910. " </tr>\n"
  4911. " <tr height=\"20\">\n"
  4912. " <td height=\"20\">&nbsp;</td>\n"
  4913. " <td>&nbsp;</td>\n"
  4914. " </tr>\n"
  4915. " <tr height=\"20\">\n"
  4916. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4917. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4918. " </tr>\n"
  4919. " <tr height=\"20\">\n"
  4920. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4921. " <td>&nbsp;Offset shape on X axis</td>\n"
  4922. " </tr>\n"
  4923. " <tr height=\"20\">\n"
  4924. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4925. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4926. " </tr>\n"
  4927. " <tr height=\"20\">\n"
  4928. " <td height=\"20\">&nbsp;</td>\n"
  4929. " <td>&nbsp;</td>\n"
  4930. " </tr>\n"
  4931. " <tr height=\"20\">\n"
  4932. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4933. " <td>&nbsp;Measurement Tool</td>\n"
  4934. " </tr>\n"
  4935. " <tr height=\"20\">\n"
  4936. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4937. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4938. " </tr>\n"
  4939. " <tr height=\"20\">\n"
  4940. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4941. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4942. " </tr>\n"
  4943. " <tr height=\"20\">\n"
  4944. " <td height=\"20\">&nbsp;</td>\n"
  4945. " <td>&nbsp;</td>\n"
  4946. " </tr>\n"
  4947. " <tr height=\"20\">\n"
  4948. " <td height=\"20\"><strong>Space</strong></td>\n"
  4949. " <td>&nbsp;Rotate Geometry</td>\n"
  4950. " </tr>\n"
  4951. " <tr height=\"20\">\n"
  4952. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4953. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4954. " </tr>\n"
  4955. " <tr height=\"20\">\n"
  4956. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4957. " <td>&nbsp;Abort and return to Select</td>\n"
  4958. " </tr>\n"
  4959. " <tr height=\"20\">\n"
  4960. " <td height=\"20\"><strong>Del</strong></td>\n"
  4961. " <td>&nbsp;Delete Shape</td>\n"
  4962. " </tr>\n"
  4963. " </tbody>\n"
  4964. " </table>\n"
  4965. " <br>\n"
  4966. " <br>\n"
  4967. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4968. "strong><br>\n"
  4969. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4970. "\"width:283px\">\n"
  4971. " <tbody>\n"
  4972. " <tr height=\"20\">\n"
  4973. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4974. "td>\n"
  4975. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4976. " </tr>\n"
  4977. " <tr height=\"20\">\n"
  4978. " <td height=\"20\"><strong>C</strong></td>\n"
  4979. " <td>&nbsp;Copy Drill(s)</td>\n"
  4980. " </tr>\n"
  4981. " <tr height=\"20\">\n"
  4982. " <td height=\"20\"><strong>D</strong></td>\n"
  4983. " <td>&nbsp;Add Drill</td>\n"
  4984. " </tr>\n"
  4985. " <tr height=\"20\">\n"
  4986. " <td height=\"20\"><strong>J</strong></td>\n"
  4987. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4988. " </tr>\n"
  4989. " <tr height=\"20\">\n"
  4990. " <td height=\"20\"><strong>M</strong></td>\n"
  4991. " <td>&nbsp;Move Drill(s)</td>\n"
  4992. " </tr>\n"
  4993. " <tr height=\"20\">\n"
  4994. " <td height=\"20\"><strong>R</strong></td>\n"
  4995. " <td>&nbsp;Resize Drill(s)</td>\n"
  4996. " </tr>\n"
  4997. " <tr height=\"20\">\n"
  4998. " <td height=\"20\"><strong>T</strong></td>\n"
  4999. " <td>&nbsp;Add a new Tool</td>\n"
  5000. " </tr>\n"
  5001. " <tr height=\"20\">\n"
  5002. " <td height=\"20\">&nbsp;</td>\n"
  5003. " <td>&nbsp;</td>\n"
  5004. " </tr>\n"
  5005. " <tr height=\"20\">\n"
  5006. " <td height=\"20\"><strong>Del</strong></td>\n"
  5007. " <td>&nbsp;Delete Drill(s)</td>\n"
  5008. " </tr>\n"
  5009. " <tr height=\"20\">\n"
  5010. " <td height=\"20\"><strong>Del</strong></td>\n"
  5011. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  5012. " </tr>\n"
  5013. " <tr height=\"20\">\n"
  5014. " <td height=\"20\">&nbsp;</td>\n"
  5015. " <td>&nbsp;</td>\n"
  5016. " </tr>\n"
  5017. " <tr height=\"20\">\n"
  5018. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5019. " <td>&nbsp;Abort and return to Select</td>\n"
  5020. " </tr>\n"
  5021. " <tr height=\"20\">\n"
  5022. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5023. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5024. " </tr>\n"
  5025. " </tbody>\n"
  5026. " </table>\n"
  5027. " <br>\n"
  5028. " <br>\n"
  5029. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  5030. "strong><br>\n"
  5031. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5032. "\"width:283px\">\n"
  5033. " <tbody>\n"
  5034. " <tr height=\"20\">\n"
  5035. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5036. "td>\n"
  5037. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  5038. " </tr>\n"
  5039. " <tr height=\"20\">\n"
  5040. " <td height=\"20\"><strong>B</strong></td>\n"
  5041. " <td>&nbsp;Buffer</td>\n"
  5042. " </tr>\n"
  5043. " <tr height=\"20\">\n"
  5044. " <td height=\"20\"><strong>C</strong></td>\n"
  5045. " <td>&nbsp;Copy</td>\n"
  5046. " </tr>\n"
  5047. " <tr height=\"20\">\n"
  5048. " <td height=\"20\"><strong>D</strong></td>\n"
  5049. " <td>&nbsp;Add Disc</td>\n"
  5050. " </tr>\n"
  5051. " <tr height=\"20\">\n"
  5052. " <td height=\"20\"><strong>E</strong></td>\n"
  5053. " <td>&nbsp;Add SemiDisc</td>\n"
  5054. " </tr>\n"
  5055. " <tr height=\"20\">\n"
  5056. " <td height=\"20\"><strong>J</strong></td>\n"
  5057. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  5058. " </tr>\n"
  5059. " <tr height=\"20\">\n"
  5060. " <td height=\"20\"><strong>M</strong></td>\n"
  5061. " <td>&nbsp;Move</td>\n"
  5062. " </tr>\n"
  5063. " <tr height=\"20\">\n"
  5064. " <td height=\"20\"><strong>N</strong></td>\n"
  5065. " <td>&nbsp;Add Region</td>\n"
  5066. " </tr>\n"
  5067. " <tr height=\"20\">\n"
  5068. " <td height=\"20\"><strong>P</strong></td>\n"
  5069. " <td>&nbsp;Add Pad</td>\n"
  5070. " </tr>\n"
  5071. " <tr height=\"20\">\n"
  5072. " <td height=\"20\"><strong>R</strong></td>\n"
  5073. " <td>&nbsp;Within Track & Region Tools will cycle in "
  5074. "REVERSE the bend modes</td>\n"
  5075. " </tr>\n"
  5076. " <tr height=\"20\">\n"
  5077. " <td height=\"20\"><strong>S</strong></td>\n"
  5078. " <td>&nbsp;Scale</td>\n"
  5079. " </tr>\n"
  5080. " <tr height=\"20\">\n"
  5081. " <td height=\"20\"><strong>T</strong></td>\n"
  5082. " <td>&nbsp;Add Track</td>\n"
  5083. " </tr>\n"
  5084. " <tr height=\"20\">\n"
  5085. " <td height=\"20\"><strong>T</strong></td>\n"
  5086. " <td>&nbsp;Within Track & Region Tools will cycle "
  5087. "FORWARD the bend modes</td>\n"
  5088. " </tr>\n"
  5089. " <tr height=\"20\">\n"
  5090. " <td height=\"20\">&nbsp;</td>\n"
  5091. " <td>&nbsp;</td>\n"
  5092. " </tr>\n"
  5093. " <tr height=\"20\">\n"
  5094. " <td height=\"20\"><strong>Del</strong></td>\n"
  5095. " <td>&nbsp;Delete</td>\n"
  5096. " </tr>\n"
  5097. " <tr height=\"20\">\n"
  5098. " <td height=\"20\"><strong>Del</strong></td>\n"
  5099. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  5100. " </tr>\n"
  5101. " <tr height=\"20\">\n"
  5102. " <td height=\"20\">&nbsp;</td>\n"
  5103. " <td>&nbsp;</td>\n"
  5104. " </tr>\n"
  5105. " <tr height=\"20\">\n"
  5106. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5107. " <td>&nbsp;Abort and return to Select</td>\n"
  5108. " </tr>\n"
  5109. " <tr height=\"20\">\n"
  5110. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5111. " <td>&nbsp;Eraser Tool</td>\n"
  5112. " </tr>\n"
  5113. " <tr height=\"20\">\n"
  5114. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5115. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5116. " </tr>\n"
  5117. " <tr height=\"20\">\n"
  5118. " <td height=\"20\">&nbsp;</td>\n"
  5119. " <td>&nbsp;</td>\n"
  5120. " </tr>\n"
  5121. " <tr height=\"20\">\n"
  5122. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5123. " <td>&nbsp;Mark Area Tool</td>\n"
  5124. " </tr>\n"
  5125. " <tr height=\"20\">\n"
  5126. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5127. " <td>&nbsp;Poligonize Tool</td>\n"
  5128. " </tr>\n"
  5129. " <tr height=\"20\">\n"
  5130. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5131. " <td>&nbsp;Transformation Tool</td>\n"
  5132. " </tr>\n"
  5133. " </tbody>\n"
  5134. " </table>\n"
  5135. " "
  5136. msgstr ""
  5137. "<b>Lista de Atalhos dos Editores</b><br>\n"
  5138. " <br>\n"
  5139. " <strong><span style=\"color:#0000ff\">EDITOR DE GEOMETRIA</"
  5140. "span></strong><br>\n"
  5141. " \n"
  5142. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5143. "\"width:283px\">\n"
  5144. " <tbody>\n"
  5145. " <tr height=\"20\">\n"
  5146. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5147. "td>\n"
  5148. " <td width=\"194\">&nbsp;Desenha um Arco</td>\n"
  5149. " </tr>\n"
  5150. " <tr height=\"20\">\n"
  5151. " <td height=\"20\"><strong>B</strong></td>\n"
  5152. " <td>&nbsp;Ferramenta Buffer</td>\n"
  5153. " </tr>\n"
  5154. " <tr height=\"20\">\n"
  5155. " <td height=\"20\"><strong>C</strong></td>\n"
  5156. " <td>&nbsp;Copiar Objeto Geo</td>\n"
  5157. " </tr>\n"
  5158. " <tr height=\"20\">\n"
  5159. " <td height=\"20\"><strong>D</strong></td>\n"
  5160. " <td>&nbsp;Em Adicionar Arco, alterna o sentido do "
  5161. "ARCO: CW ou CCW</td>\n"
  5162. " </tr>\n"
  5163. " <tr height=\"20\">\n"
  5164. " <td height=\"20\"><strong>E</strong></td>\n"
  5165. " <td>&nbsp;Ferramenta de Interseção de Polígonos</"
  5166. "td>\n"
  5167. " </tr>\n"
  5168. " <tr height=\"20\">\n"
  5169. " <td height=\"20\"><strong>I</strong></td>\n"
  5170. " <td>&nbsp;Ferramenta de Pintura</td>\n"
  5171. " </tr>\n"
  5172. " <tr height=\"20\">\n"
  5173. " <td height=\"20\"><strong>J</strong></td>\n"
  5174. " <td>&nbsp;Ir para a Localização (x, y)</td>\n"
  5175. " </tr>\n"
  5176. " <tr height=\"20\">\n"
  5177. " <td height=\"20\"><strong>K</strong></td>\n"
  5178. " <td>&nbsp;Alterna Encaixe no Canto</td>\n"
  5179. " </tr>\n"
  5180. " <tr height=\"20\">\n"
  5181. " <td height=\"20\"><strong>M</strong></td>\n"
  5182. " <td>&nbsp;Mover Item Geo</td>\n"
  5183. " </tr>\n"
  5184. " <tr height=\"20\">\n"
  5185. " <td height=\"20\"><strong>M</strong></td>\n"
  5186. " <td>&nbsp;Em Adicionar Arco, alterna entre os modos "
  5187. "de ARCO</td>\n"
  5188. " </tr>\n"
  5189. " <tr height=\"20\">\n"
  5190. " <td height=\"20\"><strong>N</strong></td>\n"
  5191. " <td>&nbsp;Desenha um Polígono</td>\n"
  5192. " </tr>\n"
  5193. " <tr height=\"20\">\n"
  5194. " <td height=\"20\"><strong>O</strong></td>\n"
  5195. " <td>&nbsp;Desenha um Círculo</td>\n"
  5196. " </tr>\n"
  5197. " <tr height=\"20\">\n"
  5198. " <td height=\"20\"><strong>P</strong></td>\n"
  5199. " <td>&nbsp;Desenha um Caminho</td>\n"
  5200. " </tr>\n"
  5201. " <tr height=\"20\">\n"
  5202. " <td height=\"20\"><strong>R</strong></td>\n"
  5203. " <td>&nbsp;Desenha um Retângulo</td>\n"
  5204. " </tr>\n"
  5205. " <tr height=\"20\">\n"
  5206. " <td height=\"20\"><strong>S</strong></td>\n"
  5207. " <td>&nbsp;Ferramenta de Subtração de Polígonos</td>\n"
  5208. " </tr>\n"
  5209. " <tr height=\"20\">\n"
  5210. " <td height=\"20\"><strong>T</strong></td>\n"
  5211. " <td>&nbsp;Ferramenta Adicionar Texto</td>\n"
  5212. " </tr>\n"
  5213. " <tr height=\"20\">\n"
  5214. " <td height=\"20\"><strong>U</strong></td>\n"
  5215. " <td>&nbsp;Ferramenta União de Polígonos</td>\n"
  5216. " </tr>\n"
  5217. " <tr height=\"20\">\n"
  5218. " <td height=\"20\"><strong>X</strong></td>\n"
  5219. " <td>&nbsp;Espelha a forma no eixo X</td>\n"
  5220. " </tr>\n"
  5221. " <tr height=\"20\">\n"
  5222. " <td height=\"20\"><strong>Y</strong></td>\n"
  5223. " <td>&nbsp;Espelha a forma no eixo Y</td>\n"
  5224. " </tr>\n"
  5225. " <tr height=\"20\">\n"
  5226. " <td height=\"20\">&nbsp;</td>\n"
  5227. " <td>&nbsp;</td>\n"
  5228. " </tr>\n"
  5229. " <tr height=\"20\">\n"
  5230. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  5231. " <td>&nbsp;Inclina a forma no eixo X</td>\n"
  5232. " </tr>\n"
  5233. " <tr height=\"20\">\n"
  5234. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  5235. " <td>&nbsp;Inclina a forma no eixo Y</td>\n"
  5236. " </tr>\n"
  5237. " <tr height=\"20\">\n"
  5238. " <td height=\"20\">&nbsp;</td>\n"
  5239. " <td>&nbsp;</td>\n"
  5240. " </tr>\n"
  5241. " <tr height=\"20\">\n"
  5242. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5243. " <td>&nbsp;Ferramenta Editor de Transformação</td>\n"
  5244. " </tr>\n"
  5245. " <tr height=\"20\">\n"
  5246. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  5247. " <td>&nbsp;Desloca a forma no eixo X</td>\n"
  5248. " </tr>\n"
  5249. " <tr height=\"20\">\n"
  5250. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  5251. " <td>&nbsp;Desloca a forma no eixo Y</td>\n"
  5252. " </tr>\n"
  5253. " <tr height=\"20\">\n"
  5254. " <td height=\"20\">&nbsp;</td>\n"
  5255. " <td>&nbsp;</td>\n"
  5256. " </tr>\n"
  5257. " <tr height=\"20\">\n"
  5258. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  5259. " <td>&nbsp;Ferramenta de Medição</td>\n"
  5260. " </tr>\n"
  5261. " <tr height=\"20\">\n"
  5262. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5263. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5264. " </tr>\n"
  5265. " <tr height=\"20\">\n"
  5266. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  5267. " <td>&nbsp;Ferramenta de Corte de Polígono</td>\n"
  5268. " </tr>\n"
  5269. " <tr height=\"20\">\n"
  5270. " <td height=\"20\">&nbsp;</td>\n"
  5271. " <td>&nbsp;</td>\n"
  5272. " </tr>\n"
  5273. " <tr height=\"20\">\n"
  5274. " <td height=\"20\"><strong>Space</strong></td>\n"
  5275. " <td>&nbsp;Girar Geometria</td>\n"
  5276. " </tr>\n"
  5277. " <tr height=\"20\">\n"
  5278. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  5279. " <td>&nbsp;Terminar o desenho para certas "
  5280. "ferramentas</td>\n"
  5281. " </tr>\n"
  5282. " <tr height=\"20\">\n"
  5283. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5284. " <td>&nbsp;Abortar e retornar à Seleção</td>\n"
  5285. " </tr>\n"
  5286. " <tr height=\"20\">\n"
  5287. " <td height=\"20\"><strong>Del</strong></td>\n"
  5288. " <td>&nbsp;Excluir Forma</td>\n"
  5289. " </tr>\n"
  5290. " </tbody>\n"
  5291. " </table>\n"
  5292. " <br>\n"
  5293. " <br>\n"
  5294. " <strong><span style=\"color:#ff0000\">EDITOR EXCELLON</span></"
  5295. "strong><br>\n"
  5296. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5297. "\"width:283px\">\n"
  5298. " <tbody>\n"
  5299. " <tr height=\"20\">\n"
  5300. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5301. "td>\n"
  5302. " <td width=\"194\">&nbsp;Adiciona Matriz de Brocas</"
  5303. "td>\n"
  5304. " </tr>\n"
  5305. " <tr height=\"20\">\n"
  5306. " <td height=\"20\"><strong>C</strong></td>\n"
  5307. " <td>&nbsp;Copiar Broca(s)</td>\n"
  5308. " </tr>\n"
  5309. " <tr height=\"20\">\n"
  5310. " <td height=\"20\"><strong>D</strong></td>\n"
  5311. " <td>&nbsp;Adicionar Broca</td>\n"
  5312. " </tr>\n"
  5313. " <tr height=\"20\">\n"
  5314. " <td height=\"20\"><strong>J</strong></td>\n"
  5315. " <td>&nbsp;Ir para Localização (x, y)</td>\n"
  5316. " </tr>\n"
  5317. " <tr height=\"20\">\n"
  5318. " <td height=\"20\"><strong>M</strong></td>\n"
  5319. " <td>&nbsp;Mover Broca(s)</td>\n"
  5320. " </tr>\n"
  5321. " <tr height=\"20\">\n"
  5322. " <td height=\"20\"><strong>R</strong></td>\n"
  5323. " <td>&nbsp;Redimensionar Broca(s)</td>\n"
  5324. " </tr>\n"
  5325. " <tr height=\"20\">\n"
  5326. " <td height=\"20\"><strong>T</strong></td>\n"
  5327. " <td>&nbsp;Adicionar uma Nova Ferramenta</td>\n"
  5328. " </tr>\n"
  5329. " <tr height=\"20\">\n"
  5330. " <td height=\"20\">&nbsp;</td>\n"
  5331. " <td>&nbsp;</td>\n"
  5332. " </tr>\n"
  5333. " <tr height=\"20\">\n"
  5334. " <td height=\"20\"><strong>Del</strong></td>\n"
  5335. " <td>&nbsp;Excluir Broca(s)</td>\n"
  5336. " </tr>\n"
  5337. " <tr height=\"20\">\n"
  5338. " <td height=\"20\"><strong>Del</strong></td>\n"
  5339. " <td>&nbsp;Alternar: Excluir Ferramenta(s)</td>\n"
  5340. " </tr>\n"
  5341. " <tr height=\"20\">\n"
  5342. " <td height=\"20\">&nbsp;</td>\n"
  5343. " <td>&nbsp;</td>\n"
  5344. " </tr>\n"
  5345. " <tr height=\"20\">\n"
  5346. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5347. " <td>&nbsp;Abortar e retornar para a Seleção</td>\n"
  5348. " </tr>\n"
  5349. " <tr height=\"20\">\n"
  5350. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5351. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5352. " </tr>\n"
  5353. " </tbody>\n"
  5354. " </table>\n"
  5355. " <br>\n"
  5356. " <br>\n"
  5357. " <strong><span style=\"color:#00ff00\">EDITOR GERBER</span></"
  5358. "strong><br>\n"
  5359. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5360. "\"width:283px\">\n"
  5361. " <tbody>\n"
  5362. " <tr height=\"20\">\n"
  5363. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5364. "td>\n"
  5365. " <td width=\"194\">&nbsp;Adicionar Matriz de Pads</"
  5366. "td>\n"
  5367. " </tr>\n"
  5368. " <tr height=\"20\">\n"
  5369. " <td height=\"20\"><strong>B</strong></td>\n"
  5370. " <td>&nbsp;Buffer</td>\n"
  5371. " </tr>\n"
  5372. " <tr height=\"20\">\n"
  5373. " <td height=\"20\"><strong>C</strong></td>\n"
  5374. " <td>&nbsp;Copiar</td>\n"
  5375. " </tr>\n"
  5376. " <tr height=\"20\">\n"
  5377. " <td height=\"20\"><strong>D</strong></td>\n"
  5378. " <td>&nbsp;Adicionar Disco</td>\n"
  5379. " </tr>\n"
  5380. " <tr height=\"20\">\n"
  5381. " <td height=\"20\"><strong>E</strong></td>\n"
  5382. " <td>&nbsp;Adicionar SemiDisco</td>\n"
  5383. " </tr>\n"
  5384. " <tr height=\"20\">\n"
  5385. " <td height=\"20\"><strong>J</strong></td>\n"
  5386. " <td>&nbsp;Ir para a Localização (x, y)</td>\n"
  5387. " </tr>\n"
  5388. " <tr height=\"20\">\n"
  5389. " <td height=\"20\"><strong>M</strong></td>\n"
  5390. " <td>&nbsp;Mover</td>\n"
  5391. " </tr>\n"
  5392. " <tr height=\"20\">\n"
  5393. " <td height=\"20\"><strong>N</strong></td>\n"
  5394. " <td>&nbsp;Adicionar Região</td>\n"
  5395. " </tr>\n"
  5396. " <tr height=\"20\">\n"
  5397. " <td height=\"20\"><strong>P</strong></td>\n"
  5398. " <td>&nbsp;Adicionar Pad</td>\n"
  5399. " </tr>\n"
  5400. " <tr height=\"20\">\n"
  5401. " <td height=\"20\"><strong>R</strong></td>\n"
  5402. " <td>&nbsp;Nas Ferramentas Trilha & Região alternará "
  5403. "em REVERSO entre os modos de curvatura</td>\n"
  5404. " </tr>\n"
  5405. " <tr height=\"20\">\n"
  5406. " <td height=\"20\"><strong>S</strong></td>\n"
  5407. " <td>&nbsp;Escala</td>\n"
  5408. " </tr>\n"
  5409. " <tr height=\"20\">\n"
  5410. " <td height=\"20\"><strong>T</strong></td>\n"
  5411. " <td>&nbsp;Adicionar Trilha</td>\n"
  5412. " </tr>\n"
  5413. " <tr height=\"20\">\n"
  5414. " <td height=\"20\"><strong>T</strong></td>\n"
  5415. " <td>&nbsp;Nas Ferramentas Trilha & Região alternará "
  5416. "entre os modos de curvatura</td>\n"
  5417. " </tr>\n"
  5418. " <tr height=\"20\">\n"
  5419. " <td height=\"20\">&nbsp;</td>\n"
  5420. " <td>&nbsp;</td>\n"
  5421. " </tr>\n"
  5422. " <tr height=\"20\">\n"
  5423. " <td height=\"20\"><strong>Del</strong></td>\n"
  5424. " <td>&nbsp;Excluir</td>\n"
  5425. " </tr>\n"
  5426. " <tr height=\"20\">\n"
  5427. " <td height=\"20\"><strong>Del</strong></td>\n"
  5428. " <td>&nbsp;Alternar: Excluir Aberturas</td>\n"
  5429. " </tr>\n"
  5430. " <tr height=\"20\">\n"
  5431. " <td height=\"20\">&nbsp;</td>\n"
  5432. " <td>&nbsp;</td>\n"
  5433. " </tr>\n"
  5434. " <tr height=\"20\">\n"
  5435. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5436. " <td>&nbsp;Abortar e retornar para a Seleção</td>\n"
  5437. " </tr>\n"
  5438. " <tr height=\"20\">\n"
  5439. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5440. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5441. " </tr>\n"
  5442. " <tr height=\"20\">\n"
  5443. " <td height=\"20\">&nbsp;</td>\n"
  5444. " <td>&nbsp;</td>\n"
  5445. " </tr>\n"
  5446. " <tr height=\"20\">\n"
  5447. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5448. " <td>&nbsp;Ferramenta de Transformação</td>\n"
  5449. " </tr>\n"
  5450. " </tbody>\n"
  5451. " </table>\n"
  5452. " "
  5453. #: flatcamGUI/FlatCAMGUI.py:1597
  5454. msgid "Toggle Panel"
  5455. msgstr "Alternar Painel"
  5456. #: flatcamGUI/FlatCAMGUI.py:1600
  5457. msgid "New"
  5458. msgstr "Novo"
  5459. #: flatcamGUI/FlatCAMGUI.py:1601
  5460. msgid "Geometry"
  5461. msgstr "Geometria"
  5462. #: flatcamGUI/FlatCAMGUI.py:1603
  5463. msgid "Excellon"
  5464. msgstr "Excellon"
  5465. #: flatcamGUI/FlatCAMGUI.py:1608
  5466. msgid "Grids"
  5467. msgstr "Grades"
  5468. #: flatcamGUI/FlatCAMGUI.py:1610
  5469. msgid "View"
  5470. msgstr "Ver"
  5471. #: flatcamGUI/FlatCAMGUI.py:1612
  5472. msgid "Clear Plot"
  5473. msgstr "Limpar Gráfico"
  5474. #: flatcamGUI/FlatCAMGUI.py:1613
  5475. msgid "Replot"
  5476. msgstr "Redesenhar"
  5477. #: flatcamGUI/FlatCAMGUI.py:1616
  5478. msgid "Geo Editor"
  5479. msgstr "Editor Geométrico"
  5480. #: flatcamGUI/FlatCAMGUI.py:1617
  5481. msgid "Line"
  5482. msgstr "Linha"
  5483. #: flatcamGUI/FlatCAMGUI.py:1618
  5484. msgid "Rectangle"
  5485. msgstr "Retângulo"
  5486. #: flatcamGUI/FlatCAMGUI.py:1619 flatcamGUI/FlatCAMGUI.py:5562
  5487. #: flatcamGUI/ObjectUI.py:1366
  5488. msgid "Cut"
  5489. msgstr "Cortar"
  5490. #: flatcamGUI/FlatCAMGUI.py:1624
  5491. msgid "Pad"
  5492. msgstr "Pad"
  5493. #: flatcamGUI/FlatCAMGUI.py:1625
  5494. msgid "Pad Array"
  5495. msgstr "Matriz de Pads"
  5496. #: flatcamGUI/FlatCAMGUI.py:1626
  5497. msgid "Track"
  5498. msgstr "Trilha"
  5499. #: flatcamGUI/FlatCAMGUI.py:1627
  5500. msgid "Region"
  5501. msgstr "Região"
  5502. #: flatcamGUI/FlatCAMGUI.py:1629
  5503. msgid "Exc Editor"
  5504. msgstr "Editor Exc"
  5505. #: flatcamGUI/FlatCAMGUI.py:1630
  5506. msgid "Add Drill"
  5507. msgstr "Adicionar Broca"
  5508. #: flatcamGUI/FlatCAMGUI.py:1662
  5509. msgid "Print Preview"
  5510. msgstr "Visualizar Impressão"
  5511. #: flatcamGUI/FlatCAMGUI.py:1663
  5512. msgid "Print Code"
  5513. msgstr "Imprimir Código"
  5514. #: flatcamGUI/FlatCAMGUI.py:1664
  5515. msgid "Find in Code"
  5516. msgstr "Encontrar no Código"
  5517. #: flatcamGUI/FlatCAMGUI.py:1669
  5518. msgid "Replace With"
  5519. msgstr "Substituir Por"
  5520. #: flatcamGUI/FlatCAMGUI.py:1673 flatcamGUI/FlatCAMGUI.py:5560
  5521. #: flatcamGUI/FlatCAMGUI.py:6118 flatcamGUI/ObjectUI.py:1364
  5522. #: flatcamTools/ToolPaint.py:248
  5523. msgid "All"
  5524. msgstr "Todos"
  5525. #: flatcamGUI/FlatCAMGUI.py:1675
  5526. msgid ""
  5527. "When checked it will replace all instances in the 'Find' box\n"
  5528. "with the text in the 'Replace' box.."
  5529. msgstr ""
  5530. "Quando marcado, todas as instâncias na caixa 'Localizar'\n"
  5531. "serão substituídas pelo texto na caixa 'Substituir'."
  5532. #: flatcamGUI/FlatCAMGUI.py:1678
  5533. msgid "Open Code"
  5534. msgstr "Abrir Código"
  5535. #: flatcamGUI/FlatCAMGUI.py:1679
  5536. msgid "Save Code"
  5537. msgstr "Salvar Código"
  5538. #: flatcamGUI/FlatCAMGUI.py:1714
  5539. msgid ""
  5540. "Relative neasurement.\n"
  5541. "Reference is last click position"
  5542. msgstr ""
  5543. "Medição relativa.\n"
  5544. "Em referência à posição do último clique"
  5545. #: flatcamGUI/FlatCAMGUI.py:1720
  5546. msgid ""
  5547. "Absolute neasurement.\n"
  5548. "Reference is (X=0, Y= 0) position"
  5549. msgstr ""
  5550. "Medição absoluta.\n"
  5551. " Em referência à posição (X=0, Y=0)"
  5552. #: flatcamGUI/FlatCAMGUI.py:1916
  5553. msgid "Select 'Esc'"
  5554. msgstr "Selecionar 'Esc'"
  5555. #: flatcamGUI/FlatCAMGUI.py:1943
  5556. msgid "Copy Objects"
  5557. msgstr "Copiar Objetos"
  5558. #: flatcamGUI/FlatCAMGUI.py:1945
  5559. msgid "Delete Shape"
  5560. msgstr "Excluir Forma"
  5561. #: flatcamGUI/FlatCAMGUI.py:1950
  5562. msgid "Move Objects"
  5563. msgstr "Mover Objetos"
  5564. #: flatcamGUI/FlatCAMGUI.py:2381
  5565. msgid ""
  5566. "Please first select a geometry item to be cutted\n"
  5567. "then select the geometry item that will be cutted\n"
  5568. "out of the first item. In the end press ~X~ key or\n"
  5569. "the toolbar button."
  5570. msgstr ""
  5571. "Por favor, primeiro selecione um item de geometria a ser cortado\n"
  5572. "e em seguida, selecione o item de geometria que será cortado\n"
  5573. "fora do primeiro item. No final, pressione a tecla ~X~ ou\n"
  5574. "o botão da barra de ferramentas."
  5575. #: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/FlatCAMGUI.py:2525
  5576. #: flatcamGUI/FlatCAMGUI.py:2584 flatcamGUI/FlatCAMGUI.py:2604
  5577. msgid "Warning"
  5578. msgstr "Aviso"
  5579. #: flatcamGUI/FlatCAMGUI.py:2455 flatcamGUI/FlatCAMGUI.py:2663
  5580. #: flatcamGUI/FlatCAMGUI.py:2874
  5581. msgid "[WARNING_NOTCL] Cancelled."
  5582. msgstr "[WARNING_NOTCL] Cancelado."
  5583. #: flatcamGUI/FlatCAMGUI.py:2520
  5584. msgid ""
  5585. "Please select geometry items \n"
  5586. "on which to perform Intersection Tool."
  5587. msgstr ""
  5588. "Por favor, selecione itens de geometria\n"
  5589. "para executar ferramenta de interseção."
  5590. #: flatcamGUI/FlatCAMGUI.py:2579
  5591. msgid ""
  5592. "Please select geometry items \n"
  5593. "on which to perform Substraction Tool."
  5594. msgstr ""
  5595. "Por favor, selecione itens de geometria\n"
  5596. "para executar ferramenta de subtração."
  5597. #: flatcamGUI/FlatCAMGUI.py:2599
  5598. msgid ""
  5599. "Please select geometry items \n"
  5600. "on which to perform union."
  5601. msgstr ""
  5602. "Por favor, selecione itens de geometria\n"
  5603. "para executar ferramenta de união."
  5604. #: flatcamGUI/FlatCAMGUI.py:2679 flatcamGUI/FlatCAMGUI.py:2891
  5605. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5606. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para excluir."
  5607. #: flatcamGUI/FlatCAMGUI.py:2763 flatcamGUI/FlatCAMGUI.py:2958
  5608. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5609. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para copiar."
  5610. #: flatcamGUI/FlatCAMGUI.py:2809 flatcamGUI/FlatCAMGUI.py:3004
  5611. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5612. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para mover."
  5613. #: flatcamGUI/FlatCAMGUI.py:3018
  5614. msgid "New Tool ..."
  5615. msgstr "Nova Ferramenta ..."
  5616. #: flatcamGUI/FlatCAMGUI.py:3019
  5617. msgid "Enter a Tool Diameter:"
  5618. msgstr "Digite um diâmetro de ferramenta:"
  5619. #: flatcamGUI/FlatCAMGUI.py:3062
  5620. msgid "Measurement Tool exit..."
  5621. msgstr "Saída da ferramenta de medição ..."
  5622. #: flatcamGUI/FlatCAMGUI.py:3353
  5623. msgid "GUI Preferences"
  5624. msgstr "Preferências da GUI"
  5625. #: flatcamGUI/FlatCAMGUI.py:3359
  5626. msgid "Grid X value:"
  5627. msgstr "Valor da grade X:"
  5628. #: flatcamGUI/FlatCAMGUI.py:3361
  5629. msgid "This is the Grid snap value on X axis."
  5630. msgstr "Este é o valor do encaixe à grade no eixo X."
  5631. #: flatcamGUI/FlatCAMGUI.py:3366
  5632. msgid "Grid Y value:"
  5633. msgstr "Valor da grade Y:"
  5634. #: flatcamGUI/FlatCAMGUI.py:3368
  5635. msgid "This is the Grid snap value on Y axis."
  5636. msgstr "Este é o valor do encaixe à grade no eixo Y."
  5637. #: flatcamGUI/FlatCAMGUI.py:3373
  5638. msgid "Snap Max:"
  5639. msgstr "Encaixe Max:"
  5640. #: flatcamGUI/FlatCAMGUI.py:3378
  5641. msgid "Workspace:"
  5642. msgstr "Área de trabalho:"
  5643. #: flatcamGUI/FlatCAMGUI.py:3380
  5644. msgid ""
  5645. "Draw a delimiting rectangle on canvas.\n"
  5646. "The purpose is to illustrate the limits for our work."
  5647. msgstr ""
  5648. "Desenhe um retângulo de delimitação na tela.\n"
  5649. "O objetivo é ilustrar os limites do nosso trabalho."
  5650. #: flatcamGUI/FlatCAMGUI.py:3383
  5651. msgid "Wk. format:"
  5652. msgstr "Wk formato:"
  5653. #: flatcamGUI/FlatCAMGUI.py:3385
  5654. msgid ""
  5655. "Select the type of rectangle to be used on canvas,\n"
  5656. "as valid workspace."
  5657. msgstr ""
  5658. "Selecione o tipo de retângulo a ser usado na tela,\n"
  5659. "como espaço de trabalho válido."
  5660. #: flatcamGUI/FlatCAMGUI.py:3398
  5661. msgid "Plot Fill:"
  5662. msgstr "Cor de Preenchimento:"
  5663. #: flatcamGUI/FlatCAMGUI.py:3400
  5664. msgid ""
  5665. "Set the fill color for plotted objects.\n"
  5666. "First 6 digits are the color and the last 2\n"
  5667. "digits are for alpha (transparency) level."
  5668. msgstr ""
  5669. "Defina a cor de preenchimento para os objetos plotados.\n"
  5670. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5671. "dígitos são para o nível alfa (transparência)."
  5672. #: flatcamGUI/FlatCAMGUI.py:3414 flatcamGUI/FlatCAMGUI.py:3464
  5673. #: flatcamGUI/FlatCAMGUI.py:3514
  5674. msgid "Alpha Level:"
  5675. msgstr "Nível Alfa:"
  5676. #: flatcamGUI/FlatCAMGUI.py:3416
  5677. msgid "Set the fill transparency for plotted objects."
  5678. msgstr "Definir a transparência de preenchimento para objetos plotados."
  5679. #: flatcamGUI/FlatCAMGUI.py:3433
  5680. msgid "Plot Line:"
  5681. msgstr "Linha:"
  5682. #: flatcamGUI/FlatCAMGUI.py:3435
  5683. msgid "Set the line color for plotted objects."
  5684. msgstr "Defina a cor da linha para objetos plotados."
  5685. #: flatcamGUI/FlatCAMGUI.py:3447
  5686. msgid "Sel. Fill:"
  5687. msgstr "Sel. Preenchimento:"
  5688. #: flatcamGUI/FlatCAMGUI.py:3449
  5689. msgid ""
  5690. "Set the fill color for the selection box\n"
  5691. "in case that the selection is done from left to right.\n"
  5692. "First 6 digits are the color and the last 2\n"
  5693. "digits are for alpha (transparency) level."
  5694. msgstr ""
  5695. "Defina a cor de preenchimento para a caixa de seleção\n"
  5696. "no caso de a seleção ser feita da esquerda para a direita.\n"
  5697. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5698. "dígitos são para o nível alfa (transparência)."
  5699. #: flatcamGUI/FlatCAMGUI.py:3466
  5700. msgid "Set the fill transparency for the 'left to right' selection box."
  5701. msgstr ""
  5702. "Defina a transparência de preenchimento para a caixa de seleção \"da "
  5703. "esquerda para a direita\"."
  5704. #: flatcamGUI/FlatCAMGUI.py:3483
  5705. msgid "Sel. Line:"
  5706. msgstr "Sel. Linha:"
  5707. #: flatcamGUI/FlatCAMGUI.py:3485
  5708. msgid "Set the line color for the 'left to right' selection box."
  5709. msgstr ""
  5710. "Defina a cor da linha para a caixa de seleção \"da esquerda para a direita\"."
  5711. #: flatcamGUI/FlatCAMGUI.py:3497
  5712. msgid "Sel2. Fill:"
  5713. msgstr "Sel2 Preenchimento:"
  5714. #: flatcamGUI/FlatCAMGUI.py:3499
  5715. msgid ""
  5716. "Set the fill color for the selection box\n"
  5717. "in case that the selection is done from right to left.\n"
  5718. "First 6 digits are the color and the last 2\n"
  5719. "digits are for alpha (transparency) level."
  5720. msgstr ""
  5721. "Defina a cor de preenchimento para a caixa de seleção, caso a seleção seja "
  5722. "feita da direita para a esquerda.\n"
  5723. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5724. "dígitos são para o nível alfa (transparência)."
  5725. #: flatcamGUI/FlatCAMGUI.py:3516
  5726. msgid "Set the fill transparency for selection 'right to left' box."
  5727. msgstr ""
  5728. "Defina a transparência de preenchimento para a seleção da caixa 'direita "
  5729. "para a esquerda'."
  5730. #: flatcamGUI/FlatCAMGUI.py:3533
  5731. msgid "Sel2. Line:"
  5732. msgstr "Sel2 Linha:"
  5733. #: flatcamGUI/FlatCAMGUI.py:3535
  5734. msgid "Set the line color for the 'right to left' selection box."
  5735. msgstr ""
  5736. "Defina a cor da linha para a caixa de seleção 'direita para a esquerda'."
  5737. #: flatcamGUI/FlatCAMGUI.py:3547
  5738. msgid "Editor Draw:"
  5739. msgstr "Editor de Desenho:"
  5740. #: flatcamGUI/FlatCAMGUI.py:3549
  5741. msgid "Set the color for the shape."
  5742. msgstr "Definir a cor da forma."
  5743. #: flatcamGUI/FlatCAMGUI.py:3561
  5744. msgid "Editor Draw Sel.:"
  5745. msgstr "Editor de Desenho Sel.:"
  5746. #: flatcamGUI/FlatCAMGUI.py:3563
  5747. msgid "Set the color of the shape when selected."
  5748. msgstr "Defina a cor da forma quando selecionada."
  5749. #: flatcamGUI/FlatCAMGUI.py:3575
  5750. msgid "Project Items:"
  5751. msgstr "Itens do Projeto:"
  5752. #: flatcamGUI/FlatCAMGUI.py:3577
  5753. msgid "Set the color of the items in Project Tab Tree."
  5754. msgstr "Defina a cor dos itens na Árvore do Guia de Projeto."
  5755. #: flatcamGUI/FlatCAMGUI.py:3588
  5756. msgid "Proj. Dis. Items:"
  5757. msgstr "Proj. Dis. Items:"
  5758. #: flatcamGUI/FlatCAMGUI.py:3590
  5759. msgid ""
  5760. "Set the color of the items in Project Tab Tree,\n"
  5761. "for the case when the items are disabled."
  5762. msgstr ""
  5763. "Defina a cor dos itens na Árvore da guia Projeto,\n"
  5764. "para o caso em que os itens estão desativados."
  5765. #: flatcamGUI/FlatCAMGUI.py:3641
  5766. msgid "GUI Settings"
  5767. msgstr "Configurações da GUI"
  5768. #: flatcamGUI/FlatCAMGUI.py:3647
  5769. msgid "Layout:"
  5770. msgstr "Layout:"
  5771. #: flatcamGUI/FlatCAMGUI.py:3649
  5772. msgid ""
  5773. "Select an layout for FlatCAM.\n"
  5774. "It is applied immediately."
  5775. msgstr ""
  5776. "Selecione um layout para o FlatCAM.\n"
  5777. "É aplicado imediatamente."
  5778. #: flatcamGUI/FlatCAMGUI.py:3665
  5779. msgid "Style:"
  5780. msgstr "Estilo:"
  5781. #: flatcamGUI/FlatCAMGUI.py:3667
  5782. msgid ""
  5783. "Select an style for FlatCAM.\n"
  5784. "It will be applied at the next app start."
  5785. msgstr ""
  5786. "Selecione um estilo para FlatCAM.\n"
  5787. "Ele será aplicado no próximo início do aplicativo."
  5788. #: flatcamGUI/FlatCAMGUI.py:3678
  5789. msgid "HDPI Support:"
  5790. msgstr "Suporte HDPI:"
  5791. #: flatcamGUI/FlatCAMGUI.py:3680
  5792. msgid ""
  5793. "Enable High DPI support for FlatCAM.\n"
  5794. "It will be applied at the next app start."
  5795. msgstr ""
  5796. "Ativa o suporte de alta DPI para FlatCAM.\n"
  5797. "Ele será aplicado no próximo início do aplicativo."
  5798. #: flatcamGUI/FlatCAMGUI.py:3693
  5799. msgid "Clear GUI Settings:"
  5800. msgstr "Limpar Configurações da GUI:"
  5801. #: flatcamGUI/FlatCAMGUI.py:3695
  5802. msgid ""
  5803. "Clear the GUI settings for FlatCAM,\n"
  5804. "such as: layout, gui state, style, hdpi support etc."
  5805. msgstr ""
  5806. "Limpa as configurações da GUI para FlatCAM,\n"
  5807. "como: layout, estado de gui, estilo, suporte a HDPI etc."
  5808. #: flatcamGUI/FlatCAMGUI.py:3698
  5809. msgid "Clear"
  5810. msgstr "Limpar"
  5811. #: flatcamGUI/FlatCAMGUI.py:3702
  5812. msgid "Hover Shape:"
  5813. msgstr "Hover Shape:"
  5814. #: flatcamGUI/FlatCAMGUI.py:3704
  5815. msgid ""
  5816. "Enable display of a hover shape for FlatCAM objects.\n"
  5817. "It is displayed whenever the mouse cursor is hovering\n"
  5818. "over any kind of not-selected object."
  5819. msgstr ""
  5820. "Habilita a exibição de uma forma hover para objetos FlatCAM.\n"
  5821. "É exibido sempre que o cursor do mouse estiver pairando\n"
  5822. "sobre qualquer tipo de objeto não selecionado."
  5823. #: flatcamGUI/FlatCAMGUI.py:3711
  5824. msgid "Sel. Shape:"
  5825. msgstr "Sel. Forma:"
  5826. #: flatcamGUI/FlatCAMGUI.py:3713
  5827. msgid ""
  5828. "Enable the display of a selection shape for FlatCAM objects.\n"
  5829. "It is displayed whenever the mouse selects an object\n"
  5830. "either by clicking or dragging mouse from left to right or\n"
  5831. "right to left."
  5832. msgstr ""
  5833. "Ativa a exibição de seleção de forma para objetos FlatCAM.\n"
  5834. "É exibido sempre que o mouse seleciona um objeto\n"
  5835. "seja clicando ou arrastando o mouse da esquerda para a direita ou da direita "
  5836. "para a esquerda."
  5837. #: flatcamGUI/FlatCAMGUI.py:3755
  5838. msgid "Are you sure you want to delete the GUI Settings? \n"
  5839. msgstr "Tem certeza de que deseja excluir as configurações da GUI? \n"
  5840. #: flatcamGUI/FlatCAMGUI.py:3758
  5841. msgid "Clear GUI Settings"
  5842. msgstr "Limpar as configurações da GUI"
  5843. #: flatcamGUI/FlatCAMGUI.py:3779
  5844. msgid "App Preferences"
  5845. msgstr "Preferências do aplicativo"
  5846. #: flatcamGUI/FlatCAMGUI.py:3785
  5847. msgid "<b>Units:</b>"
  5848. msgstr "<b>Unidades:</b>"
  5849. #: flatcamGUI/FlatCAMGUI.py:3786
  5850. msgid ""
  5851. "The default value for FlatCAM units.\n"
  5852. "Whatever is selected here is set every time\n"
  5853. "FLatCAM is started."
  5854. msgstr ""
  5855. "O valor padrão para unidades FlatCAM.\n"
  5856. "O que estiver selecionado aqui será definido sempre que\n"
  5857. "FLatCAM for iniciado."
  5858. #: flatcamGUI/FlatCAMGUI.py:3789
  5859. msgid "IN"
  5860. msgstr "in"
  5861. #: flatcamGUI/FlatCAMGUI.py:3790 flatcamGUI/FlatCAMGUI.py:4279
  5862. #: flatcamGUI/FlatCAMGUI.py:4540 flatcamGUI/FlatCAMGUI.py:4931
  5863. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5864. msgid "MM"
  5865. msgstr "mm"
  5866. #: flatcamGUI/FlatCAMGUI.py:3793
  5867. msgid "<b>APP. LEVEL:</b>"
  5868. msgstr "<b>Nível do Aplicativo:</b>"
  5869. #: flatcamGUI/FlatCAMGUI.py:3794
  5870. msgid ""
  5871. "Choose the default level of usage for FlatCAM.\n"
  5872. "BASIC level -> reduced functionality, best for beginner's.\n"
  5873. "ADVANCED level -> full functionality.\n"
  5874. "\n"
  5875. "The choice here will influence the parameters in\n"
  5876. "the Selected Tab for all kinds of FlatCAM objects."
  5877. msgstr ""
  5878. "Escolha o nível padrão de uso para FlatCAM.\n"
  5879. "Nível BÁSICO -> funcionalidade reduzida, melhor para iniciantes.\n"
  5880. "Nível AVANÇADO -> funcionalidade completa.\n"
  5881. "\n"
  5882. "A escolha aqui influenciará os parâmetros na\n"
  5883. "Guia Selecionada para todos os tipos de objetos FlatCAM."
  5884. #: flatcamGUI/FlatCAMGUI.py:3799 flatcamGUI/FlatCAMGUI.py:4567
  5885. msgid "Basic"
  5886. msgstr "Básico"
  5887. #: flatcamGUI/FlatCAMGUI.py:3800
  5888. msgid "Advanced"
  5889. msgstr "Avançado"
  5890. #: flatcamGUI/FlatCAMGUI.py:3803
  5891. msgid "<b>Languages:</b>"
  5892. msgstr "<b>Idioma:</b>"
  5893. #: flatcamGUI/FlatCAMGUI.py:3804
  5894. msgid "Set the language used throughout FlatCAM."
  5895. msgstr "Defina o idioma usado no FlatCAM."
  5896. #: flatcamGUI/FlatCAMGUI.py:3807
  5897. msgid "Apply Language"
  5898. msgstr "Aplique o Idioma"
  5899. #: flatcamGUI/FlatCAMGUI.py:3808
  5900. msgid ""
  5901. "Set the language used throughout FlatCAM.\n"
  5902. "The app will restart after click.Windows: When FlatCAM is installed in "
  5903. "Program Files\n"
  5904. "directory, it is possible that the app will not\n"
  5905. "restart after the button is clicked due of Windows\n"
  5906. "security features. In this case the language will be\n"
  5907. "applied at the next app start."
  5908. msgstr ""
  5909. "Define o idioma usado no FlatCAM.\n"
  5910. "O aplicativo será reinicializado após o clique. Windows: Quando o FlatCAM "
  5911. "estiver instalado no diretório Arquivos de Programas,\n"
  5912. "é possível que o aplicativo não seja\n"
  5913. "reiniciado depois que o botão for clicado devido aos recursos\n"
  5914. "de segurança do Windows. Neste caso, o idioma será\n"
  5915. "aplicado no próximo início do aplicativo."
  5916. #: flatcamGUI/FlatCAMGUI.py:3817
  5917. msgid "Shell at StartUp:"
  5918. msgstr "Linha de Comando ao Iniciar:"
  5919. #: flatcamGUI/FlatCAMGUI.py:3819 flatcamGUI/FlatCAMGUI.py:3824
  5920. msgid ""
  5921. "Check this box if you want the shell to\n"
  5922. "start automatically at startup."
  5923. msgstr ""
  5924. "Marque esta caixa se você deseja que o shell (linha de comando)\n"
  5925. "seja inicializado automaticamente na inicialização."
  5926. #: flatcamGUI/FlatCAMGUI.py:3829
  5927. msgid "Version Check:"
  5928. msgstr "Verificação de versão:"
  5929. #: flatcamGUI/FlatCAMGUI.py:3831 flatcamGUI/FlatCAMGUI.py:3836
  5930. msgid ""
  5931. "Check this box if you want to check\n"
  5932. "for a new version automatically at startup."
  5933. msgstr ""
  5934. "Marque esta caixa se você quiser verificar\n"
  5935. "por nova versão automaticamente na inicialização."
  5936. #: flatcamGUI/FlatCAMGUI.py:3841
  5937. msgid "Send Stats:"
  5938. msgstr "Enviar estatísticas:"
  5939. #: flatcamGUI/FlatCAMGUI.py:3843 flatcamGUI/FlatCAMGUI.py:3848
  5940. msgid ""
  5941. "Check this box if you agree to send anonymous\n"
  5942. "stats automatically at startup, to help improve FlatCAM."
  5943. msgstr ""
  5944. "Marque esta caixa se você concorda em enviar\n"
  5945. "dados anônimos automaticamente na inicialização, para ajudar a melhorar o "
  5946. "FlatCAM."
  5947. #: flatcamGUI/FlatCAMGUI.py:3855
  5948. msgid "<b>Pan Button:</b>"
  5949. msgstr "<b>Botão Pan:</b>"
  5950. #: flatcamGUI/FlatCAMGUI.py:3856
  5951. msgid ""
  5952. "Select the mouse button to use for panning:\n"
  5953. "- MMB --> Middle Mouse Button\n"
  5954. "- RMB --> Right Mouse Button"
  5955. msgstr ""
  5956. "Selecione o botão do mouse para usar o panning:\n"
  5957. "- BM -> Botão do meio do mouse\n"
  5958. "- BD -> botão direito do mouse"
  5959. #: flatcamGUI/FlatCAMGUI.py:3859
  5960. msgid "MMB"
  5961. msgstr "MMB"
  5962. #: flatcamGUI/FlatCAMGUI.py:3860
  5963. msgid "RMB"
  5964. msgstr "RMB"
  5965. #: flatcamGUI/FlatCAMGUI.py:3863
  5966. msgid "<b>Multiple Sel:</b>"
  5967. msgstr "<b>Seleção Múltipla:</b>"
  5968. #: flatcamGUI/FlatCAMGUI.py:3864
  5969. msgid "Select the key used for multiple selection."
  5970. msgstr "Selecione a tecla usada para seleção múltipla."
  5971. #: flatcamGUI/FlatCAMGUI.py:3869
  5972. msgid "Project at StartUp:"
  5973. msgstr "Projeto no Inicialização:"
  5974. #: flatcamGUI/FlatCAMGUI.py:3871 flatcamGUI/FlatCAMGUI.py:3876
  5975. msgid ""
  5976. "Check this box if you want the project/selected/tool tab area to\n"
  5977. "to be shown automatically at startup."
  5978. msgstr ""
  5979. "Marque esta caixa se você quiser que a guia projeto/selecionado/ferramenta "
  5980. "seja\n"
  5981. "apresentada automaticamente na inicialização."
  5982. #: flatcamGUI/FlatCAMGUI.py:3881
  5983. msgid "Project AutoHide:"
  5984. msgstr "Ocultar Automaticamente:"
  5985. #: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:3889
  5986. msgid ""
  5987. "Check this box if you want the project/selected/tool tab area to\n"
  5988. "hide automatically when there are no objects loaded and\n"
  5989. "to show whenever a new object is created."
  5990. msgstr ""
  5991. "Marque esta caixa se você deseja que a guia projeto/selecionado/ferramenta\n"
  5992. "desapareça automaticamente quando não houver objetos carregados e\n"
  5993. "apareça sempre que um novo objeto for criado."
  5994. #: flatcamGUI/FlatCAMGUI.py:3895
  5995. msgid "<b>Enable ToolTips:</b>"
  5996. msgstr "<b>Habilitar Dicas:</b>"
  5997. #: flatcamGUI/FlatCAMGUI.py:3897 flatcamGUI/FlatCAMGUI.py:3902
  5998. msgid ""
  5999. "Check this box if you want to have toolTips displayed\n"
  6000. "when hovering with mouse over items throughout the App."
  6001. msgstr ""
  6002. "Marque esta caixa se quiser que as dicas de ferramentas sejam exibidas\n"
  6003. "ao passar o mouse sobre os itens em todo o aplicativo."
  6004. #: flatcamGUI/FlatCAMGUI.py:3905
  6005. msgid "Workers number:"
  6006. msgstr "Número de trabalhadores:"
  6007. #: flatcamGUI/FlatCAMGUI.py:3907 flatcamGUI/FlatCAMGUI.py:3916
  6008. msgid ""
  6009. "The number of Qthreads made available to the App.\n"
  6010. "A bigger number may finish the jobs more quickly but\n"
  6011. "depending on your computer speed, may make the App\n"
  6012. "unresponsive. Can have a value between 2 and 16.\n"
  6013. "Default value is 2.\n"
  6014. "After change, it will be applied at next App start."
  6015. msgstr ""
  6016. "O número de Qthreads disponibilizados para o App.\n"
  6017. "Um número maior pode terminar os trabalhos mais rapidamente, mas\n"
  6018. "dependendo da velocidade do computador, pode fazer com que o App\n"
  6019. "não responda. Pode ter um valor entre 2 e 16.\n"
  6020. "O valor padrão é 2.\n"
  6021. "Após a mudança, ele será aplicado no próximo início do aplicativo."
  6022. #: flatcamGUI/FlatCAMGUI.py:3926
  6023. msgid "Geo Tolerance:"
  6024. msgstr "Tolerância Geo:"
  6025. #: flatcamGUI/FlatCAMGUI.py:3928 flatcamGUI/FlatCAMGUI.py:3937
  6026. msgid ""
  6027. "This value can counter the effect of the Circle Steps\n"
  6028. "parameter. Default value is 0.01.\n"
  6029. "A lower value will increase the detail both in image\n"
  6030. "and in Gcode for the circles, with a higher cost in\n"
  6031. "performance. Higher value will provide more\n"
  6032. "performance at the expense of level of detail."
  6033. msgstr ""
  6034. "Este valor pode contrariar o efeito do parâmetro Passos do Círculo.\n"
  6035. "O valor padrão é 0,01.\n"
  6036. "Um valor mais baixo aumentará os detalhes na imagem\n"
  6037. "e no G-Code para os círculos, com um custo maior em\n"
  6038. "desempenho. Valor maior proporcionará mais\n"
  6039. "performance à custa do nível de detalhe."
  6040. #: flatcamGUI/FlatCAMGUI.py:3973
  6041. msgid "\"Open\" behavior"
  6042. msgstr "Comportamento \"Abrir\""
  6043. #: flatcamGUI/FlatCAMGUI.py:3975
  6044. msgid ""
  6045. "When checked the path for the last saved file is used when saving files,\n"
  6046. "and the path for the last opened file is used when opening files.\n"
  6047. "\n"
  6048. "When unchecked the path for opening files is the one used last: either the\n"
  6049. "path for saving files or the path for opening files."
  6050. msgstr ""
  6051. "Quando marcado, o caminho do último arquivo salvo é usado ao salvar "
  6052. "arquivos,\n"
  6053. "e o caminho para o último arquivo aberto é usado ao abrir arquivos.\n"
  6054. "\n"
  6055. "Quando desmarcado, o caminho para abrir arquivos é aquele usado por último: "
  6056. "o caminho\n"
  6057. "para salvar arquivos ou o caminho para abrir arquivos."
  6058. #: flatcamGUI/FlatCAMGUI.py:3984
  6059. msgid "Save Compressed Project"
  6060. msgstr "Salvar Projeto Compactado"
  6061. #: flatcamGUI/FlatCAMGUI.py:3986
  6062. msgid ""
  6063. "Whether to save a compressed or uncompressed project.\n"
  6064. "When checked it will save a compressed FlatCAM project."
  6065. msgstr ""
  6066. "Para salvar um projeto compactado ou descompactado.\n"
  6067. "Quando marcado, o projeto FlatCAM será salvo compactado."
  6068. #: flatcamGUI/FlatCAMGUI.py:3997
  6069. msgid "Compression Level:"
  6070. msgstr "Nível de Compressão:"
  6071. #: flatcamGUI/FlatCAMGUI.py:3999
  6072. msgid ""
  6073. "The level of compression used when saving\n"
  6074. "a FlatCAM project. Higher value means better compression\n"
  6075. "but require more RAM usage and more processing time."
  6076. msgstr ""
  6077. "O nível de compactação usado ao salvar o\n"
  6078. "Projeto FlatCAM. Maior valor significa melhor compactação, mas é necessário "
  6079. "mais uso de RAM e mais tempo de processamento."
  6080. #: flatcamGUI/FlatCAMGUI.py:4022
  6081. msgid "Gerber General"
  6082. msgstr "Gerber Geral"
  6083. #: flatcamGUI/FlatCAMGUI.py:4025 flatcamGUI/FlatCAMGUI.py:4391
  6084. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5534
  6085. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505
  6086. #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350
  6087. msgid "<b>Plot Options:</b>"
  6088. msgstr "<b>Opções de Gráfico:</b>"
  6089. #: flatcamGUI/FlatCAMGUI.py:4032 flatcamGUI/FlatCAMGUI.py:4403
  6090. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506
  6091. msgid "Solid"
  6092. msgstr "Preenchido"
  6093. #: flatcamGUI/FlatCAMGUI.py:4034 flatcamGUI/ObjectUI.py:158
  6094. msgid "Solid color polygons."
  6095. msgstr "Polígonos de cor sólida."
  6096. #: flatcamGUI/FlatCAMGUI.py:4039 flatcamGUI/ObjectUI.py:164
  6097. msgid "M-Color"
  6098. msgstr "Cores-M"
  6099. #: flatcamGUI/FlatCAMGUI.py:4041 flatcamGUI/ObjectUI.py:166
  6100. msgid "Draw polygons in different colors."
  6101. msgstr "Desenha polígonos em cores diferentes."
  6102. #: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/FlatCAMGUI.py:4397
  6103. #: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:172
  6104. msgid "Plot"
  6105. msgstr "Gráfico"
  6106. #: flatcamGUI/FlatCAMGUI.py:4048 flatcamGUI/FlatCAMGUI.py:5171
  6107. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546
  6108. #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1450
  6109. msgid "Plot (show) this object."
  6110. msgstr "Mostra o objeto no gráfico."
  6111. #: flatcamGUI/FlatCAMGUI.py:4053 flatcamGUI/FlatCAMGUI.py:5179
  6112. #: flatcamGUI/FlatCAMGUI.py:5617
  6113. msgid "Circle Steps:"
  6114. msgstr "Passos do Círculo:"
  6115. #: flatcamGUI/FlatCAMGUI.py:4055
  6116. msgid ""
  6117. "The number of circle steps for Gerber \n"
  6118. "circular aperture linear approximation."
  6119. msgstr ""
  6120. "Número de passos de círculo para Gerber.\n"
  6121. "Aproximação linear de abertura circular."
  6122. #: flatcamGUI/FlatCAMGUI.py:4070
  6123. msgid "Gerber Options"
  6124. msgstr "Opções Gerber"
  6125. #: flatcamGUI/FlatCAMGUI.py:4073 flatcamGUI/ObjectUI.py:251
  6126. msgid "<b>Isolation Routing:</b>"
  6127. msgstr "<b>Isolação no Roteamento:</b>"
  6128. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:253
  6129. msgid ""
  6130. "Create a Geometry object with\n"
  6131. "toolpaths to cut outside polygons."
  6132. msgstr ""
  6133. "Cria um objeto Geometria com caminho de\n"
  6134. "ferramenta para cortar polígonos externos."
  6135. #: flatcamGUI/FlatCAMGUI.py:4086 flatcamGUI/FlatCAMGUI.py:4765
  6136. #: flatcamGUI/FlatCAMGUI.py:5906 flatcamGUI/ObjectUI.py:788
  6137. #: flatcamGUI/ObjectUI.py:804
  6138. msgid "Diameter of the cutting tool."
  6139. msgstr "Diâmetro da ferramenta de corte."
  6140. #: flatcamGUI/FlatCAMGUI.py:4093
  6141. msgid "Width (# passes):"
  6142. msgstr "Largura (nº de passos):"
  6143. #: flatcamGUI/FlatCAMGUI.py:4095 flatcamGUI/ObjectUI.py:275
  6144. msgid ""
  6145. "Width of the isolation gap in\n"
  6146. "number (integer) of tool widths."
  6147. msgstr ""
  6148. "Largura da isolação em relação à\n"
  6149. "largura da ferramenta (número inteiro)."
  6150. #: flatcamGUI/FlatCAMGUI.py:4103 flatcamGUI/ObjectUI.py:283
  6151. msgid "Pass overlap:"
  6152. msgstr "Sobreposição:"
  6153. #: flatcamGUI/FlatCAMGUI.py:4105 flatcamGUI/ObjectUI.py:285
  6154. #, python-format
  6155. msgid ""
  6156. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6157. "Example:\n"
  6158. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  6159. "above."
  6160. msgstr ""
  6161. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  6162. "ferramenta.\n"
  6163. "Exemplo:\n"
  6164. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da ferramenta."
  6165. #: flatcamGUI/FlatCAMGUI.py:4113 flatcamGUI/ObjectUI.py:295
  6166. msgid "Milling Type:"
  6167. msgstr "Tipo de Fresamento:"
  6168. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/ObjectUI.py:297
  6169. msgid ""
  6170. "Milling type:\n"
  6171. "- climb / best for precision milling and to reduce tool usage\n"
  6172. "- conventional / useful when there is no backlash compensation"
  6173. msgstr ""
  6174. "Tipo de fresamento:\n"
  6175. "- subida: melhor para fresamento de precisão e para reduzir o uso da "
  6176. "ferramenta\n"
  6177. "- convencional: útil quando não há compensação de folga"
  6178. #: flatcamGUI/FlatCAMGUI.py:4120 flatcamGUI/ObjectUI.py:302
  6179. msgid "Climb"
  6180. msgstr "Climb"
  6181. #: flatcamGUI/FlatCAMGUI.py:4121 flatcamGUI/ObjectUI.py:303
  6182. msgid "Conv."
  6183. msgstr "Conv."
  6184. #: flatcamGUI/FlatCAMGUI.py:4125
  6185. msgid "Combine Passes"
  6186. msgstr "Combine Passes"
  6187. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/ObjectUI.py:309
  6188. msgid "Combine all passes into one object"
  6189. msgstr "Combine all passes into one object"
  6190. #: flatcamGUI/FlatCAMGUI.py:4132
  6191. msgid "<b>Clear non-copper:</b>"
  6192. msgstr "<b>Limpar não-cobre:</b>"
  6193. #: flatcamGUI/FlatCAMGUI.py:4134 flatcamGUI/FlatCAMGUI.py:5794
  6194. #: flatcamGUI/ObjectUI.py:386
  6195. msgid ""
  6196. "Create a Geometry object with\n"
  6197. "toolpaths to cut all non-copper regions."
  6198. msgstr ""
  6199. "Cria um objeto Geometria com caminho de ferramenta\n"
  6200. "para cortar todas as regiões que não são de cobre."
  6201. #: flatcamGUI/FlatCAMGUI.py:4143 flatcamGUI/FlatCAMGUI.py:4169
  6202. #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464
  6203. msgid "Boundary Margin:"
  6204. msgstr "Margem de Limite:"
  6205. #: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:432
  6206. msgid ""
  6207. "Specify the edge of the PCB\n"
  6208. "by drawing a box around all\n"
  6209. "objects with this minimum\n"
  6210. "distance."
  6211. msgstr ""
  6212. "Especifica a borda do PCB\n"
  6213. "desenhando uma caixa em volta de todos os\n"
  6214. "objetos com esta\n"
  6215. "distância mínima."
  6216. #: flatcamGUI/FlatCAMGUI.py:4155 flatcamGUI/FlatCAMGUI.py:4178
  6217. msgid "Rounded corners"
  6218. msgstr "Cantos arredondados"
  6219. #: flatcamGUI/FlatCAMGUI.py:4157
  6220. msgid ""
  6221. "Creates a Geometry objects with polygons\n"
  6222. "covering the copper-free areas of the PCB."
  6223. msgstr ""
  6224. "Cria um objeto Geometria com polígonos\n"
  6225. "cobrindo as áreas livres de cobre do PCB."
  6226. #: flatcamGUI/FlatCAMGUI.py:4163 flatcamGUI/ObjectUI.py:454
  6227. msgid "<b>Bounding Box:</b>"
  6228. msgstr "<b>Caixa Delimitadora:</b>"
  6229. #: flatcamGUI/FlatCAMGUI.py:4171 flatcamGUI/ObjectUI.py:466
  6230. msgid ""
  6231. "Distance of the edges of the box\n"
  6232. "to the nearest polygon."
  6233. msgstr ""
  6234. "Distância das bordas da caixa\n"
  6235. "para o polígono mais próximo."
  6236. #: flatcamGUI/FlatCAMGUI.py:4180 flatcamGUI/ObjectUI.py:476
  6237. msgid ""
  6238. "If the bounding box is \n"
  6239. "to have rounded corners\n"
  6240. "their radius is equal to\n"
  6241. "the margin."
  6242. msgstr ""
  6243. "Se a caixa delimitadora tiver\n"
  6244. "cantos arredondados\n"
  6245. "o seu raio é igual\n"
  6246. "a margem."
  6247. #: flatcamGUI/FlatCAMGUI.py:4194
  6248. msgid "Gerber Adv. Options"
  6249. msgstr "Opções Av. Gerber"
  6250. #: flatcamGUI/FlatCAMGUI.py:4197
  6251. msgid "<b>Advanced Param.:</b>"
  6252. msgstr "<b>Parâmetros avançados:</b>"
  6253. #: flatcamGUI/FlatCAMGUI.py:4199
  6254. msgid ""
  6255. "A list of Gerber advanced parameters.\n"
  6256. "Those parameters are available only for\n"
  6257. "Advanced App. Level."
  6258. msgstr ""
  6259. "Uma lista de parâmetros avançados do Gerber.\n"
  6260. "Esses parâmetros estão disponíveis somente para\n"
  6261. "o aplicativo no nível avançado."
  6262. #: flatcamGUI/FlatCAMGUI.py:4209 flatcamGUI/ObjectUI.py:314
  6263. msgid "\"Follow\""
  6264. msgstr "\"Segue\""
  6265. #: flatcamGUI/FlatCAMGUI.py:4211 flatcamGUI/ObjectUI.py:316
  6266. msgid ""
  6267. "Generate a 'Follow' geometry.\n"
  6268. "This means that it will cut through\n"
  6269. "the middle of the trace."
  6270. msgstr ""
  6271. "Gera uma geometria 'Segue'.\n"
  6272. "Isso significa que ele cortará\n"
  6273. "no meio do traço."
  6274. #: flatcamGUI/FlatCAMGUI.py:4218
  6275. msgid "Table Show/Hide"
  6276. msgstr "Mostra/Esconde Tabela"
  6277. #: flatcamGUI/FlatCAMGUI.py:4220
  6278. msgid ""
  6279. "Toggle the display of the Gerber Apertures Table.\n"
  6280. "Also, on hide, it will delete all mark shapes\n"
  6281. "that are drawn on canvas."
  6282. msgstr ""
  6283. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  6284. "Além disso, ao ocultar, ele excluirá todas as formas de marcas\n"
  6285. "que estão desenhadas na tela."
  6286. #: flatcamGUI/FlatCAMGUI.py:4259
  6287. msgid "Gerber Export"
  6288. msgstr "Exportar Gerber"
  6289. #: flatcamGUI/FlatCAMGUI.py:4262 flatcamGUI/FlatCAMGUI.py:4914
  6290. msgid "<b>Export Options:</b>"
  6291. msgstr "<b>Opções de Exportar:</b>"
  6292. #: flatcamGUI/FlatCAMGUI.py:4264
  6293. msgid ""
  6294. "The parameters set here are used in the file exported\n"
  6295. "when using the File -> Export -> Export Gerber menu entry."
  6296. msgstr ""
  6297. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6298. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Gerber."
  6299. #: flatcamGUI/FlatCAMGUI.py:4273 flatcamGUI/FlatCAMGUI.py:4925
  6300. msgid "<b>Units</b>:"
  6301. msgstr "<b>Unidades</b>:"
  6302. #: flatcamGUI/FlatCAMGUI.py:4275 flatcamGUI/FlatCAMGUI.py:4281
  6303. msgid "The units used in the Gerber file."
  6304. msgstr "As unidades usadas no arquivo Gerber."
  6305. #: flatcamGUI/FlatCAMGUI.py:4278 flatcamGUI/FlatCAMGUI.py:4539
  6306. #: flatcamGUI/FlatCAMGUI.py:4930 flatcamTools/ToolCalculators.py:60
  6307. #: flatcamTools/ToolPcbWizard.py:125
  6308. msgid "INCH"
  6309. msgstr "in"
  6310. #: flatcamGUI/FlatCAMGUI.py:4287 flatcamGUI/FlatCAMGUI.py:4939
  6311. msgid "<b>Int/Decimals:</b>"
  6312. msgstr "<b>Int/Decimal:</b>"
  6313. #: flatcamGUI/FlatCAMGUI.py:4289
  6314. msgid ""
  6315. "The number of digits in the whole part of the number\n"
  6316. "and in the fractional part of the number."
  6317. msgstr ""
  6318. "O número de dígitos na parte inteira\n"
  6319. "e na parte fracionária do número."
  6320. #: flatcamGUI/FlatCAMGUI.py:4300
  6321. msgid ""
  6322. "This numbers signify the number of digits in\n"
  6323. "the whole part of Gerber coordinates."
  6324. msgstr ""
  6325. "Esses números significam o número de dígitos \n"
  6326. "em toda a parte das coordenadas de Gerber."
  6327. #: flatcamGUI/FlatCAMGUI.py:4314
  6328. msgid ""
  6329. "This numbers signify the number of digits in\n"
  6330. "the decimal part of Gerber coordinates."
  6331. msgstr ""
  6332. "Estes números significam o número de dígitos\n"
  6333. "na parte decimal das coordenadas de Gerber."
  6334. #: flatcamGUI/FlatCAMGUI.py:4323 flatcamGUI/FlatCAMGUI.py:5000
  6335. msgid "<b>Zeros</b>:"
  6336. msgstr "<b>Zeros</b>:"
  6337. #: flatcamGUI/FlatCAMGUI.py:4326 flatcamGUI/FlatCAMGUI.py:4336
  6338. msgid ""
  6339. "This sets the type of Gerber zeros.\n"
  6340. "If LZ then Leading Zeros are removed and\n"
  6341. "Trailing Zeros are kept.\n"
  6342. "If TZ is checked then Trailing Zeros are removed\n"
  6343. "and Leading Zeros are kept."
  6344. msgstr ""
  6345. "Define o tipo de zeros de Gerber.\n"
  6346. "LZ: os Zeros à Esquerda são removidos\n"
  6347. "e os Zeros à Direita são mantidos.\n"
  6348. "TZ: os Zeros à Direita serão removidos\n"
  6349. "e os Zeros à Esquerda serão mantidos."
  6350. #: flatcamGUI/FlatCAMGUI.py:4333 flatcamGUI/FlatCAMGUI.py:4515
  6351. #: flatcamGUI/FlatCAMGUI.py:5010 flatcamTools/ToolPcbWizard.py:111
  6352. msgid "LZ"
  6353. msgstr "LZ"
  6354. #: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/FlatCAMGUI.py:4516
  6355. #: flatcamGUI/FlatCAMGUI.py:5011 flatcamTools/ToolPcbWizard.py:112
  6356. msgid "TZ"
  6357. msgstr "TZ"
  6358. #: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/FlatCAMGUI.py:5041
  6359. #: flatcamGUI/FlatCAMGUI.py:5500 flatcamGUI/FlatCAMGUI.py:5792
  6360. #: flatcamGUI/FlatCAMGUI.py:5893 flatcamGUI/FlatCAMGUI.py:5972
  6361. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/FlatCAMGUI.py:6134
  6362. #: flatcamGUI/FlatCAMGUI.py:6195 flatcamGUI/FlatCAMGUI.py:6394
  6363. #: flatcamGUI/FlatCAMGUI.py:6521
  6364. msgid "<b>Parameters:</b>"
  6365. msgstr "<b>Parâmetros:</b>"
  6366. #: flatcamGUI/FlatCAMGUI.py:4358
  6367. msgid "A list of Gerber Editor parameters."
  6368. msgstr "Uma lista de parâmetros do Editor Gerber."
  6369. #: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/FlatCAMGUI.py:5051
  6370. #: flatcamGUI/FlatCAMGUI.py:5510
  6371. msgid "Selection limit:"
  6372. msgstr "Limite de seleção:"
  6373. #: flatcamGUI/FlatCAMGUI.py:4368
  6374. msgid ""
  6375. "Set the number of selected Gerber geometry\n"
  6376. "items above which the utility geometry\n"
  6377. "becomes just a selection rectangle.\n"
  6378. "Increases the performance when moving a\n"
  6379. "large number of geometric elements."
  6380. msgstr ""
  6381. "Define o número máximo de ítens de geometria Gerber\n"
  6382. "selecionados. Acima desse valor a geometria se torna um\n"
  6383. "retângulo de seleção.\n"
  6384. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  6385. #: flatcamGUI/FlatCAMGUI.py:4388
  6386. msgid "Excellon General"
  6387. msgstr "Excellon Geral"
  6388. #: flatcamGUI/FlatCAMGUI.py:4410
  6389. msgid "<b>Excellon Format:</b>"
  6390. msgstr "<b>Formato Excellon:</b>"
  6391. #: flatcamGUI/FlatCAMGUI.py:4412
  6392. msgid ""
  6393. "The NC drill files, usually named Excellon files\n"
  6394. "are files that can be found in different formats.\n"
  6395. "Here we set the format used when the provided\n"
  6396. "coordinates are not using period.\n"
  6397. "\n"
  6398. "Possible presets:\n"
  6399. "\n"
  6400. "PROTEUS 3:3 MM LZ\n"
  6401. "DipTrace 5:2 MM TZ\n"
  6402. "DipTrace 4:3 MM LZ\n"
  6403. "\n"
  6404. "EAGLE 3:3 MM TZ\n"
  6405. "EAGLE 4:3 MM TZ\n"
  6406. "EAGLE 2:5 INCH TZ\n"
  6407. "EAGLE 3:5 INCH TZ\n"
  6408. "\n"
  6409. "ALTIUM 2:4 INCH LZ\n"
  6410. "Sprint Layout 2:4 INCH LZ\n"
  6411. "KiCAD 3:5 INCH TZ"
  6412. msgstr ""
  6413. "Os arquivos de broca NC, normalmente chamados arquivos Excellon\n"
  6414. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6415. "Aqui definiremos o formato usado quando as coordenadas\n"
  6416. "fornecidas não estiverem usando ponto.\n"
  6417. "\n"
  6418. "Padrões possíveis:\n"
  6419. "\n"
  6420. "PROTEUS 3:3 mm LZ\n"
  6421. "DipTrace 5:2 mm TZ\n"
  6422. "DipTrace 4:3 mm LZ\n"
  6423. "\n"
  6424. "EAGLE 3:3 mm TZ\n"
  6425. "EAGLE 4:3 mm TZ\n"
  6426. "EAGLE 2:5 polegadas TZ\n"
  6427. "EAGLE 3:5 polegadas TZ\n"
  6428. "\n"
  6429. "ALTIUM 2:4 polegadas LZ\n"
  6430. "Sprint Layout 2:4 polegadas LZ\n"
  6431. "KiCAD 3:5 polegadas TZ"
  6432. #: flatcamGUI/FlatCAMGUI.py:4437
  6433. msgid "INCH:"
  6434. msgstr "POLEGADAS:"
  6435. #: flatcamGUI/FlatCAMGUI.py:4440
  6436. msgid "Default values for INCH are 2:4"
  6437. msgstr "Valores padrão para Polegadas são 2:4"
  6438. #: flatcamGUI/FlatCAMGUI.py:4448 flatcamGUI/FlatCAMGUI.py:4481
  6439. #: flatcamGUI/FlatCAMGUI.py:4954
  6440. msgid ""
  6441. "This numbers signify the number of digits in\n"
  6442. "the whole part of Excellon coordinates."
  6443. msgstr ""
  6444. "Esses números significam o número de dígitos\n"
  6445. "em toda a parte das coordenadas do Excellon."
  6446. #: flatcamGUI/FlatCAMGUI.py:4462 flatcamGUI/FlatCAMGUI.py:4495
  6447. #: flatcamGUI/FlatCAMGUI.py:4968
  6448. msgid ""
  6449. "This numbers signify the number of digits in\n"
  6450. "the decimal part of Excellon coordinates."
  6451. msgstr ""
  6452. "Estes números significam o número de dígitos na\n"
  6453. "parte decimal das coordenadas de Excellon."
  6454. #: flatcamGUI/FlatCAMGUI.py:4470
  6455. msgid "METRIC:"
  6456. msgstr "MÉTRICO:"
  6457. #: flatcamGUI/FlatCAMGUI.py:4473
  6458. msgid "Default values for METRIC are 3:3"
  6459. msgstr "Valores padrão para MÉTRICO são 3:3"
  6460. #: flatcamGUI/FlatCAMGUI.py:4504
  6461. msgid "Default <b>Zeros</b>:"
  6462. msgstr "Padrão <b>Zeros</b>:"
  6463. #: flatcamGUI/FlatCAMGUI.py:4507 flatcamGUI/FlatCAMGUI.py:5003
  6464. msgid ""
  6465. "This sets the type of Excellon zeros.\n"
  6466. "If LZ then Leading Zeros are kept and\n"
  6467. "Trailing Zeros are removed.\n"
  6468. "If TZ is checked then Trailing Zeros are kept\n"
  6469. "and Leading Zeros are removed."
  6470. msgstr ""
  6471. "Define o tipo de zeros de Excellon.\n"
  6472. "LZ: os Zeros à Esquerda são mantidos\n"
  6473. "e os Zeros à Direita são removidos.\n"
  6474. "TZ: os Zeros à Direita serão mantidos\n"
  6475. "e os Zeros à Esquerda serão removidos."
  6476. #: flatcamGUI/FlatCAMGUI.py:4518
  6477. msgid ""
  6478. "This sets the default type of Excellon zeros.\n"
  6479. "If it is not detected in the parsed file the value here\n"
  6480. "will be used.If LZ then Leading Zeros are kept and\n"
  6481. "Trailing Zeros are removed.\n"
  6482. "If TZ is checked then Trailing Zeros are kept\n"
  6483. "and Leading Zeros are removed."
  6484. msgstr ""
  6485. "Define o tipo padrão de zeros de Excellon.\n"
  6486. "Se não for detectado no arquivo analisado o valor aqui\n"
  6487. " será usado. LZ: os Zeros à Esquerda são mantidos\n"
  6488. "e os Zeros à Direita são removidos.\n"
  6489. "TZ: os Zeros à Direita serão mantidos\n"
  6490. "e os Zeros à Esquerda serão removidos."
  6491. #: flatcamGUI/FlatCAMGUI.py:4528
  6492. msgid "Default <b>Units</b>:"
  6493. msgstr "<b>Unidades</b> Padrão:"
  6494. #: flatcamGUI/FlatCAMGUI.py:4531
  6495. msgid ""
  6496. "This sets the default units of Excellon files.\n"
  6497. "If it is not detected in the parsed file the value here\n"
  6498. "will be used.Some Excellon files don't have an header\n"
  6499. "therefore this parameter will be used."
  6500. msgstr ""
  6501. "Configura as unidades padrão dos arquivos Excellon.\n"
  6502. "Se não for detectado no arquivo analisado, o valor aqui\n"
  6503. "será usado. Alguns arquivos Excellon não possuem um cabeçalho\n"
  6504. ", e assim este parâmetro será usado."
  6505. #: flatcamGUI/FlatCAMGUI.py:4542
  6506. msgid ""
  6507. "This sets the units of Excellon files.\n"
  6508. "Some Excellon files don't have an header\n"
  6509. "therefore this parameter will be used."
  6510. msgstr ""
  6511. "Configura as unidades dos arquivos Excellon.\n"
  6512. "Alguns arquivos Excellon não possuem um cabeçalho\n"
  6513. ", e assim este parâmetro será usado."
  6514. #: flatcamGUI/FlatCAMGUI.py:4550
  6515. msgid "<b>Excellon Optimization:</b>"
  6516. msgstr "<b>Otimização Excellon:</b>"
  6517. #: flatcamGUI/FlatCAMGUI.py:4553
  6518. msgid "Algorithm: "
  6519. msgstr "Algoritmo: "
  6520. #: flatcamGUI/FlatCAMGUI.py:4555 flatcamGUI/FlatCAMGUI.py:4569
  6521. msgid ""
  6522. "This sets the optimization type for the Excellon drill path.\n"
  6523. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6524. "Guided Local Path is used. Default search time is 3sec.\n"
  6525. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6526. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6527. "\n"
  6528. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6529. "Travelling Salesman algorithm for path optimization."
  6530. msgstr ""
  6531. "Define o tipo de otimização para o caminho de perfuração do Excellon.\n"
  6532. "Se MH estiver marcado, será usado o algoritmo do Google OR-Tools com "
  6533. "MetaHeuristic.\n"
  6534. "O tempo de pesquisa padrão é de 3s.\n"
  6535. "Usar o comando TCL set_sys excellon_search_time para definir outros "
  6536. "valores.\n"
  6537. "Se Básico estiver marcado, será usado o algoritmo básico do Google OR-"
  6538. "Tools.\n"
  6539. "\n"
  6540. "Se DESABILITADO, FlatCAM trabalha no modo de 32 bits e usa\n"
  6541. "o algorítmo Travelling Salesman para otimização de caminhos."
  6542. #: flatcamGUI/FlatCAMGUI.py:4566
  6543. msgid "MH"
  6544. msgstr "MH"
  6545. #: flatcamGUI/FlatCAMGUI.py:4580
  6546. msgid "Optimization Time: "
  6547. msgstr "Tempo de Otimização: "
  6548. #: flatcamGUI/FlatCAMGUI.py:4583
  6549. msgid ""
  6550. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6551. "maximum threshold for how much time is spent doing the\n"
  6552. "path optimization. This max duration is set here.\n"
  6553. "In seconds."
  6554. msgstr ""
  6555. "Quando o Metaheuristic (MH) da OR-Tools está ativado, existe um limite\n"
  6556. "máximo para o tempo gasto para otimizar o\n"
  6557. "caminho. Esse tempo máximo é definido aqui.\n"
  6558. "Em segundos."
  6559. #: flatcamGUI/FlatCAMGUI.py:4626
  6560. msgid "Excellon Options"
  6561. msgstr "Opções Excellon"
  6562. #: flatcamGUI/FlatCAMGUI.py:4629 flatcamGUI/ObjectUI.py:584
  6563. msgid "<b>Create CNC Job</b>"
  6564. msgstr "<b>Criar Trabalho CNC</b>"
  6565. #: flatcamGUI/FlatCAMGUI.py:4631
  6566. msgid ""
  6567. "Parameters used to create a CNC Job object\n"
  6568. "for this drill object."
  6569. msgstr ""
  6570. "Parâmetros usados para criar um objeto de Trabalho CNC\n"
  6571. "para este objeto de broca."
  6572. #: flatcamGUI/FlatCAMGUI.py:4639 flatcamGUI/FlatCAMGUI.py:5226
  6573. #: flatcamGUI/FlatCAMGUI.py:6330 flatcamGUI/ObjectUI.py:595
  6574. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:106
  6575. msgid "Cut Z:"
  6576. msgstr "Profundidade de Corte:"
  6577. #: flatcamGUI/FlatCAMGUI.py:4641 flatcamGUI/ObjectUI.py:597
  6578. msgid ""
  6579. "Drill depth (negative)\n"
  6580. "below the copper surface."
  6581. msgstr ""
  6582. "Profundidade da broca (negativo)\n"
  6583. "abaixo da superfície de cobre."
  6584. #: flatcamGUI/FlatCAMGUI.py:4648 flatcamGUI/FlatCAMGUI.py:5259
  6585. #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098
  6586. msgid "Travel Z:"
  6587. msgstr "Altura para Deslocamento:"
  6588. #: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/ObjectUI.py:607
  6589. msgid ""
  6590. "Tool height when travelling\n"
  6591. "across the XY plane."
  6592. msgstr ""
  6593. "Altura da ferramenta durante\n"
  6594. "deslocamentos sobre o plano XY."
  6595. #: flatcamGUI/FlatCAMGUI.py:4658 flatcamGUI/FlatCAMGUI.py:5269
  6596. msgid "Tool change:"
  6597. msgstr "Troca de ferramentas:"
  6598. #: flatcamGUI/FlatCAMGUI.py:4660 flatcamGUI/FlatCAMGUI.py:5271
  6599. #: flatcamGUI/ObjectUI.py:617
  6600. msgid ""
  6601. "Include tool-change sequence\n"
  6602. "in G-Code (Pause for tool change)."
  6603. msgstr ""
  6604. "Pausa para troca de ferramentas. Inclua a sequência\n"
  6605. "de troca de ferramentas em G-Code."
  6606. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:5279
  6607. msgid "Toolchange Z:"
  6608. msgstr "Altura para a troca:"
  6609. #: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:5281
  6610. msgid "Toolchange Z position."
  6611. msgstr "Posição do eixo Z (altura) para a troca de ferramentas."
  6612. #: flatcamGUI/FlatCAMGUI.py:4675
  6613. msgid "Feedrate:"
  6614. msgstr "Avanço (Mergulho):"
  6615. #: flatcamGUI/FlatCAMGUI.py:4677
  6616. msgid ""
  6617. "Tool speed while drilling\n"
  6618. "(in units per minute)."
  6619. msgstr ""
  6620. "Velocidade da ferramenta durante a perfuração\n"
  6621. "(em unidades por minuto)."
  6622. #: flatcamGUI/FlatCAMGUI.py:4685
  6623. msgid "Spindle Speed:"
  6624. msgstr "Velocidade do Spindle:"
  6625. #: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5311
  6626. #: flatcamGUI/ObjectUI.py:684
  6627. msgid ""
  6628. "Speed of the spindle\n"
  6629. "in RPM (optional)"
  6630. msgstr ""
  6631. "Velocidade do spindle\n"
  6632. "em RPM (opcional)"
  6633. #: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:5319
  6634. msgid "Spindle dir.:"
  6635. msgstr "Sentido de Rotação:"
  6636. #: flatcamGUI/FlatCAMGUI.py:4697 flatcamGUI/FlatCAMGUI.py:5321
  6637. msgid ""
  6638. "This sets the direction that the spindle is rotating.\n"
  6639. "It can be either:\n"
  6640. "- CW = clockwise or\n"
  6641. "- CCW = counter clockwise"
  6642. msgstr ""
  6643. "Define o sentido de rotação do spindle.\n"
  6644. "Pode ser:\n"
  6645. "- CW = sentido horário ou\n"
  6646. "- CCW = sentido anti-horário"
  6647. #: flatcamGUI/FlatCAMGUI.py:4709 flatcamGUI/FlatCAMGUI.py:5333
  6648. #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224
  6649. msgid "Dwell:"
  6650. msgstr "Espera Velocidade:"
  6651. #: flatcamGUI/FlatCAMGUI.py:4711 flatcamGUI/FlatCAMGUI.py:5335
  6652. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227
  6653. msgid ""
  6654. "Pause to allow the spindle to reach its\n"
  6655. "speed before cutting."
  6656. msgstr ""
  6657. "Pausa para permitir que o spindle atinja sua\n"
  6658. "velocidade antes de cortar."
  6659. #: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/FlatCAMGUI.py:5338
  6660. msgid "Duration:"
  6661. msgstr "Tempo de espera:"
  6662. #: flatcamGUI/FlatCAMGUI.py:4716 flatcamGUI/FlatCAMGUI.py:5340
  6663. #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234
  6664. msgid "Number of milliseconds for spindle to dwell."
  6665. msgstr "Tempo em Milissegundos para o spindle atingir a velocidade."
  6666. #: flatcamGUI/FlatCAMGUI.py:4728 flatcamGUI/FlatCAMGUI.py:5350
  6667. #: flatcamGUI/ObjectUI.py:707
  6668. msgid "Postprocessor:"
  6669. msgstr "Pós-processador:"
  6670. #: flatcamGUI/FlatCAMGUI.py:4730
  6671. msgid ""
  6672. "The postprocessor file that dictates\n"
  6673. "gcode output."
  6674. msgstr ""
  6675. "O arquivo de pós-processamento (json) que define\n"
  6676. "a saída G-Ccode."
  6677. #: flatcamGUI/FlatCAMGUI.py:4739
  6678. msgid "<b>Gcode: </b>"
  6679. msgstr "<b>G-Code: </b>"
  6680. #: flatcamGUI/FlatCAMGUI.py:4741
  6681. msgid ""
  6682. "Choose what to use for GCode generation:\n"
  6683. "'Drills', 'Slots' or 'Both'.\n"
  6684. "When choosing 'Slots' or 'Both', slots will be\n"
  6685. "converted to drills."
  6686. msgstr ""
  6687. "Escolha o que usar para a geração de G-Code:\n"
  6688. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  6689. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  6690. "convertidos para brocas."
  6691. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/ObjectUI.py:772
  6692. msgid "<b>Mill Holes</b>"
  6693. msgstr "<b>Fresar Furos</b>"
  6694. #: flatcamGUI/FlatCAMGUI.py:4759 flatcamGUI/ObjectUI.py:774
  6695. msgid "Create Geometry for milling holes."
  6696. msgstr "Cria geometria para furos de fresamento."
  6697. #: flatcamGUI/FlatCAMGUI.py:4763
  6698. msgid "Drill Tool dia:"
  6699. msgstr "Diâmetro da Broca:"
  6700. #: flatcamGUI/FlatCAMGUI.py:4770
  6701. msgid "Slot Tool dia:"
  6702. msgstr "Diâmetro da Fresa:"
  6703. #: flatcamGUI/FlatCAMGUI.py:4772
  6704. msgid ""
  6705. "Diameter of the cutting tool\n"
  6706. "when milling slots."
  6707. msgstr ""
  6708. "Diâmetro da ferramenta de corte\n"
  6709. "quando fresar fendas (ranhuras)."
  6710. #: flatcamGUI/FlatCAMGUI.py:4784
  6711. msgid "Defaults"
  6712. msgstr "Padrões"
  6713. #: flatcamGUI/FlatCAMGUI.py:4797
  6714. msgid "Excellon Adv. Options"
  6715. msgstr "Opções Avançadas Excellon"
  6716. #: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/FlatCAMGUI.py:5373
  6717. msgid "<b>Advanced Options:</b>"
  6718. msgstr "<b>Opções Avançadas:</b>"
  6719. #: flatcamGUI/FlatCAMGUI.py:4805
  6720. msgid ""
  6721. "Parameters used to create a CNC Job object\n"
  6722. "for this drill object that are shown when App Level is Advanced."
  6723. msgstr ""
  6724. "Parâmetros usados para criar um objeto de Trabalho do CNC\n"
  6725. "para furação que são mostrados quando o nível do aplicativo for Avançado."
  6726. #: flatcamGUI/FlatCAMGUI.py:4813
  6727. msgid "Offset Z:"
  6728. msgstr "Ajuste de Altura:"
  6729. #: flatcamGUI/FlatCAMGUI.py:4815 flatcamGUI/ObjectUI.py:574
  6730. msgid ""
  6731. "Some drill bits (the larger ones) need to drill deeper\n"
  6732. "to create the desired exit hole diameter due of the tip shape.\n"
  6733. "The value here can compensate the Cut Z parameter."
  6734. msgstr ""
  6735. "Algumas brocas (as maiores) precisam perfurar mais profundamente\n"
  6736. "para criar o diâmetro desejado do orifício de saída devido à forma da "
  6737. "ponta.\n"
  6738. "Este valor pode compensar o parâmetro Profundidade de Corte Z."
  6739. #: flatcamGUI/FlatCAMGUI.py:4822 flatcamGUI/FlatCAMGUI.py:5384
  6740. msgid "Toolchange X,Y:"
  6741. msgstr "Troca de ferramentas X,Y:"
  6742. #: flatcamGUI/FlatCAMGUI.py:4824 flatcamGUI/FlatCAMGUI.py:5386
  6743. msgid "Toolchange X,Y position."
  6744. msgstr "Posição X,Y para troca de ferramentas."
  6745. #: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:5393
  6746. #: flatcamGUI/ObjectUI.py:634
  6747. msgid "Start move Z:"
  6748. msgstr "Altura Z Inicial:"
  6749. #: flatcamGUI/FlatCAMGUI.py:4832
  6750. msgid ""
  6751. "Height of the tool just after start.\n"
  6752. "Delete the value if you don't need this feature."
  6753. msgstr ""
  6754. "Altura da ferramenta antes de iniciar o trabalho.\n"
  6755. "Exclua o valor se você não precisar deste recurso."
  6756. #: flatcamGUI/FlatCAMGUI.py:4839 flatcamGUI/FlatCAMGUI.py:5403
  6757. #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144
  6758. msgid "End move Z:"
  6759. msgstr "Altura Z Final:"
  6760. #: flatcamGUI/FlatCAMGUI.py:4841 flatcamGUI/FlatCAMGUI.py:5405
  6761. msgid ""
  6762. "Height of the tool after\n"
  6763. "the last move at the end of the job."
  6764. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  6765. #: flatcamGUI/FlatCAMGUI.py:4848 flatcamGUI/FlatCAMGUI.py:5413
  6766. #: flatcamGUI/ObjectUI.py:665
  6767. msgid "Feedrate Rapids:"
  6768. msgstr "Taxa de Avanço Rápida:"
  6769. #: flatcamGUI/FlatCAMGUI.py:4850 flatcamGUI/ObjectUI.py:667
  6770. msgid ""
  6771. "Tool speed while drilling\n"
  6772. "(in units per minute).\n"
  6773. "This is for the rapid move G00.\n"
  6774. "It is useful only for Marlin,\n"
  6775. "ignore for any other cases."
  6776. msgstr ""
  6777. "Velocidade da ferramenta durante a perfuração\n"
  6778. "(em unidades por minuto).\n"
  6779. "Usado para movimento rápido G00.\n"
  6780. "É útil apenas para Marlin,\n"
  6781. "ignore para outros casos."
  6782. #: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5437
  6783. #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256
  6784. msgid "Probe Z depth:"
  6785. msgstr "Profundidade Z da Sonda:"
  6786. #: flatcamGUI/FlatCAMGUI.py:4863 flatcamGUI/FlatCAMGUI.py:5439
  6787. #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259
  6788. msgid ""
  6789. "The maximum depth that the probe is allowed\n"
  6790. "to probe. Negative value, in current units."
  6791. msgstr ""
  6792. "Profundidade máxima permitida para a sonda.\n"
  6793. "Valor negativo, em unidades atuais."
  6794. #: flatcamGUI/FlatCAMGUI.py:4871 flatcamGUI/FlatCAMGUI.py:5447
  6795. #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270
  6796. msgid "Feedrate Probe:"
  6797. msgstr "Avanço da Sonda:"
  6798. #: flatcamGUI/FlatCAMGUI.py:4873 flatcamGUI/FlatCAMGUI.py:5449
  6799. #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273
  6800. msgid "The feedrate used while the probe is probing."
  6801. msgstr "Velocidade de Avanço usada enquanto a sonda está operando."
  6802. #: flatcamGUI/FlatCAMGUI.py:4879 flatcamGUI/FlatCAMGUI.py:5456
  6803. msgid "Fast Plunge:"
  6804. msgstr "Mergulho Rápido:"
  6805. #: flatcamGUI/FlatCAMGUI.py:4881 flatcamGUI/FlatCAMGUI.py:5458
  6806. msgid ""
  6807. "By checking this, the vertical move from\n"
  6808. "Z_Toolchange to Z_move is done with G0,\n"
  6809. "meaning the fastest speed available.\n"
  6810. "WARNING: the move is done at Toolchange X,Y coords."
  6811. msgstr ""
  6812. "Ao marcado, o movimento vertical da altura de\n"
  6813. "Troca de Ferramentas para a altura de Deslocamento\n"
  6814. "é feito com G0, na velocidade mais rápida disponível.\n"
  6815. "AVISO: o movimento é feito nas Coordenadas X,Y de troca de ferramentas."
  6816. #: flatcamGUI/FlatCAMGUI.py:4890
  6817. msgid "Fast Retract:"
  6818. msgstr "Recolhimento Rápido:"
  6819. #: flatcamGUI/FlatCAMGUI.py:4892
  6820. msgid ""
  6821. "Exit hole strategy.\n"
  6822. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6823. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6824. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6825. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6826. "(travel height) is done as fast as possible (G0) in one move."
  6827. msgstr ""
  6828. "Estratégia para sair dos furos.\n"
  6829. "- Quando desmarcado, ao sair do furo, a broca sobe lentamente, com\n"
  6830. "avanço definido (G1), até a profundidade zero e depois some o mais\n"
  6831. "rápido possível (G0) até a altura de deslocamento.\n"
  6832. "- Quando marcado, o deslocamento da profundidade de corte para a altura de "
  6833. "deslocamento\n"
  6834. " é feito o mais rápido possível (G0) em um único movimento."
  6835. #: flatcamGUI/FlatCAMGUI.py:4911
  6836. msgid "Excellon Export"
  6837. msgstr "Exportar Excellon"
  6838. #: flatcamGUI/FlatCAMGUI.py:4916
  6839. msgid ""
  6840. "The parameters set here are used in the file exported\n"
  6841. "when using the File -> Export -> Export Excellon menu entry."
  6842. msgstr ""
  6843. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6844. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Excellon."
  6845. #: flatcamGUI/FlatCAMGUI.py:4927 flatcamGUI/FlatCAMGUI.py:4933
  6846. msgid "The units used in the Excellon file."
  6847. msgstr "A unidade usada no arquivo Excellon."
  6848. #: flatcamGUI/FlatCAMGUI.py:4941
  6849. msgid ""
  6850. "The NC drill files, usually named Excellon files\n"
  6851. "are files that can be found in different formats.\n"
  6852. "Here we set the format used when the provided\n"
  6853. "coordinates are not using period."
  6854. msgstr ""
  6855. "Os arquivos com a furação, geralmente chamados de arquivos Excellon\n"
  6856. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6857. "Aqui é definido o formato usado quando as coordenadas\n"
  6858. "fornecidas não usam ponto."
  6859. #: flatcamGUI/FlatCAMGUI.py:4977
  6860. msgid "<b>Format:</b>"
  6861. msgstr "<b>Formato:</b>"
  6862. #: flatcamGUI/FlatCAMGUI.py:4979 flatcamGUI/FlatCAMGUI.py:4989
  6863. msgid ""
  6864. "Select the kind of coordinates format used.\n"
  6865. "Coordinates can be saved with decimal point or without.\n"
  6866. "When there is no decimal point, it is required to specify\n"
  6867. "the number of digits for integer part and the number of decimals.\n"
  6868. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6869. "or TZ = trailing zeros are kept."
  6870. msgstr ""
  6871. "Selecione o formato de coordenadas usado.\n"
  6872. "As coordenadas podem ser salvas com ou sem ponto decimal.\n"
  6873. "Quando não há ponto decimal, é necessário especificar\n"
  6874. "o número de dígitos para a parte inteira e o número de casas decimais.\n"
  6875. "Deve ser especificado LZ (manter zeros à esquerda)\n"
  6876. "ou TZ (manter zeros à direita)."
  6877. #: flatcamGUI/FlatCAMGUI.py:4986
  6878. msgid "Decimal"
  6879. msgstr "Decimal"
  6880. #: flatcamGUI/FlatCAMGUI.py:4987
  6881. msgid "No-Decimal"
  6882. msgstr "No-Decimal"
  6883. #: flatcamGUI/FlatCAMGUI.py:5013
  6884. msgid ""
  6885. "This sets the default type of Excellon zeros.\n"
  6886. "If LZ then Leading Zeros are kept and\n"
  6887. "Trailing Zeros are removed.\n"
  6888. "If TZ is checked then Trailing Zeros are kept\n"
  6889. "and Leading Zeros are removed."
  6890. msgstr ""
  6891. "Define o tipo padrão de zeros de Excellon.\n"
  6892. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6893. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6894. #: flatcamGUI/FlatCAMGUI.py:5043
  6895. msgid "A list of Excellon Editor parameters."
  6896. msgstr "Uma lista de parâmetros do Editor Excellon."
  6897. #: flatcamGUI/FlatCAMGUI.py:5053
  6898. msgid ""
  6899. "Set the number of selected Excellon geometry\n"
  6900. "items above which the utility geometry\n"
  6901. "becomes just a selection rectangle.\n"
  6902. "Increases the performance when moving a\n"
  6903. "large number of geometric elements."
  6904. msgstr ""
  6905. "Define o número máximo de ítens de geometria Excellon\n"
  6906. "selecionados. Acima desse valor a geometria se torna um\n"
  6907. "retângulo de seleção.\n"
  6908. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  6909. #: flatcamGUI/FlatCAMGUI.py:5065
  6910. msgid "New Tool Dia:"
  6911. msgstr "Novo Diâmetro:"
  6912. #: flatcamGUI/FlatCAMGUI.py:5088
  6913. msgid "<b>Linear Drill Array:</b>"
  6914. msgstr "<b>Matriz Linear de Brocas:</b>"
  6915. #: flatcamGUI/FlatCAMGUI.py:5092
  6916. msgid "Linear Dir.:"
  6917. msgstr "Direção:"
  6918. #: flatcamGUI/FlatCAMGUI.py:5128
  6919. msgid "<b>Circular Drill Array:</b>"
  6920. msgstr "<b>Matriz Circular de Brocas:</b>"
  6921. #: flatcamGUI/FlatCAMGUI.py:5132
  6922. msgid "Circular Dir.:"
  6923. msgstr "Sentido:"
  6924. #: flatcamGUI/FlatCAMGUI.py:5134
  6925. msgid ""
  6926. "Direction for circular array.\n"
  6927. "Can be CW = clockwise or CCW = counter clockwise."
  6928. msgstr ""
  6929. "Sentido da matriz circular.\n"
  6930. "Pode ser CW = sentido horário ou CCW = sentido anti-horário."
  6931. #: flatcamGUI/FlatCAMGUI.py:5145
  6932. msgid "Circ. Angle:"
  6933. msgstr "Ângulo:"
  6934. #: flatcamGUI/FlatCAMGUI.py:5162
  6935. msgid "Geometry General"
  6936. msgstr "Geometria Geral"
  6937. #: flatcamGUI/FlatCAMGUI.py:5181
  6938. msgid ""
  6939. "The number of circle steps for <b>Geometry</b> \n"
  6940. "circle and arc shapes linear approximation."
  6941. msgstr ""
  6942. "Número de etapas do círculo para a aproximação linear\n"
  6943. "de <b>Geometria</b> círculo e arco."
  6944. #: flatcamGUI/FlatCAMGUI.py:5189
  6945. msgid "<b>Tools:</b>"
  6946. msgstr "<b>Ferramentas:</b>"
  6947. #: flatcamGUI/FlatCAMGUI.py:5195 flatcamGUI/FlatCAMGUI.py:5804
  6948. msgid "Diameters of the cutting tools, separated by ','"
  6949. msgstr "Diâmetros das ferramentas de corte, separadas por ','"
  6950. #: flatcamGUI/FlatCAMGUI.py:5209
  6951. msgid "Geometry Options"
  6952. msgstr "Opções de Geometria"
  6953. #: flatcamGUI/FlatCAMGUI.py:5214
  6954. msgid "<b>Create CNC Job:</b>"
  6955. msgstr "<b>Criar um Trabalho CNC:</b>"
  6956. #: flatcamGUI/FlatCAMGUI.py:5216
  6957. msgid ""
  6958. "Create a CNC Job object\n"
  6959. "tracing the contours of this\n"
  6960. "Geometry object."
  6961. msgstr ""
  6962. "Cria um objeto de Trabalho CNC\n"
  6963. "traçando os contornos deste objeto\n"
  6964. "Geometria."
  6965. #: flatcamGUI/FlatCAMGUI.py:5228 flatcamGUI/ObjectUI.py:1065
  6966. msgid ""
  6967. "Cutting depth (negative)\n"
  6968. "below the copper surface."
  6969. msgstr ""
  6970. "Profundidade de corte (negativo)\n"
  6971. "abaixo da superfície de cobre."
  6972. #: flatcamGUI/FlatCAMGUI.py:5236
  6973. msgid "Multidepth"
  6974. msgstr "Múltiplas Profundidades"
  6975. #: flatcamGUI/FlatCAMGUI.py:5238
  6976. msgid "Multidepth usage: True or False."
  6977. msgstr "Usar Múltiplas Profundidades."
  6978. #: flatcamGUI/FlatCAMGUI.py:5243
  6979. msgid "Depth/Pass:"
  6980. msgstr "Profundidade por Passe:"
  6981. #: flatcamGUI/FlatCAMGUI.py:5245
  6982. msgid ""
  6983. "The depth to cut on each pass,\n"
  6984. "when multidepth is enabled.\n"
  6985. "It has positive value although\n"
  6986. "it is a fraction from the depth\n"
  6987. "which has negative value."
  6988. msgstr ""
  6989. "A profundidade a ser cortada em cada passe,\n"
  6990. "quando Múltiplas Profundidades estiver ativo.\n"
  6991. "Tem valor positivo, embora seja uma fração\n"
  6992. "da profundidade, que tem valor negativo."
  6993. #: flatcamGUI/FlatCAMGUI.py:5261 flatcamGUI/ObjectUI.py:1101
  6994. msgid ""
  6995. "Height of the tool when\n"
  6996. "moving without cutting."
  6997. msgstr "Altura da ferramenta ao mover sem cortar."
  6998. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/ObjectUI.py:1156
  6999. msgid "Feed Rate X-Y:"
  7000. msgstr "Taxa de Avanço XY:"
  7001. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/ObjectUI.py:1159
  7002. msgid ""
  7003. "Cutting speed in the XY\n"
  7004. "plane in units per minute"
  7005. msgstr "Velocidade de corte no plano XY em unidades por minuto"
  7006. #: flatcamGUI/FlatCAMGUI.py:5298
  7007. msgid "Feed Rate Z:"
  7008. msgstr "Taxa de Avanço Z:"
  7009. #: flatcamGUI/FlatCAMGUI.py:5300
  7010. msgid ""
  7011. "Cutting speed in the XY\n"
  7012. "plane in units per minute.\n"
  7013. "It is called also Plunge."
  7014. msgstr ""
  7015. "Velocidade de corte no plano Z em unidades por minuto.\n"
  7016. "Também é chamado de Mergulho."
  7017. #: flatcamGUI/FlatCAMGUI.py:5309 flatcamGUI/ObjectUI.py:682
  7018. #: flatcamGUI/ObjectUI.py:1211
  7019. msgid "Spindle speed:"
  7020. msgstr "Velocidade do Spindle:"
  7021. #: flatcamGUI/FlatCAMGUI.py:5352
  7022. msgid ""
  7023. "The postprocessor file that dictates\n"
  7024. "Machine Code output."
  7025. msgstr ""
  7026. "O arquivo do pós-processador que dita a saída do\n"
  7027. "Código da máquina."
  7028. #: flatcamGUI/FlatCAMGUI.py:5368
  7029. msgid "Geometry Adv. Options"
  7030. msgstr "Opções Avançadas"
  7031. #: flatcamGUI/FlatCAMGUI.py:5375
  7032. msgid ""
  7033. "Parameters to create a CNC Job object\n"
  7034. "tracing the contours of a Geometry object."
  7035. msgstr ""
  7036. "Parâmetros para criar um objeto de Trabalho CNC\n"
  7037. "traçando os contornos de um objeto Geometria."
  7038. #: flatcamGUI/FlatCAMGUI.py:5395
  7039. msgid ""
  7040. "Height of the tool just after starting the work.\n"
  7041. "Delete the value if you don't need this feature."
  7042. msgstr ""
  7043. "Altura da ferramenta ao iniciar o trabalho.\n"
  7044. "Exclua o valor se você não precisar deste recurso."
  7045. #: flatcamGUI/FlatCAMGUI.py:5415
  7046. msgid ""
  7047. "Cutting speed in the XY plane\n"
  7048. "(in units per minute).\n"
  7049. "This is for the rapid move G00.\n"
  7050. "It is useful only for Marlin,\n"
  7051. "ignore for any other cases."
  7052. msgstr ""
  7053. "Velocidade de corte no plano XY (em unidades por minuto).\n"
  7054. "Para o movimento rápido G00.\n"
  7055. "É útil apenas para Marlin, ignore em outros casos."
  7056. #: flatcamGUI/FlatCAMGUI.py:5427
  7057. msgid "Re-cut 1st pt."
  7058. msgstr "Re-corte primeiro ponto."
  7059. #: flatcamGUI/FlatCAMGUI.py:5429 flatcamGUI/ObjectUI.py:1202
  7060. msgid ""
  7061. "In order to remove possible\n"
  7062. "copper leftovers where first cut\n"
  7063. "meet with last cut, we generate an\n"
  7064. "extended cut over the first cut section."
  7065. msgstr ""
  7066. "Para remover possíveis sobras no ponto de encontro\n"
  7067. "do primeiro com o último corte, gera-se um corte\n"
  7068. "próximo à primeira seção de corte."
  7069. #: flatcamGUI/FlatCAMGUI.py:5468
  7070. msgid "Seg. X size:"
  7071. msgstr "Tamanho Segmento X:"
  7072. #: flatcamGUI/FlatCAMGUI.py:5470
  7073. msgid ""
  7074. "The size of the trace segment on the X axis.\n"
  7075. "Useful for auto-leveling.\n"
  7076. "A value of 0 means no segmentation on the X axis."
  7077. msgstr ""
  7078. "O tamanho do segmento de rastreio no eixo X.\n"
  7079. "Útil para nivelamento automático.\n"
  7080. "Valor 0 significa que não há segmentação no eixo X."
  7081. #: flatcamGUI/FlatCAMGUI.py:5479
  7082. msgid "Seg. Y size:"
  7083. msgstr "Tamanho Segmento Y:"
  7084. #: flatcamGUI/FlatCAMGUI.py:5481
  7085. msgid ""
  7086. "The size of the trace segment on the Y axis.\n"
  7087. "Useful for auto-leveling.\n"
  7088. "A value of 0 means no segmentation on the Y axis."
  7089. msgstr ""
  7090. "O tamanho do segmento de rastreio no eixo Y.\n"
  7091. "Útil para nivelamento automático.\n"
  7092. "Valor 0 significa que não há segmentação no eixo Y."
  7093. #: flatcamGUI/FlatCAMGUI.py:5497
  7094. msgid "Geometry Editor"
  7095. msgstr "Editor de Geometria"
  7096. #: flatcamGUI/FlatCAMGUI.py:5502
  7097. msgid "A list of Geometry Editor parameters."
  7098. msgstr "Uma lista de parâmetros do Editor de Geometria."
  7099. #: flatcamGUI/FlatCAMGUI.py:5512
  7100. msgid ""
  7101. "Set the number of selected geometry\n"
  7102. "items above which the utility geometry\n"
  7103. "becomes just a selection rectangle.\n"
  7104. "Increases the performance when moving a\n"
  7105. "large number of geometric elements."
  7106. msgstr ""
  7107. "Define o número máximo de ítens de geometria selecionados.\n"
  7108. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  7109. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  7110. #: flatcamGUI/FlatCAMGUI.py:5531
  7111. msgid "CNC Job General"
  7112. msgstr "CNC Geral"
  7113. #: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:544
  7114. #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1447
  7115. msgid "Plot Object"
  7116. msgstr "Mostrar"
  7117. #: flatcamGUI/FlatCAMGUI.py:5551
  7118. msgid "Plot kind:"
  7119. msgstr "Tipo de Gráfico:"
  7120. #: flatcamGUI/FlatCAMGUI.py:5553 flatcamGUI/ObjectUI.py:1356
  7121. msgid ""
  7122. "This selects the kind of geometries on the canvas to plot.\n"
  7123. "Those can be either of type 'Travel' which means the moves\n"
  7124. "above the work piece or it can be of type 'Cut',\n"
  7125. "which means the moves that cut into the material."
  7126. msgstr ""
  7127. "Seleciona o tipo de geometria mostrada na tela.\n"
  7128. "Pode ser do tipo 'Deslocamento', com os movimentos acima da peça ou do\n"
  7129. "tipo 'Corte', com os movimentos cortando o material."
  7130. #: flatcamGUI/FlatCAMGUI.py:5561 flatcamGUI/ObjectUI.py:1365
  7131. msgid "Travel"
  7132. msgstr "Deslocamento"
  7133. #: flatcamGUI/FlatCAMGUI.py:5570
  7134. msgid "Display Annotation:"
  7135. msgstr "Exibir Anotação:"
  7136. #: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/ObjectUI.py:1372
  7137. msgid ""
  7138. "This selects if to display text annotation on the plot.\n"
  7139. "When checked it will display numbers in order for each end\n"
  7140. "of a travel line."
  7141. msgstr ""
  7142. "Seleciona se deseja exibir a anotação de texto no gráfico.\n"
  7143. "Quando marcado, exibirá números para cada final\n"
  7144. "de uma linha de deslocamento."
  7145. #: flatcamGUI/FlatCAMGUI.py:5584
  7146. msgid "Annotation Size:"
  7147. msgstr "Tamanho da Anotação:"
  7148. #: flatcamGUI/FlatCAMGUI.py:5586
  7149. msgid "The font size of the annotation text. In pixels."
  7150. msgstr "O tamanho da fonte do texto de anotação. Em pixels."
  7151. #: flatcamGUI/FlatCAMGUI.py:5594
  7152. msgid "Annotation Color:"
  7153. msgstr "Cor da Anotação:"
  7154. #: flatcamGUI/FlatCAMGUI.py:5596
  7155. msgid "Set the font color for the annotation texts."
  7156. msgstr "Define a cor da fonte para os textos de anotação."
  7157. #: flatcamGUI/FlatCAMGUI.py:5619
  7158. msgid ""
  7159. "The number of circle steps for <b>GCode</b> \n"
  7160. "circle and arc shapes linear approximation."
  7161. msgstr ""
  7162. "O número de etapas de círculo para <b>G-Code</b>\n"
  7163. "aproximação linear para círculos e formas de arco."
  7164. #: flatcamGUI/FlatCAMGUI.py:5629
  7165. msgid ""
  7166. "Diameter of the tool to be\n"
  7167. "rendered in the plot."
  7168. msgstr "Diâmetro da ferramenta a ser renderizada no gráfico."
  7169. #: flatcamGUI/FlatCAMGUI.py:5637
  7170. msgid "Coords dec.:"
  7171. msgstr "Decimais das Coordenadas:"
  7172. #: flatcamGUI/FlatCAMGUI.py:5639
  7173. msgid ""
  7174. "The number of decimals to be used for \n"
  7175. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  7176. msgstr ""
  7177. "Número de decimais a ser usado para as coordenadas\n"
  7178. "X, Y, Z no código do CNC (G-Code, etc.)"
  7179. #: flatcamGUI/FlatCAMGUI.py:5647
  7180. msgid "Feedrate dec.:"
  7181. msgstr "Decimais da Taxa de Avanço:"
  7182. #: flatcamGUI/FlatCAMGUI.py:5649
  7183. msgid ""
  7184. "The number of decimals to be used for \n"
  7185. "the Feedrate parameter in CNC code (GCODE, etc.)"
  7186. msgstr ""
  7187. "O número de decimais a ser usado para\n"
  7188. "o parâmetro Taxa de Avanço no código CNC (G-Code, etc.)"
  7189. #: flatcamGUI/FlatCAMGUI.py:5664
  7190. msgid "CNC Job Options"
  7191. msgstr "Opções de Trabalho CNC"
  7192. #: flatcamGUI/FlatCAMGUI.py:5667 flatcamGUI/FlatCAMGUI.py:5708
  7193. msgid "<b>Export G-Code:</b>"
  7194. msgstr "<b>Exportar G-Code:</b>"
  7195. #: flatcamGUI/FlatCAMGUI.py:5669 flatcamGUI/FlatCAMGUI.py:5710
  7196. #: flatcamGUI/ObjectUI.py:1483
  7197. msgid ""
  7198. "Export and save G-Code to\n"
  7199. "make this object to a file."
  7200. msgstr ""
  7201. "Exporta e salva em arquivo\n"
  7202. "o G-Code para fazer este objeto."
  7203. #: flatcamGUI/FlatCAMGUI.py:5675
  7204. msgid "Prepend to G-Code:"
  7205. msgstr "Incluir no Início do G-Code:"
  7206. #: flatcamGUI/FlatCAMGUI.py:5677
  7207. msgid ""
  7208. "Type here any G-Code commands you would\n"
  7209. "like to add at the beginning of the G-Code file."
  7210. msgstr ""
  7211. "Digite aqui os comandos G-Code que você gostaria\n"
  7212. "de adicionar no início do arquivo G-Code gerado."
  7213. #: flatcamGUI/FlatCAMGUI.py:5686
  7214. msgid "Append to G-Code:"
  7215. msgstr "Incluir no final do G-Code:"
  7216. #: flatcamGUI/FlatCAMGUI.py:5688 flatcamGUI/ObjectUI.py:1505
  7217. msgid ""
  7218. "Type here any G-Code commands you would\n"
  7219. "like to append to the generated file.\n"
  7220. "I.e.: M2 (End of program)"
  7221. msgstr ""
  7222. "Digite aqui os comandos G-Code que você gostaria'nde acrescentar no final do "
  7223. "arquivo G-Code gerado.\n"
  7224. "M2 (Fim do programa)"
  7225. #: flatcamGUI/FlatCAMGUI.py:5705
  7226. msgid "CNC Job Adv. Options"
  7227. msgstr "Opções Avançadas"
  7228. #: flatcamGUI/FlatCAMGUI.py:5716 flatcamGUI/ObjectUI.py:1523
  7229. msgid "Toolchange G-Code:"
  7230. msgstr "G-Code para Troca de Ferramentas:"
  7231. #: flatcamGUI/FlatCAMGUI.py:5718
  7232. msgid ""
  7233. "Type here any G-Code commands you would\n"
  7234. "like to be executed when Toolchange event is encountered.\n"
  7235. "This will constitute a Custom Toolchange GCode,\n"
  7236. "or a Toolchange Macro."
  7237. msgstr ""
  7238. "Digite aqui os comandos do G-Code que você gostaria de executar\n"
  7239. "quando o evento Troca de Ferramentas for encontrado.\n"
  7240. "Será uma personalização de G-Code para Troca de Ferramentas\n"
  7241. "ou uma Macro de Troca de Ferramentas."
  7242. #: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/ObjectUI.py:1545
  7243. msgid "Use Toolchange Macro"
  7244. msgstr "Usar Macro de Troca de Ferramentas"
  7245. #: flatcamGUI/FlatCAMGUI.py:5734 flatcamGUI/ObjectUI.py:1548
  7246. msgid ""
  7247. "Check this box if you want to use\n"
  7248. "a Custom Toolchange GCode (macro)."
  7249. msgstr ""
  7250. "Marque esta caixa se você quiser usar a macro G-Code de Troca de Ferramentas."
  7251. #: flatcamGUI/FlatCAMGUI.py:5746 flatcamGUI/ObjectUI.py:1557
  7252. msgid ""
  7253. "A list of the FlatCAM variables that can be used\n"
  7254. "in the Toolchange event.\n"
  7255. "They have to be surrounded by the '%' symbol"
  7256. msgstr ""
  7257. "Uma lista das variáveis FlatCAM que podem ser usadas\n"
  7258. "no evento Troca de Ferramentas.\n"
  7259. "Eles devem estar cercados pelo símbolo '%'"
  7260. #: flatcamGUI/FlatCAMGUI.py:5753 flatcamGUI/ObjectUI.py:1564
  7261. msgid "Parameters"
  7262. msgstr "Parâmetros"
  7263. #: flatcamGUI/FlatCAMGUI.py:5756 flatcamGUI/ObjectUI.py:1567
  7264. msgid "FlatCAM CNC parameters"
  7265. msgstr "Parâmetros do FlatCAM CNC"
  7266. #: flatcamGUI/FlatCAMGUI.py:5757 flatcamGUI/ObjectUI.py:1568
  7267. msgid "tool = tool number"
  7268. msgstr "tool = número da ferramenta"
  7269. #: flatcamGUI/FlatCAMGUI.py:5758 flatcamGUI/ObjectUI.py:1569
  7270. msgid "tooldia = tool diameter"
  7271. msgstr "tooldia = diâmetro da ferramenta"
  7272. #: flatcamGUI/FlatCAMGUI.py:5759 flatcamGUI/ObjectUI.py:1570
  7273. msgid "t_drills = for Excellon, total number of drills"
  7274. msgstr "t_drills = para Excellon, número total de brocas"
  7275. #: flatcamGUI/FlatCAMGUI.py:5760 flatcamGUI/ObjectUI.py:1571
  7276. msgid "x_toolchange = X coord for Toolchange"
  7277. msgstr "x_toolchange = coord. X para troca de ferramentas"
  7278. #: flatcamGUI/FlatCAMGUI.py:5761 flatcamGUI/ObjectUI.py:1572
  7279. msgid "y_toolchange = Y coord for Toolchange"
  7280. msgstr "y_toolchange = coord. Y para troca de ferramentas"
  7281. #: flatcamGUI/FlatCAMGUI.py:5762 flatcamGUI/ObjectUI.py:1573
  7282. msgid "z_toolchange = Z coord for Toolchange"
  7283. msgstr "z_toolchange = coord. Z para troca de ferramentas"
  7284. #: flatcamGUI/FlatCAMGUI.py:5763
  7285. msgid "z_cut = Z depth for the cut"
  7286. msgstr "z_cut = profundidade Z para o corte"
  7287. #: flatcamGUI/FlatCAMGUI.py:5764
  7288. msgid "z_move = Z height for travel"
  7289. msgstr "z_move = altura Z para deslocamentos"
  7290. #: flatcamGUI/FlatCAMGUI.py:5765 flatcamGUI/ObjectUI.py:1576
  7291. msgid "z_depthpercut = the step value for multidepth cut"
  7292. msgstr "z_depthpercut = valor do passo para corte múltiplas profundidade"
  7293. #: flatcamGUI/FlatCAMGUI.py:5766 flatcamGUI/ObjectUI.py:1577
  7294. msgid "spindlesspeed = the value for the spindle speed"
  7295. msgstr "spindlesspeed = velocidade do spindle"
  7296. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/ObjectUI.py:1578
  7297. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  7298. msgstr "dwelltime = tempo de espera para o spindle atingir sua vel. RPM"
  7299. #: flatcamGUI/FlatCAMGUI.py:5789
  7300. msgid "NCC Tool Options"
  7301. msgstr "Opções Área Sem Cobre (NCC)"
  7302. #: flatcamGUI/FlatCAMGUI.py:5802 flatcamGUI/FlatCAMGUI.py:6532
  7303. msgid "Tools dia:"
  7304. msgstr "Diâmetro da Ferramenta:"
  7305. #: flatcamGUI/FlatCAMGUI.py:5812 flatcamTools/ToolNonCopperClear.py:167
  7306. #, python-format
  7307. msgid ""
  7308. "How much (fraction) of the tool width to overlap each tool pass.\n"
  7309. "Example:\n"
  7310. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  7311. "\n"
  7312. "Adjust the value starting with lower values\n"
  7313. "and increasing it if areas that should be cleared are still \n"
  7314. "not cleared.\n"
  7315. "Lower values = faster processing, faster execution on PCB.\n"
  7316. "Higher values = slow processing and slow execution on CNC\n"
  7317. "due of too many paths."
  7318. msgstr ""
  7319. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  7320. "ferramenta.\n"
  7321. "Exemplo:\n"
  7322. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da "
  7323. "ferramenta.\n"
  7324. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  7325. "deveria ser limpa não foi limpa.\n"
  7326. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  7327. "Valores maiores = processamento lento e execução lenta no CNC \n"
  7328. " devido ao número de caminhos."
  7329. #: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolNonCopperClear.py:183
  7330. msgid "Bounding box margin."
  7331. msgstr "Margem da caixa delimitadora."
  7332. #: flatcamGUI/FlatCAMGUI.py:5837 flatcamTools/ToolNonCopperClear.py:192
  7333. #: flatcamTools/ToolPaint.py:190
  7334. msgid ""
  7335. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  7336. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  7337. "lines."
  7338. msgstr ""
  7339. "Algoritmo para retirada do cobre:<BR><B>Padrão</B>: passo fixo para dentro. "
  7340. "<BR><B>Baseado em semente</B>: para fora a partir da semente.<BR><B>Baseado "
  7341. "em linha</B>: linhas paralelas."
  7342. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamTools/ToolNonCopperClear.py:224
  7343. #: flatcamTools/ToolPaint.py:222
  7344. msgid "Rest M.:"
  7345. msgstr "Maquinagem Restante:"
  7346. #: flatcamGUI/FlatCAMGUI.py:5871
  7347. msgid ""
  7348. "If checked, use 'rest machining'.\n"
  7349. "Basically it will clear copper outside PCB features,\n"
  7350. "using the biggest tool and continue with the next tools,\n"
  7351. "from bigger to smaller, to clear areas of copper that\n"
  7352. "could not be cleared by previous tool.\n"
  7353. "If not checked, use the standard algorithm."
  7354. msgstr ""
  7355. "Se marcada, usa 'usinagem de descanso'.\n"
  7356. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  7357. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  7358. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  7359. "retiradas com a ferramenta anterior.\n"
  7360. "Se não estiver marcada, usa o algoritmo padrão."
  7361. #: flatcamGUI/FlatCAMGUI.py:5890
  7362. msgid "Cutout Tool Options"
  7363. msgstr "Opções da Ferramenta de Recorte"
  7364. #: flatcamGUI/FlatCAMGUI.py:5895 flatcamGUI/ObjectUI.py:402
  7365. msgid ""
  7366. "Create toolpaths to cut around\n"
  7367. "the PCB and separate it from\n"
  7368. "the original board."
  7369. msgstr ""
  7370. "Cria caminhos da ferramenta para cortar\n"
  7371. "o PCB e separá-lo da placa original."
  7372. #: flatcamGUI/FlatCAMGUI.py:5914
  7373. msgid ""
  7374. "Distance from objects at which\n"
  7375. "to draw the cutout."
  7376. msgstr ""
  7377. "Distância dos objetos\n"
  7378. "para desenhar o recorte."
  7379. #: flatcamGUI/FlatCAMGUI.py:5921 flatcamTools/ToolCutOut.py:97
  7380. msgid "Gap size:"
  7381. msgstr "Tamanho da Ponte:"
  7382. #: flatcamGUI/FlatCAMGUI.py:5923
  7383. msgid ""
  7384. "Size of the gaps in the toolpath\n"
  7385. "that will remain to hold the\n"
  7386. "board in place."
  7387. msgstr ""
  7388. "Tamanho das pontes no caminho da ferramenta\n"
  7389. "que permanecerão para manter a placa no lugar."
  7390. #: flatcamGUI/FlatCAMGUI.py:5931 flatcamTools/ToolCutOut.py:135
  7391. msgid "Gaps:"
  7392. msgstr "Pontes:"
  7393. #: flatcamGUI/FlatCAMGUI.py:5933
  7394. msgid ""
  7395. "Number of bridge gaps used for the cutout.\n"
  7396. "There can be maximum 8 bridges/gaps.\n"
  7397. "The choices are:\n"
  7398. "- lr - left + right\n"
  7399. "- tb - top + bottom\n"
  7400. "- 4 - left + right +top + bottom\n"
  7401. "- 2lr - 2*left + 2*right\n"
  7402. "- 2tb - 2*top + 2*bottom\n"
  7403. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7404. msgstr ""
  7405. "Número de pontes utilizadas para o recorte.\n"
  7406. "Pode haver um máximo de 8 pontes/lacunas.\n"
  7407. "As opções são:\n"
  7408. "- LR - esquerda + direita\n"
  7409. "- TB - topo + baixo\n"
  7410. "- 4 - esquerda + direita + topo + baixo\n"
  7411. "- 2LR - 2*esquerda + 2*direita\n"
  7412. "- 2TB - 2*topo + 2*baixo\n"
  7413. "- 8 - 2*esquerda + 2*direita + 2*topo + 2*baixo"
  7414. #: flatcamGUI/FlatCAMGUI.py:5954 flatcamTools/ToolCutOut.py:116
  7415. msgid "Convex Sh.:"
  7416. msgstr "Forma Convexa:"
  7417. #: flatcamGUI/FlatCAMGUI.py:5956
  7418. msgid "Create a convex shape surrounding the entire PCB."
  7419. msgstr "Crie uma forma convexa ao redor de toda a PCB."
  7420. #: flatcamGUI/FlatCAMGUI.py:5969
  7421. msgid "2Sided Tool Options"
  7422. msgstr "Opções de PCB 2 Faces"
  7423. #: flatcamGUI/FlatCAMGUI.py:5974
  7424. msgid ""
  7425. "A tool to help in creating a double sided\n"
  7426. "PCB using alignment holes."
  7427. msgstr ""
  7428. "Uma ferramenta para ajudar na criação de um\n"
  7429. "PCB de dupla face usando furos de alinhamento."
  7430. #: flatcamGUI/FlatCAMGUI.py:5984 flatcamTools/ToolDblSided.py:234
  7431. msgid "Drill diam.:"
  7432. msgstr "Diâmetro da Broca:"
  7433. #: flatcamGUI/FlatCAMGUI.py:5986 flatcamTools/ToolDblSided.py:225
  7434. #: flatcamTools/ToolDblSided.py:236
  7435. msgid "Diameter of the drill for the alignment holes."
  7436. msgstr "Diâmetro da broca para os furos de alinhamento."
  7437. #: flatcamGUI/FlatCAMGUI.py:5995 flatcamTools/ToolDblSided.py:120
  7438. msgid "Mirror Axis:"
  7439. msgstr "Espelhar Eixo:"
  7440. #: flatcamGUI/FlatCAMGUI.py:5997 flatcamTools/ToolDblSided.py:122
  7441. msgid "Mirror vertically (X) or horizontally (Y)."
  7442. msgstr "Espelha verticalmente (X) ou horizontalmente (Y)."
  7443. #: flatcamGUI/FlatCAMGUI.py:6006 flatcamTools/ToolDblSided.py:131
  7444. msgid "Point"
  7445. msgstr "Ponto"
  7446. #: flatcamGUI/FlatCAMGUI.py:6007 flatcamTools/ToolDblSided.py:132
  7447. msgid "Box"
  7448. msgstr "Caixa"
  7449. #: flatcamGUI/FlatCAMGUI.py:6008 flatcamTools/ToolDblSided.py:133
  7450. msgid "Axis Ref:"
  7451. msgstr "Eixo de Referência:"
  7452. #: flatcamGUI/FlatCAMGUI.py:6010
  7453. msgid ""
  7454. "The axis should pass through a <b>point</b> or cut\n"
  7455. " a specified <b>box</b> (in a Geometry object) in \n"
  7456. "the middle."
  7457. msgstr ""
  7458. "O eixo deve passar por um <b>ponto</b> ou cortar\n"
  7459. "no meio uma <b>caixa</b> especificada (em um objeto Geometria)."
  7460. #: flatcamGUI/FlatCAMGUI.py:6026
  7461. msgid "Paint Tool Options"
  7462. msgstr "Opções de Ferramenta de Pintura"
  7463. #: flatcamGUI/FlatCAMGUI.py:6033 flatcamGUI/ObjectUI.py:1305
  7464. msgid ""
  7465. "Creates tool paths to cover the\n"
  7466. "whole area of a polygon (remove\n"
  7467. "all copper). You will be asked\n"
  7468. "to click on the desired polygon."
  7469. msgstr ""
  7470. "Cria caminhos de ferramenta para cobrir a área\n"
  7471. "inteira de um polígono (remove todo o cobre).\n"
  7472. "Você será solicitado a clicar no polígono desejado."
  7473. #: flatcamGUI/FlatCAMGUI.py:6057
  7474. msgid ""
  7475. "How much (fraction) of the tool\n"
  7476. "width to overlap each tool pass."
  7477. msgstr ""
  7478. "Quanta (fração) da largura da ferramenta\n"
  7479. "para sobrepor a cada passe."
  7480. #: flatcamGUI/FlatCAMGUI.py:6111 flatcamTools/ToolPaint.py:237
  7481. msgid "Selection:"
  7482. msgstr "Seleção:"
  7483. #: flatcamGUI/FlatCAMGUI.py:6113
  7484. msgid "How to select the polygons to paint."
  7485. msgstr "Como selecionar os polígonos para pintar."
  7486. #: flatcamGUI/FlatCAMGUI.py:6117 flatcamTools/ToolPaint.py:247
  7487. msgid "Single"
  7488. msgstr "Único"
  7489. #: flatcamGUI/FlatCAMGUI.py:6131
  7490. msgid "Film Tool Options"
  7491. msgstr "Opções da Ferramenta de Filme"
  7492. #: flatcamGUI/FlatCAMGUI.py:6136
  7493. msgid ""
  7494. "Create a PCB film from a Gerber or Geometry\n"
  7495. "FlatCAM object.\n"
  7496. "The file is saved in SVG format."
  7497. msgstr ""
  7498. "Cria um filme de PCB a partir de um objeto Gerber\n"
  7499. "ou Geometria FlatCAM.\n"
  7500. "O arquivo é salvo no formato SVG."
  7501. #: flatcamGUI/FlatCAMGUI.py:6147 flatcamTools/ToolFilm.py:116
  7502. msgid "Film Type:"
  7503. msgstr "Tipo de Filme:"
  7504. #: flatcamGUI/FlatCAMGUI.py:6149 flatcamTools/ToolFilm.py:118
  7505. msgid ""
  7506. "Generate a Positive black film or a Negative film.\n"
  7507. "Positive means that it will print the features\n"
  7508. "with black on a white canvas.\n"
  7509. "Negative means that it will print the features\n"
  7510. "with white on a black canvas.\n"
  7511. "The Film format is SVG."
  7512. msgstr ""
  7513. "Gera um filme Positivo ou Negativo.\n"
  7514. "Positivo significa que os recursos são impressos\n"
  7515. "em preto em uma tela branca.\n"
  7516. "Negativo significa que os recursos são impressos\n"
  7517. "em branco em uma tela preta.\n"
  7518. "O formato do arquivo do filme é SVG ."
  7519. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamTools/ToolFilm.py:130
  7520. msgid "Border:"
  7521. msgstr "Borda:"
  7522. #: flatcamGUI/FlatCAMGUI.py:6162 flatcamTools/ToolFilm.py:132
  7523. msgid ""
  7524. "Specify a border around the object.\n"
  7525. "Only for negative film.\n"
  7526. "It helps if we use as a Box Object the same \n"
  7527. "object as in Film Object. It will create a thick\n"
  7528. "black bar around the actual print allowing for a\n"
  7529. "better delimitation of the outline features which are of\n"
  7530. "white color like the rest and which may confound with the\n"
  7531. "surroundings if not for this border."
  7532. msgstr ""
  7533. "Especifica uma borda ao redor do objeto.\n"
  7534. "Somente para filme negativo.\n"
  7535. "Ajuda se for usado como Objeto Caixa o mesmo\n"
  7536. "objeto do Filme. Será criada uma barra preta\n"
  7537. "ao redor da impressão, permitindo uma melhor\n"
  7538. "delimitação dos contornos dos recursos (que são\n"
  7539. "brancos como o restante e podem ser confundidos\n"
  7540. "com os limites, se não for usada essa borda)."
  7541. #: flatcamGUI/FlatCAMGUI.py:6175 flatcamTools/ToolFilm.py:144
  7542. msgid "Scale Stroke:"
  7543. msgstr "Espessura da Linha:"
  7544. #: flatcamGUI/FlatCAMGUI.py:6177 flatcamTools/ToolFilm.py:146
  7545. msgid ""
  7546. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7547. "It means that the line that envelope each SVG feature will be thicker or "
  7548. "thinner,\n"
  7549. "therefore the fine features may be more affected by this parameter."
  7550. msgstr ""
  7551. "Espessura da linha de cada recurso no arquivo SVG.\n"
  7552. "A linha que envolve cada recurso SVG será mais espessa ou mais fina.\n"
  7553. "Os recursos mais finos podem ser afetados por esse parâmetro."
  7554. #: flatcamGUI/FlatCAMGUI.py:6192
  7555. msgid "Panelize Tool Options"
  7556. msgstr "Opções da Ferramenta Criar Painel"
  7557. #: flatcamGUI/FlatCAMGUI.py:6197
  7558. msgid ""
  7559. "Create an object that contains an array of (x, y) elements,\n"
  7560. "each element is a copy of the source object spaced\n"
  7561. "at a X distance, Y distance of each other."
  7562. msgstr ""
  7563. "Cria um objeto que contém uma matriz de elementos (x, y).\n"
  7564. "Cada elemento é uma cópia do objeto de origem espaçado\n"
  7565. "dos demais por uma distância X, Y."
  7566. #: flatcamGUI/FlatCAMGUI.py:6208 flatcamTools/ToolPanelize.py:147
  7567. msgid "Spacing cols:"
  7568. msgstr "Espaço entre Colunas:"
  7569. #: flatcamGUI/FlatCAMGUI.py:6210 flatcamTools/ToolPanelize.py:149
  7570. msgid ""
  7571. "Spacing between columns of the desired panel.\n"
  7572. "In current units."
  7573. msgstr ""
  7574. "Espaçamento desejado entre colunas do painel.\n"
  7575. "Nas unidades atuais."
  7576. #: flatcamGUI/FlatCAMGUI.py:6218 flatcamTools/ToolPanelize.py:156
  7577. msgid "Spacing rows:"
  7578. msgstr "Espaço entre Linhas:"
  7579. #: flatcamGUI/FlatCAMGUI.py:6220 flatcamTools/ToolPanelize.py:158
  7580. msgid ""
  7581. "Spacing between rows of the desired panel.\n"
  7582. "In current units."
  7583. msgstr ""
  7584. "Espaçamento desejado entre linhas do painel.\n"
  7585. "Nas unidades atuais."
  7586. #: flatcamGUI/FlatCAMGUI.py:6228 flatcamTools/ToolPanelize.py:165
  7587. msgid "Columns:"
  7588. msgstr "Colunas:"
  7589. #: flatcamGUI/FlatCAMGUI.py:6230 flatcamTools/ToolPanelize.py:167
  7590. msgid "Number of columns of the desired panel"
  7591. msgstr "Número de colunas do painel desejado"
  7592. #: flatcamGUI/FlatCAMGUI.py:6237 flatcamTools/ToolPanelize.py:173
  7593. msgid "Rows:"
  7594. msgstr "Linhas:"
  7595. #: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolPanelize.py:175
  7596. msgid "Number of rows of the desired panel"
  7597. msgstr "Número de linhas do painel desejado"
  7598. #: flatcamGUI/FlatCAMGUI.py:6245 flatcamTools/ToolPanelize.py:181
  7599. msgid "Gerber"
  7600. msgstr "Gerber"
  7601. #: flatcamGUI/FlatCAMGUI.py:6246 flatcamTools/ToolPanelize.py:182
  7602. msgid "Geo"
  7603. msgstr "Geo"
  7604. #: flatcamGUI/FlatCAMGUI.py:6247
  7605. msgid "Panel Type:"
  7606. msgstr "Tipo de Painel:"
  7607. #: flatcamGUI/FlatCAMGUI.py:6249
  7608. msgid ""
  7609. "Choose the type of object for the panel object:\n"
  7610. "- Gerber\n"
  7611. "- Geometry"
  7612. msgstr ""
  7613. "Escolha o tipo de objeto para o painel:\n"
  7614. "- Gerber\n"
  7615. "- Geometria"
  7616. #: flatcamGUI/FlatCAMGUI.py:6258
  7617. msgid "Constrain within:"
  7618. msgstr "Restringir dentro de:"
  7619. #: flatcamGUI/FlatCAMGUI.py:6260 flatcamTools/ToolPanelize.py:195
  7620. msgid ""
  7621. "Area define by DX and DY within to constrain the panel.\n"
  7622. "DX and DY values are in current units.\n"
  7623. "Regardless of how many columns and rows are desired,\n"
  7624. "the final panel will have as many columns and rows as\n"
  7625. "they fit completely within selected area."
  7626. msgstr ""
  7627. "Área definida por DX e DY para restringir o painel.\n"
  7628. "Os valores DX e DY estão nas unidades atuais.\n"
  7629. "Desde quantas colunas e linhas forem desejadas,\n"
  7630. "o painel final terá tantas colunas e linhas quantas\n"
  7631. "couberem completamente dentro de área selecionada."
  7632. #: flatcamGUI/FlatCAMGUI.py:6269 flatcamTools/ToolPanelize.py:204
  7633. msgid "Width (DX):"
  7634. msgstr "Largura (DX):"
  7635. #: flatcamGUI/FlatCAMGUI.py:6271 flatcamTools/ToolPanelize.py:206
  7636. msgid ""
  7637. "The width (DX) within which the panel must fit.\n"
  7638. "In current units."
  7639. msgstr ""
  7640. "A largura (DX) na qual o painel deve caber.\n"
  7641. "Nas unidades atuais."
  7642. #: flatcamGUI/FlatCAMGUI.py:6278 flatcamTools/ToolPanelize.py:212
  7643. msgid "Height (DY):"
  7644. msgstr "Altura (DY):"
  7645. #: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolPanelize.py:214
  7646. msgid ""
  7647. "The height (DY)within which the panel must fit.\n"
  7648. "In current units."
  7649. msgstr ""
  7650. "A altura (DY) na qual o painel deve se ajustar.\n"
  7651. "Nas unidades atuais."
  7652. #: flatcamGUI/FlatCAMGUI.py:6294
  7653. msgid "Calculators Tool Options"
  7654. msgstr "Opções das Calculadoras"
  7655. #: flatcamGUI/FlatCAMGUI.py:6297
  7656. msgid "<b>V-Shape Tool Calculator:</b>"
  7657. msgstr "<b>Calculadora Ferramenta Ponta-em-V:</b>"
  7658. #: flatcamGUI/FlatCAMGUI.py:6299
  7659. msgid ""
  7660. "Calculate the tool diameter for a given V-shape tool,\n"
  7661. "having the tip diameter, tip angle and\n"
  7662. "depth-of-cut as parameters."
  7663. msgstr ""
  7664. "Calcula o diâmetro equvalente da ferramenta para uma determinada\n"
  7665. "ferramenta em forma de V, com o diâmetro da ponta, o ângulo da ponta e a\n"
  7666. "profundidade de corte como parâmetros."
  7667. #: flatcamGUI/FlatCAMGUI.py:6310 flatcamTools/ToolCalculators.py:92
  7668. msgid "Tip Diameter:"
  7669. msgstr "Diâmetro da Ponta:"
  7670. #: flatcamGUI/FlatCAMGUI.py:6312
  7671. msgid ""
  7672. "This is the tool tip diameter.\n"
  7673. "It is specified by manufacturer."
  7674. msgstr ""
  7675. "Diâmetro da ponta da ferramenta.\n"
  7676. "Especificado pelo fabricante."
  7677. #: flatcamGUI/FlatCAMGUI.py:6320
  7678. msgid "Tip angle:"
  7679. msgstr "Ângulo da Ponta:"
  7680. #: flatcamGUI/FlatCAMGUI.py:6322
  7681. msgid ""
  7682. "This is the angle on the tip of the tool.\n"
  7683. "It is specified by manufacturer."
  7684. msgstr ""
  7685. "Ângulo na ponta da ferramenta.\n"
  7686. "Especificado pelo fabricante."
  7687. #: flatcamGUI/FlatCAMGUI.py:6332
  7688. msgid ""
  7689. "This is depth to cut into material.\n"
  7690. "In the CNCJob object it is the CutZ parameter."
  7691. msgstr ""
  7692. "Profundidade para cortar o material.\n"
  7693. "No objeto CNC, é o parâmetro Profundidade de Corte (z_cut)."
  7694. #: flatcamGUI/FlatCAMGUI.py:6339
  7695. msgid "<b>ElectroPlating Calculator:</b>"
  7696. msgstr "<b>Calculadora ElectroPlating:</b>"
  7697. #: flatcamGUI/FlatCAMGUI.py:6341 flatcamTools/ToolCalculators.py:148
  7698. msgid ""
  7699. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7700. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7701. "chloride."
  7702. msgstr ""
  7703. "Esta calculadora é útil para aqueles que fazem os furos\n"
  7704. "(via/pad/broca) usando um método como tinta grahite ou tinta \n"
  7705. "hipofosfito de cálcio ou cloreto de paládio."
  7706. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamTools/ToolCalculators.py:157
  7707. msgid "Board Length:"
  7708. msgstr "Comprimento da Placa:"
  7709. #: flatcamGUI/FlatCAMGUI.py:6353 flatcamTools/ToolCalculators.py:161
  7710. msgid "This is the board length. In centimeters."
  7711. msgstr "Comprimento da placa, em centímetros."
  7712. #: flatcamGUI/FlatCAMGUI.py:6359 flatcamTools/ToolCalculators.py:163
  7713. msgid "Board Width:"
  7714. msgstr "Largura da Placa:"
  7715. #: flatcamGUI/FlatCAMGUI.py:6361 flatcamTools/ToolCalculators.py:167
  7716. msgid "This is the board width.In centimeters."
  7717. msgstr "Largura da placa, em centímetros."
  7718. #: flatcamGUI/FlatCAMGUI.py:6366 flatcamTools/ToolCalculators.py:169
  7719. msgid "Current Density:"
  7720. msgstr "Densidade de Corrente:"
  7721. #: flatcamGUI/FlatCAMGUI.py:6369 flatcamTools/ToolCalculators.py:173
  7722. msgid ""
  7723. "Current density to pass through the board. \n"
  7724. "In Amps per Square Feet ASF."
  7725. msgstr ""
  7726. "Densidade de corrente para passar pela placa.\n"
  7727. "Em Ampères por Pés Quadrados ASF."
  7728. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamTools/ToolCalculators.py:176
  7729. msgid "Copper Growth:"
  7730. msgstr "Espessura do Cobre:"
  7731. #: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolCalculators.py:180
  7732. msgid ""
  7733. "How thick the copper growth is intended to be.\n"
  7734. "In microns."
  7735. msgstr "Espessura da camada de cobre, em microns."
  7736. #: flatcamGUI/FlatCAMGUI.py:6391
  7737. msgid "Transform Tool Options"
  7738. msgstr "Opções Transformações"
  7739. #: flatcamGUI/FlatCAMGUI.py:6396
  7740. msgid ""
  7741. "Various transformations that can be applied\n"
  7742. "on a FlatCAM object."
  7743. msgstr ""
  7744. "Várias transformações que podem ser aplicadas\n"
  7745. "a um objeto FlatCAM."
  7746. #: flatcamGUI/FlatCAMGUI.py:6406
  7747. msgid "Rotate Angle:"
  7748. msgstr "Ângulo de Giro:"
  7749. #: flatcamGUI/FlatCAMGUI.py:6408
  7750. msgid "Angle for rotation. In degrees."
  7751. msgstr "Ângulo de rotação, em graus."
  7752. #: flatcamGUI/FlatCAMGUI.py:6415
  7753. msgid "Skew_X angle:"
  7754. msgstr "Ângulo de Inclinação X:"
  7755. #: flatcamGUI/FlatCAMGUI.py:6417
  7756. msgid "Angle for Skew/Shear on X axis. In degrees."
  7757. msgstr "Ângulo de inclinação no eixo X, em graus."
  7758. #: flatcamGUI/FlatCAMGUI.py:6424
  7759. msgid "Skew_Y angle:"
  7760. msgstr "Ângulo de Inclinação Y:"
  7761. #: flatcamGUI/FlatCAMGUI.py:6426
  7762. msgid "Angle for Skew/Shear on Y axis. In degrees."
  7763. msgstr "Ângulo de inclinação no eixo X, em graus."
  7764. #: flatcamGUI/FlatCAMGUI.py:6433
  7765. msgid "Scale_X factor:"
  7766. msgstr "Fator de Escala X:"
  7767. #: flatcamGUI/FlatCAMGUI.py:6435
  7768. msgid "Factor for scaling on X axis."
  7769. msgstr "Fator para redimensionamento no eixo X."
  7770. #: flatcamGUI/FlatCAMGUI.py:6442
  7771. msgid "Scale_Y factor:"
  7772. msgstr "Fator de Escala Y:"
  7773. #: flatcamGUI/FlatCAMGUI.py:6444
  7774. msgid "Factor for scaling on Y axis."
  7775. msgstr "Fator para redimensionamento no eixo Y."
  7776. #: flatcamGUI/FlatCAMGUI.py:6452
  7777. msgid ""
  7778. "Scale the selected object(s)\n"
  7779. "using the Scale_X factor for both axis."
  7780. msgstr ""
  7781. "Redimensiona o(s) objeto(s) selecionado(s)\n"
  7782. "usando o Fator de Escala X para ambos os eixos."
  7783. #: flatcamGUI/FlatCAMGUI.py:6460 flatcamTools/ToolTransform.py:210
  7784. msgid ""
  7785. "Scale the selected object(s)\n"
  7786. "using the origin reference when checked,\n"
  7787. "and the center of the biggest bounding box\n"
  7788. "of the selected objects when unchecked."
  7789. msgstr ""
  7790. "Redimensiona o(s) objeto(s) selecionado(s) usando a referência\n"
  7791. "de origem quando marcado, e o centro da maior caixa delimitadora\n"
  7792. "do objeto selecionado quando desmarcado."
  7793. #: flatcamGUI/FlatCAMGUI.py:6469
  7794. msgid "Offset_X val:"
  7795. msgstr "Deslocamento X:"
  7796. #: flatcamGUI/FlatCAMGUI.py:6471
  7797. msgid "Distance to offset on X axis. In current units."
  7798. msgstr "Distância para deslocar no eixo X, nas unidades atuais."
  7799. #: flatcamGUI/FlatCAMGUI.py:6478
  7800. msgid "Offset_Y val:"
  7801. msgstr "Deslocamento Y:"
  7802. #: flatcamGUI/FlatCAMGUI.py:6480
  7803. msgid "Distance to offset on Y axis. In current units."
  7804. msgstr "Distância para deslocar no eixo Y, nas unidades atuais."
  7805. #: flatcamGUI/FlatCAMGUI.py:6486
  7806. msgid "Mirror Reference"
  7807. msgstr "Referência de Espelho"
  7808. #: flatcamGUI/FlatCAMGUI.py:6488 flatcamTools/ToolTransform.py:314
  7809. msgid ""
  7810. "Flip the selected object(s)\n"
  7811. "around the point in Point Entry Field.\n"
  7812. "\n"
  7813. "The point coordinates can be captured by\n"
  7814. "left click on canvas together with pressing\n"
  7815. "SHIFT key. \n"
  7816. "Then click Add button to insert coordinates.\n"
  7817. "Or enter the coords in format (x, y) in the\n"
  7818. "Point Entry field and click Flip on X(Y)"
  7819. msgstr ""
  7820. "Espelha o(s) objeto(s) selecionado(s)\n"
  7821. "em relação às coordenadas abaixo. \n"
  7822. "\n"
  7823. "As coordenadas do ponto podem ser inseridas:\n"
  7824. "- com clique no botão esquerdo junto com a tecla\n"
  7825. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  7826. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  7827. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  7828. #: flatcamGUI/FlatCAMGUI.py:6499
  7829. msgid " Mirror Ref. Point:"
  7830. msgstr "Ponto Ref. Espelho:"
  7831. #: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolTransform.py:327
  7832. msgid ""
  7833. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7834. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7835. "the 'y' in (x, y) will be used when using Flip on Y and"
  7836. msgstr ""
  7837. "Coordenadas no formato (x, y) usadas como referência para espelhamento.\n"
  7838. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  7839. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  7840. #: flatcamGUI/FlatCAMGUI.py:6518
  7841. msgid "SolderPaste Tool Options"
  7842. msgstr "Opções da Ferramenta Pasta de Solda"
  7843. #: flatcamGUI/FlatCAMGUI.py:6523
  7844. msgid ""
  7845. "A tool to create GCode for dispensing\n"
  7846. "solder paste onto a PCB."
  7847. msgstr ""
  7848. "Uma ferramenta para criar G-Code para dispensar pasta\n"
  7849. "de solda em um PCB."
  7850. #: flatcamGUI/FlatCAMGUI.py:6534
  7851. msgid "Diameters of nozzle tools, separated by ','"
  7852. msgstr "Diâmetros dos bicos, separados por ','"
  7853. #: flatcamGUI/FlatCAMGUI.py:6541
  7854. msgid "<b>New Nozzle Dia:</b>"
  7855. msgstr "<b>Diâmetro do Novo Bico:</b>"
  7856. #: flatcamGUI/FlatCAMGUI.py:6543 flatcamTools/ToolSolderPaste.py:103
  7857. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7858. msgstr ""
  7859. "Diâmetro da nova ferramenta Bico para adicionar na tabela de ferramentas"
  7860. #: flatcamGUI/FlatCAMGUI.py:6551 flatcamTools/ToolSolderPaste.py:166
  7861. msgid "Z Dispense Start:"
  7862. msgstr "Altura Inicial:"
  7863. #: flatcamGUI/FlatCAMGUI.py:6553 flatcamTools/ToolSolderPaste.py:168
  7864. msgid "The height (Z) when solder paste dispensing starts."
  7865. msgstr "A altura (Z) que inicia a distribuição de pasta de solda."
  7866. #: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolSolderPaste.py:174
  7867. msgid "Z Dispense:"
  7868. msgstr "Altura para Distribuir:"
  7869. #: flatcamGUI/FlatCAMGUI.py:6562 flatcamTools/ToolSolderPaste.py:176
  7870. msgid "The height (Z) when doing solder paste dispensing."
  7871. msgstr "Altura (Z) para distribuir a pasta de solda."
  7872. #: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolSolderPaste.py:182
  7873. msgid "Z Dispense Stop:"
  7874. msgstr "Altura Final:"
  7875. #: flatcamGUI/FlatCAMGUI.py:6571 flatcamTools/ToolSolderPaste.py:184
  7876. msgid "The height (Z) when solder paste dispensing stops."
  7877. msgstr "Altura (Z) após a distribuição de pasta de solda."
  7878. #: flatcamGUI/FlatCAMGUI.py:6578 flatcamTools/ToolSolderPaste.py:190
  7879. msgid "Z Travel:"
  7880. msgstr "Altura para Deslocamento:"
  7881. #: flatcamGUI/FlatCAMGUI.py:6580 flatcamTools/ToolSolderPaste.py:192
  7882. msgid ""
  7883. "The height (Z) for travel between pads\n"
  7884. "(without dispensing solder paste)."
  7885. msgstr ""
  7886. "Altura (Z) para deslocamento entre pads\n"
  7887. "(sem dispensar pasta de solda)."
  7888. #: flatcamGUI/FlatCAMGUI.py:6588 flatcamTools/ToolSolderPaste.py:199
  7889. msgid "Z Toolchange:"
  7890. msgstr "Altura Troca de Ferram.:"
  7891. #: flatcamGUI/FlatCAMGUI.py:6590 flatcamTools/ToolSolderPaste.py:201
  7892. msgid "The height (Z) for tool (nozzle) change."
  7893. msgstr "Altura (Z) para trocar ferramenta (bico)."
  7894. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamTools/ToolSolderPaste.py:207
  7895. msgid "XY Toolchange:"
  7896. msgstr "XY Troca de Ferra.:"
  7897. #: flatcamGUI/FlatCAMGUI.py:6599 flatcamTools/ToolSolderPaste.py:209
  7898. msgid ""
  7899. "The X,Y location for tool (nozzle) change.\n"
  7900. "The format is (x, y) where x and y are real numbers."
  7901. msgstr ""
  7902. "Posição X,Y para trocar ferramenta (bico).\n"
  7903. "O formato é (x, y) onde x e y são números reais."
  7904. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolSolderPaste.py:216
  7905. msgid "Feedrate X-Y:"
  7906. msgstr "Avanço XY:"
  7907. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolSolderPaste.py:218
  7908. msgid "Feedrate (speed) while moving on the X-Y plane."
  7909. msgstr "Avanço (velocidade) para movimento no plano XY."
  7910. #: flatcamGUI/FlatCAMGUI.py:6616 flatcamTools/ToolSolderPaste.py:224
  7911. msgid "Feedrate Z:"
  7912. msgstr "Avanço Z:"
  7913. #: flatcamGUI/FlatCAMGUI.py:6618 flatcamTools/ToolSolderPaste.py:226
  7914. msgid ""
  7915. "Feedrate (speed) while moving vertically\n"
  7916. "(on Z plane)."
  7917. msgstr ""
  7918. "Avanço (velocidade) para movimento vertical\n"
  7919. "(no plano Z)."
  7920. #: flatcamGUI/FlatCAMGUI.py:6626 flatcamTools/ToolSolderPaste.py:233
  7921. msgid "Feedrate Z Dispense:"
  7922. msgstr "Avanço Z Distribuição:"
  7923. #: flatcamGUI/FlatCAMGUI.py:6628
  7924. msgid ""
  7925. "Feedrate (speed) while moving up vertically\n"
  7926. "to Dispense position (on Z plane)."
  7927. msgstr ""
  7928. "Avanço (velocidade) para subir verticalmente\n"
  7929. "para a posição Dispensar (no plano Z)."
  7930. #: flatcamGUI/FlatCAMGUI.py:6636 flatcamTools/ToolSolderPaste.py:242
  7931. msgid "Spindle Speed FWD:"
  7932. msgstr "Velocidade Spindle FWD:"
  7933. #: flatcamGUI/FlatCAMGUI.py:6638 flatcamTools/ToolSolderPaste.py:244
  7934. msgid ""
  7935. "The dispenser speed while pushing solder paste\n"
  7936. "through the dispenser nozzle."
  7937. msgstr ""
  7938. "A velocidade do dispensador ao empurrar a pasta de solda\n"
  7939. "através do bico do distribuidor."
  7940. #: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolSolderPaste.py:251
  7941. msgid "Dwell FWD:"
  7942. msgstr "Espera FWD:"
  7943. #: flatcamGUI/FlatCAMGUI.py:6648 flatcamTools/ToolSolderPaste.py:253
  7944. msgid "Pause after solder dispensing."
  7945. msgstr "Pausa após a dispensação de solda."
  7946. #: flatcamGUI/FlatCAMGUI.py:6655 flatcamTools/ToolSolderPaste.py:259
  7947. msgid "Spindle Speed REV:"
  7948. msgstr "Velocidade Spindle REV:"
  7949. #: flatcamGUI/FlatCAMGUI.py:6657 flatcamTools/ToolSolderPaste.py:261
  7950. msgid ""
  7951. "The dispenser speed while retracting solder paste\n"
  7952. "through the dispenser nozzle."
  7953. msgstr ""
  7954. "A velocidade do dispensador enquanto retrai a pasta de solda\n"
  7955. "através do bico do dispensador."
  7956. #: flatcamGUI/FlatCAMGUI.py:6665 flatcamTools/ToolSolderPaste.py:268
  7957. msgid "Dwell REV:"
  7958. msgstr "Espera REV:"
  7959. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamTools/ToolSolderPaste.py:270
  7960. msgid ""
  7961. "Pause after solder paste dispenser retracted,\n"
  7962. "to allow pressure equilibrium."
  7963. msgstr ""
  7964. "Pausa após o dispensador de pasta de solda retrair, para permitir o "
  7965. "equilíbrio de pressão."
  7966. #: flatcamGUI/FlatCAMGUI.py:6674 flatcamTools/ToolSolderPaste.py:276
  7967. msgid "PostProcessors:"
  7968. msgstr "Pós-Processador:"
  7969. #: flatcamGUI/FlatCAMGUI.py:6676 flatcamTools/ToolSolderPaste.py:278
  7970. msgid "Files that control the GCode generation."
  7971. msgstr "Arquivos que controlam a geração de G-Code."
  7972. #: flatcamGUI/FlatCAMGUI.py:6706 flatcamGUI/FlatCAMGUI.py:6712
  7973. msgid "Idle."
  7974. msgstr "Ocioso."
  7975. #: flatcamGUI/FlatCAMGUI.py:6736
  7976. msgid "Application started ..."
  7977. msgstr "Aplicativo iniciado ..."
  7978. #: flatcamGUI/FlatCAMGUI.py:6737
  7979. msgid "Hello!"
  7980. msgstr "Olá!"
  7981. #: flatcamGUI/ObjectUI.py:33
  7982. msgid "FlatCAM Object"
  7983. msgstr "Objeto FlatCAM"
  7984. #: flatcamGUI/ObjectUI.py:58
  7985. msgid ""
  7986. "BASIC is suitable for a beginner. Many parameters\n"
  7987. "are hidden from the user in this mode.\n"
  7988. "ADVANCED mode will make available all parameters.\n"
  7989. "\n"
  7990. "To change the application LEVEL, go to:\n"
  7991. "Edit -> Preferences -> General and check:\n"
  7992. "'APP. LEVEL' radio button."
  7993. msgstr ""
  7994. "BÁSICO é adequado para um iniciante. Muitos parâmetros\n"
  7995. " estão ocultos do usuário neste modo.\n"
  7996. "O modo AVANÇADO disponibilizará todos os parâmetros.\n"
  7997. "\n"
  7998. "Para alterar o NÍVEL do aplicativo, vá para:\n"
  7999. "Editar -> Preferências -> Geral e verificar\n"
  8000. "o botão de rádio 'Nível do Aplicativo\"."
  8001. #: flatcamGUI/ObjectUI.py:79
  8002. msgid "<b>Scale:</b>"
  8003. msgstr "<b>Escala:</b>"
  8004. #: flatcamGUI/ObjectUI.py:81
  8005. msgid "Change the size of the object."
  8006. msgstr "Altera o tamanho do objeto."
  8007. #: flatcamGUI/ObjectUI.py:89
  8008. msgid "Factor:"
  8009. msgstr "Fator:"
  8010. #: flatcamGUI/ObjectUI.py:91
  8011. msgid ""
  8012. "Factor by which to multiply\n"
  8013. "geometric features of this object."
  8014. msgstr ""
  8015. "Fator pelo qual multiplicar recursos\n"
  8016. "geométricos deste objeto."
  8017. #: flatcamGUI/ObjectUI.py:102
  8018. msgid "Perform scaling operation."
  8019. msgstr "Realiza a operação de dimensionamento."
  8020. #: flatcamGUI/ObjectUI.py:108
  8021. msgid "<b>Offset:</b>"
  8022. msgstr "<b>Deslocamento:</b>"
  8023. #: flatcamGUI/ObjectUI.py:110
  8024. msgid "Change the position of this object."
  8025. msgstr "Altera a posição deste objeto."
  8026. #: flatcamGUI/ObjectUI.py:117
  8027. msgid "Vector:"
  8028. msgstr "Vetor:"
  8029. #: flatcamGUI/ObjectUI.py:119
  8030. msgid ""
  8031. "Amount by which to move the object\n"
  8032. "in the x and y axes in (x, y) format."
  8033. msgstr ""
  8034. "Quanto mover o objeto\n"
  8035. "nos eixos x e y no formato (x, y)."
  8036. #: flatcamGUI/ObjectUI.py:129
  8037. msgid "Perform the offset operation."
  8038. msgstr "Executa a operação de deslocamento."
  8039. #: flatcamGUI/ObjectUI.py:143
  8040. msgid "Gerber Object"
  8041. msgstr "Objeto Gerber"
  8042. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517
  8043. #: flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1382
  8044. msgid "<b>Name:</b>"
  8045. msgstr "<b>Nome:</b>"
  8046. #: flatcamGUI/ObjectUI.py:203
  8047. msgid ""
  8048. "Toggle the display of the Gerber Apertures Table.\n"
  8049. "When unchecked, it will delete all mark shapes\n"
  8050. "that are drawn on canvas."
  8051. msgstr ""
  8052. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  8053. "Quando desmarcada, serão excluídas todas as formas de marcas\n"
  8054. "desenhadas na tela."
  8055. #: flatcamGUI/ObjectUI.py:214
  8056. msgid "Mark All"
  8057. msgstr "Marcar Todos"
  8058. #: flatcamGUI/ObjectUI.py:216
  8059. msgid ""
  8060. "When checked it will display all the apertures.\n"
  8061. "When unchecked, it will delete all mark shapes\n"
  8062. "that are drawn on canvas."
  8063. msgstr ""
  8064. "Quando marcado, serão mostradas todas as aberturas.\n"
  8065. "Quando desmarcado, serão apagadas todas as formas de marcas\n"
  8066. "desenhadas na tela."
  8067. #: flatcamGUI/ObjectUI.py:244
  8068. msgid "Mark the aperture instances on canvas."
  8069. msgstr "Marque as instâncias de abertura na tela."
  8070. #: flatcamGUI/ObjectUI.py:262
  8071. msgid ""
  8072. "Diameter of the cutting tool.\n"
  8073. "If you want to have an isolation path\n"
  8074. "inside the actual shape of the Gerber\n"
  8075. "feature, use a negative value for\n"
  8076. "this parameter."
  8077. msgstr ""
  8078. "Diâmetro da ferramenta de corte.\n"
  8079. "Se desejar ter um caminho de isolamento\n"
  8080. "dentro da forma atual do recurso Gerber, use um valor negativo para\n"
  8081. "este parâmetro."
  8082. #: flatcamGUI/ObjectUI.py:273
  8083. msgid "Passes:"
  8084. msgstr "Passes:"
  8085. #: flatcamGUI/ObjectUI.py:307
  8086. msgid "Combine"
  8087. msgstr "Combinar"
  8088. #: flatcamGUI/ObjectUI.py:323
  8089. msgid "<b>Generate Isolation Geometry:</b>"
  8090. msgstr "<b>Gerar Geometria de Isolamento:</b>"
  8091. #: flatcamGUI/ObjectUI.py:325
  8092. msgid ""
  8093. "Create a Geometry object with toolpaths to cut \n"
  8094. "isolation outside, inside or on both sides of the\n"
  8095. "object. For a Gerber object outside means outside\n"
  8096. "of the Gerber feature and inside means inside of\n"
  8097. "the Gerber feature, if possible at all. This means\n"
  8098. "that only if the Gerber feature has openings inside, they\n"
  8099. "will be isolated. If what is wanted is to cut isolation\n"
  8100. "inside the actual Gerber feature, use a negative tool\n"
  8101. "diameter above."
  8102. msgstr ""
  8103. "Cria um objeto Geometria com caminhos da ferramenta para cortar a\n"
  8104. "isolação por fora, por dentro ou em ambos os lados do\n"
  8105. "objeto. Para um objeto Gerber externo significa\n"
  8106. "por fora do recurso Gerber e interno significa por dentro do recurso Gerber, "
  8107. "se possível. Isso significa\n"
  8108. "que somente se o recurso Gerber tiver aberturas internas, elas\n"
  8109. "serão isoladas. Se o que é desejado é cortar o isolamento\n"
  8110. "dentro do recurso Gerber, use uma ferramenta negativa\n"
  8111. "diâmetro acima."
  8112. #: flatcamGUI/ObjectUI.py:344
  8113. msgid "FULL Geo"
  8114. msgstr "Geo COMPLETO"
  8115. #: flatcamGUI/ObjectUI.py:346
  8116. msgid ""
  8117. "Create the Geometry Object\n"
  8118. "for isolation routing. It contains both\n"
  8119. "the interiors and exteriors geometry."
  8120. msgstr ""
  8121. "Cria o Objeto de Geometria\n"
  8122. "para o roteamento de isolamento. Contém tanto\n"
  8123. "a geometria do interior quanto a do exterior."
  8124. #: flatcamGUI/ObjectUI.py:355
  8125. msgid "Ext Geo"
  8126. msgstr "Geo Ext"
  8127. #: flatcamGUI/ObjectUI.py:357
  8128. msgid ""
  8129. "Create the Geometry Object\n"
  8130. "for isolation routing containing\n"
  8131. "only the exteriors geometry."
  8132. msgstr ""
  8133. "Cria o Objeto de Geometria\n"
  8134. "para roteamento de isolamento contendo\n"
  8135. "somente a geometria do exterior."
  8136. #: flatcamGUI/ObjectUI.py:364
  8137. msgid "Int Geo"
  8138. msgstr "Geo Int"
  8139. #: flatcamGUI/ObjectUI.py:366
  8140. msgid ""
  8141. "Create the Geometry Object\n"
  8142. "for isolation routing containing\n"
  8143. "only the interiors geometry."
  8144. msgstr ""
  8145. "Cria o Objeto de Geometria\n"
  8146. "para o roteamento de isolamento contendo\n"
  8147. "somente a geometria do interior."
  8148. #: flatcamGUI/ObjectUI.py:384
  8149. msgid "<b>Clear N-copper:</b>"
  8150. msgstr "<b>Limpa N-cobre:</b>"
  8151. #: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240
  8152. msgid ""
  8153. "Create the Geometry Object\n"
  8154. "for non-copper routing."
  8155. msgstr ""
  8156. "Cria o Objeto de Geometria\n"
  8157. "para roteamento sem cobre."
  8158. #: flatcamGUI/ObjectUI.py:400
  8159. msgid "<b>Board cutout:</b>"
  8160. msgstr "<b>Recorte da placa:</b>"
  8161. #: flatcamGUI/ObjectUI.py:408 flatcamTools/ToolCutOut.py:314
  8162. msgid "Cutout Tool"
  8163. msgstr "Ferramenta de Recorte"
  8164. #: flatcamGUI/ObjectUI.py:410
  8165. msgid ""
  8166. "Generate the geometry for\n"
  8167. "the board cutout."
  8168. msgstr "Gera a geometria para o recorte da placa."
  8169. #: flatcamGUI/ObjectUI.py:416
  8170. msgid "<b>Non-copper regions:</b>"
  8171. msgstr "<b>Regiões sem cobre:</b>"
  8172. #: flatcamGUI/ObjectUI.py:418
  8173. msgid ""
  8174. "Create polygons covering the\n"
  8175. "areas without copper on the PCB.\n"
  8176. "Equivalent to the inverse of this\n"
  8177. "object. Can be used to remove all\n"
  8178. "copper from a specified region."
  8179. msgstr ""
  8180. "Criar polígonos cobrindo as\n"
  8181. "áreas sem cobre no PCB.\n"
  8182. "Equivalente ao inverso do\n"
  8183. "objeto. Pode ser usado para remover todo o\n"
  8184. "cobre de uma região especificada."
  8185. #: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474
  8186. msgid "Rounded Geo"
  8187. msgstr "Geo Arredondado"
  8188. #: flatcamGUI/ObjectUI.py:445
  8189. msgid "Resulting geometry will have rounded corners."
  8190. msgstr "A geometria resultante terá cantos arredondados."
  8191. #: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484
  8192. #: flatcamTools/ToolCutOut.py:169 flatcamTools/ToolCutOut.py:189
  8193. #: flatcamTools/ToolCutOut.py:240 flatcamTools/ToolSolderPaste.py:127
  8194. msgid "Generate Geo"
  8195. msgstr "Gerar Geo"
  8196. #: flatcamGUI/ObjectUI.py:456
  8197. msgid ""
  8198. "Create a geometry surrounding the Gerber object.\n"
  8199. "Square shape."
  8200. msgstr ""
  8201. "Crie uma geometria em torno do objeto Gerber.\n"
  8202. "Forma quadrada."
  8203. #: flatcamGUI/ObjectUI.py:486
  8204. msgid "Generate the Geometry object."
  8205. msgstr "Gera o objeto Geometria."
  8206. #: flatcamGUI/ObjectUI.py:497
  8207. msgid "Excellon Object"
  8208. msgstr "Objeto Excellon"
  8209. #: flatcamGUI/ObjectUI.py:508
  8210. msgid "Solid circles."
  8211. msgstr "Círculos preenchidos ou vazados."
  8212. #: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:858
  8213. msgid "<b>Tools Table</b>"
  8214. msgstr "<b>Tabela de Ferramentas</b>"
  8215. #: flatcamGUI/ObjectUI.py:556
  8216. msgid "Drills"
  8217. msgstr "Furos"
  8218. #: flatcamGUI/ObjectUI.py:556
  8219. msgid "Slots"
  8220. msgstr "Fendas"
  8221. #: flatcamGUI/ObjectUI.py:557
  8222. msgid "Offset Z"
  8223. msgstr "Deslocamento Z"
  8224. #: flatcamGUI/ObjectUI.py:561
  8225. msgid ""
  8226. "This is the Tool Number.\n"
  8227. "When ToolChange is checked, on toolchange event this value\n"
  8228. "will be showed as a T1, T2 ... Tn in the Machine Code."
  8229. msgstr ""
  8230. "Número da Ferramenta.\n"
  8231. "Quando Trocar Ferramentas estiver marcado, este valor\n"
  8232. " será mostrado como T1, T2 ... Tn no Código da Máquina."
  8233. #: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:904
  8234. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  8235. msgid ""
  8236. "Tool Diameter. It's value (in current FlatCAM units) \n"
  8237. "is the cut width into the material."
  8238. msgstr ""
  8239. "Diâmetro da Ferramenta. Seu valor (nas unidades FlatCAM atuais)\n"
  8240. "é a largura do corte no material."
  8241. #: flatcamGUI/ObjectUI.py:568
  8242. msgid ""
  8243. "The number of Drill holes. Holes that are drilled with\n"
  8244. "a drill bit."
  8245. msgstr ""
  8246. "Número de Furos\n"
  8247. "Serão perfurados com brocas."
  8248. #: flatcamGUI/ObjectUI.py:571
  8249. msgid ""
  8250. "The number of Slot holes. Holes that are created by\n"
  8251. "milling them with an endmill bit."
  8252. msgstr ""
  8253. "Número de Fendas\n"
  8254. "Serão criadas com fresas."
  8255. #: flatcamGUI/ObjectUI.py:578
  8256. msgid "Toggle display of the drills for the current tool."
  8257. msgstr "Alterna a exibição da ferramenta atual."
  8258. #: flatcamGUI/ObjectUI.py:586
  8259. msgid ""
  8260. "Create a CNC Job object\n"
  8261. "for this drill object."
  8262. msgstr "Cria um objeto de trabalho CNC para a furação."
  8263. #: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1118
  8264. msgid "Tool change"
  8265. msgstr "Troca de ferramentas"
  8266. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1111
  8267. msgid "Tool change Z:"
  8268. msgstr "Altura para a troca:"
  8269. #: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1114
  8270. msgid ""
  8271. "Z-axis position (height) for\n"
  8272. "tool change."
  8273. msgstr "Posição do eixo Z (altura) para a troca de ferramenta."
  8274. #: flatcamGUI/ObjectUI.py:636
  8275. msgid ""
  8276. "Tool height just before starting the work.\n"
  8277. "Delete the value if you don't need this feature."
  8278. msgstr ""
  8279. "Altura da ferramenta antes de iniciar o trabalho.\n"
  8280. "Exclua o valor se você não precisar deste recurso."
  8281. #: flatcamGUI/ObjectUI.py:646
  8282. msgid ""
  8283. "Z-axis position (height) for\n"
  8284. "the last move."
  8285. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  8286. #: flatcamGUI/ObjectUI.py:654
  8287. msgid "Feedrate (Plunge):"
  8288. msgstr "Avanço (Mergulho):"
  8289. #: flatcamGUI/ObjectUI.py:656
  8290. msgid ""
  8291. "Tool speed while drilling\n"
  8292. "(in units per minute).\n"
  8293. "This is for linear move G01."
  8294. msgstr ""
  8295. "Velocidade da ferramenta durante a perfuração\n"
  8296. "(em unidades por minuto).\n"
  8297. "Para movimento linear G01."
  8298. #: flatcamGUI/ObjectUI.py:709
  8299. msgid ""
  8300. "The json file that dictates\n"
  8301. "gcode output."
  8302. msgstr ""
  8303. "O arquivo de pós-processamento (json) que define\n"
  8304. "a saída G-Ccode."
  8305. #: flatcamGUI/ObjectUI.py:741
  8306. msgid ""
  8307. "Select from the Tools Table above\n"
  8308. "the tools you want to include."
  8309. msgstr ""
  8310. "Selecione na Tabela de Ferramentas acima\n"
  8311. "as ferramentas que você deseja incluir."
  8312. #: flatcamGUI/ObjectUI.py:748
  8313. msgid "<b>Type: </b>"
  8314. msgstr "<b>Tipo: </b>"
  8315. #: flatcamGUI/ObjectUI.py:750
  8316. msgid ""
  8317. "Choose what to use for GCode generation:\n"
  8318. "'Drills', 'Slots' or 'Both'.\n"
  8319. "When choosing 'Slots' or 'Both', slots will be\n"
  8320. "converted to a series of drills."
  8321. msgstr ""
  8322. "Escolha o que usar para a geração do G-Code:\n"
  8323. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  8324. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  8325. "convertidas em uma série de brocas."
  8326. #: flatcamGUI/ObjectUI.py:765
  8327. msgid "Create GCode"
  8328. msgstr "Criar G-Code"
  8329. #: flatcamGUI/ObjectUI.py:767
  8330. msgid "Generate the CNC Job."
  8331. msgstr "Gera o arquivo G-Code para o CNC."
  8332. #: flatcamGUI/ObjectUI.py:779
  8333. msgid ""
  8334. "Select from the Tools Table above\n"
  8335. " the hole dias that are to be milled."
  8336. msgstr ""
  8337. "Selecione na Tabela de Ferramentas acima\n"
  8338. "os diâmetros dos furo que serão fresados."
  8339. #: flatcamGUI/ObjectUI.py:786
  8340. msgid "Drills Tool dia:"
  8341. msgstr "Diâmetro da Broca:"
  8342. #: flatcamGUI/ObjectUI.py:793
  8343. msgid "Mill Drills Geo"
  8344. msgstr "Geo Furos"
  8345. #: flatcamGUI/ObjectUI.py:795
  8346. msgid ""
  8347. "Create the Geometry Object\n"
  8348. "for milling DRILLS toolpaths."
  8349. msgstr ""
  8350. "Cria o Objeto Geometria com\n"
  8351. "os caminhos da ferramenta de FUROS."
  8352. #: flatcamGUI/ObjectUI.py:802
  8353. msgid "Slots Tool dia:"
  8354. msgstr "Diâmetro da Fresa:"
  8355. #: flatcamGUI/ObjectUI.py:809
  8356. msgid "Mill Slots Geo"
  8357. msgstr "Geo Fendas"
  8358. #: flatcamGUI/ObjectUI.py:811
  8359. msgid ""
  8360. "Create the Geometry Object\n"
  8361. "for milling SLOTS toolpaths."
  8362. msgstr ""
  8363. "Cria o Objeto Geometria com\n"
  8364. "os caminhos da ferramenta de FENDAS."
  8365. #: flatcamGUI/ObjectUI.py:829
  8366. msgid "Geometry Object"
  8367. msgstr "Objeto Geometria"
  8368. #: flatcamGUI/ObjectUI.py:860
  8369. msgid ""
  8370. "Tools in this Geometry object used for cutting.\n"
  8371. "The 'Offset' entry will set an offset for the cut.\n"
  8372. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8373. "'Type' entry is only informative and it allow to know the \n"
  8374. "intent of using the current tool. \n"
  8375. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8376. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8377. "ball(B), or V-Shaped(V). \n"
  8378. "When V-shaped is selected the 'Type' entry is automatically \n"
  8379. "set to Isolation, the CutZ parameter in the UI form is\n"
  8380. "grayed out and Cut Z is automatically calculated from the newly \n"
  8381. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8382. msgstr ""
  8383. "Ferramentas neste objeto Geometria usados para o corte.\n"
  8384. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  8385. "'Deslocamento' pode estar dentro, fora, no caminho (none) e personalizado. A "
  8386. "entrada\n"
  8387. "'Tipo' é somente informativo e permite conhecer a necessidade de usar a "
  8388. "ferramenta atual.\n"
  8389. "Pode ser Desbaste, Acabamento ou Isolamento.\n"
  8390. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  8391. "bola (B) ou Em Forma de V (V).\n"
  8392. "Quando forma em V é selecionada, a entrada 'Tipo' é automaticamente\n"
  8393. "conectada ao Isolamento, o parâmetro CorteZ no formulário da interface do "
  8394. "usuário é\n"
  8395. "desabilitado e o Corte Z é calculado automaticamente a partir das entradas "
  8396. "do formulário da interface do usuário\n"
  8397. "e do Ângulo da Ponta-V."
  8398. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  8399. msgid "Dia"
  8400. msgstr "Dia"
  8401. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  8402. msgid "TT"
  8403. msgstr "TF"
  8404. #: flatcamGUI/ObjectUI.py:898
  8405. msgid ""
  8406. "This is the Tool Number.\n"
  8407. "When ToolChange is checked, on toolchange event this value\n"
  8408. "will be showed as a T1, T2 ... Tn"
  8409. msgstr ""
  8410. "Número da Ferramenta.\n"
  8411. "Quando Trocar Ferramentas estiver marcado, no evento este valor\n"
  8412. " será mostrado como T1, T2 ... Tn"
  8413. #: flatcamGUI/ObjectUI.py:909
  8414. msgid ""
  8415. "The value for the Offset can be:\n"
  8416. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8417. "line.\n"
  8418. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8419. "'pocket'.\n"
  8420. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8421. msgstr ""
  8422. "O valor para o Deslocamento pode ser:\n"
  8423. "- Caminho -> Não há deslocamento, o corte da ferramenta será feito através "
  8424. "da linha da geometria.\n"
  8425. "- In(terno) -> O corte da ferramenta seguirá a geometria interna. Ele criará "
  8426. "um 'pocket'.\n"
  8427. "- Ex(terno) -> O corte da ferramenta seguirá a linha da geometria no lado "
  8428. "externo."
  8429. #: flatcamGUI/ObjectUI.py:916
  8430. msgid ""
  8431. "The (Operation) Type has only informative value. Usually the UI form "
  8432. "values \n"
  8433. "are choosed based on the operation type and this will serve as a reminder.\n"
  8434. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8435. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8436. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8437. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8438. "tip."
  8439. msgstr ""
  8440. "O tipo (operação) tem apenas valor informativo. Normalmente, os valores do "
  8441. "formulário da interface do usuário\n"
  8442. "são escolhidos com base no tipo de operação e isso servirá como um "
  8443. "lembrete.\n"
  8444. "Pode ser 'Desbaste', 'Acabamento' ou 'Isolamento'.\n"
  8445. "Para desbaste, podemos escolher uma taxa de Avanço inferior e corte de "
  8446. "múltiplas profundidades.\n"
  8447. "Para Acabamento, podemos escolher uma taxa de avanço mais alta, sem multi-"
  8448. "profundidade.\n"
  8449. "Para Isolamento, precisamos de uma velocidade de avanço menor, pois é usada "
  8450. "uma broca com ponta fina."
  8451. #: flatcamGUI/ObjectUI.py:925
  8452. msgid ""
  8453. "The Tool Type (TT) can be:\n"
  8454. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8455. "cut width in material\n"
  8456. "is exactly the tool diameter.\n"
  8457. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8458. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8459. "two additional UI form\n"
  8460. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8461. "the Z-Cut parameter such\n"
  8462. "as the cut width into material will be equal with the value in the Tool "
  8463. "Diameter column of this table.\n"
  8464. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8465. "as Isolation."
  8466. msgstr ""
  8467. "O Tipo de Ferramenta (TF) pode ser:\n"
  8468. "- Circular com 1 ... 4 dentes -> apenas informativo. Sendo circular a "
  8469. "largura de corte no material\n"
  8470. " é exatamente o diâmetro da ferramenta.\n"
  8471. "- Bola -> apenas informativo e faz referência à fresa tipo Ball.\n"
  8472. "- Em Forma de V -> o parâmetro Corte Z no formulário de interface do usuário "
  8473. "será desabilitado e dois campos adicionais\n"
  8474. " no formulário UI serão habilitados: Diâmetro Ângulo Ponta-V e Ângulo Ponta-"
  8475. "V. O ajuste desses dois valores ajustará o parâmetro Corte Z, como\n"
  8476. "a largura do corte no material será igual ao valor da coluna Diâmetro da "
  8477. "ferramenta dessa tabela.\n"
  8478. "Escolher o tipo de ferramenta Em Forma de V automaticamente selecionará o "
  8479. "tipo de operação como isolamento."
  8480. #: flatcamGUI/ObjectUI.py:936
  8481. msgid ""
  8482. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8483. "that holds the geometry\n"
  8484. "data into the tools. For those geometries, deleting the tool will delete the "
  8485. "geometry data also,\n"
  8486. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8487. "plot on canvas\n"
  8488. "for the corresponding tool."
  8489. msgstr ""
  8490. "Coluna de plotagem. É visível apenas para geometrias MultiGeo, ou seja, "
  8491. "geometrias que contêm os dados da geometria\n"
  8492. "das ferramentas. Para essas geometrias, a exclusão da ferramenta também "
  8493. "excluirá os dados da geometria,\n"
  8494. "assim, esteja ATENTO. Nas caixas de seleção de cada linha, pode ser ativado/"
  8495. "desativado o gráfico na tela\n"
  8496. "para a ferramenta correspondente."
  8497. #: flatcamGUI/ObjectUI.py:949
  8498. msgid "Tool Offset:"
  8499. msgstr "Deslocamento:"
  8500. #: flatcamGUI/ObjectUI.py:952
  8501. msgid ""
  8502. "The value to offset the cut when \n"
  8503. "the Offset type selected is 'Offset'.\n"
  8504. "The value can be positive for 'outside'\n"
  8505. "cut and negative for 'inside' cut."
  8506. msgstr ""
  8507. "O valor para compensar o corte quando\n"
  8508. "o tipo selecionado for 'Deslocamento'.\n"
  8509. "O valor pode ser positivo para corte 'por fora'\n"
  8510. "e negativo para corte 'por dentro'."
  8511. #: flatcamGUI/ObjectUI.py:975
  8512. msgid "<b>Tool Dia:</b>"
  8513. msgstr "<b>Dia Ferramenta:</b>"
  8514. #: flatcamGUI/ObjectUI.py:994 flatcamTools/ToolNonCopperClear.py:136
  8515. #: flatcamTools/ToolPaint.py:133
  8516. msgid ""
  8517. "Add a new tool to the Tool Table\n"
  8518. "with the diameter specified above."
  8519. msgstr ""
  8520. "Adicione uma nova ferramenta à Tabela de Ferramentas\n"
  8521. "com o diâmetro especificado."
  8522. #: flatcamGUI/ObjectUI.py:1002
  8523. msgid ""
  8524. "Copy a selection of tools in the Tool Table\n"
  8525. "by first selecting a row in the Tool Table."
  8526. msgstr ""
  8527. "Copia uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  8528. "primeiro uma linha na Tabela de Ferramentas."
  8529. #: flatcamGUI/ObjectUI.py:1010
  8530. msgid ""
  8531. "Delete a selection of tools in the Tool Table\n"
  8532. "by first selecting a row in the Tool Table."
  8533. msgstr ""
  8534. "Apaga uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  8535. "primeiro uma linha na Tabela de Ferramentas."
  8536. #: flatcamGUI/ObjectUI.py:1026
  8537. msgid "<b>Tool Data</b>"
  8538. msgstr "<b>Dados da Ferramenta</b>"
  8539. #: flatcamGUI/ObjectUI.py:1029
  8540. msgid ""
  8541. "The data used for creating GCode.\n"
  8542. "Each tool store it's own set of such data."
  8543. msgstr ""
  8544. "Os dados usados para criar o G-Code.\n"
  8545. "Cada loja de ferramentas possui seu próprio conjunto de dados."
  8546. #: flatcamGUI/ObjectUI.py:1039
  8547. msgid "V-Tip Dia:"
  8548. msgstr "Diâmetro Ponta-V:"
  8549. #: flatcamGUI/ObjectUI.py:1042
  8550. msgid "The tip diameter for V-Shape Tool"
  8551. msgstr "O diâmetro da ponta da ferramenta em forma de V"
  8552. #: flatcamGUI/ObjectUI.py:1050
  8553. msgid "V-Tip Angle:"
  8554. msgstr "Ângulo Ponta-V:"
  8555. #: flatcamGUI/ObjectUI.py:1053
  8556. msgid ""
  8557. "The tip angle for V-Shape Tool.\n"
  8558. "In degree."
  8559. msgstr "O ângulo da ponta da ferramenta em forma de V, em graus."
  8560. #: flatcamGUI/ObjectUI.py:1074
  8561. msgid "Multi-Depth:"
  8562. msgstr "Multi-Profundidade:"
  8563. #: flatcamGUI/ObjectUI.py:1077
  8564. msgid ""
  8565. "Use multiple passes to limit\n"
  8566. "the cut depth in each pass. Will\n"
  8567. "cut multiple times until Cut Z is\n"
  8568. "reached.\n"
  8569. "To the right, input the depth of \n"
  8570. "each pass (positive value)."
  8571. msgstr ""
  8572. "Usa vários passes para limitar a profundidade de corte em cada passagem. "
  8573. "Será\n"
  8574. "cortado várias vezes até que o Corte Z seja atingido.\n"
  8575. "Para a direita, insira a profundidade de cada passe (valor positivo)."
  8576. #: flatcamGUI/ObjectUI.py:1090
  8577. msgid "Depth of each pass (positive)."
  8578. msgstr "Profundidade de cada passe (positivo)."
  8579. #: flatcamGUI/ObjectUI.py:1121
  8580. msgid ""
  8581. "Include tool-change sequence\n"
  8582. "in the Machine Code (Pause for tool change)."
  8583. msgstr ""
  8584. "Inclua a sequência de troca de ferramentas\n"
  8585. "no Código da Máquina (Pausa para troca de ferramentas)."
  8586. #: flatcamGUI/ObjectUI.py:1147
  8587. msgid ""
  8588. "This is the height (Z) at which the CNC\n"
  8589. "will go as the last move."
  8590. msgstr ""
  8591. "Esta é a altura (Z) em que o CNC\n"
  8592. "vai após o último movimento."
  8593. #: flatcamGUI/ObjectUI.py:1168
  8594. msgid "Feed Rate Z (Plunge):"
  8595. msgstr "Taxa de Avanço Z (Mergulho):"
  8596. #: flatcamGUI/ObjectUI.py:1171
  8597. msgid ""
  8598. "Cutting speed in the Z\n"
  8599. "plane in units per minute"
  8600. msgstr ""
  8601. "Velocidade de corte no plano Z\n"
  8602. "em unidades por minuto"
  8603. #: flatcamGUI/ObjectUI.py:1180
  8604. msgid "Feed Rate Rapids:"
  8605. msgstr "Taxa de Avanço Rápido:"
  8606. #: flatcamGUI/ObjectUI.py:1183
  8607. msgid ""
  8608. "Cutting speed in the XY\n"
  8609. "plane in units per minute\n"
  8610. "(in units per minute).\n"
  8611. "This is for the rapid move G00.\n"
  8612. "It is useful only for Marlin,\n"
  8613. "ignore for any other cases."
  8614. msgstr ""
  8615. "Velocidade de corte no plano XY\n"
  8616. "em unidades por minuto\n"
  8617. "Usado para o movimento rápido G00.\n"
  8618. "É útil apenas para Marlin,\n"
  8619. "ignore para outros casos."
  8620. #: flatcamGUI/ObjectUI.py:1199
  8621. msgid "Cut over 1st pt"
  8622. msgstr "Cut over 1st pt"
  8623. #: flatcamGUI/ObjectUI.py:1214
  8624. msgid ""
  8625. "Speed of the spindle in RPM (optional).\n"
  8626. "If LASER postprocessor is used,\n"
  8627. "this value is the power of laser."
  8628. msgstr ""
  8629. "Velocidade do spindle em RPM (opcional).\n"
  8630. "Se o pós-processador LASER é usado,\n"
  8631. "este valor é a potência do laser."
  8632. #: flatcamGUI/ObjectUI.py:1243
  8633. msgid "PostProcessor:"
  8634. msgstr "Pós-processador:"
  8635. #: flatcamGUI/ObjectUI.py:1246
  8636. msgid ""
  8637. "The Postprocessor file that dictates\n"
  8638. "the Machine Code (like GCode, RML, HPGL) output."
  8639. msgstr ""
  8640. "O arquivo Pós-processador determina a saída\n"
  8641. "de código da máquina (como G-Code, RML, HPGL)."
  8642. #: flatcamGUI/ObjectUI.py:1284
  8643. msgid ""
  8644. "Add at least one tool in the tool-table.\n"
  8645. "Click the header to select all, or Ctrl + LMB\n"
  8646. "for custom selection of tools."
  8647. msgstr ""
  8648. "Adicione pelo menos uma ferramenta na tabela de ferramentas.\n"
  8649. "Clique no cabeçalho para selecionar todos ou Ctrl + Botão Esquerdo do Mouse\n"
  8650. "para seleção personalizada de ferramentas."
  8651. #: flatcamGUI/ObjectUI.py:1291
  8652. msgid "Generate"
  8653. msgstr "Gerar"
  8654. #: flatcamGUI/ObjectUI.py:1294
  8655. msgid "Generate the CNC Job object."
  8656. msgstr "Gera o objeto de Trabalho CNC."
  8657. #: flatcamGUI/ObjectUI.py:1302
  8658. msgid "<b>Paint Area:</b>"
  8659. msgstr "<b>Área de Pintura:</b>"
  8660. #: flatcamGUI/ObjectUI.py:1317
  8661. msgid "Launch Paint Tool in Tools Tab."
  8662. msgstr "Inicia a ferramenta de pintura na guia Ferramentas."
  8663. #: flatcamGUI/ObjectUI.py:1334
  8664. msgid "CNC Job Object"
  8665. msgstr "Objeto de Trabalho CNC"
  8666. #: flatcamGUI/ObjectUI.py:1353
  8667. msgid "<b>Plot kind:</b>"
  8668. msgstr "<b>Tipo de Gráfico:</b>"
  8669. #: flatcamGUI/ObjectUI.py:1369
  8670. msgid "<b>Display Annotation:</b>"
  8671. msgstr "<b>Exibir Anotação:</b>"
  8672. #: flatcamGUI/ObjectUI.py:1388
  8673. msgid "<b>Travelled dist.:</b>"
  8674. msgstr "<b>Dist. percorrida:</b>"
  8675. #: flatcamGUI/ObjectUI.py:1391 flatcamGUI/ObjectUI.py:1398
  8676. msgid ""
  8677. "This is the total travelled distance on X-Y plane.\n"
  8678. "In current units."
  8679. msgstr ""
  8680. "Essa é a distância total percorrida no plano XY,\n"
  8681. "nas unidades atuais."
  8682. #: flatcamGUI/ObjectUI.py:1429
  8683. msgid "<b>CNC Tools Table</b>"
  8684. msgstr "<b>Tabela de Ferramentas CNC</b>"
  8685. #: flatcamGUI/ObjectUI.py:1432
  8686. msgid ""
  8687. "Tools in this CNCJob object used for cutting.\n"
  8688. "The tool diameter is used for plotting on canvas.\n"
  8689. "The 'Offset' entry will set an offset for the cut.\n"
  8690. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8691. "'Type' entry is only informative and it allow to know the \n"
  8692. "intent of using the current tool. \n"
  8693. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8694. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8695. "ball(B), or V-Shaped(V)."
  8696. msgstr ""
  8697. "Ferramentas usadas para o corte no Trabalho CNC.\n"
  8698. "O diâmetro da ferramenta é usado para plotagem na tela.\n"
  8699. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  8700. "'Deslocamento' pode estar dentro, fora, no caminho (nenhum) e personalizado. "
  8701. "A entrada\n"
  8702. "'Tipo' é apenas informativa e permite conhecer a necessidade de usar a "
  8703. "ferramenta atual.\n"
  8704. "Pode ser Desbaste, Acabamento ou Isolamento.\n"
  8705. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  8706. "bola (B) ou Em forma de V (V)."
  8707. #: flatcamGUI/ObjectUI.py:1466
  8708. msgid "P"
  8709. msgstr "P"
  8710. #: flatcamGUI/ObjectUI.py:1472
  8711. msgid "Update Plot"
  8712. msgstr "Atualizar Gráfico"
  8713. #: flatcamGUI/ObjectUI.py:1474
  8714. msgid "Update the plot."
  8715. msgstr "Atualiza o gráfico."
  8716. #: flatcamGUI/ObjectUI.py:1481
  8717. msgid "<b>Export CNC Code:</b>"
  8718. msgstr "<b>Exportar Código CNC:</b>"
  8719. #: flatcamGUI/ObjectUI.py:1489
  8720. msgid "Prepend to CNC Code:"
  8721. msgstr "Incluir no Início do Código CNC:"
  8722. #: flatcamGUI/ObjectUI.py:1492
  8723. msgid ""
  8724. "Type here any G-Code commands you would\n"
  8725. "like to add to the beginning of the generated file."
  8726. msgstr ""
  8727. "Digite aqui comandos G-Code que você gostaria de adicionar ao início do "
  8728. "arquivo gerado."
  8729. #: flatcamGUI/ObjectUI.py:1502
  8730. msgid "Append to CNC Code:"
  8731. msgstr "Incluir no Final do Código CNC:"
  8732. #: flatcamGUI/ObjectUI.py:1526
  8733. msgid ""
  8734. "Type here any G-Code commands you would\n"
  8735. "like to be executed when Toolchange event is encountered.\n"
  8736. "This will constitute a Custom Toolchange GCode,\n"
  8737. "or a Toolchange Macro.\n"
  8738. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8739. "\n"
  8740. "WARNING: it can be used only with a postprocessor file\n"
  8741. "that has 'toolchange_custom' in it's name and this is built\n"
  8742. "having as template the 'Toolchange Custom' posprocessor file."
  8743. msgstr ""
  8744. "Digite aqui os comandos do G-Code G que você gostaria de executar quando o "
  8745. "evento do Troca de Ferramentas for encontrado.\n"
  8746. "Ele será um G-Code personalizado para Troca de Ferramentas,\n"
  8747. "ou uma Macro.\n"
  8748. "As variáveis do FlatCAM são circundadas pelo símbolo '%'.\n"
  8749. "\n"
  8750. "ATENÇÃO: pode ser usado apenas com um arquivo de pós-processador\n"
  8751. "que tenha 'toolchange_custom' em seu nome e este é construído tendo\n"
  8752. "como modelo o arquivo do posprocessador 'Customização da troca de "
  8753. "ferramentas'."
  8754. #: flatcamGUI/ObjectUI.py:1574
  8755. msgid "z_cut = depth where to cut"
  8756. msgstr "z_cut = profundidade onde cortar"
  8757. #: flatcamGUI/ObjectUI.py:1575
  8758. msgid "z_move = height where to travel"
  8759. msgstr "z_move = altura para deslocamentos"
  8760. #: flatcamGUI/ObjectUI.py:1593
  8761. msgid "View CNC Code"
  8762. msgstr "Ver Código CNC"
  8763. #: flatcamGUI/ObjectUI.py:1596
  8764. msgid ""
  8765. "Opens TAB to view/modify/print G-Code\n"
  8766. "file."
  8767. msgstr "Abre uma ABA para visualizar/modificar/imprimir o arquivo G-Code."
  8768. #: flatcamGUI/ObjectUI.py:1602
  8769. msgid "Save CNC Code"
  8770. msgstr "Salvar Código CNC"
  8771. #: flatcamGUI/ObjectUI.py:1605
  8772. msgid ""
  8773. "Opens dialog to save G-Code\n"
  8774. "file."
  8775. msgstr "Abre o diálogo para salvar o arquivo G-Code."
  8776. #: flatcamTools/ToolCalculators.py:24
  8777. msgid "Calculators"
  8778. msgstr "Calculadoras"
  8779. #: flatcamTools/ToolCalculators.py:25
  8780. msgid "V-Shape Tool Calculator"
  8781. msgstr "Calculadora Ferramenta Ponta-em-V"
  8782. #: flatcamTools/ToolCalculators.py:26
  8783. msgid "Units Calculator"
  8784. msgstr "Calculadora de Unidades"
  8785. #: flatcamTools/ToolCalculators.py:27
  8786. msgid "ElectroPlating Calculator"
  8787. msgstr "Calculadora Eletrolítica"
  8788. #: flatcamTools/ToolCalculators.py:68
  8789. msgid "Here you enter the value to be converted from INCH to MM"
  8790. msgstr "Aqui você insere o valor a ser convertido de polegadas para mm"
  8791. #: flatcamTools/ToolCalculators.py:73
  8792. msgid "Here you enter the value to be converted from MM to INCH"
  8793. msgstr "Aqui você insere o valor a ser convertido de mm para polegadas"
  8794. #: flatcamTools/ToolCalculators.py:96
  8795. msgid ""
  8796. "This is the diameter of the tool tip.\n"
  8797. "The manufacturer specifies it."
  8798. msgstr ""
  8799. "Diâmetro da ponta da ferramenta.\n"
  8800. "Especificado pelo fabricante."
  8801. #: flatcamTools/ToolCalculators.py:99
  8802. msgid "Tip Angle:"
  8803. msgstr "Ângulo da Ponta:"
  8804. #: flatcamTools/ToolCalculators.py:103
  8805. msgid ""
  8806. "This is the angle of the tip of the tool.\n"
  8807. "It is specified by manufacturer."
  8808. msgstr ""
  8809. "Ângulo da ponta da ferramenta.\n"
  8810. "Especificado pelo fabricante."
  8811. #: flatcamTools/ToolCalculators.py:110
  8812. msgid ""
  8813. "This is the depth to cut into the material.\n"
  8814. "In the CNCJob is the CutZ parameter."
  8815. msgstr ""
  8816. "Esta é a profundidade para cortar material.\n"
  8817. "No Trabalho CNC é o parâmetro Corte Z."
  8818. #: flatcamTools/ToolCalculators.py:113
  8819. msgid "Tool Diameter:"
  8820. msgstr "Diâmetro da ferramenta:"
  8821. #: flatcamTools/ToolCalculators.py:117
  8822. msgid ""
  8823. "This is the tool diameter to be entered into\n"
  8824. "FlatCAM Gerber section.\n"
  8825. "In the CNCJob section it is called >Tool dia<."
  8826. msgstr ""
  8827. "Este é o diâmetro da ferramenta a ser inserido na seção\n"
  8828. "FlatCAM Gerber.\n"
  8829. "Na seção Trabalho CNC é chamado de Diâmetro da Ferramenta."
  8830. #: flatcamTools/ToolCalculators.py:128 flatcamTools/ToolCalculators.py:209
  8831. msgid "Calculate"
  8832. msgstr "Calcular"
  8833. #: flatcamTools/ToolCalculators.py:131
  8834. msgid ""
  8835. "Calculate either the Cut Z or the effective tool diameter,\n"
  8836. " depending on which is desired and which is known. "
  8837. msgstr ""
  8838. "Calcule o Corte Z ou o diâmetro efetivo da ferramenta, dependendo do que é "
  8839. "desejado e do que é conhecido."
  8840. #: flatcamTools/ToolCalculators.py:185
  8841. msgid "Current Value:"
  8842. msgstr "Valor da Corrente:"
  8843. #: flatcamTools/ToolCalculators.py:189
  8844. msgid ""
  8845. "This is the current intensity value\n"
  8846. "to be set on the Power Supply. In Amps."
  8847. msgstr ""
  8848. "Este é o valor de intensidade de corrente\n"
  8849. "a ser ajustado na fonte de alimentação. Em Ampères."
  8850. #: flatcamTools/ToolCalculators.py:193
  8851. msgid "Time:"
  8852. msgstr "Tempo:"
  8853. #: flatcamTools/ToolCalculators.py:197
  8854. msgid ""
  8855. "This is the calculated time required for the procedure.\n"
  8856. "In minutes."
  8857. msgstr "Tempo calculado necessário para o procedimento, em minutos."
  8858. #: flatcamTools/ToolCalculators.py:212
  8859. msgid ""
  8860. "Calculate the current intensity value and the procedure time,\n"
  8861. "depending on the parameters above"
  8862. msgstr "Calcula o valor da intensidade atual e o tempo do\n"
  8863. "procedimento, dependendo dos parâmetros acima"
  8864. #: flatcamTools/ToolCalculators.py:256
  8865. msgid "Calc. Tool"
  8866. msgstr "Calculadoras"
  8867. #: flatcamTools/ToolCutOut.py:18
  8868. msgid "Cutout PCB"
  8869. msgstr "Recorte PCB"
  8870. #: flatcamTools/ToolCutOut.py:54
  8871. msgid "Obj Type:"
  8872. msgstr "Tipo de Objeto:"
  8873. #: flatcamTools/ToolCutOut.py:56
  8874. msgid ""
  8875. "Specify the type of object to be cutout.\n"
  8876. "It can be of type: Gerber or Geometry.\n"
  8877. "What is selected here will dictate the kind\n"
  8878. "of objects that will populate the 'Object' combobox."
  8879. msgstr ""
  8880. "Especifica o tipo de objeto a ser cortado.\n"
  8881. "Pode ser do tipo: Gerber ou Geometria.\n"
  8882. "O que estiver selecionado aqui irá ditar o tipo\n"
  8883. "de objetos que preencherão a caixa de combinação 'Objeto'."
  8884. #: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolPanelize.py:71
  8885. msgid "Object:"
  8886. msgstr "Objeto:"
  8887. #: flatcamTools/ToolCutOut.py:72
  8888. msgid "Object to be cutout. "
  8889. msgstr "Objeto a ser recortado."
  8890. #: flatcamTools/ToolCutOut.py:80
  8891. msgid ""
  8892. "Diameter of the tool used to cutout\n"
  8893. "the PCB shape out of the surrounding material."
  8894. msgstr "Diâmetro da ferramenta usada para cortar o entorno do PCB."
  8895. #: flatcamTools/ToolCutOut.py:89
  8896. msgid ""
  8897. "Margin over bounds. A positive value here\n"
  8898. "will make the cutout of the PCB further from\n"
  8899. "the actual PCB border"
  8900. msgstr ""
  8901. "Margem além das bordas. Um valor positivo\n"
  8902. "tornará o recorte do PCB mais longe da borda da PCB"
  8903. #: flatcamTools/ToolCutOut.py:99
  8904. msgid ""
  8905. "The size of the bridge gaps in the cutout\n"
  8906. "used to keep the board connected to\n"
  8907. "the surrounding material (the one \n"
  8908. "from which the PCB is cutout)."
  8909. msgstr ""
  8910. "Tamanho das pontes no recorte, utilizadas\n"
  8911. "para manter a placa conectada ao material\n"
  8912. "circundante (de onde o PCB é recortado)."
  8913. #: flatcamTools/ToolCutOut.py:118
  8914. msgid ""
  8915. "Create a convex shape surrounding the entire PCB.\n"
  8916. "Used only if the source object type is Gerber."
  8917. msgstr ""
  8918. "Cria uma forma convexa ao redor de toda a PCB.\n"
  8919. "Utilize somente se o tipo de objeto de origem for Gerber."
  8920. #: flatcamTools/ToolCutOut.py:124
  8921. msgid "A. Automatic Bridge Gaps"
  8922. msgstr "A. Pontes Automáticas"
  8923. #: flatcamTools/ToolCutOut.py:126
  8924. msgid "This section handle creation of automatic bridge gaps."
  8925. msgstr "Esta seção trata da criação de pontes automáticas."
  8926. #: flatcamTools/ToolCutOut.py:137
  8927. msgid ""
  8928. "Number of gaps used for the Automatic cutout.\n"
  8929. "There can be maximum 8 bridges/gaps.\n"
  8930. "The choices are:\n"
  8931. "- lr - left + right\n"
  8932. "- tb - top + bottom\n"
  8933. "- 4 - left + right +top + bottom\n"
  8934. "- 2lr - 2*left + 2*right\n"
  8935. "- 2tb - 2*top + 2*bottom\n"
  8936. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8937. msgstr ""
  8938. "Número de pontes utilizadas no recorte automático.\n"
  8939. "Pode haver um máximo de 8 pontes/lacunas.\n"
  8940. "As opções são:\n"
  8941. "- LR - esquerda + direita\n"
  8942. "- TB - topo + baixo\n"
  8943. "- 4 - esquerda + direita + topo + baixo\n"
  8944. "- 2LR - 2*esquerda + 2*direita\n"
  8945. "- 2TB - 2*topo + 2*baixo\n"
  8946. "- 8 - 2*esquerda + 2*direita + 2*topo + 2*baixo"
  8947. #: flatcamTools/ToolCutOut.py:160
  8948. msgid "FreeForm:"
  8949. msgstr "Forma Livre:"
  8950. #: flatcamTools/ToolCutOut.py:162
  8951. msgid ""
  8952. "The cutout shape can be of ny shape.\n"
  8953. "Useful when the PCB has a non-rectangular shape."
  8954. msgstr ""
  8955. "O recorte pode ter qualquer forma.\n"
  8956. "Útil quando o PCB tem uma forma não retangular."
  8957. #: flatcamTools/ToolCutOut.py:171
  8958. msgid ""
  8959. "Cutout the selected object.\n"
  8960. "The cutout shape can be of any shape.\n"
  8961. "Useful when the PCB has a non-rectangular shape."
  8962. msgstr ""
  8963. "Recorta o objeto selecionado.\n"
  8964. "O recorte pode ter qualquer forma.\n"
  8965. "Útil quando o PCB tem uma forma não retangular."
  8966. #: flatcamTools/ToolCutOut.py:180
  8967. msgid "Rectangular:"
  8968. msgstr "Retangular:"
  8969. #: flatcamTools/ToolCutOut.py:182
  8970. msgid ""
  8971. "The resulting cutout shape is\n"
  8972. "always a rectangle shape and it will be\n"
  8973. "the bounding box of the Object."
  8974. msgstr ""
  8975. "O recorte resultante é\n"
  8976. "sempre em forma de retângulo e será\n"
  8977. "a caixa delimitadora do objeto."
  8978. #: flatcamTools/ToolCutOut.py:191
  8979. msgid ""
  8980. "Cutout the selected object.\n"
  8981. "The resulting cutout shape is\n"
  8982. "always a rectangle shape and it will be\n"
  8983. "the bounding box of the Object."
  8984. msgstr ""
  8985. "Recorta o objeto selecionado.\n"
  8986. "O recorte resultante é\n"
  8987. "sempre em forma de retângulo e será\n"
  8988. "a caixa delimitadora do objeto."
  8989. #: flatcamTools/ToolCutOut.py:199
  8990. msgid "B. Manual Bridge Gaps"
  8991. msgstr "B. Pontes Manuais"
  8992. #: flatcamTools/ToolCutOut.py:201
  8993. msgid ""
  8994. "This section handle creation of manual bridge gaps.\n"
  8995. "This is done by mouse clicking on the perimeter of the\n"
  8996. "Geometry object that is used as a cutout object. "
  8997. msgstr ""
  8998. "Esta seção trata da criação de pontes manuais.\n"
  8999. "Isso é feito clicando com o mouse no perímetro do objeto\n"
  9000. "de Geometria que é usado como objeto de recorte."
  9001. #: flatcamTools/ToolCutOut.py:217
  9002. msgid "Geo Obj:"
  9003. msgstr "Obj Geo:"
  9004. #: flatcamTools/ToolCutOut.py:219
  9005. msgid "Geometry object used to create the manual cutout."
  9006. msgstr "Objeto de geometria usado para criar o recorte manual."
  9007. #: flatcamTools/ToolCutOut.py:230
  9008. msgid "Manual Geo:"
  9009. msgstr "Geo Manual:"
  9010. #: flatcamTools/ToolCutOut.py:232 flatcamTools/ToolCutOut.py:242
  9011. msgid ""
  9012. "If the object to be cutout is a Gerber\n"
  9013. "first create a Geometry that surrounds it,\n"
  9014. "to be used as the cutout, if one doesn't exist yet.\n"
  9015. "Select the source Gerber file in the top object combobox."
  9016. msgstr ""
  9017. "Se o objeto a ser recortado for um Gerber\n"
  9018. "primeiro crie uma Geometria que o rodeia,\n"
  9019. "para ser usado como recorte, caso ainda não exista.\n"
  9020. "Selecione o arquivo Gerber de origem na combobox do objeto."
  9021. #: flatcamTools/ToolCutOut.py:252
  9022. msgid "Manual Add Bridge Gaps:"
  9023. msgstr "Adicionar Pontes Manuais:"
  9024. #: flatcamTools/ToolCutOut.py:254
  9025. msgid ""
  9026. "Use the left mouse button (LMB) click\n"
  9027. "to create a bridge gap to separate the PCB from\n"
  9028. "the surrounding material."
  9029. msgstr ""
  9030. "Use o botão esquerdo do mouse (BEM), clique para criar\n"
  9031. "pontes (para separar o PCB do material circundante)."
  9032. #: flatcamTools/ToolCutOut.py:261
  9033. msgid "Generate Gap"
  9034. msgstr "Gerar Ponte"
  9035. #: flatcamTools/ToolCutOut.py:263
  9036. msgid ""
  9037. "Use the left mouse button (LMB) click\n"
  9038. "to create a bridge gap to separate the PCB from\n"
  9039. "the surrounding material.\n"
  9040. "The LMB click has to be done on the perimeter of\n"
  9041. "the Geometry object used as a cutout geometry."
  9042. msgstr ""
  9043. "Use o botão esquerdo do mouse (BEM): clique\n"
  9044. "para criar uma ponte para separar a PCB do material adjacente.\n"
  9045. "O clique deve ser feito no perímetro\n"
  9046. "do objeto Geometria usado como uma geometria de recorte."
  9047. #: flatcamTools/ToolCutOut.py:342 flatcamTools/ToolCutOut.py:512
  9048. #: flatcamTools/ToolNonCopperClear.py:669 flatcamTools/ToolPaint.py:768
  9049. #: flatcamTools/ToolPanelize.py:352 flatcamTools/ToolPanelize.py:366
  9050. #: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:252
  9051. #: flatcamTools/ToolSub.py:432 flatcamTools/ToolSub.py:445
  9052. #, python-format
  9053. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  9054. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto: %s"
  9055. #: flatcamTools/ToolCutOut.py:346
  9056. msgid ""
  9057. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  9058. "Select one and try again."
  9059. msgstr ""
  9060. "[ERROR_NOTCL] Não há objeto selecionado para Recorte.\n"
  9061. "Selecione um e tente novamente."
  9062. #: flatcamTools/ToolCutOut.py:361
  9063. msgid ""
  9064. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9065. "number."
  9066. msgstr ""
  9067. "[WARNING_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número "
  9068. "real positivo."
  9069. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:540
  9070. #: flatcamTools/ToolCutOut.py:785
  9071. msgid ""
  9072. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  9073. msgstr ""
  9074. "[WARNING_NOTCL] O valor da margem está ausente ou no formato errado. Altere "
  9075. "e tente novamente."
  9076. #: flatcamTools/ToolCutOut.py:382 flatcamTools/ToolCutOut.py:551
  9077. #: flatcamTools/ToolCutOut.py:680
  9078. msgid ""
  9079. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  9080. msgstr ""
  9081. "[WARNING_NOTCL] O valor do tamanho da ponte está ausente ou no formato "
  9082. "incorreto. Altere e tente novamente."
  9083. #: flatcamTools/ToolCutOut.py:389 flatcamTools/ToolCutOut.py:558
  9084. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  9085. msgstr ""
  9086. "[WARNING_NOTCL] O número de pontes está ausente. Altere e tente novamente."
  9087. #: flatcamTools/ToolCutOut.py:393 flatcamTools/ToolCutOut.py:562
  9088. msgid ""
  9089. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  9090. "or 8. Fill in a correct value and retry. "
  9091. msgstr ""
  9092. "[WARNING_NOTCL] O valor das pontes pode ser apenas: 'lr', 'tb', '2lr', "
  9093. "'2tb', 4 ou 8. Preencha um valor correto e tente novamente."
  9094. #: flatcamTools/ToolCutOut.py:398 flatcamTools/ToolCutOut.py:567
  9095. msgid ""
  9096. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  9097. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  9098. "Geometry,\n"
  9099. "and after that perform Cutout."
  9100. msgstr ""
  9101. "[ERROR] A operação de recorte não pode ser feita em uma Geometria multi-"
  9102. "geo.\n"
  9103. "Opcionalmente, essa Geometria Multi-Geo pode ser convertida em Geometria "
  9104. "Única,\n"
  9105. "e depois disso, executar Recorte."
  9106. #: flatcamTools/ToolCutOut.py:496 flatcamTools/ToolCutOut.py:650
  9107. msgid "[success] Any form CutOut operation finished."
  9108. msgstr "[success] Operação de Recorte Livre finalizada."
  9109. #: flatcamTools/ToolCutOut.py:516 flatcamTools/ToolPaint.py:772
  9110. #: flatcamTools/ToolPanelize.py:358
  9111. #, python-format
  9112. msgid "[ERROR_NOTCL] Object not found: %s"
  9113. msgstr "[ERROR_NOTCL] Objeto não encontrado: %s"
  9114. #: flatcamTools/ToolCutOut.py:530 flatcamTools/ToolCutOut.py:670
  9115. #: flatcamTools/ToolCutOut.py:775
  9116. msgid ""
  9117. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9118. "number."
  9119. msgstr ""
  9120. "[ERROR_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número real "
  9121. "positivo."
  9122. #: flatcamTools/ToolCutOut.py:655
  9123. msgid ""
  9124. "Click on the selected geometry object perimeter to create a bridge gap ..."
  9125. msgstr ""
  9126. "Clique no perímetro do objeto de geometria selecionado para criar uma "
  9127. "ponte ..."
  9128. #: flatcamTools/ToolCutOut.py:696
  9129. msgid "Making manual bridge gap..."
  9130. msgstr "Fazendo ponte manual ..."
  9131. #: flatcamTools/ToolCutOut.py:719
  9132. #, python-format
  9133. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  9134. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Geometria: %s"
  9135. #: flatcamTools/ToolCutOut.py:723
  9136. #, python-format
  9137. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  9138. msgstr ""
  9139. "[ERROR_NOTCL] Objeto de geometria para recorte manual não encontrado: %s"
  9140. #: flatcamTools/ToolCutOut.py:733
  9141. msgid "[success] Added manual Bridge Gap."
  9142. msgstr "[success] Ponte Manual Adicionada."
  9143. #: flatcamTools/ToolCutOut.py:750
  9144. #, python-format
  9145. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  9146. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Gerber: %s"
  9147. #: flatcamTools/ToolCutOut.py:754
  9148. msgid ""
  9149. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  9150. "Select one and try again."
  9151. msgstr ""
  9152. "[ERROR_NOTCL] Não há nenhum objeto Gerber selecionado para o Recorte.\n"
  9153. "Selecione um e tente novamente."
  9154. #: flatcamTools/ToolCutOut.py:759
  9155. msgid ""
  9156. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  9157. "Select a Gerber file and try again."
  9158. msgstr ""
  9159. "[ERROR_NOTCL] O objeto selecionado deve ser do tipo Gerber.\n"
  9160. "Selecione um arquivo Gerber e tente novamente."
  9161. #: flatcamTools/ToolDblSided.py:18
  9162. msgid "2-Sided PCB"
  9163. msgstr "PCB de 2 faces"
  9164. #: flatcamTools/ToolDblSided.py:47
  9165. msgid "<b>GERBER:</b>"
  9166. msgstr "<b>GERBER:</b>"
  9167. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  9168. #: flatcamTools/ToolDblSided.py:100
  9169. msgid "Mirror"
  9170. msgstr "Espelho"
  9171. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  9172. #: flatcamTools/ToolDblSided.py:102
  9173. msgid ""
  9174. "Mirrors (flips) the specified object around \n"
  9175. "the specified axis. Does not create a new \n"
  9176. "object, but modifies it."
  9177. msgstr ""
  9178. "Espelha (inverte) o objeto especificado em torno do eixo especificado. Não "
  9179. "cria um novo\n"
  9180. "objeto, mas o modifica."
  9181. #: flatcamTools/ToolDblSided.py:71
  9182. msgid "<b>EXCELLON:</b>"
  9183. msgstr "<b>EXCELLON:</b>"
  9184. #: flatcamTools/ToolDblSided.py:73
  9185. msgid "Excellon Object to be mirrored."
  9186. msgstr "Objeto Excellon a ser espelhado."
  9187. #: flatcamTools/ToolDblSided.py:95
  9188. msgid "<b>GEOMETRY</b>:"
  9189. msgstr "<b>GEOMETRIA</b>:"
  9190. #: flatcamTools/ToolDblSided.py:97
  9191. msgid "Geometry Obj to be mirrored."
  9192. msgstr "Objeto Geometria a ser espelhado."
  9193. #: flatcamTools/ToolDblSided.py:135
  9194. msgid ""
  9195. "The axis should pass through a <b>point</b> or cut\n"
  9196. " a specified <b>box</b> (in a FlatCAM object) through \n"
  9197. "the center."
  9198. msgstr ""
  9199. "O eixo deve passar por um <b>ponto</b> ou cortar o centro de uma <b>caixa</"
  9200. "b> especificada (em um objeto FlatCAM)."
  9201. #: flatcamTools/ToolDblSided.py:152
  9202. msgid "Point/Box Reference:"
  9203. msgstr "Ponto/Caixa de Referência:"
  9204. #: flatcamTools/ToolDblSided.py:154
  9205. msgid ""
  9206. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  9207. "the mirroring axis passes.\n"
  9208. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  9209. "Geo).\n"
  9210. "Through the center of this object pass the mirroring axis selected above."
  9211. msgstr ""
  9212. "Se 'Ponto' for selecionado acima, armazena as coordenadas (x, y) por onde "
  9213. "passa\n"
  9214. "o eixo de espelhamento.\n"
  9215. "Se 'Caixa' for selecionada acima, selecione aqui um objeto FlatCAM (Gerber, "
  9216. "Exc ou Geo).\n"
  9217. "O eixo de espelhamento passa pelo centro deste objeto."
  9218. #: flatcamTools/ToolDblSided.py:162
  9219. msgid ""
  9220. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  9221. "axis \n"
  9222. " selected in 'MIRROR AXIS' pass.\n"
  9223. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  9224. "and left mouse button click on canvas or you can enter the coords manually."
  9225. msgstr ""
  9226. "Adicione as coordenadas no formato <b>(x, y)</b> para o eixo de espelhamento "
  9227. "passar.\n"
  9228. "As coordenadas (x, y) são capturadas pressionando a tecla SHIFT\n"
  9229. "e clicar o botão esquerdo do mouse na tela ou inseridas manualmente."
  9230. #: flatcamTools/ToolDblSided.py:182
  9231. msgid "Gerber Reference Box Object"
  9232. msgstr "Objeto Caixa de Referência Gerber"
  9233. #: flatcamTools/ToolDblSided.py:183
  9234. msgid "Excellon Reference Box Object"
  9235. msgstr "Objeto Caixa de Referência Excellon"
  9236. #: flatcamTools/ToolDblSided.py:184
  9237. msgid "Geometry Reference Box Object"
  9238. msgstr "Objeto Caixa de Referência de Geometria"
  9239. #: flatcamTools/ToolDblSided.py:192
  9240. msgid "Alignment Drill Coordinates:"
  9241. msgstr "Coordenadas de Alinhamento de Broca:"
  9242. #: flatcamTools/ToolDblSided.py:194
  9243. msgid ""
  9244. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  9245. "each set of (x, y) coordinates\n"
  9246. "entered here, a pair of drills will be created:\n"
  9247. "\n"
  9248. "- one drill at the coordinates from the field\n"
  9249. "- one drill in mirror position over the axis selected above in the 'Mirror "
  9250. "Axis'."
  9251. msgstr ""
  9252. "Furos de alinhamento (x1, y1), (x2, y2), ... em um lado do eixo do espelho. "
  9253. "Para cada conjunto de coordenadas (x, y)\n"
  9254. "indicado aqui, um par de brocas será criado:\n"
  9255. "\n"
  9256. "- uma broca nas coordenadas do campo\n"
  9257. "- uma broca na posição do espelho sobre o eixo selecionado acima."
  9258. #: flatcamTools/ToolDblSided.py:209
  9259. msgid ""
  9260. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  9261. "on one side of the mirror axis.\n"
  9262. "\n"
  9263. "The coordinates set can be obtained:\n"
  9264. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  9265. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  9266. "field.\n"
  9267. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  9268. "field and click Paste.\n"
  9269. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  9270. msgstr ""
  9271. "Adicione as coordenadas dos furos de alinhamento no formato (x1, y1), (x2, "
  9272. "y2), ...\n"
  9273. "em um lado do eixo do espelho.\n"
  9274. "\n"
  9275. "O conjunto de coordenadas pode ser obtido:\n"
  9276. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, "
  9277. "clicar em Adicionar.\n"
  9278. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Então CTRL + V "
  9279. "no campo.\n"
  9280. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, "
  9281. "clicar no campo e em Colar.\n"
  9282. "- inserindo as coordenadas manualmente no formato: (x1, y1), (x2, y2), ..."
  9283. #: flatcamTools/ToolDblSided.py:223
  9284. msgid "Alignment Drill Diameter"
  9285. msgstr "Diâmetro de Broca de Alinhamento"
  9286. #: flatcamTools/ToolDblSided.py:246
  9287. msgid "Create Excellon Object"
  9288. msgstr "Criar Objeto Excellon"
  9289. #: flatcamTools/ToolDblSided.py:248
  9290. msgid ""
  9291. "Creates an Excellon Object containing the\n"
  9292. "specified alignment holes and their mirror\n"
  9293. "images."
  9294. msgstr ""
  9295. "Cria um Objeto Excellon contendo os\n"
  9296. "furos de alinhamento especificados e suas\n"
  9297. "imagens espelhadas."
  9298. #: flatcamTools/ToolDblSided.py:254
  9299. msgid "Reset"
  9300. msgstr "Redefinir"
  9301. #: flatcamTools/ToolDblSided.py:256
  9302. msgid "Resets all the fields."
  9303. msgstr "Redefine todos os campos."
  9304. #: flatcamTools/ToolDblSided.py:301
  9305. msgid "2-Sided Tool"
  9306. msgstr "PCB 2 Faces"
  9307. #: flatcamTools/ToolDblSided.py:326
  9308. msgid ""
  9309. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  9310. "missing. Add them and retry."
  9311. msgstr ""
  9312. "[WARNING_NOTCL] A referência 'Ponto' está selecionada e as coordenadas do "
  9313. "'Ponto' estão faltando. Adicione-as e tente novamente."
  9314. #: flatcamTools/ToolDblSided.py:345
  9315. msgid ""
  9316. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  9317. msgstr ""
  9318. "[WARNING_NOTCL] Não há objeto Caixa de referência carregado. Carregue um e "
  9319. "tente novamente."
  9320. #: flatcamTools/ToolDblSided.py:367
  9321. msgid ""
  9322. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  9323. "retry."
  9324. msgstr ""
  9325. "[WARNING_NOTCL] Nenhum valor ou formato incorreto para Diâmetro de Broca. "
  9326. "Altere e tente novamente."
  9327. #: flatcamTools/ToolDblSided.py:374
  9328. msgid ""
  9329. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  9330. "and retry."
  9331. msgstr ""
  9332. "[WARNING_NOTCL] Não há Coordenadas de Broca de Alinhamento para usar. "
  9333. "Adicione-as e tente novamente."
  9334. #: flatcamTools/ToolDblSided.py:397
  9335. msgid "[success] Excellon object with alignment drills created..."
  9336. msgstr "[success] Objeto Excellon com brocas de alinhamento criado ..."
  9337. #: flatcamTools/ToolDblSided.py:406
  9338. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  9339. msgstr "[WARNING_NOTCL] Não há objeto Gerber carregado ..."
  9340. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  9341. #: flatcamTools/ToolDblSided.py:497
  9342. msgid ""
  9343. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  9344. msgstr ""
  9345. "[ERROR_NOTCL] Apenas objetos Gerber, Excellon e Geometria podem ser "
  9346. "espelhados."
  9347. #: flatcamTools/ToolDblSided.py:420
  9348. msgid ""
  9349. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  9350. "mirroring reference."
  9351. msgstr ""
  9352. "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Usando Origem (0, 0) "
  9353. "como referência de espelhamento."
  9354. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  9355. #: flatcamTools/ToolDblSided.py:511
  9356. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  9357. msgstr "[WARNING_NOTCL] Não há objeto Caixa carregado ..."
  9358. #: flatcamTools/ToolDblSided.py:440
  9359. #, python-format
  9360. msgid "[success] Gerber %s was mirrored..."
  9361. msgstr "[success] Gerber %s foi espelhado ..."
  9362. #: flatcamTools/ToolDblSided.py:449
  9363. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9364. msgstr "[WARNING_NOTCL] Não há objeto Excellon carregado ..."
  9365. #: flatcamTools/ToolDblSided.py:464
  9366. msgid ""
  9367. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9368. "coords and try again ..."
  9369. msgstr ""
  9370. "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Adicione as coordenadas "
  9371. "e tente novamente ..."
  9372. #: flatcamTools/ToolDblSided.py:484
  9373. #, python-format
  9374. msgid "[success] Excellon %s was mirrored..."
  9375. msgstr "[success] Excellon %s foi espelhado ..."
  9376. #: flatcamTools/ToolDblSided.py:493
  9377. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9378. msgstr "[WARNING_NOTCL] Não há objeto Geometria carregado ..."
  9379. #: flatcamTools/ToolDblSided.py:521
  9380. #, python-format
  9381. msgid "[success] Geometry %s was mirrored..."
  9382. msgstr "[success] Geometria %s foi espelhada ..."
  9383. #: flatcamTools/ToolFilm.py:25
  9384. msgid "Film PCB"
  9385. msgstr "Filme PCB"
  9386. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9387. #: flatcamTools/ToolPanelize.py:56
  9388. msgid "Object Type:"
  9389. msgstr "Tipo de Objeto:"
  9390. #: flatcamTools/ToolFilm.py:58
  9391. msgid ""
  9392. "Specify the type of object for which to create the film.\n"
  9393. "The object can be of type: Gerber or Geometry.\n"
  9394. "The selection here decide the type of objects that will be\n"
  9395. "in the Film Object combobox."
  9396. msgstr ""
  9397. "Especifique o tipo de objeto para o qual criar o filme.\n"
  9398. "O objeto pode ser do tipo: Gerber ou Geometria.\n"
  9399. "A seleção aqui decide o tipo de objetos que estarão\n"
  9400. "na caixa de combinação Objeto de Filme."
  9401. #: flatcamTools/ToolFilm.py:71
  9402. msgid "Film Object:"
  9403. msgstr "Objeto de Filme:"
  9404. #: flatcamTools/ToolFilm.py:73
  9405. msgid "Object for which to create the film."
  9406. msgstr "Objeto para o qual criar o filme."
  9407. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  9408. msgid "Box Type:"
  9409. msgstr "Tipo de Caixa:"
  9410. #: flatcamTools/ToolFilm.py:91
  9411. msgid ""
  9412. "Specify the type of object to be used as an container for\n"
  9413. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9414. "the type of objects that will be\n"
  9415. "in the Box Object combobox."
  9416. msgstr ""
  9417. "Especifique o tipo de objeto a ser usado como um contêiner para a criação "
  9418. "de\n"
  9419. "filme. Pode ser: tipo Gerber ou Geometria. A seleção aqui decide o tipo de "
  9420. "objetos que estarão\n"
  9421. "na caixa de combinação Objeto Caixa."
  9422. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9423. msgid "Box Object:"
  9424. msgstr "Objeto Caixa:"
  9425. #: flatcamTools/ToolFilm.py:106
  9426. msgid ""
  9427. "The actual object that is used a container for the\n"
  9428. " selected object for which we create the film.\n"
  9429. "Usually it is the PCB outline but it can be also the\n"
  9430. "same object for which the film is created."
  9431. msgstr ""
  9432. "O objeto que é usado como um container para o objeto\n"
  9433. "selecionado para o qual criamos o filme.\n"
  9434. "Normalmente, é o contorno do PCB, mas também pode ser\n"
  9435. "do mesmo objeto para o qual o filme é criado."
  9436. #: flatcamTools/ToolFilm.py:114
  9437. msgid "Positive"
  9438. msgstr "Positivo"
  9439. #: flatcamTools/ToolFilm.py:115
  9440. msgid "Negative"
  9441. msgstr "Negativo"
  9442. #: flatcamTools/ToolFilm.py:157
  9443. msgid "Save Film"
  9444. msgstr "Salvar Filme"
  9445. #: flatcamTools/ToolFilm.py:159
  9446. msgid ""
  9447. "Create a Film for the selected object, within\n"
  9448. "the specified box. Does not create a new \n"
  9449. " FlatCAM object, but directly save it in SVG format\n"
  9450. "which can be opened with Inkscape."
  9451. msgstr ""
  9452. "Cria um filme para o objeto selecionado, dentro da caixa especificada. Não "
  9453. "cria um novo objeto\n"
  9454. "FlatCAM, mas salva-o diretamente no formato SVG\n"
  9455. "que pode ser aberto com o programa Inkscape."
  9456. #: flatcamTools/ToolFilm.py:225
  9457. msgid ""
  9458. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9459. msgstr ""
  9460. "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para "
  9461. "Filme e tente novamente."
  9462. #: flatcamTools/ToolFilm.py:231
  9463. msgid ""
  9464. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9465. msgstr ""
  9466. "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para "
  9467. "Caixa e tente novamente."
  9468. #: flatcamTools/ToolFilm.py:255
  9469. msgid "Generating Film ..."
  9470. msgstr "Gerando Filme ..."
  9471. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  9472. msgid "Export SVG positive"
  9473. msgstr "Exportar SVG positivo"
  9474. #: flatcamTools/ToolFilm.py:269
  9475. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  9476. msgstr "[WARNING_NOTCL] Exportar SVG positivo cancelado."
  9477. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  9478. msgid "Export SVG negative"
  9479. msgstr "Exportar SVG negativo"
  9480. #: flatcamTools/ToolFilm.py:285
  9481. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  9482. msgstr "[WARNING_NOTCL] Exportar SVG negativo cancelado."
  9483. #: flatcamTools/ToolImage.py:25
  9484. msgid "Image as Object"
  9485. msgstr "Imagem como Objeto"
  9486. #: flatcamTools/ToolImage.py:31
  9487. msgid "Image to PCB"
  9488. msgstr "Imagem para PCB"
  9489. #: flatcamTools/ToolImage.py:55
  9490. msgid ""
  9491. "Specify the type of object to create from the image.\n"
  9492. "It can be of type: Gerber or Geometry."
  9493. msgstr ""
  9494. "Especifique o tipo de objeto a ser criado a partir da imagem.\n"
  9495. "Pode ser do tipo: Gerber ou Geometria."
  9496. #: flatcamTools/ToolImage.py:63
  9497. msgid "DPI value:"
  9498. msgstr "Valor de DPI:"
  9499. #: flatcamTools/ToolImage.py:65
  9500. msgid "Specify a DPI value for the image."
  9501. msgstr "Especifique um valor de DPI (pontos por polegada) para a imagem."
  9502. #: flatcamTools/ToolImage.py:72
  9503. msgid "Level of detail"
  9504. msgstr "Nível de detalhe"
  9505. #: flatcamTools/ToolImage.py:81
  9506. msgid "Image type"
  9507. msgstr "Tipo de imagem"
  9508. #: flatcamTools/ToolImage.py:83
  9509. msgid ""
  9510. "Choose a method for the image interpretation.\n"
  9511. "B/W means a black & white image. Color means a colored image."
  9512. msgstr ""
  9513. "Escolha um método para a interpretação da imagem.\n"
  9514. "P/B significa uma imagem em preto e branco. Cor significa uma imagem "
  9515. "colorida."
  9516. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9517. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9518. msgid "Mask value"
  9519. msgstr "Valor da máscara"
  9520. #: flatcamTools/ToolImage.py:92
  9521. msgid ""
  9522. "Mask for monochrome image.\n"
  9523. "Takes values between [0 ... 255].\n"
  9524. "Decides the level of details to include\n"
  9525. "in the resulting geometry.\n"
  9526. "0 means no detail and 255 means everything \n"
  9527. "(which is totally black)."
  9528. msgstr ""
  9529. "Máscara para imagem monocromática.\n"
  9530. "Valores entre [0 ... 255].\n"
  9531. "Define o nível de detalhes para incluir\n"
  9532. "na geometria resultante.\n"
  9533. "0 significa nenhum detalhe e 255 significa tudo\n"
  9534. "(que é totalmente preto)."
  9535. #: flatcamTools/ToolImage.py:105
  9536. msgid ""
  9537. "Mask for RED color.\n"
  9538. "Takes values between [0 ... 255].\n"
  9539. "Decides the level of details to include\n"
  9540. "in the resulting geometry."
  9541. msgstr ""
  9542. "Máscara para a cor VERMELHA.\n"
  9543. "Valores entre [0 ... 255].\n"
  9544. "Define o nível de detalhes para incluir\n"
  9545. "na geometria resultante."
  9546. #: flatcamTools/ToolImage.py:116
  9547. msgid ""
  9548. "Mask for GREEN color.\n"
  9549. "Takes values between [0 ... 255].\n"
  9550. "Decides the level of details to include\n"
  9551. "in the resulting geometry."
  9552. msgstr ""
  9553. "Máscara para a cor VERDE.\n"
  9554. "Valores entre [0 ... 255].\n"
  9555. "Define o nível de detalhes para incluir\n"
  9556. "na geometria resultante."
  9557. #: flatcamTools/ToolImage.py:127
  9558. msgid ""
  9559. "Mask for BLUE color.\n"
  9560. "Takes values between [0 ... 255].\n"
  9561. "Decides the level of details to include\n"
  9562. "in the resulting geometry."
  9563. msgstr ""
  9564. "Máscara para a cor AZUL.\n"
  9565. "Valores entre [0 ... 255].\n"
  9566. "Define o nível de detalhes para incluir\n"
  9567. "na geometria resultante."
  9568. #: flatcamTools/ToolImage.py:139
  9569. msgid "Import image"
  9570. msgstr "Importar imagem"
  9571. #: flatcamTools/ToolImage.py:141
  9572. msgid "Open a image of raster type and then import it in FlatCAM."
  9573. msgstr "Abre uma imagem do tipo raster e importe-a no FlatCAM."
  9574. #: flatcamTools/ToolImage.py:170
  9575. msgid "Image Tool"
  9576. msgstr "Ferramenta de Imagem"
  9577. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  9578. msgid "Import IMAGE"
  9579. msgstr "Importar IMAGEM"
  9580. #: flatcamTools/ToolMeasurement.py:26
  9581. msgid "Measurement"
  9582. msgstr "Medição"
  9583. #: flatcamTools/ToolMeasurement.py:43
  9584. msgid "Units:"
  9585. msgstr "Unidades:"
  9586. #: flatcamTools/ToolMeasurement.py:44
  9587. msgid "Those are the units in which the distance is measured."
  9588. msgstr "Unidade em que a distância é medida."
  9589. #: flatcamTools/ToolMeasurement.py:45
  9590. msgid "METRIC (mm)"
  9591. msgstr "Métrico (mm):"
  9592. #: flatcamTools/ToolMeasurement.py:45
  9593. msgid "INCH (in)"
  9594. msgstr "Inglês (in)"
  9595. #: flatcamTools/ToolMeasurement.py:48
  9596. msgid "Start"
  9597. msgstr "Início"
  9598. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  9599. msgid "Coords"
  9600. msgstr "Coords"
  9601. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  9602. msgid "This is measuring Start point coordinates."
  9603. msgstr "Coordenadas do ponto inicial da medição."
  9604. #: flatcamTools/ToolMeasurement.py:51
  9605. msgid "Stop"
  9606. msgstr "Final"
  9607. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  9608. msgid "This is the measuring Stop point coordinates."
  9609. msgstr "Coordenadas do ponto final da medição."
  9610. #: flatcamTools/ToolMeasurement.py:54
  9611. msgid "Dx:"
  9612. msgstr "Dx:"
  9613. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  9614. msgid "This is the distance measured over the X axis."
  9615. msgstr "Distância medida no eixo X."
  9616. #: flatcamTools/ToolMeasurement.py:57
  9617. msgid "Dy:"
  9618. msgstr "Dy:"
  9619. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  9620. msgid "This is the distance measured over the Y axis."
  9621. msgstr "Distância medida no eixo Y."
  9622. #: flatcamTools/ToolMeasurement.py:60
  9623. msgid "DISTANCE"
  9624. msgstr "DISTÂNCIA"
  9625. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  9626. msgid "This is the point to point Euclidian distance."
  9627. msgstr "Este é o ponto a apontar a distância euclidiana."
  9628. #: flatcamTools/ToolMeasurement.py:83
  9629. msgid "Measure"
  9630. msgstr "Medir"
  9631. #: flatcamTools/ToolMeasurement.py:131
  9632. msgid "Meas. Tool"
  9633. msgstr "Ferramenta de Medição"
  9634. #: flatcamTools/ToolMeasurement.py:176
  9635. msgid "MEASURING: Click on the Start point ..."
  9636. msgstr "MEDIÇÃO: Clique no ponto inicial ..."
  9637. #: flatcamTools/ToolMeasurement.py:269
  9638. msgid "MEASURING: Click on the Destination point ..."
  9639. msgstr "MEDIÇÃO: Clique no ponto final ..."
  9640. #: flatcamTools/ToolMeasurement.py:277
  9641. #, python-brace-format
  9642. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9643. msgstr "MEDIÇÃO: Resultado D(x) = {d_x} | D(y) = {d_y} | Distância = {d_z}"
  9644. #: flatcamTools/ToolMove.py:81
  9645. msgid "MOVE: Click on the Start point ..."
  9646. msgstr "MOVER: Clique no ponto inicial ..."
  9647. #: flatcamTools/ToolMove.py:88
  9648. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9649. msgstr "[WARNING_NOTCL] Ação MOVER cancelada. Nenhum objeto para mover."
  9650. #: flatcamTools/ToolMove.py:110
  9651. msgid "MOVE: Click on the Destination point ..."
  9652. msgstr "MOVER: Clique no ponto de destino ..."
  9653. #: flatcamTools/ToolMove.py:128
  9654. msgid "Moving ..."
  9655. msgstr "Movendo ..."
  9656. #: flatcamTools/ToolMove.py:135
  9657. msgid "[WARNING_NOTCL] No object(s) selected."
  9658. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  9659. #: flatcamTools/ToolMove.py:158
  9660. #, python-format
  9661. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9662. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9663. #: flatcamTools/ToolMove.py:164
  9664. #, python-format
  9665. msgid "[success] %s object was moved ..."
  9666. msgstr "[success] objeto %s foi movido ..."
  9667. #: flatcamTools/ToolMove.py:174
  9668. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9669. msgstr ""
  9670. "[ERROR_NOTCL] ToolMove.on_left_click() --> Erro ao clicar no botão esquerdo "
  9671. "do mouse."
  9672. #: flatcamTools/ToolMove.py:202
  9673. msgid "[WARNING_NOTCL] Move action cancelled."
  9674. msgstr "[WARNING_NOTCL] Ação Mover cancelada."
  9675. #: flatcamTools/ToolMove.py:214
  9676. msgid "[WARNING_NOTCL] Object(s) not selected"
  9677. msgstr "[WARNING_NOTCL] Objeto(s) não selecionado(s)"
  9678. #: flatcamTools/ToolNonCopperClear.py:26
  9679. msgid "Non-Copper Clearing"
  9680. msgstr "Área Sem Cobre (NCC)"
  9681. #: flatcamTools/ToolNonCopperClear.py:64
  9682. msgid "Gerber object to be cleared of excess copper. "
  9683. msgstr "Objeto Gerber do qual será retirado o cobre."
  9684. #: flatcamTools/ToolNonCopperClear.py:74
  9685. msgid ""
  9686. "Tools pool from which the algorithm\n"
  9687. "will pick the ones used for copper clearing."
  9688. msgstr ""
  9689. "Conjunto de ferramentas do qual o algoritmo\n"
  9690. "escolherá aquelas usados para limpeza de cobre."
  9691. #: flatcamTools/ToolNonCopperClear.py:89
  9692. msgid ""
  9693. "This is the Tool Number.\n"
  9694. "Non copper clearing will start with the tool with the biggest \n"
  9695. "diameter, continuing until there are no more tools.\n"
  9696. "Only tools that create NCC clearing geometry will still be present\n"
  9697. "in the resulting geometry. This is because with some tools\n"
  9698. "this function will not be able to create painting geometry."
  9699. msgstr ""
  9700. "Este é o Número da Ferramenta.\n"
  9701. "A retirada de cobre (NCC) começará com a ferramenta de maior diâmetro,\n"
  9702. "continuando até que não haja mais ferramentas. As únicas ferramentas\n"
  9703. "que criam a geometria de NCC ainda estarão presentes na geometria\n"
  9704. "resultante. Isso ocorre porque com algumas ferramentas esta função\n"
  9705. "não será capaz de criar geometria de pintura."
  9706. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  9707. msgid ""
  9708. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9709. "informative only. Being circular, <BR>the cut width in material is exactly "
  9710. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9711. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9712. "parameter in the resulting geometry UI form and enable two additional UI "
  9713. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9714. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9715. "material will be equal with the value in the Tool Diameter column of this "
  9716. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9717. "the Operation Type in the resulting geometry as Isolation."
  9718. msgstr ""
  9719. "O Tipo de Ferramenta (TF) pode ser:<BR>- <B>Circular</B> com 1 ... 4 dentes -"
  9720. "> é apenas informativo. Como é circular, <BR>a largura do corte é igual ao "
  9721. "diâmetro da ferramenta.<BR>- <B>Bola</B> -> apenas informativo e faz "
  9722. "referência a uma fresa do tipo bola.<BR>- <B>Forma em V</B> -> o parâmetro "
  9723. "corte Z será desativado no formulário e serão habilitados dois campos "
  9724. "adicionais: Diâmetro da Ponta-V e Ângulo da Ponta-V. Ajustando esses dois "
  9725. "parâmetros irá alterar o parâmetro Corte Z como a largura de corte no "
  9726. "material, será igual ao valor na coluna Diâmetro da Ferramenta desta tabela."
  9727. "<BR>Escolhendo o tipo <B>Forma em V</B> automaticamente selecionará o Tipo "
  9728. "de Operação Isolação."
  9729. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  9730. msgid "Tool Dia"
  9731. msgstr "Diâmetro da Ferramenta"
  9732. #: flatcamTools/ToolNonCopperClear.py:122
  9733. msgid "Diameter for the new tool to add in the Tool Table"
  9734. msgstr ""
  9735. "Diâmetro para a nova ferramenta para adicionar na tabela de ferramentas"
  9736. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  9737. #: flatcamTools/ToolSolderPaste.py:123
  9738. msgid ""
  9739. "Delete a selection of tools in the Tool Table\n"
  9740. "by first selecting a row(s) in the Tool Table."
  9741. msgstr ""
  9742. "Apague uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  9743. "primeiro a(s) linha(s) na Tabela de Ferramentas."
  9744. #: flatcamTools/ToolNonCopperClear.py:226
  9745. msgid ""
  9746. "If checked, use 'rest machining'.\n"
  9747. "Basically it will clear copper outside PCB features,\n"
  9748. "using the biggest tool and continue with the next tools,\n"
  9749. "from bigger to smaller, to clear areas of copper that\n"
  9750. "could not be cleared by previous tool, until there is\n"
  9751. "no more copper to clear or there are no more tools.\n"
  9752. "If not checked, use the standard algorithm."
  9753. msgstr ""
  9754. "Se marcada, usa 'usinagem de descanso'.\n"
  9755. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  9756. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  9757. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  9758. "retiradas com a ferramenta anterior.\n"
  9759. "Se não estiver marcada, usa o algoritmo padrão."
  9760. #: flatcamTools/ToolNonCopperClear.py:238
  9761. msgid "Generate Geometry"
  9762. msgstr "Gerar Geometria"
  9763. #: flatcamTools/ToolNonCopperClear.py:486 flatcamTools/ToolPaint.py:543
  9764. #: flatcamTools/ToolSolderPaste.py:759
  9765. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9766. msgstr ""
  9767. "[WARNING_NOTCL] Insira um diâmetro de ferramenta para adicionar, no formato "
  9768. "Flutuante."
  9769. #: flatcamTools/ToolNonCopperClear.py:515 flatcamTools/ToolPaint.py:567
  9770. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9771. msgstr ""
  9772. "[WARNING_NOTCL] Adição cancelada. Ferramenta já está na Tabela de "
  9773. "Ferramentas."
  9774. #: flatcamTools/ToolNonCopperClear.py:520 flatcamTools/ToolPaint.py:572
  9775. msgid "[success] New tool added to Tool Table."
  9776. msgstr "[success] Nova ferramenta adicionada à Tabela de Ferramentas."
  9777. #: flatcamTools/ToolNonCopperClear.py:562 flatcamTools/ToolPaint.py:617
  9778. msgid "[success] Tool from Tool Table was edited."
  9779. msgstr "[sucss] A ferramenta da Tabela de Ferramentas foi editada."
  9780. #: flatcamTools/ToolNonCopperClear.py:573 flatcamTools/ToolPaint.py:628
  9781. #: flatcamTools/ToolSolderPaste.py:846
  9782. msgid ""
  9783. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9784. "Table."
  9785. msgstr ""
  9786. "[WARNING_NOTCL] Editar cancelado. O novo valor de diâmetro já está na tabela "
  9787. "de ferramentas."
  9788. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:727
  9789. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9790. msgstr ""
  9791. "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta para excluir."
  9792. #: flatcamTools/ToolNonCopperClear.py:618 flatcamTools/ToolPaint.py:732
  9793. msgid "[success] Tool(s) deleted from Tool Table."
  9794. msgstr "[success] Ferramenta(s) excluída(s) da Tabela de Ferramentas."
  9795. #: flatcamTools/ToolNonCopperClear.py:636 flatcamTools/ToolPaint.py:751
  9796. msgid ""
  9797. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9798. msgstr ""
  9799. "[ERROR_NOTCL] O valor de sobreposição deve estar entre 0 (inclusive) e 1 "
  9800. "(exclusivo),"
  9801. #: flatcamTools/ToolNonCopperClear.py:677
  9802. msgid "[ERROR_NOTCL] No Gerber file available."
  9803. msgstr "[ERROR_NOTCL] Nenhum arquivo Gerber disponível."
  9804. #: flatcamTools/ToolNonCopperClear.py:715
  9805. #: flatcamTools/ToolNonCopperClear.py:837
  9806. msgid "Clearing Non-Copper areas."
  9807. msgstr "Limpando áreas Sem-Cobre."
  9808. #: flatcamTools/ToolNonCopperClear.py:733
  9809. #, python-format
  9810. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9811. msgstr "[success] Limpeza de Área Sem-Cobre com Diâmetro = %s iniciada."
  9812. #: flatcamTools/ToolNonCopperClear.py:802
  9813. #, python-format
  9814. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9815. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9816. #: flatcamTools/ToolNonCopperClear.py:807
  9817. msgid "[success] NCC Tool finished."
  9818. msgstr "[success] Retirada de cobre concluída."
  9819. #: flatcamTools/ToolNonCopperClear.py:809
  9820. msgid ""
  9821. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9822. "cleared. Check the result."
  9823. msgstr ""
  9824. "[WARNING_NOTCL] A retirada de cobre foi concluída, mas alguns recursos do "
  9825. "PCB\n"
  9826. "não puderam ser retirados. Verifique o resultado."
  9827. #: flatcamTools/ToolNonCopperClear.py:855
  9828. #, python-format
  9829. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9830. msgstr "[success] Limpeza de cobre iniciada com diâmetro = %s."
  9831. #: flatcamTools/ToolNonCopperClear.py:953
  9832. #, python-format
  9833. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9834. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9835. #: flatcamTools/ToolNonCopperClear.py:961
  9836. msgid ""
  9837. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9838. "settings."
  9839. msgstr ""
  9840. "[ERROR_NOTCL] A limpeza foi concluída, mas não pôde limpar o objeto com as "
  9841. "configurações atuais."
  9842. #: flatcamTools/ToolPDF.py:38
  9843. msgid "PDF Import Tool"
  9844. msgstr "Ferramenta de Importação de PDF"
  9845. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9846. msgid "Open PDF"
  9847. msgstr "Abrir PDF"
  9848. #: flatcamTools/ToolPDF.py:159
  9849. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9850. msgstr "[WARNING_NOTCL] Abrir PDF cancelado."
  9851. #: flatcamTools/ToolPDF.py:186
  9852. msgid "Parsing PDF file ..."
  9853. msgstr "Analisando arquivo PDF ..."
  9854. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9855. #, python-format
  9856. msgid "Rendering PDF layer #%d ..."
  9857. msgstr "Renderizando camada PDF # %d ..."
  9858. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9859. msgid "[ERROR_NOTCL] Open PDF file failed."
  9860. msgstr "[ERROR_NOTCL] Falha ao abrir arquivo PDF."
  9861. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9862. #, python-format
  9863. msgid "[success] Rendered: %s"
  9864. msgstr "[success] Processado: %s"
  9865. #: flatcamTools/ToolPaint.py:24
  9866. msgid "Paint Area"
  9867. msgstr "Área de Pintura"
  9868. #: flatcamTools/ToolPaint.py:60
  9869. msgid "Geometry:"
  9870. msgstr "Geometria:"
  9871. #: flatcamTools/ToolPaint.py:62
  9872. msgid "Geometry object to be painted. "
  9873. msgstr "Objeto de geometria a ser pintado."
  9874. #: flatcamTools/ToolPaint.py:71
  9875. msgid ""
  9876. "Tools pool from which the algorithm\n"
  9877. "will pick the ones used for painting."
  9878. msgstr ""
  9879. "Conjunto de ferramentas do qual o algoritmo\n"
  9880. "escolherá os usados para a pintura."
  9881. #: flatcamTools/ToolPaint.py:86
  9882. msgid ""
  9883. "This is the Tool Number.\n"
  9884. "Painting will start with the tool with the biggest diameter,\n"
  9885. "continuing until there are no more tools.\n"
  9886. "Only tools that create painting geometry will still be present\n"
  9887. "in the resulting geometry. This is because with some tools\n"
  9888. "this function will not be able to create painting geometry."
  9889. msgstr ""
  9890. "Este é o Número da Ferramenta.\n"
  9891. "A pintura começará com a ferramenta com o maior diâmetro,\n"
  9892. "continuando até que não haja mais ferramentas.\n"
  9893. "As únicas ferramentas que criam a geometria da pintura ainda estarão "
  9894. "presentes\n"
  9895. "na geometria resultante. Isso ocorre porque com algumas ferramentas\n"
  9896. "não são capazes de criar geometria de pintura nesta função."
  9897. #: flatcamTools/ToolPaint.py:119
  9898. msgid "Diameter for the new tool."
  9899. msgstr "Diâmetro para a nova ferramenta."
  9900. #: flatcamTools/ToolPaint.py:224
  9901. msgid ""
  9902. "If checked, use 'rest machining'.\n"
  9903. "Basically it will clear copper outside PCB features,\n"
  9904. "using the biggest tool and continue with the next tools,\n"
  9905. "from bigger to smaller, to clear areas of copper that\n"
  9906. "could not be cleared by previous tool, until there is\n"
  9907. "no more copper to clear or there are no more tools.\n"
  9908. "\n"
  9909. "If not checked, use the standard algorithm."
  9910. msgstr ""
  9911. "Se marcada, usa 'usinagem de descanso'.\n"
  9912. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  9913. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  9914. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  9915. "retiradas com a ferramenta anterior.\n"
  9916. "Se não estiver marcada, usa o algoritmo padrão."
  9917. #: flatcamTools/ToolPaint.py:239
  9918. msgid ""
  9919. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9920. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9921. "polygons."
  9922. msgstr ""
  9923. "Como selecionar os polígonos para pintar.<BR>Opções:<BR> - <B>Único</B>: "
  9924. "clique com o botão esquerdo do mouse no polígono a ser pintado.<BR> - "
  9925. "<B>Todos</B>: pintar todos os polígonos."
  9926. #: flatcamTools/ToolPaint.py:254
  9927. msgid "Create Paint Geometry"
  9928. msgstr "Criar Geometria de Pintura"
  9929. #: flatcamTools/ToolPaint.py:256
  9930. msgid ""
  9931. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9932. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9933. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9934. "created."
  9935. msgstr ""
  9936. "Depois de clicar aqui, clique dentro<BR>do polígono que você deseja pintar "
  9937. "se <B>Único</B> estiver selecionado.<BR>Se <B>Todos</B> for selecionado, a "
  9938. "Pintura será iniciada após o clique.<BR>Será criado um novo objeto Geometria "
  9939. "com os caminhos da ferramenta."
  9940. #: flatcamTools/ToolPaint.py:736
  9941. msgid "geometry_on_paint_button"
  9942. msgstr "geometry_on_paint_button"
  9943. #: flatcamTools/ToolPaint.py:755 flatcamTools/ToolPaint.py:791
  9944. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  9945. msgstr "[WARNING_NOTCL] Clique dentro do polígono desejado."
  9946. #: flatcamTools/ToolPaint.py:778
  9947. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9948. msgstr "[ERROR_NOTCL] Não é possível pintar geometrias MultiGeo ..."
  9949. #: flatcamTools/ToolPaint.py:800 flatcamTools/ToolPaint.py:1004
  9950. msgid "Painting polygon..."
  9951. msgstr "Pintando o polígono..."
  9952. #: flatcamTools/ToolPaint.py:853
  9953. msgid "[WARNING] No polygon found."
  9954. msgstr "[WARNING] Nenhum polígono encontrado."
  9955. #: flatcamTools/ToolPaint.py:856
  9956. msgid "Painting polygon."
  9957. msgstr "Pintando o polígono."
  9958. #: flatcamTools/ToolPaint.py:898
  9959. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  9960. msgstr "[ERROR_NOTCL] A geometria não pode ser pintada completamente"
  9961. #: flatcamTools/ToolPaint.py:924
  9962. #, python-format
  9963. msgid ""
  9964. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9965. "different strategy of paint\n"
  9966. "%s"
  9967. msgstr ""
  9968. "[ERROR] Não foi possível pintar. Tente uma combinação diferente de "
  9969. "parâmetros ou uma estratégia diferente de pintura\n"
  9970. "%s"
  9971. #: flatcamTools/ToolPaint.py:966
  9972. #, python-format
  9973. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9974. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9975. #: flatcamTools/ToolPaint.py:972 flatcamTools/ToolPaint.py:1271
  9976. msgid "Polygon Paint started ..."
  9977. msgstr "Pintura de polígonos iniciada ..."
  9978. #: flatcamTools/ToolPaint.py:1125 flatcamTools/ToolPaint.py:1216
  9979. #, python-format
  9980. msgid ""
  9981. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9982. "Or a different Method of paint\n"
  9983. "%s"
  9984. msgstr ""
  9985. "[ERROR] Não foi possível pintar todos. Tente uma combinação diferente de "
  9986. "parâmetros, ou um método diferente de pintura\n"
  9987. "%s"
  9988. #: flatcamTools/ToolPaint.py:1149
  9989. msgid ""
  9990. "[ERROR] There is no Painting Geometry in the file.\n"
  9991. "Usually it means that the tool diameter is too big for the painted "
  9992. "geometry.\n"
  9993. "Change the painting parameters and try again."
  9994. msgstr ""
  9995. "[ERROR] Não há geometria de pintura no arquivo.\n"
  9996. "Normalmente significa que o diâmetro da ferramenta é muito grande para a "
  9997. "geometria pintada.\n"
  9998. "Mude os parâmetros de pintura e tente novamente."
  9999. #: flatcamTools/ToolPaint.py:1158
  10000. msgid "[success] Paint All Done."
  10001. msgstr "[success] Pintura finalizada."
  10002. #: flatcamTools/ToolPaint.py:1246
  10003. msgid ""
  10004. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  10005. "Usually it means that the tool diameter is too big for the painted "
  10006. "geometry.\n"
  10007. "Change the painting parameters and try again."
  10008. msgstr ""
  10009. "[ERROR_NOTCL] Não há geometria de pintura no arquivo.\n"
  10010. "Normalmente significa que o diâmetro da ferramenta é muito grande para a "
  10011. "geometria pintada.\n"
  10012. "Mude os parâmetros de pintura e tente novamente."
  10013. #: flatcamTools/ToolPaint.py:1255
  10014. msgid "[success] Paint All with Rest-Machining done."
  10015. msgstr "[success] Pintura finalizada."
  10016. #: flatcamTools/ToolPanelize.py:25
  10017. msgid "Panelize PCB"
  10018. msgstr "Criar Painel com PCB"
  10019. #: flatcamTools/ToolPanelize.py:58
  10020. msgid ""
  10021. "Specify the type of object to be panelized\n"
  10022. "It can be of type: Gerber, Excellon or Geometry.\n"
  10023. "The selection here decide the type of objects that will be\n"
  10024. "in the Object combobox."
  10025. msgstr ""
  10026. "Especifique o tipo de objeto para criar um painel\n"
  10027. "Pode ser do tipo: Gerber, Excellon ou Geometria.\n"
  10028. "A seleção aqui decide o tipo de objetos que estarão\n"
  10029. "na Caixa de Objetos."
  10030. #: flatcamTools/ToolPanelize.py:73
  10031. msgid ""
  10032. "Object to be panelized. This means that it will\n"
  10033. "be duplicated in an array of rows and columns."
  10034. msgstr ""
  10035. "Objeto para criar painel. Isso significa\n"
  10036. "que ele será duplicado em uma matriz de linhas e colunas."
  10037. #: flatcamTools/ToolPanelize.py:84
  10038. msgid "Object"
  10039. msgstr "Objeto"
  10040. #: flatcamTools/ToolPanelize.py:85
  10041. msgid "Bounding Box"
  10042. msgstr "Caixa Delimitadora"
  10043. #: flatcamTools/ToolPanelize.py:86
  10044. msgid "<b>Penelization Reference:</b>"
  10045. msgstr "<b>Referência para Criação de Painel:</b>"
  10046. #: flatcamTools/ToolPanelize.py:88
  10047. msgid ""
  10048. "Choose the reference for panelization:\n"
  10049. "- Object = the bounding box of a different object\n"
  10050. "- Bounding Box = the bounding box of the object to be panelized\n"
  10051. "\n"
  10052. "The reference is useful when doing panelization for more than one\n"
  10053. "object. The spacings (really offsets) will be applied in reference\n"
  10054. "to this reference object therefore maintaining the panelized\n"
  10055. "objects in sync."
  10056. msgstr ""
  10057. "Escolha a referência para criação do painel:\n"
  10058. "- Objeto = a caixa delimitadora de um objeto diferente\n"
  10059. "- Caixa Delimitadora = a caixa delimitadora do objeto para criar o painel\n"
  10060. "\n"
  10061. "A referência é útil ao criar um painel para mais de um objeto.\n"
  10062. "Os espaçamentos (deslocamentos) serão aplicados em referência\n"
  10063. "a este objeto de referência, portanto, mantendo os objetos\n"
  10064. "sincronizados no painel."
  10065. #: flatcamTools/ToolPanelize.py:113
  10066. msgid ""
  10067. "Specify the type of object to be used as an container for\n"
  10068. "panelization. It can be: Gerber or Geometry type.\n"
  10069. "The selection here decide the type of objects that will be\n"
  10070. "in the Box Object combobox."
  10071. msgstr ""
  10072. "Especifique o tipo de objeto a ser usado como um contêiner para\n"
  10073. "o painel criado. Pode ser: tipo Gerber ou Geometria.\n"
  10074. "A seleção aqui decide o tipo de objetos que estarão na\n"
  10075. "Caixa de Objetos."
  10076. #: flatcamTools/ToolPanelize.py:128
  10077. msgid ""
  10078. "The actual object that is used a container for the\n"
  10079. " selected object that is to be panelized."
  10080. msgstr ""
  10081. "O objeto usado como contêiner para o objeto\n"
  10082. "selecionado para o qual será criado um painel."
  10083. #: flatcamTools/ToolPanelize.py:134
  10084. msgid "<b>Panel Data:</b>"
  10085. msgstr "<b>Dados do Painel:</b>"
  10086. #: flatcamTools/ToolPanelize.py:136
  10087. msgid ""
  10088. "This informations will shape the resulting panel.\n"
  10089. "The number of rows and columns will set how many\n"
  10090. "duplicates of the original geometry will be generated.\n"
  10091. "\n"
  10092. "The spacings will set the distance between any two\n"
  10093. "elements of the panel array."
  10094. msgstr ""
  10095. "Essas informações moldarão o painel resultante.\n"
  10096. "O número de linhas e colunas definirá quantas\n"
  10097. "duplicatas da geometria original serão geradas.\n"
  10098. "\n"
  10099. "Os espaçamentos definirão a distância entre os\n"
  10100. "elementos da matriz do painel."
  10101. #: flatcamTools/ToolPanelize.py:183
  10102. msgid "<b>Panel Type:</b>"
  10103. msgstr "<b>Tipo de Painel:</b>"
  10104. #: flatcamTools/ToolPanelize.py:185
  10105. msgid ""
  10106. "Choose the type of object for the panel object:\n"
  10107. "- Geometry\n"
  10108. "- Gerber"
  10109. msgstr ""
  10110. "Escolha o tipo de objeto para o objeto de painel:\n"
  10111. "- Geometria\n"
  10112. "- Gerber"
  10113. #: flatcamTools/ToolPanelize.py:193
  10114. msgid "Constrain panel within:"
  10115. msgstr "Restringir painel dentro de:"
  10116. #: flatcamTools/ToolPanelize.py:227
  10117. msgid "Panelize Object"
  10118. msgstr "Criar Painel"
  10119. #: flatcamTools/ToolPanelize.py:229
  10120. msgid ""
  10121. "Panelize the specified object around the specified box.\n"
  10122. "In other words it creates multiple copies of the source object,\n"
  10123. "arranged in a 2D array of rows and columns."
  10124. msgstr ""
  10125. "Cria um painel do objeto especificado ao redor da caixa especificada.\n"
  10126. "Em outras palavras, ele cria várias cópias do objeto de origem,\n"
  10127. "arranjado em uma matriz 2D de linhas e colunas."
  10128. #: flatcamTools/ToolPanelize.py:272
  10129. msgid "Panel. Tool"
  10130. msgstr "Ferramenta de Painel"
  10131. #: flatcamTools/ToolPanelize.py:370
  10132. #, python-format
  10133. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  10134. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  10135. #: flatcamTools/ToolPanelize.py:453
  10136. msgid ""
  10137. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  10138. "integer."
  10139. msgstr ""
  10140. "[ERROR_NOTCL] Colunas ou Linhas com valor zero. Altere-os para um inteiro "
  10141. "positivo."
  10142. #: flatcamTools/ToolPanelize.py:478 flatcamTools/ToolPanelize.py:635
  10143. msgid "Generating panel ... Please wait."
  10144. msgstr "Gerando painel ... Por favor, aguarde."
  10145. #: flatcamTools/ToolPanelize.py:628
  10146. msgid "[success] Panel done..."
  10147. msgstr "[success] Painel criado..."
  10148. #: flatcamTools/ToolPanelize.py:631
  10149. #, python-brace-format
  10150. msgid ""
  10151. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  10152. "{row} rows"
  10153. msgstr ""
  10154. "[WARNING] Grande demais para a área restrita.. O painel final tem {col} "
  10155. "colunas e {row} linhas"
  10156. #: flatcamTools/ToolPanelize.py:640
  10157. msgid "[success] Panel created successfully."
  10158. msgstr "[success] Painel criado com sucesso."
  10159. #: flatcamTools/ToolPcbWizard.py:32
  10160. msgid "PcbWizard Import Tool"
  10161. msgstr "Ferramenta de Importação PcbWizard"
  10162. #: flatcamTools/ToolPcbWizard.py:40
  10163. msgid "Import 2-file Excellon"
  10164. msgstr "Importar Excellon 2-arquivos"
  10165. #: flatcamTools/ToolPcbWizard.py:57
  10166. msgid "Excellon file:"
  10167. msgstr "Arquivo Excellon:"
  10168. #: flatcamTools/ToolPcbWizard.py:59
  10169. msgid ""
  10170. "Load the Excellon file.\n"
  10171. "Usually it has a .DRL extension"
  10172. msgstr ""
  10173. "Carrega o arquivo Excellon.\n"
  10174. "Normalmente ele tem uma extensão .DRL"
  10175. #: flatcamTools/ToolPcbWizard.py:65
  10176. msgid "INF file:"
  10177. msgstr "Arquivo INF:"
  10178. #: flatcamTools/ToolPcbWizard.py:67
  10179. msgid "Load the INF file."
  10180. msgstr "Carrega o arquivo INF."
  10181. #: flatcamTools/ToolPcbWizard.py:79
  10182. msgid "Tool Number"
  10183. msgstr "Número da Ferramenta"
  10184. #: flatcamTools/ToolPcbWizard.py:81
  10185. msgid "Tool diameter in file units."
  10186. msgstr "Diâmetro da ferramenta em unidades de arquivo."
  10187. #: flatcamTools/ToolPcbWizard.py:95
  10188. msgid "Int. digits:"
  10189. msgstr "Dígitos Int.:"
  10190. #: flatcamTools/ToolPcbWizard.py:97
  10191. msgid "The number of digits for the integral part of the coordinates."
  10192. msgstr "O número de dígitos da parte integral das coordenadas."
  10193. #: flatcamTools/ToolPcbWizard.py:104
  10194. msgid "Frac. digits:"
  10195. msgstr "Dígitos Frac.:"
  10196. #: flatcamTools/ToolPcbWizard.py:106
  10197. msgid "The number of digits for the fractional part of the coordinates."
  10198. msgstr "O número de dígitos para a parte fracionária das coordenadas."
  10199. #: flatcamTools/ToolPcbWizard.py:113
  10200. msgid "No Suppression"
  10201. msgstr "Sem supressão"
  10202. #: flatcamTools/ToolPcbWizard.py:114
  10203. msgid "Zeros supp.:"
  10204. msgstr "Sup. Zeros:"
  10205. #: flatcamTools/ToolPcbWizard.py:116
  10206. msgid ""
  10207. "The type of zeros suppression used.\n"
  10208. "Can be of type:\n"
  10209. "- LZ = leading zeros are kept\n"
  10210. "- TZ = trailing zeros are kept\n"
  10211. "- No Suppression = no zero suppression"
  10212. msgstr ""
  10213. "O tipo de supressão de zeros usado.\n"
  10214. "Pode ser do tipo:\n"
  10215. "- LZ = zeros à esquerda são mantidos\n"
  10216. "- TZ = zeros à direita são mantidos\n"
  10217. "- Sem supressão = sem supressão de zeros"
  10218. #: flatcamTools/ToolPcbWizard.py:127
  10219. msgid "Units"
  10220. msgstr "Unidades"
  10221. #: flatcamTools/ToolPcbWizard.py:129
  10222. msgid ""
  10223. "The type of units that the coordinates and tool\n"
  10224. "diameters are using. Can be INCH or MM."
  10225. msgstr ""
  10226. "A unidade para as coordenadas e os diâmetros\n"
  10227. "de ferramentas. Pode ser Polegada ou mm."
  10228. #: flatcamTools/ToolPcbWizard.py:136
  10229. msgid "Import Excellon"
  10230. msgstr "Importar Excellon"
  10231. #: flatcamTools/ToolPcbWizard.py:138
  10232. msgid ""
  10233. "Import in FlatCAM an Excellon file\n"
  10234. "that store it's information's in 2 files.\n"
  10235. "One usually has .DRL extension while\n"
  10236. "the other has .INF extension."
  10237. msgstr ""
  10238. "Importa no FlatCAM um arquivo Excellon\n"
  10239. "que armazena suas informações em 2 arquivos.\n"
  10240. "Um geralmente possui extensão .DRL e o outro tem extensão .INF."
  10241. #: flatcamTools/ToolPcbWizard.py:192
  10242. msgid "PCBWizard Tool"
  10243. msgstr "Ferramenta PCBWizard"
  10244. #: flatcamTools/ToolPcbWizard.py:286 flatcamTools/ToolPcbWizard.py:290
  10245. msgid "Load PcbWizard Excellon file"
  10246. msgstr "Carregar o arquivo PcbWizard Excellon"
  10247. #: flatcamTools/ToolPcbWizard.py:309 flatcamTools/ToolPcbWizard.py:313
  10248. msgid "Load PcbWizard INF file"
  10249. msgstr "Carregar arquivo PcbWizard INF"
  10250. #: flatcamTools/ToolPcbWizard.py:360
  10251. msgid ""
  10252. "[ERROR] The INF file does not contain the tool table.\n"
  10253. "Try to open the Excellon file from File -> Open -> Excellon\n"
  10254. "and edit the drill diameters manually."
  10255. msgstr ""
  10256. "[ERROR] O arquivo INF não contém a tabela de ferramentas.\n"
  10257. "Tente abrir o arquivo Excellon em Arquivo -> Abrir -> Excellon\n"
  10258. "e edite os diâmetros das brocas manualmente."
  10259. #: flatcamTools/ToolPcbWizard.py:380
  10260. msgid "[success] PcbWizard .INF file loaded."
  10261. msgstr "[success] Arquivo PcbWizard .INF carregado."
  10262. #: flatcamTools/ToolPcbWizard.py:384
  10263. msgid "[success] Main PcbWizard Excellon file loaded."
  10264. msgstr "[success] Arquivo PcbWizard Excellon carregado."
  10265. #: flatcamTools/ToolPcbWizard.py:421
  10266. #, python-format
  10267. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  10268. msgstr "[ERROR_NOTCL] Não é possível analisar o arquivo: %s"
  10269. #: flatcamTools/ToolPcbWizard.py:445
  10270. msgid "Importing Excellon."
  10271. msgstr "Importando Excellon."
  10272. #: flatcamTools/ToolPcbWizard.py:452
  10273. msgid "[ERROR_NOTCL] Import Excellon file failed."
  10274. msgstr "[ERROR_NOTCL] Falha na importação do arquivo Excellon."
  10275. #: flatcamTools/ToolPcbWizard.py:459
  10276. #, python-format
  10277. msgid "[success] Imported: %s"
  10278. msgstr "[success] Importado: %s"
  10279. #: flatcamTools/ToolPcbWizard.py:462
  10280. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  10281. msgstr ""
  10282. "[WARNING_NOTCL] A fusão do Excellon está em andamento. Por favor, espere..."
  10283. #: flatcamTools/ToolPcbWizard.py:464
  10284. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  10285. msgstr "[ERROR_NOTCL] O arquivo Excellon importado é None."
  10286. #: flatcamTools/ToolProperties.py:103
  10287. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  10288. msgstr ""
  10289. "[ERROR_NOTCL] A ferramenta de propriedades não foi exibida. Nenhum objeto "
  10290. "selecionado."
  10291. #: flatcamTools/ToolProperties.py:110
  10292. msgid "[success] Object Properties are displayed."
  10293. msgstr "[success] Propriedades do Objeto exibidas."
  10294. #: flatcamTools/ToolProperties.py:111
  10295. msgid "Properties Tool"
  10296. msgstr "Propriedades de Ferramenta"
  10297. #: flatcamTools/ToolShell.py:69
  10298. msgid "...proccessing..."
  10299. msgstr "...processando..."
  10300. #: flatcamTools/ToolShell.py:71
  10301. #, python-format
  10302. msgid "...proccessing... [%s]"
  10303. msgstr "...processando... [%s]"
  10304. #: flatcamTools/ToolSolderPaste.py:37
  10305. msgid "Solder Paste Tool"
  10306. msgstr "Pasta de Solda"
  10307. #: flatcamTools/ToolSolderPaste.py:65
  10308. msgid "Gerber Solder paste object. "
  10309. msgstr "Objeto Gerber de Pasta de Solda. "
  10310. #: flatcamTools/ToolSolderPaste.py:72
  10311. msgid ""
  10312. "Tools pool from which the algorithm\n"
  10313. "will pick the ones used for dispensing solder paste."
  10314. msgstr ""
  10315. "Conjunto de ferramentas a partir do qual o algoritmo selecionará as usadas "
  10316. "para distribuir pasta de solda."
  10317. #: flatcamTools/ToolSolderPaste.py:87
  10318. msgid ""
  10319. "This is the Tool Number.\n"
  10320. "The solder dispensing will start with the tool with the biggest \n"
  10321. "diameter, continuing until there are no more Nozzle tools.\n"
  10322. "If there are no longer tools but there are still pads not covered\n"
  10323. " with solder paste, the app will issue a warning message box."
  10324. msgstr ""
  10325. "Este é o número da ferramenta.\n"
  10326. "A colocação de pasta de solda começa com a ferramenta com o maior diâmetro,\n"
  10327. "continuando até que não haja mais ferramentas do bico.\n"
  10328. "Se não houver mais ferramentas, mas ainda houver blocos não cobertos\n"
  10329. "com pasta de solda, o aplicativo emitirá uma caixa de mensagem de aviso."
  10330. #: flatcamTools/ToolSolderPaste.py:94
  10331. msgid ""
  10332. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  10333. "is the width of the solder paste dispensed."
  10334. msgstr ""
  10335. "Diâmetro do bico da ferramenta. É o valor (em unidades FlatCAM atuais)\n"
  10336. "da largura da pasta de solda dispensada."
  10337. #: flatcamTools/ToolSolderPaste.py:101
  10338. msgid "New Nozzle Tool"
  10339. msgstr "Nova Ferramenta de Bico"
  10340. #: flatcamTools/ToolSolderPaste.py:117
  10341. msgid ""
  10342. "Add a new nozzle tool to the Tool Table\n"
  10343. "with the diameter specified above."
  10344. msgstr ""
  10345. "Adiciona uma nova ferramenta de bico à tabela de ferramentas\n"
  10346. "com o diâmetro especificado acima."
  10347. #: flatcamTools/ToolSolderPaste.py:129
  10348. msgid "Generate solder paste dispensing geometry."
  10349. msgstr "Gerar geometria de distribuição de pasta de solda."
  10350. #: flatcamTools/ToolSolderPaste.py:142
  10351. msgid "STEP 1:"
  10352. msgstr "PASSO 1:"
  10353. #: flatcamTools/ToolSolderPaste.py:144
  10354. msgid ""
  10355. "First step is to select a number of nozzle tools for usage\n"
  10356. "and then optionally modify the GCode parameters bellow."
  10357. msgstr ""
  10358. "O primeiro passo é selecionar um número de ferramentas de bico para usar,\n"
  10359. "e opcionalmente, modificar os parâmetros do G-Code abaixo."
  10360. #: flatcamTools/ToolSolderPaste.py:147
  10361. msgid ""
  10362. "Select tools.\n"
  10363. "Modify parameters."
  10364. msgstr ""
  10365. "Selecione ferramentas.\n"
  10366. "Modifique os parâmetros."
  10367. #: flatcamTools/ToolSolderPaste.py:235
  10368. msgid ""
  10369. "Feedrate (speed) while moving up vertically\n"
  10370. " to Dispense position (on Z plane)."
  10371. msgstr ""
  10372. "Avanço (velocidade) enquanto sobe verticalmente\n"
  10373. "para a posição Dispensar (no plano Z)."
  10374. #: flatcamTools/ToolSolderPaste.py:289
  10375. msgid "Generate GCode"
  10376. msgstr "Gerar o G-Code"
  10377. #: flatcamTools/ToolSolderPaste.py:291
  10378. msgid ""
  10379. "Generate GCode for Solder Paste dispensing\n"
  10380. "on PCB pads."
  10381. msgstr ""
  10382. "Gera o G-Code para dispensar pasta de solda\n"
  10383. "nos pads de PCB."
  10384. #: flatcamTools/ToolSolderPaste.py:306
  10385. msgid "STEP 2:"
  10386. msgstr "PASSO 2:"
  10387. #: flatcamTools/ToolSolderPaste.py:308
  10388. msgid ""
  10389. "Second step is to create a solder paste dispensing\n"
  10390. "geometry out of an Solder Paste Mask Gerber file."
  10391. msgstr ""
  10392. "O segundo passo é criar uma geometria de distribuição de pasta de solda\n"
  10393. "de um arquivo Gerber Máscara de Pasta de Solda."
  10394. #: flatcamTools/ToolSolderPaste.py:324
  10395. msgid "Geo Result:"
  10396. msgstr "Geo Result:"
  10397. #: flatcamTools/ToolSolderPaste.py:326
  10398. msgid ""
  10399. "Geometry Solder Paste object.\n"
  10400. "The name of the object has to end in:\n"
  10401. "'_solderpaste' as a protection."
  10402. msgstr ""
  10403. "Objeto de Geometria Pasta de Solda.\n"
  10404. "Como proteção, o nome do objeto deve terminar com: \n"
  10405. "'_solderpaste'."
  10406. #: flatcamTools/ToolSolderPaste.py:335
  10407. msgid "STEP 3:"
  10408. msgstr "PASSO 3:"
  10409. #: flatcamTools/ToolSolderPaste.py:337
  10410. msgid ""
  10411. "Third step is to select a solder paste dispensing geometry,\n"
  10412. "and then generate a CNCJob object.\n"
  10413. "\n"
  10414. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10415. "first you need to generate a geometry with those new params,\n"
  10416. "and only after that you can generate an updated CNCJob."
  10417. msgstr ""
  10418. "O terceiro passo é selecionar uma geometria dispensadora de pasta de solda,\n"
  10419. "e então gerar um objeto de Trabalho CNC.\n"
  10420. "\n"
  10421. "LEMBRE: se você quiser criar um Trabalho CNC com novos parâmetros,\n"
  10422. " primeiro você precisa gerar uma geometria com esses novos parâmetros,\n"
  10423. "e só depois disso você pode gerar um Trabalho CNC atualizado."
  10424. #: flatcamTools/ToolSolderPaste.py:357
  10425. msgid "CNC Result:"
  10426. msgstr "Resultado CNC:"
  10427. #: flatcamTools/ToolSolderPaste.py:359
  10428. msgid ""
  10429. "CNCJob Solder paste object.\n"
  10430. "In order to enable the GCode save section,\n"
  10431. "the name of the object has to end in:\n"
  10432. "'_solderpaste' as a protection."
  10433. msgstr ""
  10434. "Objeto Trabalho CNC Pasta de Solda.\n"
  10435. "Como proteção, para habilitar a seção de salvar o G-Code,\n"
  10436. "o nome do objeto tem que terminar com:\n"
  10437. "'_solderpaste'."
  10438. #: flatcamTools/ToolSolderPaste.py:369
  10439. msgid "View GCode"
  10440. msgstr "Ver G-Code"
  10441. #: flatcamTools/ToolSolderPaste.py:371
  10442. msgid ""
  10443. "View the generated GCode for Solder Paste dispensing\n"
  10444. "on PCB pads."
  10445. msgstr ""
  10446. "Ver o G-Code gerado para dispensação de pasta de solda\n"
  10447. "nos pads de PCB."
  10448. #: flatcamTools/ToolSolderPaste.py:375
  10449. msgid "Save GCode"
  10450. msgstr "Salvar o G-Code"
  10451. #: flatcamTools/ToolSolderPaste.py:377
  10452. msgid ""
  10453. "Save the generated GCode for Solder Paste dispensing\n"
  10454. "on PCB pads, to a file."
  10455. msgstr ""
  10456. "Salva o G-Code gerado para distribuição de pasta de solda\n"
  10457. "nos pads de PCB, em um arquivo."
  10458. #: flatcamTools/ToolSolderPaste.py:381
  10459. msgid "STEP 4:"
  10460. msgstr "PASSO 4:"
  10461. #: flatcamTools/ToolSolderPaste.py:383
  10462. msgid ""
  10463. "Fourth step (and last) is to select a CNCJob made from \n"
  10464. "a solder paste dispensing geometry, and then view/save it's GCode."
  10465. msgstr ""
  10466. "O quarto (e último) passo é selecionar um Trabalho CNC feito de\n"
  10467. "uma geometria de distribuição de pasta de solda e, em seguida, visualizar/"
  10468. "salvar o G-Code."
  10469. #: flatcamTools/ToolSolderPaste.py:412
  10470. msgid "Delete Object"
  10471. msgstr "Excluir Objeto"
  10472. #: flatcamTools/ToolSolderPaste.py:788
  10473. msgid ""
  10474. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10475. msgstr ""
  10476. "[WARNING_NOTCL] Adição de ferramenta Bocal cancelada. Ferramenta já está na "
  10477. "Tabela de Ferramentas."
  10478. #: flatcamTools/ToolSolderPaste.py:793
  10479. msgid "[success] New Nozzle tool added to Tool Table."
  10480. msgstr "[success] Nova Ferramenta Bocal adicionada à tabela de ferramentas."
  10481. #: flatcamTools/ToolSolderPaste.py:835
  10482. msgid "[success] Nozzle tool from Tool Table was edited."
  10483. msgstr "[success] A ferramenta do bocal da tabela de ferramentas foi editada."
  10484. #: flatcamTools/ToolSolderPaste.py:892
  10485. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10486. msgstr ""
  10487. "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta bico para excluir."
  10488. #: flatcamTools/ToolSolderPaste.py:897
  10489. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  10490. msgstr "[success] Ferramenta(s) de bico excluída(s) da tabela de ferramentas."
  10491. #: flatcamTools/ToolSolderPaste.py:952
  10492. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10493. msgstr ""
  10494. "[WARNING_NOTCL] Nenhum objeto Gerber de máscara de Pasta de Solda carregado."
  10495. #: flatcamTools/ToolSolderPaste.py:970
  10496. msgid "Creating Solder Paste dispensing geometry."
  10497. msgstr "Criação da geometria de distribuição da pasta de solda."
  10498. #: flatcamTools/ToolSolderPaste.py:982
  10499. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10500. msgstr "[WARNING_NOTCL] Nenhuma ferramenta de Bico na tabela de ferramentas."
  10501. #: flatcamTools/ToolSolderPaste.py:1111
  10502. msgid "[success] Solder Paste geometry generated successfully..."
  10503. msgstr "[success] Geometria da pasta de solda gerada com sucesso ..."
  10504. #: flatcamTools/ToolSolderPaste.py:1117
  10505. msgid ""
  10506. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10507. "diameters..."
  10508. msgstr ""
  10509. "[WARNING_NOTCL] Alguns ou todos os pads não possuem pasta de solda devido a "
  10510. "diâmetros inadequados dos bicos..."
  10511. #: flatcamTools/ToolSolderPaste.py:1131
  10512. msgid "Generating Solder Paste dispensing geometry..."
  10513. msgstr "Gerando geometria dispensadora de Pasta de Solda ..."
  10514. #: flatcamTools/ToolSolderPaste.py:1151
  10515. msgid "[WARNING_NOTCL] There is no Geometry object available."
  10516. msgstr "[WARNING_NOTCL] Não há objeto de Geometria disponível."
  10517. #: flatcamTools/ToolSolderPaste.py:1155
  10518. msgid ""
  10519. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10520. "geometry."
  10521. msgstr ""
  10522. "[WARNING_NOTCL] Esta geometria não pode ser processada. NÃO é uma geometria "
  10523. "solder_paste_tool."
  10524. #: flatcamTools/ToolSolderPaste.py:1261
  10525. #, python-format
  10526. msgid "[success] ToolSolderPaste CNCjob created: %s"
  10527. msgstr "[success] Trabalho CNC para Ferramenta de Pasta de Solda criado: %s"
  10528. #: flatcamTools/ToolSolderPaste.py:1293 flatcamTools/ToolSolderPaste.py:1297
  10529. #: flatcamTools/ToolSolderPaste.py:1349
  10530. msgid ""
  10531. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10532. "solder_paste_tool CNCJob object."
  10533. msgstr ""
  10534. "[WARNING_NOTCL] Este objeto Trabalho CNC não pode ser processado. NÃO é um "
  10535. "objeto solder_paste_tool."
  10536. #: flatcamTools/ToolSolderPaste.py:1321
  10537. msgid "[ERROR_NOTCL] No Gcode in the object..."
  10538. msgstr "[ERROR_NOTCL] Nenhum G-Code no objeto ..."
  10539. #: flatcamTools/ToolSolderPaste.py:1330
  10540. #, python-format
  10541. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10542. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10543. #: flatcamTools/ToolSolderPaste.py:1359
  10544. msgid "Export GCode ..."
  10545. msgstr "Exportar G-Code ..."
  10546. #: flatcamTools/ToolSolderPaste.py:1399
  10547. #, python-format
  10548. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  10549. msgstr ""
  10550. "[success] Arquivo G-Code com dispensador de pasta de solda salvo em: %s"
  10551. #: flatcamTools/ToolSub.py:55
  10552. msgid "<b>Gerber Objects</b>"
  10553. msgstr "<b>Objetos Gerber</b>"
  10554. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  10555. msgid "Target:"
  10556. msgstr "Alvo:"
  10557. #: flatcamTools/ToolSub.py:66
  10558. msgid ""
  10559. "Gerber object from which to substract\n"
  10560. "the substractor Gerber object."
  10561. msgstr ""
  10562. "Objeto Gerber do qual subtrair\n"
  10563. "o objeto Gerber substrator."
  10564. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  10565. msgid "Substractor:"
  10566. msgstr "Substrator:"
  10567. #: flatcamTools/ToolSub.py:80
  10568. msgid ""
  10569. "Gerber object that will be substracted\n"
  10570. "from the target Gerber object."
  10571. msgstr ""
  10572. "Objeto Gerber que será subtraído\n"
  10573. "do objeto Gerber de destino."
  10574. #: flatcamTools/ToolSub.py:87
  10575. msgid "Substract Gerber"
  10576. msgstr "Gerber Substrator"
  10577. #: flatcamTools/ToolSub.py:89
  10578. msgid ""
  10579. "Will remove the area occupied by the substractor\n"
  10580. "Gerber from the Target Gerber.\n"
  10581. "Can be used to remove the overlapping silkscreen\n"
  10582. "over the soldermask."
  10583. msgstr ""
  10584. "Removerá a área ocupada pelo Gerber substrator\n"
  10585. "do Gerber de destino.\n"
  10586. "Pode ser usado para remover a serigrafia sobreposta\n"
  10587. "sobre a máscara de solda."
  10588. #: flatcamTools/ToolSub.py:101
  10589. msgid "<b>Geometry Objects</b>"
  10590. msgstr "<b>Objetos de Geometria</b>"
  10591. #: flatcamTools/ToolSub.py:112
  10592. msgid ""
  10593. "Geometry object from which to substract\n"
  10594. "the substractor Geometry object."
  10595. msgstr ""
  10596. "Objeto de geometria a partir do qual subtrair\n"
  10597. "o objeto de geometria do substrator."
  10598. #: flatcamTools/ToolSub.py:126
  10599. msgid ""
  10600. "Geometry object that will be substracted\n"
  10601. "from the target Geometry object."
  10602. msgstr ""
  10603. "Objeto de geometria que será subtraído\n"
  10604. "do objeto de geometria de destino."
  10605. #: flatcamTools/ToolSub.py:133
  10606. msgid "Substract Geometry"
  10607. msgstr "Geometria Substrator"
  10608. #: flatcamTools/ToolSub.py:135
  10609. msgid ""
  10610. "Will remove the area occupied by the substractor\n"
  10611. "Geometry from the Target Geometry."
  10612. msgstr ""
  10613. "Removerá a área ocupada pela geometria substrator\n"
  10614. "da Geometria de destino."
  10615. #: flatcamTools/ToolSub.py:216
  10616. msgid "Sub Tool"
  10617. msgstr "Ferramenta Sub"
  10618. #: flatcamTools/ToolSub.py:231 flatcamTools/ToolSub.py:424
  10619. msgid "[ERROR_NOTCL] No Target object loaded."
  10620. msgstr "[ERROR_NOTCL] Nenhum objeto de destino foi carregado."
  10621. #: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:437
  10622. msgid "[ERROR_NOTCL] No Substractor object loaded."
  10623. msgstr "[ERROR_NOTCL] Nenhum objeto Substrator carregado."
  10624. #: flatcamTools/ToolSub.py:297
  10625. #, python-format
  10626. msgid "Parsing aperture %s geometry ..."
  10627. msgstr "Analisando a geometria de abertura %s ..."
  10628. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:544
  10629. msgid "Generating new object ..."
  10630. msgstr "Gerando novo objeto ..."
  10631. #: flatcamTools/ToolSub.py:402 flatcamTools/ToolSub.py:547
  10632. msgid "[ERROR_NOTCL] Generating new object failed."
  10633. msgstr "[ERROR_NOTCL] A geração de novo objeto falhou."
  10634. #: flatcamTools/ToolSub.py:406 flatcamTools/ToolSub.py:552
  10635. #, python-format
  10636. msgid "[success] Created: %s"
  10637. msgstr "[success] Criado: %s"
  10638. #: flatcamTools/ToolSub.py:449
  10639. msgid ""
  10640. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10641. msgstr ""
  10642. "[ERROR_NOTCL] Atualmente, a geometria do Substrator não pode ser do tipo "
  10643. "MultiGeo."
  10644. #: flatcamTools/ToolSub.py:494
  10645. msgid "Parsing solid_geometry ..."
  10646. msgstr "Analisando solid_geometry ..."
  10647. #: flatcamTools/ToolSub.py:496
  10648. #, python-format
  10649. msgid "Parsing tool %s geometry ..."
  10650. msgstr "Analisando a geometria da ferramenta %s ..."
  10651. #: flatcamTools/ToolTransform.py:23
  10652. msgid "Object Transform"
  10653. msgstr "Transformação de Objeto"
  10654. #: flatcamTools/ToolTransform.py:84
  10655. msgid ""
  10656. "Rotate the selected object(s).\n"
  10657. "The point of reference is the middle of\n"
  10658. "the bounding box for all selected objects."
  10659. msgstr ""
  10660. "Gira o(s) objeto(s) selecionado(s).\n"
  10661. "O ponto de referência é o meio da\n"
  10662. "caixa delimitadora para todos os objetos selecionados."
  10663. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10664. msgid ""
  10665. "Skew/shear the selected object(s).\n"
  10666. "The point of reference is the middle of\n"
  10667. "the bounding box for all selected objects."
  10668. msgstr ""
  10669. "Inclinar/distorcer o(s) objeto(s) selecionado(s).\n"
  10670. "O ponto de referência é o meio da\n"
  10671. "caixa delimitadora para todos os objetos selecionados."
  10672. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10673. msgid ""
  10674. "Scale the selected object(s).\n"
  10675. "The point of reference depends on \n"
  10676. "the Scale reference checkbox state."
  10677. msgstr ""
  10678. "Redimensiona o(s) objeto(s) selecionado(s).\n"
  10679. "O ponto de referência depende\n"
  10680. "do estado da caixa de seleção Escala de referência."
  10681. #: flatcamTools/ToolTransform.py:202
  10682. msgid ""
  10683. "Scale the selected object(s)\n"
  10684. "using the Scale Factor X for both axis."
  10685. msgstr ""
  10686. "Redimensiona o(s) objeto(s) selecionado(s) usando o\n"
  10687. "Fator de Escala X para ambos os eixos."
  10688. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  10689. msgid ""
  10690. "Offset the selected object(s).\n"
  10691. "The point of reference is the middle of\n"
  10692. "the bounding box for all selected objects.\n"
  10693. msgstr ""
  10694. "Desloca o(s) objeto(s) selecionado(s).\n"
  10695. "O ponto de referência é o meio da\n"
  10696. "caixa delimitadora para todos os objetos selecionados.\n"
  10697. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  10698. msgid ""
  10699. "Flip the selected object(s) over the X axis.\n"
  10700. "Does not create a new object.\n"
  10701. " "
  10702. msgstr ""
  10703. "Espelha o(s) objeto(s) selecionado(s) no eixo X.\n"
  10704. "Não cria um novo objeto.\n"
  10705. " "
  10706. #: flatcamTools/ToolTransform.py:636
  10707. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10708. msgstr ""
  10709. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10710. "para girar!"
  10711. #: flatcamTools/ToolTransform.py:664
  10712. msgid "CNCJob objects can't be rotated."
  10713. msgstr "Objetos Trabalho CNC não podem ser girados."
  10714. #: flatcamTools/ToolTransform.py:672
  10715. msgid "[success] Rotate done ..."
  10716. msgstr "[success] Giro pronto ..."
  10717. #: flatcamTools/ToolTransform.py:687
  10718. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10719. msgstr ""
  10720. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10721. "para espelhar!"
  10722. #: flatcamTools/ToolTransform.py:722
  10723. msgid "CNCJob objects can't be mirrored/flipped."
  10724. msgstr "Objetos Trabalho CNC não podem ser espelhados/invertidos."
  10725. #: flatcamTools/ToolTransform.py:756
  10726. msgid ""
  10727. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10728. msgstr ""
  10729. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10730. "para inclinar!"
  10731. #: flatcamTools/ToolTransform.py:778
  10732. msgid "CNCJob objects can't be skewed."
  10733. msgstr "Objetos Trabalho CNC não podem ser inclinados."
  10734. #: flatcamTools/ToolTransform.py:805
  10735. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10736. msgstr ""
  10737. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10738. "para redimensionar!"
  10739. #: flatcamTools/ToolTransform.py:838
  10740. msgid "CNCJob objects can't be scaled."
  10741. msgstr "Objetos Trabalho CNC não podem ser redimensionados."
  10742. #: flatcamTools/ToolTransform.py:857
  10743. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10744. msgstr ""
  10745. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10746. "para deslocar!"
  10747. #: flatcamTools/ToolTransform.py:866
  10748. msgid "CNCJob objects can't be offseted."
  10749. msgstr "Objetos Trabalho CNC não podem ser deslocados."
  10750. #~ msgid "Tool dia: "
  10751. #~ msgstr "Diâmetro da Ferramenta "
  10752. #~ msgid ""
  10753. #~ "The diameter of the cutting\n"
  10754. #~ "tool.."
  10755. #~ msgstr ""
  10756. #~ "Diâmetro da ferramenta de\n"
  10757. #~ "corte.."
  10758. #~ msgid "Disable"
  10759. #~ msgstr "Desabilitar"
  10760. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  10761. #~ msgstr "[WARNING_NOTCL] Mover cancelado. Nenhuma forma selecionada."
  10762. #~ msgid "Click on the Destination point..."
  10763. #~ msgstr "Clique no ponto de Destino..."
  10764. #~ msgid "Copy as &Geom"
  10765. #~ msgstr "Copiar como &Geom"
  10766. #~ msgid "Ap. Scale Factor:"
  10767. #~ msgstr "Ap. Fator de Escala:"
  10768. #~ msgid ""
  10769. #~ "Change the size of the selected apertures.\n"
  10770. #~ "Factor by which to multiply\n"
  10771. #~ "geometric features of this object."
  10772. #~ msgstr ""
  10773. #~ "Altera o tamanho da abertura selecionada.\n"
  10774. #~ "Fator para multiplicar a\n"
  10775. #~ "geometria do objeto."
  10776. #~ msgid "Ap. Buffer Factor:"
  10777. #~ msgstr "Ap. Fator Buffer:"
  10778. #~ msgid ""
  10779. #~ "Change the size of the selected apertures.\n"
  10780. #~ "Factor by which to expand/shrink\n"
  10781. #~ "geometric features of this object."
  10782. #~ msgstr ""
  10783. #~ "Altera o tamanho da abertura selecionada.\n"
  10784. #~ "Fator para expandir/inclinar a\n"
  10785. #~ "geometria do objeto."
  10786. #~ msgid "[WARNING]No object Box. Using instead %s"
  10787. #~ msgstr "[WARNING]Sem Caixa de objeto. Usando %s"
  10788. #~ msgid "Path"
  10789. #~ msgstr "Caminho"
  10790. #~ msgid "In"
  10791. #~ msgstr "Dentro"
  10792. #~ msgid "Out"
  10793. #~ msgstr "Fora"
  10794. #~ msgid "Custom"
  10795. #~ msgstr "Personalizado"
  10796. #~ msgid "Copy Drill(s)"
  10797. #~ msgstr "Copiar Broca(s)"
  10798. #~ msgid "CTRL"
  10799. #~ msgstr "CTRL"
  10800. #~ msgid "SHIFT"
  10801. #~ msgstr "SHIFT"
  10802. #~ msgid "Both"
  10803. #~ msgstr "Ambos"
  10804. #~ msgid "Pos"
  10805. #~ msgstr "Pos"
  10806. #~ msgid "Neg"
  10807. #~ msgstr "Neg"
  10808. #~ msgid "Solid "
  10809. #~ msgstr "Sólido "
  10810. #~ msgid "M-Color "
  10811. #~ msgstr "M-Cores "
  10812. #~ msgid "Done."
  10813. #~ msgstr "Pronto."
  10814. #~ msgid "Click on CENTER ..."
  10815. #~ msgstr "Clique no CENTRO ..."
  10816. #~ msgid "[success] Done. Region completed."
  10817. #~ msgstr "[success] Pronto. Região completa."
  10818. #~ msgid "Add an aperture to the aperture list"
  10819. #~ msgstr "Adicionar uma abertura à lista"
  10820. #~ msgid "Del Aperture:"
  10821. #~ msgstr "Excluir Abertura:"
  10822. #~ msgid ""
  10823. #~ "Delete a aperture in the aperture list.\n"
  10824. #~ "It will delete also the associated geometry."
  10825. #~ msgstr ""
  10826. #~ "Excluir uma abertura da lista.\n"
  10827. #~ "Excluirá a geometria associada."
  10828. #~ msgid "Save && Close Edit"
  10829. #~ msgstr "Salvar && Sair do Editor"
  10830. #~ msgid ""
  10831. #~ "<b>Editor Shortcut list</b><br>\n"
  10832. #~ " <br>\n"
  10833. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10834. #~ "strong><br>\n"
  10835. #~ " \n"
  10836. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10837. #~ "\"width:283px\">\n"
  10838. #~ " <tbody>\n"
  10839. #~ " <tr height=\"20\">\n"
  10840. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10841. #~ "strong></td>\n"
  10842. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10843. #~ " </tr>\n"
  10844. #~ " <tr height=\"20\">\n"
  10845. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10846. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10847. #~ " </tr>\n"
  10848. #~ " <tr height=\"20\">\n"
  10849. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10850. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10851. #~ " </tr>\n"
  10852. #~ " <tr height=\"20\">\n"
  10853. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10854. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10855. #~ " </tr>\n"
  10856. #~ " <tr height=\"20\">\n"
  10857. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10858. #~ " <td>&nbsp;Paint Tool</td>\n"
  10859. #~ " </tr>\n"
  10860. #~ " <tr height=\"20\">\n"
  10861. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10862. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10863. #~ " </tr>\n"
  10864. #~ " <tr height=\"20\">\n"
  10865. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10866. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10867. #~ " </tr>\n"
  10868. #~ " <tr height=\"20\">\n"
  10869. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10870. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10871. #~ " </tr>\n"
  10872. #~ " <tr height=\"20\">\n"
  10873. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10874. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10875. #~ " </tr>\n"
  10876. #~ " <tr height=\"20\">\n"
  10877. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10878. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10879. #~ " </tr>\n"
  10880. #~ " <tr height=\"20\">\n"
  10881. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10882. #~ " <td>&nbsp;Draw a Path</td>\n"
  10883. #~ " </tr>\n"
  10884. #~ " <tr height=\"20\">\n"
  10885. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10886. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10887. #~ " </tr>\n"
  10888. #~ " <tr height=\"20\">\n"
  10889. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10890. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10891. #~ " </tr>\n"
  10892. #~ " <tr height=\"20\">\n"
  10893. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10894. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10895. #~ " </tr>\n"
  10896. #~ " <tr height=\"20\">\n"
  10897. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10898. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10899. #~ " </tr>\n"
  10900. #~ " <tr height=\"20\">\n"
  10901. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10902. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10903. #~ " </tr>\n"
  10904. #~ " <tr height=\"20\">\n"
  10905. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10906. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  10907. #~ " </tr>\n"
  10908. #~ " <tr height=\"20\">\n"
  10909. #~ " <td height=\"20\">&nbsp;</td>\n"
  10910. #~ " <td>&nbsp;</td>\n"
  10911. #~ " </tr>\n"
  10912. #~ " <tr height=\"20\">\n"
  10913. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  10914. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10915. #~ " </tr>\n"
  10916. #~ " <tr height=\"20\">\n"
  10917. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10918. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10919. #~ " </tr>\n"
  10920. #~ " <tr height=\"20\">\n"
  10921. #~ " <td height=\"20\">&nbsp;</td>\n"
  10922. #~ " <td>&nbsp;</td>\n"
  10923. #~ " </tr>\n"
  10924. #~ " <tr height=\"20\">\n"
  10925. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10926. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10927. #~ " </tr>\n"
  10928. #~ " <tr height=\"20\">\n"
  10929. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10930. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10931. #~ " </tr>\n"
  10932. #~ " <tr height=\"20\">\n"
  10933. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10934. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10935. #~ " </tr>\n"
  10936. #~ " <tr height=\"20\">\n"
  10937. #~ " <td height=\"20\">&nbsp;</td>\n"
  10938. #~ " <td>&nbsp;</td>\n"
  10939. #~ " </tr>\n"
  10940. #~ " <tr height=\"20\">\n"
  10941. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10942. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10943. #~ " </tr>\n"
  10944. #~ " <tr height=\"20\">\n"
  10945. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10946. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10947. #~ " </tr>\n"
  10948. #~ " <tr height=\"20\">\n"
  10949. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10950. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10951. #~ " </tr>\n"
  10952. #~ " <tr height=\"20\">\n"
  10953. #~ " <td height=\"20\">&nbsp;</td>\n"
  10954. #~ " <td>&nbsp;</td>\n"
  10955. #~ " </tr>\n"
  10956. #~ " <tr height=\"20\">\n"
  10957. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10958. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10959. #~ " </tr>\n"
  10960. #~ " <tr height=\"20\">\n"
  10961. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10962. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10963. #~ " </tr>\n"
  10964. #~ " <tr height=\"20\">\n"
  10965. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10966. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10967. #~ " </tr>\n"
  10968. #~ " <tr height=\"20\">\n"
  10969. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10970. #~ " <td>&nbsp;Delete Shape</td>\n"
  10971. #~ " </tr>\n"
  10972. #~ " </tbody>\n"
  10973. #~ " </table>\n"
  10974. #~ " <br>\n"
  10975. #~ " <br>\n"
  10976. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10977. #~ "strong><br>\n"
  10978. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10979. #~ "\"width:283px\">\n"
  10980. #~ " <tbody>\n"
  10981. #~ " <tr height=\"20\">\n"
  10982. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10983. #~ "strong></td>\n"
  10984. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10985. #~ " </tr>\n"
  10986. #~ " <tr height=\"20\">\n"
  10987. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10988. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  10989. #~ " </tr>\n"
  10990. #~ " <tr height=\"20\">\n"
  10991. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  10992. #~ " <td>&nbsp;Add Drill</td>\n"
  10993. #~ " </tr>\n"
  10994. #~ " <tr height=\"20\">\n"
  10995. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10996. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10997. #~ " </tr>\n"
  10998. #~ " <tr height=\"20\">\n"
  10999. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11000. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11001. #~ " </tr>\n"
  11002. #~ " <tr height=\"20\">\n"
  11003. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11004. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11005. #~ " </tr>\n"
  11006. #~ " <tr height=\"20\">\n"
  11007. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11008. #~ " <td>&nbsp;Add a new Tool</td>\n"
  11009. #~ " </tr>\n"
  11010. #~ " <tr height=\"20\">\n"
  11011. #~ " <td height=\"20\">&nbsp;</td>\n"
  11012. #~ " <td>&nbsp;</td>\n"
  11013. #~ " </tr>\n"
  11014. #~ " <tr height=\"20\">\n"
  11015. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11016. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11017. #~ " </tr>\n"
  11018. #~ " <tr height=\"20\">\n"
  11019. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11020. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11021. #~ " </tr>\n"
  11022. #~ " <tr height=\"20\">\n"
  11023. #~ " <td height=\"20\">&nbsp;</td>\n"
  11024. #~ " <td>&nbsp;</td>\n"
  11025. #~ " </tr>\n"
  11026. #~ " <tr height=\"20\">\n"
  11027. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11028. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11029. #~ " </tr>\n"
  11030. #~ " <tr height=\"20\">\n"
  11031. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11032. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11033. #~ " </tr>\n"
  11034. #~ " </tbody>\n"
  11035. #~ " </table>\n"
  11036. #~ " "
  11037. #~ msgstr ""
  11038. #~ "<b>Lista de Atalhos dos Editores</b><br>\n"
  11039. #~ " <br>\n"
  11040. #~ " <strong><span style=\"color:#0000ff\">EDITOR GEOMETRIA</"
  11041. #~ "span></strong><br>\n"
  11042. #~ " \n"
  11043. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11044. #~ "\"width:283px\">\n"
  11045. #~ " <tbody>\n"
  11046. #~ " <tr height=\"20\">\n"
  11047. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11048. #~ "strong></td>\n"
  11049. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  11050. #~ " </tr>\n"
  11051. #~ " <tr height=\"20\">\n"
  11052. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  11053. #~ " <td>&nbsp;Buffer Tool</td>\n"
  11054. #~ " </tr>\n"
  11055. #~ " <tr height=\"20\">\n"
  11056. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11057. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  11058. #~ " </tr>\n"
  11059. #~ " <tr height=\"20\">\n"
  11060. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  11061. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  11062. #~ " </tr>\n"
  11063. #~ " <tr height=\"20\">\n"
  11064. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  11065. #~ " <td>&nbsp;Paint Tool</td>\n"
  11066. #~ " </tr>\n"
  11067. #~ " <tr height=\"20\">\n"
  11068. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11069. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11070. #~ " </tr>\n"
  11071. #~ " <tr height=\"20\">\n"
  11072. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  11073. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  11074. #~ " </tr>\n"
  11075. #~ " <tr height=\"20\">\n"
  11076. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11077. #~ " <td>&nbsp;Move Geo Item</td>\n"
  11078. #~ " </tr>\n"
  11079. #~ " <tr height=\"20\">\n"
  11080. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  11081. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  11082. #~ " </tr>\n"
  11083. #~ " <tr height=\"20\">\n"
  11084. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  11085. #~ " <td>&nbsp;Draw a Circle</td>\n"
  11086. #~ " </tr>\n"
  11087. #~ " <tr height=\"20\">\n"
  11088. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  11089. #~ " <td>&nbsp;Draw a Path</td>\n"
  11090. #~ " </tr>\n"
  11091. #~ " <tr height=\"20\">\n"
  11092. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11093. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  11094. #~ " </tr>\n"
  11095. #~ " <tr height=\"20\">\n"
  11096. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  11097. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  11098. #~ " </tr>\n"
  11099. #~ " <tr height=\"20\">\n"
  11100. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11101. #~ " <td>&nbsp;Add Text Tool</td>\n"
  11102. #~ " </tr>\n"
  11103. #~ " <tr height=\"20\">\n"
  11104. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  11105. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  11106. #~ " </tr>\n"
  11107. #~ " <tr height=\"20\">\n"
  11108. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  11109. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  11110. #~ " </tr>\n"
  11111. #~ " <tr height=\"20\">\n"
  11112. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  11113. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  11114. #~ " </tr>\n"
  11115. #~ " <tr height=\"20\">\n"
  11116. #~ " <td height=\"20\">&nbsp;</td>\n"
  11117. #~ " <td>&nbsp;</td>\n"
  11118. #~ " </tr>\n"
  11119. #~ " <tr height=\"20\">\n"
  11120. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  11121. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  11122. #~ " </tr>\n"
  11123. #~ " <tr height=\"20\">\n"
  11124. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  11125. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  11126. #~ " </tr>\n"
  11127. #~ " <tr height=\"20\">\n"
  11128. #~ " <td height=\"20\">&nbsp;</td>\n"
  11129. #~ " <td>&nbsp;</td>\n"
  11130. #~ " </tr>\n"
  11131. #~ " <tr height=\"20\">\n"
  11132. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  11133. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  11134. #~ " </tr>\n"
  11135. #~ " <tr height=\"20\">\n"
  11136. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  11137. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  11138. #~ " </tr>\n"
  11139. #~ " <tr height=\"20\">\n"
  11140. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  11141. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  11142. #~ " </tr>\n"
  11143. #~ " <tr height=\"20\">\n"
  11144. #~ " <td height=\"20\">&nbsp;</td>\n"
  11145. #~ " <td>&nbsp;</td>\n"
  11146. #~ " </tr>\n"
  11147. #~ " <tr height=\"20\">\n"
  11148. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  11149. #~ " <td>&nbsp;Measurement Tool</td>\n"
  11150. #~ " </tr>\n"
  11151. #~ " <tr height=\"20\">\n"
  11152. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11153. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11154. #~ " </tr>\n"
  11155. #~ " <tr height=\"20\">\n"
  11156. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  11157. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  11158. #~ " </tr>\n"
  11159. #~ " <tr height=\"20\">\n"
  11160. #~ " <td height=\"20\">&nbsp;</td>\n"
  11161. #~ " <td>&nbsp;</td>\n"
  11162. #~ " </tr>\n"
  11163. #~ " <tr height=\"20\">\n"
  11164. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  11165. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  11166. #~ " </tr>\n"
  11167. #~ " <tr height=\"20\">\n"
  11168. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  11169. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  11170. #~ " </tr>\n"
  11171. #~ " <tr height=\"20\">\n"
  11172. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11173. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11174. #~ " </tr>\n"
  11175. #~ " <tr height=\"20\">\n"
  11176. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11177. #~ " <td>&nbsp;Delete Shape</td>\n"
  11178. #~ " </tr>\n"
  11179. #~ " </tbody>\n"
  11180. #~ " </table>\n"
  11181. #~ " <br>\n"
  11182. #~ " <br>\n"
  11183. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  11184. #~ "strong><br>\n"
  11185. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11186. #~ "\"width:283px\">\n"
  11187. #~ " <tbody>\n"
  11188. #~ " <tr height=\"20\">\n"
  11189. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11190. #~ "strong></td>\n"
  11191. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  11192. #~ " </tr>\n"
  11193. #~ " <tr height=\"20\">\n"
  11194. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11195. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11196. #~ " </tr>\n"
  11197. #~ " <tr height=\"20\">\n"
  11198. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11199. #~ " <td>&nbsp;Add Drill</td>\n"
  11200. #~ " </tr>\n"
  11201. #~ " <tr height=\"20\">\n"
  11202. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11203. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11204. #~ " </tr>\n"
  11205. #~ " <tr height=\"20\">\n"
  11206. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11207. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11208. #~ " </tr>\n"
  11209. #~ " <tr height=\"20\">\n"
  11210. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11211. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11212. #~ " </tr>\n"
  11213. #~ " <tr height=\"20\">\n"
  11214. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11215. #~ " <td>&nbsp;Add a new Tool</td>\n"
  11216. #~ " </tr>\n"
  11217. #~ " <tr height=\"20\">\n"
  11218. #~ " <td height=\"20\">&nbsp;</td>\n"
  11219. #~ " <td>&nbsp;</td>\n"
  11220. #~ " </tr>\n"
  11221. #~ " <tr height=\"20\">\n"
  11222. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11223. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11224. #~ " </tr>\n"
  11225. #~ " <tr height=\"20\">\n"
  11226. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11227. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11228. #~ " </tr>\n"
  11229. #~ " <tr height=\"20\">\n"
  11230. #~ " <td height=\"20\">&nbsp;</td>\n"
  11231. #~ " <td>&nbsp;</td>\n"
  11232. #~ " </tr>\n"
  11233. #~ " <tr height=\"20\">\n"
  11234. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11235. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11236. #~ " </tr>\n"
  11237. #~ " <tr height=\"20\">\n"
  11238. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11239. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11240. #~ " </tr>\n"
  11241. #~ " </tbody>\n"
  11242. #~ " </table>\n"
  11243. #~ " "
  11244. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  11245. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  11246. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  11247. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  11248. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  11249. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  11250. #~ msgid ""
  11251. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11252. #~ msgstr ""
  11253. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11254. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  11255. #~ msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  11256. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11257. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11258. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11259. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11260. #~ msgid "[success] GUI settings deleted ..."
  11261. #~ msgstr "[success] GUI settings deleted ..."
  11262. #~ msgid "Scale Factor:"
  11263. #~ msgstr "Fator de Escala:"
  11264. #~ msgid "Buffer Factor:"
  11265. #~ msgstr "Fator Buffer:"
  11266. #~ msgid "<b>Generate new Gerber Object:</b>"
  11267. #~ msgstr "<b>Gerar novo objeto Gerber:</b>"
  11268. #~ msgid "Will generate a new Gerber object from the changed apertures."
  11269. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  11270. #~ msgid ""
  11271. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11272. #~ "This new object can then be isolated etc."
  11273. #~ msgstr ""
  11274. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11275. #~ "This new object can then be isolated etc."
  11276. #~ msgid "[success]Flip on the Y axis done ..."
  11277. #~ msgstr "[success]Espelhamento no eixo Y pronto ..."
  11278. #~ msgid "[success]Flip on the X axis done ..."
  11279. #~ msgstr "[success]Espelhamento no eixo X pronto ..."
  11280. #~ msgid "[success]Skew on the %s axis done ..."
  11281. #~ msgstr "[success]Inclinação no eixo %s axis pronta ..."
  11282. #~ msgid "[success]Offset on the %s axis done ..."
  11283. #~ msgstr "[success]Deslocamento no eixo %s axis pronto ..."
  11284. #~ msgid ""
  11285. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11286. #~ "Example:\n"
  11287. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11288. #~ "\n"
  11289. #~ "Adjust the value starting with lower values\n"
  11290. #~ "and increasing it if areas that should be painted are still \n"
  11291. #~ "not painted.\n"
  11292. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11293. #~ "Higher values = slow processing and slow execution on CNC\n"
  11294. #~ "due of too many paths."
  11295. #~ msgstr ""
  11296. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11297. #~ "Example:\n"
  11298. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11299. #~ "\n"
  11300. #~ "Adjust the value starting with lower values\n"
  11301. #~ "and increasing it if areas that should be painted are still \n"
  11302. #~ "not painted.\n"
  11303. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11304. #~ "Higher values = slow processing and slow execution on CNC\n"
  11305. #~ "due of too many paths."
  11306. #~| msgid "z_toolchange = Z coord for Toolchange"
  11307. #~ msgid "z_cut = Z coord for Toolchange"
  11308. #~ msgstr "z_cut = coord Z coord para o corte"
  11309. #~| msgid "z_toolchange = Z coord for Toolchange"
  11310. #~ msgid "z_move = Z coord for Toolchange"
  11311. #~ msgstr "z_move = coord Z para troca de ferramentas"
  11312. #~ msgid "%s/Project_%s"
  11313. #~ msgstr "%s/Projeto_%s"
  11314. #~ msgid "tool_tab"
  11315. #~ msgstr "tool_tab"