strings.po 449 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266
  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 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;Adiciona 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;Alternativo: 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;Alternativo: 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;Alternativo: 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+E</strong></td>\n"
  5440. " <td>&nbsp;Ferramenta Apagador</td>\n"
  5441. " </tr>\n"
  5442. " <tr height=\"20\">\n"
  5443. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5444. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5445. " </tr>\n"
  5446. " <tr height=\"20\">\n"
  5447. " <td height=\"20\">&nbsp;</td>\n"
  5448. " <td>&nbsp;</td>\n"
  5449. " </tr>\n"
  5450. " <tr height=\"20\">\n"
  5451. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5452. " <td>&nbsp;Ferramenta Marcar Área</td>\n"
  5453. " </tr>\n"
  5454. " <tr height=\"20\">\n"
  5455. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5456. " <td>&nbsp;Ferramenta Transformar em Polígono</td>\n"
  5457. " </tr>\n"
  5458. " <tr height=\"20\">\n"
  5459. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5460. " <td>&nbsp;Ferramenta de Transformação</td>\n"
  5461. " </tr>\n"
  5462. " </tbody>\n"
  5463. " </table>\n"
  5464. " "
  5465. #: flatcamGUI/FlatCAMGUI.py:1597
  5466. msgid "Toggle Panel"
  5467. msgstr "Alternar Painel"
  5468. #: flatcamGUI/FlatCAMGUI.py:1600
  5469. msgid "New"
  5470. msgstr "Novo"
  5471. #: flatcamGUI/FlatCAMGUI.py:1601
  5472. msgid "Geometry"
  5473. msgstr "Geometria"
  5474. #: flatcamGUI/FlatCAMGUI.py:1603
  5475. msgid "Excellon"
  5476. msgstr "Excellon"
  5477. #: flatcamGUI/FlatCAMGUI.py:1608
  5478. msgid "Grids"
  5479. msgstr "Grades"
  5480. #: flatcamGUI/FlatCAMGUI.py:1610
  5481. msgid "View"
  5482. msgstr "Ver"
  5483. #: flatcamGUI/FlatCAMGUI.py:1612
  5484. msgid "Clear Plot"
  5485. msgstr "Limpar Gráfico"
  5486. #: flatcamGUI/FlatCAMGUI.py:1613
  5487. msgid "Replot"
  5488. msgstr "Redesenhar"
  5489. #: flatcamGUI/FlatCAMGUI.py:1616
  5490. msgid "Geo Editor"
  5491. msgstr "Editor Geométrico"
  5492. #: flatcamGUI/FlatCAMGUI.py:1617
  5493. msgid "Line"
  5494. msgstr "Linha"
  5495. #: flatcamGUI/FlatCAMGUI.py:1618
  5496. msgid "Rectangle"
  5497. msgstr "Retângulo"
  5498. #: flatcamGUI/FlatCAMGUI.py:1619 flatcamGUI/FlatCAMGUI.py:5562
  5499. #: flatcamGUI/ObjectUI.py:1366
  5500. msgid "Cut"
  5501. msgstr "Cortar"
  5502. #: flatcamGUI/FlatCAMGUI.py:1624
  5503. msgid "Pad"
  5504. msgstr "Pad"
  5505. #: flatcamGUI/FlatCAMGUI.py:1625
  5506. msgid "Pad Array"
  5507. msgstr "Matriz de Pads"
  5508. #: flatcamGUI/FlatCAMGUI.py:1626
  5509. msgid "Track"
  5510. msgstr "Trilha"
  5511. #: flatcamGUI/FlatCAMGUI.py:1627
  5512. msgid "Region"
  5513. msgstr "Região"
  5514. #: flatcamGUI/FlatCAMGUI.py:1629
  5515. msgid "Exc Editor"
  5516. msgstr "Editor Exc"
  5517. #: flatcamGUI/FlatCAMGUI.py:1630
  5518. msgid "Add Drill"
  5519. msgstr "Adicionar Broca"
  5520. #: flatcamGUI/FlatCAMGUI.py:1662
  5521. msgid "Print Preview"
  5522. msgstr "Visualizar Impressão"
  5523. #: flatcamGUI/FlatCAMGUI.py:1663
  5524. msgid "Print Code"
  5525. msgstr "Imprimir Código"
  5526. #: flatcamGUI/FlatCAMGUI.py:1664
  5527. msgid "Find in Code"
  5528. msgstr "Encontrar no Código"
  5529. #: flatcamGUI/FlatCAMGUI.py:1669
  5530. msgid "Replace With"
  5531. msgstr "Substituir Por"
  5532. #: flatcamGUI/FlatCAMGUI.py:1673 flatcamGUI/FlatCAMGUI.py:5560
  5533. #: flatcamGUI/FlatCAMGUI.py:6118 flatcamGUI/ObjectUI.py:1364
  5534. #: flatcamTools/ToolPaint.py:248
  5535. msgid "All"
  5536. msgstr "Todos"
  5537. #: flatcamGUI/FlatCAMGUI.py:1675
  5538. msgid ""
  5539. "When checked it will replace all instances in the 'Find' box\n"
  5540. "with the text in the 'Replace' box.."
  5541. msgstr ""
  5542. "Quando marcado, todas as instâncias na caixa 'Localizar'\n"
  5543. "serão substituídas pelo texto na caixa 'Substituir'."
  5544. #: flatcamGUI/FlatCAMGUI.py:1678
  5545. msgid "Open Code"
  5546. msgstr "Abrir Código"
  5547. #: flatcamGUI/FlatCAMGUI.py:1679
  5548. msgid "Save Code"
  5549. msgstr "Salvar Código"
  5550. #: flatcamGUI/FlatCAMGUI.py:1714
  5551. msgid ""
  5552. "Relative neasurement.\n"
  5553. "Reference is last click position"
  5554. msgstr ""
  5555. "Medição relativa.\n"
  5556. "Em referência à posição do último clique"
  5557. #: flatcamGUI/FlatCAMGUI.py:1720
  5558. msgid ""
  5559. "Absolute neasurement.\n"
  5560. "Reference is (X=0, Y= 0) position"
  5561. msgstr ""
  5562. "Medição absoluta.\n"
  5563. " Em referência à posição (X=0, Y=0)"
  5564. #: flatcamGUI/FlatCAMGUI.py:1916
  5565. msgid "Select 'Esc'"
  5566. msgstr "Selecionar 'Esc'"
  5567. #: flatcamGUI/FlatCAMGUI.py:1943
  5568. msgid "Copy Objects"
  5569. msgstr "Copiar Objetos"
  5570. #: flatcamGUI/FlatCAMGUI.py:1945
  5571. msgid "Delete Shape"
  5572. msgstr "Excluir Forma"
  5573. #: flatcamGUI/FlatCAMGUI.py:1950
  5574. msgid "Move Objects"
  5575. msgstr "Mover Objetos"
  5576. #: flatcamGUI/FlatCAMGUI.py:2381
  5577. msgid ""
  5578. "Please first select a geometry item to be cutted\n"
  5579. "then select the geometry item that will be cutted\n"
  5580. "out of the first item. In the end press ~X~ key or\n"
  5581. "the toolbar button."
  5582. msgstr ""
  5583. "Por favor, primeiro selecione um item de geometria a ser cortado\n"
  5584. "e em seguida, selecione o item de geometria que será cortado\n"
  5585. "fora do primeiro item. No final, pressione a tecla ~X~ ou\n"
  5586. "o botão da barra de ferramentas."
  5587. #: flatcamGUI/FlatCAMGUI.py:2388 flatcamGUI/FlatCAMGUI.py:2525
  5588. #: flatcamGUI/FlatCAMGUI.py:2584 flatcamGUI/FlatCAMGUI.py:2604
  5589. msgid "Warning"
  5590. msgstr "Aviso"
  5591. #: flatcamGUI/FlatCAMGUI.py:2455 flatcamGUI/FlatCAMGUI.py:2663
  5592. #: flatcamGUI/FlatCAMGUI.py:2874
  5593. msgid "[WARNING_NOTCL] Cancelled."
  5594. msgstr "[WARNING_NOTCL] Cancelado."
  5595. #: flatcamGUI/FlatCAMGUI.py:2520
  5596. msgid ""
  5597. "Please select geometry items \n"
  5598. "on which to perform Intersection Tool."
  5599. msgstr ""
  5600. "Por favor, selecione itens de geometria\n"
  5601. "para executar ferramenta de interseção."
  5602. #: flatcamGUI/FlatCAMGUI.py:2579
  5603. msgid ""
  5604. "Please select geometry items \n"
  5605. "on which to perform Substraction Tool."
  5606. msgstr ""
  5607. "Por favor, selecione itens de geometria\n"
  5608. "para executar ferramenta de subtração."
  5609. #: flatcamGUI/FlatCAMGUI.py:2599
  5610. msgid ""
  5611. "Please select geometry items \n"
  5612. "on which to perform union."
  5613. msgstr ""
  5614. "Por favor, selecione itens de geometria\n"
  5615. "para executar ferramenta de união."
  5616. #: flatcamGUI/FlatCAMGUI.py:2679 flatcamGUI/FlatCAMGUI.py:2891
  5617. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5618. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para excluir."
  5619. #: flatcamGUI/FlatCAMGUI.py:2763 flatcamGUI/FlatCAMGUI.py:2958
  5620. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5621. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para copiar."
  5622. #: flatcamGUI/FlatCAMGUI.py:2809 flatcamGUI/FlatCAMGUI.py:3004
  5623. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5624. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para mover."
  5625. #: flatcamGUI/FlatCAMGUI.py:3018
  5626. msgid "New Tool ..."
  5627. msgstr "Nova Ferramenta ..."
  5628. #: flatcamGUI/FlatCAMGUI.py:3019
  5629. msgid "Enter a Tool Diameter:"
  5630. msgstr "Digite um diâmetro de ferramenta:"
  5631. #: flatcamGUI/FlatCAMGUI.py:3062
  5632. msgid "Measurement Tool exit..."
  5633. msgstr "Saída da ferramenta de medição ..."
  5634. #: flatcamGUI/FlatCAMGUI.py:3353
  5635. msgid "GUI Preferences"
  5636. msgstr "Preferências da GUI"
  5637. #: flatcamGUI/FlatCAMGUI.py:3359
  5638. msgid "Grid X value:"
  5639. msgstr "Valor da grade X:"
  5640. #: flatcamGUI/FlatCAMGUI.py:3361
  5641. msgid "This is the Grid snap value on X axis."
  5642. msgstr "Este é o valor do encaixe à grade no eixo X."
  5643. #: flatcamGUI/FlatCAMGUI.py:3366
  5644. msgid "Grid Y value:"
  5645. msgstr "Valor da grade Y:"
  5646. #: flatcamGUI/FlatCAMGUI.py:3368
  5647. msgid "This is the Grid snap value on Y axis."
  5648. msgstr "Este é o valor do encaixe à grade no eixo Y."
  5649. #: flatcamGUI/FlatCAMGUI.py:3373
  5650. msgid "Snap Max:"
  5651. msgstr "Encaixe Max:"
  5652. #: flatcamGUI/FlatCAMGUI.py:3378
  5653. msgid "Workspace:"
  5654. msgstr "Área de trabalho:"
  5655. #: flatcamGUI/FlatCAMGUI.py:3380
  5656. msgid ""
  5657. "Draw a delimiting rectangle on canvas.\n"
  5658. "The purpose is to illustrate the limits for our work."
  5659. msgstr ""
  5660. "Desenhe um retângulo de delimitação na tela.\n"
  5661. "O objetivo é ilustrar os limites do nosso trabalho."
  5662. #: flatcamGUI/FlatCAMGUI.py:3383
  5663. msgid "Wk. format:"
  5664. msgstr "Wk formato:"
  5665. #: flatcamGUI/FlatCAMGUI.py:3385
  5666. msgid ""
  5667. "Select the type of rectangle to be used on canvas,\n"
  5668. "as valid workspace."
  5669. msgstr ""
  5670. "Selecione o tipo de retângulo a ser usado na tela,\n"
  5671. "como espaço de trabalho válido."
  5672. #: flatcamGUI/FlatCAMGUI.py:3398
  5673. msgid "Plot Fill:"
  5674. msgstr "Cor de Preenchimento:"
  5675. #: flatcamGUI/FlatCAMGUI.py:3400
  5676. msgid ""
  5677. "Set the fill color for plotted objects.\n"
  5678. "First 6 digits are the color and the last 2\n"
  5679. "digits are for alpha (transparency) level."
  5680. msgstr ""
  5681. "Defina a cor de preenchimento para os objetos plotados.\n"
  5682. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5683. "dígitos são para o nível alfa (transparência)."
  5684. #: flatcamGUI/FlatCAMGUI.py:3414 flatcamGUI/FlatCAMGUI.py:3464
  5685. #: flatcamGUI/FlatCAMGUI.py:3514
  5686. msgid "Alpha Level:"
  5687. msgstr "Nível Alfa:"
  5688. #: flatcamGUI/FlatCAMGUI.py:3416
  5689. msgid "Set the fill transparency for plotted objects."
  5690. msgstr "Definir a transparência de preenchimento para objetos plotados."
  5691. #: flatcamGUI/FlatCAMGUI.py:3433
  5692. msgid "Plot Line:"
  5693. msgstr "Linha:"
  5694. #: flatcamGUI/FlatCAMGUI.py:3435
  5695. msgid "Set the line color for plotted objects."
  5696. msgstr "Defina a cor da linha para objetos plotados."
  5697. #: flatcamGUI/FlatCAMGUI.py:3447
  5698. msgid "Sel. Fill:"
  5699. msgstr "Sel. Preenchimento:"
  5700. #: flatcamGUI/FlatCAMGUI.py:3449
  5701. msgid ""
  5702. "Set the fill color for the selection box\n"
  5703. "in case that the selection is done from left to right.\n"
  5704. "First 6 digits are the color and the last 2\n"
  5705. "digits are for alpha (transparency) level."
  5706. msgstr ""
  5707. "Defina a cor de preenchimento para a caixa de seleção\n"
  5708. "no caso de a seleção ser feita da esquerda para a direita.\n"
  5709. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5710. "dígitos são para o nível alfa (transparência)."
  5711. #: flatcamGUI/FlatCAMGUI.py:3466
  5712. msgid "Set the fill transparency for the 'left to right' selection box."
  5713. msgstr ""
  5714. "Defina a transparência de preenchimento para a caixa de seleção \"da "
  5715. "esquerda para a direita\"."
  5716. #: flatcamGUI/FlatCAMGUI.py:3483
  5717. msgid "Sel. Line:"
  5718. msgstr "Sel. Linha:"
  5719. #: flatcamGUI/FlatCAMGUI.py:3485
  5720. msgid "Set the line color for the 'left to right' selection box."
  5721. msgstr ""
  5722. "Defina a cor da linha para a caixa de seleção \"da esquerda para a direita\"."
  5723. #: flatcamGUI/FlatCAMGUI.py:3497
  5724. msgid "Sel2. Fill:"
  5725. msgstr "Sel2 Preenchimento:"
  5726. #: flatcamGUI/FlatCAMGUI.py:3499
  5727. msgid ""
  5728. "Set the fill color for the selection box\n"
  5729. "in case that the selection is done from right to left.\n"
  5730. "First 6 digits are the color and the last 2\n"
  5731. "digits are for alpha (transparency) level."
  5732. msgstr ""
  5733. "Defina a cor de preenchimento para a caixa de seleção, caso a seleção seja "
  5734. "feita da direita para a esquerda.\n"
  5735. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5736. "dígitos são para o nível alfa (transparência)."
  5737. #: flatcamGUI/FlatCAMGUI.py:3516
  5738. msgid "Set the fill transparency for selection 'right to left' box."
  5739. msgstr ""
  5740. "Defina a transparência de preenchimento para a seleção da caixa 'direita "
  5741. "para a esquerda'."
  5742. #: flatcamGUI/FlatCAMGUI.py:3533
  5743. msgid "Sel2. Line:"
  5744. msgstr "Sel2 Linha:"
  5745. #: flatcamGUI/FlatCAMGUI.py:3535
  5746. msgid "Set the line color for the 'right to left' selection box."
  5747. msgstr ""
  5748. "Defina a cor da linha para a caixa de seleção 'direita para a esquerda'."
  5749. #: flatcamGUI/FlatCAMGUI.py:3547
  5750. msgid "Editor Draw:"
  5751. msgstr "Editor de Desenho:"
  5752. #: flatcamGUI/FlatCAMGUI.py:3549
  5753. msgid "Set the color for the shape."
  5754. msgstr "Definir a cor da forma."
  5755. #: flatcamGUI/FlatCAMGUI.py:3561
  5756. msgid "Editor Draw Sel.:"
  5757. msgstr "Editor de Desenho Sel.:"
  5758. #: flatcamGUI/FlatCAMGUI.py:3563
  5759. msgid "Set the color of the shape when selected."
  5760. msgstr "Defina a cor da forma quando selecionada."
  5761. #: flatcamGUI/FlatCAMGUI.py:3575
  5762. msgid "Project Items:"
  5763. msgstr "Itens do Projeto:"
  5764. #: flatcamGUI/FlatCAMGUI.py:3577
  5765. msgid "Set the color of the items in Project Tab Tree."
  5766. msgstr "Defina a cor dos itens na Árvore do Guia de Projeto."
  5767. #: flatcamGUI/FlatCAMGUI.py:3588
  5768. msgid "Proj. Dis. Items:"
  5769. msgstr "Proj. Dis. Items:"
  5770. #: flatcamGUI/FlatCAMGUI.py:3590
  5771. msgid ""
  5772. "Set the color of the items in Project Tab Tree,\n"
  5773. "for the case when the items are disabled."
  5774. msgstr ""
  5775. "Defina a cor dos itens na Árvore da guia Projeto,\n"
  5776. "para o caso em que os itens estão desativados."
  5777. #: flatcamGUI/FlatCAMGUI.py:3641
  5778. msgid "GUI Settings"
  5779. msgstr "Configurações da GUI"
  5780. #: flatcamGUI/FlatCAMGUI.py:3647
  5781. msgid "Layout:"
  5782. msgstr "Layout:"
  5783. #: flatcamGUI/FlatCAMGUI.py:3649
  5784. msgid ""
  5785. "Select an layout for FlatCAM.\n"
  5786. "It is applied immediately."
  5787. msgstr ""
  5788. "Selecione um layout para o FlatCAM.\n"
  5789. "É aplicado imediatamente."
  5790. #: flatcamGUI/FlatCAMGUI.py:3665
  5791. msgid "Style:"
  5792. msgstr "Estilo:"
  5793. #: flatcamGUI/FlatCAMGUI.py:3667
  5794. msgid ""
  5795. "Select an style for FlatCAM.\n"
  5796. "It will be applied at the next app start."
  5797. msgstr ""
  5798. "Selecione um estilo para FlatCAM.\n"
  5799. "Ele será aplicado no próximo início do aplicativo."
  5800. #: flatcamGUI/FlatCAMGUI.py:3678
  5801. msgid "HDPI Support:"
  5802. msgstr "Suporte HDPI:"
  5803. #: flatcamGUI/FlatCAMGUI.py:3680
  5804. msgid ""
  5805. "Enable High DPI support for FlatCAM.\n"
  5806. "It will be applied at the next app start."
  5807. msgstr ""
  5808. "Ativa o suporte de alta DPI para FlatCAM.\n"
  5809. "Ele será aplicado no próximo início do aplicativo."
  5810. #: flatcamGUI/FlatCAMGUI.py:3693
  5811. msgid "Clear GUI Settings:"
  5812. msgstr "Limpar Configurações da GUI:"
  5813. #: flatcamGUI/FlatCAMGUI.py:3695
  5814. msgid ""
  5815. "Clear the GUI settings for FlatCAM,\n"
  5816. "such as: layout, gui state, style, hdpi support etc."
  5817. msgstr ""
  5818. "Limpa as configurações da GUI para FlatCAM,\n"
  5819. "como: layout, estado de gui, estilo, suporte a HDPI etc."
  5820. #: flatcamGUI/FlatCAMGUI.py:3698
  5821. msgid "Clear"
  5822. msgstr "Limpar"
  5823. #: flatcamGUI/FlatCAMGUI.py:3702
  5824. msgid "Hover Shape:"
  5825. msgstr "Forma Flutuante:"
  5826. #: flatcamGUI/FlatCAMGUI.py:3704
  5827. msgid ""
  5828. "Enable display of a hover shape for FlatCAM objects.\n"
  5829. "It is displayed whenever the mouse cursor is hovering\n"
  5830. "over any kind of not-selected object."
  5831. msgstr ""
  5832. "Habilita a exibição de uma forma flutuante para objetos FlatCAM.\n"
  5833. "É exibido sempre que o cursor do mouse estiver pairando\n"
  5834. "sobre qualquer tipo de objeto não selecionado."
  5835. #: flatcamGUI/FlatCAMGUI.py:3711
  5836. msgid "Sel. Shape:"
  5837. msgstr "Sel. Forma:"
  5838. #: flatcamGUI/FlatCAMGUI.py:3713
  5839. msgid ""
  5840. "Enable the display of a selection shape for FlatCAM objects.\n"
  5841. "It is displayed whenever the mouse selects an object\n"
  5842. "either by clicking or dragging mouse from left to right or\n"
  5843. "right to left."
  5844. msgstr ""
  5845. "Ativa a exibição de seleção de forma para objetos FlatCAM.\n"
  5846. "É exibido sempre que o mouse seleciona um objeto\n"
  5847. "seja clicando ou arrastando o mouse da esquerda para a direita ou da direita "
  5848. "para a esquerda."
  5849. #: flatcamGUI/FlatCAMGUI.py:3755
  5850. msgid "Are you sure you want to delete the GUI Settings? \n"
  5851. msgstr "Tem certeza de que deseja excluir as configurações da GUI? \n"
  5852. #: flatcamGUI/FlatCAMGUI.py:3758
  5853. msgid "Clear GUI Settings"
  5854. msgstr "Limpar as configurações da GUI"
  5855. #: flatcamGUI/FlatCAMGUI.py:3779
  5856. msgid "App Preferences"
  5857. msgstr "Preferências do aplicativo"
  5858. #: flatcamGUI/FlatCAMGUI.py:3785
  5859. msgid "<b>Units:</b>"
  5860. msgstr "<b>Unidades:</b>"
  5861. #: flatcamGUI/FlatCAMGUI.py:3786
  5862. msgid ""
  5863. "The default value for FlatCAM units.\n"
  5864. "Whatever is selected here is set every time\n"
  5865. "FLatCAM is started."
  5866. msgstr ""
  5867. "O valor padrão para unidades FlatCAM.\n"
  5868. "O que estiver selecionado aqui será definido sempre que\n"
  5869. "FLatCAM for iniciado."
  5870. #: flatcamGUI/FlatCAMGUI.py:3789
  5871. msgid "IN"
  5872. msgstr "in"
  5873. #: flatcamGUI/FlatCAMGUI.py:3790 flatcamGUI/FlatCAMGUI.py:4279
  5874. #: flatcamGUI/FlatCAMGUI.py:4540 flatcamGUI/FlatCAMGUI.py:4931
  5875. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5876. msgid "MM"
  5877. msgstr "mm"
  5878. #: flatcamGUI/FlatCAMGUI.py:3793
  5879. msgid "<b>APP. LEVEL:</b>"
  5880. msgstr "<b>Nível do Aplicativo:</b>"
  5881. #: flatcamGUI/FlatCAMGUI.py:3794
  5882. msgid ""
  5883. "Choose the default level of usage for FlatCAM.\n"
  5884. "BASIC level -> reduced functionality, best for beginner's.\n"
  5885. "ADVANCED level -> full functionality.\n"
  5886. "\n"
  5887. "The choice here will influence the parameters in\n"
  5888. "the Selected Tab for all kinds of FlatCAM objects."
  5889. msgstr ""
  5890. "Escolha o nível padrão de uso para FlatCAM.\n"
  5891. "Nível BÁSICO -> funcionalidade reduzida, melhor para iniciantes.\n"
  5892. "Nível AVANÇADO -> funcionalidade completa.\n"
  5893. "\n"
  5894. "A escolha aqui influenciará os parâmetros na\n"
  5895. "Guia Selecionada para todos os tipos de objetos FlatCAM."
  5896. #: flatcamGUI/FlatCAMGUI.py:3799 flatcamGUI/FlatCAMGUI.py:4567
  5897. msgid "Basic"
  5898. msgstr "Básico"
  5899. #: flatcamGUI/FlatCAMGUI.py:3800
  5900. msgid "Advanced"
  5901. msgstr "Avançado"
  5902. #: flatcamGUI/FlatCAMGUI.py:3803
  5903. msgid "<b>Languages:</b>"
  5904. msgstr "<b>Idioma:</b>"
  5905. #: flatcamGUI/FlatCAMGUI.py:3804
  5906. msgid "Set the language used throughout FlatCAM."
  5907. msgstr "Defina o idioma usado no FlatCAM."
  5908. #: flatcamGUI/FlatCAMGUI.py:3807
  5909. msgid "Apply Language"
  5910. msgstr "Aplique o Idioma"
  5911. #: flatcamGUI/FlatCAMGUI.py:3808
  5912. msgid ""
  5913. "Set the language used throughout FlatCAM.\n"
  5914. "The app will restart after click.Windows: When FlatCAM is installed in "
  5915. "Program Files\n"
  5916. "directory, it is possible that the app will not\n"
  5917. "restart after the button is clicked due of Windows\n"
  5918. "security features. In this case the language will be\n"
  5919. "applied at the next app start."
  5920. msgstr ""
  5921. "Define o idioma usado no FlatCAM.\n"
  5922. "O aplicativo será reinicializado após o clique. Windows: Quando o FlatCAM "
  5923. "estiver instalado no diretório Arquivos de Programas,\n"
  5924. "é possível que o aplicativo não seja\n"
  5925. "reiniciado depois que o botão for clicado devido aos recursos\n"
  5926. "de segurança do Windows. Neste caso, o idioma será\n"
  5927. "aplicado no próximo início do aplicativo."
  5928. #: flatcamGUI/FlatCAMGUI.py:3817
  5929. msgid "Shell at StartUp:"
  5930. msgstr "Linha de Comando ao Iniciar:"
  5931. #: flatcamGUI/FlatCAMGUI.py:3819 flatcamGUI/FlatCAMGUI.py:3824
  5932. msgid ""
  5933. "Check this box if you want the shell to\n"
  5934. "start automatically at startup."
  5935. msgstr ""
  5936. "Marque esta caixa se você deseja que o shell (linha de comando)\n"
  5937. "seja inicializado automaticamente na inicialização."
  5938. #: flatcamGUI/FlatCAMGUI.py:3829
  5939. msgid "Version Check:"
  5940. msgstr "Verificação de versão:"
  5941. #: flatcamGUI/FlatCAMGUI.py:3831 flatcamGUI/FlatCAMGUI.py:3836
  5942. msgid ""
  5943. "Check this box if you want to check\n"
  5944. "for a new version automatically at startup."
  5945. msgstr ""
  5946. "Marque esta caixa se você quiser verificar\n"
  5947. "por nova versão automaticamente na inicialização."
  5948. #: flatcamGUI/FlatCAMGUI.py:3841
  5949. msgid "Send Stats:"
  5950. msgstr "Enviar estatísticas:"
  5951. #: flatcamGUI/FlatCAMGUI.py:3843 flatcamGUI/FlatCAMGUI.py:3848
  5952. msgid ""
  5953. "Check this box if you agree to send anonymous\n"
  5954. "stats automatically at startup, to help improve FlatCAM."
  5955. msgstr ""
  5956. "Marque esta caixa se você concorda em enviar\n"
  5957. "dados anônimos automaticamente na inicialização, para ajudar a melhorar o "
  5958. "FlatCAM."
  5959. #: flatcamGUI/FlatCAMGUI.py:3855
  5960. msgid "<b>Pan Button:</b>"
  5961. msgstr "<b>Botão Pan:</b>"
  5962. #: flatcamGUI/FlatCAMGUI.py:3856
  5963. msgid ""
  5964. "Select the mouse button to use for panning:\n"
  5965. "- MMB --> Middle Mouse Button\n"
  5966. "- RMB --> Right Mouse Button"
  5967. msgstr ""
  5968. "Selecione o botão do mouse para usar o panning:\n"
  5969. "- BM -> Botão do meio do mouse\n"
  5970. "- BD -> botão direito do mouse"
  5971. #: flatcamGUI/FlatCAMGUI.py:3859
  5972. msgid "MMB"
  5973. msgstr "MMB"
  5974. #: flatcamGUI/FlatCAMGUI.py:3860
  5975. msgid "RMB"
  5976. msgstr "RMB"
  5977. #: flatcamGUI/FlatCAMGUI.py:3863
  5978. msgid "<b>Multiple Sel:</b>"
  5979. msgstr "<b>Seleção Múltipla:</b>"
  5980. #: flatcamGUI/FlatCAMGUI.py:3864
  5981. msgid "Select the key used for multiple selection."
  5982. msgstr "Selecione a tecla usada para seleção múltipla."
  5983. #: flatcamGUI/FlatCAMGUI.py:3869
  5984. msgid "Project at StartUp:"
  5985. msgstr "Projeto no Inicialização:"
  5986. #: flatcamGUI/FlatCAMGUI.py:3871 flatcamGUI/FlatCAMGUI.py:3876
  5987. msgid ""
  5988. "Check this box if you want the project/selected/tool tab area to\n"
  5989. "to be shown automatically at startup."
  5990. msgstr ""
  5991. "Marque esta caixa se você quiser que a guia projeto/selecionado/ferramenta "
  5992. "seja\n"
  5993. "apresentada automaticamente na inicialização."
  5994. #: flatcamGUI/FlatCAMGUI.py:3881
  5995. msgid "Project AutoHide:"
  5996. msgstr "Ocultar Automaticamente:"
  5997. #: flatcamGUI/FlatCAMGUI.py:3883 flatcamGUI/FlatCAMGUI.py:3889
  5998. msgid ""
  5999. "Check this box if you want the project/selected/tool tab area to\n"
  6000. "hide automatically when there are no objects loaded and\n"
  6001. "to show whenever a new object is created."
  6002. msgstr ""
  6003. "Marque esta caixa se você deseja que a guia projeto/selecionado/ferramenta\n"
  6004. "desapareça automaticamente quando não houver objetos carregados e\n"
  6005. "apareça sempre que um novo objeto for criado."
  6006. #: flatcamGUI/FlatCAMGUI.py:3895
  6007. msgid "<b>Enable ToolTips:</b>"
  6008. msgstr "<b>Habilitar Dicas:</b>"
  6009. #: flatcamGUI/FlatCAMGUI.py:3897 flatcamGUI/FlatCAMGUI.py:3902
  6010. msgid ""
  6011. "Check this box if you want to have toolTips displayed\n"
  6012. "when hovering with mouse over items throughout the App."
  6013. msgstr ""
  6014. "Marque esta caixa se quiser que as dicas de ferramentas sejam exibidas\n"
  6015. "ao passar o mouse sobre os itens em todo o aplicativo."
  6016. #: flatcamGUI/FlatCAMGUI.py:3905
  6017. msgid "Workers number:"
  6018. msgstr "Número de trabalhadores:"
  6019. #: flatcamGUI/FlatCAMGUI.py:3907 flatcamGUI/FlatCAMGUI.py:3916
  6020. msgid ""
  6021. "The number of Qthreads made available to the App.\n"
  6022. "A bigger number may finish the jobs more quickly but\n"
  6023. "depending on your computer speed, may make the App\n"
  6024. "unresponsive. Can have a value between 2 and 16.\n"
  6025. "Default value is 2.\n"
  6026. "After change, it will be applied at next App start."
  6027. msgstr ""
  6028. "O número de Qthreads disponibilizados para o App.\n"
  6029. "Um número maior pode terminar os trabalhos mais rapidamente, mas\n"
  6030. "dependendo da velocidade do computador, pode fazer com que o App\n"
  6031. "não responda. Pode ter um valor entre 2 e 16.\n"
  6032. "O valor padrão é 2.\n"
  6033. "Após a mudança, ele será aplicado no próximo início do aplicativo."
  6034. #: flatcamGUI/FlatCAMGUI.py:3926
  6035. msgid "Geo Tolerance:"
  6036. msgstr "Tolerância Geo:"
  6037. #: flatcamGUI/FlatCAMGUI.py:3928 flatcamGUI/FlatCAMGUI.py:3937
  6038. msgid ""
  6039. "This value can counter the effect of the Circle Steps\n"
  6040. "parameter. Default value is 0.01.\n"
  6041. "A lower value will increase the detail both in image\n"
  6042. "and in Gcode for the circles, with a higher cost in\n"
  6043. "performance. Higher value will provide more\n"
  6044. "performance at the expense of level of detail."
  6045. msgstr ""
  6046. "Este valor pode contrariar o efeito do parâmetro Passos do Círculo.\n"
  6047. "O valor padrão é 0,01.\n"
  6048. "Um valor mais baixo aumentará os detalhes na imagem\n"
  6049. "e no G-Code para os círculos, com um custo maior em\n"
  6050. "desempenho. Valor maior proporcionará mais\n"
  6051. "performance à custa do nível de detalhe."
  6052. #: flatcamGUI/FlatCAMGUI.py:3973
  6053. msgid "\"Open\" behavior"
  6054. msgstr "Comportamento \"Abrir\""
  6055. #: flatcamGUI/FlatCAMGUI.py:3975
  6056. msgid ""
  6057. "When checked the path for the last saved file is used when saving files,\n"
  6058. "and the path for the last opened file is used when opening files.\n"
  6059. "\n"
  6060. "When unchecked the path for opening files is the one used last: either the\n"
  6061. "path for saving files or the path for opening files."
  6062. msgstr ""
  6063. "Quando marcado, o caminho do último arquivo salvo é usado ao salvar "
  6064. "arquivos,\n"
  6065. "e o caminho para o último arquivo aberto é usado ao abrir arquivos.\n"
  6066. "\n"
  6067. "Quando desmarcado, o caminho para abrir arquivos é aquele usado por último: "
  6068. "o caminho\n"
  6069. "para salvar arquivos ou o caminho para abrir arquivos."
  6070. #: flatcamGUI/FlatCAMGUI.py:3984
  6071. msgid "Save Compressed Project"
  6072. msgstr "Salvar Projeto Compactado"
  6073. #: flatcamGUI/FlatCAMGUI.py:3986
  6074. msgid ""
  6075. "Whether to save a compressed or uncompressed project.\n"
  6076. "When checked it will save a compressed FlatCAM project."
  6077. msgstr ""
  6078. "Para salvar um projeto compactado ou descompactado.\n"
  6079. "Quando marcado, o projeto FlatCAM será salvo compactado."
  6080. #: flatcamGUI/FlatCAMGUI.py:3997
  6081. msgid "Compression Level:"
  6082. msgstr "Nível de Compressão:"
  6083. #: flatcamGUI/FlatCAMGUI.py:3999
  6084. msgid ""
  6085. "The level of compression used when saving\n"
  6086. "a FlatCAM project. Higher value means better compression\n"
  6087. "but require more RAM usage and more processing time."
  6088. msgstr ""
  6089. "O nível de compactação usado ao salvar o\n"
  6090. "Projeto FlatCAM. Maior valor significa melhor compactação, mas é necessário "
  6091. "mais uso de RAM e mais tempo de processamento."
  6092. #: flatcamGUI/FlatCAMGUI.py:4022
  6093. msgid "Gerber General"
  6094. msgstr "Gerber Geral"
  6095. #: flatcamGUI/FlatCAMGUI.py:4025 flatcamGUI/FlatCAMGUI.py:4391
  6096. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5534
  6097. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505
  6098. #: flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350
  6099. msgid "<b>Plot Options:</b>"
  6100. msgstr "<b>Opções de Gráfico:</b>"
  6101. #: flatcamGUI/FlatCAMGUI.py:4032 flatcamGUI/FlatCAMGUI.py:4403
  6102. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506
  6103. msgid "Solid"
  6104. msgstr "Preenchido"
  6105. #: flatcamGUI/FlatCAMGUI.py:4034 flatcamGUI/ObjectUI.py:158
  6106. msgid "Solid color polygons."
  6107. msgstr "Polígonos de cor sólida."
  6108. #: flatcamGUI/FlatCAMGUI.py:4039 flatcamGUI/ObjectUI.py:164
  6109. msgid "M-Color"
  6110. msgstr "Cores-M"
  6111. #: flatcamGUI/FlatCAMGUI.py:4041 flatcamGUI/ObjectUI.py:166
  6112. msgid "Draw polygons in different colors."
  6113. msgstr "Desenha polígonos em cores diferentes."
  6114. #: flatcamGUI/FlatCAMGUI.py:4046 flatcamGUI/FlatCAMGUI.py:4397
  6115. #: flatcamGUI/FlatCAMGUI.py:5169 flatcamGUI/ObjectUI.py:172
  6116. msgid "Plot"
  6117. msgstr "Gráfico"
  6118. #: flatcamGUI/FlatCAMGUI.py:4048 flatcamGUI/FlatCAMGUI.py:5171
  6119. #: flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546
  6120. #: flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1450
  6121. msgid "Plot (show) this object."
  6122. msgstr "Mostra o objeto no gráfico."
  6123. #: flatcamGUI/FlatCAMGUI.py:4053 flatcamGUI/FlatCAMGUI.py:5179
  6124. #: flatcamGUI/FlatCAMGUI.py:5617
  6125. msgid "Circle Steps:"
  6126. msgstr "Passos do Círculo:"
  6127. #: flatcamGUI/FlatCAMGUI.py:4055
  6128. msgid ""
  6129. "The number of circle steps for Gerber \n"
  6130. "circular aperture linear approximation."
  6131. msgstr ""
  6132. "Número de passos de círculo para Gerber.\n"
  6133. "Aproximação linear de abertura circular."
  6134. #: flatcamGUI/FlatCAMGUI.py:4070
  6135. msgid "Gerber Options"
  6136. msgstr "Opções Gerber"
  6137. #: flatcamGUI/FlatCAMGUI.py:4073 flatcamGUI/ObjectUI.py:251
  6138. msgid "<b>Isolation Routing:</b>"
  6139. msgstr "<b>Isolação no Roteamento:</b>"
  6140. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:253
  6141. msgid ""
  6142. "Create a Geometry object with\n"
  6143. "toolpaths to cut outside polygons."
  6144. msgstr ""
  6145. "Cria um objeto Geometria com caminho de\n"
  6146. "ferramenta para cortar polígonos externos."
  6147. #: flatcamGUI/FlatCAMGUI.py:4086 flatcamGUI/FlatCAMGUI.py:4765
  6148. #: flatcamGUI/FlatCAMGUI.py:5906 flatcamGUI/ObjectUI.py:788
  6149. #: flatcamGUI/ObjectUI.py:804
  6150. msgid "Diameter of the cutting tool."
  6151. msgstr "Diâmetro da ferramenta de corte."
  6152. #: flatcamGUI/FlatCAMGUI.py:4093
  6153. msgid "Width (# passes):"
  6154. msgstr "Largura (nº de passos):"
  6155. #: flatcamGUI/FlatCAMGUI.py:4095 flatcamGUI/ObjectUI.py:275
  6156. msgid ""
  6157. "Width of the isolation gap in\n"
  6158. "number (integer) of tool widths."
  6159. msgstr ""
  6160. "Largura da isolação em relação à\n"
  6161. "largura da ferramenta (número inteiro)."
  6162. #: flatcamGUI/FlatCAMGUI.py:4103 flatcamGUI/ObjectUI.py:283
  6163. msgid "Pass overlap:"
  6164. msgstr "Sobreposição:"
  6165. #: flatcamGUI/FlatCAMGUI.py:4105 flatcamGUI/ObjectUI.py:285
  6166. #, python-format
  6167. msgid ""
  6168. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6169. "Example:\n"
  6170. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  6171. "above."
  6172. msgstr ""
  6173. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  6174. "ferramenta.\n"
  6175. "Exemplo:\n"
  6176. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da ferramenta."
  6177. #: flatcamGUI/FlatCAMGUI.py:4113 flatcamGUI/ObjectUI.py:295
  6178. msgid "Milling Type:"
  6179. msgstr "Tipo de Fresamento:"
  6180. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/ObjectUI.py:297
  6181. msgid ""
  6182. "Milling type:\n"
  6183. "- climb / best for precision milling and to reduce tool usage\n"
  6184. "- conventional / useful when there is no backlash compensation"
  6185. msgstr ""
  6186. "Tipo de fresamento:\n"
  6187. "- subida: melhor para fresamento de precisão e para reduzir o uso da "
  6188. "ferramenta\n"
  6189. "- convencional: útil quando não há compensação de folga"
  6190. #: flatcamGUI/FlatCAMGUI.py:4120 flatcamGUI/ObjectUI.py:302
  6191. msgid "Climb"
  6192. msgstr "Climb"
  6193. #: flatcamGUI/FlatCAMGUI.py:4121 flatcamGUI/ObjectUI.py:303
  6194. msgid "Conv."
  6195. msgstr "Conv."
  6196. #: flatcamGUI/FlatCAMGUI.py:4125
  6197. msgid "Combine Passes"
  6198. msgstr "Combine Passes"
  6199. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/ObjectUI.py:309
  6200. msgid "Combine all passes into one object"
  6201. msgstr "Combine all passes into one object"
  6202. #: flatcamGUI/FlatCAMGUI.py:4132
  6203. msgid "<b>Clear non-copper:</b>"
  6204. msgstr "<b>Limpar não-cobre:</b>"
  6205. #: flatcamGUI/FlatCAMGUI.py:4134 flatcamGUI/FlatCAMGUI.py:5794
  6206. #: flatcamGUI/ObjectUI.py:386
  6207. msgid ""
  6208. "Create a Geometry object with\n"
  6209. "toolpaths to cut all non-copper regions."
  6210. msgstr ""
  6211. "Cria um objeto Geometria com caminho de ferramenta\n"
  6212. "para cortar todas as regiões que não são de cobre."
  6213. #: flatcamGUI/FlatCAMGUI.py:4143 flatcamGUI/FlatCAMGUI.py:4169
  6214. #: flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464
  6215. msgid "Boundary Margin:"
  6216. msgstr "Margem de Limite:"
  6217. #: flatcamGUI/FlatCAMGUI.py:4145 flatcamGUI/ObjectUI.py:432
  6218. msgid ""
  6219. "Specify the edge of the PCB\n"
  6220. "by drawing a box around all\n"
  6221. "objects with this minimum\n"
  6222. "distance."
  6223. msgstr ""
  6224. "Especifica a borda do PCB\n"
  6225. "desenhando uma caixa em volta de todos os\n"
  6226. "objetos com esta\n"
  6227. "distância mínima."
  6228. #: flatcamGUI/FlatCAMGUI.py:4155 flatcamGUI/FlatCAMGUI.py:4178
  6229. msgid "Rounded corners"
  6230. msgstr "Cantos arredondados"
  6231. #: flatcamGUI/FlatCAMGUI.py:4157
  6232. msgid ""
  6233. "Creates a Geometry objects with polygons\n"
  6234. "covering the copper-free areas of the PCB."
  6235. msgstr ""
  6236. "Cria um objeto Geometria com polígonos\n"
  6237. "cobrindo as áreas livres de cobre do PCB."
  6238. #: flatcamGUI/FlatCAMGUI.py:4163 flatcamGUI/ObjectUI.py:454
  6239. msgid "<b>Bounding Box:</b>"
  6240. msgstr "<b>Caixa Delimitadora:</b>"
  6241. #: flatcamGUI/FlatCAMGUI.py:4171 flatcamGUI/ObjectUI.py:466
  6242. msgid ""
  6243. "Distance of the edges of the box\n"
  6244. "to the nearest polygon."
  6245. msgstr ""
  6246. "Distância das bordas da caixa\n"
  6247. "para o polígono mais próximo."
  6248. #: flatcamGUI/FlatCAMGUI.py:4180 flatcamGUI/ObjectUI.py:476
  6249. msgid ""
  6250. "If the bounding box is \n"
  6251. "to have rounded corners\n"
  6252. "their radius is equal to\n"
  6253. "the margin."
  6254. msgstr ""
  6255. "Se a caixa delimitadora tiver\n"
  6256. "cantos arredondados\n"
  6257. "o seu raio é igual\n"
  6258. "a margem."
  6259. #: flatcamGUI/FlatCAMGUI.py:4194
  6260. msgid "Gerber Adv. Options"
  6261. msgstr "Opções Av. Gerber"
  6262. #: flatcamGUI/FlatCAMGUI.py:4197
  6263. msgid "<b>Advanced Param.:</b>"
  6264. msgstr "<b>Parâmetros avançados:</b>"
  6265. #: flatcamGUI/FlatCAMGUI.py:4199
  6266. msgid ""
  6267. "A list of Gerber advanced parameters.\n"
  6268. "Those parameters are available only for\n"
  6269. "Advanced App. Level."
  6270. msgstr ""
  6271. "Uma lista de parâmetros avançados do Gerber.\n"
  6272. "Esses parâmetros estão disponíveis somente para\n"
  6273. "o aplicativo no nível avançado."
  6274. #: flatcamGUI/FlatCAMGUI.py:4209 flatcamGUI/ObjectUI.py:314
  6275. msgid "\"Follow\""
  6276. msgstr "\"Segue\""
  6277. #: flatcamGUI/FlatCAMGUI.py:4211 flatcamGUI/ObjectUI.py:316
  6278. msgid ""
  6279. "Generate a 'Follow' geometry.\n"
  6280. "This means that it will cut through\n"
  6281. "the middle of the trace."
  6282. msgstr ""
  6283. "Gera uma geometria 'Segue'.\n"
  6284. "Isso significa que ele cortará\n"
  6285. "no meio do traço."
  6286. #: flatcamGUI/FlatCAMGUI.py:4218
  6287. msgid "Table Show/Hide"
  6288. msgstr "Mostra/Esconde Tabela"
  6289. #: flatcamGUI/FlatCAMGUI.py:4220
  6290. msgid ""
  6291. "Toggle the display of the Gerber Apertures Table.\n"
  6292. "Also, on hide, it will delete all mark shapes\n"
  6293. "that are drawn on canvas."
  6294. msgstr ""
  6295. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  6296. "Além disso, ao ocultar, ele excluirá todas as formas de marcas\n"
  6297. "que estão desenhadas na tela."
  6298. #: flatcamGUI/FlatCAMGUI.py:4259
  6299. msgid "Gerber Export"
  6300. msgstr "Exportar Gerber"
  6301. #: flatcamGUI/FlatCAMGUI.py:4262 flatcamGUI/FlatCAMGUI.py:4914
  6302. msgid "<b>Export Options:</b>"
  6303. msgstr "<b>Opções de Exportar:</b>"
  6304. #: flatcamGUI/FlatCAMGUI.py:4264
  6305. msgid ""
  6306. "The parameters set here are used in the file exported\n"
  6307. "when using the File -> Export -> Export Gerber menu entry."
  6308. msgstr ""
  6309. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6310. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Gerber."
  6311. #: flatcamGUI/FlatCAMGUI.py:4273 flatcamGUI/FlatCAMGUI.py:4925
  6312. msgid "<b>Units</b>:"
  6313. msgstr "<b>Unidades</b>:"
  6314. #: flatcamGUI/FlatCAMGUI.py:4275 flatcamGUI/FlatCAMGUI.py:4281
  6315. msgid "The units used in the Gerber file."
  6316. msgstr "As unidades usadas no arquivo Gerber."
  6317. #: flatcamGUI/FlatCAMGUI.py:4278 flatcamGUI/FlatCAMGUI.py:4539
  6318. #: flatcamGUI/FlatCAMGUI.py:4930 flatcamTools/ToolCalculators.py:60
  6319. #: flatcamTools/ToolPcbWizard.py:125
  6320. msgid "INCH"
  6321. msgstr "in"
  6322. #: flatcamGUI/FlatCAMGUI.py:4287 flatcamGUI/FlatCAMGUI.py:4939
  6323. msgid "<b>Int/Decimals:</b>"
  6324. msgstr "<b>Int/Decimal:</b>"
  6325. #: flatcamGUI/FlatCAMGUI.py:4289
  6326. msgid ""
  6327. "The number of digits in the whole part of the number\n"
  6328. "and in the fractional part of the number."
  6329. msgstr ""
  6330. "O número de dígitos na parte inteira\n"
  6331. "e na parte fracionária do número."
  6332. #: flatcamGUI/FlatCAMGUI.py:4300
  6333. msgid ""
  6334. "This numbers signify the number of digits in\n"
  6335. "the whole part of Gerber coordinates."
  6336. msgstr ""
  6337. "Esses números significam o número de dígitos \n"
  6338. "em toda a parte das coordenadas de Gerber."
  6339. #: flatcamGUI/FlatCAMGUI.py:4314
  6340. msgid ""
  6341. "This numbers signify the number of digits in\n"
  6342. "the decimal part of Gerber coordinates."
  6343. msgstr ""
  6344. "Estes números significam o número de dígitos\n"
  6345. "na parte decimal das coordenadas de Gerber."
  6346. #: flatcamGUI/FlatCAMGUI.py:4323 flatcamGUI/FlatCAMGUI.py:5000
  6347. msgid "<b>Zeros</b>:"
  6348. msgstr "<b>Zeros</b>:"
  6349. #: flatcamGUI/FlatCAMGUI.py:4326 flatcamGUI/FlatCAMGUI.py:4336
  6350. msgid ""
  6351. "This sets the type of Gerber zeros.\n"
  6352. "If LZ then Leading Zeros are removed and\n"
  6353. "Trailing Zeros are kept.\n"
  6354. "If TZ is checked then Trailing Zeros are removed\n"
  6355. "and Leading Zeros are kept."
  6356. msgstr ""
  6357. "Define o tipo de zeros de Gerber.\n"
  6358. "LZ: os Zeros à Esquerda são removidos\n"
  6359. "e os Zeros à Direita são mantidos.\n"
  6360. "TZ: os Zeros à Direita serão removidos\n"
  6361. "e os Zeros à Esquerda serão mantidos."
  6362. #: flatcamGUI/FlatCAMGUI.py:4333 flatcamGUI/FlatCAMGUI.py:4515
  6363. #: flatcamGUI/FlatCAMGUI.py:5010 flatcamTools/ToolPcbWizard.py:111
  6364. msgid "LZ"
  6365. msgstr "LZ"
  6366. #: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/FlatCAMGUI.py:4516
  6367. #: flatcamGUI/FlatCAMGUI.py:5011 flatcamTools/ToolPcbWizard.py:112
  6368. msgid "TZ"
  6369. msgstr "TZ"
  6370. #: flatcamGUI/FlatCAMGUI.py:4356 flatcamGUI/FlatCAMGUI.py:5041
  6371. #: flatcamGUI/FlatCAMGUI.py:5500 flatcamGUI/FlatCAMGUI.py:5792
  6372. #: flatcamGUI/FlatCAMGUI.py:5893 flatcamGUI/FlatCAMGUI.py:5972
  6373. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/FlatCAMGUI.py:6134
  6374. #: flatcamGUI/FlatCAMGUI.py:6195 flatcamGUI/FlatCAMGUI.py:6394
  6375. #: flatcamGUI/FlatCAMGUI.py:6521
  6376. msgid "<b>Parameters:</b>"
  6377. msgstr "<b>Parâmetros:</b>"
  6378. #: flatcamGUI/FlatCAMGUI.py:4358
  6379. msgid "A list of Gerber Editor parameters."
  6380. msgstr "Uma lista de parâmetros do Editor Gerber."
  6381. #: flatcamGUI/FlatCAMGUI.py:4366 flatcamGUI/FlatCAMGUI.py:5051
  6382. #: flatcamGUI/FlatCAMGUI.py:5510
  6383. msgid "Selection limit:"
  6384. msgstr "Limite de seleção:"
  6385. #: flatcamGUI/FlatCAMGUI.py:4368
  6386. msgid ""
  6387. "Set the number of selected Gerber geometry\n"
  6388. "items above which the utility geometry\n"
  6389. "becomes just a selection rectangle.\n"
  6390. "Increases the performance when moving a\n"
  6391. "large number of geometric elements."
  6392. msgstr ""
  6393. "Define o número máximo de ítens de geometria Gerber\n"
  6394. "selecionados. Acima desse valor a geometria se torna um\n"
  6395. "retângulo de seleção.\n"
  6396. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  6397. #: flatcamGUI/FlatCAMGUI.py:4388
  6398. msgid "Excellon General"
  6399. msgstr "Excellon Geral"
  6400. #: flatcamGUI/FlatCAMGUI.py:4410
  6401. msgid "<b>Excellon Format:</b>"
  6402. msgstr "<b>Formato Excellon:</b>"
  6403. #: flatcamGUI/FlatCAMGUI.py:4412
  6404. msgid ""
  6405. "The NC drill files, usually named Excellon files\n"
  6406. "are files that can be found in different formats.\n"
  6407. "Here we set the format used when the provided\n"
  6408. "coordinates are not using period.\n"
  6409. "\n"
  6410. "Possible presets:\n"
  6411. "\n"
  6412. "PROTEUS 3:3 MM LZ\n"
  6413. "DipTrace 5:2 MM TZ\n"
  6414. "DipTrace 4:3 MM LZ\n"
  6415. "\n"
  6416. "EAGLE 3:3 MM TZ\n"
  6417. "EAGLE 4:3 MM TZ\n"
  6418. "EAGLE 2:5 INCH TZ\n"
  6419. "EAGLE 3:5 INCH TZ\n"
  6420. "\n"
  6421. "ALTIUM 2:4 INCH LZ\n"
  6422. "Sprint Layout 2:4 INCH LZ\n"
  6423. "KiCAD 3:5 INCH TZ"
  6424. msgstr ""
  6425. "Os arquivos de broca NC, normalmente chamados arquivos Excellon\n"
  6426. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6427. "Aqui definiremos o formato usado quando as coordenadas\n"
  6428. "fornecidas não estiverem usando ponto.\n"
  6429. "\n"
  6430. "Padrões possíveis:\n"
  6431. "\n"
  6432. "PROTEUS 3:3 mm LZ\n"
  6433. "DipTrace 5:2 mm TZ\n"
  6434. "DipTrace 4:3 mm LZ\n"
  6435. "\n"
  6436. "EAGLE 3:3 mm TZ\n"
  6437. "EAGLE 4:3 mm TZ\n"
  6438. "EAGLE 2:5 polegadas TZ\n"
  6439. "EAGLE 3:5 polegadas TZ\n"
  6440. "\n"
  6441. "ALTIUM 2:4 polegadas LZ\n"
  6442. "Sprint Layout 2:4 polegadas LZ\n"
  6443. "KiCAD 3:5 polegadas TZ"
  6444. #: flatcamGUI/FlatCAMGUI.py:4437
  6445. msgid "INCH:"
  6446. msgstr "POLEGADAS:"
  6447. #: flatcamGUI/FlatCAMGUI.py:4440
  6448. msgid "Default values for INCH are 2:4"
  6449. msgstr "Valores padrão para Polegadas são 2:4"
  6450. #: flatcamGUI/FlatCAMGUI.py:4448 flatcamGUI/FlatCAMGUI.py:4481
  6451. #: flatcamGUI/FlatCAMGUI.py:4954
  6452. msgid ""
  6453. "This numbers signify the number of digits in\n"
  6454. "the whole part of Excellon coordinates."
  6455. msgstr ""
  6456. "Esses números significam o número de dígitos\n"
  6457. "em toda a parte das coordenadas do Excellon."
  6458. #: flatcamGUI/FlatCAMGUI.py:4462 flatcamGUI/FlatCAMGUI.py:4495
  6459. #: flatcamGUI/FlatCAMGUI.py:4968
  6460. msgid ""
  6461. "This numbers signify the number of digits in\n"
  6462. "the decimal part of Excellon coordinates."
  6463. msgstr ""
  6464. "Estes números significam o número de dígitos na\n"
  6465. "parte decimal das coordenadas de Excellon."
  6466. #: flatcamGUI/FlatCAMGUI.py:4470
  6467. msgid "METRIC:"
  6468. msgstr "MÉTRICO:"
  6469. #: flatcamGUI/FlatCAMGUI.py:4473
  6470. msgid "Default values for METRIC are 3:3"
  6471. msgstr "Valores padrão para MÉTRICO são 3:3"
  6472. #: flatcamGUI/FlatCAMGUI.py:4504
  6473. msgid "Default <b>Zeros</b>:"
  6474. msgstr "Padrão <b>Zeros</b>:"
  6475. #: flatcamGUI/FlatCAMGUI.py:4507 flatcamGUI/FlatCAMGUI.py:5003
  6476. msgid ""
  6477. "This sets the type of Excellon zeros.\n"
  6478. "If LZ then Leading Zeros are kept and\n"
  6479. "Trailing Zeros are removed.\n"
  6480. "If TZ is checked then Trailing Zeros are kept\n"
  6481. "and Leading Zeros are removed."
  6482. msgstr ""
  6483. "Define o tipo de zeros de Excellon.\n"
  6484. "LZ: os Zeros à Esquerda são mantidos\n"
  6485. "e os Zeros à Direita são removidos.\n"
  6486. "TZ: os Zeros à Direita serão mantidos\n"
  6487. "e os Zeros à Esquerda serão removidos."
  6488. #: flatcamGUI/FlatCAMGUI.py:4518
  6489. msgid ""
  6490. "This sets the default type of Excellon zeros.\n"
  6491. "If it is not detected in the parsed file the value here\n"
  6492. "will be used.If LZ then Leading Zeros are kept and\n"
  6493. "Trailing Zeros are removed.\n"
  6494. "If TZ is checked then Trailing Zeros are kept\n"
  6495. "and Leading Zeros are removed."
  6496. msgstr ""
  6497. "Define o tipo padrão de zeros de Excellon.\n"
  6498. "Se não for detectado no arquivo analisado o valor aqui\n"
  6499. " será usado. LZ: os Zeros à Esquerda são mantidos\n"
  6500. "e os Zeros à Direita são removidos.\n"
  6501. "TZ: os Zeros à Direita serão mantidos\n"
  6502. "e os Zeros à Esquerda serão removidos."
  6503. #: flatcamGUI/FlatCAMGUI.py:4528
  6504. msgid "Default <b>Units</b>:"
  6505. msgstr "<b>Unidades</b> Padrão:"
  6506. #: flatcamGUI/FlatCAMGUI.py:4531
  6507. msgid ""
  6508. "This sets the default units of Excellon files.\n"
  6509. "If it is not detected in the parsed file the value here\n"
  6510. "will be used.Some Excellon files don't have an header\n"
  6511. "therefore this parameter will be used."
  6512. msgstr ""
  6513. "Configura as unidades padrão dos arquivos Excellon.\n"
  6514. "Se não for detectado no arquivo analisado, o valor aqui\n"
  6515. "será usado. Alguns arquivos Excellon não possuem um cabeçalho\n"
  6516. ", e assim este parâmetro será usado."
  6517. #: flatcamGUI/FlatCAMGUI.py:4542
  6518. msgid ""
  6519. "This sets the units of Excellon files.\n"
  6520. "Some Excellon files don't have an header\n"
  6521. "therefore this parameter will be used."
  6522. msgstr ""
  6523. "Configura as unidades dos arquivos Excellon.\n"
  6524. "Alguns arquivos Excellon não possuem um cabeçalho\n"
  6525. ", e assim este parâmetro será usado."
  6526. #: flatcamGUI/FlatCAMGUI.py:4550
  6527. msgid "<b>Excellon Optimization:</b>"
  6528. msgstr "<b>Otimização Excellon:</b>"
  6529. #: flatcamGUI/FlatCAMGUI.py:4553
  6530. msgid "Algorithm: "
  6531. msgstr "Algoritmo: "
  6532. #: flatcamGUI/FlatCAMGUI.py:4555 flatcamGUI/FlatCAMGUI.py:4569
  6533. msgid ""
  6534. "This sets the optimization type for the Excellon drill path.\n"
  6535. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6536. "Guided Local Path is used. Default search time is 3sec.\n"
  6537. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6538. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6539. "\n"
  6540. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6541. "Travelling Salesman algorithm for path optimization."
  6542. msgstr ""
  6543. "Define o tipo de otimização para o caminho de perfuração do Excellon.\n"
  6544. "Se MH estiver marcado, será usado o algoritmo do Google OR-Tools com "
  6545. "MetaHeuristic.\n"
  6546. "O tempo de pesquisa padrão é de 3s.\n"
  6547. "Usar o comando TCL set_sys excellon_search_time para definir outros "
  6548. "valores.\n"
  6549. "Se Básico estiver marcado, será usado o algoritmo básico do Google OR-"
  6550. "Tools.\n"
  6551. "\n"
  6552. "Se DESABILITADO, FlatCAM trabalha no modo de 32 bits e usa\n"
  6553. "o algorítmo Travelling Salesman para otimização de caminhos."
  6554. #: flatcamGUI/FlatCAMGUI.py:4566
  6555. msgid "MH"
  6556. msgstr "MH"
  6557. #: flatcamGUI/FlatCAMGUI.py:4580
  6558. msgid "Optimization Time: "
  6559. msgstr "Tempo de Otimização: "
  6560. #: flatcamGUI/FlatCAMGUI.py:4583
  6561. msgid ""
  6562. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6563. "maximum threshold for how much time is spent doing the\n"
  6564. "path optimization. This max duration is set here.\n"
  6565. "In seconds."
  6566. msgstr ""
  6567. "Quando o Metaheuristic (MH) da OR-Tools está ativado, existe um limite\n"
  6568. "máximo para o tempo gasto para otimizar o\n"
  6569. "caminho. Esse tempo máximo é definido aqui.\n"
  6570. "Em segundos."
  6571. #: flatcamGUI/FlatCAMGUI.py:4626
  6572. msgid "Excellon Options"
  6573. msgstr "Opções Excellon"
  6574. #: flatcamGUI/FlatCAMGUI.py:4629 flatcamGUI/ObjectUI.py:584
  6575. msgid "<b>Create CNC Job</b>"
  6576. msgstr "<b>Criar Trabalho CNC</b>"
  6577. #: flatcamGUI/FlatCAMGUI.py:4631
  6578. msgid ""
  6579. "Parameters used to create a CNC Job object\n"
  6580. "for this drill object."
  6581. msgstr ""
  6582. "Parâmetros usados para criar um objeto de Trabalho CNC\n"
  6583. "para este objeto de broca."
  6584. #: flatcamGUI/FlatCAMGUI.py:4639 flatcamGUI/FlatCAMGUI.py:5226
  6585. #: flatcamGUI/FlatCAMGUI.py:6330 flatcamGUI/ObjectUI.py:595
  6586. #: flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:106
  6587. msgid "Cut Z:"
  6588. msgstr "Profundidade de Corte:"
  6589. #: flatcamGUI/FlatCAMGUI.py:4641 flatcamGUI/ObjectUI.py:597
  6590. msgid ""
  6591. "Drill depth (negative)\n"
  6592. "below the copper surface."
  6593. msgstr ""
  6594. "Profundidade da broca (negativo)\n"
  6595. "abaixo da superfície de cobre."
  6596. #: flatcamGUI/FlatCAMGUI.py:4648 flatcamGUI/FlatCAMGUI.py:5259
  6597. #: flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098
  6598. msgid "Travel Z:"
  6599. msgstr "Altura para Deslocamento:"
  6600. #: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/ObjectUI.py:607
  6601. msgid ""
  6602. "Tool height when travelling\n"
  6603. "across the XY plane."
  6604. msgstr ""
  6605. "Altura da ferramenta durante\n"
  6606. "deslocamentos sobre o plano XY."
  6607. #: flatcamGUI/FlatCAMGUI.py:4658 flatcamGUI/FlatCAMGUI.py:5269
  6608. msgid "Tool change:"
  6609. msgstr "Troca de ferramentas:"
  6610. #: flatcamGUI/FlatCAMGUI.py:4660 flatcamGUI/FlatCAMGUI.py:5271
  6611. #: flatcamGUI/ObjectUI.py:617
  6612. msgid ""
  6613. "Include tool-change sequence\n"
  6614. "in G-Code (Pause for tool change)."
  6615. msgstr ""
  6616. "Pausa para troca de ferramentas. Inclua a sequência\n"
  6617. "de troca de ferramentas em G-Code."
  6618. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:5279
  6619. msgid "Toolchange Z:"
  6620. msgstr "Altura para a troca:"
  6621. #: flatcamGUI/FlatCAMGUI.py:4669 flatcamGUI/FlatCAMGUI.py:5281
  6622. msgid "Toolchange Z position."
  6623. msgstr "Posição do eixo Z (altura) para a troca de ferramentas."
  6624. #: flatcamGUI/FlatCAMGUI.py:4675
  6625. msgid "Feedrate:"
  6626. msgstr "Avanço (Mergulho):"
  6627. #: flatcamGUI/FlatCAMGUI.py:4677
  6628. msgid ""
  6629. "Tool speed while drilling\n"
  6630. "(in units per minute)."
  6631. msgstr ""
  6632. "Velocidade da ferramenta durante a perfuração\n"
  6633. "(em unidades por minuto)."
  6634. #: flatcamGUI/FlatCAMGUI.py:4685
  6635. msgid "Spindle Speed:"
  6636. msgstr "Velocidade do Spindle:"
  6637. #: flatcamGUI/FlatCAMGUI.py:4687 flatcamGUI/FlatCAMGUI.py:5311
  6638. #: flatcamGUI/ObjectUI.py:684
  6639. msgid ""
  6640. "Speed of the spindle\n"
  6641. "in RPM (optional)"
  6642. msgstr ""
  6643. "Velocidade do spindle\n"
  6644. "em RPM (opcional)"
  6645. #: flatcamGUI/FlatCAMGUI.py:4695 flatcamGUI/FlatCAMGUI.py:5319
  6646. msgid "Spindle dir.:"
  6647. msgstr "Sentido de Rotação:"
  6648. #: flatcamGUI/FlatCAMGUI.py:4697 flatcamGUI/FlatCAMGUI.py:5321
  6649. msgid ""
  6650. "This sets the direction that the spindle is rotating.\n"
  6651. "It can be either:\n"
  6652. "- CW = clockwise or\n"
  6653. "- CCW = counter clockwise"
  6654. msgstr ""
  6655. "Define o sentido de rotação do spindle.\n"
  6656. "Pode ser:\n"
  6657. "- CW = sentido horário ou\n"
  6658. "- CCW = sentido anti-horário"
  6659. #: flatcamGUI/FlatCAMGUI.py:4709 flatcamGUI/FlatCAMGUI.py:5333
  6660. #: flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224
  6661. msgid "Dwell:"
  6662. msgstr "Espera Velocidade:"
  6663. #: flatcamGUI/FlatCAMGUI.py:4711 flatcamGUI/FlatCAMGUI.py:5335
  6664. #: flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227
  6665. msgid ""
  6666. "Pause to allow the spindle to reach its\n"
  6667. "speed before cutting."
  6668. msgstr ""
  6669. "Pausa para permitir que o spindle atinja sua\n"
  6670. "velocidade antes de cortar."
  6671. #: flatcamGUI/FlatCAMGUI.py:4714 flatcamGUI/FlatCAMGUI.py:5338
  6672. msgid "Duration:"
  6673. msgstr "Tempo de espera:"
  6674. #: flatcamGUI/FlatCAMGUI.py:4716 flatcamGUI/FlatCAMGUI.py:5340
  6675. #: flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234
  6676. msgid "Number of milliseconds for spindle to dwell."
  6677. msgstr "Tempo em Milissegundos para o spindle atingir a velocidade."
  6678. #: flatcamGUI/FlatCAMGUI.py:4728 flatcamGUI/FlatCAMGUI.py:5350
  6679. #: flatcamGUI/ObjectUI.py:707
  6680. msgid "Postprocessor:"
  6681. msgstr "Pós-processador:"
  6682. #: flatcamGUI/FlatCAMGUI.py:4730
  6683. msgid ""
  6684. "The postprocessor file that dictates\n"
  6685. "gcode output."
  6686. msgstr ""
  6687. "O arquivo de pós-processamento (json) que define\n"
  6688. "a saída G-Ccode."
  6689. #: flatcamGUI/FlatCAMGUI.py:4739
  6690. msgid "<b>Gcode: </b>"
  6691. msgstr "<b>G-Code: </b>"
  6692. #: flatcamGUI/FlatCAMGUI.py:4741
  6693. msgid ""
  6694. "Choose what to use for GCode generation:\n"
  6695. "'Drills', 'Slots' or 'Both'.\n"
  6696. "When choosing 'Slots' or 'Both', slots will be\n"
  6697. "converted to drills."
  6698. msgstr ""
  6699. "Escolha o que usar para a geração de G-Code:\n"
  6700. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  6701. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  6702. "convertidos para brocas."
  6703. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/ObjectUI.py:772
  6704. msgid "<b>Mill Holes</b>"
  6705. msgstr "<b>Fresar Furos</b>"
  6706. #: flatcamGUI/FlatCAMGUI.py:4759 flatcamGUI/ObjectUI.py:774
  6707. msgid "Create Geometry for milling holes."
  6708. msgstr "Cria geometria para furos de fresamento."
  6709. #: flatcamGUI/FlatCAMGUI.py:4763
  6710. msgid "Drill Tool dia:"
  6711. msgstr "Diâmetro da Broca:"
  6712. #: flatcamGUI/FlatCAMGUI.py:4770
  6713. msgid "Slot Tool dia:"
  6714. msgstr "Diâmetro da Fresa:"
  6715. #: flatcamGUI/FlatCAMGUI.py:4772
  6716. msgid ""
  6717. "Diameter of the cutting tool\n"
  6718. "when milling slots."
  6719. msgstr ""
  6720. "Diâmetro da ferramenta de corte\n"
  6721. "quando fresar fendas (ranhuras)."
  6722. #: flatcamGUI/FlatCAMGUI.py:4784
  6723. msgid "Defaults"
  6724. msgstr "Padrões"
  6725. #: flatcamGUI/FlatCAMGUI.py:4797
  6726. msgid "Excellon Adv. Options"
  6727. msgstr "Opções Avançadas Excellon"
  6728. #: flatcamGUI/FlatCAMGUI.py:4803 flatcamGUI/FlatCAMGUI.py:5373
  6729. msgid "<b>Advanced Options:</b>"
  6730. msgstr "<b>Opções Avançadas:</b>"
  6731. #: flatcamGUI/FlatCAMGUI.py:4805
  6732. msgid ""
  6733. "Parameters used to create a CNC Job object\n"
  6734. "for this drill object that are shown when App Level is Advanced."
  6735. msgstr ""
  6736. "Parâmetros usados para criar um objeto de Trabalho do CNC\n"
  6737. "para furação que são mostrados quando o nível do aplicativo for Avançado."
  6738. #: flatcamGUI/FlatCAMGUI.py:4813
  6739. msgid "Offset Z:"
  6740. msgstr "Ajuste de Altura:"
  6741. #: flatcamGUI/FlatCAMGUI.py:4815 flatcamGUI/ObjectUI.py:574
  6742. msgid ""
  6743. "Some drill bits (the larger ones) need to drill deeper\n"
  6744. "to create the desired exit hole diameter due of the tip shape.\n"
  6745. "The value here can compensate the Cut Z parameter."
  6746. msgstr ""
  6747. "Algumas brocas (as maiores) precisam perfurar mais profundamente\n"
  6748. "para criar o diâmetro desejado do orifício de saída devido à forma da "
  6749. "ponta.\n"
  6750. "Este valor pode compensar o parâmetro Profundidade de Corte Z."
  6751. #: flatcamGUI/FlatCAMGUI.py:4822 flatcamGUI/FlatCAMGUI.py:5384
  6752. msgid "Toolchange X,Y:"
  6753. msgstr "Troca de ferramentas X,Y:"
  6754. #: flatcamGUI/FlatCAMGUI.py:4824 flatcamGUI/FlatCAMGUI.py:5386
  6755. msgid "Toolchange X,Y position."
  6756. msgstr "Posição X,Y para troca de ferramentas."
  6757. #: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:5393
  6758. #: flatcamGUI/ObjectUI.py:634
  6759. msgid "Start move Z:"
  6760. msgstr "Altura Z Inicial:"
  6761. #: flatcamGUI/FlatCAMGUI.py:4832
  6762. msgid ""
  6763. "Height of the tool just after start.\n"
  6764. "Delete the value if you don't need this feature."
  6765. msgstr ""
  6766. "Altura da ferramenta antes de iniciar o trabalho.\n"
  6767. "Exclua o valor se você não precisar deste recurso."
  6768. #: flatcamGUI/FlatCAMGUI.py:4839 flatcamGUI/FlatCAMGUI.py:5403
  6769. #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144
  6770. msgid "End move Z:"
  6771. msgstr "Altura Z Final:"
  6772. #: flatcamGUI/FlatCAMGUI.py:4841 flatcamGUI/FlatCAMGUI.py:5405
  6773. msgid ""
  6774. "Height of the tool after\n"
  6775. "the last move at the end of the job."
  6776. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  6777. #: flatcamGUI/FlatCAMGUI.py:4848 flatcamGUI/FlatCAMGUI.py:5413
  6778. #: flatcamGUI/ObjectUI.py:665
  6779. msgid "Feedrate Rapids:"
  6780. msgstr "Taxa de Avanço Rápida:"
  6781. #: flatcamGUI/FlatCAMGUI.py:4850 flatcamGUI/ObjectUI.py:667
  6782. msgid ""
  6783. "Tool speed while drilling\n"
  6784. "(in units per minute).\n"
  6785. "This is for the rapid move G00.\n"
  6786. "It is useful only for Marlin,\n"
  6787. "ignore for any other cases."
  6788. msgstr ""
  6789. "Velocidade da ferramenta durante a perfuração\n"
  6790. "(em unidades por minuto).\n"
  6791. "Usado para movimento rápido G00.\n"
  6792. "É útil apenas para Marlin,\n"
  6793. "ignore para outros casos."
  6794. #: flatcamGUI/FlatCAMGUI.py:4861 flatcamGUI/FlatCAMGUI.py:5437
  6795. #: flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256
  6796. msgid "Probe Z depth:"
  6797. msgstr "Profundidade Z da Sonda:"
  6798. #: flatcamGUI/FlatCAMGUI.py:4863 flatcamGUI/FlatCAMGUI.py:5439
  6799. #: flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259
  6800. msgid ""
  6801. "The maximum depth that the probe is allowed\n"
  6802. "to probe. Negative value, in current units."
  6803. msgstr ""
  6804. "Profundidade máxima permitida para a sonda.\n"
  6805. "Valor negativo, em unidades atuais."
  6806. #: flatcamGUI/FlatCAMGUI.py:4871 flatcamGUI/FlatCAMGUI.py:5447
  6807. #: flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270
  6808. msgid "Feedrate Probe:"
  6809. msgstr "Avanço da Sonda:"
  6810. #: flatcamGUI/FlatCAMGUI.py:4873 flatcamGUI/FlatCAMGUI.py:5449
  6811. #: flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273
  6812. msgid "The feedrate used while the probe is probing."
  6813. msgstr "Velocidade de Avanço usada enquanto a sonda está operando."
  6814. #: flatcamGUI/FlatCAMGUI.py:4879 flatcamGUI/FlatCAMGUI.py:5456
  6815. msgid "Fast Plunge:"
  6816. msgstr "Mergulho Rápido:"
  6817. #: flatcamGUI/FlatCAMGUI.py:4881 flatcamGUI/FlatCAMGUI.py:5458
  6818. msgid ""
  6819. "By checking this, the vertical move from\n"
  6820. "Z_Toolchange to Z_move is done with G0,\n"
  6821. "meaning the fastest speed available.\n"
  6822. "WARNING: the move is done at Toolchange X,Y coords."
  6823. msgstr ""
  6824. "Ao marcado, o movimento vertical da altura de\n"
  6825. "Troca de Ferramentas para a altura de Deslocamento\n"
  6826. "é feito com G0, na velocidade mais rápida disponível.\n"
  6827. "AVISO: o movimento é feito nas Coordenadas X,Y de troca de ferramentas."
  6828. #: flatcamGUI/FlatCAMGUI.py:4890
  6829. msgid "Fast Retract:"
  6830. msgstr "Recolhimento Rápido:"
  6831. #: flatcamGUI/FlatCAMGUI.py:4892
  6832. msgid ""
  6833. "Exit hole strategy.\n"
  6834. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6835. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6836. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6837. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6838. "(travel height) is done as fast as possible (G0) in one move."
  6839. msgstr ""
  6840. "Estratégia para sair dos furos.\n"
  6841. "- Quando desmarcado, ao sair do furo, a broca sobe lentamente, com\n"
  6842. "avanço definido (G1), até a profundidade zero e depois some o mais\n"
  6843. "rápido possível (G0) até a altura de deslocamento.\n"
  6844. "- Quando marcado, o deslocamento da profundidade de corte para a altura de "
  6845. "deslocamento\n"
  6846. " é feito o mais rápido possível (G0) em um único movimento."
  6847. #: flatcamGUI/FlatCAMGUI.py:4911
  6848. msgid "Excellon Export"
  6849. msgstr "Exportar Excellon"
  6850. #: flatcamGUI/FlatCAMGUI.py:4916
  6851. msgid ""
  6852. "The parameters set here are used in the file exported\n"
  6853. "when using the File -> Export -> Export Excellon menu entry."
  6854. msgstr ""
  6855. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6856. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Excellon."
  6857. #: flatcamGUI/FlatCAMGUI.py:4927 flatcamGUI/FlatCAMGUI.py:4933
  6858. msgid "The units used in the Excellon file."
  6859. msgstr "A unidade usada no arquivo Excellon."
  6860. #: flatcamGUI/FlatCAMGUI.py:4941
  6861. msgid ""
  6862. "The NC drill files, usually named Excellon files\n"
  6863. "are files that can be found in different formats.\n"
  6864. "Here we set the format used when the provided\n"
  6865. "coordinates are not using period."
  6866. msgstr ""
  6867. "Os arquivos com a furação, geralmente chamados de arquivos Excellon\n"
  6868. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6869. "Aqui é definido o formato usado quando as coordenadas\n"
  6870. "fornecidas não usam ponto."
  6871. #: flatcamGUI/FlatCAMGUI.py:4977
  6872. msgid "<b>Format:</b>"
  6873. msgstr "<b>Formato:</b>"
  6874. #: flatcamGUI/FlatCAMGUI.py:4979 flatcamGUI/FlatCAMGUI.py:4989
  6875. msgid ""
  6876. "Select the kind of coordinates format used.\n"
  6877. "Coordinates can be saved with decimal point or without.\n"
  6878. "When there is no decimal point, it is required to specify\n"
  6879. "the number of digits for integer part and the number of decimals.\n"
  6880. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6881. "or TZ = trailing zeros are kept."
  6882. msgstr ""
  6883. "Selecione o formato de coordenadas usado.\n"
  6884. "As coordenadas podem ser salvas com ou sem ponto decimal.\n"
  6885. "Quando não há ponto decimal, é necessário especificar\n"
  6886. "o número de dígitos para a parte inteira e o número de casas decimais.\n"
  6887. "Deve ser especificado LZ (manter zeros à esquerda)\n"
  6888. "ou TZ (manter zeros à direita)."
  6889. #: flatcamGUI/FlatCAMGUI.py:4986
  6890. msgid "Decimal"
  6891. msgstr "Decimal"
  6892. #: flatcamGUI/FlatCAMGUI.py:4987
  6893. msgid "No-Decimal"
  6894. msgstr "No-Decimal"
  6895. #: flatcamGUI/FlatCAMGUI.py:5013
  6896. msgid ""
  6897. "This sets the default type of Excellon zeros.\n"
  6898. "If LZ then Leading Zeros are kept and\n"
  6899. "Trailing Zeros are removed.\n"
  6900. "If TZ is checked then Trailing Zeros are kept\n"
  6901. "and Leading Zeros are removed."
  6902. msgstr ""
  6903. "Define o tipo padrão de zeros de Excellon.\n"
  6904. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6905. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6906. #: flatcamGUI/FlatCAMGUI.py:5043
  6907. msgid "A list of Excellon Editor parameters."
  6908. msgstr "Uma lista de parâmetros do Editor Excellon."
  6909. #: flatcamGUI/FlatCAMGUI.py:5053
  6910. msgid ""
  6911. "Set the number of selected Excellon geometry\n"
  6912. "items above which the utility geometry\n"
  6913. "becomes just a selection rectangle.\n"
  6914. "Increases the performance when moving a\n"
  6915. "large number of geometric elements."
  6916. msgstr ""
  6917. "Define o número máximo de ítens de geometria Excellon\n"
  6918. "selecionados. Acima desse valor a geometria se torna um\n"
  6919. "retângulo de seleção.\n"
  6920. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  6921. #: flatcamGUI/FlatCAMGUI.py:5065
  6922. msgid "New Tool Dia:"
  6923. msgstr "Novo Diâmetro:"
  6924. #: flatcamGUI/FlatCAMGUI.py:5088
  6925. msgid "<b>Linear Drill Array:</b>"
  6926. msgstr "<b>Matriz Linear de Brocas:</b>"
  6927. #: flatcamGUI/FlatCAMGUI.py:5092
  6928. msgid "Linear Dir.:"
  6929. msgstr "Direção:"
  6930. #: flatcamGUI/FlatCAMGUI.py:5128
  6931. msgid "<b>Circular Drill Array:</b>"
  6932. msgstr "<b>Matriz Circular de Brocas:</b>"
  6933. #: flatcamGUI/FlatCAMGUI.py:5132
  6934. msgid "Circular Dir.:"
  6935. msgstr "Sentido:"
  6936. #: flatcamGUI/FlatCAMGUI.py:5134
  6937. msgid ""
  6938. "Direction for circular array.\n"
  6939. "Can be CW = clockwise or CCW = counter clockwise."
  6940. msgstr ""
  6941. "Sentido da matriz circular.\n"
  6942. "Pode ser CW = sentido horário ou CCW = sentido anti-horário."
  6943. #: flatcamGUI/FlatCAMGUI.py:5145
  6944. msgid "Circ. Angle:"
  6945. msgstr "Ângulo:"
  6946. #: flatcamGUI/FlatCAMGUI.py:5162
  6947. msgid "Geometry General"
  6948. msgstr "Geometria Geral"
  6949. #: flatcamGUI/FlatCAMGUI.py:5181
  6950. msgid ""
  6951. "The number of circle steps for <b>Geometry</b> \n"
  6952. "circle and arc shapes linear approximation."
  6953. msgstr ""
  6954. "Número de etapas do círculo para a aproximação linear\n"
  6955. "de <b>Geometria</b> círculo e arco."
  6956. #: flatcamGUI/FlatCAMGUI.py:5189
  6957. msgid "<b>Tools:</b>"
  6958. msgstr "<b>Ferramentas:</b>"
  6959. #: flatcamGUI/FlatCAMGUI.py:5195 flatcamGUI/FlatCAMGUI.py:5804
  6960. msgid "Diameters of the cutting tools, separated by ','"
  6961. msgstr "Diâmetros das ferramentas de corte, separadas por ','"
  6962. #: flatcamGUI/FlatCAMGUI.py:5209
  6963. msgid "Geometry Options"
  6964. msgstr "Opções de Geometria"
  6965. #: flatcamGUI/FlatCAMGUI.py:5214
  6966. msgid "<b>Create CNC Job:</b>"
  6967. msgstr "<b>Criar um Trabalho CNC:</b>"
  6968. #: flatcamGUI/FlatCAMGUI.py:5216
  6969. msgid ""
  6970. "Create a CNC Job object\n"
  6971. "tracing the contours of this\n"
  6972. "Geometry object."
  6973. msgstr ""
  6974. "Cria um objeto de Trabalho CNC\n"
  6975. "traçando os contornos deste objeto\n"
  6976. "Geometria."
  6977. #: flatcamGUI/FlatCAMGUI.py:5228 flatcamGUI/ObjectUI.py:1065
  6978. msgid ""
  6979. "Cutting depth (negative)\n"
  6980. "below the copper surface."
  6981. msgstr ""
  6982. "Profundidade de corte (negativo)\n"
  6983. "abaixo da superfície de cobre."
  6984. #: flatcamGUI/FlatCAMGUI.py:5236
  6985. msgid "Multidepth"
  6986. msgstr "Múltiplas Profundidades"
  6987. #: flatcamGUI/FlatCAMGUI.py:5238
  6988. msgid "Multidepth usage: True or False."
  6989. msgstr "Usar Múltiplas Profundidades."
  6990. #: flatcamGUI/FlatCAMGUI.py:5243
  6991. msgid "Depth/Pass:"
  6992. msgstr "Profundidade por Passe:"
  6993. #: flatcamGUI/FlatCAMGUI.py:5245
  6994. msgid ""
  6995. "The depth to cut on each pass,\n"
  6996. "when multidepth is enabled.\n"
  6997. "It has positive value although\n"
  6998. "it is a fraction from the depth\n"
  6999. "which has negative value."
  7000. msgstr ""
  7001. "A profundidade a ser cortada em cada passe,\n"
  7002. "quando Múltiplas Profundidades estiver ativo.\n"
  7003. "Tem valor positivo, embora seja uma fração\n"
  7004. "da profundidade, que tem valor negativo."
  7005. #: flatcamGUI/FlatCAMGUI.py:5261 flatcamGUI/ObjectUI.py:1101
  7006. msgid ""
  7007. "Height of the tool when\n"
  7008. "moving without cutting."
  7009. msgstr "Altura da ferramenta ao mover sem cortar."
  7010. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/ObjectUI.py:1156
  7011. msgid "Feed Rate X-Y:"
  7012. msgstr "Taxa de Avanço XY:"
  7013. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/ObjectUI.py:1159
  7014. msgid ""
  7015. "Cutting speed in the XY\n"
  7016. "plane in units per minute"
  7017. msgstr "Velocidade de corte no plano XY em unidades por minuto"
  7018. #: flatcamGUI/FlatCAMGUI.py:5298
  7019. msgid "Feed Rate Z:"
  7020. msgstr "Taxa de Avanço Z:"
  7021. #: flatcamGUI/FlatCAMGUI.py:5300
  7022. msgid ""
  7023. "Cutting speed in the XY\n"
  7024. "plane in units per minute.\n"
  7025. "It is called also Plunge."
  7026. msgstr ""
  7027. "Velocidade de corte no plano Z em unidades por minuto.\n"
  7028. "Também é chamado de Mergulho."
  7029. #: flatcamGUI/FlatCAMGUI.py:5309 flatcamGUI/ObjectUI.py:682
  7030. #: flatcamGUI/ObjectUI.py:1211
  7031. msgid "Spindle speed:"
  7032. msgstr "Velocidade do Spindle:"
  7033. #: flatcamGUI/FlatCAMGUI.py:5352
  7034. msgid ""
  7035. "The postprocessor file that dictates\n"
  7036. "Machine Code output."
  7037. msgstr ""
  7038. "O arquivo do pós-processador que dita a saída do\n"
  7039. "Código da máquina."
  7040. #: flatcamGUI/FlatCAMGUI.py:5368
  7041. msgid "Geometry Adv. Options"
  7042. msgstr "Opções Avançadas"
  7043. #: flatcamGUI/FlatCAMGUI.py:5375
  7044. msgid ""
  7045. "Parameters to create a CNC Job object\n"
  7046. "tracing the contours of a Geometry object."
  7047. msgstr ""
  7048. "Parâmetros para criar um objeto de Trabalho CNC\n"
  7049. "traçando os contornos de um objeto Geometria."
  7050. #: flatcamGUI/FlatCAMGUI.py:5395
  7051. msgid ""
  7052. "Height of the tool just after starting the work.\n"
  7053. "Delete the value if you don't need this feature."
  7054. msgstr ""
  7055. "Altura da ferramenta ao iniciar o trabalho.\n"
  7056. "Exclua o valor se você não precisar deste recurso."
  7057. #: flatcamGUI/FlatCAMGUI.py:5415
  7058. msgid ""
  7059. "Cutting speed in the XY plane\n"
  7060. "(in units per minute).\n"
  7061. "This is for the rapid move G00.\n"
  7062. "It is useful only for Marlin,\n"
  7063. "ignore for any other cases."
  7064. msgstr ""
  7065. "Velocidade de corte no plano XY (em unidades por minuto).\n"
  7066. "Para o movimento rápido G00.\n"
  7067. "É útil apenas para Marlin, ignore em outros casos."
  7068. #: flatcamGUI/FlatCAMGUI.py:5427
  7069. msgid "Re-cut 1st pt."
  7070. msgstr "Re-corte primeiro ponto."
  7071. #: flatcamGUI/FlatCAMGUI.py:5429 flatcamGUI/ObjectUI.py:1202
  7072. msgid ""
  7073. "In order to remove possible\n"
  7074. "copper leftovers where first cut\n"
  7075. "meet with last cut, we generate an\n"
  7076. "extended cut over the first cut section."
  7077. msgstr ""
  7078. "Para remover possíveis sobras no ponto de encontro\n"
  7079. "do primeiro com o último corte, gera-se um corte\n"
  7080. "próximo à primeira seção de corte."
  7081. #: flatcamGUI/FlatCAMGUI.py:5468
  7082. msgid "Seg. X size:"
  7083. msgstr "Tamanho Segmento X:"
  7084. #: flatcamGUI/FlatCAMGUI.py:5470
  7085. msgid ""
  7086. "The size of the trace segment on the X axis.\n"
  7087. "Useful for auto-leveling.\n"
  7088. "A value of 0 means no segmentation on the X axis."
  7089. msgstr ""
  7090. "O tamanho do segmento de rastreio no eixo X.\n"
  7091. "Útil para nivelamento automático.\n"
  7092. "Valor 0 significa que não há segmentação no eixo X."
  7093. #: flatcamGUI/FlatCAMGUI.py:5479
  7094. msgid "Seg. Y size:"
  7095. msgstr "Tamanho Segmento Y:"
  7096. #: flatcamGUI/FlatCAMGUI.py:5481
  7097. msgid ""
  7098. "The size of the trace segment on the Y axis.\n"
  7099. "Useful for auto-leveling.\n"
  7100. "A value of 0 means no segmentation on the Y axis."
  7101. msgstr ""
  7102. "O tamanho do segmento de rastreio no eixo Y.\n"
  7103. "Útil para nivelamento automático.\n"
  7104. "Valor 0 significa que não há segmentação no eixo Y."
  7105. #: flatcamGUI/FlatCAMGUI.py:5497
  7106. msgid "Geometry Editor"
  7107. msgstr "Editor de Geometria"
  7108. #: flatcamGUI/FlatCAMGUI.py:5502
  7109. msgid "A list of Geometry Editor parameters."
  7110. msgstr "Uma lista de parâmetros do Editor de Geometria."
  7111. #: flatcamGUI/FlatCAMGUI.py:5512
  7112. msgid ""
  7113. "Set the number of selected geometry\n"
  7114. "items above which the utility geometry\n"
  7115. "becomes just a selection rectangle.\n"
  7116. "Increases the performance when moving a\n"
  7117. "large number of geometric elements."
  7118. msgstr ""
  7119. "Define o número máximo de ítens de geometria selecionados.\n"
  7120. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  7121. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  7122. #: flatcamGUI/FlatCAMGUI.py:5531
  7123. msgid "CNC Job General"
  7124. msgstr "CNC Geral"
  7125. #: flatcamGUI/FlatCAMGUI.py:5544 flatcamGUI/ObjectUI.py:544
  7126. #: flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1447
  7127. msgid "Plot Object"
  7128. msgstr "Mostrar"
  7129. #: flatcamGUI/FlatCAMGUI.py:5551
  7130. msgid "Plot kind:"
  7131. msgstr "Tipo de Gráfico:"
  7132. #: flatcamGUI/FlatCAMGUI.py:5553 flatcamGUI/ObjectUI.py:1356
  7133. msgid ""
  7134. "This selects the kind of geometries on the canvas to plot.\n"
  7135. "Those can be either of type 'Travel' which means the moves\n"
  7136. "above the work piece or it can be of type 'Cut',\n"
  7137. "which means the moves that cut into the material."
  7138. msgstr ""
  7139. "Seleciona o tipo de geometria mostrada na tela.\n"
  7140. "Pode ser do tipo 'Deslocamento', com os movimentos acima da peça ou do\n"
  7141. "tipo 'Corte', com os movimentos cortando o material."
  7142. #: flatcamGUI/FlatCAMGUI.py:5561 flatcamGUI/ObjectUI.py:1365
  7143. msgid "Travel"
  7144. msgstr "Deslocamento"
  7145. #: flatcamGUI/FlatCAMGUI.py:5570
  7146. msgid "Display Annotation:"
  7147. msgstr "Exibir Anotação:"
  7148. #: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/ObjectUI.py:1372
  7149. msgid ""
  7150. "This selects if to display text annotation on the plot.\n"
  7151. "When checked it will display numbers in order for each end\n"
  7152. "of a travel line."
  7153. msgstr ""
  7154. "Seleciona se deseja exibir a anotação de texto no gráfico.\n"
  7155. "Quando marcado, exibirá números para cada final\n"
  7156. "de uma linha de deslocamento."
  7157. #: flatcamGUI/FlatCAMGUI.py:5584
  7158. msgid "Annotation Size:"
  7159. msgstr "Tamanho da Anotação:"
  7160. #: flatcamGUI/FlatCAMGUI.py:5586
  7161. msgid "The font size of the annotation text. In pixels."
  7162. msgstr "O tamanho da fonte do texto de anotação. Em pixels."
  7163. #: flatcamGUI/FlatCAMGUI.py:5594
  7164. msgid "Annotation Color:"
  7165. msgstr "Cor da Anotação:"
  7166. #: flatcamGUI/FlatCAMGUI.py:5596
  7167. msgid "Set the font color for the annotation texts."
  7168. msgstr "Define a cor da fonte para os textos de anotação."
  7169. #: flatcamGUI/FlatCAMGUI.py:5619
  7170. msgid ""
  7171. "The number of circle steps for <b>GCode</b> \n"
  7172. "circle and arc shapes linear approximation."
  7173. msgstr ""
  7174. "O número de etapas de círculo para <b>G-Code</b>\n"
  7175. "aproximação linear para círculos e formas de arco."
  7176. #: flatcamGUI/FlatCAMGUI.py:5629
  7177. msgid ""
  7178. "Diameter of the tool to be\n"
  7179. "rendered in the plot."
  7180. msgstr "Diâmetro da ferramenta a ser renderizada no gráfico."
  7181. #: flatcamGUI/FlatCAMGUI.py:5637
  7182. msgid "Coords dec.:"
  7183. msgstr "Decimais das Coordenadas:"
  7184. #: flatcamGUI/FlatCAMGUI.py:5639
  7185. msgid ""
  7186. "The number of decimals to be used for \n"
  7187. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  7188. msgstr ""
  7189. "Número de decimais a ser usado para as coordenadas\n"
  7190. "X, Y, Z no código do CNC (G-Code, etc.)"
  7191. #: flatcamGUI/FlatCAMGUI.py:5647
  7192. msgid "Feedrate dec.:"
  7193. msgstr "Decimais da Taxa de Avanço:"
  7194. #: flatcamGUI/FlatCAMGUI.py:5649
  7195. msgid ""
  7196. "The number of decimals to be used for \n"
  7197. "the Feedrate parameter in CNC code (GCODE, etc.)"
  7198. msgstr ""
  7199. "O número de decimais a ser usado para\n"
  7200. "o parâmetro Taxa de Avanço no código CNC (G-Code, etc.)"
  7201. #: flatcamGUI/FlatCAMGUI.py:5664
  7202. msgid "CNC Job Options"
  7203. msgstr "Opções de Trabalho CNC"
  7204. #: flatcamGUI/FlatCAMGUI.py:5667 flatcamGUI/FlatCAMGUI.py:5708
  7205. msgid "<b>Export G-Code:</b>"
  7206. msgstr "<b>Exportar G-Code:</b>"
  7207. #: flatcamGUI/FlatCAMGUI.py:5669 flatcamGUI/FlatCAMGUI.py:5710
  7208. #: flatcamGUI/ObjectUI.py:1483
  7209. msgid ""
  7210. "Export and save G-Code to\n"
  7211. "make this object to a file."
  7212. msgstr ""
  7213. "Exporta e salva em arquivo\n"
  7214. "o G-Code para fazer este objeto."
  7215. #: flatcamGUI/FlatCAMGUI.py:5675
  7216. msgid "Prepend to G-Code:"
  7217. msgstr "Incluir no Início do G-Code:"
  7218. #: flatcamGUI/FlatCAMGUI.py:5677
  7219. msgid ""
  7220. "Type here any G-Code commands you would\n"
  7221. "like to add at the beginning of the G-Code file."
  7222. msgstr ""
  7223. "Digite aqui os comandos G-Code que você gostaria\n"
  7224. "de adicionar no início do arquivo G-Code gerado."
  7225. #: flatcamGUI/FlatCAMGUI.py:5686
  7226. msgid "Append to G-Code:"
  7227. msgstr "Incluir no final do G-Code:"
  7228. #: flatcamGUI/FlatCAMGUI.py:5688 flatcamGUI/ObjectUI.py:1505
  7229. msgid ""
  7230. "Type here any G-Code commands you would\n"
  7231. "like to append to the generated file.\n"
  7232. "I.e.: M2 (End of program)"
  7233. msgstr ""
  7234. "Digite aqui os comandos G-Code que você gostaria'nde acrescentar no final do "
  7235. "arquivo G-Code gerado.\n"
  7236. "M2 (Fim do programa)"
  7237. #: flatcamGUI/FlatCAMGUI.py:5705
  7238. msgid "CNC Job Adv. Options"
  7239. msgstr "Opções Avançadas"
  7240. #: flatcamGUI/FlatCAMGUI.py:5716 flatcamGUI/ObjectUI.py:1523
  7241. msgid "Toolchange G-Code:"
  7242. msgstr "G-Code para Troca de Ferramentas:"
  7243. #: flatcamGUI/FlatCAMGUI.py:5718
  7244. msgid ""
  7245. "Type here any G-Code commands you would\n"
  7246. "like to be executed when Toolchange event is encountered.\n"
  7247. "This will constitute a Custom Toolchange GCode,\n"
  7248. "or a Toolchange Macro."
  7249. msgstr ""
  7250. "Digite aqui os comandos do G-Code que você gostaria de executar\n"
  7251. "quando o evento Troca de Ferramentas for encontrado.\n"
  7252. "Será uma personalização de G-Code para Troca de Ferramentas\n"
  7253. "ou uma Macro de Troca de Ferramentas."
  7254. #: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/ObjectUI.py:1545
  7255. msgid "Use Toolchange Macro"
  7256. msgstr "Usar Macro de Troca de Ferramentas"
  7257. #: flatcamGUI/FlatCAMGUI.py:5734 flatcamGUI/ObjectUI.py:1548
  7258. msgid ""
  7259. "Check this box if you want to use\n"
  7260. "a Custom Toolchange GCode (macro)."
  7261. msgstr ""
  7262. "Marque esta caixa se você quiser usar a macro G-Code de Troca de Ferramentas."
  7263. #: flatcamGUI/FlatCAMGUI.py:5746 flatcamGUI/ObjectUI.py:1557
  7264. msgid ""
  7265. "A list of the FlatCAM variables that can be used\n"
  7266. "in the Toolchange event.\n"
  7267. "They have to be surrounded by the '%' symbol"
  7268. msgstr ""
  7269. "Uma lista das variáveis FlatCAM que podem ser usadas\n"
  7270. "no evento Troca de Ferramentas.\n"
  7271. "Eles devem estar cercados pelo símbolo '%'"
  7272. #: flatcamGUI/FlatCAMGUI.py:5753 flatcamGUI/ObjectUI.py:1564
  7273. msgid "Parameters"
  7274. msgstr "Parâmetros"
  7275. #: flatcamGUI/FlatCAMGUI.py:5756 flatcamGUI/ObjectUI.py:1567
  7276. msgid "FlatCAM CNC parameters"
  7277. msgstr "Parâmetros do FlatCAM CNC"
  7278. #: flatcamGUI/FlatCAMGUI.py:5757 flatcamGUI/ObjectUI.py:1568
  7279. msgid "tool = tool number"
  7280. msgstr "tool = número da ferramenta"
  7281. #: flatcamGUI/FlatCAMGUI.py:5758 flatcamGUI/ObjectUI.py:1569
  7282. msgid "tooldia = tool diameter"
  7283. msgstr "tooldia = diâmetro da ferramenta"
  7284. #: flatcamGUI/FlatCAMGUI.py:5759 flatcamGUI/ObjectUI.py:1570
  7285. msgid "t_drills = for Excellon, total number of drills"
  7286. msgstr "t_drills = para Excellon, número total de brocas"
  7287. #: flatcamGUI/FlatCAMGUI.py:5760 flatcamGUI/ObjectUI.py:1571
  7288. msgid "x_toolchange = X coord for Toolchange"
  7289. msgstr "x_toolchange = coord. X para troca de ferramentas"
  7290. #: flatcamGUI/FlatCAMGUI.py:5761 flatcamGUI/ObjectUI.py:1572
  7291. msgid "y_toolchange = Y coord for Toolchange"
  7292. msgstr "y_toolchange = coord. Y para troca de ferramentas"
  7293. #: flatcamGUI/FlatCAMGUI.py:5762 flatcamGUI/ObjectUI.py:1573
  7294. msgid "z_toolchange = Z coord for Toolchange"
  7295. msgstr "z_toolchange = coord. Z para troca de ferramentas"
  7296. #: flatcamGUI/FlatCAMGUI.py:5763
  7297. msgid "z_cut = Z depth for the cut"
  7298. msgstr "z_cut = profundidade Z para o corte"
  7299. #: flatcamGUI/FlatCAMGUI.py:5764
  7300. msgid "z_move = Z height for travel"
  7301. msgstr "z_move = altura Z para deslocamentos"
  7302. #: flatcamGUI/FlatCAMGUI.py:5765 flatcamGUI/ObjectUI.py:1576
  7303. msgid "z_depthpercut = the step value for multidepth cut"
  7304. msgstr "z_depthpercut = valor do passo para corte múltiplas profundidade"
  7305. #: flatcamGUI/FlatCAMGUI.py:5766 flatcamGUI/ObjectUI.py:1577
  7306. msgid "spindlesspeed = the value for the spindle speed"
  7307. msgstr "spindlesspeed = velocidade do spindle"
  7308. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/ObjectUI.py:1578
  7309. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  7310. msgstr "dwelltime = tempo de espera para o spindle atingir sua vel. RPM"
  7311. #: flatcamGUI/FlatCAMGUI.py:5789
  7312. msgid "NCC Tool Options"
  7313. msgstr "Opções Área Sem Cobre (NCC)"
  7314. #: flatcamGUI/FlatCAMGUI.py:5802 flatcamGUI/FlatCAMGUI.py:6532
  7315. msgid "Tools dia:"
  7316. msgstr "Diâmetro da Ferramenta:"
  7317. #: flatcamGUI/FlatCAMGUI.py:5812 flatcamTools/ToolNonCopperClear.py:167
  7318. #, python-format
  7319. msgid ""
  7320. "How much (fraction) of the tool width to overlap each tool pass.\n"
  7321. "Example:\n"
  7322. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  7323. "\n"
  7324. "Adjust the value starting with lower values\n"
  7325. "and increasing it if areas that should be cleared are still \n"
  7326. "not cleared.\n"
  7327. "Lower values = faster processing, faster execution on PCB.\n"
  7328. "Higher values = slow processing and slow execution on CNC\n"
  7329. "due of too many paths."
  7330. msgstr ""
  7331. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  7332. "ferramenta.\n"
  7333. "Exemplo:\n"
  7334. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da "
  7335. "ferramenta.\n"
  7336. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  7337. "deveria ser limpa não foi limpa.\n"
  7338. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  7339. "Valores maiores = processamento lento e execução lenta no CNC \n"
  7340. " devido ao número de caminhos."
  7341. #: flatcamGUI/FlatCAMGUI.py:5828 flatcamTools/ToolNonCopperClear.py:183
  7342. msgid "Bounding box margin."
  7343. msgstr "Margem da caixa delimitadora."
  7344. #: flatcamGUI/FlatCAMGUI.py:5837 flatcamTools/ToolNonCopperClear.py:192
  7345. #: flatcamTools/ToolPaint.py:190
  7346. msgid ""
  7347. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  7348. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  7349. "lines."
  7350. msgstr ""
  7351. "Algoritmo para retirada do cobre:<BR><B>Padrão</B>: passo fixo para dentro. "
  7352. "<BR><B>Baseado em semente</B>: para fora a partir da semente.<BR><B>Baseado "
  7353. "em linha</B>: linhas paralelas."
  7354. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamTools/ToolNonCopperClear.py:224
  7355. #: flatcamTools/ToolPaint.py:222
  7356. msgid "Rest M.:"
  7357. msgstr "Maquinagem Restante:"
  7358. #: flatcamGUI/FlatCAMGUI.py:5871
  7359. msgid ""
  7360. "If checked, use 'rest machining'.\n"
  7361. "Basically it will clear copper outside PCB features,\n"
  7362. "using the biggest tool and continue with the next tools,\n"
  7363. "from bigger to smaller, to clear areas of copper that\n"
  7364. "could not be cleared by previous tool.\n"
  7365. "If not checked, use the standard algorithm."
  7366. msgstr ""
  7367. "Se marcada, usa 'usinagem de descanso'.\n"
  7368. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  7369. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  7370. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  7371. "retiradas com a ferramenta anterior.\n"
  7372. "Se não estiver marcada, usa o algoritmo padrão."
  7373. #: flatcamGUI/FlatCAMGUI.py:5890
  7374. msgid "Cutout Tool Options"
  7375. msgstr "Opções da Ferramenta de Recorte"
  7376. #: flatcamGUI/FlatCAMGUI.py:5895 flatcamGUI/ObjectUI.py:402
  7377. msgid ""
  7378. "Create toolpaths to cut around\n"
  7379. "the PCB and separate it from\n"
  7380. "the original board."
  7381. msgstr ""
  7382. "Cria caminhos da ferramenta para cortar\n"
  7383. "o PCB e separá-lo da placa original."
  7384. #: flatcamGUI/FlatCAMGUI.py:5914
  7385. msgid ""
  7386. "Distance from objects at which\n"
  7387. "to draw the cutout."
  7388. msgstr ""
  7389. "Distância dos objetos\n"
  7390. "para desenhar o recorte."
  7391. #: flatcamGUI/FlatCAMGUI.py:5921 flatcamTools/ToolCutOut.py:97
  7392. msgid "Gap size:"
  7393. msgstr "Tamanho da Ponte:"
  7394. #: flatcamGUI/FlatCAMGUI.py:5923
  7395. msgid ""
  7396. "Size of the gaps in the toolpath\n"
  7397. "that will remain to hold the\n"
  7398. "board in place."
  7399. msgstr ""
  7400. "Tamanho das pontes no caminho da ferramenta\n"
  7401. "que permanecerão para manter a placa no lugar."
  7402. #: flatcamGUI/FlatCAMGUI.py:5931 flatcamTools/ToolCutOut.py:135
  7403. msgid "Gaps:"
  7404. msgstr "Pontes:"
  7405. #: flatcamGUI/FlatCAMGUI.py:5933
  7406. msgid ""
  7407. "Number of bridge gaps used for the cutout.\n"
  7408. "There can be maximum 8 bridges/gaps.\n"
  7409. "The choices are:\n"
  7410. "- lr - left + right\n"
  7411. "- tb - top + bottom\n"
  7412. "- 4 - left + right +top + bottom\n"
  7413. "- 2lr - 2*left + 2*right\n"
  7414. "- 2tb - 2*top + 2*bottom\n"
  7415. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7416. msgstr ""
  7417. "Número de pontes utilizadas para o recorte.\n"
  7418. "Pode haver um máximo de 8 pontes/lacunas.\n"
  7419. "As opções são:\n"
  7420. "- LR - esquerda + direita\n"
  7421. "- TB - topo + baixo\n"
  7422. "- 4 - esquerda + direita + topo + baixo\n"
  7423. "- 2LR - 2*esquerda + 2*direita\n"
  7424. "- 2TB - 2*topo + 2*baixo\n"
  7425. "- 8 - 2*esquerda + 2*direita + 2*topo + 2*baixo"
  7426. #: flatcamGUI/FlatCAMGUI.py:5954 flatcamTools/ToolCutOut.py:116
  7427. msgid "Convex Sh.:"
  7428. msgstr "Forma Convexa:"
  7429. #: flatcamGUI/FlatCAMGUI.py:5956
  7430. msgid "Create a convex shape surrounding the entire PCB."
  7431. msgstr "Crie uma forma convexa ao redor de toda a PCB."
  7432. #: flatcamGUI/FlatCAMGUI.py:5969
  7433. msgid "2Sided Tool Options"
  7434. msgstr "Opções de PCB 2 Faces"
  7435. #: flatcamGUI/FlatCAMGUI.py:5974
  7436. msgid ""
  7437. "A tool to help in creating a double sided\n"
  7438. "PCB using alignment holes."
  7439. msgstr ""
  7440. "Uma ferramenta para ajudar na criação de um\n"
  7441. "PCB de dupla face usando furos de alinhamento."
  7442. #: flatcamGUI/FlatCAMGUI.py:5984 flatcamTools/ToolDblSided.py:234
  7443. msgid "Drill diam.:"
  7444. msgstr "Diâmetro da Broca:"
  7445. #: flatcamGUI/FlatCAMGUI.py:5986 flatcamTools/ToolDblSided.py:225
  7446. #: flatcamTools/ToolDblSided.py:236
  7447. msgid "Diameter of the drill for the alignment holes."
  7448. msgstr "Diâmetro da broca para os furos de alinhamento."
  7449. #: flatcamGUI/FlatCAMGUI.py:5995 flatcamTools/ToolDblSided.py:120
  7450. msgid "Mirror Axis:"
  7451. msgstr "Espelhar Eixo:"
  7452. #: flatcamGUI/FlatCAMGUI.py:5997 flatcamTools/ToolDblSided.py:122
  7453. msgid "Mirror vertically (X) or horizontally (Y)."
  7454. msgstr "Espelha verticalmente (X) ou horizontalmente (Y)."
  7455. #: flatcamGUI/FlatCAMGUI.py:6006 flatcamTools/ToolDblSided.py:131
  7456. msgid "Point"
  7457. msgstr "Ponto"
  7458. #: flatcamGUI/FlatCAMGUI.py:6007 flatcamTools/ToolDblSided.py:132
  7459. msgid "Box"
  7460. msgstr "Caixa"
  7461. #: flatcamGUI/FlatCAMGUI.py:6008 flatcamTools/ToolDblSided.py:133
  7462. msgid "Axis Ref:"
  7463. msgstr "Eixo de Referência:"
  7464. #: flatcamGUI/FlatCAMGUI.py:6010
  7465. msgid ""
  7466. "The axis should pass through a <b>point</b> or cut\n"
  7467. " a specified <b>box</b> (in a Geometry object) in \n"
  7468. "the middle."
  7469. msgstr ""
  7470. "O eixo deve passar por um <b>ponto</b> ou cortar\n"
  7471. "no meio uma <b>caixa</b> especificada (em um objeto Geometria)."
  7472. #: flatcamGUI/FlatCAMGUI.py:6026
  7473. msgid "Paint Tool Options"
  7474. msgstr "Opções de Ferramenta de Pintura"
  7475. #: flatcamGUI/FlatCAMGUI.py:6033 flatcamGUI/ObjectUI.py:1305
  7476. msgid ""
  7477. "Creates tool paths to cover the\n"
  7478. "whole area of a polygon (remove\n"
  7479. "all copper). You will be asked\n"
  7480. "to click on the desired polygon."
  7481. msgstr ""
  7482. "Cria caminhos de ferramenta para cobrir a área\n"
  7483. "inteira de um polígono (remove todo o cobre).\n"
  7484. "Você será solicitado a clicar no polígono desejado."
  7485. #: flatcamGUI/FlatCAMGUI.py:6057
  7486. msgid ""
  7487. "How much (fraction) of the tool\n"
  7488. "width to overlap each tool pass."
  7489. msgstr ""
  7490. "Quanta (fração) da largura da ferramenta\n"
  7491. "para sobrepor a cada passe."
  7492. #: flatcamGUI/FlatCAMGUI.py:6111 flatcamTools/ToolPaint.py:237
  7493. msgid "Selection:"
  7494. msgstr "Seleção:"
  7495. #: flatcamGUI/FlatCAMGUI.py:6113
  7496. msgid "How to select the polygons to paint."
  7497. msgstr "Como selecionar os polígonos para pintar."
  7498. #: flatcamGUI/FlatCAMGUI.py:6117 flatcamTools/ToolPaint.py:247
  7499. msgid "Single"
  7500. msgstr "Único"
  7501. #: flatcamGUI/FlatCAMGUI.py:6131
  7502. msgid "Film Tool Options"
  7503. msgstr "Opções da Ferramenta de Filme"
  7504. #: flatcamGUI/FlatCAMGUI.py:6136
  7505. msgid ""
  7506. "Create a PCB film from a Gerber or Geometry\n"
  7507. "FlatCAM object.\n"
  7508. "The file is saved in SVG format."
  7509. msgstr ""
  7510. "Cria um filme de PCB a partir de um objeto Gerber\n"
  7511. "ou Geometria FlatCAM.\n"
  7512. "O arquivo é salvo no formato SVG."
  7513. #: flatcamGUI/FlatCAMGUI.py:6147 flatcamTools/ToolFilm.py:116
  7514. msgid "Film Type:"
  7515. msgstr "Tipo de Filme:"
  7516. #: flatcamGUI/FlatCAMGUI.py:6149 flatcamTools/ToolFilm.py:118
  7517. msgid ""
  7518. "Generate a Positive black film or a Negative film.\n"
  7519. "Positive means that it will print the features\n"
  7520. "with black on a white canvas.\n"
  7521. "Negative means that it will print the features\n"
  7522. "with white on a black canvas.\n"
  7523. "The Film format is SVG."
  7524. msgstr ""
  7525. "Gera um filme Positivo ou Negativo.\n"
  7526. "Positivo significa que os recursos são impressos\n"
  7527. "em preto em uma tela branca.\n"
  7528. "Negativo significa que os recursos são impressos\n"
  7529. "em branco em uma tela preta.\n"
  7530. "O formato do arquivo do filme é SVG ."
  7531. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamTools/ToolFilm.py:130
  7532. msgid "Border:"
  7533. msgstr "Borda:"
  7534. #: flatcamGUI/FlatCAMGUI.py:6162 flatcamTools/ToolFilm.py:132
  7535. msgid ""
  7536. "Specify a border around the object.\n"
  7537. "Only for negative film.\n"
  7538. "It helps if we use as a Box Object the same \n"
  7539. "object as in Film Object. It will create a thick\n"
  7540. "black bar around the actual print allowing for a\n"
  7541. "better delimitation of the outline features which are of\n"
  7542. "white color like the rest and which may confound with the\n"
  7543. "surroundings if not for this border."
  7544. msgstr ""
  7545. "Especifica uma borda ao redor do objeto.\n"
  7546. "Somente para filme negativo.\n"
  7547. "Ajuda se for usado como Objeto Caixa o mesmo\n"
  7548. "objeto do Filme. Será criada uma barra preta\n"
  7549. "ao redor da impressão, permitindo uma melhor\n"
  7550. "delimitação dos contornos dos recursos (que são\n"
  7551. "brancos como o restante e podem ser confundidos\n"
  7552. "com os limites, se não for usada essa borda)."
  7553. #: flatcamGUI/FlatCAMGUI.py:6175 flatcamTools/ToolFilm.py:144
  7554. msgid "Scale Stroke:"
  7555. msgstr "Espessura da Linha:"
  7556. #: flatcamGUI/FlatCAMGUI.py:6177 flatcamTools/ToolFilm.py:146
  7557. msgid ""
  7558. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7559. "It means that the line that envelope each SVG feature will be thicker or "
  7560. "thinner,\n"
  7561. "therefore the fine features may be more affected by this parameter."
  7562. msgstr ""
  7563. "Espessura da linha de cada recurso no arquivo SVG.\n"
  7564. "A linha que envolve cada recurso SVG será mais espessa ou mais fina.\n"
  7565. "Os recursos mais finos podem ser afetados por esse parâmetro."
  7566. #: flatcamGUI/FlatCAMGUI.py:6192
  7567. msgid "Panelize Tool Options"
  7568. msgstr "Opções da Ferramenta Criar Painel"
  7569. #: flatcamGUI/FlatCAMGUI.py:6197
  7570. msgid ""
  7571. "Create an object that contains an array of (x, y) elements,\n"
  7572. "each element is a copy of the source object spaced\n"
  7573. "at a X distance, Y distance of each other."
  7574. msgstr ""
  7575. "Cria um objeto que contém uma matriz de elementos (x, y).\n"
  7576. "Cada elemento é uma cópia do objeto de origem espaçado\n"
  7577. "dos demais por uma distância X, Y."
  7578. #: flatcamGUI/FlatCAMGUI.py:6208 flatcamTools/ToolPanelize.py:147
  7579. msgid "Spacing cols:"
  7580. msgstr "Espaço entre Colunas:"
  7581. #: flatcamGUI/FlatCAMGUI.py:6210 flatcamTools/ToolPanelize.py:149
  7582. msgid ""
  7583. "Spacing between columns of the desired panel.\n"
  7584. "In current units."
  7585. msgstr ""
  7586. "Espaçamento desejado entre colunas do painel.\n"
  7587. "Nas unidades atuais."
  7588. #: flatcamGUI/FlatCAMGUI.py:6218 flatcamTools/ToolPanelize.py:156
  7589. msgid "Spacing rows:"
  7590. msgstr "Espaço entre Linhas:"
  7591. #: flatcamGUI/FlatCAMGUI.py:6220 flatcamTools/ToolPanelize.py:158
  7592. msgid ""
  7593. "Spacing between rows of the desired panel.\n"
  7594. "In current units."
  7595. msgstr ""
  7596. "Espaçamento desejado entre linhas do painel.\n"
  7597. "Nas unidades atuais."
  7598. #: flatcamGUI/FlatCAMGUI.py:6228 flatcamTools/ToolPanelize.py:165
  7599. msgid "Columns:"
  7600. msgstr "Colunas:"
  7601. #: flatcamGUI/FlatCAMGUI.py:6230 flatcamTools/ToolPanelize.py:167
  7602. msgid "Number of columns of the desired panel"
  7603. msgstr "Número de colunas do painel desejado"
  7604. #: flatcamGUI/FlatCAMGUI.py:6237 flatcamTools/ToolPanelize.py:173
  7605. msgid "Rows:"
  7606. msgstr "Linhas:"
  7607. #: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolPanelize.py:175
  7608. msgid "Number of rows of the desired panel"
  7609. msgstr "Número de linhas do painel desejado"
  7610. #: flatcamGUI/FlatCAMGUI.py:6245 flatcamTools/ToolPanelize.py:181
  7611. msgid "Gerber"
  7612. msgstr "Gerber"
  7613. #: flatcamGUI/FlatCAMGUI.py:6246 flatcamTools/ToolPanelize.py:182
  7614. msgid "Geo"
  7615. msgstr "Geo"
  7616. #: flatcamGUI/FlatCAMGUI.py:6247
  7617. msgid "Panel Type:"
  7618. msgstr "Tipo de Painel:"
  7619. #: flatcamGUI/FlatCAMGUI.py:6249
  7620. msgid ""
  7621. "Choose the type of object for the panel object:\n"
  7622. "- Gerber\n"
  7623. "- Geometry"
  7624. msgstr ""
  7625. "Escolha o tipo de objeto para o painel:\n"
  7626. "- Gerber\n"
  7627. "- Geometria"
  7628. #: flatcamGUI/FlatCAMGUI.py:6258
  7629. msgid "Constrain within:"
  7630. msgstr "Restringir dentro de:"
  7631. #: flatcamGUI/FlatCAMGUI.py:6260 flatcamTools/ToolPanelize.py:195
  7632. msgid ""
  7633. "Area define by DX and DY within to constrain the panel.\n"
  7634. "DX and DY values are in current units.\n"
  7635. "Regardless of how many columns and rows are desired,\n"
  7636. "the final panel will have as many columns and rows as\n"
  7637. "they fit completely within selected area."
  7638. msgstr ""
  7639. "Área definida por DX e DY para restringir o painel.\n"
  7640. "Os valores DX e DY estão nas unidades atuais.\n"
  7641. "Desde quantas colunas e linhas forem desejadas,\n"
  7642. "o painel final terá tantas colunas e linhas quantas\n"
  7643. "couberem completamente dentro de área selecionada."
  7644. #: flatcamGUI/FlatCAMGUI.py:6269 flatcamTools/ToolPanelize.py:204
  7645. msgid "Width (DX):"
  7646. msgstr "Largura (DX):"
  7647. #: flatcamGUI/FlatCAMGUI.py:6271 flatcamTools/ToolPanelize.py:206
  7648. msgid ""
  7649. "The width (DX) within which the panel must fit.\n"
  7650. "In current units."
  7651. msgstr ""
  7652. "A largura (DX) na qual o painel deve caber.\n"
  7653. "Nas unidades atuais."
  7654. #: flatcamGUI/FlatCAMGUI.py:6278 flatcamTools/ToolPanelize.py:212
  7655. msgid "Height (DY):"
  7656. msgstr "Altura (DY):"
  7657. #: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolPanelize.py:214
  7658. msgid ""
  7659. "The height (DY)within which the panel must fit.\n"
  7660. "In current units."
  7661. msgstr ""
  7662. "A altura (DY) na qual o painel deve se ajustar.\n"
  7663. "Nas unidades atuais."
  7664. #: flatcamGUI/FlatCAMGUI.py:6294
  7665. msgid "Calculators Tool Options"
  7666. msgstr "Opções das Calculadoras"
  7667. #: flatcamGUI/FlatCAMGUI.py:6297
  7668. msgid "<b>V-Shape Tool Calculator:</b>"
  7669. msgstr "<b>Calculadora Ferramenta Ponta-em-V:</b>"
  7670. #: flatcamGUI/FlatCAMGUI.py:6299
  7671. msgid ""
  7672. "Calculate the tool diameter for a given V-shape tool,\n"
  7673. "having the tip diameter, tip angle and\n"
  7674. "depth-of-cut as parameters."
  7675. msgstr ""
  7676. "Calcula o diâmetro equvalente da ferramenta para uma determinada\n"
  7677. "ferramenta em forma de V, com o diâmetro da ponta, o ângulo da ponta e a\n"
  7678. "profundidade de corte como parâmetros."
  7679. #: flatcamGUI/FlatCAMGUI.py:6310 flatcamTools/ToolCalculators.py:92
  7680. msgid "Tip Diameter:"
  7681. msgstr "Diâmetro da Ponta:"
  7682. #: flatcamGUI/FlatCAMGUI.py:6312
  7683. msgid ""
  7684. "This is the tool tip diameter.\n"
  7685. "It is specified by manufacturer."
  7686. msgstr ""
  7687. "Diâmetro da ponta da ferramenta.\n"
  7688. "Especificado pelo fabricante."
  7689. #: flatcamGUI/FlatCAMGUI.py:6320
  7690. msgid "Tip angle:"
  7691. msgstr "Ângulo da Ponta:"
  7692. #: flatcamGUI/FlatCAMGUI.py:6322
  7693. msgid ""
  7694. "This is the angle on the tip of the tool.\n"
  7695. "It is specified by manufacturer."
  7696. msgstr ""
  7697. "Ângulo na ponta da ferramenta.\n"
  7698. "Especificado pelo fabricante."
  7699. #: flatcamGUI/FlatCAMGUI.py:6332
  7700. msgid ""
  7701. "This is depth to cut into material.\n"
  7702. "In the CNCJob object it is the CutZ parameter."
  7703. msgstr ""
  7704. "Profundidade para cortar o material.\n"
  7705. "No objeto CNC, é o parâmetro Profundidade de Corte (z_cut)."
  7706. #: flatcamGUI/FlatCAMGUI.py:6339
  7707. msgid "<b>ElectroPlating Calculator:</b>"
  7708. msgstr "<b>Calculadora ElectroPlating:</b>"
  7709. #: flatcamGUI/FlatCAMGUI.py:6341 flatcamTools/ToolCalculators.py:148
  7710. msgid ""
  7711. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7712. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7713. "chloride."
  7714. msgstr ""
  7715. "Esta calculadora é útil para aqueles que fazem os furos\n"
  7716. "(via/pad/broca) usando um método como tinta grahite ou tinta \n"
  7717. "hipofosfito de cálcio ou cloreto de paládio."
  7718. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamTools/ToolCalculators.py:157
  7719. msgid "Board Length:"
  7720. msgstr "Comprimento da Placa:"
  7721. #: flatcamGUI/FlatCAMGUI.py:6353 flatcamTools/ToolCalculators.py:161
  7722. msgid "This is the board length. In centimeters."
  7723. msgstr "Comprimento da placa, em centímetros."
  7724. #: flatcamGUI/FlatCAMGUI.py:6359 flatcamTools/ToolCalculators.py:163
  7725. msgid "Board Width:"
  7726. msgstr "Largura da Placa:"
  7727. #: flatcamGUI/FlatCAMGUI.py:6361 flatcamTools/ToolCalculators.py:167
  7728. msgid "This is the board width.In centimeters."
  7729. msgstr "Largura da placa, em centímetros."
  7730. #: flatcamGUI/FlatCAMGUI.py:6366 flatcamTools/ToolCalculators.py:169
  7731. msgid "Current Density:"
  7732. msgstr "Densidade de Corrente:"
  7733. #: flatcamGUI/FlatCAMGUI.py:6369 flatcamTools/ToolCalculators.py:173
  7734. msgid ""
  7735. "Current density to pass through the board. \n"
  7736. "In Amps per Square Feet ASF."
  7737. msgstr ""
  7738. "Densidade de corrente para passar pela placa.\n"
  7739. "Em Ampères por Pés Quadrados ASF."
  7740. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamTools/ToolCalculators.py:176
  7741. msgid "Copper Growth:"
  7742. msgstr "Espessura do Cobre:"
  7743. #: flatcamGUI/FlatCAMGUI.py:6378 flatcamTools/ToolCalculators.py:180
  7744. msgid ""
  7745. "How thick the copper growth is intended to be.\n"
  7746. "In microns."
  7747. msgstr "Espessura da camada de cobre, em microns."
  7748. #: flatcamGUI/FlatCAMGUI.py:6391
  7749. msgid "Transform Tool Options"
  7750. msgstr "Opções Transformações"
  7751. #: flatcamGUI/FlatCAMGUI.py:6396
  7752. msgid ""
  7753. "Various transformations that can be applied\n"
  7754. "on a FlatCAM object."
  7755. msgstr ""
  7756. "Várias transformações que podem ser aplicadas\n"
  7757. "a um objeto FlatCAM."
  7758. #: flatcamGUI/FlatCAMGUI.py:6406
  7759. msgid "Rotate Angle:"
  7760. msgstr "Ângulo de Giro:"
  7761. #: flatcamGUI/FlatCAMGUI.py:6408
  7762. msgid "Angle for rotation. In degrees."
  7763. msgstr "Ângulo de rotação, em graus."
  7764. #: flatcamGUI/FlatCAMGUI.py:6415
  7765. msgid "Skew_X angle:"
  7766. msgstr "Ângulo de Inclinação X:"
  7767. #: flatcamGUI/FlatCAMGUI.py:6417
  7768. msgid "Angle for Skew/Shear on X axis. In degrees."
  7769. msgstr "Ângulo de inclinação no eixo X, em graus."
  7770. #: flatcamGUI/FlatCAMGUI.py:6424
  7771. msgid "Skew_Y angle:"
  7772. msgstr "Ângulo de Inclinação Y:"
  7773. #: flatcamGUI/FlatCAMGUI.py:6426
  7774. msgid "Angle for Skew/Shear on Y axis. In degrees."
  7775. msgstr "Ângulo de inclinação no eixo X, em graus."
  7776. #: flatcamGUI/FlatCAMGUI.py:6433
  7777. msgid "Scale_X factor:"
  7778. msgstr "Fator de Escala X:"
  7779. #: flatcamGUI/FlatCAMGUI.py:6435
  7780. msgid "Factor for scaling on X axis."
  7781. msgstr "Fator para redimensionamento no eixo X."
  7782. #: flatcamGUI/FlatCAMGUI.py:6442
  7783. msgid "Scale_Y factor:"
  7784. msgstr "Fator de Escala Y:"
  7785. #: flatcamGUI/FlatCAMGUI.py:6444
  7786. msgid "Factor for scaling on Y axis."
  7787. msgstr "Fator para redimensionamento no eixo Y."
  7788. #: flatcamGUI/FlatCAMGUI.py:6452
  7789. msgid ""
  7790. "Scale the selected object(s)\n"
  7791. "using the Scale_X factor for both axis."
  7792. msgstr ""
  7793. "Redimensiona o(s) objeto(s) selecionado(s)\n"
  7794. "usando o Fator de Escala X para ambos os eixos."
  7795. #: flatcamGUI/FlatCAMGUI.py:6460 flatcamTools/ToolTransform.py:210
  7796. msgid ""
  7797. "Scale the selected object(s)\n"
  7798. "using the origin reference when checked,\n"
  7799. "and the center of the biggest bounding box\n"
  7800. "of the selected objects when unchecked."
  7801. msgstr ""
  7802. "Redimensiona o(s) objeto(s) selecionado(s) usando a referência\n"
  7803. "de origem quando marcado, e o centro da maior caixa delimitadora\n"
  7804. "do objeto selecionado quando desmarcado."
  7805. #: flatcamGUI/FlatCAMGUI.py:6469
  7806. msgid "Offset_X val:"
  7807. msgstr "Deslocamento X:"
  7808. #: flatcamGUI/FlatCAMGUI.py:6471
  7809. msgid "Distance to offset on X axis. In current units."
  7810. msgstr "Distância para deslocar no eixo X, nas unidades atuais."
  7811. #: flatcamGUI/FlatCAMGUI.py:6478
  7812. msgid "Offset_Y val:"
  7813. msgstr "Deslocamento Y:"
  7814. #: flatcamGUI/FlatCAMGUI.py:6480
  7815. msgid "Distance to offset on Y axis. In current units."
  7816. msgstr "Distância para deslocar no eixo Y, nas unidades atuais."
  7817. #: flatcamGUI/FlatCAMGUI.py:6486
  7818. msgid "Mirror Reference"
  7819. msgstr "Referência de Espelho"
  7820. #: flatcamGUI/FlatCAMGUI.py:6488 flatcamTools/ToolTransform.py:314
  7821. msgid ""
  7822. "Flip the selected object(s)\n"
  7823. "around the point in Point Entry Field.\n"
  7824. "\n"
  7825. "The point coordinates can be captured by\n"
  7826. "left click on canvas together with pressing\n"
  7827. "SHIFT key. \n"
  7828. "Then click Add button to insert coordinates.\n"
  7829. "Or enter the coords in format (x, y) in the\n"
  7830. "Point Entry field and click Flip on X(Y)"
  7831. msgstr ""
  7832. "Espelha o(s) objeto(s) selecionado(s)\n"
  7833. "em relação às coordenadas abaixo. \n"
  7834. "\n"
  7835. "As coordenadas do ponto podem ser inseridas:\n"
  7836. "- com clique no botão esquerdo junto com a tecla\n"
  7837. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  7838. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  7839. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  7840. #: flatcamGUI/FlatCAMGUI.py:6499
  7841. msgid " Mirror Ref. Point:"
  7842. msgstr "Ponto Ref. Espelho:"
  7843. #: flatcamGUI/FlatCAMGUI.py:6501 flatcamTools/ToolTransform.py:327
  7844. msgid ""
  7845. "Coordinates in format (x, y) used as reference for mirroring.\n"
  7846. "The 'x' in (x, y) will be used when using Flip on X and\n"
  7847. "the 'y' in (x, y) will be used when using Flip on Y and"
  7848. msgstr ""
  7849. "Coordenadas no formato (x, y) usadas como referência para espelhamento.\n"
  7850. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  7851. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  7852. #: flatcamGUI/FlatCAMGUI.py:6518
  7853. msgid "SolderPaste Tool Options"
  7854. msgstr "Opções da Ferramenta Pasta de Solda"
  7855. #: flatcamGUI/FlatCAMGUI.py:6523
  7856. msgid ""
  7857. "A tool to create GCode for dispensing\n"
  7858. "solder paste onto a PCB."
  7859. msgstr ""
  7860. "Uma ferramenta para criar G-Code para dispensar pasta\n"
  7861. "de solda em um PCB."
  7862. #: flatcamGUI/FlatCAMGUI.py:6534
  7863. msgid "Diameters of nozzle tools, separated by ','"
  7864. msgstr "Diâmetros dos bicos, separados por ','"
  7865. #: flatcamGUI/FlatCAMGUI.py:6541
  7866. msgid "<b>New Nozzle Dia:</b>"
  7867. msgstr "<b>Diâmetro do Novo Bico:</b>"
  7868. #: flatcamGUI/FlatCAMGUI.py:6543 flatcamTools/ToolSolderPaste.py:103
  7869. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  7870. msgstr ""
  7871. "Diâmetro da nova ferramenta Bico para adicionar na tabela de ferramentas"
  7872. #: flatcamGUI/FlatCAMGUI.py:6551 flatcamTools/ToolSolderPaste.py:166
  7873. msgid "Z Dispense Start:"
  7874. msgstr "Altura Inicial:"
  7875. #: flatcamGUI/FlatCAMGUI.py:6553 flatcamTools/ToolSolderPaste.py:168
  7876. msgid "The height (Z) when solder paste dispensing starts."
  7877. msgstr "A altura (Z) que inicia a distribuição de pasta de solda."
  7878. #: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolSolderPaste.py:174
  7879. msgid "Z Dispense:"
  7880. msgstr "Altura para Distribuir:"
  7881. #: flatcamGUI/FlatCAMGUI.py:6562 flatcamTools/ToolSolderPaste.py:176
  7882. msgid "The height (Z) when doing solder paste dispensing."
  7883. msgstr "Altura (Z) para distribuir a pasta de solda."
  7884. #: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolSolderPaste.py:182
  7885. msgid "Z Dispense Stop:"
  7886. msgstr "Altura Final:"
  7887. #: flatcamGUI/FlatCAMGUI.py:6571 flatcamTools/ToolSolderPaste.py:184
  7888. msgid "The height (Z) when solder paste dispensing stops."
  7889. msgstr "Altura (Z) após a distribuição de pasta de solda."
  7890. #: flatcamGUI/FlatCAMGUI.py:6578 flatcamTools/ToolSolderPaste.py:190
  7891. msgid "Z Travel:"
  7892. msgstr "Altura para Deslocamento:"
  7893. #: flatcamGUI/FlatCAMGUI.py:6580 flatcamTools/ToolSolderPaste.py:192
  7894. msgid ""
  7895. "The height (Z) for travel between pads\n"
  7896. "(without dispensing solder paste)."
  7897. msgstr ""
  7898. "Altura (Z) para deslocamento entre pads\n"
  7899. "(sem dispensar pasta de solda)."
  7900. #: flatcamGUI/FlatCAMGUI.py:6588 flatcamTools/ToolSolderPaste.py:199
  7901. msgid "Z Toolchange:"
  7902. msgstr "Altura Troca de Ferram.:"
  7903. #: flatcamGUI/FlatCAMGUI.py:6590 flatcamTools/ToolSolderPaste.py:201
  7904. msgid "The height (Z) for tool (nozzle) change."
  7905. msgstr "Altura (Z) para trocar ferramenta (bico)."
  7906. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamTools/ToolSolderPaste.py:207
  7907. msgid "XY Toolchange:"
  7908. msgstr "XY Troca de Ferra.:"
  7909. #: flatcamGUI/FlatCAMGUI.py:6599 flatcamTools/ToolSolderPaste.py:209
  7910. msgid ""
  7911. "The X,Y location for tool (nozzle) change.\n"
  7912. "The format is (x, y) where x and y are real numbers."
  7913. msgstr ""
  7914. "Posição X,Y para trocar ferramenta (bico).\n"
  7915. "O formato é (x, y) onde x e y são números reais."
  7916. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolSolderPaste.py:216
  7917. msgid "Feedrate X-Y:"
  7918. msgstr "Avanço XY:"
  7919. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolSolderPaste.py:218
  7920. msgid "Feedrate (speed) while moving on the X-Y plane."
  7921. msgstr "Avanço (velocidade) para movimento no plano XY."
  7922. #: flatcamGUI/FlatCAMGUI.py:6616 flatcamTools/ToolSolderPaste.py:224
  7923. msgid "Feedrate Z:"
  7924. msgstr "Avanço Z:"
  7925. #: flatcamGUI/FlatCAMGUI.py:6618 flatcamTools/ToolSolderPaste.py:226
  7926. msgid ""
  7927. "Feedrate (speed) while moving vertically\n"
  7928. "(on Z plane)."
  7929. msgstr ""
  7930. "Avanço (velocidade) para movimento vertical\n"
  7931. "(no plano Z)."
  7932. #: flatcamGUI/FlatCAMGUI.py:6626 flatcamTools/ToolSolderPaste.py:233
  7933. msgid "Feedrate Z Dispense:"
  7934. msgstr "Avanço Z Distribuição:"
  7935. #: flatcamGUI/FlatCAMGUI.py:6628
  7936. msgid ""
  7937. "Feedrate (speed) while moving up vertically\n"
  7938. "to Dispense position (on Z plane)."
  7939. msgstr ""
  7940. "Avanço (velocidade) para subir verticalmente\n"
  7941. "para a posição Dispensar (no plano Z)."
  7942. #: flatcamGUI/FlatCAMGUI.py:6636 flatcamTools/ToolSolderPaste.py:242
  7943. msgid "Spindle Speed FWD:"
  7944. msgstr "Velocidade Spindle FWD:"
  7945. #: flatcamGUI/FlatCAMGUI.py:6638 flatcamTools/ToolSolderPaste.py:244
  7946. msgid ""
  7947. "The dispenser speed while pushing solder paste\n"
  7948. "through the dispenser nozzle."
  7949. msgstr ""
  7950. "A velocidade do dispensador ao empurrar a pasta de solda\n"
  7951. "através do bico do distribuidor."
  7952. #: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolSolderPaste.py:251
  7953. msgid "Dwell FWD:"
  7954. msgstr "Espera FWD:"
  7955. #: flatcamGUI/FlatCAMGUI.py:6648 flatcamTools/ToolSolderPaste.py:253
  7956. msgid "Pause after solder dispensing."
  7957. msgstr "Pausa após a dispensação de solda."
  7958. #: flatcamGUI/FlatCAMGUI.py:6655 flatcamTools/ToolSolderPaste.py:259
  7959. msgid "Spindle Speed REV:"
  7960. msgstr "Velocidade Spindle REV:"
  7961. #: flatcamGUI/FlatCAMGUI.py:6657 flatcamTools/ToolSolderPaste.py:261
  7962. msgid ""
  7963. "The dispenser speed while retracting solder paste\n"
  7964. "through the dispenser nozzle."
  7965. msgstr ""
  7966. "A velocidade do dispensador enquanto retrai a pasta de solda\n"
  7967. "através do bico do dispensador."
  7968. #: flatcamGUI/FlatCAMGUI.py:6665 flatcamTools/ToolSolderPaste.py:268
  7969. msgid "Dwell REV:"
  7970. msgstr "Espera REV:"
  7971. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamTools/ToolSolderPaste.py:270
  7972. msgid ""
  7973. "Pause after solder paste dispenser retracted,\n"
  7974. "to allow pressure equilibrium."
  7975. msgstr ""
  7976. "Pausa após o dispensador de pasta de solda retrair, para permitir o "
  7977. "equilíbrio de pressão."
  7978. #: flatcamGUI/FlatCAMGUI.py:6674 flatcamTools/ToolSolderPaste.py:276
  7979. msgid "PostProcessors:"
  7980. msgstr "Pós-Processador:"
  7981. #: flatcamGUI/FlatCAMGUI.py:6676 flatcamTools/ToolSolderPaste.py:278
  7982. msgid "Files that control the GCode generation."
  7983. msgstr "Arquivos que controlam a geração de G-Code."
  7984. #: flatcamGUI/FlatCAMGUI.py:6706 flatcamGUI/FlatCAMGUI.py:6712
  7985. msgid "Idle."
  7986. msgstr "Ocioso."
  7987. #: flatcamGUI/FlatCAMGUI.py:6736
  7988. msgid "Application started ..."
  7989. msgstr "Aplicativo iniciado ..."
  7990. #: flatcamGUI/FlatCAMGUI.py:6737
  7991. msgid "Hello!"
  7992. msgstr "Olá!"
  7993. #: flatcamGUI/ObjectUI.py:33
  7994. msgid "FlatCAM Object"
  7995. msgstr "Objeto FlatCAM"
  7996. #: flatcamGUI/ObjectUI.py:58
  7997. msgid ""
  7998. "BASIC is suitable for a beginner. Many parameters\n"
  7999. "are hidden from the user in this mode.\n"
  8000. "ADVANCED mode will make available all parameters.\n"
  8001. "\n"
  8002. "To change the application LEVEL, go to:\n"
  8003. "Edit -> Preferences -> General and check:\n"
  8004. "'APP. LEVEL' radio button."
  8005. msgstr ""
  8006. "BÁSICO é adequado para um iniciante. Muitos parâmetros\n"
  8007. " estão ocultos do usuário neste modo.\n"
  8008. "O modo AVANÇADO disponibilizará todos os parâmetros.\n"
  8009. "\n"
  8010. "Para alterar o NÍVEL do aplicativo, vá para:\n"
  8011. "Editar -> Preferências -> Geral e verificar\n"
  8012. "o botão de rádio 'Nível do Aplicativo\"."
  8013. #: flatcamGUI/ObjectUI.py:79
  8014. msgid "<b>Scale:</b>"
  8015. msgstr "<b>Escala:</b>"
  8016. #: flatcamGUI/ObjectUI.py:81
  8017. msgid "Change the size of the object."
  8018. msgstr "Altera o tamanho do objeto."
  8019. #: flatcamGUI/ObjectUI.py:89
  8020. msgid "Factor:"
  8021. msgstr "Fator:"
  8022. #: flatcamGUI/ObjectUI.py:91
  8023. msgid ""
  8024. "Factor by which to multiply\n"
  8025. "geometric features of this object."
  8026. msgstr ""
  8027. "Fator pelo qual multiplicar recursos\n"
  8028. "geométricos deste objeto."
  8029. #: flatcamGUI/ObjectUI.py:102
  8030. msgid "Perform scaling operation."
  8031. msgstr "Realiza a operação de dimensionamento."
  8032. #: flatcamGUI/ObjectUI.py:108
  8033. msgid "<b>Offset:</b>"
  8034. msgstr "<b>Deslocamento:</b>"
  8035. #: flatcamGUI/ObjectUI.py:110
  8036. msgid "Change the position of this object."
  8037. msgstr "Altera a posição deste objeto."
  8038. #: flatcamGUI/ObjectUI.py:117
  8039. msgid "Vector:"
  8040. msgstr "Vetor:"
  8041. #: flatcamGUI/ObjectUI.py:119
  8042. msgid ""
  8043. "Amount by which to move the object\n"
  8044. "in the x and y axes in (x, y) format."
  8045. msgstr ""
  8046. "Quanto mover o objeto\n"
  8047. "nos eixos x e y no formato (x, y)."
  8048. #: flatcamGUI/ObjectUI.py:129
  8049. msgid "Perform the offset operation."
  8050. msgstr "Executa a operação de deslocamento."
  8051. #: flatcamGUI/ObjectUI.py:143
  8052. msgid "Gerber Object"
  8053. msgstr "Objeto Gerber"
  8054. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517
  8055. #: flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1382
  8056. msgid "<b>Name:</b>"
  8057. msgstr "<b>Nome:</b>"
  8058. #: flatcamGUI/ObjectUI.py:203
  8059. msgid ""
  8060. "Toggle the display of the Gerber Apertures Table.\n"
  8061. "When unchecked, it will delete all mark shapes\n"
  8062. "that are drawn on canvas."
  8063. msgstr ""
  8064. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  8065. "Quando desmarcada, serão excluídas todas as formas de marcas\n"
  8066. "desenhadas na tela."
  8067. #: flatcamGUI/ObjectUI.py:214
  8068. msgid "Mark All"
  8069. msgstr "Marcar Todos"
  8070. #: flatcamGUI/ObjectUI.py:216
  8071. msgid ""
  8072. "When checked it will display all the apertures.\n"
  8073. "When unchecked, it will delete all mark shapes\n"
  8074. "that are drawn on canvas."
  8075. msgstr ""
  8076. "Quando marcado, serão mostradas todas as aberturas.\n"
  8077. "Quando desmarcado, serão apagadas todas as formas de marcas\n"
  8078. "desenhadas na tela."
  8079. #: flatcamGUI/ObjectUI.py:244
  8080. msgid "Mark the aperture instances on canvas."
  8081. msgstr "Marque as instâncias de abertura na tela."
  8082. #: flatcamGUI/ObjectUI.py:262
  8083. msgid ""
  8084. "Diameter of the cutting tool.\n"
  8085. "If you want to have an isolation path\n"
  8086. "inside the actual shape of the Gerber\n"
  8087. "feature, use a negative value for\n"
  8088. "this parameter."
  8089. msgstr ""
  8090. "Diâmetro da ferramenta de corte.\n"
  8091. "Se desejar ter um caminho de isolamento\n"
  8092. "dentro da forma atual do recurso Gerber, use um valor negativo para\n"
  8093. "este parâmetro."
  8094. #: flatcamGUI/ObjectUI.py:273
  8095. msgid "Passes:"
  8096. msgstr "Passes:"
  8097. #: flatcamGUI/ObjectUI.py:307
  8098. msgid "Combine"
  8099. msgstr "Combinar"
  8100. #: flatcamGUI/ObjectUI.py:323
  8101. msgid "<b>Generate Isolation Geometry:</b>"
  8102. msgstr "<b>Gerar Geometria de Isolamento:</b>"
  8103. #: flatcamGUI/ObjectUI.py:325
  8104. msgid ""
  8105. "Create a Geometry object with toolpaths to cut \n"
  8106. "isolation outside, inside or on both sides of the\n"
  8107. "object. For a Gerber object outside means outside\n"
  8108. "of the Gerber feature and inside means inside of\n"
  8109. "the Gerber feature, if possible at all. This means\n"
  8110. "that only if the Gerber feature has openings inside, they\n"
  8111. "will be isolated. If what is wanted is to cut isolation\n"
  8112. "inside the actual Gerber feature, use a negative tool\n"
  8113. "diameter above."
  8114. msgstr ""
  8115. "Cria um objeto Geometria com caminhos da ferramenta para cortar a\n"
  8116. "isolação por fora, por dentro ou em ambos os lados do\n"
  8117. "objeto. Para um objeto Gerber externo significa\n"
  8118. "por fora do recurso Gerber e interno significa por dentro do recurso Gerber, "
  8119. "se possível. Isso significa\n"
  8120. "que somente se o recurso Gerber tiver aberturas internas, elas\n"
  8121. "serão isoladas. Se o que é desejado é cortar o isolamento\n"
  8122. "dentro do recurso Gerber, use uma ferramenta negativa\n"
  8123. "diâmetro acima."
  8124. #: flatcamGUI/ObjectUI.py:344
  8125. msgid "FULL Geo"
  8126. msgstr "Geo COMPLETO"
  8127. #: flatcamGUI/ObjectUI.py:346
  8128. msgid ""
  8129. "Create the Geometry Object\n"
  8130. "for isolation routing. It contains both\n"
  8131. "the interiors and exteriors geometry."
  8132. msgstr ""
  8133. "Cria o Objeto de Geometria\n"
  8134. "para o roteamento de isolamento. Contém tanto\n"
  8135. "a geometria do interior quanto a do exterior."
  8136. #: flatcamGUI/ObjectUI.py:355
  8137. msgid "Ext Geo"
  8138. msgstr "Geo Ext"
  8139. #: flatcamGUI/ObjectUI.py:357
  8140. msgid ""
  8141. "Create the Geometry Object\n"
  8142. "for isolation routing containing\n"
  8143. "only the exteriors geometry."
  8144. msgstr ""
  8145. "Cria o Objeto de Geometria\n"
  8146. "para roteamento de isolamento contendo\n"
  8147. "somente a geometria do exterior."
  8148. #: flatcamGUI/ObjectUI.py:364
  8149. msgid "Int Geo"
  8150. msgstr "Geo Int"
  8151. #: flatcamGUI/ObjectUI.py:366
  8152. msgid ""
  8153. "Create the Geometry Object\n"
  8154. "for isolation routing containing\n"
  8155. "only the interiors geometry."
  8156. msgstr ""
  8157. "Cria o Objeto de Geometria\n"
  8158. "para o roteamento de isolamento contendo\n"
  8159. "somente a geometria do interior."
  8160. #: flatcamGUI/ObjectUI.py:384
  8161. msgid "<b>Clear N-copper:</b>"
  8162. msgstr "<b>Limpa N-cobre:</b>"
  8163. #: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240
  8164. msgid ""
  8165. "Create the Geometry Object\n"
  8166. "for non-copper routing."
  8167. msgstr ""
  8168. "Cria o Objeto de Geometria\n"
  8169. "para roteamento sem cobre."
  8170. #: flatcamGUI/ObjectUI.py:400
  8171. msgid "<b>Board cutout:</b>"
  8172. msgstr "<b>Recorte da placa:</b>"
  8173. #: flatcamGUI/ObjectUI.py:408 flatcamTools/ToolCutOut.py:314
  8174. msgid "Cutout Tool"
  8175. msgstr "Ferramenta de Recorte"
  8176. #: flatcamGUI/ObjectUI.py:410
  8177. msgid ""
  8178. "Generate the geometry for\n"
  8179. "the board cutout."
  8180. msgstr "Gera a geometria para o recorte da placa."
  8181. #: flatcamGUI/ObjectUI.py:416
  8182. msgid "<b>Non-copper regions:</b>"
  8183. msgstr "<b>Regiões sem cobre:</b>"
  8184. #: flatcamGUI/ObjectUI.py:418
  8185. msgid ""
  8186. "Create polygons covering the\n"
  8187. "areas without copper on the PCB.\n"
  8188. "Equivalent to the inverse of this\n"
  8189. "object. Can be used to remove all\n"
  8190. "copper from a specified region."
  8191. msgstr ""
  8192. "Criar polígonos cobrindo as\n"
  8193. "áreas sem cobre no PCB.\n"
  8194. "Equivalente ao inverso do\n"
  8195. "objeto. Pode ser usado para remover todo o\n"
  8196. "cobre de uma região especificada."
  8197. #: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474
  8198. msgid "Rounded Geo"
  8199. msgstr "Geo Arredondado"
  8200. #: flatcamGUI/ObjectUI.py:445
  8201. msgid "Resulting geometry will have rounded corners."
  8202. msgstr "A geometria resultante terá cantos arredondados."
  8203. #: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484
  8204. #: flatcamTools/ToolCutOut.py:169 flatcamTools/ToolCutOut.py:189
  8205. #: flatcamTools/ToolCutOut.py:240 flatcamTools/ToolSolderPaste.py:127
  8206. msgid "Generate Geo"
  8207. msgstr "Gerar Geo"
  8208. #: flatcamGUI/ObjectUI.py:456
  8209. msgid ""
  8210. "Create a geometry surrounding the Gerber object.\n"
  8211. "Square shape."
  8212. msgstr ""
  8213. "Crie uma geometria em torno do objeto Gerber.\n"
  8214. "Forma quadrada."
  8215. #: flatcamGUI/ObjectUI.py:486
  8216. msgid "Generate the Geometry object."
  8217. msgstr "Gera o objeto Geometria."
  8218. #: flatcamGUI/ObjectUI.py:497
  8219. msgid "Excellon Object"
  8220. msgstr "Objeto Excellon"
  8221. #: flatcamGUI/ObjectUI.py:508
  8222. msgid "Solid circles."
  8223. msgstr "Círculos preenchidos ou vazados."
  8224. #: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:858
  8225. msgid "<b>Tools Table</b>"
  8226. msgstr "<b>Tabela de Ferramentas</b>"
  8227. #: flatcamGUI/ObjectUI.py:556
  8228. msgid "Drills"
  8229. msgstr "Furos"
  8230. #: flatcamGUI/ObjectUI.py:556
  8231. msgid "Slots"
  8232. msgstr "Fendas"
  8233. #: flatcamGUI/ObjectUI.py:557
  8234. msgid "Offset Z"
  8235. msgstr "Deslocamento Z"
  8236. #: flatcamGUI/ObjectUI.py:561
  8237. msgid ""
  8238. "This is the Tool Number.\n"
  8239. "When ToolChange is checked, on toolchange event this value\n"
  8240. "will be showed as a T1, T2 ... Tn in the Machine Code."
  8241. msgstr ""
  8242. "Número da Ferramenta.\n"
  8243. "Quando Trocar Ferramentas estiver marcado, este valor\n"
  8244. " será mostrado como T1, T2 ... Tn no Código da Máquina."
  8245. #: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:904
  8246. #: flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  8247. msgid ""
  8248. "Tool Diameter. It's value (in current FlatCAM units) \n"
  8249. "is the cut width into the material."
  8250. msgstr ""
  8251. "Diâmetro da Ferramenta. Seu valor (nas unidades FlatCAM atuais)\n"
  8252. "é a largura do corte no material."
  8253. #: flatcamGUI/ObjectUI.py:568
  8254. msgid ""
  8255. "The number of Drill holes. Holes that are drilled with\n"
  8256. "a drill bit."
  8257. msgstr ""
  8258. "Número de Furos\n"
  8259. "Serão perfurados com brocas."
  8260. #: flatcamGUI/ObjectUI.py:571
  8261. msgid ""
  8262. "The number of Slot holes. Holes that are created by\n"
  8263. "milling them with an endmill bit."
  8264. msgstr ""
  8265. "Número de Fendas\n"
  8266. "Serão criadas com fresas."
  8267. #: flatcamGUI/ObjectUI.py:578
  8268. msgid "Toggle display of the drills for the current tool."
  8269. msgstr "Alterna a exibição da ferramenta atual."
  8270. #: flatcamGUI/ObjectUI.py:586
  8271. msgid ""
  8272. "Create a CNC Job object\n"
  8273. "for this drill object."
  8274. msgstr "Cria um objeto de trabalho CNC para a furação."
  8275. #: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1118
  8276. msgid "Tool change"
  8277. msgstr "Troca de ferramentas"
  8278. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1111
  8279. msgid "Tool change Z:"
  8280. msgstr "Altura para a troca:"
  8281. #: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1114
  8282. msgid ""
  8283. "Z-axis position (height) for\n"
  8284. "tool change."
  8285. msgstr "Posição do eixo Z (altura) para a troca de ferramenta."
  8286. #: flatcamGUI/ObjectUI.py:636
  8287. msgid ""
  8288. "Tool height just before starting the work.\n"
  8289. "Delete the value if you don't need this feature."
  8290. msgstr ""
  8291. "Altura da ferramenta antes de iniciar o trabalho.\n"
  8292. "Exclua o valor se você não precisar deste recurso."
  8293. #: flatcamGUI/ObjectUI.py:646
  8294. msgid ""
  8295. "Z-axis position (height) for\n"
  8296. "the last move."
  8297. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  8298. #: flatcamGUI/ObjectUI.py:654
  8299. msgid "Feedrate (Plunge):"
  8300. msgstr "Avanço (Mergulho):"
  8301. #: flatcamGUI/ObjectUI.py:656
  8302. msgid ""
  8303. "Tool speed while drilling\n"
  8304. "(in units per minute).\n"
  8305. "This is for linear move G01."
  8306. msgstr ""
  8307. "Velocidade da ferramenta durante a perfuração\n"
  8308. "(em unidades por minuto).\n"
  8309. "Para movimento linear G01."
  8310. #: flatcamGUI/ObjectUI.py:709
  8311. msgid ""
  8312. "The json file that dictates\n"
  8313. "gcode output."
  8314. msgstr ""
  8315. "O arquivo de pós-processamento (json) que define\n"
  8316. "a saída G-Ccode."
  8317. #: flatcamGUI/ObjectUI.py:741
  8318. msgid ""
  8319. "Select from the Tools Table above\n"
  8320. "the tools you want to include."
  8321. msgstr ""
  8322. "Selecione na Tabela de Ferramentas acima\n"
  8323. "as ferramentas que você deseja incluir."
  8324. #: flatcamGUI/ObjectUI.py:748
  8325. msgid "<b>Type: </b>"
  8326. msgstr "<b>Tipo: </b>"
  8327. #: flatcamGUI/ObjectUI.py:750
  8328. msgid ""
  8329. "Choose what to use for GCode generation:\n"
  8330. "'Drills', 'Slots' or 'Both'.\n"
  8331. "When choosing 'Slots' or 'Both', slots will be\n"
  8332. "converted to a series of drills."
  8333. msgstr ""
  8334. "Escolha o que usar para a geração do G-Code:\n"
  8335. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  8336. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  8337. "convertidas em uma série de brocas."
  8338. #: flatcamGUI/ObjectUI.py:765
  8339. msgid "Create GCode"
  8340. msgstr "Criar G-Code"
  8341. #: flatcamGUI/ObjectUI.py:767
  8342. msgid "Generate the CNC Job."
  8343. msgstr "Gera o arquivo G-Code para o CNC."
  8344. #: flatcamGUI/ObjectUI.py:779
  8345. msgid ""
  8346. "Select from the Tools Table above\n"
  8347. " the hole dias that are to be milled."
  8348. msgstr ""
  8349. "Selecione na Tabela de Ferramentas acima\n"
  8350. "os diâmetros dos furo que serão fresados."
  8351. #: flatcamGUI/ObjectUI.py:786
  8352. msgid "Drills Tool dia:"
  8353. msgstr "Diâmetro da Broca:"
  8354. #: flatcamGUI/ObjectUI.py:793
  8355. msgid "Mill Drills Geo"
  8356. msgstr "Geo Furos"
  8357. #: flatcamGUI/ObjectUI.py:795
  8358. msgid ""
  8359. "Create the Geometry Object\n"
  8360. "for milling DRILLS toolpaths."
  8361. msgstr ""
  8362. "Cria o Objeto Geometria com\n"
  8363. "os caminhos da ferramenta de FUROS."
  8364. #: flatcamGUI/ObjectUI.py:802
  8365. msgid "Slots Tool dia:"
  8366. msgstr "Diâmetro da Fresa:"
  8367. #: flatcamGUI/ObjectUI.py:809
  8368. msgid "Mill Slots Geo"
  8369. msgstr "Geo Fendas"
  8370. #: flatcamGUI/ObjectUI.py:811
  8371. msgid ""
  8372. "Create the Geometry Object\n"
  8373. "for milling SLOTS toolpaths."
  8374. msgstr ""
  8375. "Cria o Objeto Geometria com\n"
  8376. "os caminhos da ferramenta de FENDAS."
  8377. #: flatcamGUI/ObjectUI.py:829
  8378. msgid "Geometry Object"
  8379. msgstr "Objeto Geometria"
  8380. #: flatcamGUI/ObjectUI.py:860
  8381. msgid ""
  8382. "Tools in this Geometry object used for cutting.\n"
  8383. "The 'Offset' entry will set an offset for the cut.\n"
  8384. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8385. "'Type' entry is only informative and it allow to know the \n"
  8386. "intent of using the current tool. \n"
  8387. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8388. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8389. "ball(B), or V-Shaped(V). \n"
  8390. "When V-shaped is selected the 'Type' entry is automatically \n"
  8391. "set to Isolation, the CutZ parameter in the UI form is\n"
  8392. "grayed out and Cut Z is automatically calculated from the newly \n"
  8393. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8394. msgstr ""
  8395. "Ferramentas neste objeto Geometria usados para o corte.\n"
  8396. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  8397. "'Deslocamento' pode estar dentro, fora, no caminho (none) e personalizado. A "
  8398. "entrada\n"
  8399. "'Tipo' é somente informativo e permite conhecer a necessidade de usar a "
  8400. "ferramenta atual.\n"
  8401. "Pode ser Desbaste, Acabamento ou Isolamento.\n"
  8402. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  8403. "bola (B) ou Em Forma de V (V).\n"
  8404. "Quando forma em V é selecionada, a entrada 'Tipo' é automaticamente\n"
  8405. "conectada ao Isolamento, o parâmetro CorteZ no formulário da interface do "
  8406. "usuário é\n"
  8407. "desabilitado e o Corte Z é calculado automaticamente a partir das entradas "
  8408. "do formulário da interface do usuário\n"
  8409. "e do Ângulo da Ponta-V."
  8410. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  8411. msgid "Dia"
  8412. msgstr "Dia"
  8413. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  8414. msgid "TT"
  8415. msgstr "TF"
  8416. #: flatcamGUI/ObjectUI.py:898
  8417. msgid ""
  8418. "This is the Tool Number.\n"
  8419. "When ToolChange is checked, on toolchange event this value\n"
  8420. "will be showed as a T1, T2 ... Tn"
  8421. msgstr ""
  8422. "Número da Ferramenta.\n"
  8423. "Quando Trocar Ferramentas estiver marcado, no evento este valor\n"
  8424. " será mostrado como T1, T2 ... Tn"
  8425. #: flatcamGUI/ObjectUI.py:909
  8426. msgid ""
  8427. "The value for the Offset can be:\n"
  8428. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8429. "line.\n"
  8430. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8431. "'pocket'.\n"
  8432. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8433. msgstr ""
  8434. "O valor para o Deslocamento pode ser:\n"
  8435. "- Caminho -> Não há deslocamento, o corte da ferramenta será feito através "
  8436. "da linha da geometria.\n"
  8437. "- In(terno) -> O corte da ferramenta seguirá a geometria interna. Ele criará "
  8438. "um 'pocket'.\n"
  8439. "- Ex(terno) -> O corte da ferramenta seguirá a linha da geometria no lado "
  8440. "externo."
  8441. #: flatcamGUI/ObjectUI.py:916
  8442. msgid ""
  8443. "The (Operation) Type has only informative value. Usually the UI form "
  8444. "values \n"
  8445. "are choosed based on the operation type and this will serve as a reminder.\n"
  8446. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8447. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8448. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8449. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8450. "tip."
  8451. msgstr ""
  8452. "O tipo (operação) tem apenas valor informativo. Normalmente, os valores do "
  8453. "formulário da interface do usuário\n"
  8454. "são escolhidos com base no tipo de operação e isso servirá como um "
  8455. "lembrete.\n"
  8456. "Pode ser 'Desbaste', 'Acabamento' ou 'Isolamento'.\n"
  8457. "Para desbaste, podemos escolher uma taxa de Avanço inferior e corte de "
  8458. "múltiplas profundidades.\n"
  8459. "Para Acabamento, podemos escolher uma taxa de avanço mais alta, sem multi-"
  8460. "profundidade.\n"
  8461. "Para Isolamento, precisamos de uma velocidade de avanço menor, pois é usada "
  8462. "uma broca com ponta fina."
  8463. #: flatcamGUI/ObjectUI.py:925
  8464. msgid ""
  8465. "The Tool Type (TT) can be:\n"
  8466. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8467. "cut width in material\n"
  8468. "is exactly the tool diameter.\n"
  8469. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8470. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8471. "two additional UI form\n"
  8472. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8473. "the Z-Cut parameter such\n"
  8474. "as the cut width into material will be equal with the value in the Tool "
  8475. "Diameter column of this table.\n"
  8476. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8477. "as Isolation."
  8478. msgstr ""
  8479. "O Tipo de Ferramenta (TF) pode ser:\n"
  8480. "- Circular com 1 ... 4 dentes -> apenas informativo. Sendo circular a "
  8481. "largura de corte no material\n"
  8482. " é exatamente o diâmetro da ferramenta.\n"
  8483. "- Bola -> apenas informativo e faz referência à fresa tipo Ball.\n"
  8484. "- Em Forma de V -> o parâmetro Corte Z no formulário de interface do usuário "
  8485. "será desabilitado e dois campos adicionais\n"
  8486. " no formulário UI serão habilitados: Diâmetro Ângulo Ponta-V e Ângulo Ponta-"
  8487. "V. O ajuste desses dois valores ajustará o parâmetro Corte Z, como\n"
  8488. "a largura do corte no material será igual ao valor da coluna Diâmetro da "
  8489. "ferramenta dessa tabela.\n"
  8490. "Escolher o tipo de ferramenta Em Forma de V automaticamente selecionará o "
  8491. "tipo de operação como isolamento."
  8492. #: flatcamGUI/ObjectUI.py:936
  8493. msgid ""
  8494. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8495. "that holds the geometry\n"
  8496. "data into the tools. For those geometries, deleting the tool will delete the "
  8497. "geometry data also,\n"
  8498. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8499. "plot on canvas\n"
  8500. "for the corresponding tool."
  8501. msgstr ""
  8502. "Coluna de plotagem. É visível apenas para geometrias MultiGeo, ou seja, "
  8503. "geometrias que contêm os dados da geometria\n"
  8504. "das ferramentas. Para essas geometrias, a exclusão da ferramenta também "
  8505. "excluirá os dados da geometria,\n"
  8506. "assim, esteja ATENTO. Nas caixas de seleção de cada linha, pode ser ativado/"
  8507. "desativado o gráfico na tela\n"
  8508. "para a ferramenta correspondente."
  8509. #: flatcamGUI/ObjectUI.py:949
  8510. msgid "Tool Offset:"
  8511. msgstr "Deslocamento:"
  8512. #: flatcamGUI/ObjectUI.py:952
  8513. msgid ""
  8514. "The value to offset the cut when \n"
  8515. "the Offset type selected is 'Offset'.\n"
  8516. "The value can be positive for 'outside'\n"
  8517. "cut and negative for 'inside' cut."
  8518. msgstr ""
  8519. "O valor para compensar o corte quando\n"
  8520. "o tipo selecionado for 'Deslocamento'.\n"
  8521. "O valor pode ser positivo para corte 'por fora'\n"
  8522. "e negativo para corte 'por dentro'."
  8523. #: flatcamGUI/ObjectUI.py:975
  8524. msgid "<b>Tool Dia:</b>"
  8525. msgstr "<b>Dia Ferramenta:</b>"
  8526. #: flatcamGUI/ObjectUI.py:994 flatcamTools/ToolNonCopperClear.py:136
  8527. #: flatcamTools/ToolPaint.py:133
  8528. msgid ""
  8529. "Add a new tool to the Tool Table\n"
  8530. "with the diameter specified above."
  8531. msgstr ""
  8532. "Adicione uma nova ferramenta à Tabela de Ferramentas\n"
  8533. "com o diâmetro especificado."
  8534. #: flatcamGUI/ObjectUI.py:1002
  8535. msgid ""
  8536. "Copy a selection of tools in the Tool Table\n"
  8537. "by first selecting a row in the Tool Table."
  8538. msgstr ""
  8539. "Copia uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  8540. "primeiro uma linha na Tabela de Ferramentas."
  8541. #: flatcamGUI/ObjectUI.py:1010
  8542. msgid ""
  8543. "Delete a selection of tools in the Tool Table\n"
  8544. "by first selecting a row in the Tool Table."
  8545. msgstr ""
  8546. "Apaga uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  8547. "primeiro uma linha na Tabela de Ferramentas."
  8548. #: flatcamGUI/ObjectUI.py:1026
  8549. msgid "<b>Tool Data</b>"
  8550. msgstr "<b>Dados da Ferramenta</b>"
  8551. #: flatcamGUI/ObjectUI.py:1029
  8552. msgid ""
  8553. "The data used for creating GCode.\n"
  8554. "Each tool store it's own set of such data."
  8555. msgstr ""
  8556. "Os dados usados para criar o G-Code.\n"
  8557. "Cada loja de ferramentas possui seu próprio conjunto de dados."
  8558. #: flatcamGUI/ObjectUI.py:1039
  8559. msgid "V-Tip Dia:"
  8560. msgstr "Diâmetro Ponta-V:"
  8561. #: flatcamGUI/ObjectUI.py:1042
  8562. msgid "The tip diameter for V-Shape Tool"
  8563. msgstr "O diâmetro da ponta da ferramenta em forma de V"
  8564. #: flatcamGUI/ObjectUI.py:1050
  8565. msgid "V-Tip Angle:"
  8566. msgstr "Ângulo Ponta-V:"
  8567. #: flatcamGUI/ObjectUI.py:1053
  8568. msgid ""
  8569. "The tip angle for V-Shape Tool.\n"
  8570. "In degree."
  8571. msgstr "O ângulo da ponta da ferramenta em forma de V, em graus."
  8572. #: flatcamGUI/ObjectUI.py:1074
  8573. msgid "Multi-Depth:"
  8574. msgstr "Multi-Profundidade:"
  8575. #: flatcamGUI/ObjectUI.py:1077
  8576. msgid ""
  8577. "Use multiple passes to limit\n"
  8578. "the cut depth in each pass. Will\n"
  8579. "cut multiple times until Cut Z is\n"
  8580. "reached.\n"
  8581. "To the right, input the depth of \n"
  8582. "each pass (positive value)."
  8583. msgstr ""
  8584. "Usa vários passes para limitar a profundidade de corte em cada passagem. "
  8585. "Será\n"
  8586. "cortado várias vezes até que o Corte Z seja atingido.\n"
  8587. "Para a direita, insira a profundidade de cada passe (valor positivo)."
  8588. #: flatcamGUI/ObjectUI.py:1090
  8589. msgid "Depth of each pass (positive)."
  8590. msgstr "Profundidade de cada passe (positivo)."
  8591. #: flatcamGUI/ObjectUI.py:1121
  8592. msgid ""
  8593. "Include tool-change sequence\n"
  8594. "in the Machine Code (Pause for tool change)."
  8595. msgstr ""
  8596. "Inclua a sequência de troca de ferramentas\n"
  8597. "no Código da Máquina (Pausa para troca de ferramentas)."
  8598. #: flatcamGUI/ObjectUI.py:1147
  8599. msgid ""
  8600. "This is the height (Z) at which the CNC\n"
  8601. "will go as the last move."
  8602. msgstr ""
  8603. "Esta é a altura (Z) em que o CNC\n"
  8604. "vai após o último movimento."
  8605. #: flatcamGUI/ObjectUI.py:1168
  8606. msgid "Feed Rate Z (Plunge):"
  8607. msgstr "Taxa de Avanço Z (Mergulho):"
  8608. #: flatcamGUI/ObjectUI.py:1171
  8609. msgid ""
  8610. "Cutting speed in the Z\n"
  8611. "plane in units per minute"
  8612. msgstr ""
  8613. "Velocidade de corte no plano Z\n"
  8614. "em unidades por minuto"
  8615. #: flatcamGUI/ObjectUI.py:1180
  8616. msgid "Feed Rate Rapids:"
  8617. msgstr "Taxa de Avanço Rápido:"
  8618. #: flatcamGUI/ObjectUI.py:1183
  8619. msgid ""
  8620. "Cutting speed in the XY\n"
  8621. "plane in units per minute\n"
  8622. "(in units per minute).\n"
  8623. "This is for the rapid move G00.\n"
  8624. "It is useful only for Marlin,\n"
  8625. "ignore for any other cases."
  8626. msgstr ""
  8627. "Velocidade de corte no plano XY\n"
  8628. "em unidades por minuto\n"
  8629. "Usado para o movimento rápido G00.\n"
  8630. "É útil apenas para Marlin,\n"
  8631. "ignore para outros casos."
  8632. #: flatcamGUI/ObjectUI.py:1199
  8633. msgid "Cut over 1st pt"
  8634. msgstr "Cut over 1st pt"
  8635. #: flatcamGUI/ObjectUI.py:1214
  8636. msgid ""
  8637. "Speed of the spindle in RPM (optional).\n"
  8638. "If LASER postprocessor is used,\n"
  8639. "this value is the power of laser."
  8640. msgstr ""
  8641. "Velocidade do spindle em RPM (opcional).\n"
  8642. "Se o pós-processador LASER é usado,\n"
  8643. "este valor é a potência do laser."
  8644. #: flatcamGUI/ObjectUI.py:1243
  8645. msgid "PostProcessor:"
  8646. msgstr "Pós-processador:"
  8647. #: flatcamGUI/ObjectUI.py:1246
  8648. msgid ""
  8649. "The Postprocessor file that dictates\n"
  8650. "the Machine Code (like GCode, RML, HPGL) output."
  8651. msgstr ""
  8652. "O arquivo Pós-processador determina a saída\n"
  8653. "de código da máquina (como G-Code, RML, HPGL)."
  8654. #: flatcamGUI/ObjectUI.py:1284
  8655. msgid ""
  8656. "Add at least one tool in the tool-table.\n"
  8657. "Click the header to select all, or Ctrl + LMB\n"
  8658. "for custom selection of tools."
  8659. msgstr ""
  8660. "Adicione pelo menos uma ferramenta na tabela de ferramentas.\n"
  8661. "Clique no cabeçalho para selecionar todos ou Ctrl + Botão Esquerdo do Mouse\n"
  8662. "para seleção personalizada de ferramentas."
  8663. #: flatcamGUI/ObjectUI.py:1291
  8664. msgid "Generate"
  8665. msgstr "Gerar"
  8666. #: flatcamGUI/ObjectUI.py:1294
  8667. msgid "Generate the CNC Job object."
  8668. msgstr "Gera o objeto de Trabalho CNC."
  8669. #: flatcamGUI/ObjectUI.py:1302
  8670. msgid "<b>Paint Area:</b>"
  8671. msgstr "<b>Área de Pintura:</b>"
  8672. #: flatcamGUI/ObjectUI.py:1317
  8673. msgid "Launch Paint Tool in Tools Tab."
  8674. msgstr "Inicia a ferramenta de pintura na guia Ferramentas."
  8675. #: flatcamGUI/ObjectUI.py:1334
  8676. msgid "CNC Job Object"
  8677. msgstr "Objeto de Trabalho CNC"
  8678. #: flatcamGUI/ObjectUI.py:1353
  8679. msgid "<b>Plot kind:</b>"
  8680. msgstr "<b>Tipo de Gráfico:</b>"
  8681. #: flatcamGUI/ObjectUI.py:1369
  8682. msgid "<b>Display Annotation:</b>"
  8683. msgstr "<b>Exibir Anotação:</b>"
  8684. #: flatcamGUI/ObjectUI.py:1388
  8685. msgid "<b>Travelled dist.:</b>"
  8686. msgstr "<b>Dist. percorrida:</b>"
  8687. #: flatcamGUI/ObjectUI.py:1391 flatcamGUI/ObjectUI.py:1398
  8688. msgid ""
  8689. "This is the total travelled distance on X-Y plane.\n"
  8690. "In current units."
  8691. msgstr ""
  8692. "Essa é a distância total percorrida no plano XY,\n"
  8693. "nas unidades atuais."
  8694. #: flatcamGUI/ObjectUI.py:1429
  8695. msgid "<b>CNC Tools Table</b>"
  8696. msgstr "<b>Tabela de Ferramentas CNC</b>"
  8697. #: flatcamGUI/ObjectUI.py:1432
  8698. msgid ""
  8699. "Tools in this CNCJob object used for cutting.\n"
  8700. "The tool diameter is used for plotting on canvas.\n"
  8701. "The 'Offset' entry will set an offset for the cut.\n"
  8702. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8703. "'Type' entry is only informative and it allow to know the \n"
  8704. "intent of using the current tool. \n"
  8705. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8706. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8707. "ball(B), or V-Shaped(V)."
  8708. msgstr ""
  8709. "Ferramentas usadas para o corte no Trabalho CNC.\n"
  8710. "O diâmetro da ferramenta é usado para plotagem na tela.\n"
  8711. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  8712. "'Deslocamento' pode estar dentro, fora, no caminho (nenhum) e personalizado. "
  8713. "A entrada\n"
  8714. "'Tipo' é apenas informativa e permite conhecer a necessidade de usar a "
  8715. "ferramenta atual.\n"
  8716. "Pode ser Desbaste, Acabamento ou Isolamento.\n"
  8717. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  8718. "bola (B) ou Em forma de V (V)."
  8719. #: flatcamGUI/ObjectUI.py:1466
  8720. msgid "P"
  8721. msgstr "P"
  8722. #: flatcamGUI/ObjectUI.py:1472
  8723. msgid "Update Plot"
  8724. msgstr "Atualizar Gráfico"
  8725. #: flatcamGUI/ObjectUI.py:1474
  8726. msgid "Update the plot."
  8727. msgstr "Atualiza o gráfico."
  8728. #: flatcamGUI/ObjectUI.py:1481
  8729. msgid "<b>Export CNC Code:</b>"
  8730. msgstr "<b>Exportar Código CNC:</b>"
  8731. #: flatcamGUI/ObjectUI.py:1489
  8732. msgid "Prepend to CNC Code:"
  8733. msgstr "Incluir no Início do Código CNC:"
  8734. #: flatcamGUI/ObjectUI.py:1492
  8735. msgid ""
  8736. "Type here any G-Code commands you would\n"
  8737. "like to add to the beginning of the generated file."
  8738. msgstr ""
  8739. "Digite aqui comandos G-Code que você gostaria de adicionar ao início do "
  8740. "arquivo gerado."
  8741. #: flatcamGUI/ObjectUI.py:1502
  8742. msgid "Append to CNC Code:"
  8743. msgstr "Incluir no Final do Código CNC:"
  8744. #: flatcamGUI/ObjectUI.py:1526
  8745. msgid ""
  8746. "Type here any G-Code commands you would\n"
  8747. "like to be executed when Toolchange event is encountered.\n"
  8748. "This will constitute a Custom Toolchange GCode,\n"
  8749. "or a Toolchange Macro.\n"
  8750. "The FlatCAM variables are surrounded by '%' symbol.\n"
  8751. "\n"
  8752. "WARNING: it can be used only with a postprocessor file\n"
  8753. "that has 'toolchange_custom' in it's name and this is built\n"
  8754. "having as template the 'Toolchange Custom' posprocessor file."
  8755. msgstr ""
  8756. "Digite aqui os comandos do G-Code G que você gostaria de executar quando o "
  8757. "evento do Troca de Ferramentas for encontrado.\n"
  8758. "Ele será um G-Code personalizado para Troca de Ferramentas,\n"
  8759. "ou uma Macro.\n"
  8760. "As variáveis do FlatCAM são circundadas pelo símbolo '%'.\n"
  8761. "\n"
  8762. "ATENÇÃO: pode ser usado apenas com um arquivo de pós-processador\n"
  8763. "que tenha 'toolchange_custom' em seu nome e este é construído tendo\n"
  8764. "como modelo o arquivo do posprocessador 'Customização da troca de "
  8765. "ferramentas'."
  8766. #: flatcamGUI/ObjectUI.py:1574
  8767. msgid "z_cut = depth where to cut"
  8768. msgstr "z_cut = profundidade onde cortar"
  8769. #: flatcamGUI/ObjectUI.py:1575
  8770. msgid "z_move = height where to travel"
  8771. msgstr "z_move = altura para deslocamentos"
  8772. #: flatcamGUI/ObjectUI.py:1593
  8773. msgid "View CNC Code"
  8774. msgstr "Ver Código CNC"
  8775. #: flatcamGUI/ObjectUI.py:1596
  8776. msgid ""
  8777. "Opens TAB to view/modify/print G-Code\n"
  8778. "file."
  8779. msgstr "Abre uma ABA para visualizar/modificar/imprimir o arquivo G-Code."
  8780. #: flatcamGUI/ObjectUI.py:1602
  8781. msgid "Save CNC Code"
  8782. msgstr "Salvar Código CNC"
  8783. #: flatcamGUI/ObjectUI.py:1605
  8784. msgid ""
  8785. "Opens dialog to save G-Code\n"
  8786. "file."
  8787. msgstr "Abre o diálogo para salvar o arquivo G-Code."
  8788. #: flatcamTools/ToolCalculators.py:24
  8789. msgid "Calculators"
  8790. msgstr "Calculadoras"
  8791. #: flatcamTools/ToolCalculators.py:25
  8792. msgid "V-Shape Tool Calculator"
  8793. msgstr "Calculadora Ferramenta Ponta-em-V"
  8794. #: flatcamTools/ToolCalculators.py:26
  8795. msgid "Units Calculator"
  8796. msgstr "Calculadora de Unidades"
  8797. #: flatcamTools/ToolCalculators.py:27
  8798. msgid "ElectroPlating Calculator"
  8799. msgstr "Calculadora Eletrolítica"
  8800. #: flatcamTools/ToolCalculators.py:68
  8801. msgid "Here you enter the value to be converted from INCH to MM"
  8802. msgstr "Aqui você insere o valor a ser convertido de polegadas para mm"
  8803. #: flatcamTools/ToolCalculators.py:73
  8804. msgid "Here you enter the value to be converted from MM to INCH"
  8805. msgstr "Aqui você insere o valor a ser convertido de mm para polegadas"
  8806. #: flatcamTools/ToolCalculators.py:96
  8807. msgid ""
  8808. "This is the diameter of the tool tip.\n"
  8809. "The manufacturer specifies it."
  8810. msgstr ""
  8811. "Diâmetro da ponta da ferramenta.\n"
  8812. "Especificado pelo fabricante."
  8813. #: flatcamTools/ToolCalculators.py:99
  8814. msgid "Tip Angle:"
  8815. msgstr "Ângulo da Ponta:"
  8816. #: flatcamTools/ToolCalculators.py:103
  8817. msgid ""
  8818. "This is the angle of the tip of the tool.\n"
  8819. "It is specified by manufacturer."
  8820. msgstr ""
  8821. "Ângulo da ponta da ferramenta.\n"
  8822. "Especificado pelo fabricante."
  8823. #: flatcamTools/ToolCalculators.py:110
  8824. msgid ""
  8825. "This is the depth to cut into the material.\n"
  8826. "In the CNCJob is the CutZ parameter."
  8827. msgstr ""
  8828. "Esta é a profundidade para cortar material.\n"
  8829. "No Trabalho CNC é o parâmetro Corte Z."
  8830. #: flatcamTools/ToolCalculators.py:113
  8831. msgid "Tool Diameter:"
  8832. msgstr "Diâmetro da ferramenta:"
  8833. #: flatcamTools/ToolCalculators.py:117
  8834. msgid ""
  8835. "This is the tool diameter to be entered into\n"
  8836. "FlatCAM Gerber section.\n"
  8837. "In the CNCJob section it is called >Tool dia<."
  8838. msgstr ""
  8839. "Este é o diâmetro da ferramenta a ser inserido na seção\n"
  8840. "FlatCAM Gerber.\n"
  8841. "Na seção Trabalho CNC é chamado de Diâmetro da Ferramenta."
  8842. #: flatcamTools/ToolCalculators.py:128 flatcamTools/ToolCalculators.py:209
  8843. msgid "Calculate"
  8844. msgstr "Calcular"
  8845. #: flatcamTools/ToolCalculators.py:131
  8846. msgid ""
  8847. "Calculate either the Cut Z or the effective tool diameter,\n"
  8848. " depending on which is desired and which is known. "
  8849. msgstr ""
  8850. "Calcule o Corte Z ou o diâmetro efetivo da ferramenta, dependendo do que é "
  8851. "desejado e do que é conhecido."
  8852. #: flatcamTools/ToolCalculators.py:185
  8853. msgid "Current Value:"
  8854. msgstr "Valor da Corrente:"
  8855. #: flatcamTools/ToolCalculators.py:189
  8856. msgid ""
  8857. "This is the current intensity value\n"
  8858. "to be set on the Power Supply. In Amps."
  8859. msgstr ""
  8860. "Este é o valor de intensidade de corrente\n"
  8861. "a ser ajustado na fonte de alimentação. Em Ampères."
  8862. #: flatcamTools/ToolCalculators.py:193
  8863. msgid "Time:"
  8864. msgstr "Tempo:"
  8865. #: flatcamTools/ToolCalculators.py:197
  8866. msgid ""
  8867. "This is the calculated time required for the procedure.\n"
  8868. "In minutes."
  8869. msgstr "Tempo calculado necessário para o procedimento, em minutos."
  8870. #: flatcamTools/ToolCalculators.py:212
  8871. msgid ""
  8872. "Calculate the current intensity value and the procedure time,\n"
  8873. "depending on the parameters above"
  8874. msgstr "Calcula o valor da intensidade atual e o tempo do\n"
  8875. "procedimento, dependendo dos parâmetros acima"
  8876. #: flatcamTools/ToolCalculators.py:256
  8877. msgid "Calc. Tool"
  8878. msgstr "Calculadoras"
  8879. #: flatcamTools/ToolCutOut.py:18
  8880. msgid "Cutout PCB"
  8881. msgstr "Recorte PCB"
  8882. #: flatcamTools/ToolCutOut.py:54
  8883. msgid "Obj Type:"
  8884. msgstr "Tipo de Objeto:"
  8885. #: flatcamTools/ToolCutOut.py:56
  8886. msgid ""
  8887. "Specify the type of object to be cutout.\n"
  8888. "It can be of type: Gerber or Geometry.\n"
  8889. "What is selected here will dictate the kind\n"
  8890. "of objects that will populate the 'Object' combobox."
  8891. msgstr ""
  8892. "Especifica o tipo de objeto a ser cortado.\n"
  8893. "Pode ser do tipo: Gerber ou Geometria.\n"
  8894. "O que estiver selecionado aqui irá ditar o tipo\n"
  8895. "de objetos que preencherão a caixa de combinação 'Objeto'."
  8896. #: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolPanelize.py:71
  8897. msgid "Object:"
  8898. msgstr "Objeto:"
  8899. #: flatcamTools/ToolCutOut.py:72
  8900. msgid "Object to be cutout. "
  8901. msgstr "Objeto a ser recortado."
  8902. #: flatcamTools/ToolCutOut.py:80
  8903. msgid ""
  8904. "Diameter of the tool used to cutout\n"
  8905. "the PCB shape out of the surrounding material."
  8906. msgstr "Diâmetro da ferramenta usada para cortar o entorno do PCB."
  8907. #: flatcamTools/ToolCutOut.py:89
  8908. msgid ""
  8909. "Margin over bounds. A positive value here\n"
  8910. "will make the cutout of the PCB further from\n"
  8911. "the actual PCB border"
  8912. msgstr ""
  8913. "Margem além das bordas. Um valor positivo\n"
  8914. "tornará o recorte do PCB mais longe da borda da PCB"
  8915. #: flatcamTools/ToolCutOut.py:99
  8916. msgid ""
  8917. "The size of the bridge gaps in the cutout\n"
  8918. "used to keep the board connected to\n"
  8919. "the surrounding material (the one \n"
  8920. "from which the PCB is cutout)."
  8921. msgstr ""
  8922. "Tamanho das pontes no recorte, utilizadas\n"
  8923. "para manter a placa conectada ao material\n"
  8924. "circundante (de onde o PCB é recortado)."
  8925. #: flatcamTools/ToolCutOut.py:118
  8926. msgid ""
  8927. "Create a convex shape surrounding the entire PCB.\n"
  8928. "Used only if the source object type is Gerber."
  8929. msgstr ""
  8930. "Cria uma forma convexa ao redor de toda a PCB.\n"
  8931. "Utilize somente se o tipo de objeto de origem for Gerber."
  8932. #: flatcamTools/ToolCutOut.py:124
  8933. msgid "A. Automatic Bridge Gaps"
  8934. msgstr "A. Pontes Automáticas"
  8935. #: flatcamTools/ToolCutOut.py:126
  8936. msgid "This section handle creation of automatic bridge gaps."
  8937. msgstr "Esta seção trata da criação de pontes automáticas."
  8938. #: flatcamTools/ToolCutOut.py:137
  8939. msgid ""
  8940. "Number of gaps used for the Automatic cutout.\n"
  8941. "There can be maximum 8 bridges/gaps.\n"
  8942. "The choices are:\n"
  8943. "- lr - left + right\n"
  8944. "- tb - top + bottom\n"
  8945. "- 4 - left + right +top + bottom\n"
  8946. "- 2lr - 2*left + 2*right\n"
  8947. "- 2tb - 2*top + 2*bottom\n"
  8948. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8949. msgstr ""
  8950. "Número de pontes utilizadas no recorte automático.\n"
  8951. "Pode haver um máximo de 8 pontes/lacunas.\n"
  8952. "As opções são:\n"
  8953. "- LR - esquerda + direita\n"
  8954. "- TB - topo + baixo\n"
  8955. "- 4 - esquerda + direita + topo + baixo\n"
  8956. "- 2LR - 2*esquerda + 2*direita\n"
  8957. "- 2TB - 2*topo + 2*baixo\n"
  8958. "- 8 - 2*esquerda + 2*direita + 2*topo + 2*baixo"
  8959. #: flatcamTools/ToolCutOut.py:160
  8960. msgid "FreeForm:"
  8961. msgstr "Forma Livre:"
  8962. #: flatcamTools/ToolCutOut.py:162
  8963. msgid ""
  8964. "The cutout shape can be of ny shape.\n"
  8965. "Useful when the PCB has a non-rectangular shape."
  8966. msgstr ""
  8967. "O recorte pode ter qualquer forma.\n"
  8968. "Útil quando o PCB tem uma forma não retangular."
  8969. #: flatcamTools/ToolCutOut.py:171
  8970. msgid ""
  8971. "Cutout the selected object.\n"
  8972. "The cutout shape can be of any shape.\n"
  8973. "Useful when the PCB has a non-rectangular shape."
  8974. msgstr ""
  8975. "Recorta o objeto selecionado.\n"
  8976. "O recorte pode ter qualquer forma.\n"
  8977. "Útil quando o PCB tem uma forma não retangular."
  8978. #: flatcamTools/ToolCutOut.py:180
  8979. msgid "Rectangular:"
  8980. msgstr "Retangular:"
  8981. #: flatcamTools/ToolCutOut.py:182
  8982. msgid ""
  8983. "The resulting cutout shape is\n"
  8984. "always a rectangle shape and it will be\n"
  8985. "the bounding box of the Object."
  8986. msgstr ""
  8987. "O recorte resultante é\n"
  8988. "sempre em forma de retângulo e será\n"
  8989. "a caixa delimitadora do objeto."
  8990. #: flatcamTools/ToolCutOut.py:191
  8991. msgid ""
  8992. "Cutout the selected object.\n"
  8993. "The resulting cutout shape is\n"
  8994. "always a rectangle shape and it will be\n"
  8995. "the bounding box of the Object."
  8996. msgstr ""
  8997. "Recorta o objeto selecionado.\n"
  8998. "O recorte resultante é\n"
  8999. "sempre em forma de retângulo e será\n"
  9000. "a caixa delimitadora do objeto."
  9001. #: flatcamTools/ToolCutOut.py:199
  9002. msgid "B. Manual Bridge Gaps"
  9003. msgstr "B. Pontes Manuais"
  9004. #: flatcamTools/ToolCutOut.py:201
  9005. msgid ""
  9006. "This section handle creation of manual bridge gaps.\n"
  9007. "This is done by mouse clicking on the perimeter of the\n"
  9008. "Geometry object that is used as a cutout object. "
  9009. msgstr ""
  9010. "Esta seção trata da criação de pontes manuais.\n"
  9011. "Isso é feito clicando com o mouse no perímetro do objeto\n"
  9012. "de Geometria que é usado como objeto de recorte."
  9013. #: flatcamTools/ToolCutOut.py:217
  9014. msgid "Geo Obj:"
  9015. msgstr "Obj Geo:"
  9016. #: flatcamTools/ToolCutOut.py:219
  9017. msgid "Geometry object used to create the manual cutout."
  9018. msgstr "Objeto de geometria usado para criar o recorte manual."
  9019. #: flatcamTools/ToolCutOut.py:230
  9020. msgid "Manual Geo:"
  9021. msgstr "Geo Manual:"
  9022. #: flatcamTools/ToolCutOut.py:232 flatcamTools/ToolCutOut.py:242
  9023. msgid ""
  9024. "If the object to be cutout is a Gerber\n"
  9025. "first create a Geometry that surrounds it,\n"
  9026. "to be used as the cutout, if one doesn't exist yet.\n"
  9027. "Select the source Gerber file in the top object combobox."
  9028. msgstr ""
  9029. "Se o objeto a ser recortado for um Gerber\n"
  9030. "primeiro crie uma Geometria que o rodeia,\n"
  9031. "para ser usado como recorte, caso ainda não exista.\n"
  9032. "Selecione o arquivo Gerber de origem na combobox do objeto."
  9033. #: flatcamTools/ToolCutOut.py:252
  9034. msgid "Manual Add Bridge Gaps:"
  9035. msgstr "Adicionar Pontes Manuais:"
  9036. #: flatcamTools/ToolCutOut.py:254
  9037. msgid ""
  9038. "Use the left mouse button (LMB) click\n"
  9039. "to create a bridge gap to separate the PCB from\n"
  9040. "the surrounding material."
  9041. msgstr ""
  9042. "Use o botão esquerdo do mouse (BEM), clique para criar\n"
  9043. "pontes (para separar o PCB do material circundante)."
  9044. #: flatcamTools/ToolCutOut.py:261
  9045. msgid "Generate Gap"
  9046. msgstr "Gerar Ponte"
  9047. #: flatcamTools/ToolCutOut.py:263
  9048. msgid ""
  9049. "Use the left mouse button (LMB) click\n"
  9050. "to create a bridge gap to separate the PCB from\n"
  9051. "the surrounding material.\n"
  9052. "The LMB click has to be done on the perimeter of\n"
  9053. "the Geometry object used as a cutout geometry."
  9054. msgstr ""
  9055. "Use o botão esquerdo do mouse (BEM): clique\n"
  9056. "para criar uma ponte para separar a PCB do material adjacente.\n"
  9057. "O clique deve ser feito no perímetro\n"
  9058. "do objeto Geometria usado como uma geometria de recorte."
  9059. #: flatcamTools/ToolCutOut.py:342 flatcamTools/ToolCutOut.py:512
  9060. #: flatcamTools/ToolNonCopperClear.py:669 flatcamTools/ToolPaint.py:768
  9061. #: flatcamTools/ToolPanelize.py:352 flatcamTools/ToolPanelize.py:366
  9062. #: flatcamTools/ToolSub.py:239 flatcamTools/ToolSub.py:252
  9063. #: flatcamTools/ToolSub.py:432 flatcamTools/ToolSub.py:445
  9064. #, python-format
  9065. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  9066. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto: %s"
  9067. #: flatcamTools/ToolCutOut.py:346
  9068. msgid ""
  9069. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  9070. "Select one and try again."
  9071. msgstr ""
  9072. "[ERROR_NOTCL] Não há objeto selecionado para Recorte.\n"
  9073. "Selecione um e tente novamente."
  9074. #: flatcamTools/ToolCutOut.py:361
  9075. msgid ""
  9076. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9077. "number."
  9078. msgstr ""
  9079. "[WARNING_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número "
  9080. "real positivo."
  9081. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:540
  9082. #: flatcamTools/ToolCutOut.py:785
  9083. msgid ""
  9084. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  9085. msgstr ""
  9086. "[WARNING_NOTCL] O valor da margem está ausente ou no formato errado. Altere "
  9087. "e tente novamente."
  9088. #: flatcamTools/ToolCutOut.py:382 flatcamTools/ToolCutOut.py:551
  9089. #: flatcamTools/ToolCutOut.py:680
  9090. msgid ""
  9091. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  9092. msgstr ""
  9093. "[WARNING_NOTCL] O valor do tamanho da ponte está ausente ou no formato "
  9094. "incorreto. Altere e tente novamente."
  9095. #: flatcamTools/ToolCutOut.py:389 flatcamTools/ToolCutOut.py:558
  9096. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  9097. msgstr ""
  9098. "[WARNING_NOTCL] O número de pontes está ausente. Altere e tente novamente."
  9099. #: flatcamTools/ToolCutOut.py:393 flatcamTools/ToolCutOut.py:562
  9100. msgid ""
  9101. "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
  9102. "or 8. Fill in a correct value and retry. "
  9103. msgstr ""
  9104. "[WARNING_NOTCL] O valor das pontes pode ser apenas: 'lr', 'tb', '2lr', "
  9105. "'2tb', 4 ou 8. Preencha um valor correto e tente novamente."
  9106. #: flatcamTools/ToolCutOut.py:398 flatcamTools/ToolCutOut.py:567
  9107. msgid ""
  9108. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  9109. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  9110. "Geometry,\n"
  9111. "and after that perform Cutout."
  9112. msgstr ""
  9113. "[ERROR] A operação de recorte não pode ser feita em uma Geometria multi-"
  9114. "geo.\n"
  9115. "Opcionalmente, essa Geometria Multi-Geo pode ser convertida em Geometria "
  9116. "Única,\n"
  9117. "e depois disso, executar Recorte."
  9118. #: flatcamTools/ToolCutOut.py:496 flatcamTools/ToolCutOut.py:650
  9119. msgid "[success] Any form CutOut operation finished."
  9120. msgstr "[success] Operação de Recorte Livre finalizada."
  9121. #: flatcamTools/ToolCutOut.py:516 flatcamTools/ToolPaint.py:772
  9122. #: flatcamTools/ToolPanelize.py:358
  9123. #, python-format
  9124. msgid "[ERROR_NOTCL] Object not found: %s"
  9125. msgstr "[ERROR_NOTCL] Objeto não encontrado: %s"
  9126. #: flatcamTools/ToolCutOut.py:530 flatcamTools/ToolCutOut.py:670
  9127. #: flatcamTools/ToolCutOut.py:775
  9128. msgid ""
  9129. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9130. "number."
  9131. msgstr ""
  9132. "[ERROR_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número real "
  9133. "positivo."
  9134. #: flatcamTools/ToolCutOut.py:655
  9135. msgid ""
  9136. "Click on the selected geometry object perimeter to create a bridge gap ..."
  9137. msgstr ""
  9138. "Clique no perímetro do objeto de geometria selecionado para criar uma "
  9139. "ponte ..."
  9140. #: flatcamTools/ToolCutOut.py:696
  9141. msgid "Making manual bridge gap..."
  9142. msgstr "Fazendo ponte manual ..."
  9143. #: flatcamTools/ToolCutOut.py:719
  9144. #, python-format
  9145. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  9146. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Geometria: %s"
  9147. #: flatcamTools/ToolCutOut.py:723
  9148. #, python-format
  9149. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  9150. msgstr ""
  9151. "[ERROR_NOTCL] Objeto de geometria para recorte manual não encontrado: %s"
  9152. #: flatcamTools/ToolCutOut.py:733
  9153. msgid "[success] Added manual Bridge Gap."
  9154. msgstr "[success] Ponte Manual Adicionada."
  9155. #: flatcamTools/ToolCutOut.py:750
  9156. #, python-format
  9157. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  9158. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Gerber: %s"
  9159. #: flatcamTools/ToolCutOut.py:754
  9160. msgid ""
  9161. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  9162. "Select one and try again."
  9163. msgstr ""
  9164. "[ERROR_NOTCL] Não há nenhum objeto Gerber selecionado para o Recorte.\n"
  9165. "Selecione um e tente novamente."
  9166. #: flatcamTools/ToolCutOut.py:759
  9167. msgid ""
  9168. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  9169. "Select a Gerber file and try again."
  9170. msgstr ""
  9171. "[ERROR_NOTCL] O objeto selecionado deve ser do tipo Gerber.\n"
  9172. "Selecione um arquivo Gerber e tente novamente."
  9173. #: flatcamTools/ToolDblSided.py:18
  9174. msgid "2-Sided PCB"
  9175. msgstr "PCB de 2 faces"
  9176. #: flatcamTools/ToolDblSided.py:47
  9177. msgid "<b>GERBER:</b>"
  9178. msgstr "<b>GERBER:</b>"
  9179. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  9180. #: flatcamTools/ToolDblSided.py:100
  9181. msgid "Mirror"
  9182. msgstr "Espelho"
  9183. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  9184. #: flatcamTools/ToolDblSided.py:102
  9185. msgid ""
  9186. "Mirrors (flips) the specified object around \n"
  9187. "the specified axis. Does not create a new \n"
  9188. "object, but modifies it."
  9189. msgstr ""
  9190. "Espelha (inverte) o objeto especificado em torno do eixo especificado. Não "
  9191. "cria um novo\n"
  9192. "objeto, mas o modifica."
  9193. #: flatcamTools/ToolDblSided.py:71
  9194. msgid "<b>EXCELLON:</b>"
  9195. msgstr "<b>EXCELLON:</b>"
  9196. #: flatcamTools/ToolDblSided.py:73
  9197. msgid "Excellon Object to be mirrored."
  9198. msgstr "Objeto Excellon a ser espelhado."
  9199. #: flatcamTools/ToolDblSided.py:95
  9200. msgid "<b>GEOMETRY</b>:"
  9201. msgstr "<b>GEOMETRIA</b>:"
  9202. #: flatcamTools/ToolDblSided.py:97
  9203. msgid "Geometry Obj to be mirrored."
  9204. msgstr "Objeto Geometria a ser espelhado."
  9205. #: flatcamTools/ToolDblSided.py:135
  9206. msgid ""
  9207. "The axis should pass through a <b>point</b> or cut\n"
  9208. " a specified <b>box</b> (in a FlatCAM object) through \n"
  9209. "the center."
  9210. msgstr ""
  9211. "O eixo deve passar por um <b>ponto</b> ou cortar o centro de uma <b>caixa</"
  9212. "b> especificada (em um objeto FlatCAM)."
  9213. #: flatcamTools/ToolDblSided.py:152
  9214. msgid "Point/Box Reference:"
  9215. msgstr "Ponto/Caixa de Referência:"
  9216. #: flatcamTools/ToolDblSided.py:154
  9217. msgid ""
  9218. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  9219. "the mirroring axis passes.\n"
  9220. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  9221. "Geo).\n"
  9222. "Through the center of this object pass the mirroring axis selected above."
  9223. msgstr ""
  9224. "Se 'Ponto' for selecionado acima, armazena as coordenadas (x, y) por onde "
  9225. "passa\n"
  9226. "o eixo de espelhamento.\n"
  9227. "Se 'Caixa' for selecionada acima, selecione aqui um objeto FlatCAM (Gerber, "
  9228. "Exc ou Geo).\n"
  9229. "O eixo de espelhamento passa pelo centro deste objeto."
  9230. #: flatcamTools/ToolDblSided.py:162
  9231. msgid ""
  9232. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  9233. "axis \n"
  9234. " selected in 'MIRROR AXIS' pass.\n"
  9235. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  9236. "and left mouse button click on canvas or you can enter the coords manually."
  9237. msgstr ""
  9238. "Adicione as coordenadas no formato <b>(x, y)</b> para o eixo de espelhamento "
  9239. "passar.\n"
  9240. "As coordenadas (x, y) são capturadas pressionando a tecla SHIFT\n"
  9241. "e clicar o botão esquerdo do mouse na tela ou inseridas manualmente."
  9242. #: flatcamTools/ToolDblSided.py:182
  9243. msgid "Gerber Reference Box Object"
  9244. msgstr "Objeto Caixa de Referência Gerber"
  9245. #: flatcamTools/ToolDblSided.py:183
  9246. msgid "Excellon Reference Box Object"
  9247. msgstr "Objeto Caixa de Referência Excellon"
  9248. #: flatcamTools/ToolDblSided.py:184
  9249. msgid "Geometry Reference Box Object"
  9250. msgstr "Objeto Caixa de Referência de Geometria"
  9251. #: flatcamTools/ToolDblSided.py:192
  9252. msgid "Alignment Drill Coordinates:"
  9253. msgstr "Coordenadas de Alinhamento de Broca:"
  9254. #: flatcamTools/ToolDblSided.py:194
  9255. msgid ""
  9256. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  9257. "each set of (x, y) coordinates\n"
  9258. "entered here, a pair of drills will be created:\n"
  9259. "\n"
  9260. "- one drill at the coordinates from the field\n"
  9261. "- one drill in mirror position over the axis selected above in the 'Mirror "
  9262. "Axis'."
  9263. msgstr ""
  9264. "Furos de alinhamento (x1, y1), (x2, y2), ... em um lado do eixo do espelho. "
  9265. "Para cada conjunto de coordenadas (x, y)\n"
  9266. "indicado aqui, um par de brocas será criado:\n"
  9267. "\n"
  9268. "- uma broca nas coordenadas do campo\n"
  9269. "- uma broca na posição do espelho sobre o eixo selecionado acima."
  9270. #: flatcamTools/ToolDblSided.py:209
  9271. msgid ""
  9272. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  9273. "on one side of the mirror axis.\n"
  9274. "\n"
  9275. "The coordinates set can be obtained:\n"
  9276. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  9277. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  9278. "field.\n"
  9279. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  9280. "field and click Paste.\n"
  9281. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  9282. msgstr ""
  9283. "Adicione as coordenadas dos furos de alinhamento no formato (x1, y1), (x2, "
  9284. "y2), ...\n"
  9285. "em um lado do eixo do espelho.\n"
  9286. "\n"
  9287. "O conjunto de coordenadas pode ser obtido:\n"
  9288. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, "
  9289. "clicar em Adicionar.\n"
  9290. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Então CTRL + V "
  9291. "no campo.\n"
  9292. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, "
  9293. "clicar no campo e em Colar.\n"
  9294. "- inserindo as coordenadas manualmente no formato: (x1, y1), (x2, y2), ..."
  9295. #: flatcamTools/ToolDblSided.py:223
  9296. msgid "Alignment Drill Diameter"
  9297. msgstr "Diâmetro de Broca de Alinhamento"
  9298. #: flatcamTools/ToolDblSided.py:246
  9299. msgid "Create Excellon Object"
  9300. msgstr "Criar Objeto Excellon"
  9301. #: flatcamTools/ToolDblSided.py:248
  9302. msgid ""
  9303. "Creates an Excellon Object containing the\n"
  9304. "specified alignment holes and their mirror\n"
  9305. "images."
  9306. msgstr ""
  9307. "Cria um Objeto Excellon contendo os\n"
  9308. "furos de alinhamento especificados e suas\n"
  9309. "imagens espelhadas."
  9310. #: flatcamTools/ToolDblSided.py:254
  9311. msgid "Reset"
  9312. msgstr "Redefinir"
  9313. #: flatcamTools/ToolDblSided.py:256
  9314. msgid "Resets all the fields."
  9315. msgstr "Redefine todos os campos."
  9316. #: flatcamTools/ToolDblSided.py:301
  9317. msgid "2-Sided Tool"
  9318. msgstr "PCB 2 Faces"
  9319. #: flatcamTools/ToolDblSided.py:326
  9320. msgid ""
  9321. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  9322. "missing. Add them and retry."
  9323. msgstr ""
  9324. "[WARNING_NOTCL] A referência 'Ponto' está selecionada e as coordenadas do "
  9325. "'Ponto' estão faltando. Adicione-as e tente novamente."
  9326. #: flatcamTools/ToolDblSided.py:345
  9327. msgid ""
  9328. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  9329. msgstr ""
  9330. "[WARNING_NOTCL] Não há objeto Caixa de referência carregado. Carregue um e "
  9331. "tente novamente."
  9332. #: flatcamTools/ToolDblSided.py:367
  9333. msgid ""
  9334. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  9335. "retry."
  9336. msgstr ""
  9337. "[WARNING_NOTCL] Nenhum valor ou formato incorreto para Diâmetro de Broca. "
  9338. "Altere e tente novamente."
  9339. #: flatcamTools/ToolDblSided.py:374
  9340. msgid ""
  9341. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  9342. "and retry."
  9343. msgstr ""
  9344. "[WARNING_NOTCL] Não há Coordenadas de Broca de Alinhamento para usar. "
  9345. "Adicione-as e tente novamente."
  9346. #: flatcamTools/ToolDblSided.py:397
  9347. msgid "[success] Excellon object with alignment drills created..."
  9348. msgstr "[success] Objeto Excellon com brocas de alinhamento criado ..."
  9349. #: flatcamTools/ToolDblSided.py:406
  9350. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  9351. msgstr "[WARNING_NOTCL] Não há objeto Gerber carregado ..."
  9352. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453
  9353. #: flatcamTools/ToolDblSided.py:497
  9354. msgid ""
  9355. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  9356. msgstr ""
  9357. "[ERROR_NOTCL] Apenas objetos Gerber, Excellon e Geometria podem ser "
  9358. "espelhados."
  9359. #: flatcamTools/ToolDblSided.py:420
  9360. msgid ""
  9361. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  9362. "mirroring reference."
  9363. msgstr ""
  9364. "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Usando Origem (0, 0) "
  9365. "como referência de espelhamento."
  9366. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474
  9367. #: flatcamTools/ToolDblSided.py:511
  9368. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  9369. msgstr "[WARNING_NOTCL] Não há objeto Caixa carregado ..."
  9370. #: flatcamTools/ToolDblSided.py:440
  9371. #, python-format
  9372. msgid "[success] Gerber %s was mirrored..."
  9373. msgstr "[success] Gerber %s foi espelhado ..."
  9374. #: flatcamTools/ToolDblSided.py:449
  9375. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9376. msgstr "[WARNING_NOTCL] Não há objeto Excellon carregado ..."
  9377. #: flatcamTools/ToolDblSided.py:464
  9378. msgid ""
  9379. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9380. "coords and try again ..."
  9381. msgstr ""
  9382. "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Adicione as coordenadas "
  9383. "e tente novamente ..."
  9384. #: flatcamTools/ToolDblSided.py:484
  9385. #, python-format
  9386. msgid "[success] Excellon %s was mirrored..."
  9387. msgstr "[success] Excellon %s foi espelhado ..."
  9388. #: flatcamTools/ToolDblSided.py:493
  9389. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9390. msgstr "[WARNING_NOTCL] Não há objeto Geometria carregado ..."
  9391. #: flatcamTools/ToolDblSided.py:521
  9392. #, python-format
  9393. msgid "[success] Geometry %s was mirrored..."
  9394. msgstr "[success] Geometria %s foi espelhada ..."
  9395. #: flatcamTools/ToolFilm.py:25
  9396. msgid "Film PCB"
  9397. msgstr "Filme PCB"
  9398. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9399. #: flatcamTools/ToolPanelize.py:56
  9400. msgid "Object Type:"
  9401. msgstr "Tipo de Objeto:"
  9402. #: flatcamTools/ToolFilm.py:58
  9403. msgid ""
  9404. "Specify the type of object for which to create the film.\n"
  9405. "The object can be of type: Gerber or Geometry.\n"
  9406. "The selection here decide the type of objects that will be\n"
  9407. "in the Film Object combobox."
  9408. msgstr ""
  9409. "Especifique o tipo de objeto para o qual criar o filme.\n"
  9410. "O objeto pode ser do tipo: Gerber ou Geometria.\n"
  9411. "A seleção aqui decide o tipo de objetos que estarão\n"
  9412. "na caixa de combinação Objeto de Filme."
  9413. #: flatcamTools/ToolFilm.py:71
  9414. msgid "Film Object:"
  9415. msgstr "Objeto de Filme:"
  9416. #: flatcamTools/ToolFilm.py:73
  9417. msgid "Object for which to create the film."
  9418. msgstr "Objeto para o qual criar o filme."
  9419. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  9420. msgid "Box Type:"
  9421. msgstr "Tipo de Caixa:"
  9422. #: flatcamTools/ToolFilm.py:91
  9423. msgid ""
  9424. "Specify the type of object to be used as an container for\n"
  9425. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9426. "the type of objects that will be\n"
  9427. "in the Box Object combobox."
  9428. msgstr ""
  9429. "Especifique o tipo de objeto a ser usado como um contêiner para a criação "
  9430. "de\n"
  9431. "filme. Pode ser: tipo Gerber ou Geometria. A seleção aqui decide o tipo de "
  9432. "objetos que estarão\n"
  9433. "na caixa de combinação Objeto Caixa."
  9434. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9435. msgid "Box Object:"
  9436. msgstr "Objeto Caixa:"
  9437. #: flatcamTools/ToolFilm.py:106
  9438. msgid ""
  9439. "The actual object that is used a container for the\n"
  9440. " selected object for which we create the film.\n"
  9441. "Usually it is the PCB outline but it can be also the\n"
  9442. "same object for which the film is created."
  9443. msgstr ""
  9444. "O objeto que é usado como um container para o objeto\n"
  9445. "selecionado para o qual criamos o filme.\n"
  9446. "Normalmente, é o contorno do PCB, mas também pode ser\n"
  9447. "do mesmo objeto para o qual o filme é criado."
  9448. #: flatcamTools/ToolFilm.py:114
  9449. msgid "Positive"
  9450. msgstr "Positivo"
  9451. #: flatcamTools/ToolFilm.py:115
  9452. msgid "Negative"
  9453. msgstr "Negativo"
  9454. #: flatcamTools/ToolFilm.py:157
  9455. msgid "Save Film"
  9456. msgstr "Salvar Filme"
  9457. #: flatcamTools/ToolFilm.py:159
  9458. msgid ""
  9459. "Create a Film for the selected object, within\n"
  9460. "the specified box. Does not create a new \n"
  9461. " FlatCAM object, but directly save it in SVG format\n"
  9462. "which can be opened with Inkscape."
  9463. msgstr ""
  9464. "Cria um filme para o objeto selecionado, dentro da caixa especificada. Não "
  9465. "cria um novo objeto\n"
  9466. "FlatCAM, mas salva-o diretamente no formato SVG\n"
  9467. "que pode ser aberto com o programa Inkscape."
  9468. #: flatcamTools/ToolFilm.py:225
  9469. msgid ""
  9470. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9471. msgstr ""
  9472. "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para "
  9473. "Filme e tente novamente."
  9474. #: flatcamTools/ToolFilm.py:231
  9475. msgid ""
  9476. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9477. msgstr ""
  9478. "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para "
  9479. "Caixa e tente novamente."
  9480. #: flatcamTools/ToolFilm.py:255
  9481. msgid "Generating Film ..."
  9482. msgstr "Gerando Filme ..."
  9483. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  9484. msgid "Export SVG positive"
  9485. msgstr "Exportar SVG positivo"
  9486. #: flatcamTools/ToolFilm.py:269
  9487. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  9488. msgstr "[WARNING_NOTCL] Exportar SVG positivo cancelado."
  9489. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  9490. msgid "Export SVG negative"
  9491. msgstr "Exportar SVG negativo"
  9492. #: flatcamTools/ToolFilm.py:285
  9493. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  9494. msgstr "[WARNING_NOTCL] Exportar SVG negativo cancelado."
  9495. #: flatcamTools/ToolImage.py:25
  9496. msgid "Image as Object"
  9497. msgstr "Imagem como Objeto"
  9498. #: flatcamTools/ToolImage.py:31
  9499. msgid "Image to PCB"
  9500. msgstr "Imagem para PCB"
  9501. #: flatcamTools/ToolImage.py:55
  9502. msgid ""
  9503. "Specify the type of object to create from the image.\n"
  9504. "It can be of type: Gerber or Geometry."
  9505. msgstr ""
  9506. "Especifique o tipo de objeto a ser criado a partir da imagem.\n"
  9507. "Pode ser do tipo: Gerber ou Geometria."
  9508. #: flatcamTools/ToolImage.py:63
  9509. msgid "DPI value:"
  9510. msgstr "Valor de DPI:"
  9511. #: flatcamTools/ToolImage.py:65
  9512. msgid "Specify a DPI value for the image."
  9513. msgstr "Especifique um valor de DPI (pontos por polegada) para a imagem."
  9514. #: flatcamTools/ToolImage.py:72
  9515. msgid "Level of detail"
  9516. msgstr "Nível de detalhe"
  9517. #: flatcamTools/ToolImage.py:81
  9518. msgid "Image type"
  9519. msgstr "Tipo de imagem"
  9520. #: flatcamTools/ToolImage.py:83
  9521. msgid ""
  9522. "Choose a method for the image interpretation.\n"
  9523. "B/W means a black & white image. Color means a colored image."
  9524. msgstr ""
  9525. "Escolha um método para a interpretação da imagem.\n"
  9526. "P/B significa uma imagem em preto e branco. Cor significa uma imagem "
  9527. "colorida."
  9528. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9529. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9530. msgid "Mask value"
  9531. msgstr "Valor da máscara"
  9532. #: flatcamTools/ToolImage.py:92
  9533. msgid ""
  9534. "Mask for monochrome image.\n"
  9535. "Takes values between [0 ... 255].\n"
  9536. "Decides the level of details to include\n"
  9537. "in the resulting geometry.\n"
  9538. "0 means no detail and 255 means everything \n"
  9539. "(which is totally black)."
  9540. msgstr ""
  9541. "Máscara para imagem monocromática.\n"
  9542. "Valores entre [0 ... 255].\n"
  9543. "Define o nível de detalhes para incluir\n"
  9544. "na geometria resultante.\n"
  9545. "0 significa nenhum detalhe e 255 significa tudo\n"
  9546. "(que é totalmente preto)."
  9547. #: flatcamTools/ToolImage.py:105
  9548. msgid ""
  9549. "Mask for RED color.\n"
  9550. "Takes values between [0 ... 255].\n"
  9551. "Decides the level of details to include\n"
  9552. "in the resulting geometry."
  9553. msgstr ""
  9554. "Máscara para a cor VERMELHA.\n"
  9555. "Valores entre [0 ... 255].\n"
  9556. "Define o nível de detalhes para incluir\n"
  9557. "na geometria resultante."
  9558. #: flatcamTools/ToolImage.py:116
  9559. msgid ""
  9560. "Mask for GREEN color.\n"
  9561. "Takes values between [0 ... 255].\n"
  9562. "Decides the level of details to include\n"
  9563. "in the resulting geometry."
  9564. msgstr ""
  9565. "Máscara para a cor VERDE.\n"
  9566. "Valores entre [0 ... 255].\n"
  9567. "Define o nível de detalhes para incluir\n"
  9568. "na geometria resultante."
  9569. #: flatcamTools/ToolImage.py:127
  9570. msgid ""
  9571. "Mask for BLUE color.\n"
  9572. "Takes values between [0 ... 255].\n"
  9573. "Decides the level of details to include\n"
  9574. "in the resulting geometry."
  9575. msgstr ""
  9576. "Máscara para a cor AZUL.\n"
  9577. "Valores entre [0 ... 255].\n"
  9578. "Define o nível de detalhes para incluir\n"
  9579. "na geometria resultante."
  9580. #: flatcamTools/ToolImage.py:139
  9581. msgid "Import image"
  9582. msgstr "Importar imagem"
  9583. #: flatcamTools/ToolImage.py:141
  9584. msgid "Open a image of raster type and then import it in FlatCAM."
  9585. msgstr "Abre uma imagem do tipo raster e importe-a no FlatCAM."
  9586. #: flatcamTools/ToolImage.py:170
  9587. msgid "Image Tool"
  9588. msgstr "Ferramenta de Imagem"
  9589. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  9590. msgid "Import IMAGE"
  9591. msgstr "Importar IMAGEM"
  9592. #: flatcamTools/ToolMeasurement.py:26
  9593. msgid "Measurement"
  9594. msgstr "Medição"
  9595. #: flatcamTools/ToolMeasurement.py:43
  9596. msgid "Units:"
  9597. msgstr "Unidades:"
  9598. #: flatcamTools/ToolMeasurement.py:44
  9599. msgid "Those are the units in which the distance is measured."
  9600. msgstr "Unidade em que a distância é medida."
  9601. #: flatcamTools/ToolMeasurement.py:45
  9602. msgid "METRIC (mm)"
  9603. msgstr "Métrico (mm):"
  9604. #: flatcamTools/ToolMeasurement.py:45
  9605. msgid "INCH (in)"
  9606. msgstr "Inglês (in)"
  9607. #: flatcamTools/ToolMeasurement.py:48
  9608. msgid "Start"
  9609. msgstr "Início"
  9610. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  9611. msgid "Coords"
  9612. msgstr "Coords"
  9613. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  9614. msgid "This is measuring Start point coordinates."
  9615. msgstr "Coordenadas do ponto inicial da medição."
  9616. #: flatcamTools/ToolMeasurement.py:51
  9617. msgid "Stop"
  9618. msgstr "Final"
  9619. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  9620. msgid "This is the measuring Stop point coordinates."
  9621. msgstr "Coordenadas do ponto final da medição."
  9622. #: flatcamTools/ToolMeasurement.py:54
  9623. msgid "Dx:"
  9624. msgstr "Dx:"
  9625. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  9626. msgid "This is the distance measured over the X axis."
  9627. msgstr "Distância medida no eixo X."
  9628. #: flatcamTools/ToolMeasurement.py:57
  9629. msgid "Dy:"
  9630. msgstr "Dy:"
  9631. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  9632. msgid "This is the distance measured over the Y axis."
  9633. msgstr "Distância medida no eixo Y."
  9634. #: flatcamTools/ToolMeasurement.py:60
  9635. msgid "DISTANCE"
  9636. msgstr "DISTÂNCIA"
  9637. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  9638. msgid "This is the point to point Euclidian distance."
  9639. msgstr "Este é o ponto a apontar a distância euclidiana."
  9640. #: flatcamTools/ToolMeasurement.py:83
  9641. msgid "Measure"
  9642. msgstr "Medir"
  9643. #: flatcamTools/ToolMeasurement.py:131
  9644. msgid "Meas. Tool"
  9645. msgstr "Ferramenta de Medição"
  9646. #: flatcamTools/ToolMeasurement.py:176
  9647. msgid "MEASURING: Click on the Start point ..."
  9648. msgstr "MEDIÇÃO: Clique no ponto inicial ..."
  9649. #: flatcamTools/ToolMeasurement.py:269
  9650. msgid "MEASURING: Click on the Destination point ..."
  9651. msgstr "MEDIÇÃO: Clique no ponto final ..."
  9652. #: flatcamTools/ToolMeasurement.py:277
  9653. #, python-brace-format
  9654. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9655. msgstr "MEDIÇÃO: Resultado D(x) = {d_x} | D(y) = {d_y} | Distância = {d_z}"
  9656. #: flatcamTools/ToolMove.py:81
  9657. msgid "MOVE: Click on the Start point ..."
  9658. msgstr "MOVER: Clique no ponto inicial ..."
  9659. #: flatcamTools/ToolMove.py:88
  9660. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9661. msgstr "[WARNING_NOTCL] Ação MOVER cancelada. Nenhum objeto para mover."
  9662. #: flatcamTools/ToolMove.py:110
  9663. msgid "MOVE: Click on the Destination point ..."
  9664. msgstr "MOVER: Clique no ponto de destino ..."
  9665. #: flatcamTools/ToolMove.py:128
  9666. msgid "Moving ..."
  9667. msgstr "Movendo ..."
  9668. #: flatcamTools/ToolMove.py:135
  9669. msgid "[WARNING_NOTCL] No object(s) selected."
  9670. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  9671. #: flatcamTools/ToolMove.py:158
  9672. #, python-format
  9673. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9674. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9675. #: flatcamTools/ToolMove.py:164
  9676. #, python-format
  9677. msgid "[success] %s object was moved ..."
  9678. msgstr "[success] objeto %s foi movido ..."
  9679. #: flatcamTools/ToolMove.py:174
  9680. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9681. msgstr ""
  9682. "[ERROR_NOTCL] ToolMove.on_left_click() --> Erro ao clicar no botão esquerdo "
  9683. "do mouse."
  9684. #: flatcamTools/ToolMove.py:202
  9685. msgid "[WARNING_NOTCL] Move action cancelled."
  9686. msgstr "[WARNING_NOTCL] Ação Mover cancelada."
  9687. #: flatcamTools/ToolMove.py:214
  9688. msgid "[WARNING_NOTCL] Object(s) not selected"
  9689. msgstr "[WARNING_NOTCL] Objeto(s) não selecionado(s)"
  9690. #: flatcamTools/ToolNonCopperClear.py:26
  9691. msgid "Non-Copper Clearing"
  9692. msgstr "Área Sem Cobre (NCC)"
  9693. #: flatcamTools/ToolNonCopperClear.py:64
  9694. msgid "Gerber object to be cleared of excess copper. "
  9695. msgstr "Objeto Gerber do qual será retirado o cobre."
  9696. #: flatcamTools/ToolNonCopperClear.py:74
  9697. msgid ""
  9698. "Tools pool from which the algorithm\n"
  9699. "will pick the ones used for copper clearing."
  9700. msgstr ""
  9701. "Conjunto de ferramentas do qual o algoritmo\n"
  9702. "escolherá aquelas usados para limpeza de cobre."
  9703. #: flatcamTools/ToolNonCopperClear.py:89
  9704. msgid ""
  9705. "This is the Tool Number.\n"
  9706. "Non copper clearing will start with the tool with the biggest \n"
  9707. "diameter, continuing until there are no more tools.\n"
  9708. "Only tools that create NCC clearing geometry will still be present\n"
  9709. "in the resulting geometry. This is because with some tools\n"
  9710. "this function will not be able to create painting geometry."
  9711. msgstr ""
  9712. "Este é o Número da Ferramenta.\n"
  9713. "A retirada de cobre (NCC) começará com a ferramenta de maior diâmetro,\n"
  9714. "continuando até que não haja mais ferramentas. As únicas ferramentas\n"
  9715. "que criam a geometria de NCC ainda estarão presentes na geometria\n"
  9716. "resultante. Isso ocorre porque com algumas ferramentas esta função\n"
  9717. "não será capaz de criar geometria de pintura."
  9718. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  9719. msgid ""
  9720. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9721. "informative only. Being circular, <BR>the cut width in material is exactly "
  9722. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9723. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9724. "parameter in the resulting geometry UI form and enable two additional UI "
  9725. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9726. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9727. "material will be equal with the value in the Tool Diameter column of this "
  9728. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9729. "the Operation Type in the resulting geometry as Isolation."
  9730. msgstr ""
  9731. "O Tipo de Ferramenta (TF) pode ser:<BR>- <B>Circular</B> com 1 ... 4 dentes -"
  9732. "> é apenas informativo. Como é circular, <BR>a largura do corte é igual ao "
  9733. "diâmetro da ferramenta.<BR>- <B>Bola</B> -> apenas informativo e faz "
  9734. "referência a uma fresa do tipo bola.<BR>- <B>Forma em V</B> -> o parâmetro "
  9735. "corte Z será desativado no formulário e serão habilitados dois campos "
  9736. "adicionais: Diâmetro da Ponta-V e Ângulo da Ponta-V. Ajustando esses dois "
  9737. "parâmetros irá alterar o parâmetro Corte Z como a largura de corte no "
  9738. "material, será igual ao valor na coluna Diâmetro da Ferramenta desta tabela."
  9739. "<BR>Escolhendo o tipo <B>Forma em V</B> automaticamente selecionará o Tipo "
  9740. "de Operação Isolação."
  9741. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  9742. msgid "Tool Dia"
  9743. msgstr "Diâmetro da Ferramenta"
  9744. #: flatcamTools/ToolNonCopperClear.py:122
  9745. msgid "Diameter for the new tool to add in the Tool Table"
  9746. msgstr ""
  9747. "Diâmetro para a nova ferramenta para adicionar na tabela de ferramentas"
  9748. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145
  9749. #: flatcamTools/ToolSolderPaste.py:123
  9750. msgid ""
  9751. "Delete a selection of tools in the Tool Table\n"
  9752. "by first selecting a row(s) in the Tool Table."
  9753. msgstr ""
  9754. "Apague uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  9755. "primeiro a(s) linha(s) na Tabela de Ferramentas."
  9756. #: flatcamTools/ToolNonCopperClear.py:226
  9757. msgid ""
  9758. "If checked, use 'rest machining'.\n"
  9759. "Basically it will clear copper outside PCB features,\n"
  9760. "using the biggest tool and continue with the next tools,\n"
  9761. "from bigger to smaller, to clear areas of copper that\n"
  9762. "could not be cleared by previous tool, until there is\n"
  9763. "no more copper to clear or there are no more tools.\n"
  9764. "If not checked, use the standard algorithm."
  9765. msgstr ""
  9766. "Se marcada, usa 'usinagem de descanso'.\n"
  9767. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  9768. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  9769. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  9770. "retiradas com a ferramenta anterior.\n"
  9771. "Se não estiver marcada, usa o algoritmo padrão."
  9772. #: flatcamTools/ToolNonCopperClear.py:238
  9773. msgid "Generate Geometry"
  9774. msgstr "Gerar Geometria"
  9775. #: flatcamTools/ToolNonCopperClear.py:486 flatcamTools/ToolPaint.py:543
  9776. #: flatcamTools/ToolSolderPaste.py:759
  9777. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9778. msgstr ""
  9779. "[WARNING_NOTCL] Insira um diâmetro de ferramenta para adicionar, no formato "
  9780. "Flutuante."
  9781. #: flatcamTools/ToolNonCopperClear.py:515 flatcamTools/ToolPaint.py:567
  9782. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9783. msgstr ""
  9784. "[WARNING_NOTCL] Adição cancelada. Ferramenta já está na Tabela de "
  9785. "Ferramentas."
  9786. #: flatcamTools/ToolNonCopperClear.py:520 flatcamTools/ToolPaint.py:572
  9787. msgid "[success] New tool added to Tool Table."
  9788. msgstr "[success] Nova ferramenta adicionada à Tabela de Ferramentas."
  9789. #: flatcamTools/ToolNonCopperClear.py:562 flatcamTools/ToolPaint.py:617
  9790. msgid "[success] Tool from Tool Table was edited."
  9791. msgstr "[sucss] A ferramenta da Tabela de Ferramentas foi editada."
  9792. #: flatcamTools/ToolNonCopperClear.py:573 flatcamTools/ToolPaint.py:628
  9793. #: flatcamTools/ToolSolderPaste.py:846
  9794. msgid ""
  9795. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9796. "Table."
  9797. msgstr ""
  9798. "[WARNING_NOTCL] Editar cancelado. O novo valor de diâmetro já está na tabela "
  9799. "de ferramentas."
  9800. #: flatcamTools/ToolNonCopperClear.py:613 flatcamTools/ToolPaint.py:727
  9801. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9802. msgstr ""
  9803. "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta para excluir."
  9804. #: flatcamTools/ToolNonCopperClear.py:618 flatcamTools/ToolPaint.py:732
  9805. msgid "[success] Tool(s) deleted from Tool Table."
  9806. msgstr "[success] Ferramenta(s) excluída(s) da Tabela de Ferramentas."
  9807. #: flatcamTools/ToolNonCopperClear.py:636 flatcamTools/ToolPaint.py:751
  9808. msgid ""
  9809. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9810. msgstr ""
  9811. "[ERROR_NOTCL] O valor de sobreposição deve estar entre 0 (inclusive) e 1 "
  9812. "(exclusivo),"
  9813. #: flatcamTools/ToolNonCopperClear.py:677
  9814. msgid "[ERROR_NOTCL] No Gerber file available."
  9815. msgstr "[ERROR_NOTCL] Nenhum arquivo Gerber disponível."
  9816. #: flatcamTools/ToolNonCopperClear.py:715
  9817. #: flatcamTools/ToolNonCopperClear.py:837
  9818. msgid "Clearing Non-Copper areas."
  9819. msgstr "Limpando áreas Sem-Cobre."
  9820. #: flatcamTools/ToolNonCopperClear.py:733
  9821. #, python-format
  9822. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9823. msgstr "[success] Limpeza de Área Sem-Cobre com Diâmetro = %s iniciada."
  9824. #: flatcamTools/ToolNonCopperClear.py:802
  9825. #, python-format
  9826. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9827. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9828. #: flatcamTools/ToolNonCopperClear.py:807
  9829. msgid "[success] NCC Tool finished."
  9830. msgstr "[success] Retirada de cobre concluída."
  9831. #: flatcamTools/ToolNonCopperClear.py:809
  9832. msgid ""
  9833. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9834. "cleared. Check the result."
  9835. msgstr ""
  9836. "[WARNING_NOTCL] A retirada de cobre foi concluída, mas alguns recursos do "
  9837. "PCB\n"
  9838. "não puderam ser retirados. Verifique o resultado."
  9839. #: flatcamTools/ToolNonCopperClear.py:855
  9840. #, python-format
  9841. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9842. msgstr "[success] Limpeza de cobre iniciada com diâmetro = %s."
  9843. #: flatcamTools/ToolNonCopperClear.py:953
  9844. #, python-format
  9845. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9846. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9847. #: flatcamTools/ToolNonCopperClear.py:961
  9848. msgid ""
  9849. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9850. "settings."
  9851. msgstr ""
  9852. "[ERROR_NOTCL] A limpeza foi concluída, mas não pôde limpar o objeto com as "
  9853. "configurações atuais."
  9854. #: flatcamTools/ToolPDF.py:38
  9855. msgid "PDF Import Tool"
  9856. msgstr "Ferramenta de Importação de PDF"
  9857. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9858. msgid "Open PDF"
  9859. msgstr "Abrir PDF"
  9860. #: flatcamTools/ToolPDF.py:159
  9861. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9862. msgstr "[WARNING_NOTCL] Abrir PDF cancelado."
  9863. #: flatcamTools/ToolPDF.py:186
  9864. msgid "Parsing PDF file ..."
  9865. msgstr "Analisando arquivo PDF ..."
  9866. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9867. #, python-format
  9868. msgid "Rendering PDF layer #%d ..."
  9869. msgstr "Renderizando camada PDF # %d ..."
  9870. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9871. msgid "[ERROR_NOTCL] Open PDF file failed."
  9872. msgstr "[ERROR_NOTCL] Falha ao abrir arquivo PDF."
  9873. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9874. #, python-format
  9875. msgid "[success] Rendered: %s"
  9876. msgstr "[success] Processado: %s"
  9877. #: flatcamTools/ToolPaint.py:24
  9878. msgid "Paint Area"
  9879. msgstr "Área de Pintura"
  9880. #: flatcamTools/ToolPaint.py:60
  9881. msgid "Geometry:"
  9882. msgstr "Geometria:"
  9883. #: flatcamTools/ToolPaint.py:62
  9884. msgid "Geometry object to be painted. "
  9885. msgstr "Objeto de geometria a ser pintado."
  9886. #: flatcamTools/ToolPaint.py:71
  9887. msgid ""
  9888. "Tools pool from which the algorithm\n"
  9889. "will pick the ones used for painting."
  9890. msgstr ""
  9891. "Conjunto de ferramentas do qual o algoritmo\n"
  9892. "escolherá os usados para a pintura."
  9893. #: flatcamTools/ToolPaint.py:86
  9894. msgid ""
  9895. "This is the Tool Number.\n"
  9896. "Painting will start with the tool with the biggest diameter,\n"
  9897. "continuing until there are no more tools.\n"
  9898. "Only tools that create painting geometry will still be present\n"
  9899. "in the resulting geometry. This is because with some tools\n"
  9900. "this function will not be able to create painting geometry."
  9901. msgstr ""
  9902. "Este é o Número da Ferramenta.\n"
  9903. "A pintura começará com a ferramenta com o maior diâmetro,\n"
  9904. "continuando até que não haja mais ferramentas.\n"
  9905. "As únicas ferramentas que criam a geometria da pintura ainda estarão "
  9906. "presentes\n"
  9907. "na geometria resultante. Isso ocorre porque com algumas ferramentas\n"
  9908. "não são capazes de criar geometria de pintura nesta função."
  9909. #: flatcamTools/ToolPaint.py:119
  9910. msgid "Diameter for the new tool."
  9911. msgstr "Diâmetro para a nova ferramenta."
  9912. #: flatcamTools/ToolPaint.py:224
  9913. msgid ""
  9914. "If checked, use 'rest machining'.\n"
  9915. "Basically it will clear copper outside PCB features,\n"
  9916. "using the biggest tool and continue with the next tools,\n"
  9917. "from bigger to smaller, to clear areas of copper that\n"
  9918. "could not be cleared by previous tool, until there is\n"
  9919. "no more copper to clear or there are no more tools.\n"
  9920. "\n"
  9921. "If not checked, use the standard algorithm."
  9922. msgstr ""
  9923. "Se marcada, usa 'usinagem de descanso'.\n"
  9924. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  9925. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  9926. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  9927. "retiradas com a ferramenta anterior.\n"
  9928. "Se não estiver marcada, usa o algoritmo padrão."
  9929. #: flatcamTools/ToolPaint.py:239
  9930. msgid ""
  9931. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  9932. "mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
  9933. "polygons."
  9934. msgstr ""
  9935. "Como selecionar os polígonos para pintar.<BR>Opções:<BR> - <B>Único</B>: "
  9936. "clique com o botão esquerdo do mouse no polígono a ser pintado.<BR> - "
  9937. "<B>Todos</B>: pintar todos os polígonos."
  9938. #: flatcamTools/ToolPaint.py:254
  9939. msgid "Create Paint Geometry"
  9940. msgstr "Criar Geometria de Pintura"
  9941. #: flatcamTools/ToolPaint.py:256
  9942. msgid ""
  9943. "After clicking here, click inside<BR>the polygon you wish to be painted if "
  9944. "<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
  9945. "start after click.<BR>A new Geometry object with the tool<BR>paths will be "
  9946. "created."
  9947. msgstr ""
  9948. "Depois de clicar aqui, clique dentro<BR>do polígono que você deseja pintar "
  9949. "se <B>Único</B> estiver selecionado.<BR>Se <B>Todos</B> for selecionado, a "
  9950. "Pintura será iniciada após o clique.<BR>Será criado um novo objeto Geometria "
  9951. "com os caminhos da ferramenta."
  9952. #: flatcamTools/ToolPaint.py:736
  9953. msgid "geometry_on_paint_button"
  9954. msgstr "geometry_on_paint_button"
  9955. #: flatcamTools/ToolPaint.py:755 flatcamTools/ToolPaint.py:791
  9956. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  9957. msgstr "[WARNING_NOTCL] Clique dentro do polígono desejado."
  9958. #: flatcamTools/ToolPaint.py:778
  9959. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  9960. msgstr "[ERROR_NOTCL] Não é possível pintar geometrias MultiGeo ..."
  9961. #: flatcamTools/ToolPaint.py:800 flatcamTools/ToolPaint.py:1004
  9962. msgid "Painting polygon..."
  9963. msgstr "Pintando o polígono..."
  9964. #: flatcamTools/ToolPaint.py:853
  9965. msgid "[WARNING] No polygon found."
  9966. msgstr "[WARNING] Nenhum polígono encontrado."
  9967. #: flatcamTools/ToolPaint.py:856
  9968. msgid "Painting polygon."
  9969. msgstr "Pintando o polígono."
  9970. #: flatcamTools/ToolPaint.py:898
  9971. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  9972. msgstr "[ERROR_NOTCL] A geometria não pode ser pintada completamente"
  9973. #: flatcamTools/ToolPaint.py:924
  9974. #, python-format
  9975. msgid ""
  9976. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  9977. "different strategy of paint\n"
  9978. "%s"
  9979. msgstr ""
  9980. "[ERROR] Não foi possível pintar. Tente uma combinação diferente de "
  9981. "parâmetros ou uma estratégia diferente de pintura\n"
  9982. "%s"
  9983. #: flatcamTools/ToolPaint.py:966
  9984. #, python-format
  9985. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9986. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  9987. #: flatcamTools/ToolPaint.py:972 flatcamTools/ToolPaint.py:1271
  9988. msgid "Polygon Paint started ..."
  9989. msgstr "Pintura de polígonos iniciada ..."
  9990. #: flatcamTools/ToolPaint.py:1125 flatcamTools/ToolPaint.py:1216
  9991. #, python-format
  9992. msgid ""
  9993. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  9994. "Or a different Method of paint\n"
  9995. "%s"
  9996. msgstr ""
  9997. "[ERROR] Não foi possível pintar todos. Tente uma combinação diferente de "
  9998. "parâmetros, ou um método diferente de pintura\n"
  9999. "%s"
  10000. #: flatcamTools/ToolPaint.py:1149
  10001. msgid ""
  10002. "[ERROR] There is no Painting Geometry in the file.\n"
  10003. "Usually it means that the tool diameter is too big for the painted "
  10004. "geometry.\n"
  10005. "Change the painting parameters and try again."
  10006. msgstr ""
  10007. "[ERROR] Não há geometria de pintura no arquivo.\n"
  10008. "Normalmente significa que o diâmetro da ferramenta é muito grande para a "
  10009. "geometria pintada.\n"
  10010. "Mude os parâmetros de pintura e tente novamente."
  10011. #: flatcamTools/ToolPaint.py:1158
  10012. msgid "[success] Paint All Done."
  10013. msgstr "[success] Pintura finalizada."
  10014. #: flatcamTools/ToolPaint.py:1246
  10015. msgid ""
  10016. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  10017. "Usually it means that the tool diameter is too big for the painted "
  10018. "geometry.\n"
  10019. "Change the painting parameters and try again."
  10020. msgstr ""
  10021. "[ERROR_NOTCL] Não há geometria de pintura no arquivo.\n"
  10022. "Normalmente significa que o diâmetro da ferramenta é muito grande para a "
  10023. "geometria pintada.\n"
  10024. "Mude os parâmetros de pintura e tente novamente."
  10025. #: flatcamTools/ToolPaint.py:1255
  10026. msgid "[success] Paint All with Rest-Machining done."
  10027. msgstr "[success] Pintura finalizada."
  10028. #: flatcamTools/ToolPanelize.py:25
  10029. msgid "Panelize PCB"
  10030. msgstr "Criar Painel com PCB"
  10031. #: flatcamTools/ToolPanelize.py:58
  10032. msgid ""
  10033. "Specify the type of object to be panelized\n"
  10034. "It can be of type: Gerber, Excellon or Geometry.\n"
  10035. "The selection here decide the type of objects that will be\n"
  10036. "in the Object combobox."
  10037. msgstr ""
  10038. "Especifique o tipo de objeto para criar um painel\n"
  10039. "Pode ser do tipo: Gerber, Excellon ou Geometria.\n"
  10040. "A seleção aqui decide o tipo de objetos que estarão\n"
  10041. "na Caixa de Objetos."
  10042. #: flatcamTools/ToolPanelize.py:73
  10043. msgid ""
  10044. "Object to be panelized. This means that it will\n"
  10045. "be duplicated in an array of rows and columns."
  10046. msgstr ""
  10047. "Objeto para criar painel. Isso significa\n"
  10048. "que ele será duplicado em uma matriz de linhas e colunas."
  10049. #: flatcamTools/ToolPanelize.py:84
  10050. msgid "Object"
  10051. msgstr "Objeto"
  10052. #: flatcamTools/ToolPanelize.py:85
  10053. msgid "Bounding Box"
  10054. msgstr "Caixa Delimitadora"
  10055. #: flatcamTools/ToolPanelize.py:86
  10056. msgid "<b>Penelization Reference:</b>"
  10057. msgstr "<b>Referência para Criação de Painel:</b>"
  10058. #: flatcamTools/ToolPanelize.py:88
  10059. msgid ""
  10060. "Choose the reference for panelization:\n"
  10061. "- Object = the bounding box of a different object\n"
  10062. "- Bounding Box = the bounding box of the object to be panelized\n"
  10063. "\n"
  10064. "The reference is useful when doing panelization for more than one\n"
  10065. "object. The spacings (really offsets) will be applied in reference\n"
  10066. "to this reference object therefore maintaining the panelized\n"
  10067. "objects in sync."
  10068. msgstr ""
  10069. "Escolha a referência para criação do painel:\n"
  10070. "- Objeto = a caixa delimitadora de um objeto diferente\n"
  10071. "- Caixa Delimitadora = a caixa delimitadora do objeto para criar o painel\n"
  10072. "\n"
  10073. "A referência é útil ao criar um painel para mais de um objeto.\n"
  10074. "Os espaçamentos (deslocamentos) serão aplicados em referência\n"
  10075. "a este objeto de referência, portanto, mantendo os objetos\n"
  10076. "sincronizados no painel."
  10077. #: flatcamTools/ToolPanelize.py:113
  10078. msgid ""
  10079. "Specify the type of object to be used as an container for\n"
  10080. "panelization. It can be: Gerber or Geometry type.\n"
  10081. "The selection here decide the type of objects that will be\n"
  10082. "in the Box Object combobox."
  10083. msgstr ""
  10084. "Especifique o tipo de objeto a ser usado como um contêiner para\n"
  10085. "o painel criado. Pode ser: tipo Gerber ou Geometria.\n"
  10086. "A seleção aqui decide o tipo de objetos que estarão na\n"
  10087. "Caixa de Objetos."
  10088. #: flatcamTools/ToolPanelize.py:128
  10089. msgid ""
  10090. "The actual object that is used a container for the\n"
  10091. " selected object that is to be panelized."
  10092. msgstr ""
  10093. "O objeto usado como contêiner para o objeto\n"
  10094. "selecionado para o qual será criado um painel."
  10095. #: flatcamTools/ToolPanelize.py:134
  10096. msgid "<b>Panel Data:</b>"
  10097. msgstr "<b>Dados do Painel:</b>"
  10098. #: flatcamTools/ToolPanelize.py:136
  10099. msgid ""
  10100. "This informations will shape the resulting panel.\n"
  10101. "The number of rows and columns will set how many\n"
  10102. "duplicates of the original geometry will be generated.\n"
  10103. "\n"
  10104. "The spacings will set the distance between any two\n"
  10105. "elements of the panel array."
  10106. msgstr ""
  10107. "Essas informações moldarão o painel resultante.\n"
  10108. "O número de linhas e colunas definirá quantas\n"
  10109. "duplicatas da geometria original serão geradas.\n"
  10110. "\n"
  10111. "Os espaçamentos definirão a distância entre os\n"
  10112. "elementos da matriz do painel."
  10113. #: flatcamTools/ToolPanelize.py:183
  10114. msgid "<b>Panel Type:</b>"
  10115. msgstr "<b>Tipo de Painel:</b>"
  10116. #: flatcamTools/ToolPanelize.py:185
  10117. msgid ""
  10118. "Choose the type of object for the panel object:\n"
  10119. "- Geometry\n"
  10120. "- Gerber"
  10121. msgstr ""
  10122. "Escolha o tipo de objeto para o objeto de painel:\n"
  10123. "- Geometria\n"
  10124. "- Gerber"
  10125. #: flatcamTools/ToolPanelize.py:193
  10126. msgid "Constrain panel within:"
  10127. msgstr "Restringir painel dentro de:"
  10128. #: flatcamTools/ToolPanelize.py:227
  10129. msgid "Panelize Object"
  10130. msgstr "Criar Painel"
  10131. #: flatcamTools/ToolPanelize.py:229
  10132. msgid ""
  10133. "Panelize the specified object around the specified box.\n"
  10134. "In other words it creates multiple copies of the source object,\n"
  10135. "arranged in a 2D array of rows and columns."
  10136. msgstr ""
  10137. "Cria um painel do objeto especificado ao redor da caixa especificada.\n"
  10138. "Em outras palavras, ele cria várias cópias do objeto de origem,\n"
  10139. "arranjado em uma matriz 2D de linhas e colunas."
  10140. #: flatcamTools/ToolPanelize.py:272
  10141. msgid "Panel. Tool"
  10142. msgstr "Ferramenta de Painel"
  10143. #: flatcamTools/ToolPanelize.py:370
  10144. #, python-format
  10145. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  10146. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  10147. #: flatcamTools/ToolPanelize.py:453
  10148. msgid ""
  10149. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  10150. "integer."
  10151. msgstr ""
  10152. "[ERROR_NOTCL] Colunas ou Linhas com valor zero. Altere-os para um inteiro "
  10153. "positivo."
  10154. #: flatcamTools/ToolPanelize.py:478 flatcamTools/ToolPanelize.py:635
  10155. msgid "Generating panel ... Please wait."
  10156. msgstr "Gerando painel ... Por favor, aguarde."
  10157. #: flatcamTools/ToolPanelize.py:628
  10158. msgid "[success] Panel done..."
  10159. msgstr "[success] Painel criado..."
  10160. #: flatcamTools/ToolPanelize.py:631
  10161. #, python-brace-format
  10162. msgid ""
  10163. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  10164. "{row} rows"
  10165. msgstr ""
  10166. "[WARNING] Grande demais para a área restrita.. O painel final tem {col} "
  10167. "colunas e {row} linhas"
  10168. #: flatcamTools/ToolPanelize.py:640
  10169. msgid "[success] Panel created successfully."
  10170. msgstr "[success] Painel criado com sucesso."
  10171. #: flatcamTools/ToolPcbWizard.py:32
  10172. msgid "PcbWizard Import Tool"
  10173. msgstr "Ferramenta de Importação PcbWizard"
  10174. #: flatcamTools/ToolPcbWizard.py:40
  10175. msgid "Import 2-file Excellon"
  10176. msgstr "Importar Excellon 2-arquivos"
  10177. #: flatcamTools/ToolPcbWizard.py:57
  10178. msgid "Excellon file:"
  10179. msgstr "Arquivo Excellon:"
  10180. #: flatcamTools/ToolPcbWizard.py:59
  10181. msgid ""
  10182. "Load the Excellon file.\n"
  10183. "Usually it has a .DRL extension"
  10184. msgstr ""
  10185. "Carrega o arquivo Excellon.\n"
  10186. "Normalmente ele tem uma extensão .DRL"
  10187. #: flatcamTools/ToolPcbWizard.py:65
  10188. msgid "INF file:"
  10189. msgstr "Arquivo INF:"
  10190. #: flatcamTools/ToolPcbWizard.py:67
  10191. msgid "Load the INF file."
  10192. msgstr "Carrega o arquivo INF."
  10193. #: flatcamTools/ToolPcbWizard.py:79
  10194. msgid "Tool Number"
  10195. msgstr "Número da Ferramenta"
  10196. #: flatcamTools/ToolPcbWizard.py:81
  10197. msgid "Tool diameter in file units."
  10198. msgstr "Diâmetro da ferramenta em unidades de arquivo."
  10199. #: flatcamTools/ToolPcbWizard.py:95
  10200. msgid "Int. digits:"
  10201. msgstr "Dígitos Int.:"
  10202. #: flatcamTools/ToolPcbWizard.py:97
  10203. msgid "The number of digits for the integral part of the coordinates."
  10204. msgstr "O número de dígitos da parte integral das coordenadas."
  10205. #: flatcamTools/ToolPcbWizard.py:104
  10206. msgid "Frac. digits:"
  10207. msgstr "Dígitos Frac.:"
  10208. #: flatcamTools/ToolPcbWizard.py:106
  10209. msgid "The number of digits for the fractional part of the coordinates."
  10210. msgstr "O número de dígitos para a parte fracionária das coordenadas."
  10211. #: flatcamTools/ToolPcbWizard.py:113
  10212. msgid "No Suppression"
  10213. msgstr "Sem supressão"
  10214. #: flatcamTools/ToolPcbWizard.py:114
  10215. msgid "Zeros supp.:"
  10216. msgstr "Sup. Zeros:"
  10217. #: flatcamTools/ToolPcbWizard.py:116
  10218. msgid ""
  10219. "The type of zeros suppression used.\n"
  10220. "Can be of type:\n"
  10221. "- LZ = leading zeros are kept\n"
  10222. "- TZ = trailing zeros are kept\n"
  10223. "- No Suppression = no zero suppression"
  10224. msgstr ""
  10225. "O tipo de supressão de zeros usado.\n"
  10226. "Pode ser do tipo:\n"
  10227. "- LZ = zeros à esquerda são mantidos\n"
  10228. "- TZ = zeros à direita são mantidos\n"
  10229. "- Sem supressão = sem supressão de zeros"
  10230. #: flatcamTools/ToolPcbWizard.py:127
  10231. msgid "Units"
  10232. msgstr "Unidades"
  10233. #: flatcamTools/ToolPcbWizard.py:129
  10234. msgid ""
  10235. "The type of units that the coordinates and tool\n"
  10236. "diameters are using. Can be INCH or MM."
  10237. msgstr ""
  10238. "A unidade para as coordenadas e os diâmetros\n"
  10239. "de ferramentas. Pode ser Polegada ou mm."
  10240. #: flatcamTools/ToolPcbWizard.py:136
  10241. msgid "Import Excellon"
  10242. msgstr "Importar Excellon"
  10243. #: flatcamTools/ToolPcbWizard.py:138
  10244. msgid ""
  10245. "Import in FlatCAM an Excellon file\n"
  10246. "that store it's information's in 2 files.\n"
  10247. "One usually has .DRL extension while\n"
  10248. "the other has .INF extension."
  10249. msgstr ""
  10250. "Importa no FlatCAM um arquivo Excellon\n"
  10251. "que armazena suas informações em 2 arquivos.\n"
  10252. "Um geralmente possui extensão .DRL e o outro tem extensão .INF."
  10253. #: flatcamTools/ToolPcbWizard.py:192
  10254. msgid "PCBWizard Tool"
  10255. msgstr "Ferramenta PCBWizard"
  10256. #: flatcamTools/ToolPcbWizard.py:286 flatcamTools/ToolPcbWizard.py:290
  10257. msgid "Load PcbWizard Excellon file"
  10258. msgstr "Carregar o arquivo PcbWizard Excellon"
  10259. #: flatcamTools/ToolPcbWizard.py:309 flatcamTools/ToolPcbWizard.py:313
  10260. msgid "Load PcbWizard INF file"
  10261. msgstr "Carregar arquivo PcbWizard INF"
  10262. #: flatcamTools/ToolPcbWizard.py:360
  10263. msgid ""
  10264. "[ERROR] The INF file does not contain the tool table.\n"
  10265. "Try to open the Excellon file from File -> Open -> Excellon\n"
  10266. "and edit the drill diameters manually."
  10267. msgstr ""
  10268. "[ERROR] O arquivo INF não contém a tabela de ferramentas.\n"
  10269. "Tente abrir o arquivo Excellon em Arquivo -> Abrir -> Excellon\n"
  10270. "e edite os diâmetros das brocas manualmente."
  10271. #: flatcamTools/ToolPcbWizard.py:380
  10272. msgid "[success] PcbWizard .INF file loaded."
  10273. msgstr "[success] Arquivo PcbWizard .INF carregado."
  10274. #: flatcamTools/ToolPcbWizard.py:384
  10275. msgid "[success] Main PcbWizard Excellon file loaded."
  10276. msgstr "[success] Arquivo PcbWizard Excellon carregado."
  10277. #: flatcamTools/ToolPcbWizard.py:421
  10278. #, python-format
  10279. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  10280. msgstr "[ERROR_NOTCL] Não é possível analisar o arquivo: %s"
  10281. #: flatcamTools/ToolPcbWizard.py:445
  10282. msgid "Importing Excellon."
  10283. msgstr "Importando Excellon."
  10284. #: flatcamTools/ToolPcbWizard.py:452
  10285. msgid "[ERROR_NOTCL] Import Excellon file failed."
  10286. msgstr "[ERROR_NOTCL] Falha na importação do arquivo Excellon."
  10287. #: flatcamTools/ToolPcbWizard.py:459
  10288. #, python-format
  10289. msgid "[success] Imported: %s"
  10290. msgstr "[success] Importado: %s"
  10291. #: flatcamTools/ToolPcbWizard.py:462
  10292. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  10293. msgstr ""
  10294. "[WARNING_NOTCL] A fusão do Excellon está em andamento. Por favor, espere..."
  10295. #: flatcamTools/ToolPcbWizard.py:464
  10296. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  10297. msgstr "[ERROR_NOTCL] O arquivo Excellon importado é None."
  10298. #: flatcamTools/ToolProperties.py:103
  10299. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  10300. msgstr ""
  10301. "[ERROR_NOTCL] A ferramenta de propriedades não foi exibida. Nenhum objeto "
  10302. "selecionado."
  10303. #: flatcamTools/ToolProperties.py:110
  10304. msgid "[success] Object Properties are displayed."
  10305. msgstr "[success] Propriedades do Objeto exibidas."
  10306. #: flatcamTools/ToolProperties.py:111
  10307. msgid "Properties Tool"
  10308. msgstr "Propriedades de Ferramenta"
  10309. #: flatcamTools/ToolShell.py:69
  10310. msgid "...proccessing..."
  10311. msgstr "...processando..."
  10312. #: flatcamTools/ToolShell.py:71
  10313. #, python-format
  10314. msgid "...proccessing... [%s]"
  10315. msgstr "...processando... [%s]"
  10316. #: flatcamTools/ToolSolderPaste.py:37
  10317. msgid "Solder Paste Tool"
  10318. msgstr "Pasta de Solda"
  10319. #: flatcamTools/ToolSolderPaste.py:65
  10320. msgid "Gerber Solder paste object. "
  10321. msgstr "Objeto Gerber de Pasta de Solda. "
  10322. #: flatcamTools/ToolSolderPaste.py:72
  10323. msgid ""
  10324. "Tools pool from which the algorithm\n"
  10325. "will pick the ones used for dispensing solder paste."
  10326. msgstr ""
  10327. "Conjunto de ferramentas a partir do qual o algoritmo selecionará as usadas "
  10328. "para distribuir pasta de solda."
  10329. #: flatcamTools/ToolSolderPaste.py:87
  10330. msgid ""
  10331. "This is the Tool Number.\n"
  10332. "The solder dispensing will start with the tool with the biggest \n"
  10333. "diameter, continuing until there are no more Nozzle tools.\n"
  10334. "If there are no longer tools but there are still pads not covered\n"
  10335. " with solder paste, the app will issue a warning message box."
  10336. msgstr ""
  10337. "Este é o número da ferramenta.\n"
  10338. "A colocação de pasta de solda começa com a ferramenta com o maior diâmetro,\n"
  10339. "continuando até que não haja mais ferramentas do bico.\n"
  10340. "Se não houver mais ferramentas, mas ainda houver blocos não cobertos\n"
  10341. "com pasta de solda, o aplicativo emitirá uma caixa de mensagem de aviso."
  10342. #: flatcamTools/ToolSolderPaste.py:94
  10343. msgid ""
  10344. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  10345. "is the width of the solder paste dispensed."
  10346. msgstr ""
  10347. "Diâmetro do bico da ferramenta. É o valor (em unidades FlatCAM atuais)\n"
  10348. "da largura da pasta de solda dispensada."
  10349. #: flatcamTools/ToolSolderPaste.py:101
  10350. msgid "New Nozzle Tool"
  10351. msgstr "Nova Ferramenta de Bico"
  10352. #: flatcamTools/ToolSolderPaste.py:117
  10353. msgid ""
  10354. "Add a new nozzle tool to the Tool Table\n"
  10355. "with the diameter specified above."
  10356. msgstr ""
  10357. "Adiciona uma nova ferramenta de bico à tabela de ferramentas\n"
  10358. "com o diâmetro especificado acima."
  10359. #: flatcamTools/ToolSolderPaste.py:129
  10360. msgid "Generate solder paste dispensing geometry."
  10361. msgstr "Gerar geometria de distribuição de pasta de solda."
  10362. #: flatcamTools/ToolSolderPaste.py:142
  10363. msgid "STEP 1:"
  10364. msgstr "PASSO 1:"
  10365. #: flatcamTools/ToolSolderPaste.py:144
  10366. msgid ""
  10367. "First step is to select a number of nozzle tools for usage\n"
  10368. "and then optionally modify the GCode parameters bellow."
  10369. msgstr ""
  10370. "O primeiro passo é selecionar um número de ferramentas de bico para usar,\n"
  10371. "e opcionalmente, modificar os parâmetros do G-Code abaixo."
  10372. #: flatcamTools/ToolSolderPaste.py:147
  10373. msgid ""
  10374. "Select tools.\n"
  10375. "Modify parameters."
  10376. msgstr ""
  10377. "Selecione ferramentas.\n"
  10378. "Modifique os parâmetros."
  10379. #: flatcamTools/ToolSolderPaste.py:235
  10380. msgid ""
  10381. "Feedrate (speed) while moving up vertically\n"
  10382. " to Dispense position (on Z plane)."
  10383. msgstr ""
  10384. "Avanço (velocidade) enquanto sobe verticalmente\n"
  10385. "para a posição Dispensar (no plano Z)."
  10386. #: flatcamTools/ToolSolderPaste.py:289
  10387. msgid "Generate GCode"
  10388. msgstr "Gerar o G-Code"
  10389. #: flatcamTools/ToolSolderPaste.py:291
  10390. msgid ""
  10391. "Generate GCode for Solder Paste dispensing\n"
  10392. "on PCB pads."
  10393. msgstr ""
  10394. "Gera o G-Code para dispensar pasta de solda\n"
  10395. "nos pads de PCB."
  10396. #: flatcamTools/ToolSolderPaste.py:306
  10397. msgid "STEP 2:"
  10398. msgstr "PASSO 2:"
  10399. #: flatcamTools/ToolSolderPaste.py:308
  10400. msgid ""
  10401. "Second step is to create a solder paste dispensing\n"
  10402. "geometry out of an Solder Paste Mask Gerber file."
  10403. msgstr ""
  10404. "O segundo passo é criar uma geometria de distribuição de pasta de solda\n"
  10405. "de um arquivo Gerber Máscara de Pasta de Solda."
  10406. #: flatcamTools/ToolSolderPaste.py:324
  10407. msgid "Geo Result:"
  10408. msgstr "Geo Result:"
  10409. #: flatcamTools/ToolSolderPaste.py:326
  10410. msgid ""
  10411. "Geometry Solder Paste object.\n"
  10412. "The name of the object has to end in:\n"
  10413. "'_solderpaste' as a protection."
  10414. msgstr ""
  10415. "Objeto de Geometria Pasta de Solda.\n"
  10416. "Como proteção, o nome do objeto deve terminar com: \n"
  10417. "'_solderpaste'."
  10418. #: flatcamTools/ToolSolderPaste.py:335
  10419. msgid "STEP 3:"
  10420. msgstr "PASSO 3:"
  10421. #: flatcamTools/ToolSolderPaste.py:337
  10422. msgid ""
  10423. "Third step is to select a solder paste dispensing geometry,\n"
  10424. "and then generate a CNCJob object.\n"
  10425. "\n"
  10426. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10427. "first you need to generate a geometry with those new params,\n"
  10428. "and only after that you can generate an updated CNCJob."
  10429. msgstr ""
  10430. "O terceiro passo é selecionar uma geometria dispensadora de pasta de solda,\n"
  10431. "e então gerar um objeto de Trabalho CNC.\n"
  10432. "\n"
  10433. "LEMBRE: se você quiser criar um Trabalho CNC com novos parâmetros,\n"
  10434. " primeiro você precisa gerar uma geometria com esses novos parâmetros,\n"
  10435. "e só depois disso você pode gerar um Trabalho CNC atualizado."
  10436. #: flatcamTools/ToolSolderPaste.py:357
  10437. msgid "CNC Result:"
  10438. msgstr "Resultado CNC:"
  10439. #: flatcamTools/ToolSolderPaste.py:359
  10440. msgid ""
  10441. "CNCJob Solder paste object.\n"
  10442. "In order to enable the GCode save section,\n"
  10443. "the name of the object has to end in:\n"
  10444. "'_solderpaste' as a protection."
  10445. msgstr ""
  10446. "Objeto Trabalho CNC Pasta de Solda.\n"
  10447. "Como proteção, para habilitar a seção de salvar o G-Code,\n"
  10448. "o nome do objeto tem que terminar com:\n"
  10449. "'_solderpaste'."
  10450. #: flatcamTools/ToolSolderPaste.py:369
  10451. msgid "View GCode"
  10452. msgstr "Ver G-Code"
  10453. #: flatcamTools/ToolSolderPaste.py:371
  10454. msgid ""
  10455. "View the generated GCode for Solder Paste dispensing\n"
  10456. "on PCB pads."
  10457. msgstr ""
  10458. "Ver o G-Code gerado para dispensação de pasta de solda\n"
  10459. "nos pads de PCB."
  10460. #: flatcamTools/ToolSolderPaste.py:375
  10461. msgid "Save GCode"
  10462. msgstr "Salvar o G-Code"
  10463. #: flatcamTools/ToolSolderPaste.py:377
  10464. msgid ""
  10465. "Save the generated GCode for Solder Paste dispensing\n"
  10466. "on PCB pads, to a file."
  10467. msgstr ""
  10468. "Salva o G-Code gerado para distribuição de pasta de solda\n"
  10469. "nos pads de PCB, em um arquivo."
  10470. #: flatcamTools/ToolSolderPaste.py:381
  10471. msgid "STEP 4:"
  10472. msgstr "PASSO 4:"
  10473. #: flatcamTools/ToolSolderPaste.py:383
  10474. msgid ""
  10475. "Fourth step (and last) is to select a CNCJob made from \n"
  10476. "a solder paste dispensing geometry, and then view/save it's GCode."
  10477. msgstr ""
  10478. "O quarto (e último) passo é selecionar um Trabalho CNC feito de\n"
  10479. "uma geometria de distribuição de pasta de solda e, em seguida, visualizar/"
  10480. "salvar o G-Code."
  10481. #: flatcamTools/ToolSolderPaste.py:412
  10482. msgid "Delete Object"
  10483. msgstr "Excluir Objeto"
  10484. #: flatcamTools/ToolSolderPaste.py:788
  10485. msgid ""
  10486. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10487. msgstr ""
  10488. "[WARNING_NOTCL] Adição de ferramenta Bocal cancelada. Ferramenta já está na "
  10489. "Tabela de Ferramentas."
  10490. #: flatcamTools/ToolSolderPaste.py:793
  10491. msgid "[success] New Nozzle tool added to Tool Table."
  10492. msgstr "[success] Nova Ferramenta Bocal adicionada à tabela de ferramentas."
  10493. #: flatcamTools/ToolSolderPaste.py:835
  10494. msgid "[success] Nozzle tool from Tool Table was edited."
  10495. msgstr "[success] A ferramenta do bocal da tabela de ferramentas foi editada."
  10496. #: flatcamTools/ToolSolderPaste.py:892
  10497. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10498. msgstr ""
  10499. "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta bico para excluir."
  10500. #: flatcamTools/ToolSolderPaste.py:897
  10501. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  10502. msgstr "[success] Ferramenta(s) de bico excluída(s) da tabela de ferramentas."
  10503. #: flatcamTools/ToolSolderPaste.py:952
  10504. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10505. msgstr ""
  10506. "[WARNING_NOTCL] Nenhum objeto Gerber de máscara de Pasta de Solda carregado."
  10507. #: flatcamTools/ToolSolderPaste.py:970
  10508. msgid "Creating Solder Paste dispensing geometry."
  10509. msgstr "Criação da geometria de distribuição da pasta de solda."
  10510. #: flatcamTools/ToolSolderPaste.py:982
  10511. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10512. msgstr "[WARNING_NOTCL] Nenhuma ferramenta de Bico na tabela de ferramentas."
  10513. #: flatcamTools/ToolSolderPaste.py:1111
  10514. msgid "[success] Solder Paste geometry generated successfully..."
  10515. msgstr "[success] Geometria da pasta de solda gerada com sucesso ..."
  10516. #: flatcamTools/ToolSolderPaste.py:1117
  10517. msgid ""
  10518. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10519. "diameters..."
  10520. msgstr ""
  10521. "[WARNING_NOTCL] Alguns ou todos os pads não possuem pasta de solda devido a "
  10522. "diâmetros inadequados dos bicos..."
  10523. #: flatcamTools/ToolSolderPaste.py:1131
  10524. msgid "Generating Solder Paste dispensing geometry..."
  10525. msgstr "Gerando geometria dispensadora de Pasta de Solda ..."
  10526. #: flatcamTools/ToolSolderPaste.py:1151
  10527. msgid "[WARNING_NOTCL] There is no Geometry object available."
  10528. msgstr "[WARNING_NOTCL] Não há objeto de Geometria disponível."
  10529. #: flatcamTools/ToolSolderPaste.py:1155
  10530. msgid ""
  10531. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10532. "geometry."
  10533. msgstr ""
  10534. "[WARNING_NOTCL] Esta geometria não pode ser processada. NÃO é uma geometria "
  10535. "solder_paste_tool."
  10536. #: flatcamTools/ToolSolderPaste.py:1261
  10537. #, python-format
  10538. msgid "[success] ToolSolderPaste CNCjob created: %s"
  10539. msgstr "[success] Trabalho CNC para Ferramenta de Pasta de Solda criado: %s"
  10540. #: flatcamTools/ToolSolderPaste.py:1293 flatcamTools/ToolSolderPaste.py:1297
  10541. #: flatcamTools/ToolSolderPaste.py:1349
  10542. msgid ""
  10543. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10544. "solder_paste_tool CNCJob object."
  10545. msgstr ""
  10546. "[WARNING_NOTCL] Este objeto Trabalho CNC não pode ser processado. NÃO é um "
  10547. "objeto solder_paste_tool."
  10548. #: flatcamTools/ToolSolderPaste.py:1321
  10549. msgid "[ERROR_NOTCL] No Gcode in the object..."
  10550. msgstr "[ERROR_NOTCL] Nenhum G-Code no objeto ..."
  10551. #: flatcamTools/ToolSolderPaste.py:1330
  10552. #, python-format
  10553. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10554. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10555. #: flatcamTools/ToolSolderPaste.py:1359
  10556. msgid "Export GCode ..."
  10557. msgstr "Exportar G-Code ..."
  10558. #: flatcamTools/ToolSolderPaste.py:1399
  10559. #, python-format
  10560. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  10561. msgstr ""
  10562. "[success] Arquivo G-Code com dispensador de pasta de solda salvo em: %s"
  10563. #: flatcamTools/ToolSub.py:55
  10564. msgid "<b>Gerber Objects</b>"
  10565. msgstr "<b>Objetos Gerber</b>"
  10566. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  10567. msgid "Target:"
  10568. msgstr "Alvo:"
  10569. #: flatcamTools/ToolSub.py:66
  10570. msgid ""
  10571. "Gerber object from which to substract\n"
  10572. "the substractor Gerber object."
  10573. msgstr ""
  10574. "Objeto Gerber do qual subtrair\n"
  10575. "o objeto Gerber substrator."
  10576. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  10577. msgid "Substractor:"
  10578. msgstr "Substrator:"
  10579. #: flatcamTools/ToolSub.py:80
  10580. msgid ""
  10581. "Gerber object that will be substracted\n"
  10582. "from the target Gerber object."
  10583. msgstr ""
  10584. "Objeto Gerber que será subtraído\n"
  10585. "do objeto Gerber de destino."
  10586. #: flatcamTools/ToolSub.py:87
  10587. msgid "Substract Gerber"
  10588. msgstr "Gerber Substrator"
  10589. #: flatcamTools/ToolSub.py:89
  10590. msgid ""
  10591. "Will remove the area occupied by the substractor\n"
  10592. "Gerber from the Target Gerber.\n"
  10593. "Can be used to remove the overlapping silkscreen\n"
  10594. "over the soldermask."
  10595. msgstr ""
  10596. "Removerá a área ocupada pelo Gerber substrator\n"
  10597. "do Gerber de destino.\n"
  10598. "Pode ser usado para remover a serigrafia sobreposta\n"
  10599. "sobre a máscara de solda."
  10600. #: flatcamTools/ToolSub.py:101
  10601. msgid "<b>Geometry Objects</b>"
  10602. msgstr "<b>Objetos de Geometria</b>"
  10603. #: flatcamTools/ToolSub.py:112
  10604. msgid ""
  10605. "Geometry object from which to substract\n"
  10606. "the substractor Geometry object."
  10607. msgstr ""
  10608. "Objeto de geometria a partir do qual subtrair\n"
  10609. "o objeto de geometria do substrator."
  10610. #: flatcamTools/ToolSub.py:126
  10611. msgid ""
  10612. "Geometry object that will be substracted\n"
  10613. "from the target Geometry object."
  10614. msgstr ""
  10615. "Objeto de geometria que será subtraído\n"
  10616. "do objeto de geometria de destino."
  10617. #: flatcamTools/ToolSub.py:133
  10618. msgid "Substract Geometry"
  10619. msgstr "Geometria Substrator"
  10620. #: flatcamTools/ToolSub.py:135
  10621. msgid ""
  10622. "Will remove the area occupied by the substractor\n"
  10623. "Geometry from the Target Geometry."
  10624. msgstr ""
  10625. "Removerá a área ocupada pela geometria substrator\n"
  10626. "da Geometria de destino."
  10627. #: flatcamTools/ToolSub.py:216
  10628. msgid "Sub Tool"
  10629. msgstr "Ferramenta Sub"
  10630. #: flatcamTools/ToolSub.py:231 flatcamTools/ToolSub.py:424
  10631. msgid "[ERROR_NOTCL] No Target object loaded."
  10632. msgstr "[ERROR_NOTCL] Nenhum objeto de destino foi carregado."
  10633. #: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:437
  10634. msgid "[ERROR_NOTCL] No Substractor object loaded."
  10635. msgstr "[ERROR_NOTCL] Nenhum objeto Substrator carregado."
  10636. #: flatcamTools/ToolSub.py:297
  10637. #, python-format
  10638. msgid "Parsing aperture %s geometry ..."
  10639. msgstr "Analisando a geometria de abertura %s ..."
  10640. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:544
  10641. msgid "Generating new object ..."
  10642. msgstr "Gerando novo objeto ..."
  10643. #: flatcamTools/ToolSub.py:402 flatcamTools/ToolSub.py:547
  10644. msgid "[ERROR_NOTCL] Generating new object failed."
  10645. msgstr "[ERROR_NOTCL] A geração de novo objeto falhou."
  10646. #: flatcamTools/ToolSub.py:406 flatcamTools/ToolSub.py:552
  10647. #, python-format
  10648. msgid "[success] Created: %s"
  10649. msgstr "[success] Criado: %s"
  10650. #: flatcamTools/ToolSub.py:449
  10651. msgid ""
  10652. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10653. msgstr ""
  10654. "[ERROR_NOTCL] Atualmente, a geometria do Substrator não pode ser do tipo "
  10655. "MultiGeo."
  10656. #: flatcamTools/ToolSub.py:494
  10657. msgid "Parsing solid_geometry ..."
  10658. msgstr "Analisando solid_geometry ..."
  10659. #: flatcamTools/ToolSub.py:496
  10660. #, python-format
  10661. msgid "Parsing tool %s geometry ..."
  10662. msgstr "Analisando a geometria da ferramenta %s ..."
  10663. #: flatcamTools/ToolTransform.py:23
  10664. msgid "Object Transform"
  10665. msgstr "Transformação de Objeto"
  10666. #: flatcamTools/ToolTransform.py:84
  10667. msgid ""
  10668. "Rotate the selected object(s).\n"
  10669. "The point of reference is the middle of\n"
  10670. "the bounding box for all selected objects."
  10671. msgstr ""
  10672. "Gira o(s) objeto(s) selecionado(s).\n"
  10673. "O ponto de referência é o meio da\n"
  10674. "caixa delimitadora para todos os objetos selecionados."
  10675. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10676. msgid ""
  10677. "Skew/shear the selected object(s).\n"
  10678. "The point of reference is the middle of\n"
  10679. "the bounding box for all selected objects."
  10680. msgstr ""
  10681. "Inclinar/distorcer o(s) objeto(s) selecionado(s).\n"
  10682. "O ponto de referência é o meio da\n"
  10683. "caixa delimitadora para todos os objetos selecionados."
  10684. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10685. msgid ""
  10686. "Scale the selected object(s).\n"
  10687. "The point of reference depends on \n"
  10688. "the Scale reference checkbox state."
  10689. msgstr ""
  10690. "Redimensiona o(s) objeto(s) selecionado(s).\n"
  10691. "O ponto de referência depende\n"
  10692. "do estado da caixa de seleção Escala de referência."
  10693. #: flatcamTools/ToolTransform.py:202
  10694. msgid ""
  10695. "Scale the selected object(s)\n"
  10696. "using the Scale Factor X for both axis."
  10697. msgstr ""
  10698. "Redimensiona o(s) objeto(s) selecionado(s) usando o\n"
  10699. "Fator de Escala X para ambos os eixos."
  10700. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  10701. msgid ""
  10702. "Offset the selected object(s).\n"
  10703. "The point of reference is the middle of\n"
  10704. "the bounding box for all selected objects.\n"
  10705. msgstr ""
  10706. "Desloca o(s) objeto(s) selecionado(s).\n"
  10707. "O ponto de referência é o meio da\n"
  10708. "caixa delimitadora para todos os objetos selecionados.\n"
  10709. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  10710. msgid ""
  10711. "Flip the selected object(s) over the X axis.\n"
  10712. "Does not create a new object.\n"
  10713. " "
  10714. msgstr ""
  10715. "Espelha o(s) objeto(s) selecionado(s) no eixo X.\n"
  10716. "Não cria um novo objeto.\n"
  10717. " "
  10718. #: flatcamTools/ToolTransform.py:636
  10719. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10720. msgstr ""
  10721. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10722. "para girar!"
  10723. #: flatcamTools/ToolTransform.py:664
  10724. msgid "CNCJob objects can't be rotated."
  10725. msgstr "Objetos Trabalho CNC não podem ser girados."
  10726. #: flatcamTools/ToolTransform.py:672
  10727. msgid "[success] Rotate done ..."
  10728. msgstr "[success] Giro pronto ..."
  10729. #: flatcamTools/ToolTransform.py:687
  10730. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10731. msgstr ""
  10732. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10733. "para espelhar!"
  10734. #: flatcamTools/ToolTransform.py:722
  10735. msgid "CNCJob objects can't be mirrored/flipped."
  10736. msgstr "Objetos Trabalho CNC não podem ser espelhados/invertidos."
  10737. #: flatcamTools/ToolTransform.py:756
  10738. msgid ""
  10739. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10740. msgstr ""
  10741. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10742. "para inclinar!"
  10743. #: flatcamTools/ToolTransform.py:778
  10744. msgid "CNCJob objects can't be skewed."
  10745. msgstr "Objetos Trabalho CNC não podem ser inclinados."
  10746. #: flatcamTools/ToolTransform.py:805
  10747. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10748. msgstr ""
  10749. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10750. "para redimensionar!"
  10751. #: flatcamTools/ToolTransform.py:838
  10752. msgid "CNCJob objects can't be scaled."
  10753. msgstr "Objetos Trabalho CNC não podem ser redimensionados."
  10754. #: flatcamTools/ToolTransform.py:857
  10755. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10756. msgstr ""
  10757. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10758. "para deslocar!"
  10759. #: flatcamTools/ToolTransform.py:866
  10760. msgid "CNCJob objects can't be offseted."
  10761. msgstr "Objetos Trabalho CNC não podem ser deslocados."
  10762. #~ msgid "Tool dia: "
  10763. #~ msgstr "Diâmetro da Ferramenta "
  10764. #~ msgid ""
  10765. #~ "The diameter of the cutting\n"
  10766. #~ "tool.."
  10767. #~ msgstr ""
  10768. #~ "Diâmetro da ferramenta de\n"
  10769. #~ "corte.."
  10770. #~ msgid "Disable"
  10771. #~ msgstr "Desabilitar"
  10772. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  10773. #~ msgstr "[WARNING_NOTCL] Mover cancelado. Nenhuma forma selecionada."
  10774. #~ msgid "Click on the Destination point..."
  10775. #~ msgstr "Clique no ponto de Destino..."
  10776. #~ msgid "Copy as &Geom"
  10777. #~ msgstr "Copiar como &Geom"
  10778. #~ msgid "Ap. Scale Factor:"
  10779. #~ msgstr "Ap. Fator de Escala:"
  10780. #~ msgid ""
  10781. #~ "Change the size of the selected apertures.\n"
  10782. #~ "Factor by which to multiply\n"
  10783. #~ "geometric features of this object."
  10784. #~ msgstr ""
  10785. #~ "Altera o tamanho da abertura selecionada.\n"
  10786. #~ "Fator para multiplicar a\n"
  10787. #~ "geometria do objeto."
  10788. #~ msgid "Ap. Buffer Factor:"
  10789. #~ msgstr "Ap. Fator Buffer:"
  10790. #~ msgid ""
  10791. #~ "Change the size of the selected apertures.\n"
  10792. #~ "Factor by which to expand/shrink\n"
  10793. #~ "geometric features of this object."
  10794. #~ msgstr ""
  10795. #~ "Altera o tamanho da abertura selecionada.\n"
  10796. #~ "Fator para expandir/inclinar a\n"
  10797. #~ "geometria do objeto."
  10798. #~ msgid "[WARNING]No object Box. Using instead %s"
  10799. #~ msgstr "[WARNING]Sem Caixa de objeto. Usando %s"
  10800. #~ msgid "Path"
  10801. #~ msgstr "Caminho"
  10802. #~ msgid "In"
  10803. #~ msgstr "Dentro"
  10804. #~ msgid "Out"
  10805. #~ msgstr "Fora"
  10806. #~ msgid "Custom"
  10807. #~ msgstr "Personalizado"
  10808. #~ msgid "Copy Drill(s)"
  10809. #~ msgstr "Copiar Broca(s)"
  10810. #~ msgid "CTRL"
  10811. #~ msgstr "CTRL"
  10812. #~ msgid "SHIFT"
  10813. #~ msgstr "SHIFT"
  10814. #~ msgid "Both"
  10815. #~ msgstr "Ambos"
  10816. #~ msgid "Pos"
  10817. #~ msgstr "Pos"
  10818. #~ msgid "Neg"
  10819. #~ msgstr "Neg"
  10820. #~ msgid "Solid "
  10821. #~ msgstr "Sólido "
  10822. #~ msgid "M-Color "
  10823. #~ msgstr "M-Cores "
  10824. #~ msgid "Done."
  10825. #~ msgstr "Pronto."
  10826. #~ msgid "Click on CENTER ..."
  10827. #~ msgstr "Clique no CENTRO ..."
  10828. #~ msgid "[success] Done. Region completed."
  10829. #~ msgstr "[success] Pronto. Região completa."
  10830. #~ msgid "Add an aperture to the aperture list"
  10831. #~ msgstr "Adicionar uma abertura à lista"
  10832. #~ msgid "Del Aperture:"
  10833. #~ msgstr "Excluir Abertura:"
  10834. #~ msgid ""
  10835. #~ "Delete a aperture in the aperture list.\n"
  10836. #~ "It will delete also the associated geometry."
  10837. #~ msgstr ""
  10838. #~ "Excluir uma abertura da lista.\n"
  10839. #~ "Excluirá a geometria associada."
  10840. #~ msgid "Save && Close Edit"
  10841. #~ msgstr "Salvar && Sair do Editor"
  10842. #~ msgid ""
  10843. #~ "<b>Editor Shortcut list</b><br>\n"
  10844. #~ " <br>\n"
  10845. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  10846. #~ "strong><br>\n"
  10847. #~ " \n"
  10848. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10849. #~ "\"width:283px\">\n"
  10850. #~ " <tbody>\n"
  10851. #~ " <tr height=\"20\">\n"
  10852. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10853. #~ "strong></td>\n"
  10854. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  10855. #~ " </tr>\n"
  10856. #~ " <tr height=\"20\">\n"
  10857. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  10858. #~ " <td>&nbsp;Buffer Tool</td>\n"
  10859. #~ " </tr>\n"
  10860. #~ " <tr height=\"20\">\n"
  10861. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  10862. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  10863. #~ " </tr>\n"
  10864. #~ " <tr height=\"20\">\n"
  10865. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  10866. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  10867. #~ " </tr>\n"
  10868. #~ " <tr height=\"20\">\n"
  10869. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  10870. #~ " <td>&nbsp;Paint Tool</td>\n"
  10871. #~ " </tr>\n"
  10872. #~ " <tr height=\"20\">\n"
  10873. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  10874. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  10875. #~ " </tr>\n"
  10876. #~ " <tr height=\"20\">\n"
  10877. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  10878. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  10879. #~ " </tr>\n"
  10880. #~ " <tr height=\"20\">\n"
  10881. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  10882. #~ " <td>&nbsp;Move Geo Item</td>\n"
  10883. #~ " </tr>\n"
  10884. #~ " <tr height=\"20\">\n"
  10885. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  10886. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  10887. #~ " </tr>\n"
  10888. #~ " <tr height=\"20\">\n"
  10889. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  10890. #~ " <td>&nbsp;Draw a Circle</td>\n"
  10891. #~ " </tr>\n"
  10892. #~ " <tr height=\"20\">\n"
  10893. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  10894. #~ " <td>&nbsp;Draw a Path</td>\n"
  10895. #~ " </tr>\n"
  10896. #~ " <tr height=\"20\">\n"
  10897. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  10898. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  10899. #~ " </tr>\n"
  10900. #~ " <tr height=\"20\">\n"
  10901. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  10902. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  10903. #~ " </tr>\n"
  10904. #~ " <tr height=\"20\">\n"
  10905. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  10906. #~ " <td>&nbsp;Add Text Tool</td>\n"
  10907. #~ " </tr>\n"
  10908. #~ " <tr height=\"20\">\n"
  10909. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  10910. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  10911. #~ " </tr>\n"
  10912. #~ " <tr height=\"20\">\n"
  10913. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  10914. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  10915. #~ " </tr>\n"
  10916. #~ " <tr height=\"20\">\n"
  10917. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  10918. #~ " <td>&nbsp;Flip 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>SHIFT+X</strong></td>\n"
  10926. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  10927. #~ " </tr>\n"
  10928. #~ " <tr height=\"20\">\n"
  10929. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  10930. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  10931. #~ " </tr>\n"
  10932. #~ " <tr height=\"20\">\n"
  10933. #~ " <td height=\"20\">&nbsp;</td>\n"
  10934. #~ " <td>&nbsp;</td>\n"
  10935. #~ " </tr>\n"
  10936. #~ " <tr height=\"20\">\n"
  10937. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  10938. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  10939. #~ " </tr>\n"
  10940. #~ " <tr height=\"20\">\n"
  10941. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  10942. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  10943. #~ " </tr>\n"
  10944. #~ " <tr height=\"20\">\n"
  10945. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  10946. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  10947. #~ " </tr>\n"
  10948. #~ " <tr height=\"20\">\n"
  10949. #~ " <td height=\"20\">&nbsp;</td>\n"
  10950. #~ " <td>&nbsp;</td>\n"
  10951. #~ " </tr>\n"
  10952. #~ " <tr height=\"20\">\n"
  10953. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  10954. #~ " <td>&nbsp;Measurement Tool</td>\n"
  10955. #~ " </tr>\n"
  10956. #~ " <tr height=\"20\">\n"
  10957. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  10958. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  10959. #~ " </tr>\n"
  10960. #~ " <tr height=\"20\">\n"
  10961. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  10962. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  10963. #~ " </tr>\n"
  10964. #~ " <tr height=\"20\">\n"
  10965. #~ " <td height=\"20\">&nbsp;</td>\n"
  10966. #~ " <td>&nbsp;</td>\n"
  10967. #~ " </tr>\n"
  10968. #~ " <tr height=\"20\">\n"
  10969. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  10970. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  10971. #~ " </tr>\n"
  10972. #~ " <tr height=\"20\">\n"
  10973. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  10974. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  10975. #~ " </tr>\n"
  10976. #~ " <tr height=\"20\">\n"
  10977. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  10978. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  10979. #~ " </tr>\n"
  10980. #~ " <tr height=\"20\">\n"
  10981. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  10982. #~ " <td>&nbsp;Delete Shape</td>\n"
  10983. #~ " </tr>\n"
  10984. #~ " </tbody>\n"
  10985. #~ " </table>\n"
  10986. #~ " <br>\n"
  10987. #~ " <br>\n"
  10988. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  10989. #~ "strong><br>\n"
  10990. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  10991. #~ "\"width:283px\">\n"
  10992. #~ " <tbody>\n"
  10993. #~ " <tr height=\"20\">\n"
  10994. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  10995. #~ "strong></td>\n"
  10996. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  10997. #~ " </tr>\n"
  10998. #~ " <tr height=\"20\">\n"
  10999. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11000. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11001. #~ " </tr>\n"
  11002. #~ " <tr height=\"20\">\n"
  11003. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11004. #~ " <td>&nbsp;Add Drill</td>\n"
  11005. #~ " </tr>\n"
  11006. #~ " <tr height=\"20\">\n"
  11007. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11008. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11009. #~ " </tr>\n"
  11010. #~ " <tr height=\"20\">\n"
  11011. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11012. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11013. #~ " </tr>\n"
  11014. #~ " <tr height=\"20\">\n"
  11015. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11016. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11017. #~ " </tr>\n"
  11018. #~ " <tr height=\"20\">\n"
  11019. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11020. #~ " <td>&nbsp;Add a new Tool</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>Del</strong></td>\n"
  11028. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11029. #~ " </tr>\n"
  11030. #~ " <tr height=\"20\">\n"
  11031. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11032. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11033. #~ " </tr>\n"
  11034. #~ " <tr height=\"20\">\n"
  11035. #~ " <td height=\"20\">&nbsp;</td>\n"
  11036. #~ " <td>&nbsp;</td>\n"
  11037. #~ " </tr>\n"
  11038. #~ " <tr height=\"20\">\n"
  11039. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11040. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11041. #~ " </tr>\n"
  11042. #~ " <tr height=\"20\">\n"
  11043. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11044. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11045. #~ " </tr>\n"
  11046. #~ " </tbody>\n"
  11047. #~ " </table>\n"
  11048. #~ " "
  11049. #~ msgstr ""
  11050. #~ "<b>Lista de Atalhos dos Editores</b><br>\n"
  11051. #~ " <br>\n"
  11052. #~ " <strong><span style=\"color:#0000ff\">EDITOR GEOMETRIA</"
  11053. #~ "span></strong><br>\n"
  11054. #~ " \n"
  11055. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11056. #~ "\"width:283px\">\n"
  11057. #~ " <tbody>\n"
  11058. #~ " <tr height=\"20\">\n"
  11059. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11060. #~ "strong></td>\n"
  11061. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  11062. #~ " </tr>\n"
  11063. #~ " <tr height=\"20\">\n"
  11064. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  11065. #~ " <td>&nbsp;Buffer Tool</td>\n"
  11066. #~ " </tr>\n"
  11067. #~ " <tr height=\"20\">\n"
  11068. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11069. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  11070. #~ " </tr>\n"
  11071. #~ " <tr height=\"20\">\n"
  11072. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  11073. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  11074. #~ " </tr>\n"
  11075. #~ " <tr height=\"20\">\n"
  11076. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  11077. #~ " <td>&nbsp;Paint Tool</td>\n"
  11078. #~ " </tr>\n"
  11079. #~ " <tr height=\"20\">\n"
  11080. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11081. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11082. #~ " </tr>\n"
  11083. #~ " <tr height=\"20\">\n"
  11084. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  11085. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  11086. #~ " </tr>\n"
  11087. #~ " <tr height=\"20\">\n"
  11088. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11089. #~ " <td>&nbsp;Move Geo Item</td>\n"
  11090. #~ " </tr>\n"
  11091. #~ " <tr height=\"20\">\n"
  11092. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  11093. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  11094. #~ " </tr>\n"
  11095. #~ " <tr height=\"20\">\n"
  11096. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  11097. #~ " <td>&nbsp;Draw a Circle</td>\n"
  11098. #~ " </tr>\n"
  11099. #~ " <tr height=\"20\">\n"
  11100. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  11101. #~ " <td>&nbsp;Draw a Path</td>\n"
  11102. #~ " </tr>\n"
  11103. #~ " <tr height=\"20\">\n"
  11104. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11105. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  11106. #~ " </tr>\n"
  11107. #~ " <tr height=\"20\">\n"
  11108. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  11109. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  11110. #~ " </tr>\n"
  11111. #~ " <tr height=\"20\">\n"
  11112. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11113. #~ " <td>&nbsp;Add Text Tool</td>\n"
  11114. #~ " </tr>\n"
  11115. #~ " <tr height=\"20\">\n"
  11116. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  11117. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  11118. #~ " </tr>\n"
  11119. #~ " <tr height=\"20\">\n"
  11120. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  11121. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  11122. #~ " </tr>\n"
  11123. #~ " <tr height=\"20\">\n"
  11124. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  11125. #~ " <td>&nbsp;Flip 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>SHIFT+X</strong></td>\n"
  11133. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  11134. #~ " </tr>\n"
  11135. #~ " <tr height=\"20\">\n"
  11136. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  11137. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  11138. #~ " </tr>\n"
  11139. #~ " <tr height=\"20\">\n"
  11140. #~ " <td height=\"20\">&nbsp;</td>\n"
  11141. #~ " <td>&nbsp;</td>\n"
  11142. #~ " </tr>\n"
  11143. #~ " <tr height=\"20\">\n"
  11144. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  11145. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  11146. #~ " </tr>\n"
  11147. #~ " <tr height=\"20\">\n"
  11148. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  11149. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  11150. #~ " </tr>\n"
  11151. #~ " <tr height=\"20\">\n"
  11152. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  11153. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  11154. #~ " </tr>\n"
  11155. #~ " <tr height=\"20\">\n"
  11156. #~ " <td height=\"20\">&nbsp;</td>\n"
  11157. #~ " <td>&nbsp;</td>\n"
  11158. #~ " </tr>\n"
  11159. #~ " <tr height=\"20\">\n"
  11160. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  11161. #~ " <td>&nbsp;Measurement Tool</td>\n"
  11162. #~ " </tr>\n"
  11163. #~ " <tr height=\"20\">\n"
  11164. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11165. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11166. #~ " </tr>\n"
  11167. #~ " <tr height=\"20\">\n"
  11168. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  11169. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  11170. #~ " </tr>\n"
  11171. #~ " <tr height=\"20\">\n"
  11172. #~ " <td height=\"20\">&nbsp;</td>\n"
  11173. #~ " <td>&nbsp;</td>\n"
  11174. #~ " </tr>\n"
  11175. #~ " <tr height=\"20\">\n"
  11176. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  11177. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  11178. #~ " </tr>\n"
  11179. #~ " <tr height=\"20\">\n"
  11180. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  11181. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  11182. #~ " </tr>\n"
  11183. #~ " <tr height=\"20\">\n"
  11184. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11185. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11186. #~ " </tr>\n"
  11187. #~ " <tr height=\"20\">\n"
  11188. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11189. #~ " <td>&nbsp;Delete Shape</td>\n"
  11190. #~ " </tr>\n"
  11191. #~ " </tbody>\n"
  11192. #~ " </table>\n"
  11193. #~ " <br>\n"
  11194. #~ " <br>\n"
  11195. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  11196. #~ "strong><br>\n"
  11197. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11198. #~ "\"width:283px\">\n"
  11199. #~ " <tbody>\n"
  11200. #~ " <tr height=\"20\">\n"
  11201. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11202. #~ "strong></td>\n"
  11203. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  11204. #~ " </tr>\n"
  11205. #~ " <tr height=\"20\">\n"
  11206. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11207. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11208. #~ " </tr>\n"
  11209. #~ " <tr height=\"20\">\n"
  11210. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11211. #~ " <td>&nbsp;Add Drill</td>\n"
  11212. #~ " </tr>\n"
  11213. #~ " <tr height=\"20\">\n"
  11214. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11215. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11216. #~ " </tr>\n"
  11217. #~ " <tr height=\"20\">\n"
  11218. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11219. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11220. #~ " </tr>\n"
  11221. #~ " <tr height=\"20\">\n"
  11222. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11223. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11224. #~ " </tr>\n"
  11225. #~ " <tr height=\"20\">\n"
  11226. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11227. #~ " <td>&nbsp;Add a new Tool</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>Del</strong></td>\n"
  11235. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11236. #~ " </tr>\n"
  11237. #~ " <tr height=\"20\">\n"
  11238. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11239. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11240. #~ " </tr>\n"
  11241. #~ " <tr height=\"20\">\n"
  11242. #~ " <td height=\"20\">&nbsp;</td>\n"
  11243. #~ " <td>&nbsp;</td>\n"
  11244. #~ " </tr>\n"
  11245. #~ " <tr height=\"20\">\n"
  11246. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11247. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11248. #~ " </tr>\n"
  11249. #~ " <tr height=\"20\">\n"
  11250. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11251. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11252. #~ " </tr>\n"
  11253. #~ " </tbody>\n"
  11254. #~ " </table>\n"
  11255. #~ " "
  11256. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  11257. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  11258. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  11259. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  11260. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  11261. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  11262. #~ msgid ""
  11263. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11264. #~ msgstr ""
  11265. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11266. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  11267. #~ msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  11268. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11269. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11270. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11271. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11272. #~ msgid "[success] GUI settings deleted ..."
  11273. #~ msgstr "[success] GUI settings deleted ..."
  11274. #~ msgid "Scale Factor:"
  11275. #~ msgstr "Fator de Escala:"
  11276. #~ msgid "Buffer Factor:"
  11277. #~ msgstr "Fator Buffer:"
  11278. #~ msgid "<b>Generate new Gerber Object:</b>"
  11279. #~ msgstr "<b>Gerar novo objeto Gerber:</b>"
  11280. #~ msgid "Will generate a new Gerber object from the changed apertures."
  11281. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  11282. #~ msgid ""
  11283. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11284. #~ "This new object can then be isolated etc."
  11285. #~ msgstr ""
  11286. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11287. #~ "This new object can then be isolated etc."
  11288. #~ msgid "[success]Flip on the Y axis done ..."
  11289. #~ msgstr "[success]Espelhamento no eixo Y pronto ..."
  11290. #~ msgid "[success]Flip on the X axis done ..."
  11291. #~ msgstr "[success]Espelhamento no eixo X pronto ..."
  11292. #~ msgid "[success]Skew on the %s axis done ..."
  11293. #~ msgstr "[success]Inclinação no eixo %s axis pronta ..."
  11294. #~ msgid "[success]Offset on the %s axis done ..."
  11295. #~ msgstr "[success]Deslocamento no eixo %s axis pronto ..."
  11296. #~ msgid ""
  11297. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11298. #~ "Example:\n"
  11299. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11300. #~ "\n"
  11301. #~ "Adjust the value starting with lower values\n"
  11302. #~ "and increasing it if areas that should be painted are still \n"
  11303. #~ "not painted.\n"
  11304. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11305. #~ "Higher values = slow processing and slow execution on CNC\n"
  11306. #~ "due of too many paths."
  11307. #~ msgstr ""
  11308. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11309. #~ "Example:\n"
  11310. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11311. #~ "\n"
  11312. #~ "Adjust the value starting with lower values\n"
  11313. #~ "and increasing it if areas that should be painted are still \n"
  11314. #~ "not painted.\n"
  11315. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11316. #~ "Higher values = slow processing and slow execution on CNC\n"
  11317. #~ "due of too many paths."
  11318. #~| msgid "z_toolchange = Z coord for Toolchange"
  11319. #~ msgid "z_cut = Z coord for Toolchange"
  11320. #~ msgstr "z_cut = coord Z coord para o corte"
  11321. #~| msgid "z_toolchange = Z coord for Toolchange"
  11322. #~ msgid "z_move = Z coord for Toolchange"
  11323. #~ msgstr "z_move = coord Z para troca de ferramentas"
  11324. #~ msgid "%s/Project_%s"
  11325. #~ msgstr "%s/Projeto_%s"
  11326. #~ msgid "tool_tab"
  11327. #~ msgstr "tool_tab"