strings.po 467 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941
  1. #
  2. msgid ""
  3. msgstr ""
  4. "Project-Id-Version: \n"
  5. "POT-Creation-Date: 2019-08-23 22:56+0300\n"
  6. "PO-Revision-Date: 2019-08-23 23:04+0300\n"
  7. "Last-Translator: Carlos Stein <carlos.stein@gmail.com>\n"
  8. "Language-Team: \n"
  9. "Language: pt_BR\n"
  10. "MIME-Version: 1.0\n"
  11. "Content-Type: text/plain; charset=UTF-8\n"
  12. "Content-Transfer-Encoding: 8bit\n"
  13. "Generated-By: pygettext.py 1.5\n"
  14. "X-Generator: Poedit 2.2.3\n"
  15. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  16. "X-Poedit-Basepath: ../../..\n"
  17. "X-Poedit-SearchPath-0: .\n"
  18. "X-Poedit-SearchPathExcluded-0: build\n"
  19. "X-Poedit-SearchPathExcluded-1: doc\n"
  20. "X-Poedit-SearchPathExcluded-2: tests\n"
  21. #: FlatCAMApp.py:1053
  22. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  23. msgstr ""
  24. "[ERROR] Não foi possível encontrar os arquivos de idioma. Estão faltando as "
  25. "strings do aplicativo."
  26. #: FlatCAMApp.py:1587
  27. msgid "Detachable Tabs"
  28. msgstr "Abas destacáveis"
  29. #: FlatCAMApp.py:1977
  30. msgid ""
  31. "(Type help to get started)\n"
  32. "\n"
  33. msgstr ""
  34. "(Digite help para iniciar)\n"
  35. "\n"
  36. #: FlatCAMApp.py:2172 FlatCAMApp.py:6595
  37. msgid "New Project - Not saved"
  38. msgstr "Novo Projeto - Não salvo"
  39. #: FlatCAMApp.py:2205 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
  40. #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324
  41. msgid "Open cancelled."
  42. msgstr "Abrir cancelado."
  43. #: FlatCAMApp.py:2220
  44. msgid "Open Config file failed."
  45. msgstr "Falha em abrir o arquivo de Configuração."
  46. #: FlatCAMApp.py:2234
  47. msgid "Open Script file failed."
  48. msgstr "Falha em abrir o arquivo de Script."
  49. #: FlatCAMApp.py:2440
  50. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  51. msgstr ""
  52. "[WARNING_NOTCL] Selecione um Objeto Geometria, Gerber ou Excellon para "
  53. "editar."
  54. #: FlatCAMApp.py:2453
  55. msgid ""
  56. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo "
  57. "Geometry is not possible.\n"
  58. "Edit only one geometry at a time."
  59. msgstr ""
  60. "[WARNING_NOTCL] A edição simultânea de ferramentas geometria em uma "
  61. "Geometria MultiGeo não é possível. \n"
  62. "Edite apenas uma geometria por vez."
  63. #: FlatCAMApp.py:2507
  64. msgid "[WARNING_NOTCL] Editor is activated ..."
  65. msgstr "[WARNING_NOTCL] Editor está ativado ..."
  66. #: FlatCAMApp.py:2525
  67. msgid "Do you want to save the edited object?"
  68. msgstr "Você quer salvar o objeto editado?"
  69. #: FlatCAMApp.py:2526 flatcamGUI/FlatCAMGUI.py:1703
  70. msgid "Close Editor"
  71. msgstr "Fechar Editor"
  72. #: FlatCAMApp.py:2529 FlatCAMApp.py:3654 FlatCAMApp.py:5627 FlatCAMApp.py:6504
  73. #: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
  74. #: flatcamGUI/FlatCAMGUI.py:3945
  75. msgid "Yes"
  76. msgstr "Sim"
  77. #: FlatCAMApp.py:2530 FlatCAMApp.py:3655 FlatCAMApp.py:5628 FlatCAMApp.py:6505
  78. #: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
  79. #: flatcamGUI/FlatCAMGUI.py:3946 flatcamGUI/FlatCAMGUI.py:6372
  80. #: flatcamGUI/FlatCAMGUI.py:6702 flatcamTools/ToolNonCopperClear.py:145
  81. #: flatcamTools/ToolPaint.py:144
  82. msgid "No"
  83. msgstr "Não"
  84. #: FlatCAMApp.py:2531 FlatCAMApp.py:3656 FlatCAMApp.py:4176 FlatCAMApp.py:5163
  85. #: FlatCAMApp.py:6506
  86. msgid "Cancel"
  87. msgstr "Cancelar"
  88. #: FlatCAMApp.py:2558
  89. msgid "[WARNING] Object empty after edit."
  90. msgstr "[WARNING] Objeto vazio após a edição."
  91. #: FlatCAMApp.py:2580 FlatCAMApp.py:2599 FlatCAMApp.py:2611
  92. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  93. msgstr ""
  94. "[WARNING_NOTCL] Selecione um objeto Gerber, Geometria ou Excellon para "
  95. "atualizar."
  96. #: FlatCAMApp.py:2583
  97. #, python-format
  98. msgid "[selected] %s is updated, returning to App..."
  99. msgstr "[selected] %s está atualizado, retornando ao App ..."
  100. #: FlatCAMApp.py:2948
  101. msgid "[ERROR] Could not load defaults file."
  102. msgstr "[ERROR] Não foi possível carregar o arquivo com os padrões."
  103. #: FlatCAMApp.py:2960
  104. msgid "[ERROR] Failed to parse defaults file."
  105. msgstr "[ERROR] Falha ao analisar o arquivo com os padrões."
  106. #: FlatCAMApp.py:2981 FlatCAMApp.py:2985
  107. msgid "Import FlatCAM Preferences"
  108. msgstr "Importar Preferências do FlatCAM"
  109. #: FlatCAMApp.py:2991
  110. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  111. msgstr "[WARNING_NOTCL] Importação de preferências do FlatCAM cancelada."
  112. #: FlatCAMApp.py:2999 FlatCAMApp.py:3058 FlatCAMApp.py:3530
  113. msgid "[ERROR_NOTCL] Could not load defaults file."
  114. msgstr "[ERROR_NOTCL] Não foi possível carregar o arquivo com os padrões."
  115. #: FlatCAMApp.py:3007 FlatCAMApp.py:3539
  116. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  117. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo com os padrões."
  118. #: FlatCAMApp.py:3011
  119. #, python-format
  120. msgid "[success] Imported Defaults from %s"
  121. msgstr "[success] Padrões importados de %s"
  122. #: FlatCAMApp.py:3026 FlatCAMApp.py:3031
  123. msgid "Export FlatCAM Preferences"
  124. msgstr "Exportar preferências do FlatCAM"
  125. #: FlatCAMApp.py:3038
  126. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  127. msgstr "[WARNING_NOTCL] Exportação de preferências do FlatCAM cancelada."
  128. #: FlatCAMApp.py:3046 FlatCAMApp.py:4974 FlatCAMApp.py:7446 FlatCAMApp.py:7559
  129. #: FlatCAMApp.py:7682 FlatCAMApp.py:7739 FlatCAMApp.py:7852 FlatCAMApp.py:7977
  130. #: FlatCAMObj.py:5888 flatcamTools/ToolSolderPaste.py:1405
  131. msgid ""
  132. "[WARNING] Permission denied, saving not possible.\n"
  133. "Most likely another app is holding the file open and not accessible."
  134. msgstr ""
  135. "[WARNING] Permissão negada, não é possível salvar.\n"
  136. "É provável que outro aplicativo esteja mantendo o arquivo aberto e "
  137. "não acessível."
  138. #: FlatCAMApp.py:3077 FlatCAMApp.py:3584
  139. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  140. msgstr "[ERROR_NOTCL] Falha ao gravar os padrões no arquivo."
  141. #: FlatCAMApp.py:3137
  142. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  143. msgstr ""
  144. "[ERROR_NOTCL] Falha ao abrir o arquivo com lista de arquivos recentes para gravação."
  145. #: FlatCAMApp.py:3147
  146. msgid "[ERROR_NOTCL] Failed to open recent projects file for writing."
  147. msgstr ""
  148. "[ERROR_NOTCL] Falha ao abrir o arquivo com lista de projetos recentes para gravação."
  149. #: FlatCAMApp.py:3229 camlib.py:4501
  150. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  151. msgstr ""
  152. "[ERROR_NOTCL] Ocorreu um erro interno. Veja shell (linha de comando).\n"
  153. #: FlatCAMApp.py:3230
  154. #, python-brace-format
  155. msgid ""
  156. "Object ({kind}) failed because: {error} \n"
  157. "\n"
  158. msgstr ""
  159. "Objeto ({kind}) falhou porque: {error} \n"
  160. "\n"
  161. #: FlatCAMApp.py:3250
  162. msgid "Converting units to "
  163. msgstr "Convertendo unidades para "
  164. #: FlatCAMApp.py:3327 FlatCAMApp.py:3330 FlatCAMApp.py:3333 FlatCAMApp.py:3336
  165. #, python-brace-format
  166. msgid ""
  167. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  168. "span>"
  169. msgstr ""
  170. "[selected] {kind} criado/selecionado: <span style =\"color:{color};\">{name}"
  171. "</span>"
  172. #: FlatCAMApp.py:3432
  173. #, python-brace-format
  174. msgid ""
  175. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  176. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  177. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</"
  178. "B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu "
  179. "Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/"
  180. "flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done "
  181. "<a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</"
  182. "a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/"
  183. "downloads/\">here.</a><BR>"
  184. msgstr ""
  185. "<font size=8><B>FlatCAM</B></font><BR>Versão {version} {beta} ({date}) - "
  186. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  187. "<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B>Principais "
  188. "colaboradores:</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius "
  189. "Stanciu<BR>Matthieu Berthomé<BR>e muitos outros encontrados <a href = "
  190. "\"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED\">aqui.</"
  191. "a><BR><BR>O desenvolvimento é feito <a href = \"https://bitbucket.org/jpcgt/"
  192. "flatcam/src/Beta/\">aqui.</a><BR>Área de DOWNLOAD <a href = \"https://"
  193. "bitbucket.org/jpcgt/flatcam/downloads/\">aqui.</a><BR>"
  194. #: FlatCAMApp.py:3465
  195. msgid "Close"
  196. msgstr "Fechar"
  197. #: FlatCAMApp.py:3588
  198. msgid "[success] Defaults saved."
  199. msgstr "[success] Preferências salvas."
  200. #: FlatCAMApp.py:3612
  201. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  202. msgstr ""
  203. "[ERROR_NOTCL] Não foi possível carregar o arquivo de padrões de fábrica."
  204. #: FlatCAMApp.py:3621
  205. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  206. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo de padrões de fábrica."
  207. #: FlatCAMApp.py:3635
  208. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  209. msgstr "[ERROR_NOTCL] Falha ao gravar os padrões de fábrica no arquivo."
  210. #: FlatCAMApp.py:3639
  211. msgid "Factory defaults saved."
  212. msgstr "Padrões de fábrica salvos."
  213. #: FlatCAMApp.py:3644 flatcamGUI/FlatCAMGUI.py:3282
  214. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  215. msgstr ""
  216. "[WARNING_NOTCL] O aplicativo está salvando o projeto. Por favor, espere ..."
  217. #: FlatCAMApp.py:3649 FlatCAMTranslation.py:164
  218. msgid ""
  219. "There are files/objects modified in FlatCAM. \n"
  220. "Do you want to Save the project?"
  221. msgstr ""
  222. "Existem arquivos/objetos modificados no FlatCAM. \n"
  223. "Você quer salvar o projeto?"
  224. #: FlatCAMApp.py:3652 FlatCAMApp.py:6502 FlatCAMTranslation.py:167
  225. msgid "Save changes"
  226. msgstr "Salvar alterações"
  227. #: FlatCAMApp.py:3808
  228. msgid ""
  229. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  230. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  231. "is to convert from one to another and retry joining \n"
  232. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  233. "be lost and the result may not be what was expected. \n"
  234. "Check the generated GCODE."
  235. msgstr ""
  236. "[ERROR] Falha ao unir. Os objetos Geometria são de tipos diferentes.\n"
  237. "Pelo menos um é do tipo MultiGeo e o outro é do tipo SingleGeo. Uma "
  238. "possibilidade é converter de um para outro e tentar unir,\n"
  239. "mas no caso de converter de MultiGeo para SingleGeo, as informações podem "
  240. "ser perdidas e o resultado pode não ser o esperado.\n"
  241. "Verifique o G-CODE gerado."
  242. #: FlatCAMApp.py:3849
  243. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  244. msgstr ""
  245. "[ERROR_NOTCL] Falha. A união de Excellon funciona apenas em objetos Excellon."
  246. #: FlatCAMApp.py:3871
  247. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  248. msgstr ""
  249. "[ERROR_NOTCL] Falha. A união de Gerber funciona apenas em objetos Gerber."
  250. #: FlatCAMApp.py:3886 FlatCAMApp.py:3911
  251. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  252. msgstr ""
  253. "[ERROR_NOTCL] Falha. Selecione um Objeto de Geometria e tente novamente."
  254. #: FlatCAMApp.py:3890 FlatCAMApp.py:3915
  255. #, python-format
  256. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  257. msgstr "[ERROR_NOTCL] Geometria FlatCAM esperada, recebido %s"
  258. #: FlatCAMApp.py:3903
  259. msgid "[success] A Geometry object was converted to MultiGeo type."
  260. msgstr "[success] Um objeto Geometria foi convertido para o tipo MultiGeo."
  261. #: FlatCAMApp.py:3929
  262. msgid "[success] A Geometry object was converted to SingleGeo type."
  263. msgstr "[success] Um objeto Geometria foi convertido para o tipo SingleGeo."
  264. #: FlatCAMApp.py:4170
  265. msgid "Toggle Units"
  266. msgstr "Alternar Unidades"
  267. #: FlatCAMApp.py:4172
  268. msgid "Change project units ..."
  269. msgstr "Alterar unidades do projeto ..."
  270. #: FlatCAMApp.py:4173
  271. msgid ""
  272. "Changing the units of the project causes all geometrical properties of all "
  273. "objects to be scaled accordingly.\n"
  274. "Continue?"
  275. msgstr ""
  276. "Alterar as unidades do projeto fará com que todas as propriedades "
  277. "geométricas de todos os objetos sejam redimensionadas.\n"
  278. "Continuar?"
  279. #: FlatCAMApp.py:4175 FlatCAMApp.py:5057 FlatCAMApp.py:5162 FlatCAMApp.py:6780
  280. #: FlatCAMApp.py:6793 FlatCAMApp.py:7033 FlatCAMApp.py:7043
  281. msgid "Ok"
  282. msgstr "Ok"
  283. #: FlatCAMApp.py:4223
  284. #, python-format
  285. msgid "[success] Converted units to %s"
  286. msgstr "[success] Unidades convertidas para %s"
  287. #: FlatCAMApp.py:4234
  288. msgid "[WARNING_NOTCL] Units conversion cancelled."
  289. msgstr "[WARNING_NOTCL] Conversão de unidades cancelada."
  290. #: FlatCAMApp.py:4923
  291. msgid "Open file"
  292. msgstr "Abrir arquivo"
  293. #: FlatCAMApp.py:4954 FlatCAMApp.py:4959
  294. msgid "Export G-Code ..."
  295. msgstr "Exportar G-Code ..."
  296. #: FlatCAMApp.py:4962
  297. msgid "[WARNING_NOTCL] Export Code cancelled."
  298. msgstr "[WARNING_NOTCL] Exportar G-Code cancelado."
  299. #: FlatCAMApp.py:4971
  300. msgid "[WARNING] No such file or directory"
  301. msgstr "[WARNING] Nenhum arquivo ou diretório"
  302. #: FlatCAMApp.py:4982
  303. #, python-format
  304. msgid "Saved to: %s"
  305. msgstr "Salvo em: %s"
  306. #: FlatCAMApp.py:5045 FlatCAMApp.py:5078 FlatCAMApp.py:5089 FlatCAMApp.py:5100
  307. #: flatcamTools/ToolNonCopperClear.py:693 flatcamTools/ToolSolderPaste.py:772
  308. msgid ""
  309. "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
  310. "format."
  311. msgstr ""
  312. "[WARNING_NOTCL] Insira um diâmetro de ferramenta com valor diferente de "
  313. "zero, no formato Flutuante."
  314. #: FlatCAMApp.py:5050 FlatCAMApp.py:5083 FlatCAMApp.py:5094 FlatCAMApp.py:5105
  315. #: flatcamGUI/FlatCAMGUI.py:3138
  316. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  317. msgstr "[WARNING_NOTCL] Adicionar ferramenta cancelada ..."
  318. #: FlatCAMApp.py:5053
  319. msgid ""
  320. "Adding Tool works only when Advanced is checked.\n"
  321. "Go to Preferences -> General - Show Advanced Options."
  322. msgstr ""
  323. "Adicionar Ferramenta funciona somente no modo Avançado.\n"
  324. "Vá em Preferências -> Geral - Mostrar Opções Avançadas."
  325. #: FlatCAMApp.py:5157
  326. msgid "Delete objects"
  327. msgstr "Excluir objetos"
  328. #: FlatCAMApp.py:5160
  329. msgid ""
  330. "Are you sure you want to permanently delete\n"
  331. "the selected objects?"
  332. msgstr ""
  333. "Tem certeza de que deseja excluir permanentemente\n"
  334. "os objetos selecionados?"
  335. #: FlatCAMApp.py:5189
  336. msgid "Object(s) deleted ..."
  337. msgstr "Objeto(s) excluído(s) ..."
  338. #: FlatCAMApp.py:5193
  339. msgid "Failed. No object(s) selected..."
  340. msgstr "Falha. Nenhum objeto selecionado ..."
  341. #: FlatCAMApp.py:5195
  342. msgid "Save the work in Editor and try again ..."
  343. msgstr "Salve o trabalho no Editor e tente novamente ..."
  344. #: FlatCAMApp.py:5225
  345. msgid "Click to set the origin ..."
  346. msgstr "Clique para definir a origem ..."
  347. #: FlatCAMApp.py:5237
  348. msgid "Jump to ..."
  349. msgstr "Pular para ..."
  350. #: FlatCAMApp.py:5238
  351. msgid "Enter the coordinates in format X,Y:"
  352. msgstr "Digite as coordenadas no formato X,Y:"
  353. #: FlatCAMApp.py:5245
  354. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  355. msgstr "Coordenadas erradas. Insira as coordenadas no formato: X,Y"
  356. #: FlatCAMApp.py:5263 flatcamEditors/FlatCAMExcEditor.py:3422
  357. #: flatcamEditors/FlatCAMExcEditor.py:3429
  358. #: flatcamEditors/FlatCAMGeoEditor.py:3747
  359. #: flatcamEditors/FlatCAMGeoEditor.py:3761
  360. #: flatcamEditors/FlatCAMGrbEditor.py:1057
  361. #: flatcamEditors/FlatCAMGrbEditor.py:1160
  362. #: flatcamEditors/FlatCAMGrbEditor.py:1433
  363. #: flatcamEditors/FlatCAMGrbEditor.py:1690
  364. #: flatcamEditors/FlatCAMGrbEditor.py:4153
  365. #: flatcamEditors/FlatCAMGrbEditor.py:4167 flatcamGUI/FlatCAMGUI.py:2530
  366. #: flatcamGUI/FlatCAMGUI.py:2542
  367. msgid "[success] Done."
  368. msgstr "[success] Pronto."
  369. #: FlatCAMApp.py:5395 FlatCAMApp.py:5462
  370. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  371. msgstr ""
  372. "[WARNING_NOTCL] Nenhum objeto está selecionado. Selecione um objeto e tente "
  373. "novamente."
  374. #: FlatCAMApp.py:5503
  375. msgid "[success] Origin set ..."
  376. msgstr "[success] Origem definida ..."
  377. #: FlatCAMApp.py:5522 flatcamGUI/GUIElements.py:1439
  378. msgid "Preferences"
  379. msgstr "Preferências"
  380. #: FlatCAMApp.py:5588
  381. msgid "[WARNING_NOTCL] Preferences edited but not saved."
  382. msgstr "[WARNING_NOTCL] Preferências editadas, mas não salvas."
  383. #: FlatCAMApp.py:5622
  384. msgid ""
  385. "One or more values are changed.\n"
  386. "Do you want to save the Preferences?"
  387. msgstr ""
  388. "Um ou mais valores foram alterados.\n"
  389. "Você deseja salvar as preferências?"
  390. #: FlatCAMApp.py:5624 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:979
  391. msgid "Save Preferences"
  392. msgstr "Salvar Preferências"
  393. #: FlatCAMApp.py:5636
  394. msgid "[success] Preferences saved."
  395. msgstr "[success] Preferências salvas."
  396. #: FlatCAMApp.py:5651
  397. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  398. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Espelhar no eixo Y."
  399. #: FlatCAMApp.py:5676
  400. msgid "[success] Flip on Y axis done."
  401. msgstr "[success] Espelhar no eixo Y pronto."
  402. #: FlatCAMApp.py:5678 FlatCAMApp.py:5718
  403. #: flatcamEditors/FlatCAMGeoEditor.py:1357
  404. #: flatcamEditors/FlatCAMGrbEditor.py:5581 flatcamTools/ToolTransform.py:753
  405. #, python-format
  406. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  407. msgstr "[ERROR_NOTCL] Devido a %s, a ação de espelhamento não foi executada."
  408. #: FlatCAMApp.py:5691
  409. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  410. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Espelhar no eixo X."
  411. #: FlatCAMApp.py:5716
  412. msgid "[success] Flip on X axis done."
  413. msgstr "[success] Espelhar no eixo X pronto."
  414. #: FlatCAMApp.py:5731
  415. msgid "[WARNING_NOTCL] No object selected to Rotate."
  416. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Girar."
  417. #: FlatCAMApp.py:5734 FlatCAMApp.py:5779 FlatCAMApp.py:5810
  418. msgid "Transform"
  419. msgstr "Transformar"
  420. #: FlatCAMApp.py:5734 FlatCAMApp.py:5779 FlatCAMApp.py:5810
  421. msgid "Enter the Angle value:"
  422. msgstr "Digite o valor do Ângulo:"
  423. #: FlatCAMApp.py:5764
  424. msgid "[success] Rotation done."
  425. msgstr "[success] Rotação realizada."
  426. #: FlatCAMApp.py:5766 flatcamEditors/FlatCAMGeoEditor.py:1300
  427. #: flatcamEditors/FlatCAMGrbEditor.py:5510 flatcamTools/ToolTransform.py:682
  428. #, python-format
  429. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  430. msgstr "[ERROR_NOTCL] Devido a %s, o movimento de rotação não foi executado."
  431. #: FlatCAMApp.py:5777
  432. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  433. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Inclinar no eixo X."
  434. #: FlatCAMApp.py:5798
  435. msgid "[success] Skew on X axis done."
  436. msgstr "[success] Inclinação no eixo X concluída."
  437. #: FlatCAMApp.py:5808
  438. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  439. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Inclinar no eixo Y."
  440. #: FlatCAMApp.py:5829
  441. msgid "[success] Skew on Y axis done."
  442. msgstr "[success] Inclinação no eixo Y concluída."
  443. #: FlatCAMApp.py:5880
  444. msgid "Grid On/Off"
  445. msgstr "Liga/Desliga a Grade"
  446. #: FlatCAMApp.py:5893 flatcamEditors/FlatCAMGeoEditor.py:939
  447. #: flatcamEditors/FlatCAMGrbEditor.py:2457
  448. #: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamGUI/ObjectUI.py:990
  449. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  450. #: flatcamTools/ToolNonCopperClear.py:170 flatcamTools/ToolPaint.py:176
  451. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
  452. #: flatcamTools/ToolTransform.py:338
  453. msgid "Add"
  454. msgstr "Adicionar"
  455. #: FlatCAMApp.py:5894 FlatCAMObj.py:3398
  456. #: flatcamEditors/FlatCAMGrbEditor.py:2462 flatcamGUI/FlatCAMGUI.py:545
  457. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1701
  458. #: flatcamGUI/FlatCAMGUI.py:2069 flatcamGUI/ObjectUI.py:1006
  459. #: flatcamTools/ToolNonCopperClear.py:182 flatcamTools/ToolPaint.py:188
  460. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:485
  461. msgid "Delete"
  462. msgstr "Excluir"
  463. #: FlatCAMApp.py:5907
  464. msgid "New Grid ..."
  465. msgstr "Nova Grade ..."
  466. #: FlatCAMApp.py:5908
  467. msgid "Enter a Grid Value:"
  468. msgstr "Digite um valor para grade:"
  469. #: FlatCAMApp.py:5916 FlatCAMApp.py:5943
  470. msgid ""
  471. "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
  472. "format."
  473. msgstr ""
  474. "[WARNING_NOTCL] Por favor, insira um valor de grade com valor diferente de "
  475. "zero, no formato Flutuante."
  476. #: FlatCAMApp.py:5922
  477. msgid "[success] New Grid added ..."
  478. msgstr "[success] Nova Grade adicionada ..."
  479. #: FlatCAMApp.py:5925
  480. msgid "[WARNING_NOTCL] Grid already exists ..."
  481. msgstr "[WARNING_NOTCL] Grade já existe ..."
  482. #: FlatCAMApp.py:5928
  483. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  484. msgstr "[WARNING_NOTCL] Adicionar nova grade cancelada ..."
  485. #: FlatCAMApp.py:5950
  486. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  487. msgstr "[ERROR_NOTCL] O valor da grade não existe ..."
  488. #: FlatCAMApp.py:5953
  489. msgid "[success] Grid Value deleted ..."
  490. msgstr "[success] Grade apagada ..."
  491. #: FlatCAMApp.py:5956
  492. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  493. msgstr "[WARNING_NOTCL] Excluir valor de grade cancelado ..."
  494. #: FlatCAMApp.py:5962
  495. msgid "Key Shortcut List"
  496. msgstr "Lista de Teclas de Atalho"
  497. #: FlatCAMApp.py:5995
  498. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  499. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para copiar nome"
  500. #: FlatCAMApp.py:5999
  501. msgid "Name copied on clipboard ..."
  502. msgstr "Nome copiado para a área de transferência ..."
  503. #: FlatCAMApp.py:6041 flatcamEditors/FlatCAMGrbEditor.py:4094
  504. msgid "[success] Coordinates copied to clipboard."
  505. msgstr "[success] Coordenadas copiadas para a área de transferência."
  506. #: FlatCAMApp.py:6290 FlatCAMApp.py:6293 FlatCAMApp.py:6296 FlatCAMApp.py:6299
  507. #: FlatCAMApp.py:6314 FlatCAMApp.py:6317 FlatCAMApp.py:6320 FlatCAMApp.py:6323
  508. #: FlatCAMApp.py:6363 FlatCAMApp.py:6366 FlatCAMApp.py:6369 FlatCAMApp.py:6372
  509. #: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
  510. #: ObjectCollection.py:734
  511. #, python-brace-format
  512. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  513. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selecionado"
  514. #: FlatCAMApp.py:6499
  515. msgid ""
  516. "There are files/objects opened in FlatCAM.\n"
  517. "Creating a New project will delete them.\n"
  518. "Do you want to Save the project?"
  519. msgstr ""
  520. "Existem arquivos/objetos abertos no FlatCAM.\n"
  521. "Criar um novo projeto irá apagá-los.\n"
  522. "Você deseja Salvar o Projeto?"
  523. #: FlatCAMApp.py:6520
  524. msgid "[success] New Project created..."
  525. msgstr "[success] Novo Projeto criado ..."
  526. #: FlatCAMApp.py:6639 FlatCAMApp.py:6642 flatcamGUI/FlatCAMGUI.py:626
  527. #: flatcamGUI/FlatCAMGUI.py:1945
  528. msgid "Open Gerber"
  529. msgstr "Abrir Gerber"
  530. #: FlatCAMApp.py:6647
  531. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  532. msgstr "[WARNING_NOTCL] Abrir Gerber cancelado."
  533. #: FlatCAMApp.py:6668 FlatCAMApp.py:6671 flatcamGUI/FlatCAMGUI.py:627
  534. #: flatcamGUI/FlatCAMGUI.py:1946
  535. msgid "Open Excellon"
  536. msgstr "Abrir Excellon"
  537. #: FlatCAMApp.py:6676
  538. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  539. msgstr "[WARNING_NOTCL] Abrir Excellon cancelado."
  540. #: FlatCAMApp.py:6698 FlatCAMApp.py:6701
  541. msgid "Open G-Code"
  542. msgstr "Abrir G-Code"
  543. #: FlatCAMApp.py:6706
  544. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  545. msgstr "[WARNING_NOTCL] Abrir G-Code cancelado."
  546. #: FlatCAMApp.py:6724 FlatCAMApp.py:6727
  547. msgid "Open Project"
  548. msgstr "Abrir Projeto"
  549. #: FlatCAMApp.py:6735
  550. msgid "[WARNING_NOTCL] Open Project cancelled."
  551. msgstr "[WARNING_NOTCL] Abrir Projeto cancelado."
  552. #: FlatCAMApp.py:6754 FlatCAMApp.py:6757
  553. msgid "Open Configuration File"
  554. msgstr "Abrir Arquivo de Configuração"
  555. #: FlatCAMApp.py:6761
  556. msgid "[WARNING_NOTCL] Open Config cancelled."
  557. msgstr "[WARNING_NOTCL] Abrir Arquivo de Configuração cancelado."
  558. #: FlatCAMApp.py:6776 FlatCAMApp.py:7029 FlatCAMApp.py:9352 FlatCAMApp.py:9372
  559. #: FlatCAMApp.py:9393 FlatCAMApp.py:9415
  560. msgid "[WARNING_NOTCL] No object selected."
  561. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  562. #: FlatCAMApp.py:6777 FlatCAMApp.py:7030
  563. msgid "Please Select a Geometry object to export"
  564. msgstr "Por favor, selecione um objeto Geometria para exportar"
  565. #: FlatCAMApp.py:6790
  566. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  567. msgstr ""
  568. "[ERROR_NOTCL] Somente objetos Geometria, Gerber e Trabalho CNC podem ser "
  569. "usados."
  570. #: FlatCAMApp.py:6803 FlatCAMApp.py:6807
  571. msgid "Export SVG"
  572. msgstr "Exportar SVG"
  573. #: FlatCAMApp.py:6812
  574. msgid "[WARNING_NOTCL] Export SVG cancelled."
  575. msgstr "[WARNING_NOTCL] Exportar SVG cancelado."
  576. #: FlatCAMApp.py:6831
  577. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  578. msgstr ""
  579. "[WARNING_NOTCL] Os dados devem ser uma matriz 3D com a última dimensão 3 ou 4"
  580. #: FlatCAMApp.py:6837 FlatCAMApp.py:6841
  581. msgid "Export PNG Image"
  582. msgstr "Exportar Imagem PNG"
  583. #: FlatCAMApp.py:6846
  584. msgid "Export PNG cancelled."
  585. msgstr "Exportar PNG cancelado."
  586. #: FlatCAMApp.py:6865
  587. msgid ""
  588. "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  589. msgstr ""
  590. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  591. "Gerber para exportar."
  592. #: FlatCAMApp.py:6870 FlatCAMApp.py:6993
  593. msgid ""
  594. "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  595. msgstr ""
  596. "[ERROR_NOTCL] Falhou. Somente objetos Gerber podem ser salvos como arquivos "
  597. "Gerber ..."
  598. #: FlatCAMApp.py:6882
  599. msgid "Save Gerber source file"
  600. msgstr "Salvar arquivo fonte Gerber"
  601. #: FlatCAMApp.py:6887
  602. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  603. msgstr "[WARNING_NOTCL] Salvar arquivo fonte Gerber cancelado."
  604. #: FlatCAMApp.py:6906
  605. msgid ""
  606. "[WARNING_NOTCL] No object selected. Please select an Excellon object to "
  607. "export."
  608. msgstr ""
  609. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  610. "Excellon para exportar."
  611. #: FlatCAMApp.py:6911 FlatCAMApp.py:6952
  612. msgid ""
  613. "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  614. msgstr ""
  615. "[ERROR_NOTCL] Falhou. Somente objetos Excellon podem ser salvos como arquivos "
  616. "Excellon ..."
  617. #: FlatCAMApp.py:6919 FlatCAMApp.py:6923
  618. msgid "Save Excellon source file"
  619. msgstr "Salvar o arquivo fonte Excellon"
  620. #: FlatCAMApp.py:6928
  621. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  622. msgstr "[WARNING_NOTCL] Salvar arquivo fonte Excellon cancelado."
  623. #: FlatCAMApp.py:6947
  624. msgid ""
  625. "[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
  626. "export."
  627. msgstr ""
  628. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  629. "Excellon para exportar."
  630. #: FlatCAMApp.py:6960 FlatCAMApp.py:6964
  631. msgid "Export Excellon"
  632. msgstr "Exportar Excellon"
  633. #: FlatCAMApp.py:6969
  634. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  635. msgstr "[WARNING_NOTCL] Exportar Excellon cancelado."
  636. #: FlatCAMApp.py:6988
  637. msgid ""
  638. "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  639. msgstr ""
  640. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  641. "Gerber para exportar."
  642. #: FlatCAMApp.py:7001 FlatCAMApp.py:7005
  643. msgid "Export Gerber"
  644. msgstr "Exportar Gerber"
  645. #: FlatCAMApp.py:7010
  646. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  647. msgstr "[WARNING_NOTCL] Exportar Gerber cancelado."
  648. #: FlatCAMApp.py:7040
  649. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  650. msgstr "[ERROR_NOTCL] Apenas objetos Geometria podem ser usados."
  651. #: FlatCAMApp.py:7054 FlatCAMApp.py:7058
  652. msgid "Export DXF"
  653. msgstr "Exportar DXF"
  654. #: FlatCAMApp.py:7064
  655. msgid "[WARNING_NOTCL] Export DXF cancelled."
  656. msgstr "[WARNING_NOTCL] Exportar DXF cancelado."
  657. #: FlatCAMApp.py:7084 FlatCAMApp.py:7087
  658. msgid "Import SVG"
  659. msgstr "Importar SVG"
  660. #: FlatCAMApp.py:7096
  661. msgid "[WARNING_NOTCL] Open SVG cancelled."
  662. msgstr "[WARNING_NOTCL] Abrir SVG cancelado."
  663. #: FlatCAMApp.py:7115 FlatCAMApp.py:7119
  664. msgid "Import DXF"
  665. msgstr "Importar DXF"
  666. #: FlatCAMApp.py:7128
  667. msgid "[WARNING_NOTCL] Open DXF cancelled."
  668. msgstr "[WARNING_NOTCL] Abrir DXF cancelado."
  669. #: FlatCAMApp.py:7146
  670. #, python-format
  671. msgid "%s"
  672. msgstr "%s"
  673. #: FlatCAMApp.py:7166
  674. msgid ""
  675. "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  676. msgstr ""
  677. "[WARNING_NOTCL] Selecione um arquivo Gerber ou Excellon para visualizar o "
  678. "arquivo fonte."
  679. #: FlatCAMApp.py:7173
  680. msgid ""
  681. "[WARNING_NOTCL] There is no selected object for which to see it's source "
  682. "file code."
  683. msgstr ""
  684. "[WARNING_NOTCL] Nenhum objeto selecionado para ver o código fonte do "
  685. "arquivo."
  686. #: FlatCAMApp.py:7181
  687. msgid "Source Editor"
  688. msgstr "Editor de Fontes"
  689. #: FlatCAMApp.py:7191
  690. #, python-format
  691. msgid "[ERROR]App.on_view_source() -->%s"
  692. msgstr "[ERROR]App.on_view_source() -->%s"
  693. #: FlatCAMApp.py:7203 FlatCAMApp.py:8404 FlatCAMObj.py:5669
  694. #: flatcamTools/ToolSolderPaste.py:1289
  695. msgid "Code Editor"
  696. msgstr "Editor de Códigos"
  697. #: FlatCAMApp.py:7215
  698. msgid "Script Editor"
  699. msgstr "Editor de Script"
  700. #: FlatCAMApp.py:7218
  701. msgid ""
  702. "#\n"
  703. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  704. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  705. "html\n"
  706. "#\n"
  707. "\n"
  708. "# FlatCAM commands list:\n"
  709. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  710. "AlignDrillGrid, ClearShell, Cncjob,\n"
  711. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  712. "GeoUnion, GetNames, GetSys,\n"
  713. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  714. "ListSys, MillHoles, Mirror, New,\n"
  715. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  716. "Options, Paint, Panelize,\n"
  717. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  718. "SubtractRectangle, Version,\n"
  719. "# WriteGCode\n"
  720. "#\n"
  721. "\n"
  722. msgstr ""
  723. "#\n"
  724. "# CRIAR UM NOVO SCRIPT TCL FLATCAM\n"
  725. "# Tutorial TCL aqui: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  726. "html\n"
  727. "#\n"
  728. "\n"
  729. "# Lista de comandos FlatCAM:\n"
  730. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  731. "AlignDrillGrid, ClearShell, Cncjob,\n"
  732. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  733. "GeoUnion, GetNames, GetSys,\n"
  734. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  735. "ListSys, MillHoles, Mirror, New,\n"
  736. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  737. "Options, Paint, Panelize,\n"
  738. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  739. "SubtractRectangle, Version,\n"
  740. "# WriteGCode\n"
  741. "#\n"
  742. "\n"
  743. #: FlatCAMApp.py:7241 FlatCAMApp.py:7244
  744. msgid "Open TCL script"
  745. msgstr "Abrir script TCL"
  746. #: FlatCAMApp.py:7252
  747. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  748. msgstr "[WARNING_NOTCL] Abrir script TCL cancelado."
  749. #: FlatCAMApp.py:7264
  750. #, python-format
  751. msgid "[ERROR]App.on_fileopenscript() -->%s"
  752. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  753. #: FlatCAMApp.py:7290 FlatCAMApp.py:7293
  754. msgid "Run TCL script"
  755. msgstr "Executar script TCL"
  756. #: FlatCAMApp.py:7301
  757. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  758. msgstr "[WARNING_NOTCL] Executar script TCL cancelado."
  759. #: FlatCAMApp.py:7356 FlatCAMApp.py:7360
  760. msgid "Save Project As ..."
  761. msgstr "Salvar Projeto Como ..."
  762. #: FlatCAMApp.py:7357
  763. #, python-brace-format
  764. msgid "{l_save}/Project_{date}"
  765. msgstr "{l_save}/Project_{date}"
  766. #: FlatCAMApp.py:7365
  767. msgid "[WARNING_NOTCL] Save Project cancelled."
  768. msgstr "[WARNING_NOTCL] Salvar Projeto cancelado."
  769. #: FlatCAMApp.py:7413
  770. msgid "Exporting SVG"
  771. msgstr "Exportando SVG"
  772. #: FlatCAMApp.py:7453 FlatCAMApp.py:7567 FlatCAMApp.py:7690
  773. #, python-format
  774. msgid "[success] SVG file exported to %s"
  775. msgstr "[success] Arquivo SVG exportado para %s"
  776. #: FlatCAMApp.py:7487 FlatCAMApp.py:7615
  777. #, python-format
  778. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  779. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  780. #: FlatCAMApp.py:7570 FlatCAMApp.py:7693
  781. msgid "Generating Film ... Please wait."
  782. msgstr "Gerando Filme ... Por favor, aguarde."
  783. #: FlatCAMApp.py:7859
  784. #, python-format
  785. msgid "[success] Excellon file exported to %s"
  786. msgstr "[success] Arquivo Excellon exportado para %s"
  787. #: FlatCAMApp.py:7866
  788. msgid "Exporting Excellon"
  789. msgstr "Exportando Excellon"
  790. #: FlatCAMApp.py:7871 FlatCAMApp.py:7878
  791. msgid "[ERROR_NOTCL] Could not export Excellon file."
  792. msgstr "[ERROR_NOTCL] Não foi possível exportar o arquivo Excellon."
  793. #: FlatCAMApp.py:7984
  794. #, python-format
  795. msgid "[success] Gerber file exported to %s"
  796. msgstr "[success] Arquivo Gerber exportado para %s"
  797. #: FlatCAMApp.py:7991
  798. msgid "Exporting Gerber"
  799. msgstr "Exportando Gerber"
  800. #: FlatCAMApp.py:7996 FlatCAMApp.py:8003
  801. msgid "[ERROR_NOTCL] Could not export Gerber file."
  802. msgstr "[ERROR_NOTCL] Não foi possível exportar o arquivo Gerber."
  803. #: FlatCAMApp.py:8045
  804. #, python-format
  805. msgid "[success] DXF file exported to %s"
  806. msgstr "[success] Arquivo DXF exportado para %s"
  807. #: FlatCAMApp.py:8051
  808. msgid "Exporting DXF"
  809. msgstr "Exportando DXF"
  810. #: FlatCAMApp.py:8056 FlatCAMApp.py:8063
  811. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  812. msgstr "[[WARNING_NOTCL]] Não foi possível exportar o arquivo DXF."
  813. #: FlatCAMApp.py:8083 FlatCAMApp.py:8125 FlatCAMApp.py:8169
  814. msgid ""
  815. "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
  816. "Gerber are supported"
  817. msgstr ""
  818. "[ERROR_NOTCL] O tipo escolhido não é suportado como parâmetro. Apenas "
  819. "Geometria e Gerber são suportados"
  820. #: FlatCAMApp.py:8093
  821. msgid "Importing SVG"
  822. msgstr "Importando SVG"
  823. #: FlatCAMApp.py:8104 FlatCAMApp.py:8146 FlatCAMApp.py:8189 FlatCAMApp.py:8266
  824. #: FlatCAMApp.py:8327 FlatCAMApp.py:8390 flatcamTools/ToolPDF.py:212
  825. #, python-format
  826. msgid "[success] Opened: %s"
  827. msgstr "[success] Aberto: %s"
  828. #: FlatCAMApp.py:8135
  829. msgid "Importing DXF"
  830. msgstr "Importando DXF"
  831. #: FlatCAMApp.py:8177
  832. msgid "Importing Image"
  833. msgstr "Importando Imagem"
  834. #: FlatCAMApp.py:8218 FlatCAMApp.py:8220
  835. #, python-format
  836. msgid "[ERROR_NOTCL] Failed to open file: %s"
  837. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo: %s"
  838. #: FlatCAMApp.py:8223
  839. #, python-brace-format
  840. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  841. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo: {name}. {error}"
  842. #: FlatCAMApp.py:8230 FlatCAMObj.py:4344
  843. #: flatcamEditors/FlatCAMGrbEditor.py:3914
  844. msgid "[ERROR] An internal error has occurred. See shell.\n"
  845. msgstr "[ERROR] Ocorreu um erro interno. Veja shell. (linha de comando)\n"
  846. #: FlatCAMApp.py:8239
  847. msgid ""
  848. "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  849. msgstr ""
  850. "[ERROR_NOTCL] O objeto não é um arquivo Gerber ou está vazio. Abortando a "
  851. "criação de objetos."
  852. #: FlatCAMApp.py:8247
  853. msgid "Opening Gerber"
  854. msgstr "Abrindo Gerber"
  855. #: FlatCAMApp.py:8257
  856. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  857. msgstr ""
  858. "[ERROR_NOTCL] Abrir Gerber falhou. Provavelmente não é um arquivo Gerber."
  859. #: FlatCAMApp.py:8290 flatcamTools/ToolPcbWizard.py:423
  860. msgid "[ERROR_NOTCL] This is not Excellon file."
  861. msgstr "[ERROR_NOTCL] Este não é um arquivo Excellon."
  862. #: FlatCAMApp.py:8293
  863. #, python-format
  864. msgid "[ERROR_NOTCL] Cannot open file: %s"
  865. msgstr "[ERROR_NOTCL] Não é possível abrir o arquivo: %s"
  866. #: FlatCAMApp.py:8298 flatcamTools/ToolPcbWizard.py:432
  867. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  868. msgstr ""
  869. "[ERROR_NOTCL] Ocorreu um erro interno. Veja shell. (linha de comando)\n"
  870. #: FlatCAMApp.py:8311 flatcamTools/ToolPDF.py:262
  871. #: flatcamTools/ToolPcbWizard.py:445
  872. #, python-format
  873. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  874. msgstr "[ERROR_NOTCL] Nenhuma geometria encontrada no arquivo: %s"
  875. #: FlatCAMApp.py:8314
  876. msgid "Opening Excellon."
  877. msgstr "Abrindo Excellon."
  878. #: FlatCAMApp.py:8320
  879. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  880. msgstr ""
  881. "[ERROR_NOTCL] Falha ao abrir Excellon. Provavelmente não é um arquivo "
  882. "Excellon."
  883. #: FlatCAMApp.py:8357
  884. #, python-format
  885. msgid "[ERROR_NOTCL] Failed to open %s"
  886. msgstr "[ERROR_NOTCL] Falha ao abrir %s"
  887. #: FlatCAMApp.py:8367
  888. msgid "[ERROR_NOTCL] This is not GCODE"
  889. msgstr "[ERROR_NOTCL] Não é G-Code"
  890. #: FlatCAMApp.py:8373
  891. msgid "Opening G-Code."
  892. msgstr "Abrindo G-Code."
  893. #: FlatCAMApp.py:8381
  894. msgid ""
  895. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  896. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  897. "processing"
  898. msgstr ""
  899. "[ERROR_NOTCL] Falha ao criar o objeto Trabalho CNC. Provavelmente não é um "
  900. "arquivo G-Code. \n"
  901. "A tentativa de criar um objeto de Trabalho CNC do arquivo G-Code falhou "
  902. "durante o processamento"
  903. #: FlatCAMApp.py:8421
  904. #, python-format
  905. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  906. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo de configuração: %s"
  907. #: FlatCAMApp.py:8442
  908. msgid "Loading Project ... Please Wait ..."
  909. msgstr "Carregando projeto ... Por favor aguarde ..."
  910. #: FlatCAMApp.py:8449 FlatCAMApp.py:8467
  911. #, python-format
  912. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  913. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo do projeto: %s"
  914. #: FlatCAMApp.py:8491
  915. msgid "Loading Project ... restoring"
  916. msgstr "Carregando projeto ... restaurando"
  917. #: FlatCAMApp.py:8496
  918. #, python-format
  919. msgid "[success] Project loaded from: %s"
  920. msgstr "[success] Projeto carregado de: %s"
  921. #: FlatCAMApp.py:8602
  922. msgid "Available commands:\n"
  923. msgstr "Comandos disponíveis:\n"
  924. #: FlatCAMApp.py:8604
  925. msgid ""
  926. "\n"
  927. "\n"
  928. "Type help <command_name> for usage.\n"
  929. " Example: help open_gerber"
  930. msgstr ""
  931. "\n"
  932. "\n"
  933. "Digite help <nome_do_comando> para forma de uso. \n"
  934. " Exemplo: help open_gerber"
  935. #: FlatCAMApp.py:8754
  936. msgid "Shows list of commands."
  937. msgstr "Mostra a lista de comandos."
  938. #: FlatCAMApp.py:8811
  939. msgid "[ERROR_NOTCL] Failed to load recent item list."
  940. msgstr "[ERROR_NOTCL] Falha ao carregar a lista de itens recentes."
  941. #: FlatCAMApp.py:8818
  942. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  943. msgstr "[ERROR_NOTCL] Falha ao analisar a lista de itens recentes."
  944. #: FlatCAMApp.py:8828
  945. msgid "[ERROR_NOTCL] Failed to load recent projects item list."
  946. msgstr "[ERROR_NOTCL] Falha ao carregar a lista de itens de projetos recentes."
  947. #: FlatCAMApp.py:8835
  948. msgid "[ERROR_NOTCL] Failed to parse recent project item list."
  949. msgstr "[ERROR_NOTCL] Falha ao analisar a lista de itens do projeto recente."
  950. #: FlatCAMApp.py:8894 FlatCAMApp.py:8917
  951. msgid "Clear Recent files"
  952. msgstr "Limpar arquivos recentes"
  953. #: FlatCAMApp.py:8934 flatcamGUI/FlatCAMGUI.py:996
  954. msgid "<b>Shortcut Key List</b>"
  955. msgstr "<b>Lista de Teclas de Atalho</b>"
  956. #: FlatCAMApp.py:8946
  957. #, python-brace-format
  958. msgid ""
  959. "\n"
  960. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  961. "from Project Tab</strong></span></p>\n"
  962. "\n"
  963. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  964. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  965. "\n"
  966. "<ol>\n"
  967. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  968. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  969. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  970. "GUI.<br />\n"
  971. "\t<br />\n"
  972. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  973. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  974. "through the menu/toolbar links offered within the app.</span><br />\n"
  975. "\t&nbsp;</li>\n"
  976. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  977. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  978. "strong>(more simpler is to double click the object name in the Project Tab), "
  979. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  980. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  981. ">\n"
  982. "\t<br />\n"
  983. "\tIf the selection of the object is done on the canvas by single click "
  984. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  985. "properties will be displayed into the Selected Tab. Alternatively, double "
  986. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  987. "strong> and populate it even if it was out of focus.<br />\n"
  988. "\t<br />\n"
  989. "\tYou can change the parameters in this screen and the flow direction is "
  990. "like this:<br />\n"
  991. "\t<br />\n"
  992. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  993. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  994. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  995. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  996. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  997. "span></li>\n"
  998. "</ol>\n"
  999. "\n"
  1000. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  1001. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  1002. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  1003. "\n"
  1004. " "
  1005. msgstr ""
  1006. "\n"
  1007. "<p><span style=\"font-size:{tsize}px\"><strong>Aba Selecionado - Escolha um "
  1008. "Item na Aba Projeto</strong></span></p>\n"
  1009. "\n"
  1010. "<p><span style=\"font-size:{fsize}px\"><strong>Detalhes</strong>:<br/>\n"
  1011. "O fluxo normal de trabalho no FlatCAM é o seguinte:</span></p>\n"
  1012. "\n"
  1013. "<ol>\n"
  1014. "\t<li><span style=\"font-size:{fsize}px\">Ler/Importar um arquivo Gerber, "
  1015. "Excellon, G-Code, DXF, Imagem Raster ou SVG no FlatCAM usando os menus, "
  1016. "barras de trabalho, teclas de atalho ou mesmo arrastando e soltando os "
  1017. "arquivos na GUI.<br/>\n"
  1018. "\t<br/>\n"
  1019. "\tVocê pode também ler um <strong>projeto FlatCAM</strong> clicando duas "
  1020. "vezes no arquivo de projeto, arrastando e soltando o arquivo na GUI do "
  1021. "FlatCAM ou através dos links de menu/barra de ferramentas oferecidos dentro "
  1022. "do aplicativo.</span><br/>\n"
  1023. "\t&nbsp;</li>\n"
  1024. "\t<li><span style=\"font-size:{fsize}px\">Uma vez que um objeto está "
  1025. "disponível na <strong>Aba Projeto</strong>, selecione-o e então vá para a "
  1026. "<strong>Aba Selecionado</strong> (ou clique duas vezes no nome do objeto na "
  1027. "<strong>Aba Projeto</strong>). A <strong>Aba Selecionado</strong> será "
  1028. "atualizada com as propriedades do objeto de acordo com o tipo: Gerber, "
  1029. "Excellon, Geometria ou Trabalho CNC.<br/>\n"
  1030. "\t<br/>\n"
  1031. "\tSe a seleção do objeto for feita na tela com um único clique, e a "
  1032. "<strong>Aba Selecionado</strong> estiver em foco, novamente as propriedades "
  1033. "do objeto serão exibidas na <strong>Aba Selecionado</strong>. Como "
  1034. "alternativa, clicar duas vezes no objeto na tela trará a <strong>Aba "
  1035. "Selecionado</strong> e a preencherá mesmo que esteja fora de foco.<br/>\n"
  1036. "\t<br/>\n"
  1037. "\tVocê pode alterar os parâmetros nesta tela e o fluxo é assim:<br/>\n"
  1038. "\t<br/>\n"
  1039. "\t<strong>Objeto Gerber/Excellon</strong> -&gt; Alterar Parâmetros -&gt; "
  1040. "Gerar Geometria -&gt;<strong> Objeto Geometria </strong>-&gt; Adicionar "
  1041. "Ferramentas (alterar parâmetro na Aba Selecionado) -&gt; Gerar Trabalho CNC -"
  1042. "&gt;<strong> Objeto Trabalho CNC </strong>-&gt; Verificar G-Code (com Editar "
  1043. "Código CNC) e/ou acrescentar/pré-anexar ao G-Code (novamente, na "
  1044. "<strong>ABA SELECIONADO)&nbsp;</strong>-&gt; Salvar G-Code</span></li>\n"
  1045. "</ol>\n"
  1046. "\n"
  1047. "<p><span style=\"font-size:{fsize}px\">Uma lista de teclas de atalhos está "
  1048. "disponível em <strong>Ajuda -&gt; Lista de Teclas de Atalho</strong>&nbsp;ou "
  1049. "usando a sua tecla de atalho: <strong>F3</strong>.</span></p>\n"
  1050. "\n"
  1051. " "
  1052. #: FlatCAMApp.py:9024
  1053. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  1054. msgstr ""
  1055. "[WARNING_NOTCL] Falha na verificação da versão mais recente. Não foi "
  1056. "possível conectar."
  1057. #: FlatCAMApp.py:9031
  1058. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  1059. msgstr ""
  1060. "[ERROR_NOTCL] Não foi possível analisar informações sobre a versão mais "
  1061. "recente."
  1062. #: FlatCAMApp.py:9041
  1063. msgid "[success] FlatCAM is up to date!"
  1064. msgstr "[success] O FlatCAM está atualizado!"
  1065. #: FlatCAMApp.py:9046
  1066. msgid "Newer Version Available"
  1067. msgstr "Nova Versão Disponível"
  1068. #: FlatCAMApp.py:9047
  1069. msgid ""
  1070. "There is a newer version of FlatCAM available for download:\n"
  1071. "\n"
  1072. msgstr ""
  1073. "Existe uma versão mais nova do FlatCAM disponível para download:\n"
  1074. "\n"
  1075. #: FlatCAMApp.py:9049
  1076. msgid "info"
  1077. msgstr "info"
  1078. #: FlatCAMApp.py:9103
  1079. msgid "[success] All plots disabled."
  1080. msgstr "[success] Todos os gráficos desabilitados."
  1081. #: FlatCAMApp.py:9109
  1082. msgid "[success] All non selected plots disabled."
  1083. msgstr "[success] Todos os gráficos não selecionados desabilitados."
  1084. #: FlatCAMApp.py:9115
  1085. msgid "[success] All plots enabled."
  1086. msgstr "[success] Todos os gráficos habilitados."
  1087. #: FlatCAMApp.py:9121
  1088. msgid "[success] Selected plots enabled..."
  1089. msgstr "[success] Gráficos selecionados habilitados..."
  1090. #: FlatCAMApp.py:9129
  1091. msgid "[success] Selected plots disabled..."
  1092. msgstr "[success] Gráficos selecionados desabilitados..."
  1093. #: FlatCAMApp.py:9138 FlatCAMApp.py:9156 FlatCAMApp.py:9174
  1094. msgid "Working ..."
  1095. msgstr "Trabalhando ..."
  1096. #: FlatCAMApp.py:9212
  1097. msgid "Saving FlatCAM Project"
  1098. msgstr "Salvando o Projeto FlatCAM"
  1099. #: FlatCAMApp.py:9233 FlatCAMApp.py:9264
  1100. #, python-format
  1101. msgid "[success] Project saved to: %s"
  1102. msgstr "[success] Projeto salvo em: %s"
  1103. #: FlatCAMApp.py:9251
  1104. #, python-format
  1105. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  1106. msgstr ""
  1107. "[ERROR_NOTCL] Falha ao verificar o arquivo do projeto: %s. Tente salvá-lo "
  1108. "novamente."
  1109. #: FlatCAMApp.py:9258
  1110. #, python-format
  1111. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  1112. msgstr ""
  1113. "[ERROR_NOTCL] Falha ao analisar o arquivo de projeto salvo: %s. Tente salvá-"
  1114. "lo novamente."
  1115. #: FlatCAMApp.py:9266
  1116. #, python-format
  1117. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  1118. msgstr ""
  1119. "[ERROR_NOTCL] Falha ao salvar o arquivo de projeto: %s. Tente salvá-lo "
  1120. "novamente."
  1121. #: FlatCAMObj.py:208
  1122. #, python-brace-format
  1123. msgid "[success] Name changed from {old} to {new}"
  1124. msgstr "[success] Nome alterado de {old} para {new}"
  1125. #: FlatCAMObj.py:557 FlatCAMObj.py:2128 FlatCAMObj.py:3403 FlatCAMObj.py:5562
  1126. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1127. msgstr "<span style=\"color:green;\"><b>Básico</b></span>"
  1128. #: FlatCAMObj.py:569 FlatCAMObj.py:2144 FlatCAMObj.py:3425 FlatCAMObj.py:5568
  1129. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1130. msgstr "<span style=\"color:red;\"><b>Avançado</b></span>"
  1131. #: FlatCAMObj.py:947 FlatCAMObj.py:1050
  1132. msgid "[ERROR_NOTCL] Isolation geometry could not be generated."
  1133. msgstr "[ERROR_NOTCL] A geometria de isolamento não pôde ser gerada."
  1134. #: FlatCAMObj.py:984 FlatCAMObj.py:3098 FlatCAMObj.py:3360 FlatCAMObj.py:3637
  1135. msgid "Rough"
  1136. msgstr "Desbaste"
  1137. #: FlatCAMObj.py:1002 FlatCAMObj.py:1066
  1138. #, python-format
  1139. msgid "[success] Isolation geometry created: %s"
  1140. msgstr "[success] Geometria de isolação criada: %s"
  1141. #: FlatCAMObj.py:1246
  1142. msgid "Plotting Apertures"
  1143. msgstr "Mostrando Aberturas"
  1144. #: FlatCAMObj.py:1969 flatcamEditors/FlatCAMExcEditor.py:2290
  1145. msgid "Total Drills"
  1146. msgstr "Total de Furos"
  1147. #: FlatCAMObj.py:1995 flatcamEditors/FlatCAMExcEditor.py:2322
  1148. msgid "Total Slots"
  1149. msgstr "Total de Fendas"
  1150. #: FlatCAMObj.py:2202 FlatCAMObj.py:3475 FlatCAMObj.py:3765 FlatCAMObj.py:3952
  1151. #: FlatCAMObj.py:3963 FlatCAMObj.py:4081 FlatCAMObj.py:4486 FlatCAMObj.py:4712
  1152. #: FlatCAMObj.py:5128 flatcamEditors/FlatCAMExcEditor.py:2396
  1153. #: flatcamTools/ToolCalculators.py:310 flatcamTools/ToolCalculators.py:321
  1154. #: flatcamTools/ToolCalculators.py:333 flatcamTools/ToolCalculators.py:348
  1155. #: flatcamTools/ToolCalculators.py:361 flatcamTools/ToolCalculators.py:375
  1156. #: flatcamTools/ToolCalculators.py:386 flatcamTools/ToolCalculators.py:397
  1157. #: flatcamTools/ToolCalculators.py:408 flatcamTools/ToolFilm.py:246
  1158. #: flatcamTools/ToolFilm.py:253 flatcamTools/ToolNonCopperClear.py:684
  1159. #: flatcamTools/ToolNonCopperClear.py:756
  1160. #: flatcamTools/ToolNonCopperClear.py:953
  1161. #: flatcamTools/ToolNonCopperClear.py:970
  1162. #: flatcamTools/ToolNonCopperClear.py:978 flatcamTools/ToolPaint.py:694
  1163. #: flatcamTools/ToolPaint.py:766 flatcamTools/ToolPaint.py:907
  1164. #: flatcamTools/ToolPaint.py:1147 flatcamTools/ToolPaint.py:1301
  1165. #: flatcamTools/ToolPaint.py:1608 flatcamTools/ToolPanelize.py:392
  1166. #: flatcamTools/ToolPanelize.py:404 flatcamTools/ToolPanelize.py:417
  1167. #: flatcamTools/ToolPanelize.py:430 flatcamTools/ToolPanelize.py:442
  1168. #: flatcamTools/ToolPanelize.py:453 flatcamTools/ToolSolderPaste.py:763
  1169. #: flatcamTools/ToolSolderPaste.py:835
  1170. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  1171. msgstr "[ERROR_NOTCL] Formato incorreto, use um número."
  1172. #: FlatCAMObj.py:2444 FlatCAMObj.py:2536 FlatCAMObj.py:2659
  1173. msgid ""
  1174. "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  1175. msgstr ""
  1176. "[ERROR_NOTCL] Selecione uma ou mais ferramentas da lista e tente novamente."
  1177. #: FlatCAMObj.py:2451
  1178. msgid ""
  1179. "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  1180. msgstr ""
  1181. "[ERROR_NOTCL] A ferramenta BROCA é maior que o tamanho do "
  1182. "furo. Cancelado."
  1183. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1184. msgid "Tool_nr"
  1185. msgstr "Ferramenta_nr"
  1186. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1187. #: flatcamEditors/FlatCAMExcEditor.py:1481
  1188. #: flatcamEditors/FlatCAMExcEditor.py:3114 flatcamGUI/ObjectUI.py:554
  1189. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  1190. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1191. msgid "Diameter"
  1192. msgstr "Diâmetro"
  1193. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1194. msgid "Drills_Nr"
  1195. msgstr "Furo_Nr"
  1196. #: FlatCAMObj.py:2465 FlatCAMObj.py:2560 FlatCAMObj.py:2679
  1197. msgid "Slots_Nr"
  1198. msgstr "Fenda_Nr"
  1199. #: FlatCAMObj.py:2546
  1200. msgid ""
  1201. "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  1202. msgstr ""
  1203. "[ERROR_NOTCL] A ferramenta fresa para FENDAS é maior que o tamanho do "
  1204. "furo. Cancelado."
  1205. #: FlatCAMObj.py:2720 FlatCAMObj.py:4379 FlatCAMObj.py:4585 FlatCAMObj.py:4891
  1206. msgid ""
  1207. "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self."
  1208. "options[\"z_pdepth\"]"
  1209. msgstr ""
  1210. "[ERROR_NOTCL] Valor com formato incorreto para self.defaults[\"z_pdepth\"] ou "
  1211. "self.options[\"z_pdepth\"]"
  1212. #: FlatCAMObj.py:2730 FlatCAMObj.py:4389 FlatCAMObj.py:4595 FlatCAMObj.py:4901
  1213. msgid ""
  1214. "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or "
  1215. "self.options[\"feedrate_probe\"]"
  1216. msgstr ""
  1217. "[ERROR_NOTCL] Valor com formato incorreto para self.defaults[\"feedrate_probe"
  1218. "\"] ou self.options[\"feedrate_probe\"]"
  1219. #: FlatCAMObj.py:2760 FlatCAMObj.py:4781 FlatCAMObj.py:4786 FlatCAMObj.py:4933
  1220. msgid "Generating CNC Code"
  1221. msgstr "Gerando Código CNC"
  1222. #: FlatCAMObj.py:2786 FlatCAMObj.py:5088 camlib.py:5244 camlib.py:5740
  1223. #: camlib.py:6030
  1224. msgid ""
  1225. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
  1226. "format (x, y) \n"
  1227. "but now there is only one value, not two. "
  1228. msgstr ""
  1229. "[ERROR] O campo Troca de Ferramentas X, Y em Editar -> Preferências deve "
  1230. "estar no formato (x, y).\n"
  1231. "Agora existe apenas um valor, não dois. "
  1232. #: FlatCAMObj.py:3098 FlatCAMObj.py:4004 FlatCAMObj.py:4005 FlatCAMObj.py:4014
  1233. msgid "Iso"
  1234. msgstr "Isolação"
  1235. #: FlatCAMObj.py:3098
  1236. msgid "Finish"
  1237. msgstr "Acabamento"
  1238. #: FlatCAMObj.py:3396 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
  1239. #: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2067
  1240. #: flatcamGUI/ObjectUI.py:998
  1241. msgid "Copy"
  1242. msgstr "Copiar"
  1243. #: FlatCAMObj.py:3607
  1244. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  1245. msgstr ""
  1246. "[ERROR_NOTCL] Por favor, insira o diâmetro da ferramenta desejada no formato "
  1247. "Flutuante."
  1248. #: FlatCAMObj.py:3681
  1249. msgid "[success] Tool added in Tool Table."
  1250. msgstr "[success] Ferramenta adicionada na Tabela de Ferramentas."
  1251. #: FlatCAMObj.py:3684
  1252. msgid "[WARNING_NOTCL] Default Tool added. Wrong value format entered."
  1253. msgstr ""
  1254. "[WARNING_NOTCL] Ferramenta padrão adicionada. Valor inserico com formato incorreto."
  1255. #: FlatCAMObj.py:3716 FlatCAMObj.py:3724
  1256. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  1257. msgstr "[WARNING_NOTCL] Falhou. Selecione uma ferramenta para copiar."
  1258. #: FlatCAMObj.py:3751
  1259. msgid "[success] Tool was copied in Tool Table."
  1260. msgstr "[success] A ferramenta foi copiada na tabela de ferramentas."
  1261. #: FlatCAMObj.py:3780
  1262. msgid "[success] Tool was edited in Tool Table."
  1263. msgstr "[success] A ferramenta foi editada na Tabela de Ferramentas."
  1264. #: FlatCAMObj.py:3808 FlatCAMObj.py:3816
  1265. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  1266. msgstr "[WARNING_NOTCL] Falhou. Selecione uma ferramenta para excluir."
  1267. #: FlatCAMObj.py:3838
  1268. msgid "[success] Tool was deleted in Tool Table."
  1269. msgstr "[success] A ferramenta foi eliminada da Tabela de Ferramentas."
  1270. #: FlatCAMObj.py:4267
  1271. #, python-format
  1272. msgid ""
  1273. "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  1274. msgstr ""
  1275. "[WARNING_NOTCL] Esta Geometria não pode ser processada porque é %s geometria."
  1276. #: FlatCAMObj.py:4283
  1277. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  1278. msgstr "[ERROR_NOTCL] Valor inserido no formato errado. Use um número."
  1279. #: FlatCAMObj.py:4308
  1280. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  1281. msgstr ""
  1282. "[ERROR_NOTCL] Falhou. Nenhuma ferramenta selecionada na tabela de "
  1283. "ferramentas ..."
  1284. #: FlatCAMObj.py:4345
  1285. #, python-format
  1286. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1287. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  1288. #: FlatCAMObj.py:4492 FlatCAMObj.py:4718
  1289. msgid ""
  1290. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  1291. "Add a Tool Offset or change the Offset Type."
  1292. msgstr ""
  1293. "[WARNING] Deslocamento de Ferramenta selecionado na Tabela de Ferramentas, mas nenhum "
  1294. "valor foi fornecido. \n"
  1295. "Adicione um Deslocamento de Ferramenta ou altere o Tipo de Deslocamento."
  1296. #: FlatCAMObj.py:4605 flatcamTools/ToolSolderPaste.py:1117
  1297. #: flatcamTools/ToolSolderPaste.py:1173
  1298. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  1299. msgstr "[ERROR_NOTCL] Cancelado. Arquivo vazio, não tem geometria ..."
  1300. #: FlatCAMObj.py:4967 FlatCAMObj.py:4976 camlib.py:3373 camlib.py:3382
  1301. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  1302. msgstr ""
  1303. "[ERROR_NOTCL] O fator de escala deve ser um número: inteiro ou flutuante."
  1304. #: FlatCAMObj.py:5019
  1305. msgid "[success] Geometry Scale done."
  1306. msgstr "[success] Redimensionamento de geometria feita."
  1307. #: FlatCAMObj.py:5037 camlib.py:3456
  1308. msgid ""
  1309. "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only "
  1310. "one value in the Offset field."
  1311. msgstr ""
  1312. "[ERROR_NOTCL] Um par (x,y) de valores é necessário. Provavelmente você "
  1313. "digitou apenas um valor no campo Deslocamento."
  1314. #: FlatCAMObj.py:5059
  1315. msgid "[success] Geometry Offset done."
  1316. msgstr "[success] Deslocamento de Geometria feito."
  1317. #: FlatCAMObj.py:5630 FlatCAMObj.py:5635 flatcamTools/ToolSolderPaste.py:1373
  1318. msgid "Export Machine Code ..."
  1319. msgstr "Exportar Código da Máquina ..."
  1320. #: FlatCAMObj.py:5641 flatcamTools/ToolSolderPaste.py:1376
  1321. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  1322. msgstr "[WARNING_NOTCL] Exportar código da máquina cancelado ..."
  1323. #: FlatCAMObj.py:5658
  1324. #, python-format
  1325. msgid "[success] Machine Code file saved to: %s"
  1326. msgstr "[success] Arquivo G-Code salvo em: %s"
  1327. #: FlatCAMObj.py:5680
  1328. #, python-format
  1329. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1330. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  1331. #: FlatCAMObj.py:5797
  1332. #, python-format
  1333. msgid ""
  1334. "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s "
  1335. "CNCJob object."
  1336. msgstr ""
  1337. "[WARNING_NOTCL] Este objeto Trabalho CNC não pode ser processado porque é um "
  1338. "objeto %s CNCJob."
  1339. #: FlatCAMObj.py:5850
  1340. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  1341. msgstr "[ERROR_NOTCL] O G-Code não possui um código de unidade: G20 ou G21"
  1342. #: FlatCAMObj.py:5863
  1343. msgid ""
  1344. "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
  1345. "empty."
  1346. msgstr ""
  1347. "[ERROR_NOTCL] Cancelado. O código personalizado para Troca de Ferramentas está ativado, "
  1348. "mas está vazio."
  1349. #: FlatCAMObj.py:5870
  1350. msgid "[success] Toolchange G-code was replaced by a custom code."
  1351. msgstr ""
  1352. "[success] O G-Code para Troca de Ferramentas foi substituído por um código personalizado."
  1353. #: FlatCAMObj.py:5884 flatcamTools/ToolSolderPaste.py:1402
  1354. msgid "[WARNING_NOTCL] No such file or directory"
  1355. msgstr "[WARNING_NOTCL] Nenhum arquivo ou diretório"
  1356. #: FlatCAMObj.py:5908 FlatCAMObj.py:5920
  1357. msgid ""
  1358. "[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
  1359. "'toolchange_custom'"
  1360. msgstr ""
  1361. "[WARNING_NOTCL] O arquivo de pós-processamento deve ter em seu nome: "
  1362. "'toolchange_custom'"
  1363. #: FlatCAMObj.py:5926
  1364. msgid "[ERROR] There is no postprocessor file."
  1365. msgstr "[ERROR] Não há arquivo de pós-processamento."
  1366. #: FlatCAMTranslation.py:91
  1367. msgid "The application will restart."
  1368. msgstr "O aplicativo reiniciará."
  1369. #: FlatCAMTranslation.py:92
  1370. #, python-format
  1371. msgid "Are you sure do you want to change the current language to %s?"
  1372. msgstr "Você tem certeza de que quer alterar o idioma para %s?"
  1373. #: FlatCAMTranslation.py:94
  1374. msgid "Apply Language ..."
  1375. msgstr "Aplicar o Idioma ..."
  1376. #: ObjectCollection.py:426
  1377. #, python-brace-format
  1378. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1379. msgstr "Objeto renomeado de <b>{old}</b> para <b>{new}</b>"
  1380. #: ObjectCollection.py:765
  1381. #, python-format
  1382. msgid "[ERROR] Cause of error: %s"
  1383. msgstr "[ERROR] Motivo do erro: %s"
  1384. #: camlib.py:197
  1385. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1386. msgstr "[ERROR_NOTCL] self.solid_geometry não é nem BaseGeometry nem lista."
  1387. #: camlib.py:1405
  1388. msgid "[success] Object was mirrored ..."
  1389. msgstr "[success] O Objeto foi espelhado ..."
  1390. #: camlib.py:1407
  1391. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1392. msgstr "[ERROR_NOTCL] Falha ao espelhar. Nenhum objeto selecionado"
  1393. #: camlib.py:1447
  1394. msgid "[success] Object was rotated ..."
  1395. msgstr "[success] Objeto foi rotacionado ..."
  1396. #: camlib.py:1449
  1397. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1398. msgstr "[ERROR_NOTCL] Falha ao girar. Nenhum objeto selecionado"
  1399. #: camlib.py:1488
  1400. msgid "[success] Object was skewed ..."
  1401. msgstr "[success] O Objeto foi inclinado ..."
  1402. #: camlib.py:1490
  1403. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1404. msgstr "[ERROR_NOTCL] Falha ao inclinar. Nenhum objeto selecionado"
  1405. #: camlib.py:2752 camlib.py:2837
  1406. #, python-format
  1407. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1408. msgstr "[WARNING] Coordenadas faltando, linha ignorada: %s"
  1409. #: camlib.py:2753 camlib.py:2838
  1410. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1411. msgstr ""
  1412. "[WARNING_NOTCL] O arquivo GERBER pode estar CORROMPIDO. Verifique o "
  1413. "arquivo !!!"
  1414. #: camlib.py:2802
  1415. #, python-format
  1416. msgid ""
  1417. "[ERROR] Region does not have enough points. File will be processed but there "
  1418. "are parser errors. Line number: %s"
  1419. msgstr ""
  1420. "[ERROR] A região não possui pontos suficientes. O arquivo será processado, "
  1421. "mas há erros na análise. Número da linha: %s"
  1422. #: camlib.py:3194
  1423. #, python-format
  1424. msgid ""
  1425. "[ERROR]Gerber Parser ERROR.\n"
  1426. "%s:"
  1427. msgstr ""
  1428. "[ERROR]ERRO na análise do Gerber.\n"
  1429. "%s:"
  1430. #: camlib.py:3422
  1431. msgid "[success] Gerber Scale done."
  1432. msgstr "[success] Redimensionamento Gerber pronto."
  1433. #: camlib.py:3492
  1434. msgid "[success] Gerber Offset done."
  1435. msgstr "[success] Deslocamento Gerber pronto."
  1436. #: camlib.py:3550
  1437. msgid "[success] Gerber Mirror done."
  1438. msgstr "[success] Espelhamento Gerber pronto."
  1439. #: camlib.py:3600
  1440. msgid "[success] Gerber Skew done."
  1441. msgstr "[success] Inclinação Gerber pronta."
  1442. #: camlib.py:3642
  1443. msgid "[success] Gerber Rotate done."
  1444. msgstr "[success] Rotação Gerber pronta."
  1445. #: camlib.py:3923
  1446. #, python-format
  1447. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1448. msgstr "[ERROR_NOTCL] Esta é a marca G-CODE: %s"
  1449. #: camlib.py:4038
  1450. #, python-format
  1451. msgid ""
  1452. "[WARNING] No tool diameter info's. See shell.\n"
  1453. "A tool change event: T%s was found but the Excellon file have no "
  1454. "informations regarding the tool diameters therefore the application will try "
  1455. "to load it by using some 'fake' diameters.\n"
  1456. "The user needs to edit the resulting Excellon object and change the "
  1457. "diameters to reflect the real diameters."
  1458. msgstr ""
  1459. "[WARNING] Nenhuma informação de diâmetro de ferramenta. Veja shell. (linha "
  1460. "de comando)\n"
  1461. "Um evento de troca de ferramenta: T%s foi encontrado mas o arquivo Excellon "
  1462. "não possui\n"
  1463. "informações sobre os diâmetros da ferramenta. O aplicativo tentará carregá-"
  1464. "lo usando\n"
  1465. "alguns diâmetros 'falsos'. O usuário precisa editar o objeto Excellon "
  1466. "resultante e\n"
  1467. "alterar os diâmetros para os valores reais."
  1468. #: camlib.py:4502
  1469. #, python-brace-format
  1470. msgid ""
  1471. "[ERROR] Excellon Parser error.\n"
  1472. "Parsing Failed. Line {l_nr}: {line}\n"
  1473. msgstr ""
  1474. "[ERROR] Erro do Analisador Excellon.\n"
  1475. "Análise falhou. Linha {l_nr}: {line}\n"
  1476. #: camlib.py:4581
  1477. msgid ""
  1478. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
  1479. "not having a tool associated.\n"
  1480. "Check the resulting GCode."
  1481. msgstr ""
  1482. "[WARNING] Excellon.create_geometry () -> um furo foi ignorado por não ter "
  1483. "uma ferramenta associada.\n"
  1484. "Verifique o G-Code resultante."
  1485. #: camlib.py:5153
  1486. #, python-format
  1487. msgid "[ERROR] There is no such parameter: %s"
  1488. msgstr "[ERROR] Não existe esse parâmetro: %s"
  1489. #: camlib.py:5223
  1490. msgid ""
  1491. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1492. "drill into material.\n"
  1493. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1494. "therefore the app will convert the value to negative. Check the resulting "
  1495. "CNC code (Gcode etc)."
  1496. msgstr ""
  1497. "[WARNING] O parâmetro Profundidade de Corte está positivo. Este valor é a\n"
  1498. "profundidade para cortar o material, e deve ser negativo. Supondo que seja\n"
  1499. "um erro de digitação, o aplicativo converterá o valor para negativo.\n"
  1500. "Verifique o código CNC resultante (G-Code, etc.)."
  1501. #: camlib.py:5230 camlib.py:5763 camlib.py:6053
  1502. #, python-format
  1503. msgid ""
  1504. "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1505. msgstr ""
  1506. "[WARNING] O parâmetro Profundidade de Corte é zero. Não haverá corte, "
  1507. "ignorando arquivo %s"
  1508. #: camlib.py:5470 camlib.py:5576 camlib.py:5642
  1509. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1510. msgstr "[ERROR_NOTCL] O arquivo Excellon carregado não tem brocas ..."
  1511. #: camlib.py:5581
  1512. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1513. msgstr "[ERROR_NOTCL] Tipo de otimização incorreto selecionado."
  1514. #: camlib.py:5751 camlib.py:6041
  1515. msgid ""
  1516. "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
  1517. "combinations of other parameters."
  1518. msgstr ""
  1519. "O parâmetro [ERROR_NOTCL] Profundidade de Corte está vazio ou é zero. Provavelmente é uma "
  1520. "combinação ruim de outros parâmetros."
  1521. #: camlib.py:5756 camlib.py:6046
  1522. msgid ""
  1523. "[WARNING] The Cut Z parameter has positive value. It is the depth value to "
  1524. "cut into material.\n"
  1525. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1526. "therefore the app will convert the value to negative.Check the resulting CNC "
  1527. "code (Gcode etc)."
  1528. msgstr ""
  1529. "[WARNING] O parâmetro Profundidade de Corte está positivo. Este valor é a\n"
  1530. "profundidade para cortar o material, e deve ser negativo. Supondo que seja\n"
  1531. "um erro de digitação, o aplicativo converterá o valor para negativo.\n"
  1532. "Verifique o código CNC resultante (G-Code, etc.)."
  1533. #: camlib.py:5772 camlib.py:6058
  1534. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1535. msgstr "[ERROR_NOTCL] O parâmetro Altura de Deslocamento Z é Nulo ou zero."
  1536. #: camlib.py:5776 camlib.py:6062
  1537. msgid ""
  1538. "[WARNING] The Travel Z parameter has negative value. It is the height value "
  1539. "to travel between cuts.\n"
  1540. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1541. "therefore the app will convert the value to positive.Check the resulting CNC "
  1542. "code (Gcode etc)."
  1543. msgstr ""
  1544. "[WARNING] O parâmetro Altura de Deslocamento tem valor negativo. Este valor\n"
  1545. "é a altura nos deslocamentos entre os cortes, e deve ser positivo. Supondo\n"
  1546. " que seja um erro de digitação, o aplicativo converterá o valor para "
  1547. "positivo.\n"
  1548. "Verifique o código CNC resultante (G-Code, etc.)."
  1549. #: camlib.py:5783 camlib.py:6069
  1550. #, python-format
  1551. msgid ""
  1552. "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1553. msgstr ""
  1554. "[WARNING] O parâmetro Altura de Deslocamento é zero. Isso é perigoso, "
  1555. "ignorando arquivo %s"
  1556. #: camlib.py:5936
  1557. #, python-format
  1558. msgid "[ERROR]Expected a Geometry, got %s"
  1559. msgstr "[ERROR] Esperada uma geometria, recebido %s"
  1560. #: camlib.py:5942
  1561. msgid ""
  1562. "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without "
  1563. "solid_geometry."
  1564. msgstr ""
  1565. "[ERROR_NOTCL] Tentando gerar um trabalho CNC a partir de um objeto Geometria "
  1566. "sem solid_geometry."
  1567. #: camlib.py:5981
  1568. msgid ""
  1569. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the "
  1570. "current_geometry.\n"
  1571. "Raise the value (in module) and try again."
  1572. msgstr ""
  1573. "[ERROR_NOTCL] O valor de Deslocamento da Ferramenta é muito negativo para "
  1574. "usar na current_geometry.\n"
  1575. "Altere o valor e tente novamente."
  1576. #: camlib.py:6215
  1577. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1578. msgstr ""
  1579. "[ERROR_NOTCL] Não há dados da ferramenta na geometria da Pasta de Solda."
  1580. #: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:69
  1581. #: flatcamEditors/FlatCAMExcEditor.py:150
  1582. #: flatcamEditors/FlatCAMExcEditor.py:350
  1583. #: flatcamEditors/FlatCAMExcEditor.py:540
  1584. #: flatcamEditors/FlatCAMGrbEditor.py:237
  1585. #: flatcamEditors/FlatCAMGrbEditor.py:242
  1586. msgid "Click to place ..."
  1587. msgstr "Clique para colocar ..."
  1588. #: flatcamEditors/FlatCAMExcEditor.py:53
  1589. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1590. msgstr ""
  1591. "[WARNING_NOTCL] Para adicionar uma broca, primeiro selecione uma ferramenta"
  1592. #: flatcamEditors/FlatCAMExcEditor.py:115
  1593. msgid "[success] Done. Drill added."
  1594. msgstr "[success] Feito. Broca adicionada."
  1595. #: flatcamEditors/FlatCAMExcEditor.py:157
  1596. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1597. msgstr ""
  1598. "[WARNING_NOTCL] Para adicionar um Matriz de Brocas, primeiro selecione uma "
  1599. "ferramenta na Tabela de Ferramentas"
  1600. #: flatcamEditors/FlatCAMExcEditor.py:173
  1601. #: flatcamEditors/FlatCAMExcEditor.py:379
  1602. #: flatcamEditors/FlatCAMExcEditor.py:587
  1603. #: flatcamEditors/FlatCAMExcEditor.py:1083
  1604. #: flatcamEditors/FlatCAMExcEditor.py:1108
  1605. #: flatcamEditors/FlatCAMGrbEditor.py:459
  1606. #: flatcamEditors/FlatCAMGrbEditor.py:1845
  1607. #: flatcamEditors/FlatCAMGrbEditor.py:1873
  1608. msgid "Click on target location ..."
  1609. msgstr "Clique no local de destino ..."
  1610. #: flatcamEditors/FlatCAMExcEditor.py:190
  1611. msgid "Click on the Drill Circular Array Start position"
  1612. msgstr "Clique na posição inicial Matriz Circular de Brocas"
  1613. #: flatcamEditors/FlatCAMExcEditor.py:212
  1614. #: flatcamEditors/FlatCAMExcEditor.py:626
  1615. #: flatcamEditors/FlatCAMGrbEditor.py:502
  1616. msgid ""
  1617. "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot "
  1618. "separator."
  1619. msgstr ""
  1620. "[ERROR_NOTCL] O valor não é flutuante. Verifique se há uma vírgula em vez do ponto "
  1621. "no separador decimal."
  1622. #: flatcamEditors/FlatCAMExcEditor.py:215
  1623. #, python-format
  1624. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1625. msgstr ""
  1626. "[ERROR_NOTCL] O valor foi digitado incorretamente. Verifique o valor. %s"
  1627. #: flatcamEditors/FlatCAMExcEditor.py:313
  1628. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1629. msgstr ""
  1630. "[WARNING_NOTCL] Muitas brocas para o ângulo de espaçamento selecionado."
  1631. #: flatcamEditors/FlatCAMExcEditor.py:330
  1632. msgid "[success] Done. Drill Array added."
  1633. msgstr "[success] Matriz de Brocas adicionada."
  1634. #: flatcamEditors/FlatCAMExcEditor.py:358
  1635. msgid "[WARNING_NOTCL] To add a slot first select a tool"
  1636. msgstr ""
  1637. "[WARNING_NOTCL] Para adicionar um ranhura, primeiro selecione uma ferramenta"
  1638. #: flatcamEditors/FlatCAMExcEditor.py:415
  1639. #: flatcamEditors/FlatCAMExcEditor.py:422
  1640. #: flatcamEditors/FlatCAMExcEditor.py:690
  1641. #: flatcamEditors/FlatCAMExcEditor.py:697
  1642. msgid "[WARNING_NOTCL] Value is missing or wrong format. Add it and retry."
  1643. msgstr ""
  1644. "[WARNING_NOTCL] Valor está faltando ou formato errado. Adicione e tente "
  1645. "novamente."
  1646. #: flatcamEditors/FlatCAMExcEditor.py:521
  1647. msgid "[success] Done. Adding Slot completed."
  1648. msgstr "[success] Feito. Ranhura adicionada."
  1649. #: flatcamEditors/FlatCAMExcEditor.py:547
  1650. msgid "[WARNING_NOTCL] To add an Slot Array first select a tool in Tool Table"
  1651. msgstr ""
  1652. "[WARNING_NOTCL] Para adicionar uma matriz de ranhuras, primeiro selecione "
  1653. "uma ferramenta na Tabela de Ferramentas"
  1654. #: flatcamEditors/FlatCAMExcEditor.py:604
  1655. msgid "Click on the Slot Circular Array Start position"
  1656. msgstr "Clique na posição inicial da matriz circular da ranhura"
  1657. #: flatcamEditors/FlatCAMExcEditor.py:629
  1658. #: flatcamEditors/FlatCAMGrbEditor.py:505
  1659. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  1660. msgstr "[ERROR_NOTCL] O valor digitado está incorreto. Verifique o valor."
  1661. #: flatcamEditors/FlatCAMExcEditor.py:807
  1662. msgid "[WARNING_NOTCL] Too many Slots for the selected spacing angle."
  1663. msgstr ""
  1664. "[WARNING_NOTCL] Muitas Ranhuras para o ângulo de espaçamento selecionado."
  1665. #: flatcamEditors/FlatCAMExcEditor.py:829
  1666. msgid "[success] Done. Slot Array added."
  1667. msgstr "[success] Feito. Matriz de Ranhuras adicionada."
  1668. #: flatcamEditors/FlatCAMExcEditor.py:846
  1669. msgid "Click on the Drill(s) to resize ..."
  1670. msgstr "Clique na(s) Broca(s) para redimensionar ..."
  1671. #: flatcamEditors/FlatCAMExcEditor.py:876
  1672. msgid ""
  1673. "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1674. msgstr ""
  1675. "[ERROR_NOTCL] Redimensionar broca(s) falhou. Por favor insira um diâmetro "
  1676. "para redimensionar."
  1677. #: flatcamEditors/FlatCAMExcEditor.py:966
  1678. #: flatcamEditors/FlatCAMExcEditor.py:1035
  1679. msgid "[ERROR_NOTCL] Cancelled."
  1680. msgstr "[ERROR_NOTCL] Cancelado."
  1681. #: flatcamEditors/FlatCAMExcEditor.py:1055
  1682. msgid "[success] Done. Drill/Slot Resize completed."
  1683. msgstr "[success] Feito. Redimensionamento de broca/ranhura concluído."
  1684. #: flatcamEditors/FlatCAMExcEditor.py:1057
  1685. msgid "[WARNING_NOTCL] Cancelled. No drills/slots selected for resize ..."
  1686. msgstr ""
  1687. "[WARNING_NOTCL] Cancelado. Nenhuma broca/ranhura selecionada para "
  1688. "redimensionar ..."
  1689. #: flatcamEditors/FlatCAMExcEditor.py:1085
  1690. #: flatcamEditors/FlatCAMGrbEditor.py:1847
  1691. msgid "Click on reference location ..."
  1692. msgstr "Clique no local de referência ..."
  1693. #: flatcamEditors/FlatCAMExcEditor.py:1140
  1694. msgid "[success] Done. Drill(s) Move completed."
  1695. msgstr "[success] Feito. Movimento da Broca realizado."
  1696. #: flatcamEditors/FlatCAMExcEditor.py:1237
  1697. msgid "[success] Done. Drill(s) copied."
  1698. msgstr "[success] Feito. Broca(s) copiada(s)."
  1699. #: flatcamEditors/FlatCAMExcEditor.py:1454 flatcamGUI/FlatCAMGUI.py:5445
  1700. msgid "Excellon Editor"
  1701. msgstr "Editor Excellon"
  1702. #: flatcamEditors/FlatCAMExcEditor.py:1461
  1703. #: flatcamEditors/FlatCAMGrbEditor.py:2341
  1704. msgid "Name:"
  1705. msgstr "Nome:"
  1706. #: flatcamEditors/FlatCAMExcEditor.py:1467 flatcamGUI/ObjectUI.py:534
  1707. #: flatcamGUI/ObjectUI.py:856 flatcamTools/ToolNonCopperClear.py:96
  1708. #: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
  1709. msgid "Tools Table"
  1710. msgstr "Tabela de Ferramentas"
  1711. #: flatcamEditors/FlatCAMExcEditor.py:1469 flatcamGUI/ObjectUI.py:536
  1712. msgid ""
  1713. "Tools in this Excellon object\n"
  1714. "when are used for drilling."
  1715. msgstr ""
  1716. "Ferramentas neste objeto Excellon \n"
  1717. "quando são usadas para perfuração."
  1718. #: flatcamEditors/FlatCAMExcEditor.py:1489
  1719. msgid "Add/Delete Tool"
  1720. msgstr "Adicionar/Excluir Ferramenta"
  1721. #: flatcamEditors/FlatCAMExcEditor.py:1491
  1722. msgid ""
  1723. "Add/Delete a tool to the tool list\n"
  1724. "for this Excellon object."
  1725. msgstr ""
  1726. "Adicionar/Excluir uma ferramenta para a lista de ferramentas\n"
  1727. "para este objeto Excellon."
  1728. #: flatcamEditors/FlatCAMExcEditor.py:1499
  1729. msgid "Tool Dia:"
  1730. msgstr "Diâmetro da Ferramenta:"
  1731. #: flatcamEditors/FlatCAMExcEditor.py:1501 flatcamGUI/FlatCAMGUI.py:5474
  1732. #: flatcamGUI/ObjectUI.py:977
  1733. msgid "Diameter for the new tool"
  1734. msgstr "Diâmetro para a nova ferramenta"
  1735. #: flatcamEditors/FlatCAMExcEditor.py:1509
  1736. msgid "Add Tool"
  1737. msgstr "Adicionar Ferramenta"
  1738. #: flatcamEditors/FlatCAMExcEditor.py:1511
  1739. msgid ""
  1740. "Add a new tool to the tool list\n"
  1741. "with the diameter specified above."
  1742. msgstr ""
  1743. "Adiciona uma nova ferramenta à lista de ferramentas\n"
  1744. "com o diâmetro especificado acima."
  1745. #: flatcamEditors/FlatCAMExcEditor.py:1523
  1746. msgid "Delete Tool"
  1747. msgstr "Excluir ferramenta"
  1748. #: flatcamEditors/FlatCAMExcEditor.py:1525
  1749. msgid ""
  1750. "Delete a tool in the tool list\n"
  1751. "by selecting a row in the tool table."
  1752. msgstr ""
  1753. "Exclui uma ferramenta da lista de ferramentas selecionando uma linha na "
  1754. "tabela de ferramentas."
  1755. #: flatcamEditors/FlatCAMExcEditor.py:1543
  1756. msgid "Resize Drill(s)"
  1757. msgstr "Redimensionar Broca(s)"
  1758. #: flatcamEditors/FlatCAMExcEditor.py:1545
  1759. msgid "Resize a drill or a selection of drills."
  1760. msgstr "Redimensione uma broca ou uma seleção de brocas."
  1761. #: flatcamEditors/FlatCAMExcEditor.py:1552
  1762. msgid "Resize Dia:"
  1763. msgstr "Redimensionar Dia:"
  1764. #: flatcamEditors/FlatCAMExcEditor.py:1554
  1765. msgid "Diameter to resize to."
  1766. msgstr "Redimensionar Diâmetro para."
  1767. #: flatcamEditors/FlatCAMExcEditor.py:1562
  1768. msgid "Resize"
  1769. msgstr "Redimensionar"
  1770. #: flatcamEditors/FlatCAMExcEditor.py:1564
  1771. msgid "Resize drill(s)"
  1772. msgstr "Redimensionar broca(s)"
  1773. #: flatcamEditors/FlatCAMExcEditor.py:1589 flatcamGUI/FlatCAMGUI.py:1692
  1774. msgid "Add Drill Array"
  1775. msgstr "Adicionar Matriz de Brocas"
  1776. #: flatcamEditors/FlatCAMExcEditor.py:1591
  1777. msgid "Add an array of drills (linear or circular array)"
  1778. msgstr "Adiciona uma matriz de brocas (matriz linear ou circular)"
  1779. #: flatcamEditors/FlatCAMExcEditor.py:1597
  1780. msgid ""
  1781. "Select the type of drills array to create.\n"
  1782. "It can be Linear X(Y) or Circular"
  1783. msgstr ""
  1784. "Selecione o tipo de matriz de brocas para criar.\n"
  1785. "Pode ser Linear X(Y) ou Circular"
  1786. #: flatcamEditors/FlatCAMExcEditor.py:1600
  1787. #: flatcamEditors/FlatCAMExcEditor.py:1802
  1788. #: flatcamEditors/FlatCAMGrbEditor.py:2627
  1789. msgid "Linear"
  1790. msgstr "Linear"
  1791. #: flatcamEditors/FlatCAMExcEditor.py:1601
  1792. #: flatcamEditors/FlatCAMExcEditor.py:1803
  1793. #: flatcamEditors/FlatCAMGrbEditor.py:2628
  1794. msgid "Circular"
  1795. msgstr "Circular"
  1796. #: flatcamEditors/FlatCAMExcEditor.py:1609
  1797. msgid "Nr of drills:"
  1798. msgstr "Nº de brocas:"
  1799. #: flatcamEditors/FlatCAMExcEditor.py:1610 flatcamGUI/FlatCAMGUI.py:5486
  1800. msgid "Specify how many drills to be in the array."
  1801. msgstr "Especifique quantas brocas devem estar na matriz."
  1802. #: flatcamEditors/FlatCAMExcEditor.py:1627
  1803. #: flatcamEditors/FlatCAMExcEditor.py:1674
  1804. #: flatcamEditors/FlatCAMExcEditor.py:1738
  1805. #: flatcamEditors/FlatCAMExcEditor.py:1829
  1806. #: flatcamEditors/FlatCAMExcEditor.py:1876
  1807. msgid "Direction:"
  1808. msgstr "Direção:"
  1809. #: flatcamEditors/FlatCAMExcEditor.py:1629
  1810. #: flatcamEditors/FlatCAMExcEditor.py:1831
  1811. #: flatcamEditors/FlatCAMGrbEditor.py:2656 flatcamGUI/FlatCAMGUI.py:4652
  1812. #: flatcamGUI/FlatCAMGUI.py:5501 flatcamGUI/FlatCAMGUI.py:5632
  1813. msgid ""
  1814. "Direction on which the linear array is oriented:\n"
  1815. "- 'X' - horizontal axis \n"
  1816. "- 'Y' - vertical axis or \n"
  1817. "- 'Angle' - a custom angle for the array inclination"
  1818. msgstr ""
  1819. "Direção na qual a matriz linear é orientada: \n"
  1820. "- 'X' - eixo horizontal\n"
  1821. "- 'Y' - eixo vertical ou\n"
  1822. "- 'Ângulo' - um ângulo personalizado para a inclinação da matriz"
  1823. #: flatcamEditors/FlatCAMExcEditor.py:1636
  1824. #: flatcamEditors/FlatCAMExcEditor.py:1747
  1825. #: flatcamEditors/FlatCAMExcEditor.py:1838
  1826. #: flatcamEditors/FlatCAMGrbEditor.py:2663 flatcamGUI/FlatCAMGUI.py:4658
  1827. #: flatcamGUI/FlatCAMGUI.py:5507 flatcamGUI/FlatCAMGUI.py:5587
  1828. #: flatcamGUI/FlatCAMGUI.py:5638
  1829. msgid "X"
  1830. msgstr "X"
  1831. #: flatcamEditors/FlatCAMExcEditor.py:1637
  1832. #: flatcamEditors/FlatCAMExcEditor.py:1748
  1833. #: flatcamEditors/FlatCAMExcEditor.py:1839
  1834. #: flatcamEditors/FlatCAMGrbEditor.py:2664 flatcamGUI/FlatCAMGUI.py:4659
  1835. #: flatcamGUI/FlatCAMGUI.py:5508 flatcamGUI/FlatCAMGUI.py:5588
  1836. #: flatcamGUI/FlatCAMGUI.py:5639
  1837. msgid "Y"
  1838. msgstr "Y"
  1839. #: flatcamEditors/FlatCAMExcEditor.py:1638
  1840. #: flatcamEditors/FlatCAMExcEditor.py:1749
  1841. #: flatcamEditors/FlatCAMExcEditor.py:1840
  1842. #: flatcamEditors/FlatCAMGrbEditor.py:2665
  1843. #: flatcamEditors/FlatCAMGrbEditor.py:2678
  1844. #: flatcamEditors/FlatCAMGrbEditor.py:2714 flatcamGUI/FlatCAMGUI.py:4660
  1845. #: flatcamGUI/FlatCAMGUI.py:4677 flatcamGUI/FlatCAMGUI.py:5509
  1846. #: flatcamGUI/FlatCAMGUI.py:5526 flatcamGUI/FlatCAMGUI.py:5589
  1847. #: flatcamGUI/FlatCAMGUI.py:5594 flatcamGUI/FlatCAMGUI.py:5640
  1848. #: flatcamGUI/FlatCAMGUI.py:5657 flatcamTools/ToolTransform.py:68
  1849. msgid "Angle"
  1850. msgstr "Ângulo"
  1851. #: flatcamEditors/FlatCAMExcEditor.py:1642
  1852. #: flatcamEditors/FlatCAMExcEditor.py:1844
  1853. msgid "Pitch:"
  1854. msgstr "Passo:"
  1855. #: flatcamEditors/FlatCAMExcEditor.py:1644
  1856. #: flatcamEditors/FlatCAMExcEditor.py:1846
  1857. #: flatcamEditors/FlatCAMGrbEditor.py:2671 flatcamGUI/FlatCAMGUI.py:4668
  1858. #: flatcamGUI/FlatCAMGUI.py:5517 flatcamGUI/FlatCAMGUI.py:5648
  1859. msgid "Pitch = Distance between elements of the array."
  1860. msgstr "Passo = Distância entre os elementos da matriz."
  1861. #: flatcamEditors/FlatCAMExcEditor.py:1652
  1862. #: flatcamEditors/FlatCAMExcEditor.py:1686
  1863. #: flatcamEditors/FlatCAMExcEditor.py:1753
  1864. #: flatcamEditors/FlatCAMExcEditor.py:1854
  1865. #: flatcamEditors/FlatCAMExcEditor.py:1888
  1866. #: flatcamEditors/FlatCAMGeoEditor.py:667
  1867. #: flatcamEditors/FlatCAMGrbEditor.py:4826
  1868. msgid "Angle:"
  1869. msgstr "Ângulo:"
  1870. #: flatcamEditors/FlatCAMExcEditor.py:1654
  1871. #: flatcamEditors/FlatCAMExcEditor.py:1856
  1872. #: flatcamEditors/FlatCAMGrbEditor.py:2680
  1873. msgid ""
  1874. "Angle at which the linear array is placed.\n"
  1875. "The precision is of max 2 decimals.\n"
  1876. "Min value is: -359.99 degrees.\n"
  1877. "Max value is: 360.00 degrees."
  1878. msgstr ""
  1879. "Ângulo no qual a matriz linear é colocada.\n"
  1880. "A precisão é de no máximo 2 decimais.\n"
  1881. "O valor mínimo é: -359.99 graus.\n"
  1882. "O valor máximo é: 360.00 graus."
  1883. #: flatcamEditors/FlatCAMExcEditor.py:1675
  1884. #: flatcamEditors/FlatCAMExcEditor.py:1877
  1885. #: flatcamEditors/FlatCAMGrbEditor.py:2701
  1886. msgid ""
  1887. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1888. "clockwise."
  1889. msgstr ""
  1890. "Sentido da matriz circular. Pode ser CW = horário ou CCW = "
  1891. "anti-horário."
  1892. #: flatcamEditors/FlatCAMExcEditor.py:1682
  1893. #: flatcamEditors/FlatCAMExcEditor.py:1884
  1894. #: flatcamEditors/FlatCAMGrbEditor.py:2709 flatcamGUI/FlatCAMGUI.py:4696
  1895. #: flatcamGUI/FlatCAMGUI.py:5087 flatcamGUI/FlatCAMGUI.py:5545
  1896. #: flatcamGUI/FlatCAMGUI.py:5676 flatcamGUI/FlatCAMGUI.py:5878
  1897. msgid "CW"
  1898. msgstr "CW"
  1899. #: flatcamEditors/FlatCAMExcEditor.py:1683
  1900. #: flatcamEditors/FlatCAMExcEditor.py:1885
  1901. #: flatcamEditors/FlatCAMGrbEditor.py:2710 flatcamGUI/FlatCAMGUI.py:4697
  1902. #: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/FlatCAMGUI.py:5546
  1903. #: flatcamGUI/FlatCAMGUI.py:5677 flatcamGUI/FlatCAMGUI.py:5879
  1904. msgid "CCW"
  1905. msgstr "CCW"
  1906. #: flatcamEditors/FlatCAMExcEditor.py:1687
  1907. #: flatcamEditors/FlatCAMExcEditor.py:1889
  1908. #: flatcamEditors/FlatCAMGrbEditor.py:2716 flatcamGUI/FlatCAMGUI.py:4679
  1909. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5528
  1910. #: flatcamGUI/FlatCAMGUI.py:5554 flatcamGUI/FlatCAMGUI.py:5659
  1911. #: flatcamGUI/FlatCAMGUI.py:5685
  1912. msgid "Angle at which each element in circular array is placed."
  1913. msgstr "Ângulo no qual cada elemento na matriz circular é colocado."
  1914. #: flatcamEditors/FlatCAMExcEditor.py:1717
  1915. msgid "Slot Parameters"
  1916. msgstr "Parâmetros de Ranhura"
  1917. #: flatcamEditors/FlatCAMExcEditor.py:1719
  1918. msgid ""
  1919. "Parameters for adding a slot (hole with oval shape)\n"
  1920. "either single or as an part of an array."
  1921. msgstr ""
  1922. "Parâmetros para adicionar uma ranhura (furo com forma oval)\n"
  1923. "seja única ou como parte de uma matriz."
  1924. #: flatcamEditors/FlatCAMExcEditor.py:1728
  1925. msgid "Length:"
  1926. msgstr "Comprimento:"
  1927. #: flatcamEditors/FlatCAMExcEditor.py:1730 flatcamGUI/FlatCAMGUI.py:5569
  1928. msgid "Length = The length of the slot."
  1929. msgstr "Comprimento = o comprimento da ranhura."
  1930. #: flatcamEditors/FlatCAMExcEditor.py:1740 flatcamGUI/FlatCAMGUI.py:5580
  1931. msgid ""
  1932. "Direction on which the slot is oriented:\n"
  1933. "- 'X' - horizontal axis \n"
  1934. "- 'Y' - vertical axis or \n"
  1935. "- 'Angle' - a custom angle for the slot inclination"
  1936. msgstr ""
  1937. "Direção na qual o ranhura é orientado:\n"
  1938. "- 'X' - eixo horizontal\n"
  1939. "- 'Y' - eixo vertical ou\n"
  1940. "- 'Angle' - um ângulo personalizado para a inclinação da ranhura"
  1941. #: flatcamEditors/FlatCAMExcEditor.py:1755 flatcamGUI/FlatCAMGUI.py:5596
  1942. msgid ""
  1943. "Angle at which the slot is placed.\n"
  1944. "The precision is of max 2 decimals.\n"
  1945. "Min value is: -359.99 degrees.\n"
  1946. "Max value is: 360.00 degrees."
  1947. msgstr ""
  1948. "Ângulo no qual o ranhura é colocado.\n"
  1949. "A precisão é de no máximo 2 decimais.\n"
  1950. "O valor mínimo é: -359.99 graus.\n"
  1951. "O valor máximo é: 360.00 graus."
  1952. #: flatcamEditors/FlatCAMExcEditor.py:1788
  1953. msgid "Slot Array Parameters"
  1954. msgstr "Parâm. da matriz de ranhura"
  1955. #: flatcamEditors/FlatCAMExcEditor.py:1790
  1956. msgid "Parameters for the array of slots (linear or circular array)"
  1957. msgstr "Parâmetros para a matriz de ranhuras (matriz linear ou circular)"
  1958. #: flatcamEditors/FlatCAMExcEditor.py:1799
  1959. msgid ""
  1960. "Select the type of slot array to create.\n"
  1961. "It can be Linear X(Y) or Circular"
  1962. msgstr ""
  1963. "Selecione o tipo de matriz de ranhuras para criar.\n"
  1964. "Pode ser Linear X(Y) ou Circular"
  1965. #: flatcamEditors/FlatCAMExcEditor.py:1811
  1966. msgid "Nr of slots:"
  1967. msgstr "Nº de ranhuras:"
  1968. #: flatcamEditors/FlatCAMExcEditor.py:1812 flatcamGUI/FlatCAMGUI.py:5620
  1969. msgid "Specify how many slots to be in the array."
  1970. msgstr "Especifique o número de ranhuras da matriz."
  1971. #: flatcamEditors/FlatCAMExcEditor.py:2409
  1972. msgid ""
  1973. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1974. "Save and reedit Excellon if you need to add this tool. "
  1975. msgstr ""
  1976. "[WARNING_NOTCL] Ferramenta já na lista de ferramentas original ou atual.\n"
  1977. "Salve e reedite Excellon se precisar adicionar essa ferramenta. "
  1978. #: flatcamEditors/FlatCAMExcEditor.py:2418 flatcamGUI/FlatCAMGUI.py:3134
  1979. #, python-brace-format
  1980. msgid "[success] Added new tool with dia: {dia} {units}"
  1981. msgstr "[success] Adicionada nova ferramenta com dia: {dia} {units}"
  1982. #: flatcamEditors/FlatCAMExcEditor.py:2450
  1983. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1984. msgstr "[WARNING_NOTCL] Selecione uma ferramenta na Tabela de Ferramentas"
  1985. #: flatcamEditors/FlatCAMExcEditor.py:2482
  1986. #, python-brace-format
  1987. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1988. msgstr "[success] Ferramenta excluída com dia: {del_dia} {units}"
  1989. #: flatcamEditors/FlatCAMExcEditor.py:2633
  1990. msgid "[success] Done. Tool edit completed."
  1991. msgstr "[success] Feito. Edição de ferramenta concluída."
  1992. #: flatcamEditors/FlatCAMExcEditor.py:3168
  1993. msgid ""
  1994. "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon "
  1995. "creation."
  1996. msgstr ""
  1997. "[ERROR_NOTCL] Não há definições de ferramentas no arquivo. Abortando a "
  1998. "criação do Excellon."
  1999. #: flatcamEditors/FlatCAMExcEditor.py:3171
  2000. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  2001. msgstr "[ERROR] Um erro interno ocorreu. Veja shell (linha de comando).\n"
  2002. #: flatcamEditors/FlatCAMExcEditor.py:3177
  2003. msgid "Creating Excellon."
  2004. msgstr "Criando Excellon."
  2005. #: flatcamEditors/FlatCAMExcEditor.py:3186
  2006. msgid "[success] Excellon editing finished."
  2007. msgstr "[success] Edição de Excellon terminada."
  2008. #: flatcamEditors/FlatCAMExcEditor.py:3203
  2009. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  2010. msgstr "[WARNING_NOTCL] Cancelado. Não há ferramenta/broca selecionada"
  2011. #: flatcamEditors/FlatCAMExcEditor.py:3785
  2012. msgid "[success] Done. Drill(s) deleted."
  2013. msgstr "[success] Feito. Brocas(s) excluída(s)."
  2014. #: flatcamEditors/FlatCAMExcEditor.py:3857
  2015. #: flatcamEditors/FlatCAMExcEditor.py:3867
  2016. #: flatcamEditors/FlatCAMGrbEditor.py:4544
  2017. msgid "Click on the circular array Center position"
  2018. msgstr "Clique na posição central da matriz circular"
  2019. #: flatcamEditors/FlatCAMGeoEditor.py:82
  2020. msgid "Buffer distance:"
  2021. msgstr "Distância do buffer:"
  2022. #: flatcamEditors/FlatCAMGeoEditor.py:83
  2023. msgid "Buffer corner:"
  2024. msgstr "Canto do buffer:"
  2025. #: flatcamEditors/FlatCAMGeoEditor.py:85
  2026. msgid ""
  2027. "There are 3 types of corners:\n"
  2028. " - 'Round': the corner is rounded for exterior buffer.\n"
  2029. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  2030. " - 'Beveled:' the corner is a line that directly connects the features "
  2031. "meeting in the corner"
  2032. msgstr ""
  2033. "Existem 3 tipos de cantos: \n"
  2034. " - 'Redondo': o canto é arredondado para buffer externo. \n"
  2035. " - 'Quadrado:' o canto é em um ângulo agudo para buffer externo. \n"
  2036. " - 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
  2037. "encontrados no canto"
  2038. #: flatcamEditors/FlatCAMGeoEditor.py:91
  2039. #: flatcamEditors/FlatCAMGrbEditor.py:2502
  2040. msgid "Round"
  2041. msgstr "Redondo"
  2042. #: flatcamEditors/FlatCAMGeoEditor.py:92
  2043. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  2044. msgid "Square"
  2045. msgstr "Quadrado"
  2046. #: flatcamEditors/FlatCAMGeoEditor.py:93
  2047. #: flatcamEditors/FlatCAMGrbEditor.py:2504
  2048. msgid "Beveled"
  2049. msgstr "Chanfrado"
  2050. #: flatcamEditors/FlatCAMGeoEditor.py:100
  2051. msgid "Buffer Interior"
  2052. msgstr "Buffer Interior"
  2053. #: flatcamEditors/FlatCAMGeoEditor.py:102
  2054. msgid "Buffer Exterior"
  2055. msgstr "Buffer Exterior"
  2056. #: flatcamEditors/FlatCAMGeoEditor.py:108
  2057. msgid "Full Buffer"
  2058. msgstr "Buffer Completo"
  2059. #: flatcamEditors/FlatCAMGeoEditor.py:129
  2060. #: flatcamEditors/FlatCAMGeoEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4712
  2061. msgid "Buffer Tool"
  2062. msgstr "Ferramenta Buffer"
  2063. #: flatcamEditors/FlatCAMGeoEditor.py:140
  2064. #: flatcamEditors/FlatCAMGeoEditor.py:157
  2065. #: flatcamEditors/FlatCAMGeoEditor.py:174
  2066. #: flatcamEditors/FlatCAMGeoEditor.py:2707
  2067. #: flatcamEditors/FlatCAMGeoEditor.py:2735
  2068. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  2069. #: flatcamEditors/FlatCAMGrbEditor.py:4596
  2070. msgid ""
  2071. "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and "
  2072. "retry."
  2073. msgstr ""
  2074. "[WARNING_NOTCL] O valor da distância do buffer está ausente ou em formato "
  2075. "incorreto. Altere e tente novamente."
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:345
  2077. msgid "Text Tool"
  2078. msgstr "Ferramenta de Texto"
  2079. #: flatcamEditors/FlatCAMGeoEditor.py:403 flatcamGUI/FlatCAMGUI.py:826
  2080. msgid "Tool"
  2081. msgstr "Ferramenta"
  2082. #: flatcamEditors/FlatCAMGeoEditor.py:434
  2083. msgid "Tool dia:"
  2084. msgstr "Diâmetro da Ferramenta:"
  2085. #: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6686
  2086. msgid ""
  2087. "Diameter of the tool to\n"
  2088. "be used in the operation."
  2089. msgstr ""
  2090. "Diâmetro da ferramenta para \n"
  2091. "ser usada na operação."
  2092. #: flatcamEditors/FlatCAMGeoEditor.py:445
  2093. #: flatcamTools/ToolNonCopperClear.py:201
  2094. msgid "Overlap Rate:"
  2095. msgstr "Taxa de Sobreposição:"
  2096. #: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6717
  2097. #: flatcamTools/ToolPaint.py:207
  2098. #, python-format
  2099. msgid ""
  2100. "How much (fraction) of the tool width to overlap each tool pass.\n"
  2101. "Example:\n"
  2102. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  2103. "\n"
  2104. "Adjust the value starting with lower values\n"
  2105. "and increasing it if areas that should be painted are still \n"
  2106. "not painted.\n"
  2107. "Lower values = faster processing, faster execution on PCB.\n"
  2108. "Higher values = slow processing and slow execution on CNC\n"
  2109. "due of too many paths."
  2110. msgstr ""
  2111. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  2112. "ferramenta.\n"
  2113. "Exemplo:\n"
  2114. "Um valor de 0.25 significa uma sobreposição de 25% do diâmetro da "
  2115. "ferramenta.\n"
  2116. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  2117. "deveria ser pintada não foi pintada.\n"
  2118. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  2119. "Valores maiores = processamento lento e execução lenta no CNC \n"
  2120. " devido ao número de caminhos."
  2121. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamTools/ToolCutOut.py:101
  2122. msgid "Margin:"
  2123. msgstr "Margem:"
  2124. #: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6734
  2125. #: flatcamTools/ToolPaint.py:224
  2126. msgid ""
  2127. "Distance by which to avoid\n"
  2128. "the edges of the polygon to\n"
  2129. "be painted."
  2130. msgstr ""
  2131. "Distância pela qual evitar \n"
  2132. "as bordas do polígono para \n"
  2133. "ser pintado."
  2134. #: flatcamEditors/FlatCAMGeoEditor.py:474
  2135. msgid "Method:"
  2136. msgstr "Método:"
  2137. #: flatcamEditors/FlatCAMGeoEditor.py:476
  2138. msgid ""
  2139. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  2140. "<BR><B>Seed-based</B>: Outwards from seed."
  2141. msgstr ""
  2142. "Algoritmo para pintar o polígono: <BR><B>Padrão</B>: Passo fixo para dentro."
  2143. "<BR><B>Baseado em semente</B>: para fora da semente."
  2144. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6418
  2145. #: flatcamGUI/FlatCAMGUI.py:6752 flatcamTools/ToolNonCopperClear.py:235
  2146. #: flatcamTools/ToolPaint.py:242
  2147. msgid "Standard"
  2148. msgstr "Padrão"
  2149. #: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6419
  2150. #: flatcamGUI/FlatCAMGUI.py:6753 flatcamTools/ToolNonCopperClear.py:236
  2151. #: flatcamTools/ToolPaint.py:243
  2152. msgid "Seed-based"
  2153. msgstr "Baseado em semente"
  2154. #: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6420
  2155. #: flatcamGUI/FlatCAMGUI.py:6754 flatcamTools/ToolNonCopperClear.py:237
  2156. #: flatcamTools/ToolPaint.py:244
  2157. msgid "Straight lines"
  2158. msgstr "Linhas retas"
  2159. #: flatcamEditors/FlatCAMGeoEditor.py:489
  2160. msgid "Connect:"
  2161. msgstr "Conectar:"
  2162. #: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6427
  2163. #: flatcamGUI/FlatCAMGUI.py:6761 flatcamTools/ToolNonCopperClear.py:244
  2164. #: flatcamTools/ToolPaint.py:251
  2165. msgid ""
  2166. "Draw lines between resulting\n"
  2167. "segments to minimize tool lifts."
  2168. msgstr ""
  2169. "Desenha linhas entre os segmentos resultantes\n"
  2170. "para minimizar as elevações de ferramentas."
  2171. #: flatcamEditors/FlatCAMGeoEditor.py:498
  2172. msgid "Contour:"
  2173. msgstr "Contorno:"
  2174. #: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6436
  2175. #: flatcamGUI/FlatCAMGUI.py:6771 flatcamTools/ToolNonCopperClear.py:253
  2176. #: flatcamTools/ToolPaint.py:260
  2177. msgid ""
  2178. "Cut around the perimeter of the polygon\n"
  2179. "to trim rough edges."
  2180. msgstr "Corta no perímetro do polígono para cortar as arestas."
  2181. #: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1655
  2182. msgid "Paint"
  2183. msgstr "Pintura"
  2184. #: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
  2185. #: flatcamGUI/FlatCAMGUI.py:1979 flatcamGUI/ObjectUI.py:1297
  2186. #: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:446
  2187. msgid "Paint Tool"
  2188. msgstr "Ferramenta de Pintura"
  2189. #: flatcamEditors/FlatCAMGeoEditor.py:565
  2190. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  2191. msgstr "[WARNING_NOTCL] Pintura cancelada. Nenhuma forma selecionada."
  2192. #: flatcamEditors/FlatCAMGeoEditor.py:576 flatcamTools/ToolCutOut.py:381
  2193. #: flatcamTools/ToolCutOut.py:577 flatcamTools/ToolCutOut.py:743
  2194. #: flatcamTools/ToolCutOut.py:873 flatcamTools/ToolDblSided.py:367
  2195. msgid ""
  2196. "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
  2197. "retry."
  2198. msgstr ""
  2199. "[WARNING_NOTCL] O valor do diâmetro da ferramenta está ausente ou em formato "
  2200. "incorreto. Altere e tente novamente."
  2201. #: flatcamEditors/FlatCAMGeoEditor.py:587
  2202. msgid ""
  2203. "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  2204. msgstr ""
  2205. "[WARNING_NOTCL] O valor de sobreposição está ausente ou em formato "
  2206. "incorreto. Altere e tente novamente."
  2207. #: flatcamEditors/FlatCAMGeoEditor.py:599
  2208. msgid ""
  2209. "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and "
  2210. "retry."
  2211. msgstr ""
  2212. "[WARNING_NOTCL] O valor da distância da margem está ausente ou em formato "
  2213. "incorreto. Altere e tente novamente."
  2214. #: flatcamEditors/FlatCAMGeoEditor.py:608
  2215. #: flatcamEditors/FlatCAMGeoEditor.py:2714
  2216. #: flatcamEditors/FlatCAMGeoEditor.py:2742
  2217. #: flatcamEditors/FlatCAMGeoEditor.py:2770 flatcamGUI/FlatCAMGUI.py:5727
  2218. #: flatcamTools/ToolProperties.py:109 flatcamTools/ToolProperties.py:134
  2219. msgid "Tools"
  2220. msgstr "Ferramentas"
  2221. #: flatcamEditors/FlatCAMGeoEditor.py:619
  2222. #: flatcamEditors/FlatCAMGeoEditor.py:992
  2223. #: flatcamEditors/FlatCAMGrbEditor.py:4777
  2224. #: flatcamEditors/FlatCAMGrbEditor.py:5162 flatcamGUI/FlatCAMGUI.py:672
  2225. #: flatcamGUI/FlatCAMGUI.py:1992 flatcamTools/ToolTransform.py:403
  2226. msgid "Transform Tool"
  2227. msgstr "Ferramenta Transformar"
  2228. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2229. #: flatcamEditors/FlatCAMGeoEditor.py:681
  2230. #: flatcamEditors/FlatCAMGrbEditor.py:4778
  2231. #: flatcamEditors/FlatCAMGrbEditor.py:4840 flatcamTools/ToolTransform.py:24
  2232. #: flatcamTools/ToolTransform.py:82
  2233. msgid "Rotate"
  2234. msgstr "Girar"
  2235. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2236. #: flatcamEditors/FlatCAMGrbEditor.py:4779 flatcamTools/ToolTransform.py:25
  2237. msgid "Skew/Shear"
  2238. msgstr "Inclinar"
  2239. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2240. #: flatcamEditors/FlatCAMGrbEditor.py:2549
  2241. #: flatcamEditors/FlatCAMGrbEditor.py:4780 flatcamGUI/FlatCAMGUI.py:739
  2242. #: flatcamGUI/FlatCAMGUI.py:1682 flatcamGUI/FlatCAMGUI.py:2061
  2243. #: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
  2244. #: flatcamTools/ToolTransform.py:26
  2245. msgid "Scale"
  2246. msgstr "Redimensionar"
  2247. #: flatcamEditors/FlatCAMGeoEditor.py:623
  2248. #: flatcamEditors/FlatCAMGrbEditor.py:4781 flatcamTools/ToolTransform.py:27
  2249. msgid "Mirror (Flip)"
  2250. msgstr "Espelhar (Flip)"
  2251. #: flatcamEditors/FlatCAMGeoEditor.py:624
  2252. #: flatcamEditors/FlatCAMGrbEditor.py:4782 flatcamGUI/FlatCAMGUI.py:6458
  2253. #: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
  2254. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
  2255. #: flatcamTools/ToolNonCopperClear.py:275 flatcamTools/ToolTransform.py:28
  2256. msgid "Offset"
  2257. msgstr "Deslocamento"
  2258. #: flatcamEditors/FlatCAMGeoEditor.py:635
  2259. #: flatcamEditors/FlatCAMGrbEditor.py:4794
  2260. #, python-format
  2261. msgid "Editor %s"
  2262. msgstr "Editor %s"
  2263. #: flatcamEditors/FlatCAMGeoEditor.py:669
  2264. #: flatcamEditors/FlatCAMGrbEditor.py:4828 flatcamGUI/FlatCAMGUI.py:7082
  2265. #: flatcamTools/ToolTransform.py:70
  2266. msgid ""
  2267. "Angle for Rotation action, in degrees.\n"
  2268. "Float number between -360 and 359.\n"
  2269. "Positive numbers for CW motion.\n"
  2270. "Negative numbers for CCW motion."
  2271. msgstr ""
  2272. "Ângulo para a ação Rotação, em graus. \n"
  2273. "Número flutuante entre -360 e 359. \n"
  2274. "Números positivos para movimento horário. \n"
  2275. "Números negativos para movimento anti-horário."
  2276. #: flatcamEditors/FlatCAMGeoEditor.py:683
  2277. #: flatcamEditors/FlatCAMGrbEditor.py:4842
  2278. msgid ""
  2279. "Rotate the selected shape(s).\n"
  2280. "The point of reference is the middle of\n"
  2281. "the bounding box for all selected shapes."
  2282. msgstr ""
  2283. "Gira a(s) forma(s) selecionada(s). \n"
  2284. "O ponto de referência é o meio da caixa\n"
  2285. "delimitadora para todas as formas selecionadas."
  2286. #: flatcamEditors/FlatCAMGeoEditor.py:706
  2287. #: flatcamEditors/FlatCAMGrbEditor.py:4865
  2288. msgid "Angle X:"
  2289. msgstr "Ângulo X:"
  2290. #: flatcamEditors/FlatCAMGeoEditor.py:708
  2291. #: flatcamEditors/FlatCAMGeoEditor.py:726
  2292. #: flatcamEditors/FlatCAMGrbEditor.py:4867
  2293. #: flatcamEditors/FlatCAMGrbEditor.py:4885 flatcamGUI/FlatCAMGUI.py:7094
  2294. #: flatcamGUI/FlatCAMGUI.py:7104 flatcamTools/ToolTransform.py:109
  2295. #: flatcamTools/ToolTransform.py:127
  2296. msgid ""
  2297. "Angle for Skew action, in degrees.\n"
  2298. "Float number between -360 and 359."
  2299. msgstr ""
  2300. "Ângulo de inclinação, em graus. \n"
  2301. "Número flutuante entre -360 e 359."
  2302. #: flatcamEditors/FlatCAMGeoEditor.py:717
  2303. #: flatcamEditors/FlatCAMGrbEditor.py:4876 flatcamTools/ToolTransform.py:118
  2304. msgid "Skew X"
  2305. msgstr "Inclinar X"
  2306. #: flatcamEditors/FlatCAMGeoEditor.py:719
  2307. #: flatcamEditors/FlatCAMGeoEditor.py:737
  2308. #: flatcamEditors/FlatCAMGrbEditor.py:4878
  2309. #: flatcamEditors/FlatCAMGrbEditor.py:4896
  2310. msgid ""
  2311. "Skew/shear the selected shape(s).\n"
  2312. "The point of reference is the middle of\n"
  2313. "the bounding box for all selected shapes."
  2314. msgstr ""
  2315. "Inclinar/distorcer a(s) forma(s) selecionada(s). \n"
  2316. "O ponto de referência é o meio da caixa \n"
  2317. "delimitadora para todas as formas selecionadas."
  2318. #: flatcamEditors/FlatCAMGeoEditor.py:724
  2319. #: flatcamEditors/FlatCAMGrbEditor.py:4883
  2320. msgid "Angle Y:"
  2321. msgstr "Ângulo Y:"
  2322. #: flatcamEditors/FlatCAMGeoEditor.py:735
  2323. #: flatcamEditors/FlatCAMGrbEditor.py:4894 flatcamTools/ToolTransform.py:136
  2324. msgid "Skew Y"
  2325. msgstr "Inclinar Y"
  2326. #: flatcamEditors/FlatCAMGeoEditor.py:763
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:4922
  2328. msgid "Factor X:"
  2329. msgstr "Fator X:"
  2330. #: flatcamEditors/FlatCAMGeoEditor.py:765
  2331. #: flatcamEditors/FlatCAMGrbEditor.py:4924
  2332. msgid "Factor for Scale action over X axis."
  2333. msgstr "Fator de escala sobre o eixo X."
  2334. #: flatcamEditors/FlatCAMGeoEditor.py:773
  2335. #: flatcamEditors/FlatCAMGrbEditor.py:4932 flatcamTools/ToolTransform.py:174
  2336. msgid "Scale X"
  2337. msgstr "Redimensionar X"
  2338. #: flatcamEditors/FlatCAMGeoEditor.py:775
  2339. #: flatcamEditors/FlatCAMGeoEditor.py:792
  2340. #: flatcamEditors/FlatCAMGrbEditor.py:4934
  2341. #: flatcamEditors/FlatCAMGrbEditor.py:4951
  2342. msgid ""
  2343. "Scale the selected shape(s).\n"
  2344. "The point of reference depends on \n"
  2345. "the Scale reference checkbox state."
  2346. msgstr ""
  2347. "Redimensiona a(s) forma(s) selecionada(s). \n"
  2348. "O ponto de referência depende \n"
  2349. "do estado da caixa de seleção."
  2350. #: flatcamEditors/FlatCAMGeoEditor.py:780
  2351. #: flatcamEditors/FlatCAMGrbEditor.py:4939
  2352. msgid "Factor Y:"
  2353. msgstr "Fator Y:"
  2354. #: flatcamEditors/FlatCAMGeoEditor.py:782
  2355. #: flatcamEditors/FlatCAMGrbEditor.py:4941
  2356. msgid "Factor for Scale action over Y axis."
  2357. msgstr "Fator para ação de escala no eixo Y."
  2358. #: flatcamEditors/FlatCAMGeoEditor.py:790
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:4949 flatcamTools/ToolTransform.py:191
  2360. msgid "Scale Y"
  2361. msgstr "Redimensionar Y"
  2362. #: flatcamEditors/FlatCAMGeoEditor.py:799
  2363. #: flatcamEditors/FlatCAMGrbEditor.py:4958 flatcamGUI/FlatCAMGUI.py:7129
  2364. #: flatcamTools/ToolTransform.py:200
  2365. msgid "Link"
  2366. msgstr "Fixar Taxa"
  2367. #: flatcamEditors/FlatCAMGeoEditor.py:801
  2368. #: flatcamEditors/FlatCAMGrbEditor.py:4960
  2369. msgid ""
  2370. "Scale the selected shape(s)\n"
  2371. "using the Scale Factor X for both axis."
  2372. msgstr ""
  2373. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2374. "usando o Fator de Escala X para ambos os eixos."
  2375. #: flatcamEditors/FlatCAMGeoEditor.py:807
  2376. #: flatcamEditors/FlatCAMGrbEditor.py:4966 flatcamGUI/FlatCAMGUI.py:7137
  2377. #: flatcamTools/ToolTransform.py:209
  2378. msgid "Scale Reference"
  2379. msgstr "Referência de escala"
  2380. #: flatcamEditors/FlatCAMGeoEditor.py:809
  2381. #: flatcamEditors/FlatCAMGrbEditor.py:4968
  2382. msgid ""
  2383. "Scale the selected shape(s)\n"
  2384. "using the origin reference when checked,\n"
  2385. "and the center of the biggest bounding box\n"
  2386. "of the selected shapes when unchecked."
  2387. msgstr ""
  2388. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2389. "usando a referência de origem quando marcada,\n"
  2390. "e o centro da maior caixa delimitadora\n"
  2391. "de formas selecionadas quando desmarcado."
  2392. #: flatcamEditors/FlatCAMGeoEditor.py:837
  2393. #: flatcamEditors/FlatCAMGrbEditor.py:4997
  2394. msgid "Value X:"
  2395. msgstr "Valor X:"
  2396. #: flatcamEditors/FlatCAMGeoEditor.py:839
  2397. #: flatcamEditors/FlatCAMGrbEditor.py:4999
  2398. msgid "Value for Offset action on X axis."
  2399. msgstr "Valor para o deslocamento no eixo X."
  2400. #: flatcamEditors/FlatCAMGeoEditor.py:847
  2401. #: flatcamEditors/FlatCAMGrbEditor.py:5007 flatcamTools/ToolTransform.py:249
  2402. msgid "Offset X"
  2403. msgstr "Deslocar X"
  2404. #: flatcamEditors/FlatCAMGeoEditor.py:849
  2405. #: flatcamEditors/FlatCAMGeoEditor.py:867
  2406. #: flatcamEditors/FlatCAMGrbEditor.py:5009
  2407. #: flatcamEditors/FlatCAMGrbEditor.py:5027
  2408. msgid ""
  2409. "Offset the selected shape(s).\n"
  2410. "The point of reference is the middle of\n"
  2411. "the bounding box for all selected shapes.\n"
  2412. msgstr ""
  2413. "Desloca a(s) forma(s) selecionada(s).\n"
  2414. "O ponto de referência é o meio da\n"
  2415. "caixa delimitadora para todas as formas selecionadas.\n"
  2416. #: flatcamEditors/FlatCAMGeoEditor.py:855
  2417. #: flatcamEditors/FlatCAMGrbEditor.py:5015
  2418. msgid "Value Y:"
  2419. msgstr "Valor Y:"
  2420. #: flatcamEditors/FlatCAMGeoEditor.py:857
  2421. #: flatcamEditors/FlatCAMGrbEditor.py:5017
  2422. msgid "Value for Offset action on Y axis."
  2423. msgstr "Valor para a ação de deslocamento no eixo Y."
  2424. #: flatcamEditors/FlatCAMGeoEditor.py:865
  2425. #: flatcamEditors/FlatCAMGrbEditor.py:5025 flatcamTools/ToolTransform.py:266
  2426. msgid "Offset Y"
  2427. msgstr "Deslocar Y"
  2428. #: flatcamEditors/FlatCAMGeoEditor.py:896
  2429. #: flatcamEditors/FlatCAMGrbEditor.py:5056 flatcamTools/ToolTransform.py:296
  2430. msgid "Flip on X"
  2431. msgstr "Espelhar no X"
  2432. #: flatcamEditors/FlatCAMGeoEditor.py:898
  2433. #: flatcamEditors/FlatCAMGeoEditor.py:906
  2434. #: flatcamEditors/FlatCAMGrbEditor.py:5058
  2435. #: flatcamEditors/FlatCAMGrbEditor.py:5066
  2436. msgid ""
  2437. "Flip the selected shape(s) over the X axis.\n"
  2438. "Does not create a new shape."
  2439. msgstr ""
  2440. "Espelha as formas selecionadas sobre o eixo X.\n"
  2441. "Não cria uma nova forma."
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:904
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5064 flatcamTools/ToolTransform.py:304
  2444. msgid "Flip on Y"
  2445. msgstr "Espelhar no Y"
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:913
  2447. #: flatcamEditors/FlatCAMGrbEditor.py:5073
  2448. msgid "Ref Pt"
  2449. msgstr "Ponto de Referência"
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:915
  2451. #: flatcamEditors/FlatCAMGrbEditor.py:5075
  2452. msgid ""
  2453. "Flip the selected shape(s)\n"
  2454. "around the point in Point Entry Field.\n"
  2455. "\n"
  2456. "The point coordinates can be captured by\n"
  2457. "left click on canvas together with pressing\n"
  2458. "SHIFT key. \n"
  2459. "Then click Add button to insert coordinates.\n"
  2460. "Or enter the coords in format (x, y) in the\n"
  2461. "Point Entry field and click Flip on X(Y)"
  2462. msgstr ""
  2463. "Espelha a(s) forma(s) selecionada(s)\n"
  2464. "em relação às coordenadas abaixo.\n"
  2465. "\n"
  2466. "As coordenadas do ponto podem ser inseridas:\n"
  2467. "- com clique no botão esquerdo junto com a tecla\n"
  2468. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  2469. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  2470. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  2471. #: flatcamEditors/FlatCAMGeoEditor.py:927
  2472. #: flatcamEditors/FlatCAMGrbEditor.py:5087
  2473. msgid "Point:"
  2474. msgstr "Ponto de Ref.:"
  2475. #: flatcamEditors/FlatCAMGeoEditor.py:929
  2476. #: flatcamEditors/FlatCAMGrbEditor.py:5089
  2477. msgid ""
  2478. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2479. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2480. "the 'y' in (x, y) will be used when using Flip on Y."
  2481. msgstr ""
  2482. "Coordenadas no formato (x, y) usadas como referência para espelhamento. \n"
  2483. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  2484. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  2485. #: flatcamEditors/FlatCAMGeoEditor.py:941
  2486. #: flatcamEditors/FlatCAMGrbEditor.py:5101 flatcamTools/ToolTransform.py:340
  2487. msgid ""
  2488. "The point coordinates can be captured by\n"
  2489. "left click on canvas together with pressing\n"
  2490. "SHIFT key. Then click Add button to insert."
  2491. msgstr ""
  2492. "As coordenadas do ponto podem ser capturadas por\n"
  2493. "botão esquerdo na tela junto com a tecla\n"
  2494. "SHIFT pressionada. Em seguida, clique no botão Adicionar para inserir."
  2495. #: flatcamEditors/FlatCAMGeoEditor.py:1056
  2496. #: flatcamEditors/FlatCAMGrbEditor.py:5226
  2497. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  2498. msgstr "[WARNING_NOTCL] Transformação cancelada. Nenhuma forma selecionada."
  2499. #: flatcamEditors/FlatCAMGeoEditor.py:1077
  2500. #: flatcamEditors/FlatCAMGrbEditor.py:5246 flatcamTools/ToolTransform.py:473
  2501. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  2502. msgstr ""
  2503. "[ERROR_NOTCL] Valor com formato incorreto inserido para Girar, use um número."
  2504. #: flatcamEditors/FlatCAMGeoEditor.py:1114
  2505. #: flatcamEditors/FlatCAMGrbEditor.py:5289 flatcamTools/ToolTransform.py:507
  2506. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  2507. msgstr ""
  2508. "[ERROR_NOTCL] Valor com formato incorreto inserido para Inclinação X, use um "
  2509. "número."
  2510. #: flatcamEditors/FlatCAMGeoEditor.py:1135
  2511. #: flatcamEditors/FlatCAMGrbEditor.py:5316 flatcamTools/ToolTransform.py:525
  2512. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  2513. msgstr ""
  2514. "[ERROR_NOTCL] Valor com formato incorreto inserido para Inclinação Y, use um "
  2515. "número."
  2516. #: flatcamEditors/FlatCAMGeoEditor.py:1156
  2517. #: flatcamEditors/FlatCAMGrbEditor.py:5343 flatcamTools/ToolTransform.py:543
  2518. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  2519. msgstr ""
  2520. "[ERROR_NOTCL] Valor com formato incorreto inserido na Escala X, use um número."
  2521. #: flatcamEditors/FlatCAMGeoEditor.py:1193
  2522. #: flatcamEditors/FlatCAMGrbEditor.py:5384 flatcamTools/ToolTransform.py:577
  2523. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  2524. msgstr ""
  2525. "[ERROR_NOTCL] Valor com formato incorreto inserido para a Escala Y, use um "
  2526. "número."
  2527. #: flatcamEditors/FlatCAMGeoEditor.py:1225
  2528. #: flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:606
  2529. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  2530. msgstr ""
  2531. "[ERROR_NOTCL] Valor com formato incorreto inserido para o deslocamento X, use "
  2532. "um número."
  2533. #: flatcamEditors/FlatCAMGeoEditor.py:1246
  2534. #: flatcamEditors/FlatCAMGrbEditor.py:5448 flatcamTools/ToolTransform.py:624
  2535. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  2536. msgstr ""
  2537. "[ERROR_NOTCL] Valor com formato incorreto inserido para o deslocamento Y, use "
  2538. "um número."
  2539. #: flatcamEditors/FlatCAMGeoEditor.py:1264
  2540. #: flatcamEditors/FlatCAMGrbEditor.py:5471
  2541. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  2542. msgstr ""
  2543. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2544. "para girar!"
  2545. #: flatcamEditors/FlatCAMGeoEditor.py:1267
  2546. #: flatcamEditors/FlatCAMGrbEditor.py:5474 flatcamTools/ToolTransform.py:645
  2547. msgid "Appying Rotate"
  2548. msgstr "Aplicando Girar"
  2549. #: flatcamEditors/FlatCAMGeoEditor.py:1295
  2550. #: flatcamEditors/FlatCAMGrbEditor.py:5507
  2551. msgid "[success] Done. Rotate completed."
  2552. msgstr "[success] Girar concluído."
  2553. #: flatcamEditors/FlatCAMGeoEditor.py:1311
  2554. #: flatcamEditors/FlatCAMGrbEditor.py:5526
  2555. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  2556. msgstr ""
  2557. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2558. "para espelhar!"
  2559. #: flatcamEditors/FlatCAMGeoEditor.py:1314
  2560. #: flatcamEditors/FlatCAMGrbEditor.py:5529 flatcamTools/ToolTransform.py:696
  2561. msgid "Applying Flip"
  2562. msgstr "Aplicando Espelhamento"
  2563. #: flatcamEditors/FlatCAMGeoEditor.py:1344
  2564. #: flatcamEditors/FlatCAMGrbEditor.py:5568 flatcamTools/ToolTransform.py:738
  2565. msgid "[success] Flip on the Y axis done ..."
  2566. msgstr "[success] Espelhamento no eixo Y feito ..."
  2567. #: flatcamEditors/FlatCAMGeoEditor.py:1347
  2568. #: flatcamEditors/FlatCAMGrbEditor.py:5576 flatcamTools/ToolTransform.py:747
  2569. msgid "[success] Flip on the X axis done ..."
  2570. msgstr "[success] Espelhamento no eixo X feito ..."
  2571. #: flatcamEditors/FlatCAMGeoEditor.py:1366
  2572. #: flatcamEditors/FlatCAMGrbEditor.py:5596
  2573. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  2574. msgstr ""
  2575. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2576. "para inclinar!"
  2577. #: flatcamEditors/FlatCAMGeoEditor.py:1369
  2578. #: flatcamEditors/FlatCAMGrbEditor.py:5599 flatcamTools/ToolTransform.py:765
  2579. msgid "Applying Skew"
  2580. msgstr "Inclinando"
  2581. #: flatcamEditors/FlatCAMGeoEditor.py:1394
  2582. #: flatcamEditors/FlatCAMGrbEditor.py:5634 flatcamTools/ToolTransform.py:796
  2583. #, python-format
  2584. msgid "[success] Skew on the %s axis done ..."
  2585. msgstr "[success] Inclinação no eixo %s concluída ..."
  2586. #: flatcamEditors/FlatCAMGeoEditor.py:1398
  2587. #: flatcamEditors/FlatCAMGrbEditor.py:5638 flatcamTools/ToolTransform.py:800
  2588. #, python-format
  2589. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  2590. msgstr "[ERROR_NOTCL] Devido a %s , a ação Inclinar não foi executada."
  2591. #: flatcamEditors/FlatCAMGeoEditor.py:1409
  2592. #: flatcamEditors/FlatCAMGrbEditor.py:5657
  2593. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  2594. msgstr ""
  2595. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2596. "para redimensionar!"
  2597. #: flatcamEditors/FlatCAMGeoEditor.py:1412
  2598. #: flatcamEditors/FlatCAMGrbEditor.py:5660 flatcamTools/ToolTransform.py:814
  2599. msgid "Applying Scale"
  2600. msgstr "Redimensionando"
  2601. #: flatcamEditors/FlatCAMGeoEditor.py:1445
  2602. #: flatcamEditors/FlatCAMGrbEditor.py:5698 flatcamTools/ToolTransform.py:853
  2603. #, python-format
  2604. msgid "[success] Scale on the %s axis done ..."
  2605. msgstr "[success] Redimensionamento no eixo %s concluído ..."
  2606. #: flatcamEditors/FlatCAMGeoEditor.py:1448
  2607. #: flatcamEditors/FlatCAMGrbEditor.py:5701 flatcamTools/ToolTransform.py:856
  2608. #, python-format
  2609. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  2610. msgstr "[ERROR_NOTCL] Devido a %s, o redimensionamento não foi executado."
  2611. #: flatcamEditors/FlatCAMGeoEditor.py:1457
  2612. #: flatcamEditors/FlatCAMGrbEditor.py:5714
  2613. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  2614. msgstr ""
  2615. "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma "
  2616. "para deslocar!"
  2617. #: flatcamEditors/FlatCAMGeoEditor.py:1460
  2618. #: flatcamEditors/FlatCAMGrbEditor.py:5717 flatcamTools/ToolTransform.py:866
  2619. msgid "Applying Offset"
  2620. msgstr "Aplicando Deslocamento"
  2621. #: flatcamEditors/FlatCAMGeoEditor.py:1471
  2622. #: flatcamEditors/FlatCAMGrbEditor.py:5739 flatcamTools/ToolTransform.py:885
  2623. #, python-format
  2624. msgid "[success] Offset on the %s axis done ..."
  2625. msgstr "[success] Deslocamento no eixo %s concluído ..."
  2626. #: flatcamEditors/FlatCAMGeoEditor.py:1475
  2627. #: flatcamEditors/FlatCAMGrbEditor.py:5743 flatcamTools/ToolTransform.py:889
  2628. #, python-format
  2629. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  2630. msgstr "[ERROR_NOTCL] Devido a %s , a ação de deslocamento não foi executada."
  2631. #: flatcamEditors/FlatCAMGeoEditor.py:1479
  2632. #: flatcamEditors/FlatCAMGrbEditor.py:5747
  2633. msgid "Rotate ..."
  2634. msgstr "Girar ..."
  2635. #: flatcamEditors/FlatCAMGeoEditor.py:1480
  2636. #: flatcamEditors/FlatCAMGeoEditor.py:1537
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:1554
  2638. #: flatcamEditors/FlatCAMGrbEditor.py:5748
  2639. #: flatcamEditors/FlatCAMGrbEditor.py:5805
  2640. #: flatcamEditors/FlatCAMGrbEditor.py:5822
  2641. msgid "Enter an Angle Value (degrees):"
  2642. msgstr "Digite um valor de ângulo (graus):"
  2643. #: flatcamEditors/FlatCAMGeoEditor.py:1489
  2644. #: flatcamEditors/FlatCAMGrbEditor.py:5757
  2645. msgid "[success] Geometry shape rotate done..."
  2646. msgstr "[success] Rotação da geometria feito ..."
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:1494
  2648. #: flatcamEditors/FlatCAMGrbEditor.py:5762
  2649. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  2650. msgstr "[WARNING_NOTCL] Rotação da geometria cancelada ..."
  2651. #: flatcamEditors/FlatCAMGeoEditor.py:1500
  2652. #: flatcamEditors/FlatCAMGrbEditor.py:5768
  2653. msgid "Offset on X axis ..."
  2654. msgstr "Deslocamento no eixo X ..."
  2655. #: flatcamEditors/FlatCAMGeoEditor.py:1501
  2656. #: flatcamEditors/FlatCAMGeoEditor.py:1520
  2657. #: flatcamEditors/FlatCAMGrbEditor.py:5769
  2658. #: flatcamEditors/FlatCAMGrbEditor.py:5788
  2659. #, python-format
  2660. msgid "Enter a distance Value (%s):"
  2661. msgstr "Digite um valor de distância ( %s ):"
  2662. #: flatcamEditors/FlatCAMGeoEditor.py:1510
  2663. #: flatcamEditors/FlatCAMGrbEditor.py:5778
  2664. msgid "[success] Geometry shape offset on X axis done..."
  2665. msgstr "[success] Deslocamento da forma da geometria no eixo X ..."
  2666. #: flatcamEditors/FlatCAMGeoEditor.py:1514
  2667. #: flatcamEditors/FlatCAMGrbEditor.py:5782
  2668. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  2669. msgstr "[WARNING_NOTCL] Deslocamento da forma da geometria X cancelada ..."
  2670. #: flatcamEditors/FlatCAMGeoEditor.py:1519
  2671. #: flatcamEditors/FlatCAMGrbEditor.py:5787
  2672. msgid "Offset on Y axis ..."
  2673. msgstr "Deslocamento no eixo Y ..."
  2674. #: flatcamEditors/FlatCAMGeoEditor.py:1529
  2675. #: flatcamEditors/FlatCAMGrbEditor.py:5797
  2676. msgid "[success] Geometry shape offset on Y axis done..."
  2677. msgstr "[success] Deslocamento da forma da geometria no eixo Y ..."
  2678. #: flatcamEditors/FlatCAMGeoEditor.py:1533
  2679. #: flatcamEditors/FlatCAMGrbEditor.py:5801
  2680. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  2681. msgstr "[WARNING_NOTCL] Deslocamento da forma da geometria Y cancelado ..."
  2682. #: flatcamEditors/FlatCAMGeoEditor.py:1536
  2683. #: flatcamEditors/FlatCAMGrbEditor.py:5804
  2684. msgid "Skew on X axis ..."
  2685. msgstr "Inclinação no eixo X ..."
  2686. #: flatcamEditors/FlatCAMGeoEditor.py:1546
  2687. #: flatcamEditors/FlatCAMGrbEditor.py:5814
  2688. msgid "[success] Geometry shape skew on X axis done..."
  2689. msgstr "[success] Forma de geometria inclinada no eixo X ..."
  2690. #: flatcamEditors/FlatCAMGeoEditor.py:1550
  2691. #: flatcamEditors/FlatCAMGrbEditor.py:5818
  2692. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  2693. msgstr "[WARNING_NOTCL] Forma de geometria inclinada X cancelada ..."
  2694. #: flatcamEditors/FlatCAMGeoEditor.py:1553
  2695. #: flatcamEditors/FlatCAMGrbEditor.py:5821
  2696. msgid "Skew on Y axis ..."
  2697. msgstr "Inclinação no eixo Y ..."
  2698. #: flatcamEditors/FlatCAMGeoEditor.py:1563
  2699. #: flatcamEditors/FlatCAMGrbEditor.py:5831
  2700. msgid "[success] Geometry shape skew on Y axis done..."
  2701. msgstr "[success] Forma de geometria inclinada no eixo Y ..."
  2702. #: flatcamEditors/FlatCAMGeoEditor.py:1567
  2703. #: flatcamEditors/FlatCAMGrbEditor.py:5835
  2704. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  2705. msgstr "[WARNING_NOTCL] Forma da geometria inclinada Y cancelada ..."
  2706. #: flatcamEditors/FlatCAMGeoEditor.py:1931
  2707. #: flatcamEditors/FlatCAMGeoEditor.py:1982
  2708. #: flatcamEditors/FlatCAMGrbEditor.py:1385
  2709. #: flatcamEditors/FlatCAMGrbEditor.py:1454
  2710. msgid "Click on Center point ..."
  2711. msgstr "Clique no ponto central ..."
  2712. #: flatcamEditors/FlatCAMGeoEditor.py:1938
  2713. #: flatcamEditors/FlatCAMGrbEditor.py:1393
  2714. msgid "Click on Perimeter point to complete ..."
  2715. msgstr "Clique no ponto Perímetro para completar ..."
  2716. #: flatcamEditors/FlatCAMGeoEditor.py:1967
  2717. msgid "[success] Done. Adding Circle completed."
  2718. msgstr "[success] Feito. Adicionando Círculo concluído."
  2719. #: flatcamEditors/FlatCAMGeoEditor.py:2002
  2720. #: flatcamEditors/FlatCAMGrbEditor.py:1486
  2721. msgid "Click on Start point ..."
  2722. msgstr "Clique no ponto inicial ..."
  2723. #: flatcamEditors/FlatCAMGeoEditor.py:2004
  2724. #: flatcamEditors/FlatCAMGrbEditor.py:1488
  2725. msgid "Click on Point3 ..."
  2726. msgstr "Clique no ponto 3 ..."
  2727. #: flatcamEditors/FlatCAMGeoEditor.py:2006
  2728. #: flatcamEditors/FlatCAMGrbEditor.py:1490
  2729. msgid "Click on Stop point ..."
  2730. msgstr "Clique no ponto de parada ..."
  2731. #: flatcamEditors/FlatCAMGeoEditor.py:2011
  2732. #: flatcamEditors/FlatCAMGrbEditor.py:1495
  2733. msgid "Click on Stop point to complete ..."
  2734. msgstr "Clique no ponto de parada para completar ..."
  2735. #: flatcamEditors/FlatCAMGeoEditor.py:2013
  2736. #: flatcamEditors/FlatCAMGrbEditor.py:1497
  2737. msgid "Click on Point2 to complete ..."
  2738. msgstr "Clique no ponto 2 para completar ..."
  2739. #: flatcamEditors/FlatCAMGeoEditor.py:2015
  2740. #: flatcamEditors/FlatCAMGrbEditor.py:1499
  2741. msgid "Click on Center point to complete ..."
  2742. msgstr "Clique no ponto central para completar ..."
  2743. #: flatcamEditors/FlatCAMGeoEditor.py:2027
  2744. #: flatcamEditors/FlatCAMGrbEditor.py:1511
  2745. #, python-format
  2746. msgid "Direction: %s"
  2747. msgstr "Direção: %s"
  2748. #: flatcamEditors/FlatCAMGeoEditor.py:2037
  2749. #: flatcamEditors/FlatCAMGrbEditor.py:1521
  2750. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2751. msgstr "Modo: Iniciar -> Parar -> Centro. Clique no ponto inicial ..."
  2752. #: flatcamEditors/FlatCAMGeoEditor.py:2040
  2753. #: flatcamEditors/FlatCAMGrbEditor.py:1524
  2754. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2755. msgstr "Modo: Ponto 1 -> Ponto 3 -> Ponto 2. Clique no Ponto 1 ..."
  2756. #: flatcamEditors/FlatCAMGeoEditor.py:2043
  2757. #: flatcamEditors/FlatCAMGrbEditor.py:1527
  2758. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2759. msgstr "Modo: Centro -> Iniciar -> Parar. Clique no ponto central ..."
  2760. #: flatcamEditors/FlatCAMGeoEditor.py:2181
  2761. msgid "[success] Done. Arc completed."
  2762. msgstr "[success] Feito. Arco concluído."
  2763. #: flatcamEditors/FlatCAMGeoEditor.py:2200
  2764. #: flatcamEditors/FlatCAMGeoEditor.py:2253
  2765. #: flatcamEditors/FlatCAMGeoEditor.py:2628
  2766. msgid "Click on 1st corner ..."
  2767. msgstr "Clique no primeiro canto ..."
  2768. #: flatcamEditors/FlatCAMGeoEditor.py:2206
  2769. msgid "Click on opposite corner to complete ..."
  2770. msgstr "Clique no canto oposto para completar ..."
  2771. #: flatcamEditors/FlatCAMGeoEditor.py:2234
  2772. msgid "[success] Done. Rectangle completed."
  2773. msgstr "[success] Feito. Retângulo concluído."
  2774. #: flatcamEditors/FlatCAMGeoEditor.py:2260
  2775. msgid "Click on next Point or click right mouse button to complete ..."
  2776. msgstr ""
  2777. "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2778. "completar ..."
  2779. #: flatcamEditors/FlatCAMGeoEditor.py:2288
  2780. msgid "[success] Done. Polygon completed."
  2781. msgstr "[success] Feito. Polígono concluído."
  2782. #: flatcamEditors/FlatCAMGeoEditor.py:2298
  2783. #: flatcamEditors/FlatCAMGeoEditor.py:2344
  2784. #: flatcamEditors/FlatCAMGrbEditor.py:1075
  2785. #: flatcamEditors/FlatCAMGrbEditor.py:1276
  2786. msgid "Backtracked one point ..."
  2787. msgstr "Retrocedeu um ponto ..."
  2788. #: flatcamEditors/FlatCAMGeoEditor.py:2326
  2789. msgid "[success] Done. Path completed."
  2790. msgstr "[success] Feito. Caminho concluído."
  2791. #: flatcamEditors/FlatCAMGeoEditor.py:2449
  2792. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  2793. msgstr ""
  2794. "[WARNING_NOTCL] MOVE: Nenhuma forma selecionada. Selecione uma forma para "
  2795. "mover ..."
  2796. #: flatcamEditors/FlatCAMGeoEditor.py:2451
  2797. #: flatcamEditors/FlatCAMGeoEditor.py:2463
  2798. msgid " MOVE: Click on reference point ..."
  2799. msgstr " MOVE: Clique no ponto de referência ..."
  2800. #: flatcamEditors/FlatCAMGeoEditor.py:2454
  2801. msgid " Click on destination point ..."
  2802. msgstr " Clique no ponto de destino ..."
  2803. #: flatcamEditors/FlatCAMGeoEditor.py:2488
  2804. msgid "[success] Done. Geometry(s) Move completed."
  2805. msgstr "[success] Feito. Movimento de Geometria(s) completo."
  2806. #: flatcamEditors/FlatCAMGeoEditor.py:2608
  2807. msgid "[success] Done. Geometry(s) Copy completed."
  2808. msgstr "[success] Feito. Cópia de Geometria(s) concluída."
  2809. #: flatcamEditors/FlatCAMGeoEditor.py:2644
  2810. #, python-format
  2811. msgid ""
  2812. "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are "
  2813. "supported. Error: %s"
  2814. msgstr ""
  2815. "[ERROR] Fonte não suportada. Apenas Regular, Bold, Italic e BoldItalic são "
  2816. "suportados. Erro: %s"
  2817. #: flatcamEditors/FlatCAMGeoEditor.py:2651
  2818. msgid "[WARNING_NOTCL] No text to add."
  2819. msgstr "[WARNING_NOTCL] Nenhum texto para adicionar."
  2820. #: flatcamEditors/FlatCAMGeoEditor.py:2657
  2821. msgid "[success] Done. Adding Text completed."
  2822. msgstr "[success] Feito. Adicionando texto concluído."
  2823. #: flatcamEditors/FlatCAMGeoEditor.py:2685
  2824. msgid "Create buffer geometry ..."
  2825. msgstr "Criar geometria de buffer ..."
  2826. #: flatcamEditors/FlatCAMGeoEditor.py:2696
  2827. #: flatcamEditors/FlatCAMGeoEditor.py:2724
  2828. #: flatcamEditors/FlatCAMGeoEditor.py:2752
  2829. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  2830. msgstr "[WARNING_NOTCL] Buffer cancelado. Nenhuma forma selecionada."
  2831. #: flatcamEditors/FlatCAMGeoEditor.py:2720
  2832. #: flatcamEditors/FlatCAMGrbEditor.py:4641
  2833. msgid "[success] Done. Buffer Tool completed."
  2834. msgstr "[success] Feito. Ferramenta Buffer concluída."
  2835. #: flatcamEditors/FlatCAMGeoEditor.py:2748
  2836. msgid "[success] Done. Buffer Int Tool completed."
  2837. msgstr "[success] Feito. Ferramenta Buffer Int concluída."
  2838. #: flatcamEditors/FlatCAMGeoEditor.py:2776
  2839. msgid "[success] Done. Buffer Ext Tool completed."
  2840. msgstr "[success] Feito. Ferramenta Buffer Ext concluída."
  2841. #: flatcamEditors/FlatCAMGeoEditor.py:2811
  2842. #: flatcamEditors/FlatCAMGrbEditor.py:2052
  2843. msgid "Select a shape to act as deletion area ..."
  2844. msgstr "Selecione uma forma para atuar como área de exclusão ..."
  2845. #: flatcamEditors/FlatCAMGeoEditor.py:2813
  2846. #: flatcamEditors/FlatCAMGeoEditor.py:2832
  2847. #: flatcamEditors/FlatCAMGeoEditor.py:2838
  2848. #: flatcamEditors/FlatCAMGrbEditor.py:2054
  2849. msgid "Click to pick-up the erase shape..."
  2850. msgstr "Clique para pegar a forma de apagar ..."
  2851. #: flatcamEditors/FlatCAMGeoEditor.py:2842
  2852. #: flatcamEditors/FlatCAMGrbEditor.py:2111
  2853. msgid "Click to erase ..."
  2854. msgstr "Clique para apagar ..."
  2855. #: flatcamEditors/FlatCAMGeoEditor.py:2871
  2856. #: flatcamEditors/FlatCAMGrbEditor.py:2144
  2857. msgid "[success] Done. Eraser tool action completed."
  2858. msgstr "[success] Feito. Ação da ferramenta Borracha concluída."
  2859. #: flatcamEditors/FlatCAMGeoEditor.py:2914
  2860. msgid "Create Paint geometry ..."
  2861. msgstr "Criar geometria de pintura ..."
  2862. #: flatcamEditors/FlatCAMGeoEditor.py:2928
  2863. #: flatcamEditors/FlatCAMGrbEditor.py:2292
  2864. msgid "Shape transformations ..."
  2865. msgstr "Transformações de forma ..."
  2866. #: flatcamEditors/FlatCAMGeoEditor.py:3506
  2867. #, python-brace-format
  2868. msgid ""
  2869. "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  2870. msgstr ""
  2871. "[WARNING_NOTCL] Editando Geometria MultiGeo, ferramenta: {tool} com "
  2872. "diâmetro: {dia}"
  2873. #: flatcamEditors/FlatCAMGeoEditor.py:3863
  2874. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  2875. msgstr "[WARNING_NOTCL] Cópia cancelada. Nenhuma forma selecionada."
  2876. #: flatcamEditors/FlatCAMGeoEditor.py:3870 flatcamGUI/FlatCAMGUI.py:2852
  2877. #: flatcamGUI/FlatCAMGUI.py:2898 flatcamGUI/FlatCAMGUI.py:2916
  2878. #: flatcamGUI/FlatCAMGUI.py:3047 flatcamGUI/FlatCAMGUI.py:3059
  2879. #: flatcamGUI/FlatCAMGUI.py:3093 flatcamGUI/FlatCAMGUI.py:3150
  2880. msgid "Click on target point."
  2881. msgstr "Clique no ponto alvo."
  2882. #: flatcamEditors/FlatCAMGeoEditor.py:4114
  2883. #: flatcamEditors/FlatCAMGeoEditor.py:4149
  2884. msgid ""
  2885. "[WARNING_NOTCL] A selection of at least 2 geo items is required to do "
  2886. "Intersection."
  2887. msgstr ""
  2888. "[WARNING_NOTCL] É necessária uma seleção de pelo menos 2 itens geográficos "
  2889. "para fazer a interseção."
  2890. #: flatcamEditors/FlatCAMGeoEditor.py:4235
  2891. #: flatcamEditors/FlatCAMGeoEditor.py:4335
  2892. msgid ""
  2893. "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to "
  2894. "generate an 'inside' shape"
  2895. msgstr ""
  2896. "[ERROR_NOTCL] Valor de buffer negativo não é aceito. Use o Buffer interior "
  2897. "para gerar uma forma 'interna'"
  2898. #: flatcamEditors/FlatCAMGeoEditor.py:4244
  2899. #: flatcamEditors/FlatCAMGeoEditor.py:4296
  2900. #: flatcamEditors/FlatCAMGeoEditor.py:4343
  2901. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  2902. msgstr "[WARNING_NOTCL] Nada selecionado para armazenamento em buffer."
  2903. #: flatcamEditors/FlatCAMGeoEditor.py:4248
  2904. #: flatcamEditors/FlatCAMGeoEditor.py:4300
  2905. #: flatcamEditors/FlatCAMGeoEditor.py:4347
  2906. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2907. msgstr "[WARNING_NOTCL] Distância inválida para armazenamento em buffer."
  2908. #: flatcamEditors/FlatCAMGeoEditor.py:4271
  2909. #: flatcamEditors/FlatCAMGeoEditor.py:4366
  2910. msgid ""
  2911. "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2912. msgstr ""
  2913. "[ERROR_NOTCL] Falhou, o resultado está vazio. Escolha um valor de buffer "
  2914. "diferente."
  2915. #: flatcamEditors/FlatCAMGeoEditor.py:4281
  2916. msgid "[success] Full buffer geometry created."
  2917. msgstr "[success] Geometria completa do buffer criada."
  2918. #: flatcamEditors/FlatCAMGeoEditor.py:4288
  2919. msgid "[ERROR_NOTCL] Negative buffer value is not accepted."
  2920. msgstr "[ERROR_NOTCL] O valor do buffer negativo não é aceito."
  2921. #: flatcamEditors/FlatCAMGeoEditor.py:4319
  2922. msgid ""
  2923. "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2924. msgstr ""
  2925. "[ERROR_NOTCL] Falhou, o resultado está vazio. Escolha um valor de buffer "
  2926. "menor."
  2927. #: flatcamEditors/FlatCAMGeoEditor.py:4329
  2928. msgid "[success] Interior buffer geometry created."
  2929. msgstr "[success] Geometria do buffer interna criada."
  2930. #: flatcamEditors/FlatCAMGeoEditor.py:4376
  2931. msgid "[success] Exterior buffer geometry created."
  2932. msgstr "[success] Geometria de buffer externa criada."
  2933. #: flatcamEditors/FlatCAMGeoEditor.py:4440
  2934. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2935. msgstr "[WARNING_NOTCL] Nada selecionado para pintura."
  2936. #: flatcamEditors/FlatCAMGeoEditor.py:4446
  2937. msgid "[WARNING] Invalid value for {}"
  2938. msgstr "[WARNING] Valor inválido para {}"
  2939. #: flatcamEditors/FlatCAMGeoEditor.py:4452
  2940. msgid ""
  2941. "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 "
  2942. "(100%)."
  2943. msgstr ""
  2944. "[ERROR_NOTCL] Não foi possível fazer o Paint. O valor de sobreposição tem "
  2945. "que ser menor que 1,00 (100%)."
  2946. #: flatcamEditors/FlatCAMGeoEditor.py:4511
  2947. #, python-format
  2948. msgid ""
  2949. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  2950. "different method of Paint\n"
  2951. "%s"
  2952. msgstr ""
  2953. "[ERROR] Não foi possível pintar. Tente uma combinação diferente de "
  2954. "parâmetros. Ou um método diferente de Paint \n"
  2955. " %s"
  2956. #: flatcamEditors/FlatCAMGeoEditor.py:4522
  2957. msgid "[success] Paint done."
  2958. msgstr "[success] Pintura feita."
  2959. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2960. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2961. msgstr ""
  2962. "[WARNING_NOTCL] Para adicionar um Pad, primeiro selecione uma abertura na "
  2963. "Tabela de Abertura"
  2964. #: flatcamEditors/FlatCAMGrbEditor.py:214
  2965. #: flatcamEditors/FlatCAMGrbEditor.py:406
  2966. msgid ""
  2967. "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2968. msgstr ""
  2969. "[WARNING_NOTCL] O tamanho da abertura é zero. Precisa ser maior que zero."
  2970. #: flatcamEditors/FlatCAMGrbEditor.py:365
  2971. #: flatcamEditors/FlatCAMGrbEditor.py:670
  2972. msgid ""
  2973. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2974. msgstr ""
  2975. "Tipo de abertura incompatível. Selecione uma abertura com o tipo 'C', 'R' ou "
  2976. "'O'."
  2977. #: flatcamEditors/FlatCAMGrbEditor.py:377
  2978. msgid "[success] Done. Adding Pad completed."
  2979. msgstr "[success] Feito. Adicionando Pad concluído."
  2980. #: flatcamEditors/FlatCAMGrbEditor.py:399
  2981. msgid ""
  2982. "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2983. msgstr ""
  2984. "[WARNING_NOTCL] Para adicionar uma Matriz de Pads, primeiro selecione uma "
  2985. "abertura na Tabela de Abertura"
  2986. #: flatcamEditors/FlatCAMGrbEditor.py:476
  2987. msgid "Click on the Pad Circular Array Start position"
  2988. msgstr "Clique na posição inicial da Matriz Circular de Pads"
  2989. #: flatcamEditors/FlatCAMGrbEditor.py:695
  2990. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2991. msgstr ""
  2992. "[WARNING_NOTCL] Demasiados Pads para o ângulo de espaçamento selecionado."
  2993. #: flatcamEditors/FlatCAMGrbEditor.py:717
  2994. msgid "[success] Done. Pad Array added."
  2995. msgstr "[success] Matriz de Pads adicionada."
  2996. #: flatcamEditors/FlatCAMGrbEditor.py:738
  2997. msgid "Select shape(s) and then click ..."
  2998. msgstr "Selecione a(s) forma(s) e clique em ..."
  2999. #: flatcamEditors/FlatCAMGrbEditor.py:749
  3000. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  3001. msgstr "[ERROR_NOTCL] Falhou. Nada selecionado."
  3002. #: flatcamEditors/FlatCAMGrbEditor.py:764
  3003. msgid ""
  3004. "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the "
  3005. "same aperture."
  3006. msgstr ""
  3007. "[WARNING_NOTCL] Falhou. Poligonize funciona apenas em geometrias "
  3008. "pertencentes à mesma abertura."
  3009. #: flatcamEditors/FlatCAMGrbEditor.py:817
  3010. msgid "[success] Done. Poligonize completed."
  3011. msgstr "[success] Feito. Poligonizar concluído."
  3012. #: flatcamEditors/FlatCAMGrbEditor.py:870
  3013. #: flatcamEditors/FlatCAMGrbEditor.py:1092
  3014. #: flatcamEditors/FlatCAMGrbEditor.py:1116
  3015. msgid "Corner Mode 1: 45 degrees ..."
  3016. msgstr "Modo de canto 1: 45 graus ..."
  3017. #: flatcamEditors/FlatCAMGrbEditor.py:872
  3018. msgid "Click on 1st point ..."
  3019. msgstr "Clique no primeiro ponto ..."
  3020. #: flatcamEditors/FlatCAMGrbEditor.py:882
  3021. #: flatcamEditors/FlatCAMGrbEditor.py:1191
  3022. msgid "Click on next Point or click Right mouse button to complete ..."
  3023. msgstr ""
  3024. "Clique no próximo ponto ou clique com o botão direito do mouse para "
  3025. "completar ..."
  3026. #: flatcamEditors/FlatCAMGrbEditor.py:1080
  3027. #: flatcamEditors/FlatCAMGrbEditor.py:1113
  3028. msgid "Corner Mode 2: Reverse 45 degrees ..."
  3029. msgstr "Modo de canto 2: 45 graus invertido ..."
  3030. #: flatcamEditors/FlatCAMGrbEditor.py:1083
  3031. #: flatcamEditors/FlatCAMGrbEditor.py:1110
  3032. msgid "Corner Mode 3: 90 degrees ..."
  3033. msgstr "Modo de canto 3: 90 graus ..."
  3034. #: flatcamEditors/FlatCAMGrbEditor.py:1086
  3035. #: flatcamEditors/FlatCAMGrbEditor.py:1107
  3036. msgid "Corner Mode 4: Reverse 90 degrees ..."
  3037. msgstr "Modo de canto 4: 90 graus invertido ..."
  3038. #: flatcamEditors/FlatCAMGrbEditor.py:1089
  3039. #: flatcamEditors/FlatCAMGrbEditor.py:1104
  3040. msgid "Corner Mode 5: Free angle ..."
  3041. msgstr "Modo de canto 5: Ângulo livre ..."
  3042. #: flatcamEditors/FlatCAMGrbEditor.py:1143
  3043. #: flatcamEditors/FlatCAMGrbEditor.py:1308
  3044. #: flatcamEditors/FlatCAMGrbEditor.py:1347
  3045. msgid "Track Mode 1: 45 degrees ..."
  3046. msgstr "Modo de Trilha 1: 45 graus ..."
  3047. #: flatcamEditors/FlatCAMGrbEditor.py:1288
  3048. #: flatcamEditors/FlatCAMGrbEditor.py:1342
  3049. msgid "Track Mode 2: Reverse 45 degrees ..."
  3050. msgstr "Modo de Trilha 2: 45 graus invertido ..."
  3051. #: flatcamEditors/FlatCAMGrbEditor.py:1293
  3052. #: flatcamEditors/FlatCAMGrbEditor.py:1337
  3053. msgid "Track Mode 3: 90 degrees ..."
  3054. msgstr "Modo de Trilha 3: 90 graus ..."
  3055. #: flatcamEditors/FlatCAMGrbEditor.py:1298
  3056. #: flatcamEditors/FlatCAMGrbEditor.py:1332
  3057. msgid "Track Mode 4: Reverse 90 degrees ..."
  3058. msgstr "Modo de Trilha 4: 90 graus invertido ..."
  3059. #: flatcamEditors/FlatCAMGrbEditor.py:1303
  3060. #: flatcamEditors/FlatCAMGrbEditor.py:1327
  3061. msgid "Track Mode 5: Free angle ..."
  3062. msgstr "Modo de Trilha 5: Ângulo livre ..."
  3063. #: flatcamEditors/FlatCAMGrbEditor.py:1707
  3064. msgid "Scale the selected Gerber apertures ..."
  3065. msgstr "Redimensiona as aberturas de Gerber selecionadas ..."
  3066. #: flatcamEditors/FlatCAMGrbEditor.py:1749
  3067. msgid "Buffer the selected apertures ..."
  3068. msgstr "Buffer as aberturas selecionadas ..."
  3069. #: flatcamEditors/FlatCAMGrbEditor.py:1791
  3070. msgid "Mark polygon areas in the edited Gerber ..."
  3071. msgstr "Marcar áreas de polígonos no Gerber editado..."
  3072. #: flatcamEditors/FlatCAMGrbEditor.py:1838
  3073. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  3074. msgstr "[WARNING_NOTCL] Nada selecionado para se mover ..."
  3075. #: flatcamEditors/FlatCAMGrbEditor.py:1961
  3076. msgid "[success] Done. Apertures Move completed."
  3077. msgstr "[success] Feito. Mover Aberturas completo."
  3078. #: flatcamEditors/FlatCAMGrbEditor.py:2037
  3079. msgid "[success] Done. Apertures copied."
  3080. msgstr "[success] Feito. Aberturas copiadas."
  3081. #: flatcamEditors/FlatCAMGrbEditor.py:2334 flatcamGUI/FlatCAMGUI.py:1668
  3082. #: flatcamGUI/FlatCAMGUI.py:4564
  3083. msgid "Gerber Editor"
  3084. msgstr "Editor Gerber"
  3085. #: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/ObjectUI.py:192
  3086. #: flatcamTools/ToolProperties.py:132
  3087. msgid "Apertures"
  3088. msgstr "Aberturas"
  3089. #: flatcamEditors/FlatCAMGrbEditor.py:2356 flatcamGUI/ObjectUI.py:194
  3090. msgid "Apertures Table for the Gerber Object."
  3091. msgstr "Mesa de Aberturas para o Objeto Gerber."
  3092. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  3093. #: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
  3094. msgid "Code"
  3095. msgstr "Código"
  3096. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  3097. #: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
  3098. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
  3099. msgid "Type"
  3100. msgstr "Tipo"
  3101. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  3102. #: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
  3103. msgid "Size"
  3104. msgstr "Tamanho"
  3105. #: flatcamEditors/FlatCAMGrbEditor.py:2367
  3106. #: flatcamEditors/FlatCAMGrbEditor.py:3794 flatcamGUI/ObjectUI.py:227
  3107. msgid "Dim"
  3108. msgstr "Dim"
  3109. #: flatcamEditors/FlatCAMGrbEditor.py:2371 flatcamGUI/ObjectUI.py:231
  3110. msgid "Index"
  3111. msgstr "Índice"
  3112. #: flatcamEditors/FlatCAMGrbEditor.py:2373
  3113. #: flatcamEditors/FlatCAMGrbEditor.py:2400 flatcamGUI/ObjectUI.py:233
  3114. msgid "Aperture Code"
  3115. msgstr "Código de Abertura"
  3116. #: flatcamEditors/FlatCAMGrbEditor.py:2375 flatcamGUI/ObjectUI.py:235
  3117. msgid "Type of aperture: circular, rectangle, macros etc"
  3118. msgstr "Tipo de abertura: circular, retângulo, macros etc"
  3119. #: flatcamEditors/FlatCAMGrbEditor.py:2377 flatcamGUI/ObjectUI.py:237
  3120. msgid "Aperture Size:"
  3121. msgstr "Tamanho da abertura:"
  3122. #: flatcamEditors/FlatCAMGrbEditor.py:2379 flatcamGUI/ObjectUI.py:239
  3123. msgid ""
  3124. "Aperture Dimensions:\n"
  3125. " - (width, height) for R, O type.\n"
  3126. " - (dia, nVertices) for P type"
  3127. msgstr ""
  3128. "Dimensões da abertura: \n"
  3129. " - (largura, altura) para o tipo R, O. \n"
  3130. " - (dia, nVertices) para o tipo P"
  3131. #: flatcamEditors/FlatCAMGrbEditor.py:2402 flatcamGUI/FlatCAMGUI.py:4593
  3132. msgid "Code for the new aperture"
  3133. msgstr "Código para a nova abertura"
  3134. #: flatcamEditors/FlatCAMGrbEditor.py:2410
  3135. msgid "Aperture Size"
  3136. msgstr "Tamanho da abertura"
  3137. #: flatcamEditors/FlatCAMGrbEditor.py:2412
  3138. msgid ""
  3139. "Size for the new aperture.\n"
  3140. "If aperture type is 'R' or 'O' then\n"
  3141. "this value is automatically\n"
  3142. "calculated as:\n"
  3143. "sqrt(width**2 + height**2)"
  3144. msgstr ""
  3145. "Tamanho para a nova abertura. \n"
  3146. "Se o tipo de abertura for 'R' ou 'O' então \n"
  3147. "este valor será automaticamente \n"
  3148. "calculado como: \n"
  3149. "sqrt (largura^2 + altura^2)"
  3150. #: flatcamEditors/FlatCAMGrbEditor.py:2424
  3151. msgid "Aperture Type"
  3152. msgstr "Tipo de Abertura"
  3153. #: flatcamEditors/FlatCAMGrbEditor.py:2426
  3154. msgid ""
  3155. "Select the type of new aperture. Can be:\n"
  3156. "C = circular\n"
  3157. "R = rectangular\n"
  3158. "O = oblong"
  3159. msgstr ""
  3160. "Selecione o tipo de nova abertura. Pode ser: \n"
  3161. "C = circular \n"
  3162. "R = retangular \n"
  3163. "O = oblongo"
  3164. #: flatcamEditors/FlatCAMGrbEditor.py:2437
  3165. msgid "Aperture Dim"
  3166. msgstr "Dim Abertura"
  3167. #: flatcamEditors/FlatCAMGrbEditor.py:2439
  3168. msgid ""
  3169. "Dimensions for the new aperture.\n"
  3170. "Active only for rectangular apertures (type R).\n"
  3171. "The format is (width, height)"
  3172. msgstr ""
  3173. "Dimensões da nova abertura. \n"
  3174. "Ativa apenas para aberturas retangulares (tipo R). \n"
  3175. "O formato é (largura, altura)"
  3176. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  3177. msgid "Add/Delete Aperture:"
  3178. msgstr "Adicionar/Excluir Abertura:"
  3179. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  3180. msgid "Add/Delete an aperture in the aperture table"
  3181. msgstr "Adicionar/Excluir uma abertura na tabela de abertura"
  3182. #: flatcamEditors/FlatCAMGrbEditor.py:2459
  3183. msgid "Add a new aperture to the aperture list."
  3184. msgstr "Adicione uma nova abertura à lista de abertura."
  3185. #: flatcamEditors/FlatCAMGrbEditor.py:2464
  3186. msgid "Delete a aperture in the aperture list"
  3187. msgstr "Excluir uma abertura da lista de abertura"
  3188. #: flatcamEditors/FlatCAMGrbEditor.py:2481
  3189. msgid "Buffer Aperture:"
  3190. msgstr "Buffer Aperture:"
  3191. #: flatcamEditors/FlatCAMGrbEditor.py:2483
  3192. msgid "Buffer a aperture in the aperture list"
  3193. msgstr "Buffer de uma abertura na lista de abertura"
  3194. #: flatcamEditors/FlatCAMGrbEditor.py:2493 flatcamGUI/FlatCAMGUI.py:4716
  3195. msgid "Buffer distance"
  3196. msgstr "Distância do buffer"
  3197. #: flatcamEditors/FlatCAMGrbEditor.py:2494
  3198. msgid "Buffer corner"
  3199. msgstr "Canto do buffer"
  3200. #: flatcamEditors/FlatCAMGrbEditor.py:2496
  3201. msgid ""
  3202. "There are 3 types of corners:\n"
  3203. " - 'Round': the corner is rounded.\n"
  3204. " - 'Square:' the corner is met in a sharp angle.\n"
  3205. " - 'Beveled:' the corner is a line that directly connects the features "
  3206. "meeting in the corner"
  3207. msgstr ""
  3208. "Existem 3 tipos de cantos: \n"
  3209. " - 'Round': o canto é arredondado. \n"
  3210. " - 'Square:' o canto é ângulo agudo. \n"
  3211. " - 'Beveled:' o canto é uma linha que conecta diretamente os recursos "
  3212. "reunidos no canto"
  3213. #: flatcamEditors/FlatCAMGrbEditor.py:2511 flatcamGUI/FlatCAMGUI.py:738
  3214. #: flatcamGUI/FlatCAMGUI.py:1654 flatcamGUI/FlatCAMGUI.py:1681
  3215. #: flatcamGUI/FlatCAMGUI.py:2060
  3216. msgid "Buffer"
  3217. msgstr "Buffer"
  3218. #: flatcamEditors/FlatCAMGrbEditor.py:2526
  3219. msgid "Scale Aperture"
  3220. msgstr "Redim. Abertura"
  3221. #: flatcamEditors/FlatCAMGrbEditor.py:2528
  3222. msgid "Scale a aperture in the aperture list"
  3223. msgstr "Redimensionar uma abertura na lista de abertura"
  3224. #: flatcamEditors/FlatCAMGrbEditor.py:2536 flatcamGUI/FlatCAMGUI.py:4729
  3225. msgid "Scale factor"
  3226. msgstr "Fator de Escala"
  3227. #: flatcamEditors/FlatCAMGrbEditor.py:2538
  3228. msgid ""
  3229. "The factor by which to scale the selected aperture.\n"
  3230. "Values can be between 0.0000 and 999.9999"
  3231. msgstr ""
  3232. "O fator para redimensionar a abertura selecionada. \n"
  3233. "Os valores podem estar entre 0,0000 e 999,9999"
  3234. #: flatcamEditors/FlatCAMGrbEditor.py:2564
  3235. msgid "Mark polygon areas"
  3236. msgstr "Marcar áreas de polí."
  3237. #: flatcamEditors/FlatCAMGrbEditor.py:2566
  3238. msgid "Mark the polygon areas."
  3239. msgstr "Marcar as áreas de polígonos."
  3240. #: flatcamEditors/FlatCAMGrbEditor.py:2574
  3241. msgid "Area UPPER threshold"
  3242. msgstr "Limite de área SUPERIOR"
  3243. #: flatcamEditors/FlatCAMGrbEditor.py:2576
  3244. msgid ""
  3245. "The threshold value, all areas less than this are marked.\n"
  3246. "Can have a value between 0.0000 and 9999.9999"
  3247. msgstr ""
  3248. "Valor limite, todas as áreas menores que isso são marcadas.Pode ser um valor "
  3249. "entre 0.0000 e 9999.9999"
  3250. #: flatcamEditors/FlatCAMGrbEditor.py:2582
  3251. msgid "Area LOWER threshold"
  3252. msgstr "Limite de área INFERIOR"
  3253. #: flatcamEditors/FlatCAMGrbEditor.py:2584
  3254. msgid ""
  3255. "The threshold value, all areas more than this are marked.\n"
  3256. "Can have a value between 0.0000 and 9999.9999"
  3257. msgstr ""
  3258. "Valor limite, todas as áreas maiores que isso são marcadas.Pode ser um valor "
  3259. "entre 0.0000 e 9999.9999"
  3260. #: flatcamEditors/FlatCAMGrbEditor.py:2597
  3261. msgid "Go"
  3262. msgstr "Ir"
  3263. #: flatcamEditors/FlatCAMGrbEditor.py:2616 flatcamGUI/FlatCAMGUI.py:728
  3264. #: flatcamGUI/FlatCAMGUI.py:2050
  3265. msgid "Add Pad Array"
  3266. msgstr "Adicionar Matriz de Pads"
  3267. #: flatcamEditors/FlatCAMGrbEditor.py:2618
  3268. msgid "Add an array of pads (linear or circular array)"
  3269. msgstr "Adicione uma matriz de pads (matriz linear ou circular)"
  3270. #: flatcamEditors/FlatCAMGrbEditor.py:2624
  3271. msgid ""
  3272. "Select the type of pads array to create.\n"
  3273. "It can be Linear X(Y) or Circular"
  3274. msgstr ""
  3275. "Selecione o tipo de matriz de pads para criar. \n"
  3276. "Pode ser Linear X(Y) ou Circular"
  3277. #: flatcamEditors/FlatCAMGrbEditor.py:2635 flatcamGUI/FlatCAMGUI.py:4628
  3278. msgid "Nr of pads"
  3279. msgstr "Nº de pads"
  3280. #: flatcamEditors/FlatCAMGrbEditor.py:2637 flatcamGUI/FlatCAMGUI.py:4630
  3281. msgid "Specify how many pads to be in the array."
  3282. msgstr "Especifique quantos pads devem estar na matriz."
  3283. #: flatcamEditors/FlatCAMGrbEditor.py:2654
  3284. #: flatcamEditors/FlatCAMGrbEditor.py:2699 flatcamGUI/FlatCAMGUI.py:5578
  3285. msgid "Direction"
  3286. msgstr "Direção"
  3287. #: flatcamEditors/FlatCAMGrbEditor.py:2669 flatcamGUI/FlatCAMGUI.py:4666
  3288. #: flatcamGUI/FlatCAMGUI.py:5646
  3289. msgid "Pitch"
  3290. msgstr "Passo"
  3291. #: flatcamEditors/FlatCAMGrbEditor.py:3132
  3292. #: flatcamEditors/FlatCAMGrbEditor.py:3136
  3293. msgid ""
  3294. "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and "
  3295. "retry."
  3296. msgstr ""
  3297. "[WARNING_NOTCL] O valor do código de abertura está em falta ou em formato "
  3298. "incorreto. Altere e tente novamente."
  3299. #: flatcamEditors/FlatCAMGrbEditor.py:3172
  3300. msgid ""
  3301. "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it "
  3302. "in format (width, height) and retry."
  3303. msgstr ""
  3304. "[WARNING_NOTCL] O valor das dimensões da abertura está em falta ou está no "
  3305. "formato errado. Altere (largura, altura) e tente novamente."
  3306. #: flatcamEditors/FlatCAMGrbEditor.py:3184
  3307. msgid ""
  3308. "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and "
  3309. "retry."
  3310. msgstr ""
  3311. "[WARNING_NOTCL] O valor do tamanho da abertura está ausente ou está no "
  3312. "formato errado. Altere e tente novamente."
  3313. #: flatcamEditors/FlatCAMGrbEditor.py:3195
  3314. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  3315. msgstr "[WARNING_NOTCL] Abertura já na tabela de abertura."
  3316. #: flatcamEditors/FlatCAMGrbEditor.py:3202
  3317. #, python-brace-format
  3318. msgid "[success] Added new aperture with code: {apid}"
  3319. msgstr "[success] Adicionada nova abertura com código: {apid}"
  3320. #: flatcamEditors/FlatCAMGrbEditor.py:3230
  3321. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  3322. msgstr "[WARNING_NOTCL] Selecione uma abertura na Tabela de Abertura"
  3323. #: flatcamEditors/FlatCAMGrbEditor.py:3236
  3324. #, python-format
  3325. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  3326. msgstr "[WARNING_NOTCL] Selecione uma abertura na Tabela de Abertura -> %s"
  3327. #: flatcamEditors/FlatCAMGrbEditor.py:3259
  3328. #, python-brace-format
  3329. msgid "[success] Deleted aperture with code: {del_dia}"
  3330. msgstr "[success] Abertura excluída com código: {del_dia}"
  3331. #: flatcamEditors/FlatCAMGrbEditor.py:3723
  3332. #, python-format
  3333. msgid "Adding aperture: %s geo ..."
  3334. msgstr "Adicionando abertura: %s geo ..."
  3335. #: flatcamEditors/FlatCAMGrbEditor.py:3911
  3336. msgid ""
  3337. "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber "
  3338. "creation."
  3339. msgstr ""
  3340. "[ERROR_NOTCL] Não há definições do Aperture no arquivo. Abortando a criação "
  3341. "de Gerber."
  3342. #: flatcamEditors/FlatCAMGrbEditor.py:3919
  3343. msgid "Creating Gerber."
  3344. msgstr "Criando Gerber."
  3345. #: flatcamEditors/FlatCAMGrbEditor.py:3927
  3346. msgid "[success] Gerber editing finished."
  3347. msgstr "[success] Edição de Gerber finalizada."
  3348. #: flatcamEditors/FlatCAMGrbEditor.py:3943
  3349. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  3350. msgstr "[WARNING_NOTCL] Cancelado. Nenhuma abertura selecionada"
  3351. #: flatcamEditors/FlatCAMGrbEditor.py:4474
  3352. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  3353. msgstr "[ERROR_NOTCL] Falhou. Nenhuma geometria de abertura selecionada."
  3354. #: flatcamEditors/FlatCAMGrbEditor.py:4482
  3355. msgid "[success] Done. Apertures geometry deleted."
  3356. msgstr "[success] Feito. Geometria das aberturas excluída."
  3357. #: flatcamEditors/FlatCAMGrbEditor.py:4625
  3358. msgid ""
  3359. "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try "
  3360. "again."
  3361. msgstr ""
  3362. "[WARNING_NOTCL] Nenhuma abertura para buffer. Selecione pelo menos uma "
  3363. "abertura e tente novamente."
  3364. #: flatcamEditors/FlatCAMGrbEditor.py:4638
  3365. #, python-format
  3366. msgid ""
  3367. "[ERROR_NOTCL] Failed.\n"
  3368. "%s"
  3369. msgstr ""
  3370. "[ERROR_NOTCL] Falhou.\n"
  3371. " %s"
  3372. #: flatcamEditors/FlatCAMGrbEditor.py:4655
  3373. msgid ""
  3374. "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and "
  3375. "retry."
  3376. msgstr ""
  3377. "[WARNING_NOTCL] O valor do fator de escala está ausente ou está em formato "
  3378. "incorreto. Altere e tente novamente."
  3379. #: flatcamEditors/FlatCAMGrbEditor.py:4688
  3380. msgid ""
  3381. "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
  3382. "again."
  3383. msgstr ""
  3384. "[WARNING_NOTCL] Nenhuma abertura a redimensionar. Selecione pelo menos uma "
  3385. "abertura e tente novamente."
  3386. #: flatcamEditors/FlatCAMGrbEditor.py:4704
  3387. msgid "[success] Done. Scale Tool completed."
  3388. msgstr "[success] Redimensionamento concluído."
  3389. #: flatcamEditors/FlatCAMGrbEditor.py:4741
  3390. msgid "[success] Polygon areas marked."
  3391. msgstr "[success] Áreas de polígono marcadas."
  3392. #: flatcamEditors/FlatCAMGrbEditor.py:4743
  3393. msgid "[WARNING_NOTCL] There are no polygons to mark area."
  3394. msgstr "[WARNING_NOTCL] Não há polígonos para marcar a área."
  3395. #: flatcamGUI/FlatCAMGUI.py:52
  3396. msgid "&File"
  3397. msgstr "&Arquivo"
  3398. #: flatcamGUI/FlatCAMGUI.py:57
  3399. msgid "&New Project ...\tCTRL+N"
  3400. msgstr "&Novo Projeto ...\tCTRL+N"
  3401. #: flatcamGUI/FlatCAMGUI.py:59
  3402. msgid "Will create a new, blank project"
  3403. msgstr "Criará um novo projeto em branco"
  3404. #: flatcamGUI/FlatCAMGUI.py:64
  3405. msgid "&New"
  3406. msgstr "&Novo"
  3407. #: flatcamGUI/FlatCAMGUI.py:67
  3408. msgid "Geometry\tN"
  3409. msgstr "Geometria\tN"
  3410. #: flatcamGUI/FlatCAMGUI.py:69
  3411. msgid "Will create a new, empty Geometry Object."
  3412. msgstr "Irá criar um novo Objeto Geometria vazio."
  3413. #: flatcamGUI/FlatCAMGUI.py:71
  3414. msgid "Gerber\tB"
  3415. msgstr "Gerber\tB"
  3416. #: flatcamGUI/FlatCAMGUI.py:73
  3417. msgid "Will create a new, empty Gerber Object."
  3418. msgstr "Irá criar um novo Objeto Gerber vazio."
  3419. #: flatcamGUI/FlatCAMGUI.py:75
  3420. msgid "Excellon\tL"
  3421. msgstr "Excellon\tL"
  3422. #: flatcamGUI/FlatCAMGUI.py:77
  3423. msgid "Will create a new, empty Excellon Object."
  3424. msgstr "Irá criar um novo Objeto Excellon vazio."
  3425. #: flatcamGUI/FlatCAMGUI.py:80 flatcamTools/ToolPcbWizard.py:62
  3426. #: flatcamTools/ToolPcbWizard.py:69
  3427. msgid "Open"
  3428. msgstr "Abrir"
  3429. #: flatcamGUI/FlatCAMGUI.py:84
  3430. msgid "Open &Project ..."
  3431. msgstr "Abrir &Projeto ..."
  3432. #: flatcamGUI/FlatCAMGUI.py:90
  3433. msgid "Open &Gerber ...\tCTRL+G"
  3434. msgstr "Abrir &Gerber ...\tCTRL+G"
  3435. #: flatcamGUI/FlatCAMGUI.py:95
  3436. msgid "Open &Excellon ...\tCTRL+E"
  3437. msgstr "Abrir &Excellon ...\tCTRL+E"
  3438. #: flatcamGUI/FlatCAMGUI.py:99
  3439. msgid "Open G-&Code ..."
  3440. msgstr "Abrir G-&Code ..."
  3441. #: flatcamGUI/FlatCAMGUI.py:105
  3442. msgid "Open Config ..."
  3443. msgstr "Abrir Configuração ..."
  3444. #: flatcamGUI/FlatCAMGUI.py:109
  3445. msgid "Recent projects"
  3446. msgstr "Projetos Recentes"
  3447. #: flatcamGUI/FlatCAMGUI.py:110
  3448. msgid "Recent files"
  3449. msgstr "Arquivos recentes"
  3450. #: flatcamGUI/FlatCAMGUI.py:116
  3451. msgid "Scripting"
  3452. msgstr "Scripting"
  3453. #: flatcamGUI/FlatCAMGUI.py:119
  3454. msgid "New Script ..."
  3455. msgstr "Novo Script ..."
  3456. #: flatcamGUI/FlatCAMGUI.py:120
  3457. msgid "Open Script ..."
  3458. msgstr "Abrir Script ..."
  3459. #: flatcamGUI/FlatCAMGUI.py:122
  3460. msgid "Run Script ...\tSHIFT+S"
  3461. msgstr "Executar Script ...\tSHIFT+S"
  3462. #: flatcamGUI/FlatCAMGUI.py:124
  3463. msgid ""
  3464. "Will run the opened Tcl Script thus\n"
  3465. "enabling the automation of certain\n"
  3466. "functions of FlatCAM."
  3467. msgstr ""
  3468. "Irá executar o script TCL aberto \n"
  3469. "ativando a automação de certas \n"
  3470. "funções do FlatCAM."
  3471. #: flatcamGUI/FlatCAMGUI.py:137
  3472. msgid "Import"
  3473. msgstr "Importar"
  3474. #: flatcamGUI/FlatCAMGUI.py:139
  3475. msgid "&SVG as Geometry Object ..."
  3476. msgstr "&SVG como Objeto de Geometria ..."
  3477. #: flatcamGUI/FlatCAMGUI.py:142
  3478. msgid "&SVG as Gerber Object ..."
  3479. msgstr "&SVG como objeto Gerber ..."
  3480. #: flatcamGUI/FlatCAMGUI.py:147
  3481. msgid "&DXF as Geometry Object ..."
  3482. msgstr "&DXF como Objeto de Geometria ..."
  3483. #: flatcamGUI/FlatCAMGUI.py:150
  3484. msgid "&DXF as Gerber Object ..."
  3485. msgstr "&DXF como Objeto Gerber ..."
  3486. #: flatcamGUI/FlatCAMGUI.py:155
  3487. msgid "Export"
  3488. msgstr "Exportar"
  3489. #: flatcamGUI/FlatCAMGUI.py:158
  3490. msgid "Export &SVG ..."
  3491. msgstr "Exportar &SVG ..."
  3492. #: flatcamGUI/FlatCAMGUI.py:161
  3493. msgid "Export DXF ..."
  3494. msgstr "Exportar DXF ..."
  3495. #: flatcamGUI/FlatCAMGUI.py:166
  3496. msgid "Export &PNG ..."
  3497. msgstr "Exportar &PNG ..."
  3498. #: flatcamGUI/FlatCAMGUI.py:168
  3499. msgid ""
  3500. "Will export an image in PNG format,\n"
  3501. "the saved image will contain the visual \n"
  3502. "information currently in FlatCAM Plot Area."
  3503. msgstr ""
  3504. "Irá exportar uma imagem em formato PNG, \n"
  3505. " a imagem salva conterá as informações \n"
  3506. " visuais atualmente na área gráfica FlatCAM."
  3507. #: flatcamGUI/FlatCAMGUI.py:177
  3508. msgid "Export &Excellon ..."
  3509. msgstr "Exportar &Excellon ..."
  3510. #: flatcamGUI/FlatCAMGUI.py:179
  3511. msgid ""
  3512. "Will export an Excellon Object as Excellon file,\n"
  3513. "the coordinates format, the file units and zeros\n"
  3514. "are set in Preferences -> Excellon Export."
  3515. msgstr ""
  3516. "Irá exportar um Objeto Excellon como arquivo Excel, \n"
  3517. "no formato de coordenadas, as unidades de arquivo e os zeros \n"
  3518. "são definidos em Preferências -> Exportação de Excellon."
  3519. #: flatcamGUI/FlatCAMGUI.py:186
  3520. msgid "Export &Gerber ..."
  3521. msgstr "Exportar &Gerber ..."
  3522. #: flatcamGUI/FlatCAMGUI.py:188
  3523. msgid ""
  3524. "Will export an Gerber Object as Gerber file,\n"
  3525. "the coordinates format, the file units and zeros\n"
  3526. "are set in Preferences -> Gerber Export."
  3527. msgstr ""
  3528. "Irá exportar um Objeto Gerber como arquivo Gerber, \n"
  3529. "o formato de coordenadas, as unidades de arquivo e os zeros \n"
  3530. "estão definidos em Preferências -> Exportar Gerber."
  3531. #: flatcamGUI/FlatCAMGUI.py:204
  3532. msgid "Backup"
  3533. msgstr "Backup"
  3534. #: flatcamGUI/FlatCAMGUI.py:208
  3535. msgid "Import Preferences from file ..."
  3536. msgstr "Importar preferências do arquivo ..."
  3537. #: flatcamGUI/FlatCAMGUI.py:213
  3538. msgid "Export Preferences to file ..."
  3539. msgstr "Exportar Preferências para arquivar ..."
  3540. #: flatcamGUI/FlatCAMGUI.py:219 flatcamGUI/FlatCAMGUI.py:546
  3541. msgid "Save"
  3542. msgstr "Salvar"
  3543. #: flatcamGUI/FlatCAMGUI.py:222
  3544. msgid "&Save Project ..."
  3545. msgstr "&Salvar Projeto ..."
  3546. #: flatcamGUI/FlatCAMGUI.py:227
  3547. msgid "Save Project &As ...\tCTRL+S"
  3548. msgstr "S&alvar Projeto Como ...\tCTRL+S"
  3549. #: flatcamGUI/FlatCAMGUI.py:232
  3550. msgid "Save Project C&opy ..."
  3551. msgstr "Salvar Cópia do Pr&ojeto ..."
  3552. #: flatcamGUI/FlatCAMGUI.py:239
  3553. msgid "E&xit"
  3554. msgstr "Sair"
  3555. #: flatcamGUI/FlatCAMGUI.py:245
  3556. msgid "&Edit"
  3557. msgstr "&Editar"
  3558. #: flatcamGUI/FlatCAMGUI.py:248
  3559. msgid "Edit Object\tE"
  3560. msgstr "Editar Objeto\tE"
  3561. #: flatcamGUI/FlatCAMGUI.py:249
  3562. msgid "Close Editor\tCTRL+S"
  3563. msgstr "Fechar Editor\tCTRL+S"
  3564. #: flatcamGUI/FlatCAMGUI.py:257
  3565. msgid "Conversion"
  3566. msgstr "Conversão"
  3567. #: flatcamGUI/FlatCAMGUI.py:259
  3568. msgid "&Join Geo/Gerber/Exc -> Geo"
  3569. msgstr "&Unir Geo/Gerber/Exc -> Geo"
  3570. #: flatcamGUI/FlatCAMGUI.py:261
  3571. msgid ""
  3572. "Merge a selection of objects, which can be of type:\n"
  3573. "- Gerber\n"
  3574. "- Excellon\n"
  3575. "- Geometry\n"
  3576. "into a new combo Geometry object."
  3577. msgstr ""
  3578. "Mesclar uma seleção de objetos, que podem ser do tipo: \n"
  3579. "- Gerber\n"
  3580. "- Excellon\n"
  3581. "- Geometria\n"
  3582. " em um novo objeto Geometria."
  3583. #: flatcamGUI/FlatCAMGUI.py:268
  3584. msgid "Join Excellon(s) -> Excellon"
  3585. msgstr "Unir Excellon(s) -> Excellon"
  3586. #: flatcamGUI/FlatCAMGUI.py:270
  3587. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3588. msgstr "Mesclar uma seleção de objetos Excellon em um novo objeto Excellon."
  3589. #: flatcamGUI/FlatCAMGUI.py:273
  3590. msgid "Join Gerber(s) -> Gerber"
  3591. msgstr "Unir Gerber(s) -> Gerber"
  3592. #: flatcamGUI/FlatCAMGUI.py:275
  3593. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3594. msgstr "Mesclar uma seleção de objetos Gerber em um novo objeto Gerber."
  3595. #: flatcamGUI/FlatCAMGUI.py:280
  3596. msgid "Convert Single to MultiGeo"
  3597. msgstr "Converter Single para MultiGeo"
  3598. #: flatcamGUI/FlatCAMGUI.py:282
  3599. msgid ""
  3600. "Will convert a Geometry object from single_geometry type\n"
  3601. "to a multi_geometry type."
  3602. msgstr ""
  3603. "Converterá um objeto Geometria do tipo single_geometry\n"
  3604. "em um tipo multi_geometry."
  3605. #: flatcamGUI/FlatCAMGUI.py:286
  3606. msgid "Convert Multi to SingleGeo"
  3607. msgstr "Converter Multi para SingleGeo"
  3608. #: flatcamGUI/FlatCAMGUI.py:288
  3609. msgid ""
  3610. "Will convert a Geometry object from multi_geometry type\n"
  3611. "to a single_geometry type."
  3612. msgstr ""
  3613. "Converterá um objeto Geometria do tipo multi_geometry\n"
  3614. "em um tipo single_geometry."
  3615. #: flatcamGUI/FlatCAMGUI.py:294
  3616. msgid "Convert Any to Geo"
  3617. msgstr "Converter Qualquer para Geo"
  3618. #: flatcamGUI/FlatCAMGUI.py:296
  3619. msgid "Convert Any to Gerber"
  3620. msgstr "Converter Qualquer para Gerber"
  3621. #: flatcamGUI/FlatCAMGUI.py:301
  3622. msgid "&Copy\tCTRL+C"
  3623. msgstr "&Copiar\tCTRL+C"
  3624. #: flatcamGUI/FlatCAMGUI.py:305
  3625. msgid "&Delete\tDEL"
  3626. msgstr "&Excluir\tDEL"
  3627. #: flatcamGUI/FlatCAMGUI.py:309
  3628. msgid "Se&t Origin\tO"
  3629. msgstr "De&finir Origem\tO"
  3630. #: flatcamGUI/FlatCAMGUI.py:310
  3631. msgid "Jump to Location\tJ"
  3632. msgstr "Ir para a localização\tJ"
  3633. #: flatcamGUI/FlatCAMGUI.py:315
  3634. msgid "Toggle Units\tQ"
  3635. msgstr "Alternar Unidades\tQ"
  3636. #: flatcamGUI/FlatCAMGUI.py:316
  3637. msgid "&Select All\tCTRL+A"
  3638. msgstr "&Selecionar Tudo\tCTRL+A"
  3639. #: flatcamGUI/FlatCAMGUI.py:320
  3640. msgid "&Preferences\tSHIFT+P"
  3641. msgstr "&Preferências\tSHIFT+P"
  3642. #: flatcamGUI/FlatCAMGUI.py:323
  3643. msgid "&Options"
  3644. msgstr "&Opções"
  3645. #: flatcamGUI/FlatCAMGUI.py:338
  3646. msgid "&Rotate Selection\tSHIFT+(R)"
  3647. msgstr "Gi&rar seleção\tSHIFT+(R)"
  3648. #: flatcamGUI/FlatCAMGUI.py:343
  3649. msgid "&Skew on X axis\tSHIFT+X"
  3650. msgstr "&Inclinar no eixo X\tSHIFT+X"
  3651. #: flatcamGUI/FlatCAMGUI.py:345
  3652. msgid "S&kew on Y axis\tSHIFT+Y"
  3653. msgstr "&Inclinar no eixo Y\tSHIFT+Y"
  3654. #: flatcamGUI/FlatCAMGUI.py:350
  3655. msgid "Flip on &X axis\tX"
  3656. msgstr "Espelhar no eixo &X\tX"
  3657. #: flatcamGUI/FlatCAMGUI.py:352
  3658. msgid "Flip on &Y axis\tY"
  3659. msgstr "Espelhar no eixo &Y\tY"
  3660. #: flatcamGUI/FlatCAMGUI.py:357
  3661. msgid "View source\tALT+S"
  3662. msgstr "Ver fonte\tALT+S"
  3663. #: flatcamGUI/FlatCAMGUI.py:362
  3664. msgid "&View"
  3665. msgstr "&Ver"
  3666. #: flatcamGUI/FlatCAMGUI.py:363
  3667. msgid "Enable all plots\tALT+1"
  3668. msgstr "Habilitar todos os gráficos\tALT+1"
  3669. #: flatcamGUI/FlatCAMGUI.py:365
  3670. msgid "Disable all plots\tALT+2"
  3671. msgstr "Desabilitar todos os gráficos\tALT+2"
  3672. #: flatcamGUI/FlatCAMGUI.py:367
  3673. msgid "Disable non-selected\tALT+3"
  3674. msgstr "Desabilitar os não selecionados\tALT+3"
  3675. #: flatcamGUI/FlatCAMGUI.py:370
  3676. msgid "&Zoom Fit\tV"
  3677. msgstr "&Zoom Ajustado\tV"
  3678. #: flatcamGUI/FlatCAMGUI.py:371
  3679. msgid "&Zoom In\t="
  3680. msgstr "&Zoom +\t="
  3681. #: flatcamGUI/FlatCAMGUI.py:372
  3682. msgid "&Zoom Out\t-"
  3683. msgstr "&Zoom -\t-"
  3684. #: flatcamGUI/FlatCAMGUI.py:376
  3685. msgid "Toggle Code Editor\tCTRL+E"
  3686. msgstr "Alternar o Editor de Códigos\tCTRL+E"
  3687. #: flatcamGUI/FlatCAMGUI.py:379
  3688. msgid "&Toggle FullScreen\tALT+F10"
  3689. msgstr "Alternar &Tela Cheia\tALT+F10"
  3690. #: flatcamGUI/FlatCAMGUI.py:381
  3691. msgid "&Toggle Plot Area\tCTRL+F10"
  3692. msgstr "Al&ternar Área de Gráficos\tCTRL+F10"
  3693. #: flatcamGUI/FlatCAMGUI.py:383
  3694. msgid "&Toggle Project/Sel/Tool\t`"
  3695. msgstr "Al&ternar Projeto/Sel/Ferram\t`"
  3696. #: flatcamGUI/FlatCAMGUI.py:386
  3697. msgid "&Toggle Grid Snap\tG"
  3698. msgstr "Al&ternar Encaixe na Grade\tG"
  3699. #: flatcamGUI/FlatCAMGUI.py:388
  3700. msgid "&Toggle Axis\tSHIFT+G"
  3701. msgstr "Al&ternar Eixo\tSHIFT+G"
  3702. #: flatcamGUI/FlatCAMGUI.py:391
  3703. msgid "Toggle Workspace\tSHIFT+W"
  3704. msgstr "Alternar Espaço de Trabalho\tSHIFT+W"
  3705. #: flatcamGUI/FlatCAMGUI.py:394
  3706. msgid "&Tool"
  3707. msgstr "Ferramen&ta"
  3708. #: flatcamGUI/FlatCAMGUI.py:396
  3709. msgid "&Command Line\tS"
  3710. msgstr "Linha de &Comando\tS"
  3711. #: flatcamGUI/FlatCAMGUI.py:399
  3712. msgid "&Help"
  3713. msgstr "&Ajuda"
  3714. #: flatcamGUI/FlatCAMGUI.py:400
  3715. msgid "Help\tF1"
  3716. msgstr "Ajuda\tF1"
  3717. #: flatcamGUI/FlatCAMGUI.py:401
  3718. msgid "FlatCAM.org"
  3719. msgstr "FlatCAM.org"
  3720. #: flatcamGUI/FlatCAMGUI.py:404
  3721. msgid "Shortcuts List\tF3"
  3722. msgstr "Lista de Atalhos\tF3"
  3723. #: flatcamGUI/FlatCAMGUI.py:405
  3724. msgid "YouTube Channel\tF4"
  3725. msgstr "Canal no YouTube\tF4"
  3726. #: flatcamGUI/FlatCAMGUI.py:407
  3727. msgid "About"
  3728. msgstr "Sobre"
  3729. #: flatcamGUI/FlatCAMGUI.py:414
  3730. msgid "Add Circle\tO"
  3731. msgstr "Adicionar Círculo\tO"
  3732. #: flatcamGUI/FlatCAMGUI.py:416
  3733. msgid "Add Arc\tA"
  3734. msgstr "Adicionar Arco\tA"
  3735. #: flatcamGUI/FlatCAMGUI.py:419
  3736. msgid "Add Rectangle\tR"
  3737. msgstr "Adicionar Retângulo\tR"
  3738. #: flatcamGUI/FlatCAMGUI.py:422
  3739. msgid "Add Polygon\tN"
  3740. msgstr "Adicionar Polígono\tN"
  3741. #: flatcamGUI/FlatCAMGUI.py:424
  3742. msgid "Add Path\tP"
  3743. msgstr "Adicionar Caminho\tP"
  3744. #: flatcamGUI/FlatCAMGUI.py:426
  3745. msgid "Add Text\tT"
  3746. msgstr "Adicionar Texto\tT"
  3747. #: flatcamGUI/FlatCAMGUI.py:429
  3748. msgid "Polygon Union\tU"
  3749. msgstr "Unir Polígonos\tU"
  3750. #: flatcamGUI/FlatCAMGUI.py:431
  3751. msgid "Polygon Intersection\tE"
  3752. msgstr "Interseção de Polígonos\tE"
  3753. #: flatcamGUI/FlatCAMGUI.py:433
  3754. msgid "Polygon Subtraction\tS"
  3755. msgstr "Subtração de Polígonos\tS"
  3756. #: flatcamGUI/FlatCAMGUI.py:437
  3757. msgid "Cut Path\tX"
  3758. msgstr "Caminho de Corte\tX"
  3759. #: flatcamGUI/FlatCAMGUI.py:439
  3760. msgid "Copy Geom\tC"
  3761. msgstr "Copiar Geom\tC"
  3762. #: flatcamGUI/FlatCAMGUI.py:441
  3763. msgid "Delete Shape\tDEL"
  3764. msgstr "Excluir Forma\tDEL"
  3765. #: flatcamGUI/FlatCAMGUI.py:444 flatcamGUI/FlatCAMGUI.py:521
  3766. msgid "Move\tM"
  3767. msgstr "Mover\tM"
  3768. #: flatcamGUI/FlatCAMGUI.py:446
  3769. msgid "Buffer Tool\tB"
  3770. msgstr "Ferramenta Buffer\tB"
  3771. #: flatcamGUI/FlatCAMGUI.py:449
  3772. msgid "Paint Tool\tI"
  3773. msgstr "Ferramenta de Pintura\tI"
  3774. #: flatcamGUI/FlatCAMGUI.py:452
  3775. msgid "Transform Tool\tALT+R"
  3776. msgstr "Ferramenta de Transformação\tALT+R"
  3777. #: flatcamGUI/FlatCAMGUI.py:456
  3778. msgid "Toggle Corner Snap\tK"
  3779. msgstr "Alternar Encaixe de Canto\tK"
  3780. #: flatcamGUI/FlatCAMGUI.py:459
  3781. msgid ">Excellon Editor<"
  3782. msgstr ">Editor Excellon<"
  3783. #: flatcamGUI/FlatCAMGUI.py:463
  3784. msgid "Add Drill Array\tA"
  3785. msgstr "Adicionar Matriz de Brocas\tA"
  3786. #: flatcamGUI/FlatCAMGUI.py:465
  3787. msgid "Add Drill\tD"
  3788. msgstr "Adicionar Broca\tD"
  3789. #: flatcamGUI/FlatCAMGUI.py:469
  3790. msgid "Add Slot Array\tQ"
  3791. msgstr "Adic. matriz de ranhuras\tQ"
  3792. #: flatcamGUI/FlatCAMGUI.py:471
  3793. msgid "Add Slot\tW"
  3794. msgstr "Adicionar Ranhura\tW"
  3795. #: flatcamGUI/FlatCAMGUI.py:475
  3796. msgid "Resize Drill(S)\tR"
  3797. msgstr "Redimensionar Broca(s)\tR"
  3798. #: flatcamGUI/FlatCAMGUI.py:477 flatcamGUI/FlatCAMGUI.py:516
  3799. msgid "Copy\tC"
  3800. msgstr "Copiar\tC"
  3801. #: flatcamGUI/FlatCAMGUI.py:479 flatcamGUI/FlatCAMGUI.py:518
  3802. msgid "Delete\tDEL"
  3803. msgstr "Excluir\tDEL"
  3804. #: flatcamGUI/FlatCAMGUI.py:484
  3805. msgid "Move Drill(s)\tM"
  3806. msgstr "Mover Broca(s)\tM"
  3807. #: flatcamGUI/FlatCAMGUI.py:487
  3808. msgid ">Gerber Editor<"
  3809. msgstr ">Editor Gerber<"
  3810. #: flatcamGUI/FlatCAMGUI.py:491
  3811. msgid "Add Pad\tP"
  3812. msgstr "Adicionar Pad\tP"
  3813. #: flatcamGUI/FlatCAMGUI.py:493
  3814. msgid "Add Pad Array\tA"
  3815. msgstr "Adicionar Matriz de Pads\tA"
  3816. #: flatcamGUI/FlatCAMGUI.py:495
  3817. msgid "Add Track\tT"
  3818. msgstr "Adicionar Trilha\tT"
  3819. #: flatcamGUI/FlatCAMGUI.py:497
  3820. msgid "Add Region\tN"
  3821. msgstr "Adicionar Região\tN"
  3822. #: flatcamGUI/FlatCAMGUI.py:501
  3823. msgid "Poligonize\tALT+N"
  3824. msgstr "Poligonizar\tALT+N"
  3825. #: flatcamGUI/FlatCAMGUI.py:503
  3826. msgid "Add SemiDisc\tE"
  3827. msgstr "Adicionar SemiDisc\tE"
  3828. #: flatcamGUI/FlatCAMGUI.py:504
  3829. msgid "Add Disc\tD"
  3830. msgstr "Adicionar Disco\tD"
  3831. #: flatcamGUI/FlatCAMGUI.py:506
  3832. msgid "Buffer\tB"
  3833. msgstr "Buffer\tB"
  3834. #: flatcamGUI/FlatCAMGUI.py:507
  3835. msgid "Scale\tS"
  3836. msgstr "Escala\tS"
  3837. #: flatcamGUI/FlatCAMGUI.py:509
  3838. msgid "Mark Area\tALT+A"
  3839. msgstr "Marcar Área\tALT+A"
  3840. #: flatcamGUI/FlatCAMGUI.py:511
  3841. msgid "Eraser\tCTRL+E"
  3842. msgstr "Borracha\tCTRL+E"
  3843. #: flatcamGUI/FlatCAMGUI.py:513
  3844. msgid "Transform\tALT+R"
  3845. msgstr "Transformar\tALT+R"
  3846. #: flatcamGUI/FlatCAMGUI.py:537
  3847. msgid "Enable Plot"
  3848. msgstr "Habilitar Gráfico"
  3849. #: flatcamGUI/FlatCAMGUI.py:538
  3850. msgid "Disable Plot"
  3851. msgstr "Desabilitar Gráfico"
  3852. #: flatcamGUI/FlatCAMGUI.py:540
  3853. msgid "Generate CNC"
  3854. msgstr "Gerar CNC"
  3855. #: flatcamGUI/FlatCAMGUI.py:541
  3856. msgid "View Source"
  3857. msgstr "Ver Fonte"
  3858. #: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1702
  3859. msgid "Edit"
  3860. msgstr "Editar"
  3861. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1708
  3862. #: flatcamTools/ToolProperties.py:25
  3863. msgid "Properties"
  3864. msgstr "Propriedades"
  3865. #: flatcamGUI/FlatCAMGUI.py:578
  3866. msgid "File Toolbar"
  3867. msgstr "Barra de Ferramentas de Arquivos"
  3868. #: flatcamGUI/FlatCAMGUI.py:582
  3869. msgid "Edit Toolbar"
  3870. msgstr "Barra de Ferramentas Editar"
  3871. #: flatcamGUI/FlatCAMGUI.py:586
  3872. msgid "View Toolbar"
  3873. msgstr "Barra de Ferramentas Ver"
  3874. #: flatcamGUI/FlatCAMGUI.py:590
  3875. msgid "Shell Toolbar"
  3876. msgstr "Barra de Ferramentas Shell"
  3877. #: flatcamGUI/FlatCAMGUI.py:594
  3878. msgid "Tools Toolbar"
  3879. msgstr "Barra de Ferramentas Ferramentas"
  3880. #: flatcamGUI/FlatCAMGUI.py:598
  3881. msgid "Excellon Editor Toolbar"
  3882. msgstr "Barra de Ferramentas Editor Excellon"
  3883. #: flatcamGUI/FlatCAMGUI.py:602
  3884. msgid "Geometry Editor Toolbar"
  3885. msgstr "Barra de Ferramentas Editor de Geometria"
  3886. #: flatcamGUI/FlatCAMGUI.py:606
  3887. msgid "Gerber Editor Toolbar"
  3888. msgstr "Barra de Ferramentas Editor Gerber"
  3889. #: flatcamGUI/FlatCAMGUI.py:610
  3890. msgid "Grid Toolbar"
  3891. msgstr "Barra de Ferramentas Grade"
  3892. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1948
  3893. msgid "Open project"
  3894. msgstr "Abrir projeto"
  3895. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1949
  3896. msgid "Save project"
  3897. msgstr "Salvar projeto"
  3898. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1952
  3899. msgid "New Blank Geometry"
  3900. msgstr "Nova Geometria em Branco"
  3901. #: flatcamGUI/FlatCAMGUI.py:634
  3902. msgid "New Blank Gerber"
  3903. msgstr "Novo Gerber em branco"
  3904. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1953
  3905. msgid "New Blank Excellon"
  3906. msgstr "Novo Excellon em branco"
  3907. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1955
  3908. msgid "Editor"
  3909. msgstr "Editor"
  3910. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1957
  3911. msgid "Save Object and close the Editor"
  3912. msgstr "Salvar objeto e fechar o editor"
  3913. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1961
  3914. msgid "&Delete"
  3915. msgstr "&Excluir"
  3916. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1964
  3917. msgid "&Replot"
  3918. msgstr "&Redesenhar"
  3919. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1965
  3920. msgid "&Clear plot"
  3921. msgstr "Limpar gráfi&co"
  3922. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1966
  3923. msgid "Zoom In"
  3924. msgstr "Zoom +"
  3925. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1967
  3926. msgid "Zoom Out"
  3927. msgstr "Zoom -"
  3928. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1639
  3929. #: flatcamGUI/FlatCAMGUI.py:1968
  3930. msgid "Zoom Fit"
  3931. msgstr "Zoom Ajustado"
  3932. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1973
  3933. msgid "&Command Line"
  3934. msgstr "Linha de &Comando"
  3935. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1976
  3936. msgid "2Sided Tool"
  3937. msgstr "PCB de 2 Faces"
  3938. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:1977
  3939. msgid "&Cutout Tool"
  3940. msgstr "Ferramenta de Re&corte"
  3941. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1978
  3942. #: flatcamGUI/ObjectUI.py:390 flatcamTools/ToolNonCopperClear.py:437
  3943. msgid "NCC Tool"
  3944. msgstr "Ferramenta NCC"
  3945. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1982
  3946. msgid "Panel Tool"
  3947. msgstr "Ferramenta de Painel"
  3948. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1983
  3949. #: flatcamTools/ToolFilm.py:209
  3950. msgid "Film Tool"
  3951. msgstr "Ferramenta de Filme"
  3952. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:1985
  3953. #: flatcamTools/ToolSolderPaste.py:455
  3954. msgid "SolderPaste Tool"
  3955. msgstr "Ferramenta Pasta de Solda"
  3956. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:1986
  3957. #: flatcamTools/ToolSub.py:28
  3958. msgid "Substract Tool"
  3959. msgstr "Ferramenta Subtrair"
  3960. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:1991
  3961. msgid "Calculators Tool"
  3962. msgstr "Calculadoras"
  3963. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
  3964. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1995
  3965. #: flatcamGUI/FlatCAMGUI.py:2048
  3966. msgid "Select"
  3967. msgstr "Selecionar"
  3968. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:1996
  3969. msgid "Add Drill Hole"
  3970. msgstr "Adicionar Furo"
  3971. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1998
  3972. msgid "Add Drill Hole Array"
  3973. msgstr "Adicionar Matriz do Furos"
  3974. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1694
  3975. #: flatcamGUI/FlatCAMGUI.py:2000
  3976. msgid "Add Slot"
  3977. msgstr "Adicionar Ranhura"
  3978. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1695
  3979. #: flatcamGUI/FlatCAMGUI.py:2002
  3980. msgid "Add Slot Array"
  3981. msgstr "Adicionar Matriz de Ranhuras"
  3982. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1697
  3983. #: flatcamGUI/FlatCAMGUI.py:1999
  3984. msgid "Resize Drill"
  3985. msgstr "Redimensionar Broca"
  3986. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2005
  3987. msgid "Copy Drill"
  3988. msgstr "Copiar Broca"
  3989. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2007
  3990. msgid "Delete Drill"
  3991. msgstr "Excluir Broca"
  3992. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2010
  3993. msgid "Move Drill"
  3994. msgstr "Mover Broca"
  3995. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2014
  3996. msgid "Add Circle"
  3997. msgstr "Adicionar Círculo"
  3998. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2015
  3999. msgid "Add Arc"
  4000. msgstr "Adicionar Arco"
  4001. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2017
  4002. msgid "Add Rectangle"
  4003. msgstr "Adicionar Retângulo"
  4004. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2020
  4005. msgid "Add Path"
  4006. msgstr "Adicionar Caminho"
  4007. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2022
  4008. msgid "Add Polygon"
  4009. msgstr "Adicionar Polígono"
  4010. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2024
  4011. msgid "Add Text"
  4012. msgstr "Adicionar Texto"
  4013. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2025
  4014. msgid "Add Buffer"
  4015. msgstr "Adicionar Buffer"
  4016. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2026
  4017. msgid "Paint Shape"
  4018. msgstr "Pintar Forma"
  4019. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
  4020. #: flatcamGUI/FlatCAMGUI.py:1656 flatcamGUI/FlatCAMGUI.py:1684
  4021. #: flatcamGUI/FlatCAMGUI.py:2027 flatcamGUI/FlatCAMGUI.py:2064
  4022. msgid "Eraser"
  4023. msgstr "Apagador"
  4024. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2030
  4025. msgid "Polygon Union"
  4026. msgstr "União de Polígonos"
  4027. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2032
  4028. msgid "Polygon Intersection"
  4029. msgstr "Interseção de Polígonos"
  4030. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2034
  4031. msgid "Polygon Subtraction"
  4032. msgstr "Subtração de Polígonos"
  4033. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2037
  4034. msgid "Cut Path"
  4035. msgstr "Caminho de Corte"
  4036. #: flatcamGUI/FlatCAMGUI.py:716
  4037. msgid "Copy Shape(s)"
  4038. msgstr "Copiar Forma(s)"
  4039. #: flatcamGUI/FlatCAMGUI.py:719
  4040. msgid "Delete Shape '-'"
  4041. msgstr "Excluir Forma '-'"
  4042. #: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
  4043. #: flatcamGUI/FlatCAMGUI.py:1663 flatcamGUI/FlatCAMGUI.py:1688
  4044. #: flatcamGUI/FlatCAMGUI.py:2042 flatcamGUI/FlatCAMGUI.py:2071
  4045. msgid "Transformations"
  4046. msgstr "Transformações"
  4047. #: flatcamGUI/FlatCAMGUI.py:723
  4048. msgid "Move Objects "
  4049. msgstr "Mover Objetos "
  4050. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2049
  4051. msgid "Add Pad"
  4052. msgstr "Adicionar Pad"
  4053. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2051
  4054. msgid "Add Track"
  4055. msgstr "Adicionar Trilha"
  4056. #: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2052
  4057. msgid "Add Region"
  4058. msgstr "Adicionar Região"
  4059. #: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1676
  4060. #: flatcamGUI/FlatCAMGUI.py:2054
  4061. msgid "Poligonize"
  4062. msgstr "Poligonizar"
  4063. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1677
  4064. #: flatcamGUI/FlatCAMGUI.py:2056
  4065. msgid "SemiDisc"
  4066. msgstr "SemiDisco"
  4067. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1678
  4068. #: flatcamGUI/FlatCAMGUI.py:2057
  4069. msgid "Disc"
  4070. msgstr "Disco"
  4071. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1683
  4072. #: flatcamGUI/FlatCAMGUI.py:2063
  4073. msgid "Mark Area"
  4074. msgstr "Marcar Área"
  4075. #: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1666
  4076. #: flatcamGUI/FlatCAMGUI.py:1707 flatcamGUI/FlatCAMGUI.py:2073
  4077. #: flatcamTools/ToolMove.py:26
  4078. msgid "Move"
  4079. msgstr "Mover"
  4080. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2079
  4081. msgid "Snap to grid"
  4082. msgstr "Encaixar na Grade"
  4083. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2082
  4084. msgid "Grid X snapping distance"
  4085. msgstr "Distância de encaixe Grade X"
  4086. #: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2087
  4087. msgid "Grid Y snapping distance"
  4088. msgstr "Distância de encaixe Grade Y"
  4089. #: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2093
  4090. msgid ""
  4091. "When active, value on Grid_X\n"
  4092. "is copied to the Grid_Y value."
  4093. msgstr ""
  4094. "Quando ativo, o valor em Grid_X\n"
  4095. "é copiado para o valor Grid_Y."
  4096. #: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2099
  4097. msgid "Snap to corner"
  4098. msgstr "Encaixar no canto"
  4099. #: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2103
  4100. #: flatcamGUI/FlatCAMGUI.py:3524
  4101. msgid "Max. magnet distance"
  4102. msgstr "Max. distância magnética"
  4103. #: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1633
  4104. msgid "Project"
  4105. msgstr "Projeto"
  4106. #: flatcamGUI/FlatCAMGUI.py:819
  4107. msgid "Selected"
  4108. msgstr "Selecionado"
  4109. #: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:846
  4110. msgid "Plot Area"
  4111. msgstr "Área de Gráfico"
  4112. #: flatcamGUI/FlatCAMGUI.py:872
  4113. msgid "General"
  4114. msgstr "Geral"
  4115. #: flatcamGUI/FlatCAMGUI.py:881
  4116. msgid "APP. DEFAULTS"
  4117. msgstr "PADRÕES APP."
  4118. #: flatcamGUI/FlatCAMGUI.py:882
  4119. msgid "PROJ. OPTIONS "
  4120. msgstr "OPÇÕES PROJ."
  4121. #: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
  4122. msgid "GERBER"
  4123. msgstr "Gerber"
  4124. #: flatcamGUI/FlatCAMGUI.py:904 flatcamTools/ToolDblSided.py:71
  4125. msgid "EXCELLON"
  4126. msgstr "Excellon"
  4127. #: flatcamGUI/FlatCAMGUI.py:914 flatcamTools/ToolDblSided.py:95
  4128. msgid "GEOMETRY"
  4129. msgstr "Geometria"
  4130. #: flatcamGUI/FlatCAMGUI.py:924
  4131. msgid "CNC-JOB"
  4132. msgstr "Trabalho CNC"
  4133. #: flatcamGUI/FlatCAMGUI.py:933
  4134. msgid "TOOLS"
  4135. msgstr "Ferramentas"
  4136. #: flatcamGUI/FlatCAMGUI.py:950
  4137. msgid "Import Preferences"
  4138. msgstr "Importar Preferências"
  4139. #: flatcamGUI/FlatCAMGUI.py:953
  4140. msgid ""
  4141. "Import a full set of FlatCAM settings from a file\n"
  4142. "previously saved on HDD.\n"
  4143. "\n"
  4144. "FlatCAM automatically save a 'factory_defaults' file\n"
  4145. "on the first start. Do not delete that file."
  4146. msgstr ""
  4147. "Importa um conjunto completo de configurações do FlatCAM de um arquivo\n"
  4148. "previamente salvo no HDD.\n"
  4149. "\n"
  4150. "FlatCAM salva automaticamente o arquivo 'factory_defaults'\n"
  4151. "na primeira inicialização. Não exclua esse arquivo."
  4152. #: flatcamGUI/FlatCAMGUI.py:960
  4153. msgid "Export Preferences"
  4154. msgstr "Exportar Preferências"
  4155. #: flatcamGUI/FlatCAMGUI.py:963
  4156. msgid ""
  4157. "Export a full set of FlatCAM settings in a file\n"
  4158. "that is saved on HDD."
  4159. msgstr ""
  4160. "Exporta um conjunto completo de configurações do FlatCAM em um arquivo\n"
  4161. "salvo no HDD."
  4162. #: flatcamGUI/FlatCAMGUI.py:968
  4163. msgid "Open Pref Folder"
  4164. msgstr "Abrir a Pasta Pref"
  4165. #: flatcamGUI/FlatCAMGUI.py:971
  4166. msgid "Open the folder where FlatCAM save the preferences files."
  4167. msgstr "Abre a pasta onde o FlatCAM salva os arquivos de preferências."
  4168. #: flatcamGUI/FlatCAMGUI.py:982
  4169. msgid ""
  4170. "Save the current settings in the 'current_defaults' file\n"
  4171. "which is the file storing the working default preferences."
  4172. msgstr ""
  4173. "Salve as configurações atuais no arquivo 'current_defaults'\n"
  4174. "que armazena as preferências padrão de trabalho."
  4175. #: flatcamGUI/FlatCAMGUI.py:1008
  4176. msgid ""
  4177. "<b>General Shortcut list</b><br>\n"
  4178. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4179. "\"width:283px\">\n"
  4180. " <tbody>\n"
  4181. " <tr height=\"20\">\n"
  4182. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4183. "td>\n"
  4184. " <td width=\"194\"><span style=\"color:"
  4185. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4186. " </tr>\n"
  4187. " <tr height=\"20\">\n"
  4188. " <td height=\"20\">&nbsp;</td>\n"
  4189. " <td>&nbsp;</td>\n"
  4190. " </tr>\n"
  4191. " <tr height=\"20\">\n"
  4192. " <td height=\"20\"><strong>1</strong></td>\n"
  4193. " <td>&nbsp;Switch to Project Tab</td>\n"
  4194. " </tr>\n"
  4195. " <tr height=\"20\">\n"
  4196. " <td height=\"20\"><strong>2</strong></td>\n"
  4197. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4198. " </tr>\n"
  4199. " <tr height=\"20\">\n"
  4200. " <td height=\"20\"><strong>3</strong></td>\n"
  4201. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4202. " </tr>\n"
  4203. " <tr height=\"20\">\n"
  4204. " <td height=\"20\">&nbsp;</td>\n"
  4205. " <td>&nbsp;</td>\n"
  4206. " </tr>\n"
  4207. " <tr height=\"20\">\n"
  4208. " <td height=\"20\"><strong>B</strong></td>\n"
  4209. " <td>&nbsp;New Gerber</td>\n"
  4210. " </tr>\n"
  4211. " <tr height=\"20\">\n"
  4212. " <td height=\"20\"><strong>E</strong></td>\n"
  4213. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4214. " </tr>\n"
  4215. " <tr height=\"20\">\n"
  4216. " <td height=\"20\"><strong>G</strong></td>\n"
  4217. " <td>&nbsp;Grid On/Off</td>\n"
  4218. " </tr>\n"
  4219. " <tr height=\"20\">\n"
  4220. " <td height=\"20\"><strong>J</strong></td>\n"
  4221. " <td>&nbsp;Jump to Coordinates</td>\n"
  4222. " </tr>\n"
  4223. " <tr height=\"20\">\n"
  4224. " <td height=\"20\"><strong>L</strong></td>\n"
  4225. " <td>&nbsp;New Excellon</td>\n"
  4226. " </tr>\n"
  4227. " <tr height=\"20\">\n"
  4228. " <td height=\"20\"><strong>M</strong></td>\n"
  4229. " <td>&nbsp;Move Obj</td>\n"
  4230. " </tr>\n"
  4231. " <tr height=\"20\">\n"
  4232. " <td height=\"20\"><strong>N</strong></td>\n"
  4233. " <td>&nbsp;New Geometry</td>\n"
  4234. " </tr>\n"
  4235. " <tr height=\"20\">\n"
  4236. " <td height=\"20\"><strong>O</strong></td>\n"
  4237. " <td>&nbsp;Set Origin</td>\n"
  4238. " </tr>\n"
  4239. " <tr height=\"20\">\n"
  4240. " <td height=\"20\"><strong>Q</strong></td>\n"
  4241. " <td>&nbsp;Change Units</td>\n"
  4242. " </tr>\n"
  4243. " <tr height=\"20\">\n"
  4244. " <td height=\"20\"><strong>P</strong></td>\n"
  4245. " <td>&nbsp;Open Properties Tool</td>\n"
  4246. " </tr>\n"
  4247. " <tr height=\"20\">\n"
  4248. " <td height=\"20\"><strong>R</strong></td>\n"
  4249. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4250. " </tr>\n"
  4251. " <tr height=\"20\">\n"
  4252. " <td height=\"20\"><strong>S</strong></td>\n"
  4253. " <td>&nbsp;Shell Toggle</td>\n"
  4254. " </tr>\n"
  4255. " <tr height=\"20\">\n"
  4256. " <td height=\"20\"><strong>T</strong></td>\n"
  4257. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4258. "or in Tools NCC or Tools Paint)</td>\n"
  4259. " </tr>\n"
  4260. " <tr height=\"20\">\n"
  4261. " <td height=\"20\"><strong>V</strong></td>\n"
  4262. " <td>&nbsp;Zoom Fit</td>\n"
  4263. " </tr>\n"
  4264. " <tr height=\"20\">\n"
  4265. " <td height=\"20\"><strong>X</strong></td>\n"
  4266. " <td>&nbsp;Flip on X_axis</td>\n"
  4267. " </tr>\n"
  4268. " <tr height=\"20\">\n"
  4269. " <td height=\"20\"><strong>Y</strong></td>\n"
  4270. " <td>&nbsp;Flip on Y_axis</td>\n"
  4271. " </tr>\n"
  4272. " <tr height=\"20\">\n"
  4273. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4274. " <td>&nbsp;Zoom Out</td>\n"
  4275. " </tr>\n"
  4276. " <tr height=\"20\">\n"
  4277. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4278. " <td>&nbsp;Zoom In</td>\n"
  4279. " </tr>\n"
  4280. " <tr height=\"20\">\n"
  4281. " <td height=\"20\">&nbsp;</td>\n"
  4282. " <td>&nbsp;</td>\n"
  4283. " </tr>\n"
  4284. " <tr height=\"20\">\n"
  4285. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4286. " <td>&nbsp;Select All</td>\n"
  4287. " </tr>\n"
  4288. " <tr height=\"20\">\n"
  4289. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4290. " <td>&nbsp;Copy Obj</td>\n"
  4291. " </tr>\n"
  4292. " <tr height=\"20\">\n"
  4293. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4294. " <td>&nbsp;Open Excellon File</td>\n"
  4295. " </tr>\n"
  4296. " <tr height=\"20\">\n"
  4297. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4298. " <td>&nbsp;Open Gerber File</td>\n"
  4299. " </tr>\n"
  4300. " <tr height=\"20\">\n"
  4301. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4302. " <td>&nbsp;New Project</td>\n"
  4303. " </tr>\n"
  4304. " <tr height=\"20\">\n"
  4305. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4306. " <td>&nbsp;Measurement Tool</td>\n"
  4307. " </tr>\n"
  4308. " <tr height=\"20\">\n"
  4309. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4310. " <td>&nbsp;Open Project</td>\n"
  4311. " </tr>\n"
  4312. " <tr height=\"20\">\n"
  4313. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4314. " <td>&nbsp;Save Project As</td>\n"
  4315. " </tr>\n"
  4316. " <tr height=\"20\">\n"
  4317. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4318. " <td>&nbsp;Toggle Plot Area</td>\n"
  4319. " </tr>\n"
  4320. " <tr height=\"20\">\n"
  4321. " <td height=\"20\">&nbsp;</td>\n"
  4322. " <td>&nbsp;</td>\n"
  4323. " </tr>\n"
  4324. " <tr height=\"20\">\n"
  4325. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4326. " <td>&nbsp;Copy Obj_Name</td>\n"
  4327. " </tr>\n"
  4328. " <tr height=\"20\">\n"
  4329. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4330. " <td>&nbsp;Toggle Code Editor</td>\n"
  4331. " </tr>\n"
  4332. " <tr height=\"20\">\n"
  4333. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4334. " <td>&nbsp;Toggle the axis</td>\n"
  4335. " </tr>\n"
  4336. " <tr height=\"20\">\n"
  4337. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4338. " <td>&nbsp;Open Preferences Window</td>\n"
  4339. " </tr>\n"
  4340. " <tr height=\"20\">\n"
  4341. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4342. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4343. " </tr>\n"
  4344. " <tr height=\"20\">\n"
  4345. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4346. " <td>&nbsp;Run a Script</td>\n"
  4347. " </tr>\n"
  4348. " <tr height=\"20\">\n"
  4349. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4350. " <td>&nbsp;Toggle the workspace</td>\n"
  4351. " </tr>\n"
  4352. " <tr height=\"20\">\n"
  4353. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4354. " <td>&nbsp;Skew on X axis</td>\n"
  4355. " </tr>\n"
  4356. " <tr height=\"20\">\n"
  4357. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4358. " <td>&nbsp;Skew on Y axis</td>\n"
  4359. " </tr>\n"
  4360. " <tr height=\"20\">\n"
  4361. " <td height=\"20\">&nbsp;</td>\n"
  4362. " <td>&nbsp;</td>\n"
  4363. " </tr>\n"
  4364. " <tr height=\"20\">\n"
  4365. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4366. " <td>&nbsp;Calculators Tool</td>\n"
  4367. " </tr>\n"
  4368. " <tr height=\"20\">\n"
  4369. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4370. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4371. " </tr>\n"
  4372. " <tr height=\"20\">\n"
  4373. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4374. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4375. " </tr>\n"
  4376. " <tr height=\"20\">\n"
  4377. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4378. " <td>&nbsp;Film PCB Tool</td>\n"
  4379. " </tr>\n"
  4380. " <tr height=\"20\">\n"
  4381. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4382. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4383. " </tr>\n"
  4384. " <tr height=\"20\">\n"
  4385. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4386. " <td>&nbsp;Paint Area Tool</td>\n"
  4387. " </tr>\n"
  4388. " <tr height=\"20\">\n"
  4389. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4390. " <td>&nbsp;PDF Import Tool</td>\n"
  4391. " </tr>\n"
  4392. " <tr height=\"20\">\n"
  4393. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4394. " <td>&nbsp;Transformations Tool</td>\n"
  4395. " </tr>\n"
  4396. " <tr height=\"20\">\n"
  4397. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4398. " <td>&nbsp;View File Source</td>\n"
  4399. " </tr>\n"
  4400. " <tr height=\"20\">\n"
  4401. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4402. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4403. " </tr>\n"
  4404. " <tr height=\"20\">\n"
  4405. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4406. " <td>&nbsp;Enable all Plots</td>\n"
  4407. " </tr>\n"
  4408. " <tr height=\"20\">\n"
  4409. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4410. " <td>&nbsp;Disable all Plots</td>\n"
  4411. " </tr>\n"
  4412. " <tr height=\"20\">\n"
  4413. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4414. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4415. " </tr>\n"
  4416. " <tr height=\"20\">\n"
  4417. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4418. " <td>&nbsp;Toggle Full Screen</td>\n"
  4419. " </tr>\n"
  4420. " <tr height=\"20\">\n"
  4421. " <td height=\"20\">&nbsp;</td>\n"
  4422. " <td>&nbsp;</td>\n"
  4423. " </tr>\n"
  4424. " <tr height=\"20\">\n"
  4425. " <td height=\"20\"><strong>F1</strong></td>\n"
  4426. " <td>&nbsp;Open Online Manual</td>\n"
  4427. " </tr>\n"
  4428. " <tr height=\"20\">\n"
  4429. " <td height=\"20\"><strong>F4</strong></td>\n"
  4430. " <td>&nbsp;Open Online Tutorials</td>\n"
  4431. " </tr>\n"
  4432. " <tr height=\"20\">\n"
  4433. " <td height=\"20\"><strong>Del</strong></td>\n"
  4434. " <td>&nbsp;Delete Object</td>\n"
  4435. " </tr>\n"
  4436. " <tr height=\"20\">\n"
  4437. " <td height=\"20\"><strong>Del</strong></td>\n"
  4438. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4439. " </tr>\n"
  4440. " <tr height=\"20\">\n"
  4441. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4442. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4443. "Side)</td>\n"
  4444. " </tr>\n"
  4445. " <tr height=\"20\">\n"
  4446. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4447. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4448. " </tr>\n"
  4449. " <tr height=\"20\">\n"
  4450. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4451. " <td>&nbsp;Deselects all objects</td>\n"
  4452. " </tr>\n"
  4453. " </tbody>\n"
  4454. " </table>\n"
  4455. " \n"
  4456. " "
  4457. msgstr ""
  4458. "<b>Lista de Atalhos Gerais</b><br>\n"
  4459. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4460. "\"width:283px\">\n"
  4461. " <tbody>\n"
  4462. " <tr height=\"20\">\n"
  4463. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4464. "td>\n"
  4465. " <td width=\"194\"><span style=\"color:"
  4466. "#006400\"><strong>&nbsp;MOSTRA LISTA DE ATALHOS</strong></span></td>\n"
  4467. " </tr>\n"
  4468. " <tr height=\"20\">\n"
  4469. " <td height=\"20\">&nbsp;</td>\n"
  4470. " <td>&nbsp;</td>\n"
  4471. " </tr>\n"
  4472. " <tr height=\"20\">\n"
  4473. " <td height=\"20\"><strong>1</strong></td>\n"
  4474. " <td>&nbsp;Vai para a Aba do Projeto</td>\n"
  4475. " </tr>\n"
  4476. " <tr height=\"20\">\n"
  4477. " <td height=\"20\"><strong>2</strong></td>\n"
  4478. " <td>&nbsp;Vai para a Aba Selecionado</td>\n"
  4479. " </tr>\n"
  4480. " <tr height=\"20\">\n"
  4481. " <td height=\"20\"><strong>3</strong></td>\n"
  4482. " <td>&nbsp;Vai para a Aba Ferramenta</td>\n"
  4483. " </tr>\n"
  4484. " <tr height=\"20\">\n"
  4485. " <td height=\"20\">&nbsp;</td>\n"
  4486. " <td>&nbsp;</td>\n"
  4487. " </tr>\n"
  4488. " <tr height=\"20\">\n"
  4489. " <td height=\"20\"><strong>B</strong></td>\n"
  4490. " <td>&nbsp;Novo Gerber</td>\n"
  4491. " </tr>\n"
  4492. " <tr height=\"20\">\n"
  4493. " <td height=\"20\"><strong>E</strong></td>\n"
  4494. " <td>&nbsp;Editar Objeto (se selecionado)</td>\n"
  4495. " </tr>\n"
  4496. " <tr height=\"20\">\n"
  4497. " <td height=\"20\"><strong>G</strong></td>\n"
  4498. " <td>&nbsp;Liga/Desliga a Grade</td>\n"
  4499. " </tr>\n"
  4500. " <tr height=\"20\">\n"
  4501. " <td height=\"20\"><strong>J</strong></td>\n"
  4502. " <td>&nbsp;Vai para as Coordenadas</td>\n"
  4503. " </tr>\n"
  4504. " <tr height=\"20\">\n"
  4505. " <td height=\"20\"><strong>L</strong></td>\n"
  4506. " <td>&nbsp;Novo Excellon</td>\n"
  4507. " </tr>\n"
  4508. " <tr height=\"20\">\n"
  4509. " <td height=\"20\"><strong>M</strong></td>\n"
  4510. " <td>&nbsp;Move Objeto</td>\n"
  4511. " </tr>\n"
  4512. " <tr height=\"20\">\n"
  4513. " <td height=\"20\"><strong>N</strong></td>\n"
  4514. " <td>&nbsp;Nova Geometria</td>\n"
  4515. " </tr>\n"
  4516. " <tr height=\"20\">\n"
  4517. " <td height=\"20\"><strong>O</strong></td>\n"
  4518. " <td>&nbsp;Ajusta Origem</td>\n"
  4519. " </tr>\n"
  4520. " <tr height=\"20\">\n"
  4521. " <td height=\"20\"><strong>Q</strong></td>\n"
  4522. " <td>&nbsp;Altera Unidades</td>\n"
  4523. " </tr>\n"
  4524. " <tr height=\"20\">\n"
  4525. " <td height=\"20\"><strong>P</strong></td>\n"
  4526. " <td>&nbsp;Abre Propriedades da Ferramenta</td>\n"
  4527. " </tr>\n"
  4528. " <tr height=\"20\">\n"
  4529. " <td height=\"20\"><strong>R</strong></td>\n"
  4530. " <td>&nbsp;Gira 90 graus horários</td>\n"
  4531. " </tr>\n"
  4532. " <tr height=\"20\">\n"
  4533. " <td height=\"20\"><strong>S</strong></td>\n"
  4534. " <td>&nbsp;Alterna Linha de Comando</td>\n"
  4535. " </tr>\n"
  4536. " <tr height=\"20\">\n"
  4537. " <td height=\"20\"><strong>T</strong></td>\n"
  4538. " <td>&nbsp;Adiciona uma Ferramenta (quando na Aba "
  4539. "Selecionado ou em Ferramentas NCC ou de Pintura)</td>\n"
  4540. " </tr>\n"
  4541. " <tr height=\"20\">\n"
  4542. " <td height=\"20\"><strong>V</strong></td>\n"
  4543. " <td>&nbsp;Zoom Ajustado</td>\n"
  4544. " </tr>\n"
  4545. " <tr height=\"20\">\n"
  4546. " <td height=\"20\"><strong>X</strong></td>\n"
  4547. " <td>&nbsp;Espelha em X</td>\n"
  4548. " </tr>\n"
  4549. " <tr height=\"20\">\n"
  4550. " <td height=\"20\"><strong>Y</strong></td>\n"
  4551. " <td>&nbsp;Espelha em Y</td>\n"
  4552. " </tr>\n"
  4553. " <tr height=\"20\">\n"
  4554. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4555. " <td>&nbsp;Zoom -</td>\n"
  4556. " </tr>\n"
  4557. " <tr height=\"20\">\n"
  4558. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4559. " <td>&nbsp;Zoom +</td>\n"
  4560. " </tr>\n"
  4561. " <tr height=\"20\">\n"
  4562. " <td height=\"20\">&nbsp;</td>\n"
  4563. " <td>&nbsp;</td>\n"
  4564. " </tr>\n"
  4565. " <tr height=\"20\">\n"
  4566. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4567. " <td>&nbsp;Seleciona Todos</td>\n"
  4568. " </tr>\n"
  4569. " <tr height=\"20\">\n"
  4570. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4571. " <td>&nbsp;Copiar Objeto</td>\n"
  4572. " </tr>\n"
  4573. " <tr height=\"20\">\n"
  4574. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4575. " <td>&nbsp;Abrir Arquivo Excellon</td>\n"
  4576. " </tr>\n"
  4577. " <tr height=\"20\">\n"
  4578. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4579. " <td>&nbsp;Abrir Arquivo Gerber</td>\n"
  4580. " </tr>\n"
  4581. " <tr height=\"20\">\n"
  4582. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4583. " <td>&nbsp;Novo Projeto</td>\n"
  4584. " </tr>\n"
  4585. " <tr height=\"20\">\n"
  4586. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4587. " <td>&nbsp;Ferramenta de Medição</td>\n"
  4588. " </tr>\n"
  4589. " <tr height=\"20\">\n"
  4590. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4591. " <td>&nbsp;Abrir Projeto</td>\n"
  4592. " </tr>\n"
  4593. " <tr height=\"20\">\n"
  4594. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4595. " <td>&nbsp;Salvar Projeto Como</td>\n"
  4596. " </tr>\n"
  4597. " <tr height=\"20\">\n"
  4598. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4599. " <td>&nbsp;Alternar Área de Gráfico</td>\n"
  4600. " </tr>\n"
  4601. " <tr height=\"20\">\n"
  4602. " <td height=\"20\">&nbsp;</td>\n"
  4603. " <td>&nbsp;</td>\n"
  4604. " </tr>\n"
  4605. " <tr height=\"20\">\n"
  4606. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4607. " <td>&nbsp;Copiar Obj_Name</td>\n"
  4608. " </tr>\n"
  4609. " <tr height=\"20\">\n"
  4610. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4611. " <td>&nbsp;Alterna Editor de Código</td>\n"
  4612. " </tr>\n"
  4613. " <tr height=\"20\">\n"
  4614. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4615. " <td>&nbsp;Alterna o Eixo</td>\n"
  4616. " </tr>\n"
  4617. " <tr height=\"20\">\n"
  4618. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4619. " <td>&nbsp;Abre Janela de Preferências</td>\n"
  4620. " </tr>\n"
  4621. " <tr height=\"20\">\n"
  4622. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4623. " <td>&nbsp;Gira 90 graus antihorário</td>\n"
  4624. " </tr>\n"
  4625. " <tr height=\"20\">\n"
  4626. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4627. " <td>&nbsp;Executa um Script</td>\n"
  4628. " </tr>\n"
  4629. " <tr height=\"20\">\n"
  4630. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4631. " <td>&nbsp;Alterna o Local de Trabalho</td>\n"
  4632. " </tr>\n"
  4633. " <tr height=\"20\">\n"
  4634. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4635. " <td>&nbsp;Inclina no Eixo X</td>\n"
  4636. " </tr>\n"
  4637. " <tr height=\"20\">\n"
  4638. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4639. " <td>&nbsp;Inclina no Eixo Y</td>\n"
  4640. " </tr>\n"
  4641. " <tr height=\"20\">\n"
  4642. " <td height=\"20\">&nbsp;</td>\n"
  4643. " <td>&nbsp;</td>\n"
  4644. " </tr>\n"
  4645. " <tr height=\"20\">\n"
  4646. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4647. " <td>&nbsp;Calculadoras</td>\n"
  4648. " </tr>\n"
  4649. " <tr height=\"20\">\n"
  4650. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4651. " <td>&nbsp;Ferramenta PCB 2-Faces</td>\n"
  4652. " </tr>\n"
  4653. " <tr height=\"20\">\n"
  4654. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4655. " <td>&nbsp;Ferramenta Pasta de Solda</td>\n"
  4656. " </tr>\n"
  4657. " <tr height=\"20\">\n"
  4658. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4659. " <td>&nbsp;Ferramenta Filme PCB</td>\n"
  4660. " </tr>\n"
  4661. " <tr height=\"20\">\n"
  4662. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4663. " <td>&nbsp;Ferramenta Retirar Cobre (NCC)</td>\n"
  4664. " </tr>\n"
  4665. " <tr height=\"20\">\n"
  4666. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4667. " <td>&nbsp;Ferramenta Pintura de Área</td>\n"
  4668. " </tr>\n"
  4669. " <tr height=\"20\">\n"
  4670. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4671. " <td>&nbsp;Ferramenta Importar PDF</td>\n"
  4672. " </tr>\n"
  4673. " <tr height=\"20\">\n"
  4674. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4675. " <td>&nbsp;Ferramenta Transformações</td>\n"
  4676. " </tr>\n"
  4677. " <tr height=\"20\">\n"
  4678. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4679. " <td>&nbsp;Ver Arquivo Fonte</td>\n"
  4680. " </tr>\n"
  4681. " <tr height=\"20\">\n"
  4682. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4683. " <td>&nbsp;Ferramenta Recorte PCB</td>\n"
  4684. " </tr>\n"
  4685. " <tr height=\"20\">\n"
  4686. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4687. " <td>&nbsp;Habilita todos os Gráficos</td>\n"
  4688. " </tr>\n"
  4689. " <tr height=\"20\">\n"
  4690. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4691. " <td>&nbsp;Desabilita todos os Gráficos</td>\n"
  4692. " </tr>\n"
  4693. " <tr height=\"20\">\n"
  4694. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4695. " <td>&nbsp;Desabilita todos os Gráficos não "
  4696. "selecionados</td>\n"
  4697. " </tr>\n"
  4698. " <tr height=\"20\">\n"
  4699. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4700. " <td>&nbsp;Alterna Tela Cheia</td>\n"
  4701. " </tr>\n"
  4702. " <tr height=\"20\">\n"
  4703. " <td height=\"20\">&nbsp;</td>\n"
  4704. " <td>&nbsp;</td>\n"
  4705. " </tr>\n"
  4706. " <tr height=\"20\">\n"
  4707. " <td height=\"20\"><strong>F1</strong></td>\n"
  4708. " <td>&nbsp;Abrir Manual Online</td>\n"
  4709. " </tr>\n"
  4710. " <tr height=\"20\">\n"
  4711. " <td height=\"20\"><strong>F4</strong></td>\n"
  4712. " <td>&nbsp;Abrir Tutoriais Online</td>\n"
  4713. " </tr>\n"
  4714. " <tr height=\"20\">\n"
  4715. " <td height=\"20\"><strong>Del</strong></td>\n"
  4716. " <td>&nbsp;Excluir Objeto</td>\n"
  4717. " </tr>\n"
  4718. " <tr height=\"20\">\n"
  4719. " <td height=\"20\"><strong>Del</strong></td>\n"
  4720. " <td>&nbsp;Alternativo: Excluir Ferramenta</td>\n"
  4721. " </tr>\n"
  4722. " <tr height=\"20\">\n"
  4723. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4724. " <td>&nbsp;(Seta Esquerda e Tecla_1)Alterna Área "
  4725. "Notebook (Lado Esquerdo)</td>\n"
  4726. " </tr>\n"
  4727. " <tr height=\"20\">\n"
  4728. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4729. " <td>&nbsp;(Des)habilita Objeto Gráfico</td>\n"
  4730. " </tr>\n"
  4731. " <tr height=\"20\">\n"
  4732. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4733. " <td>&nbsp;Deseleciona todos os objetos</td>\n"
  4734. " </tr>\n"
  4735. " </tbody>\n"
  4736. " </table>\n"
  4737. " \n"
  4738. " "
  4739. #: flatcamGUI/FlatCAMGUI.py:1293
  4740. msgid ""
  4741. "<b>Editor Shortcut list</b><br>\n"
  4742. " <br>\n"
  4743. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4744. "strong><br>\n"
  4745. " \n"
  4746. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4747. "\"width:283px\">\n"
  4748. " <tbody>\n"
  4749. " <tr height=\"20\">\n"
  4750. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4751. "td>\n"
  4752. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4753. " </tr>\n"
  4754. " <tr height=\"20\">\n"
  4755. " <td height=\"20\"><strong>B</strong></td>\n"
  4756. " <td>&nbsp;Buffer Tool</td>\n"
  4757. " </tr>\n"
  4758. " <tr height=\"20\">\n"
  4759. " <td height=\"20\"><strong>C</strong></td>\n"
  4760. " <td>&nbsp;Copy Geo Item</td>\n"
  4761. " </tr>\n"
  4762. " <tr height=\"20\">\n"
  4763. " <td height=\"20\"><strong>D</strong></td>\n"
  4764. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4765. "direction: CW or CCW</td>\n"
  4766. " </tr>\n"
  4767. " <tr height=\"20\">\n"
  4768. " <td height=\"20\"><strong>E</strong></td>\n"
  4769. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4770. " </tr>\n"
  4771. " <tr height=\"20\">\n"
  4772. " <td height=\"20\"><strong>I</strong></td>\n"
  4773. " <td>&nbsp;Paint Tool</td>\n"
  4774. " </tr>\n"
  4775. " <tr height=\"20\">\n"
  4776. " <td height=\"20\"><strong>J</strong></td>\n"
  4777. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4778. " </tr>\n"
  4779. " <tr height=\"20\">\n"
  4780. " <td height=\"20\"><strong>K</strong></td>\n"
  4781. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4782. " </tr>\n"
  4783. " <tr height=\"20\">\n"
  4784. " <td height=\"20\"><strong>M</strong></td>\n"
  4785. " <td>&nbsp;Move Geo Item</td>\n"
  4786. " </tr>\n"
  4787. " <tr height=\"20\">\n"
  4788. " <td height=\"20\"><strong>M</strong></td>\n"
  4789. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4790. "modes</td>\n"
  4791. " </tr>\n"
  4792. " <tr height=\"20\">\n"
  4793. " <td height=\"20\"><strong>N</strong></td>\n"
  4794. " <td>&nbsp;Draw a Polygon</td>\n"
  4795. " </tr>\n"
  4796. " <tr height=\"20\">\n"
  4797. " <td height=\"20\"><strong>O</strong></td>\n"
  4798. " <td>&nbsp;Draw a Circle</td>\n"
  4799. " </tr>\n"
  4800. " <tr height=\"20\">\n"
  4801. " <td height=\"20\"><strong>P</strong></td>\n"
  4802. " <td>&nbsp;Draw a Path</td>\n"
  4803. " </tr>\n"
  4804. " <tr height=\"20\">\n"
  4805. " <td height=\"20\"><strong>R</strong></td>\n"
  4806. " <td>&nbsp;Draw Rectangle</td>\n"
  4807. " </tr>\n"
  4808. " <tr height=\"20\">\n"
  4809. " <td height=\"20\"><strong>S</strong></td>\n"
  4810. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4811. " </tr>\n"
  4812. " <tr height=\"20\">\n"
  4813. " <td height=\"20\"><strong>T</strong></td>\n"
  4814. " <td>&nbsp;Add Text Tool</td>\n"
  4815. " </tr>\n"
  4816. " <tr height=\"20\">\n"
  4817. " <td height=\"20\"><strong>U</strong></td>\n"
  4818. " <td>&nbsp;Polygon Union Tool</td>\n"
  4819. " </tr>\n"
  4820. " <tr height=\"20\">\n"
  4821. " <td height=\"20\"><strong>X</strong></td>\n"
  4822. " <td>&nbsp;Flip shape on X axis</td>\n"
  4823. " </tr>\n"
  4824. " <tr height=\"20\">\n"
  4825. " <td height=\"20\"><strong>Y</strong></td>\n"
  4826. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4827. " </tr>\n"
  4828. " <tr height=\"20\">\n"
  4829. " <td height=\"20\">&nbsp;</td>\n"
  4830. " <td>&nbsp;</td>\n"
  4831. " </tr>\n"
  4832. " <tr height=\"20\">\n"
  4833. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4834. " <td>&nbsp;Skew shape on X axis</td>\n"
  4835. " </tr>\n"
  4836. " <tr height=\"20\">\n"
  4837. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4838. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4839. " </tr>\n"
  4840. " <tr height=\"20\">\n"
  4841. " <td height=\"20\">&nbsp;</td>\n"
  4842. " <td>&nbsp;</td>\n"
  4843. " </tr>\n"
  4844. " <tr height=\"20\">\n"
  4845. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4846. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4847. " </tr>\n"
  4848. " <tr height=\"20\">\n"
  4849. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4850. " <td>&nbsp;Offset shape on X axis</td>\n"
  4851. " </tr>\n"
  4852. " <tr height=\"20\">\n"
  4853. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4854. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4855. " </tr>\n"
  4856. " <tr height=\"20\">\n"
  4857. " <td height=\"20\">&nbsp;</td>\n"
  4858. " <td>&nbsp;</td>\n"
  4859. " </tr>\n"
  4860. " <tr height=\"20\">\n"
  4861. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4862. " <td>&nbsp;Measurement Tool</td>\n"
  4863. " </tr>\n"
  4864. " <tr height=\"20\">\n"
  4865. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4866. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4867. " </tr>\n"
  4868. " <tr height=\"20\">\n"
  4869. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4870. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4871. " </tr>\n"
  4872. " <tr height=\"20\">\n"
  4873. " <td height=\"20\">&nbsp;</td>\n"
  4874. " <td>&nbsp;</td>\n"
  4875. " </tr>\n"
  4876. " <tr height=\"20\">\n"
  4877. " <td height=\"20\"><strong>Space</strong></td>\n"
  4878. " <td>&nbsp;Rotate Geometry</td>\n"
  4879. " </tr>\n"
  4880. " <tr height=\"20\">\n"
  4881. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4882. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4883. " </tr>\n"
  4884. " <tr height=\"20\">\n"
  4885. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4886. " <td>&nbsp;Abort and return to Select</td>\n"
  4887. " </tr>\n"
  4888. " <tr height=\"20\">\n"
  4889. " <td height=\"20\"><strong>Del</strong></td>\n"
  4890. " <td>&nbsp;Delete Shape</td>\n"
  4891. " </tr>\n"
  4892. " </tbody>\n"
  4893. " </table>\n"
  4894. " <br>\n"
  4895. " <br>\n"
  4896. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4897. "strong><br>\n"
  4898. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4899. "\"width:283px\">\n"
  4900. " <tbody>\n"
  4901. " <tr height=\"20\">\n"
  4902. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4903. "td>\n"
  4904. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4905. " </tr>\n"
  4906. " <tr height=\"20\">\n"
  4907. " <td height=\"20\"><strong>C</strong></td>\n"
  4908. " <td>&nbsp;Copy Drill(s)</td>\n"
  4909. " </tr>\n"
  4910. " <tr height=\"20\">\n"
  4911. " <td height=\"20\"><strong>D</strong></td>\n"
  4912. " <td>&nbsp;Add Drill</td>\n"
  4913. " </tr>\n"
  4914. " <tr height=\"20\">\n"
  4915. " <td height=\"20\"><strong>J</strong></td>\n"
  4916. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4917. " </tr>\n"
  4918. " <tr height=\"20\">\n"
  4919. " <td height=\"20\"><strong>M</strong></td>\n"
  4920. " <td>&nbsp;Move Drill(s)</td>\n"
  4921. " </tr>\n"
  4922. " <tr height=\"20\">\n"
  4923. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4924. "td>\n"
  4925. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4926. " </tr>\n"
  4927. " <tr height=\"20\">\n"
  4928. " <td height=\"20\"><strong>R</strong></td>\n"
  4929. " <td>&nbsp;Resize Drill(s)</td>\n"
  4930. " </tr>\n"
  4931. " <tr height=\"20\">\n"
  4932. " <td height=\"20\"><strong>T</strong></td>\n"
  4933. " <td>&nbsp;Add a new Tool</td>\n"
  4934. " </tr>\n"
  4935. " <tr height=\"20\">\n"
  4936. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4937. "td>\n"
  4938. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4939. " </tr>\n"
  4940. " <tr height=\"20\">\n"
  4941. " <td height=\"20\">&nbsp;</td>\n"
  4942. " <td>&nbsp;</td>\n"
  4943. " </tr>\n"
  4944. " <tr height=\"20\">\n"
  4945. " <td height=\"20\"><strong>Del</strong></td>\n"
  4946. " <td>&nbsp;Delete Drill(s)</td>\n"
  4947. " </tr>\n"
  4948. " <tr height=\"20\">\n"
  4949. " <td height=\"20\"><strong>Del</strong></td>\n"
  4950. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4951. " </tr>\n"
  4952. " <tr height=\"20\">\n"
  4953. " <td height=\"20\">&nbsp;</td>\n"
  4954. " <td>&nbsp;</td>\n"
  4955. " </tr>\n"
  4956. " <tr height=\"20\">\n"
  4957. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4958. " <td>&nbsp;Abort and return to Select</td>\n"
  4959. " </tr>\n"
  4960. " <tr height=\"20\">\n"
  4961. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4962. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4963. " </tr>\n"
  4964. " </tbody>\n"
  4965. " </table>\n"
  4966. " <br>\n"
  4967. " <br>\n"
  4968. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4969. "strong><br>\n"
  4970. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4971. "\"width:283px\">\n"
  4972. " <tbody>\n"
  4973. " <tr height=\"20\">\n"
  4974. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4975. "td>\n"
  4976. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4977. " </tr>\n"
  4978. " <tr height=\"20\">\n"
  4979. " <td height=\"20\"><strong>B</strong></td>\n"
  4980. " <td>&nbsp;Buffer</td>\n"
  4981. " </tr>\n"
  4982. " <tr height=\"20\">\n"
  4983. " <td height=\"20\"><strong>C</strong></td>\n"
  4984. " <td>&nbsp;Copy</td>\n"
  4985. " </tr>\n"
  4986. " <tr height=\"20\">\n"
  4987. " <td height=\"20\"><strong>D</strong></td>\n"
  4988. " <td>&nbsp;Add Disc</td>\n"
  4989. " </tr>\n"
  4990. " <tr height=\"20\">\n"
  4991. " <td height=\"20\"><strong>E</strong></td>\n"
  4992. " <td>&nbsp;Add SemiDisc</td>\n"
  4993. " </tr>\n"
  4994. " <tr height=\"20\">\n"
  4995. " <td height=\"20\"><strong>J</strong></td>\n"
  4996. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4997. " </tr>\n"
  4998. " <tr height=\"20\">\n"
  4999. " <td height=\"20\"><strong>M</strong></td>\n"
  5000. " <td>&nbsp;Move</td>\n"
  5001. " </tr>\n"
  5002. " <tr height=\"20\">\n"
  5003. " <td height=\"20\"><strong>N</strong></td>\n"
  5004. " <td>&nbsp;Add Region</td>\n"
  5005. " </tr>\n"
  5006. " <tr height=\"20\">\n"
  5007. " <td height=\"20\"><strong>P</strong></td>\n"
  5008. " <td>&nbsp;Add Pad</td>\n"
  5009. " </tr>\n"
  5010. " <tr height=\"20\">\n"
  5011. " <td height=\"20\"><strong>R</strong></td>\n"
  5012. " <td>&nbsp;Within Track & Region Tools will cycle in "
  5013. "REVERSE the bend modes</td>\n"
  5014. " </tr>\n"
  5015. " <tr height=\"20\">\n"
  5016. " <td height=\"20\"><strong>S</strong></td>\n"
  5017. " <td>&nbsp;Scale</td>\n"
  5018. " </tr>\n"
  5019. " <tr height=\"20\">\n"
  5020. " <td height=\"20\"><strong>T</strong></td>\n"
  5021. " <td>&nbsp;Add Track</td>\n"
  5022. " </tr>\n"
  5023. " <tr height=\"20\">\n"
  5024. " <td height=\"20\"><strong>T</strong></td>\n"
  5025. " <td>&nbsp;Within Track & Region Tools will cycle "
  5026. "FORWARD the bend modes</td>\n"
  5027. " </tr>\n"
  5028. " <tr height=\"20\">\n"
  5029. " <td height=\"20\">&nbsp;</td>\n"
  5030. " <td>&nbsp;</td>\n"
  5031. " </tr>\n"
  5032. " <tr height=\"20\">\n"
  5033. " <td height=\"20\"><strong>Del</strong></td>\n"
  5034. " <td>&nbsp;Delete</td>\n"
  5035. " </tr>\n"
  5036. " <tr height=\"20\">\n"
  5037. " <td height=\"20\"><strong>Del</strong></td>\n"
  5038. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  5039. " </tr>\n"
  5040. " <tr height=\"20\">\n"
  5041. " <td height=\"20\">&nbsp;</td>\n"
  5042. " <td>&nbsp;</td>\n"
  5043. " </tr>\n"
  5044. " <tr height=\"20\">\n"
  5045. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5046. " <td>&nbsp;Abort and return to Select</td>\n"
  5047. " </tr>\n"
  5048. " <tr height=\"20\">\n"
  5049. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5050. " <td>&nbsp;Eraser Tool</td>\n"
  5051. " </tr>\n"
  5052. " <tr height=\"20\">\n"
  5053. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5054. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5055. " </tr>\n"
  5056. " <tr height=\"20\">\n"
  5057. " <td height=\"20\">&nbsp;</td>\n"
  5058. " <td>&nbsp;</td>\n"
  5059. " </tr>\n"
  5060. " <tr height=\"20\">\n"
  5061. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5062. " <td>&nbsp;Mark Area Tool</td>\n"
  5063. " </tr>\n"
  5064. " <tr height=\"20\">\n"
  5065. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5066. " <td>&nbsp;Poligonize Tool</td>\n"
  5067. " </tr>\n"
  5068. " <tr height=\"20\">\n"
  5069. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5070. " <td>&nbsp;Transformation Tool</td>\n"
  5071. " </tr>\n"
  5072. " </tbody>\n"
  5073. " </table>\n"
  5074. " "
  5075. msgstr ""
  5076. "<b>Lista de Atalhos dos Editores</b><br>\n"
  5077. " <br>\n"
  5078. " <strong><span style=\"color:#0000ff\">EDITOR DE GEOMETRIA</"
  5079. "span></strong><br>\n"
  5080. " \n"
  5081. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5082. "\"width:283px\">\n"
  5083. " <tbody>\n"
  5084. " <tr height=\"20\">\n"
  5085. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5086. "td>\n"
  5087. " <td width=\"194\">&nbsp;Desenha um Arco</td>\n"
  5088. " </tr>\n"
  5089. " <tr height=\"20\">\n"
  5090. " <td height=\"20\"><strong>B</strong></td>\n"
  5091. " <td>&nbsp;Ferramenta Buffer</td>\n"
  5092. " </tr>\n"
  5093. " <tr height=\"20\">\n"
  5094. " <td height=\"20\"><strong>C</strong></td>\n"
  5095. " <td>&nbsp;Copiar Objeto Geo</td>\n"
  5096. " </tr>\n"
  5097. " <tr height=\"20\">\n"
  5098. " <td height=\"20\"><strong>D</strong></td>\n"
  5099. " <td>&nbsp;Em Adicionar Arco, alterna o sentido do "
  5100. "ARCO: CW ou CCW</td>\n"
  5101. " </tr>\n"
  5102. " <tr height=\"20\">\n"
  5103. " <td height=\"20\"><strong>E</strong></td>\n"
  5104. " <td>&nbsp;Ferramenta de Interseção de Polígonos</"
  5105. "td>\n"
  5106. " </tr>\n"
  5107. " <tr height=\"20\">\n"
  5108. " <td height=\"20\"><strong>I</strong></td>\n"
  5109. " <td>&nbsp;Ferramenta de Pintura</td>\n"
  5110. " </tr>\n"
  5111. " <tr height=\"20\">\n"
  5112. " <td height=\"20\"><strong>J</strong></td>\n"
  5113. " <td>&nbsp;Ir para a Localização (x, y)</td>\n"
  5114. " </tr>\n"
  5115. " <tr height=\"20\">\n"
  5116. " <td height=\"20\"><strong>K</strong></td>\n"
  5117. " <td>&nbsp;Alterna Encaixe no Canto</td>\n"
  5118. " </tr>\n"
  5119. " <tr height=\"20\">\n"
  5120. " <td height=\"20\"><strong>M</strong></td>\n"
  5121. " <td>&nbsp;Mover Item Geo</td>\n"
  5122. " </tr>\n"
  5123. " <tr height=\"20\">\n"
  5124. " <td height=\"20\"><strong>M</strong></td>\n"
  5125. " <td>&nbsp;Em Adicionar Arco, alterna entre os modos "
  5126. "de ARCO</td>\n"
  5127. " </tr>\n"
  5128. " <tr height=\"20\">\n"
  5129. " <td height=\"20\"><strong>N</strong></td>\n"
  5130. " <td>&nbsp;Desenha um Polígono</td>\n"
  5131. " </tr>\n"
  5132. " <tr height=\"20\">\n"
  5133. " <td height=\"20\"><strong>O</strong></td>\n"
  5134. " <td>&nbsp;Desenha um Círculo</td>\n"
  5135. " </tr>\n"
  5136. " <tr height=\"20\">\n"
  5137. " <td height=\"20\"><strong>P</strong></td>\n"
  5138. " <td>&nbsp;Desenha um Caminho</td>\n"
  5139. " </tr>\n"
  5140. " <tr height=\"20\">\n"
  5141. " <td height=\"20\"><strong>R</strong></td>\n"
  5142. " <td>&nbsp;Desenha um Retângulo</td>\n"
  5143. " </tr>\n"
  5144. " <tr height=\"20\">\n"
  5145. " <td height=\"20\"><strong>S</strong></td>\n"
  5146. " <td>&nbsp;Ferramenta de Subtração de Polígonos</td>\n"
  5147. " </tr>\n"
  5148. " <tr height=\"20\">\n"
  5149. " <td height=\"20\"><strong>T</strong></td>\n"
  5150. " <td>&nbsp;Ferramenta Adicionar Texto</td>\n"
  5151. " </tr>\n"
  5152. " <tr height=\"20\">\n"
  5153. " <td height=\"20\"><strong>U</strong></td>\n"
  5154. " <td>&nbsp;Ferramenta União de Polígonos</td>\n"
  5155. " </tr>\n"
  5156. " <tr height=\"20\">\n"
  5157. " <td height=\"20\"><strong>X</strong></td>\n"
  5158. " <td>&nbsp;Espelha a forma no eixo X</td>\n"
  5159. " </tr>\n"
  5160. " <tr height=\"20\">\n"
  5161. " <td height=\"20\"><strong>Y</strong></td>\n"
  5162. " <td>&nbsp;Espelha a forma no eixo Y</td>\n"
  5163. " </tr>\n"
  5164. " <tr height=\"20\">\n"
  5165. " <td height=\"20\">&nbsp;</td>\n"
  5166. " <td>&nbsp;</td>\n"
  5167. " </tr>\n"
  5168. " <tr height=\"20\">\n"
  5169. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  5170. " <td>&nbsp;Inclina a forma no eixo X</td>\n"
  5171. " </tr>\n"
  5172. " <tr height=\"20\">\n"
  5173. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  5174. " <td>&nbsp;Inclina a forma no eixo Y</td>\n"
  5175. " </tr>\n"
  5176. " <tr height=\"20\">\n"
  5177. " <td height=\"20\">&nbsp;</td>\n"
  5178. " <td>&nbsp;</td>\n"
  5179. " </tr>\n"
  5180. " <tr height=\"20\">\n"
  5181. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5182. " <td>&nbsp;Ferramenta Editor de Transformação</td>\n"
  5183. " </tr>\n"
  5184. " <tr height=\"20\">\n"
  5185. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  5186. " <td>&nbsp;Desloca a forma no eixo X</td>\n"
  5187. " </tr>\n"
  5188. " <tr height=\"20\">\n"
  5189. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  5190. " <td>&nbsp;Desloca a forma no eixo Y</td>\n"
  5191. " </tr>\n"
  5192. " <tr height=\"20\">\n"
  5193. " <td height=\"20\">&nbsp;</td>\n"
  5194. " <td>&nbsp;</td>\n"
  5195. " </tr>\n"
  5196. " <tr height=\"20\">\n"
  5197. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  5198. " <td>&nbsp;Ferramenta de Medição</td>\n"
  5199. " </tr>\n"
  5200. " <tr height=\"20\">\n"
  5201. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5202. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5203. " </tr>\n"
  5204. " <tr height=\"20\">\n"
  5205. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  5206. " <td>&nbsp;Ferramenta de Corte de Polígono</td>\n"
  5207. " </tr>\n"
  5208. " <tr height=\"20\">\n"
  5209. " <td height=\"20\">&nbsp;</td>\n"
  5210. " <td>&nbsp;</td>\n"
  5211. " </tr>\n"
  5212. " <tr height=\"20\">\n"
  5213. " <td height=\"20\"><strong>Space</strong></td>\n"
  5214. " <td>&nbsp;Girar Geometria</td>\n"
  5215. " </tr>\n"
  5216. " <tr height=\"20\">\n"
  5217. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  5218. " <td>&nbsp;Terminar o desenho para certas "
  5219. "ferramentas</td>\n"
  5220. " </tr>\n"
  5221. " <tr height=\"20\">\n"
  5222. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5223. " <td>&nbsp;Abortar e retornar à Seleção</td>\n"
  5224. " </tr>\n"
  5225. " <tr height=\"20\">\n"
  5226. " <td height=\"20\"><strong>Del</strong></td>\n"
  5227. " <td>&nbsp;Excluir Forma</td>\n"
  5228. " </tr>\n"
  5229. " </tbody>\n"
  5230. " </table>\n"
  5231. " <br>\n"
  5232. " <br>\n"
  5233. " <strong><span style=\"color:#ff0000\">EDITOR EXCELLON</span></"
  5234. "strong><br>\n"
  5235. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5236. "\"width:283px\">\n"
  5237. " <tbody>\n"
  5238. " <tr height=\"20\">\n"
  5239. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5240. "td>\n"
  5241. " <td width=\"194\">&nbsp;Adiciona Matriz de Brocas</"
  5242. "td>\n"
  5243. " </tr>\n"
  5244. " <tr height=\"20\">\n"
  5245. " <td height=\"20\"><strong>C</strong></td>\n"
  5246. " <td>&nbsp;Copiar Broca(s)</td>\n"
  5247. " </tr>\n"
  5248. " <tr height=\"20\">\n"
  5249. " <td height=\"20\"><strong>D</strong></td>\n"
  5250. " <td>&nbsp;Adicionar Broca</td>\n"
  5251. " </tr>\n"
  5252. " <tr height=\"20\">\n"
  5253. " <td height=\"20\"><strong>J</strong></td>\n"
  5254. " <td>&nbsp;Ir para Localização (x, y)</td>\n"
  5255. " </tr>\n"
  5256. " <tr height=\"20\">\n"
  5257. " <td height=\"20\"><strong>M</strong></td>\n"
  5258. " <td>&nbsp;Mover Broca(s)</td>\n"
  5259. " </tr>\n"
  5260. " <tr height=\"20\">\n"
  5261. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  5262. "td>\n"
  5263. " <td width=\"194\">&nbsp;Adicionar Matriz de "
  5264. "Ranhuras</td>\n"
  5265. " </tr>\n"
  5266. "\n"
  5267. " <tr height=\"20\">\n"
  5268. " <td height=\"20\"><strong>R</strong></td>\n"
  5269. " <td>&nbsp;Redimensionar Broca(s)</td>\n"
  5270. " </tr>\n"
  5271. " <tr height=\"20\">\n"
  5272. " <td height=\"20\"><strong>T</strong></td>\n"
  5273. " <td>&nbsp;Adicionar uma Nova Ferramenta</td>\n"
  5274. " </tr>\n"
  5275. " <tr height=\"20\">\n"
  5276. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  5277. "td>\n"
  5278. " <td width=\"194\">&nbsp;Adicionar Ranhura</td>\n"
  5279. " </tr>\n"
  5280. " <tr height=\"20\">\n"
  5281. " <td height=\"20\">&nbsp;</td>\n"
  5282. " <td>&nbsp;</td>\n"
  5283. " </tr>\n"
  5284. " <tr height=\"20\">\n"
  5285. " <td height=\"20\"><strong>Del</strong></td>\n"
  5286. " <td>&nbsp;Excluir Broca(s)</td>\n"
  5287. " </tr>\n"
  5288. " <tr height=\"20\">\n"
  5289. " <td height=\"20\"><strong>Del</strong></td>\n"
  5290. " <td>&nbsp;Alternativo: Excluir Ferramenta(s)</td>\n"
  5291. " </tr>\n"
  5292. " <tr height=\"20\">\n"
  5293. " <td height=\"20\">&nbsp;</td>\n"
  5294. " <td>&nbsp;</td>\n"
  5295. " </tr>\n"
  5296. " <tr height=\"20\">\n"
  5297. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5298. " <td>&nbsp;Abortar e retornar para a Seleção</td>\n"
  5299. " </tr>\n"
  5300. " <tr height=\"20\">\n"
  5301. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5302. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5303. " </tr>\n"
  5304. " </tbody>\n"
  5305. " </table>\n"
  5306. " <br>\n"
  5307. " <br>\n"
  5308. " <strong><span style=\"color:#00ff00\">EDITOR GERBER</span></"
  5309. "strong><br>\n"
  5310. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5311. "\"width:283px\">\n"
  5312. " <tbody>\n"
  5313. " <tr height=\"20\">\n"
  5314. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5315. "td>\n"
  5316. " <td width=\"194\">&nbsp;Adicionar Matriz de Pads</"
  5317. "td>\n"
  5318. " </tr>\n"
  5319. " <tr height=\"20\">\n"
  5320. " <td height=\"20\"><strong>B</strong></td>\n"
  5321. " <td>&nbsp;Buffer</td>\n"
  5322. " </tr>\n"
  5323. " <tr height=\"20\">\n"
  5324. " <td height=\"20\"><strong>C</strong></td>\n"
  5325. " <td>&nbsp;Copiar</td>\n"
  5326. " </tr>\n"
  5327. " <tr height=\"20\">\n"
  5328. " <td height=\"20\"><strong>D</strong></td>\n"
  5329. " <td>&nbsp;Adicionar Disco</td>\n"
  5330. " </tr>\n"
  5331. " <tr height=\"20\">\n"
  5332. " <td height=\"20\"><strong>E</strong></td>\n"
  5333. " <td>&nbsp;Adicionar SemiDisco</td>\n"
  5334. " </tr>\n"
  5335. " <tr height=\"20\">\n"
  5336. " <td height=\"20\"><strong>J</strong></td>\n"
  5337. " <td>&nbsp;Ir para a Localização (x, y)</td>\n"
  5338. " </tr>\n"
  5339. " <tr height=\"20\">\n"
  5340. " <td height=\"20\"><strong>M</strong></td>\n"
  5341. " <td>&nbsp;Mover</td>\n"
  5342. " </tr>\n"
  5343. " <tr height=\"20\">\n"
  5344. " <td height=\"20\"><strong>N</strong></td>\n"
  5345. " <td>&nbsp;Adicionar Região</td>\n"
  5346. " </tr>\n"
  5347. " <tr height=\"20\">\n"
  5348. " <td height=\"20\"><strong>P</strong></td>\n"
  5349. " <td>&nbsp;Adicionar Pad</td>\n"
  5350. " </tr>\n"
  5351. " <tr height=\"20\">\n"
  5352. " <td height=\"20\"><strong>R</strong></td>\n"
  5353. " <td>&nbsp;Nas Ferramentas Trilha & Região alternará "
  5354. "em REVERSO entre os modos de curvatura</td>\n"
  5355. " </tr>\n"
  5356. " <tr height=\"20\">\n"
  5357. " <td height=\"20\"><strong>S</strong></td>\n"
  5358. " <td>&nbsp;Escala</td>\n"
  5359. " </tr>\n"
  5360. " <tr height=\"20\">\n"
  5361. " <td height=\"20\"><strong>T</strong></td>\n"
  5362. " <td>&nbsp;Adicionar Trilha</td>\n"
  5363. " </tr>\n"
  5364. " <tr height=\"20\">\n"
  5365. " <td height=\"20\"><strong>T</strong></td>\n"
  5366. " <td>&nbsp;Nas Ferramentas Trilha & Região alternará "
  5367. "entre os modos de curvatura</td>\n"
  5368. " </tr>\n"
  5369. " <tr height=\"20\">\n"
  5370. " <td height=\"20\">&nbsp;</td>\n"
  5371. " <td>&nbsp;</td>\n"
  5372. " </tr>\n"
  5373. " <tr height=\"20\">\n"
  5374. " <td height=\"20\"><strong>Del</strong></td>\n"
  5375. " <td>&nbsp;Excluir</td>\n"
  5376. " </tr>\n"
  5377. " <tr height=\"20\">\n"
  5378. " <td height=\"20\"><strong>Del</strong></td>\n"
  5379. " <td>&nbsp;Alternativo: Excluir Aberturas</td>\n"
  5380. " </tr>\n"
  5381. " <tr height=\"20\">\n"
  5382. " <td height=\"20\">&nbsp;</td>\n"
  5383. " <td>&nbsp;</td>\n"
  5384. " </tr>\n"
  5385. " <tr height=\"20\">\n"
  5386. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5387. " <td>&nbsp;Abortar e retornar para a Seleção</td>\n"
  5388. " </tr>\n"
  5389. " <tr height=\"20\">\n"
  5390. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5391. " <td>&nbsp;Ferramenta Apagador</td>\n"
  5392. " </tr>\n"
  5393. " <tr height=\"20\">\n"
  5394. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5395. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5396. " </tr>\n"
  5397. " <tr height=\"20\">\n"
  5398. " <td height=\"20\">&nbsp;</td>\n"
  5399. " <td>&nbsp;</td>\n"
  5400. " </tr>"
  5401. #: flatcamGUI/FlatCAMGUI.py:1624
  5402. msgid "Toggle Visibility"
  5403. msgstr "Alternar Visibilidade"
  5404. #: flatcamGUI/FlatCAMGUI.py:1625
  5405. msgid "Toggle Panel"
  5406. msgstr "Alternar Painel"
  5407. #: flatcamGUI/FlatCAMGUI.py:1628
  5408. msgid "New"
  5409. msgstr "Novo"
  5410. #: flatcamGUI/FlatCAMGUI.py:1629
  5411. msgid "Geometry"
  5412. msgstr "Geometria"
  5413. #: flatcamGUI/FlatCAMGUI.py:1631
  5414. msgid "Excellon"
  5415. msgstr "Excellon"
  5416. #: flatcamGUI/FlatCAMGUI.py:1636
  5417. msgid "Grids"
  5418. msgstr "Grades"
  5419. #: flatcamGUI/FlatCAMGUI.py:1638
  5420. msgid "View"
  5421. msgstr "Ver"
  5422. #: flatcamGUI/FlatCAMGUI.py:1640
  5423. msgid "Clear Plot"
  5424. msgstr "Limpar Gráfico"
  5425. #: flatcamGUI/FlatCAMGUI.py:1641
  5426. msgid "Replot"
  5427. msgstr "Redesenhar"
  5428. #: flatcamGUI/FlatCAMGUI.py:1644
  5429. msgid "Geo Editor"
  5430. msgstr "Editor Geométrico"
  5431. #: flatcamGUI/FlatCAMGUI.py:1645
  5432. msgid "Path"
  5433. msgstr "Caminho"
  5434. #: flatcamGUI/FlatCAMGUI.py:1646
  5435. msgid "Rectangle"
  5436. msgstr "Retângulo"
  5437. #: flatcamGUI/FlatCAMGUI.py:1648
  5438. msgid "Circle"
  5439. msgstr "Círculo"
  5440. #: flatcamGUI/FlatCAMGUI.py:1649
  5441. msgid "Polygon"
  5442. msgstr "Polígono"
  5443. #: flatcamGUI/FlatCAMGUI.py:1650
  5444. msgid "Arc"
  5445. msgstr "Arco"
  5446. #: flatcamGUI/FlatCAMGUI.py:1653
  5447. msgid "Text"
  5448. msgstr "Texto"
  5449. #: flatcamGUI/FlatCAMGUI.py:1659
  5450. msgid "Union"
  5451. msgstr "União"
  5452. #: flatcamGUI/FlatCAMGUI.py:1660
  5453. msgid "Intersection"
  5454. msgstr "Interseção"
  5455. #: flatcamGUI/FlatCAMGUI.py:1661
  5456. msgid "Substraction"
  5457. msgstr "Substração"
  5458. #: flatcamGUI/FlatCAMGUI.py:1662 flatcamGUI/FlatCAMGUI.py:6110
  5459. #: flatcamGUI/ObjectUI.py:1346
  5460. msgid "Cut"
  5461. msgstr "Cortar"
  5462. #: flatcamGUI/FlatCAMGUI.py:1669
  5463. msgid "Pad"
  5464. msgstr "Pad"
  5465. #: flatcamGUI/FlatCAMGUI.py:1670
  5466. msgid "Pad Array"
  5467. msgstr "Matriz de Pads"
  5468. #: flatcamGUI/FlatCAMGUI.py:1673
  5469. msgid "Track"
  5470. msgstr "Trilha"
  5471. #: flatcamGUI/FlatCAMGUI.py:1674
  5472. msgid "Region"
  5473. msgstr "Região"
  5474. #: flatcamGUI/FlatCAMGUI.py:1690
  5475. msgid "Exc Editor"
  5476. msgstr "Editor Exc"
  5477. #: flatcamGUI/FlatCAMGUI.py:1691
  5478. msgid "Add Drill"
  5479. msgstr "Adicionar Broca"
  5480. #: flatcamGUI/FlatCAMGUI.py:1727
  5481. msgid "Print Preview"
  5482. msgstr "Visualizar Impressão"
  5483. #: flatcamGUI/FlatCAMGUI.py:1728
  5484. msgid "Print Code"
  5485. msgstr "Imprimir Código"
  5486. #: flatcamGUI/FlatCAMGUI.py:1729
  5487. msgid "Find in Code"
  5488. msgstr "Encontrar no Código"
  5489. #: flatcamGUI/FlatCAMGUI.py:1734
  5490. msgid "Replace With"
  5491. msgstr "Substituir Por"
  5492. #: flatcamGUI/FlatCAMGUI.py:1738 flatcamGUI/FlatCAMGUI.py:6108
  5493. #: flatcamGUI/FlatCAMGUI.py:6792 flatcamGUI/ObjectUI.py:1344
  5494. msgid "All"
  5495. msgstr "Todos"
  5496. #: flatcamGUI/FlatCAMGUI.py:1740
  5497. msgid ""
  5498. "When checked it will replace all instances in the 'Find' box\n"
  5499. "with the text in the 'Replace' box.."
  5500. msgstr ""
  5501. "Quando marcado, todas as instâncias na caixa 'Localizar'\n"
  5502. "serão substituídas pelo texto na caixa 'Substituir'."
  5503. #: flatcamGUI/FlatCAMGUI.py:1743
  5504. msgid "Open Code"
  5505. msgstr "Abrir Código"
  5506. #: flatcamGUI/FlatCAMGUI.py:1744
  5507. msgid "Save Code"
  5508. msgstr "Salvar Código"
  5509. #: flatcamGUI/FlatCAMGUI.py:1779
  5510. msgid ""
  5511. "Relative neasurement.\n"
  5512. "Reference is last click position"
  5513. msgstr ""
  5514. "Medição relativa.\n"
  5515. "Em referência à posição do último clique"
  5516. #: flatcamGUI/FlatCAMGUI.py:1785
  5517. msgid ""
  5518. "Absolute neasurement.\n"
  5519. "Reference is (X=0, Y= 0) position"
  5520. msgstr ""
  5521. "Medição absoluta.\n"
  5522. "Referente à posição (X=0, Y=0)"
  5523. #: flatcamGUI/FlatCAMGUI.py:1909
  5524. msgid "Lock Toolbars"
  5525. msgstr "Travar Barras de Ferra."
  5526. #: flatcamGUI/FlatCAMGUI.py:2013
  5527. msgid "Select 'Esc'"
  5528. msgstr "Selecionar 'Esc'"
  5529. #: flatcamGUI/FlatCAMGUI.py:2038
  5530. msgid "Copy Objects"
  5531. msgstr "Copiar Objetos"
  5532. #: flatcamGUI/FlatCAMGUI.py:2040
  5533. msgid "Delete Shape"
  5534. msgstr "Excluir Forma"
  5535. #: flatcamGUI/FlatCAMGUI.py:2045
  5536. msgid "Move Objects"
  5537. msgstr "Mover Objetos"
  5538. #: flatcamGUI/FlatCAMGUI.py:2476
  5539. msgid ""
  5540. "Please first select a geometry item to be cutted\n"
  5541. "then select the geometry item that will be cutted\n"
  5542. "out of the first item. In the end press ~X~ key or\n"
  5543. "the toolbar button."
  5544. msgstr ""
  5545. "Por favor, primeiro selecione um item de geometria a ser cortado\n"
  5546. "e em seguida, selecione o item de geometria que será cortado\n"
  5547. "fora do primeiro item. No final, pressione a tecla ~X~ ou\n"
  5548. "o botão da barra de ferramentas."
  5549. #: flatcamGUI/FlatCAMGUI.py:2483 flatcamGUI/FlatCAMGUI.py:2620
  5550. #: flatcamGUI/FlatCAMGUI.py:2679 flatcamGUI/FlatCAMGUI.py:2699
  5551. msgid "Warning"
  5552. msgstr "Aviso"
  5553. #: flatcamGUI/FlatCAMGUI.py:2550 flatcamGUI/FlatCAMGUI.py:2758
  5554. #: flatcamGUI/FlatCAMGUI.py:2969
  5555. msgid "[WARNING_NOTCL] Cancelled."
  5556. msgstr "[WARNING_NOTCL] Cancelado."
  5557. #: flatcamGUI/FlatCAMGUI.py:2615
  5558. msgid ""
  5559. "Please select geometry items \n"
  5560. "on which to perform Intersection Tool."
  5561. msgstr ""
  5562. "Por favor, selecione itens de geometria\n"
  5563. "para executar ferramenta de interseção."
  5564. #: flatcamGUI/FlatCAMGUI.py:2674
  5565. msgid ""
  5566. "Please select geometry items \n"
  5567. "on which to perform Substraction Tool."
  5568. msgstr ""
  5569. "Por favor, selecione itens de geometria\n"
  5570. "para executar ferramenta de subtração."
  5571. #: flatcamGUI/FlatCAMGUI.py:2694
  5572. msgid ""
  5573. "Please select geometry items \n"
  5574. "on which to perform union."
  5575. msgstr ""
  5576. "Por favor, selecione itens de geometria\n"
  5577. "para executar ferramenta de união."
  5578. #: flatcamGUI/FlatCAMGUI.py:2774 flatcamGUI/FlatCAMGUI.py:2986
  5579. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5580. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para excluir."
  5581. #: flatcamGUI/FlatCAMGUI.py:2858 flatcamGUI/FlatCAMGUI.py:3053
  5582. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5583. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para copiar."
  5584. #: flatcamGUI/FlatCAMGUI.py:2904 flatcamGUI/FlatCAMGUI.py:3099
  5585. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5586. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para mover."
  5587. #: flatcamGUI/FlatCAMGUI.py:3125
  5588. msgid "New Tool ..."
  5589. msgstr "Nova Ferramenta ..."
  5590. #: flatcamGUI/FlatCAMGUI.py:3126
  5591. msgid "Enter a Tool Diameter:"
  5592. msgstr "Digite um diâmetro de ferramenta:"
  5593. #: flatcamGUI/FlatCAMGUI.py:3181
  5594. msgid "Measurement Tool exit..."
  5595. msgstr "Saída da ferramenta de medição ..."
  5596. #: flatcamGUI/FlatCAMGUI.py:3503
  5597. msgid "GUI Preferences"
  5598. msgstr "Preferências da GUI"
  5599. #: flatcamGUI/FlatCAMGUI.py:3509
  5600. msgid "Grid X value:"
  5601. msgstr "Valor da grade X:"
  5602. #: flatcamGUI/FlatCAMGUI.py:3511
  5603. msgid "This is the Grid snap value on X axis."
  5604. msgstr "Este é o valor do encaixe à grade no eixo X."
  5605. #: flatcamGUI/FlatCAMGUI.py:3516
  5606. msgid "Grid Y value:"
  5607. msgstr "Valor da grade Y:"
  5608. #: flatcamGUI/FlatCAMGUI.py:3518
  5609. msgid "This is the Grid snap value on Y axis."
  5610. msgstr "Este é o valor do encaixe à grade no eixo Y."
  5611. #: flatcamGUI/FlatCAMGUI.py:3523
  5612. msgid "Snap Max:"
  5613. msgstr "Encaixe Max:"
  5614. #: flatcamGUI/FlatCAMGUI.py:3528
  5615. msgid "Workspace:"
  5616. msgstr "Área de trabalho:"
  5617. #: flatcamGUI/FlatCAMGUI.py:3530
  5618. msgid ""
  5619. "Draw a delimiting rectangle on canvas.\n"
  5620. "The purpose is to illustrate the limits for our work."
  5621. msgstr ""
  5622. "Desenhe um retângulo de delimitação na tela.\n"
  5623. "O objetivo é ilustrar os limites do nosso trabalho."
  5624. #: flatcamGUI/FlatCAMGUI.py:3533
  5625. msgid "Wk. format:"
  5626. msgstr "Formato da AT:"
  5627. #: flatcamGUI/FlatCAMGUI.py:3535
  5628. msgid ""
  5629. "Select the type of rectangle to be used on canvas,\n"
  5630. "as valid workspace."
  5631. msgstr ""
  5632. "Selecione o tipo de retângulo a ser usado na tela,\n"
  5633. "como espaço de trabalho válido."
  5634. #: flatcamGUI/FlatCAMGUI.py:3548
  5635. msgid "Plot Fill:"
  5636. msgstr "Cor de Preenchimento:"
  5637. #: flatcamGUI/FlatCAMGUI.py:3550
  5638. msgid ""
  5639. "Set the fill color for plotted objects.\n"
  5640. "First 6 digits are the color and the last 2\n"
  5641. "digits are for alpha (transparency) level."
  5642. msgstr ""
  5643. "Defina a cor de preenchimento para os objetos plotados.\n"
  5644. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5645. "dígitos são para o nível alfa (transparência)."
  5646. #: flatcamGUI/FlatCAMGUI.py:3564 flatcamGUI/FlatCAMGUI.py:3614
  5647. #: flatcamGUI/FlatCAMGUI.py:3664
  5648. msgid "Alpha Level:"
  5649. msgstr "Nível Alfa:"
  5650. #: flatcamGUI/FlatCAMGUI.py:3566
  5651. msgid "Set the fill transparency for plotted objects."
  5652. msgstr "Definir a transparência de preenchimento para objetos plotados."
  5653. #: flatcamGUI/FlatCAMGUI.py:3583
  5654. msgid "Plot Line:"
  5655. msgstr "Linha:"
  5656. #: flatcamGUI/FlatCAMGUI.py:3585
  5657. msgid "Set the line color for plotted objects."
  5658. msgstr "Defina a cor da linha para objetos plotados."
  5659. #: flatcamGUI/FlatCAMGUI.py:3597
  5660. msgid "Sel. Fill:"
  5661. msgstr "Preenchimento Sel.:"
  5662. #: flatcamGUI/FlatCAMGUI.py:3599
  5663. msgid ""
  5664. "Set the fill color for the selection box\n"
  5665. "in case that the selection is done from left to right.\n"
  5666. "First 6 digits are the color and the last 2\n"
  5667. "digits are for alpha (transparency) level."
  5668. msgstr ""
  5669. "Defina a cor de preenchimento para a caixa de seleção\n"
  5670. "no caso de a seleção ser feita da esquerda para a direita.\n"
  5671. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5672. "dígitos são para o nível alfa (transparência)."
  5673. #: flatcamGUI/FlatCAMGUI.py:3616
  5674. msgid "Set the fill transparency for the 'left to right' selection box."
  5675. msgstr ""
  5676. "Defina a transparência de preenchimento para a caixa de seleção \"da "
  5677. "esquerda para a direita\"."
  5678. #: flatcamGUI/FlatCAMGUI.py:3633
  5679. msgid "Sel. Line:"
  5680. msgstr "Linha Sel.:"
  5681. #: flatcamGUI/FlatCAMGUI.py:3635
  5682. msgid "Set the line color for the 'left to right' selection box."
  5683. msgstr ""
  5684. "Defina a cor da linha para a caixa de seleção \"da esquerda para a direita\"."
  5685. #: flatcamGUI/FlatCAMGUI.py:3647
  5686. msgid "Sel2. Fill:"
  5687. msgstr "Preenchimento Sel2:"
  5688. #: flatcamGUI/FlatCAMGUI.py:3649
  5689. msgid ""
  5690. "Set the fill color for the selection box\n"
  5691. "in case that the selection is done from right to left.\n"
  5692. "First 6 digits are the color and the last 2\n"
  5693. "digits are for alpha (transparency) level."
  5694. msgstr ""
  5695. "Defina a cor de preenchimento para a caixa de seleção, caso a seleção seja "
  5696. "feita da direita para a esquerda.\n"
  5697. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5698. "dígitos são para o nível alfa (transparência)."
  5699. #: flatcamGUI/FlatCAMGUI.py:3666
  5700. msgid "Set the fill transparency for selection 'right to left' box."
  5701. msgstr ""
  5702. "Defina a transparência de preenchimento para a seleção da caixa 'direita "
  5703. "para a esquerda'."
  5704. #: flatcamGUI/FlatCAMGUI.py:3683
  5705. msgid "Sel2. Line:"
  5706. msgstr "Linha Sel2:"
  5707. #: flatcamGUI/FlatCAMGUI.py:3685
  5708. msgid "Set the line color for the 'right to left' selection box."
  5709. msgstr ""
  5710. "Defina a cor da linha para a caixa de seleção 'direita para a esquerda'."
  5711. #: flatcamGUI/FlatCAMGUI.py:3697
  5712. msgid "Editor Draw:"
  5713. msgstr "Editor de Desenho:"
  5714. #: flatcamGUI/FlatCAMGUI.py:3699
  5715. msgid "Set the color for the shape."
  5716. msgstr "Definir a cor da forma."
  5717. #: flatcamGUI/FlatCAMGUI.py:3711
  5718. msgid "Editor Draw Sel.:"
  5719. msgstr "Editor de Desenho Sel.:"
  5720. #: flatcamGUI/FlatCAMGUI.py:3713
  5721. msgid "Set the color of the shape when selected."
  5722. msgstr "Defina a cor da forma quando selecionada."
  5723. #: flatcamGUI/FlatCAMGUI.py:3725
  5724. msgid "Project Items:"
  5725. msgstr "Itens do Projeto:"
  5726. #: flatcamGUI/FlatCAMGUI.py:3727
  5727. msgid "Set the color of the items in Project Tab Tree."
  5728. msgstr "Defina a cor dos itens na Árvore do Guia de Projeto."
  5729. #: flatcamGUI/FlatCAMGUI.py:3738
  5730. msgid "Proj. Dis. Items:"
  5731. msgstr "Itens Proj. Desab.:"
  5732. #: flatcamGUI/FlatCAMGUI.py:3740
  5733. msgid ""
  5734. "Set the color of the items in Project Tab Tree,\n"
  5735. "for the case when the items are disabled."
  5736. msgstr ""
  5737. "Defina a cor dos itens na Árvore da guia Projeto,\n"
  5738. "para o caso em que os itens estão desativados."
  5739. #: flatcamGUI/FlatCAMGUI.py:3791
  5740. msgid "GUI Settings"
  5741. msgstr "Configurações da GUI"
  5742. #: flatcamGUI/FlatCAMGUI.py:3797
  5743. msgid "Layout:"
  5744. msgstr "Layout:"
  5745. #: flatcamGUI/FlatCAMGUI.py:3799
  5746. msgid ""
  5747. "Select an layout for FlatCAM.\n"
  5748. "It is applied immediately."
  5749. msgstr ""
  5750. "Selecione um layout para o FlatCAM.\n"
  5751. "É aplicado imediatamente."
  5752. #: flatcamGUI/FlatCAMGUI.py:3815
  5753. msgid "Style:"
  5754. msgstr "Estilo:"
  5755. #: flatcamGUI/FlatCAMGUI.py:3817
  5756. msgid ""
  5757. "Select an style for FlatCAM.\n"
  5758. "It will be applied at the next app start."
  5759. msgstr ""
  5760. "Selecione um estilo para FlatCAM.\n"
  5761. "Ele será aplicado no próximo início do aplicativo."
  5762. #: flatcamGUI/FlatCAMGUI.py:3828
  5763. msgid "HDPI Support:"
  5764. msgstr "Suporte HDPI:"
  5765. #: flatcamGUI/FlatCAMGUI.py:3830
  5766. msgid ""
  5767. "Enable High DPI support for FlatCAM.\n"
  5768. "It will be applied at the next app start."
  5769. msgstr ""
  5770. "Ativa o suporte de alta DPI para FlatCAM.\n"
  5771. "Ele será aplicado no próximo início do aplicativo."
  5772. #: flatcamGUI/FlatCAMGUI.py:3843
  5773. msgid "Clear GUI Settings:"
  5774. msgstr "Limpar Config. da GUI:"
  5775. #: flatcamGUI/FlatCAMGUI.py:3845
  5776. msgid ""
  5777. "Clear the GUI settings for FlatCAM,\n"
  5778. "such as: layout, gui state, style, hdpi support etc."
  5779. msgstr ""
  5780. "Limpa as configurações da GUI para FlatCAM,\n"
  5781. "como: layout, estado de gui, estilo, suporte a HDPI etc."
  5782. #: flatcamGUI/FlatCAMGUI.py:3848
  5783. msgid "Clear"
  5784. msgstr "Limpar"
  5785. #: flatcamGUI/FlatCAMGUI.py:3852
  5786. msgid "Hover Shape:"
  5787. msgstr "Forma Flutuante:"
  5788. #: flatcamGUI/FlatCAMGUI.py:3854
  5789. msgid ""
  5790. "Enable display of a hover shape for FlatCAM objects.\n"
  5791. "It is displayed whenever the mouse cursor is hovering\n"
  5792. "over any kind of not-selected object."
  5793. msgstr ""
  5794. "Habilita a exibição de uma forma flutuante para objetos FlatCAM.\n"
  5795. "É exibido sempre que o cursor do mouse estiver pairando\n"
  5796. "sobre qualquer tipo de objeto não selecionado."
  5797. #: flatcamGUI/FlatCAMGUI.py:3861
  5798. msgid "Sel. Shape:"
  5799. msgstr "Sel. Forma:"
  5800. #: flatcamGUI/FlatCAMGUI.py:3863
  5801. msgid ""
  5802. "Enable the display of a selection shape for FlatCAM objects.\n"
  5803. "It is displayed whenever the mouse selects an object\n"
  5804. "either by clicking or dragging mouse from left to right or\n"
  5805. "right to left."
  5806. msgstr ""
  5807. "Ativa a exibição de seleção de forma para objetos FlatCAM.\n"
  5808. "É exibido sempre que o mouse seleciona um objeto\n"
  5809. "seja clicando ou arrastando o mouse da esquerda para a direita ou da direita "
  5810. "para a esquerda."
  5811. #: flatcamGUI/FlatCAMGUI.py:3870
  5812. msgid "NB Font Size:"
  5813. msgstr "NB Tamanho da Fonte:"
  5814. #: flatcamGUI/FlatCAMGUI.py:3872
  5815. msgid ""
  5816. "This sets the font size for the elements found in the Notebook.\n"
  5817. "The notebook is the collapsible area in the left side of the GUI,\n"
  5818. "and include the Project, Selected and Tool tabs."
  5819. msgstr ""
  5820. "Isso define o tamanho da fonte para os elementos encontrados no bloco de "
  5821. "anotações.\n"
  5822. "O notebook é a área desmontável no lado esquerdo da GUI,\n"
  5823. "e inclua as guias Projeto, Selecionado e Ferramenta."
  5824. #: flatcamGUI/FlatCAMGUI.py:3887
  5825. msgid "Axis Font Size:"
  5826. msgstr "Tamanho da fonte do eixo:"
  5827. #: flatcamGUI/FlatCAMGUI.py:3889
  5828. msgid "This sets the font size for canvas axis."
  5829. msgstr "Isso define o tamanho da fonte para o eixo da tela."
  5830. #: flatcamGUI/FlatCAMGUI.py:3940
  5831. msgid "Are you sure you want to delete the GUI Settings? \n"
  5832. msgstr "Tem certeza de que deseja excluir as configurações da GUI? \n"
  5833. #: flatcamGUI/FlatCAMGUI.py:3943
  5834. msgid "Clear GUI Settings"
  5835. msgstr "Limpar as configurações da GUI"
  5836. #: flatcamGUI/FlatCAMGUI.py:3964
  5837. msgid "App Preferences"
  5838. msgstr "Preferências do aplicativo"
  5839. #: flatcamGUI/FlatCAMGUI.py:3970 flatcamGUI/FlatCAMGUI.py:4484
  5840. #: flatcamGUI/FlatCAMGUI.py:5309 flatcamTools/ToolMeasurement.py:43
  5841. #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:128
  5842. msgid "Units"
  5843. msgstr "Unidades"
  5844. #: flatcamGUI/FlatCAMGUI.py:3971
  5845. msgid ""
  5846. "The default value for FlatCAM units.\n"
  5847. "Whatever is selected here is set every time\n"
  5848. "FLatCAM is started."
  5849. msgstr ""
  5850. "Unidade utilizada como padrão para os valores no FlatCAM.\n"
  5851. "O que estiver selecionado aqui será considerado sempre que\n"
  5852. "FLatCAM for iniciado."
  5853. #: flatcamGUI/FlatCAMGUI.py:3974
  5854. msgid "IN"
  5855. msgstr "in"
  5856. #: flatcamGUI/FlatCAMGUI.py:3975 flatcamGUI/FlatCAMGUI.py:4490
  5857. #: flatcamGUI/FlatCAMGUI.py:4922 flatcamGUI/FlatCAMGUI.py:5315
  5858. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5859. msgid "MM"
  5860. msgstr "mm"
  5861. #: flatcamGUI/FlatCAMGUI.py:3978
  5862. msgid "APP. LEVEL"
  5863. msgstr "Nível do Aplicativo"
  5864. #: flatcamGUI/FlatCAMGUI.py:3979
  5865. msgid ""
  5866. "Choose the default level of usage for FlatCAM.\n"
  5867. "BASIC level -> reduced functionality, best for beginner's.\n"
  5868. "ADVANCED level -> full functionality.\n"
  5869. "\n"
  5870. "The choice here will influence the parameters in\n"
  5871. "the Selected Tab for all kinds of FlatCAM objects."
  5872. msgstr ""
  5873. "Escolha o nível padrão de uso para FlatCAM.\n"
  5874. "Nível BÁSICO -> funcionalidade reduzida, melhor para iniciantes.\n"
  5875. "Nível AVANÇADO -> funcionalidade completa.\n"
  5876. "\n"
  5877. "A escolha influenciará os parâmetros na Aba\n"
  5878. "Selecionado para todos os tipos de objetos FlatCAM."
  5879. #: flatcamGUI/FlatCAMGUI.py:3984 flatcamGUI/FlatCAMGUI.py:4949
  5880. msgid "Basic"
  5881. msgstr "Básico"
  5882. #: flatcamGUI/FlatCAMGUI.py:3985
  5883. msgid "Advanced"
  5884. msgstr "Avançado"
  5885. #: flatcamGUI/FlatCAMGUI.py:3988
  5886. msgid "Portable app"
  5887. msgstr "Aplicativo portátil"
  5888. #: flatcamGUI/FlatCAMGUI.py:3989
  5889. msgid ""
  5890. "Choose if the application should run as portable.\n"
  5891. "\n"
  5892. "If Checked the application will run portable,\n"
  5893. "which means that the preferences files will be saved\n"
  5894. "in the application folder, in the lib\\config subfolder."
  5895. msgstr ""
  5896. "Escolha se o aplicativo deve ser executado como portável.\n"
  5897. "\n"
  5898. "Se verificado o aplicativo será executado portátil,\n"
  5899. "o que significa que os arquivos de preferências serão salvos\n"
  5900. "na pasta do aplicativo, na subpasta lib \\ config."
  5901. #: flatcamGUI/FlatCAMGUI.py:3996
  5902. msgid "Languages"
  5903. msgstr "Línguas"
  5904. #: flatcamGUI/FlatCAMGUI.py:3997
  5905. msgid "Set the language used throughout FlatCAM."
  5906. msgstr "Defina o idioma usado no FlatCAM."
  5907. #: flatcamGUI/FlatCAMGUI.py:4000
  5908. msgid "Apply Language"
  5909. msgstr "Aplicar o Idioma"
  5910. #: flatcamGUI/FlatCAMGUI.py:4001
  5911. msgid ""
  5912. "Set the language used throughout FlatCAM.\n"
  5913. "The app will restart after click.Windows: When FlatCAM is installed in "
  5914. "Program Files\n"
  5915. "directory, it is possible that the app will not\n"
  5916. "restart after the button is clicked due of Windows\n"
  5917. "security features. In this case the language will be\n"
  5918. "applied at the next app start."
  5919. msgstr ""
  5920. "Define o idioma usado no FlatCAM.\n"
  5921. "O aplicativo será reinicializado após o clique.\n"
  5922. "Windows: se o FlatCAM estiver instalado no diretório\n"
  5923. "Arquivos de Programas, é possível que o aplicativo não\n"
  5924. "seja reiniciado depois que o botão for clicado devido\n"
  5925. "aos recursos de segurança do Windows. Neste caso, o\n"
  5926. "idioma será aplicado na próxima inicialização."
  5927. #: flatcamGUI/FlatCAMGUI.py:4010
  5928. msgid "Shell at StartUp"
  5929. msgstr "Shell na inicialização"
  5930. #: flatcamGUI/FlatCAMGUI.py:4012 flatcamGUI/FlatCAMGUI.py:4017
  5931. msgid ""
  5932. "Check this box if you want the shell to\n"
  5933. "start automatically at startup."
  5934. msgstr ""
  5935. "Marque esta caixa se você deseja que o shell (linha de comando)\n"
  5936. "seja inicializado automaticamente na inicialização."
  5937. #: flatcamGUI/FlatCAMGUI.py:4022
  5938. msgid "Version Check"
  5939. msgstr "Verificar Versão"
  5940. #: flatcamGUI/FlatCAMGUI.py:4024 flatcamGUI/FlatCAMGUI.py:4029
  5941. msgid ""
  5942. "Check this box if you want to check\n"
  5943. "for a new version automatically at startup."
  5944. msgstr ""
  5945. "Marque esta caixa se você quiser verificar\n"
  5946. "por nova versão automaticamente na inicialização."
  5947. #: flatcamGUI/FlatCAMGUI.py:4034
  5948. msgid "Send Stats"
  5949. msgstr "Enviar estatísticas"
  5950. #: flatcamGUI/FlatCAMGUI.py:4036 flatcamGUI/FlatCAMGUI.py:4041
  5951. msgid ""
  5952. "Check this box if you agree to send anonymous\n"
  5953. "stats automatically at startup, to help improve FlatCAM."
  5954. msgstr ""
  5955. "Marque esta caixa se você concorda em enviar dados anônimos\n"
  5956. "automaticamente na inicialização, para ajudar a melhorar o FlatCAM."
  5957. #: flatcamGUI/FlatCAMGUI.py:4048
  5958. msgid "Pan Button"
  5959. msgstr "Botão Pan"
  5960. #: flatcamGUI/FlatCAMGUI.py:4049
  5961. msgid ""
  5962. "Select the mouse button to use for panning:\n"
  5963. "- MMB --> Middle Mouse Button\n"
  5964. "- RMB --> Right Mouse Button"
  5965. msgstr ""
  5966. "Selecione o botão do mouse para usar o panning:\n"
  5967. "- BM -> Botão do meio do mouse\n"
  5968. "- BD -> botão direito do mouse"
  5969. #: flatcamGUI/FlatCAMGUI.py:4052
  5970. msgid "MMB"
  5971. msgstr "BM"
  5972. #: flatcamGUI/FlatCAMGUI.py:4053
  5973. msgid "RMB"
  5974. msgstr "BD"
  5975. #: flatcamGUI/FlatCAMGUI.py:4056
  5976. msgid "Multiple Sel:"
  5977. msgstr "Seleção Múlti"
  5978. #: flatcamGUI/FlatCAMGUI.py:4057
  5979. msgid "Select the key used for multiple selection."
  5980. msgstr "Selecione a tecla usada para seleção múltipla."
  5981. #: flatcamGUI/FlatCAMGUI.py:4058
  5982. msgid "CTRL"
  5983. msgstr "CTRL"
  5984. #: flatcamGUI/FlatCAMGUI.py:4059
  5985. msgid "SHIFT"
  5986. msgstr "SHIFT"
  5987. #: flatcamGUI/FlatCAMGUI.py:4062
  5988. msgid "Project at StartUp"
  5989. msgstr "Projeto na Inicialização"
  5990. #: flatcamGUI/FlatCAMGUI.py:4064 flatcamGUI/FlatCAMGUI.py:4069
  5991. msgid ""
  5992. "Check this box if you want the project/selected/tool tab area to\n"
  5993. "to be shown automatically at startup."
  5994. msgstr ""
  5995. "Marque esta caixa se você quiser que a aba Projeto/Selecionado/Ferramenta\n"
  5996. "seja apresentada automaticamente na inicialização."
  5997. #: flatcamGUI/FlatCAMGUI.py:4074
  5998. msgid "Project AutoHide"
  5999. msgstr "Ocultar Automatic."
  6000. #: flatcamGUI/FlatCAMGUI.py:4076 flatcamGUI/FlatCAMGUI.py:4082
  6001. msgid ""
  6002. "Check this box if you want the project/selected/tool tab area to\n"
  6003. "hide automatically when there are no objects loaded and\n"
  6004. "to show whenever a new object is created."
  6005. msgstr ""
  6006. "Marque esta caixa se você deseja que a aba Projeto/Selecionado/Ferramenta\n"
  6007. "desapareça automaticamente quando não houver objetos carregados e\n"
  6008. "apareça sempre que um novo objeto for criado."
  6009. #: flatcamGUI/FlatCAMGUI.py:4088
  6010. msgid "Enable ToolTips"
  6011. msgstr "Habilitar Dicas"
  6012. #: flatcamGUI/FlatCAMGUI.py:4090 flatcamGUI/FlatCAMGUI.py:4095
  6013. msgid ""
  6014. "Check this box if you want to have toolTips displayed\n"
  6015. "when hovering with mouse over items throughout the App."
  6016. msgstr ""
  6017. "Marque esta caixa se quiser que as dicas de ferramentas sejam exibidas\n"
  6018. "ao passar o mouse sobre os itens em todo o aplicativo."
  6019. #: flatcamGUI/FlatCAMGUI.py:4098
  6020. msgid "Workers number"
  6021. msgstr "Número de trabalhadores"
  6022. #: flatcamGUI/FlatCAMGUI.py:4100 flatcamGUI/FlatCAMGUI.py:4109
  6023. msgid ""
  6024. "The number of Qthreads made available to the App.\n"
  6025. "A bigger number may finish the jobs more quickly but\n"
  6026. "depending on your computer speed, may make the App\n"
  6027. "unresponsive. Can have a value between 2 and 16.\n"
  6028. "Default value is 2.\n"
  6029. "After change, it will be applied at next App start."
  6030. msgstr ""
  6031. "O número de Qthreads disponibilizados para o App.\n"
  6032. "Um número maior pode executar os trabalhos mais rapidamente, mas\n"
  6033. "dependendo da velocidade do computador, pode fazer com que o App\n"
  6034. "não responda. Pode ter um valor entre 2 e 16. O valor padrão é 2.\n"
  6035. "Após a mudança, ele será aplicado na próxima inicialização."
  6036. #: flatcamGUI/FlatCAMGUI.py:4119
  6037. msgid "Geo Tolerance"
  6038. msgstr "Tolerância Geo"
  6039. #: flatcamGUI/FlatCAMGUI.py:4121 flatcamGUI/FlatCAMGUI.py:4130
  6040. msgid ""
  6041. "This value can counter the effect of the Circle Steps\n"
  6042. "parameter. Default value is 0.01.\n"
  6043. "A lower value will increase the detail both in image\n"
  6044. "and in Gcode for the circles, with a higher cost in\n"
  6045. "performance. Higher value will provide more\n"
  6046. "performance at the expense of level of detail."
  6047. msgstr ""
  6048. "Este valor pode contrariar o efeito do parâmetro Passos do Círculo.\n"
  6049. "O valor padrão é 0,01.\n"
  6050. "Um valor mais baixo aumentará os detalhes na imagem e no G-Code\n"
  6051. "para os círculos, com um custo maior em desempenho.\n"
  6052. "Um valor maior proporcionará mais desempenho à custa do nível\n"
  6053. "de detalhes."
  6054. #: flatcamGUI/FlatCAMGUI.py:4169
  6055. msgid "\"Open\" behavior"
  6056. msgstr "Comportamento \"Abrir\""
  6057. #: flatcamGUI/FlatCAMGUI.py:4171
  6058. msgid ""
  6059. "When checked the path for the last saved file is used when saving files,\n"
  6060. "and the path for the last opened file is used when opening files.\n"
  6061. "\n"
  6062. "When unchecked the path for opening files is the one used last: either the\n"
  6063. "path for saving files or the path for opening files."
  6064. msgstr ""
  6065. "Quando marcado, o caminho do último arquivo salvo é usado ao salvar "
  6066. "arquivos,\n"
  6067. "e o caminho para o último arquivo aberto é usado ao abrir arquivos.\n"
  6068. "\n"
  6069. "Quando desmarcado, o caminho para abrir arquivos é aquele usado por último:\n"
  6070. "o caminho para salvar arquivos ou o caminho para abrir arquivos."
  6071. #: flatcamGUI/FlatCAMGUI.py:4180
  6072. msgid "Delete object confirmation"
  6073. msgstr "Excluir confirmação do objeto"
  6074. #: flatcamGUI/FlatCAMGUI.py:4182
  6075. msgid ""
  6076. "When checked the application will ask for user confirmation\n"
  6077. "whenever the Delete object(s) event is triggered, either by\n"
  6078. "menu shortcut or key shortcut."
  6079. msgstr ""
  6080. "Quando marcada, o aplicativo pedirá a confirmação do usuário\n"
  6081. "sempre que o evento Excluir objeto (s) é acionado, seja por\n"
  6082. "atalho de menu ou atalho de tecla."
  6083. #: flatcamGUI/FlatCAMGUI.py:4189
  6084. msgid "Save Compressed Project"
  6085. msgstr "Salvar Projeto Compactado"
  6086. #: flatcamGUI/FlatCAMGUI.py:4191
  6087. msgid ""
  6088. "Whether to save a compressed or uncompressed project.\n"
  6089. "When checked it will save a compressed FlatCAM project."
  6090. msgstr ""
  6091. "Para salvar um projeto compactado ou descompactado.\n"
  6092. "Quando marcado, o projeto FlatCAM será salvo compactado."
  6093. #: flatcamGUI/FlatCAMGUI.py:4202
  6094. msgid "Compression Level"
  6095. msgstr "Nível de Compressão"
  6096. #: flatcamGUI/FlatCAMGUI.py:4204
  6097. msgid ""
  6098. "The level of compression used when saving\n"
  6099. "a FlatCAM project. Higher value means better compression\n"
  6100. "but require more RAM usage and more processing time."
  6101. msgstr ""
  6102. "O nível de compactação usado ao salvar o Projeto FlatCAM.\n"
  6103. "Um valor maior significa melhor compactação, mas é necessário mais uso de "
  6104. "RAM e mais tempo de processamento."
  6105. #: flatcamGUI/FlatCAMGUI.py:4230
  6106. msgid "Gerber General"
  6107. msgstr "Gerber Geral"
  6108. #: flatcamGUI/FlatCAMGUI.py:4233 flatcamGUI/FlatCAMGUI.py:4773
  6109. #: flatcamGUI/FlatCAMGUI.py:5703 flatcamGUI/FlatCAMGUI.py:6084
  6110. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:503
  6111. #: flatcamGUI/ObjectUI.py:831 flatcamGUI/ObjectUI.py:1330
  6112. msgid "Plot Options"
  6113. msgstr "Opções de Gráfico"
  6114. #: flatcamGUI/FlatCAMGUI.py:4240 flatcamGUI/FlatCAMGUI.py:4785
  6115. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:504
  6116. msgid "Solid"
  6117. msgstr "Preenchido"
  6118. #: flatcamGUI/FlatCAMGUI.py:4242 flatcamGUI/ObjectUI.py:158
  6119. msgid "Solid color polygons."
  6120. msgstr "Polígonos com cor sólida."
  6121. #: flatcamGUI/FlatCAMGUI.py:4247 flatcamGUI/ObjectUI.py:164
  6122. msgid "M-Color"
  6123. msgstr "M-Cores"
  6124. #: flatcamGUI/FlatCAMGUI.py:4249 flatcamGUI/ObjectUI.py:166
  6125. msgid "Draw polygons in different colors."
  6126. msgstr "Desenha polígonos em cores diferentes."
  6127. #: flatcamGUI/FlatCAMGUI.py:4254 flatcamGUI/FlatCAMGUI.py:4779
  6128. #: flatcamGUI/FlatCAMGUI.py:5707 flatcamGUI/ObjectUI.py:172
  6129. #: flatcamGUI/ObjectUI.py:542
  6130. msgid "Plot"
  6131. msgstr "Gráfico"
  6132. #: flatcamGUI/FlatCAMGUI.py:4256 flatcamGUI/FlatCAMGUI.py:5709
  6133. #: flatcamGUI/FlatCAMGUI.py:6095 flatcamGUI/ObjectUI.py:174
  6134. #: flatcamGUI/ObjectUI.py:544 flatcamGUI/ObjectUI.py:877
  6135. #: flatcamGUI/ObjectUI.py:1441
  6136. msgid "Plot (show) this object."
  6137. msgstr "Mostra o objeto no gráfico."
  6138. #: flatcamGUI/FlatCAMGUI.py:4261 flatcamGUI/FlatCAMGUI.py:5717
  6139. #: flatcamGUI/FlatCAMGUI.py:6165
  6140. msgid "Circle Steps"
  6141. msgstr "Passos do Círculo"
  6142. #: flatcamGUI/FlatCAMGUI.py:4263
  6143. msgid ""
  6144. "The number of circle steps for Gerber \n"
  6145. "circular aperture linear approximation."
  6146. msgstr ""
  6147. "Número de passos de círculo para Gerber.\n"
  6148. "Aproximação linear de abertura circular."
  6149. #: flatcamGUI/FlatCAMGUI.py:4278
  6150. msgid "Gerber Options"
  6151. msgstr "Opções Gerber"
  6152. #: flatcamGUI/FlatCAMGUI.py:4281 flatcamGUI/ObjectUI.py:250
  6153. msgid "Isolation Routing"
  6154. msgstr "Roteamento para Isolação"
  6155. #: flatcamGUI/FlatCAMGUI.py:4283 flatcamGUI/ObjectUI.py:252
  6156. msgid ""
  6157. "Create a Geometry object with\n"
  6158. "toolpaths to cut outside polygons."
  6159. msgstr ""
  6160. "Cria um objeto Geometria com caminho de\n"
  6161. "ferramenta para cortar polígonos externos."
  6162. #: flatcamGUI/FlatCAMGUI.py:4292 flatcamGUI/FlatCAMGUI.py:5731
  6163. #: flatcamGUI/FlatCAMGUI.py:6175 flatcamGUI/FlatCAMGUI.py:6524
  6164. #: flatcamGUI/FlatCAMGUI.py:6684 flatcamGUI/ObjectUI.py:259
  6165. #: flatcamTools/ToolCutOut.py:92
  6166. msgid "Tool dia"
  6167. msgstr "Diâ. da Ferra."
  6168. #: flatcamGUI/FlatCAMGUI.py:4294 flatcamGUI/FlatCAMGUI.py:5149
  6169. #: flatcamGUI/ObjectUI.py:785
  6170. msgid "Diameter of the cutting tool."
  6171. msgstr "Diâmetro da ferramenta"
  6172. #: flatcamGUI/FlatCAMGUI.py:4301 flatcamGUI/ObjectUI.py:272
  6173. msgid "# Passes"
  6174. msgstr "Passes"
  6175. #: flatcamGUI/FlatCAMGUI.py:4303 flatcamGUI/ObjectUI.py:274
  6176. msgid ""
  6177. "Width of the isolation gap in\n"
  6178. "number (integer) of tool widths."
  6179. msgstr ""
  6180. "Largura da isolação em relação à\n"
  6181. "largura da ferramenta (número inteiro)."
  6182. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/ObjectUI.py:283
  6183. msgid "Pass overlap"
  6184. msgstr "Sobreposição"
  6185. #: flatcamGUI/FlatCAMGUI.py:4314 flatcamGUI/ObjectUI.py:285
  6186. #, python-format
  6187. msgid ""
  6188. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6189. "Example:\n"
  6190. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  6191. "above."
  6192. msgstr ""
  6193. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  6194. "ferramenta.\n"
  6195. "Exemplo:\n"
  6196. "Um valor de 0.25 significa uma sobreposição de 25% do diâmetro da ferramenta."
  6197. #: flatcamGUI/FlatCAMGUI.py:4322 flatcamGUI/ObjectUI.py:295
  6198. msgid "Milling Type"
  6199. msgstr "Tipo de fresamento"
  6200. #: flatcamGUI/FlatCAMGUI.py:4324 flatcamGUI/ObjectUI.py:297
  6201. msgid ""
  6202. "Milling type:\n"
  6203. "- climb / best for precision milling and to reduce tool usage\n"
  6204. "- conventional / useful when there is no backlash compensation"
  6205. msgstr ""
  6206. "Tipo de fresamento:\n"
  6207. "- subida: melhor para fresamento de precisão e para reduzir o uso da "
  6208. "ferramenta\n"
  6209. "- convencional: útil quando não há compensação de folga"
  6210. #: flatcamGUI/FlatCAMGUI.py:4329 flatcamGUI/ObjectUI.py:302
  6211. msgid "Climb"
  6212. msgstr "Subida"
  6213. #: flatcamGUI/FlatCAMGUI.py:4330 flatcamGUI/ObjectUI.py:303
  6214. msgid "Conv."
  6215. msgstr "Conv."
  6216. #: flatcamGUI/FlatCAMGUI.py:4334 flatcamGUI/ObjectUI.py:307
  6217. msgid "Combine Passes"
  6218. msgstr "Combinar Passes"
  6219. #: flatcamGUI/FlatCAMGUI.py:4336 flatcamGUI/ObjectUI.py:309
  6220. msgid "Combine all passes into one object"
  6221. msgstr "Combinar todos os passes em um objeto"
  6222. #: flatcamGUI/FlatCAMGUI.py:4341 flatcamGUI/ObjectUI.py:414
  6223. msgid "Non-copper regions"
  6224. msgstr "Regiões sem cobre"
  6225. #: flatcamGUI/FlatCAMGUI.py:4343 flatcamGUI/ObjectUI.py:416
  6226. msgid ""
  6227. "Create polygons covering the\n"
  6228. "areas without copper on the PCB.\n"
  6229. "Equivalent to the inverse of this\n"
  6230. "object. Can be used to remove all\n"
  6231. "copper from a specified region."
  6232. msgstr ""
  6233. "Criar polígonos cobrindo as\n"
  6234. "áreas sem cobre no PCB.\n"
  6235. "Equivalente ao inverso do\n"
  6236. "objeto. Pode ser usado para remover todo o\n"
  6237. "cobre de uma região especificada."
  6238. #: flatcamGUI/FlatCAMGUI.py:4355 flatcamGUI/FlatCAMGUI.py:4380
  6239. #: flatcamGUI/ObjectUI.py:428 flatcamGUI/ObjectUI.py:462
  6240. msgid "Boundary Margin"
  6241. msgstr "Margem Limite"
  6242. #: flatcamGUI/FlatCAMGUI.py:4357 flatcamGUI/ObjectUI.py:430
  6243. msgid ""
  6244. "Specify the edge of the PCB\n"
  6245. "by drawing a box around all\n"
  6246. "objects with this minimum\n"
  6247. "distance."
  6248. msgstr ""
  6249. "Especifica a borda do PCB\n"
  6250. "desenhando uma caixa em volta de todos os\n"
  6251. "objetos com esta distância mínima."
  6252. #: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/FlatCAMGUI.py:4389
  6253. #: flatcamGUI/ObjectUI.py:441 flatcamGUI/ObjectUI.py:472
  6254. msgid "Rounded Geo"
  6255. msgstr "Geo Arredondado"
  6256. #: flatcamGUI/FlatCAMGUI.py:4369 flatcamGUI/ObjectUI.py:443
  6257. msgid "Resulting geometry will have rounded corners."
  6258. msgstr "A geometria resultante terá cantos arredondados."
  6259. #: flatcamGUI/FlatCAMGUI.py:4374 flatcamGUI/ObjectUI.py:452
  6260. #: flatcamTools/ToolPanelize.py:85
  6261. msgid "Bounding Box"
  6262. msgstr "Caixa Delimitadora"
  6263. #: flatcamGUI/FlatCAMGUI.py:4382 flatcamGUI/ObjectUI.py:464
  6264. msgid ""
  6265. "Distance of the edges of the box\n"
  6266. "to the nearest polygon."
  6267. msgstr ""
  6268. "Distância das bordas da caixa\n"
  6269. "para o polígono mais próximo."
  6270. #: flatcamGUI/FlatCAMGUI.py:4391 flatcamGUI/ObjectUI.py:474
  6271. msgid ""
  6272. "If the bounding box is \n"
  6273. "to have rounded corners\n"
  6274. "their radius is equal to\n"
  6275. "the margin."
  6276. msgstr ""
  6277. "Se a caixa delimitadora tiver\n"
  6278. "cantos arredondados, o seu raio\n"
  6279. "é igual à margem."
  6280. #: flatcamGUI/FlatCAMGUI.py:4405
  6281. msgid "Gerber Adv. Options"
  6282. msgstr "Opções Avançadas"
  6283. #: flatcamGUI/FlatCAMGUI.py:4408
  6284. msgid "Advanced Param."
  6285. msgstr "Parâmetros avançados"
  6286. #: flatcamGUI/FlatCAMGUI.py:4410
  6287. msgid ""
  6288. "A list of Gerber advanced parameters.\n"
  6289. "Those parameters are available only for\n"
  6290. "Advanced App. Level."
  6291. msgstr ""
  6292. "Uma lista de parâmetros avançados do Gerber.\n"
  6293. "Esses parâmetros estão disponíveis somente para\n"
  6294. "o nível avançado do aplicativo."
  6295. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/ObjectUI.py:314
  6296. msgid "\"Follow\""
  6297. msgstr "\"Segue\""
  6298. #: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:316
  6299. msgid ""
  6300. "Generate a 'Follow' geometry.\n"
  6301. "This means that it will cut through\n"
  6302. "the middle of the trace."
  6303. msgstr ""
  6304. "Gera uma geometria 'Segue'.\n"
  6305. "Isso significa que ele cortará\n"
  6306. "no meio do traço."
  6307. #: flatcamGUI/FlatCAMGUI.py:4429
  6308. msgid "Table Show/Hide"
  6309. msgstr "Mostra/Esconde Tabela"
  6310. #: flatcamGUI/FlatCAMGUI.py:4431
  6311. msgid ""
  6312. "Toggle the display of the Gerber Apertures Table.\n"
  6313. "Also, on hide, it will delete all mark shapes\n"
  6314. "that are drawn on canvas."
  6315. msgstr ""
  6316. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  6317. "Além disso, ao ocultar, ele excluirá todas as formas de marcas\n"
  6318. "que estão desenhadas na tela."
  6319. #: flatcamGUI/FlatCAMGUI.py:4470
  6320. msgid "Gerber Export"
  6321. msgstr "Exportar Gerber"
  6322. #: flatcamGUI/FlatCAMGUI.py:4473 flatcamGUI/FlatCAMGUI.py:5298
  6323. msgid "Export Options"
  6324. msgstr "Opções da Exportação"
  6325. #: flatcamGUI/FlatCAMGUI.py:4475
  6326. msgid ""
  6327. "The parameters set here are used in the file exported\n"
  6328. "when using the File -> Export -> Export Gerber menu entry."
  6329. msgstr ""
  6330. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6331. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Gerber."
  6332. #: flatcamGUI/FlatCAMGUI.py:4486 flatcamGUI/FlatCAMGUI.py:4492
  6333. msgid "The units used in the Gerber file."
  6334. msgstr "As unidades usadas no arquivo Gerber."
  6335. #: flatcamGUI/FlatCAMGUI.py:4489 flatcamGUI/FlatCAMGUI.py:4819
  6336. #: flatcamGUI/FlatCAMGUI.py:4921 flatcamGUI/FlatCAMGUI.py:5314
  6337. #: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
  6338. msgid "INCH"
  6339. msgstr "in"
  6340. #: flatcamGUI/FlatCAMGUI.py:4498 flatcamGUI/FlatCAMGUI.py:5323
  6341. msgid "Int/Decimals"
  6342. msgstr "Int/Decimais"
  6343. #: flatcamGUI/FlatCAMGUI.py:4500
  6344. msgid ""
  6345. "The number of digits in the whole part of the number\n"
  6346. "and in the fractional part of the number."
  6347. msgstr ""
  6348. "O número de dígitos da parte inteira\n"
  6349. "e da parte fracionária do número."
  6350. #: flatcamGUI/FlatCAMGUI.py:4511
  6351. msgid ""
  6352. "This numbers signify the number of digits in\n"
  6353. "the whole part of Gerber coordinates."
  6354. msgstr ""
  6355. "Esse número configura o número de dígitos\n"
  6356. "da parte inteira das coordenadas de Gerber."
  6357. #: flatcamGUI/FlatCAMGUI.py:4525
  6358. msgid ""
  6359. "This numbers signify the number of digits in\n"
  6360. "the decimal part of Gerber coordinates."
  6361. msgstr ""
  6362. "Este número configura o número de dígitos\n"
  6363. "da parte decimal das coordenadas de Gerber."
  6364. #: flatcamGUI/FlatCAMGUI.py:4534 flatcamGUI/FlatCAMGUI.py:5384
  6365. msgid "Zeros"
  6366. msgstr "Zeros"
  6367. #: flatcamGUI/FlatCAMGUI.py:4537 flatcamGUI/FlatCAMGUI.py:4547
  6368. msgid ""
  6369. "This sets the type of Gerber zeros.\n"
  6370. "If LZ then Leading Zeros are removed and\n"
  6371. "Trailing Zeros are kept.\n"
  6372. "If TZ is checked then Trailing Zeros are removed\n"
  6373. "and Leading Zeros are kept."
  6374. msgstr ""
  6375. "Define o tipo padrão de zeros de Gerber.\n"
  6376. "LZ: remove os zeros à esquerda e mantém os zeros à direita.\n"
  6377. "TZ: remove os zeros à direita e mantém os zeros à esquerda."
  6378. #: flatcamGUI/FlatCAMGUI.py:4544 flatcamGUI/FlatCAMGUI.py:4897
  6379. #: flatcamGUI/FlatCAMGUI.py:5394 flatcamTools/ToolPcbWizard.py:111
  6380. msgid "LZ"
  6381. msgstr "LZ"
  6382. #: flatcamGUI/FlatCAMGUI.py:4545 flatcamGUI/FlatCAMGUI.py:4898
  6383. #: flatcamGUI/FlatCAMGUI.py:5395 flatcamTools/ToolPcbWizard.py:112
  6384. msgid "TZ"
  6385. msgstr "TZ"
  6386. #: flatcamGUI/FlatCAMGUI.py:4567 flatcamGUI/FlatCAMGUI.py:5448
  6387. #: flatcamGUI/FlatCAMGUI.py:6050 flatcamGUI/FlatCAMGUI.py:6307
  6388. #: flatcamGUI/FlatCAMGUI.py:6346 flatcamGUI/FlatCAMGUI.py:6513
  6389. #: flatcamGUI/FlatCAMGUI.py:6612 flatcamGUI/FlatCAMGUI.py:6808
  6390. #: flatcamGUI/FlatCAMGUI.py:6869 flatcamGUI/FlatCAMGUI.py:7068
  6391. #: flatcamGUI/FlatCAMGUI.py:7200 flatcamGUI/FlatCAMGUI.py:7373
  6392. #: flatcamGUI/ObjectUI.py:1548 flatcamTools/ToolNonCopperClear.py:198
  6393. msgid "Parameters"
  6394. msgstr "Parâmetros"
  6395. #: flatcamGUI/FlatCAMGUI.py:4569
  6396. msgid "A list of Gerber Editor parameters."
  6397. msgstr "Uma lista de parâmetros do Editor Gerber."
  6398. #: flatcamGUI/FlatCAMGUI.py:4577 flatcamGUI/FlatCAMGUI.py:5458
  6399. #: flatcamGUI/FlatCAMGUI.py:6060
  6400. msgid "Selection limit"
  6401. msgstr "Lim. de seleção:"
  6402. #: flatcamGUI/FlatCAMGUI.py:4579
  6403. msgid ""
  6404. "Set the number of selected Gerber geometry\n"
  6405. "items above which the utility geometry\n"
  6406. "becomes just a selection rectangle.\n"
  6407. "Increases the performance when moving a\n"
  6408. "large number of geometric elements."
  6409. msgstr ""
  6410. "Define o número máximo de ítens de geometria Gerber selecionados.\n"
  6411. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  6412. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  6413. #: flatcamGUI/FlatCAMGUI.py:4591
  6414. msgid "New Aperture code"
  6415. msgstr "Novo código do Aper."
  6416. #: flatcamGUI/FlatCAMGUI.py:4603
  6417. msgid "New Aperture size"
  6418. msgstr "Novo tamanho da aber."
  6419. #: flatcamGUI/FlatCAMGUI.py:4605
  6420. msgid "Size for the new aperture"
  6421. msgstr "Tamanho para a nova aber."
  6422. #: flatcamGUI/FlatCAMGUI.py:4615
  6423. msgid "New Aperture type"
  6424. msgstr "Novo tipo de aber."
  6425. #: flatcamGUI/FlatCAMGUI.py:4617
  6426. msgid ""
  6427. "Type for the new aperture.\n"
  6428. "Can be 'C', 'R' or 'O'."
  6429. msgstr ""
  6430. "Typo para a nova abertura.\n"
  6431. "Pode ser 'C', 'R' ou 'O'."
  6432. #: flatcamGUI/FlatCAMGUI.py:4638
  6433. msgid "Aperture Dimensions"
  6434. msgstr "Dim Abertura"
  6435. #: flatcamGUI/FlatCAMGUI.py:4640 flatcamGUI/FlatCAMGUI.py:5733
  6436. #: flatcamGUI/FlatCAMGUI.py:6358
  6437. msgid "Diameters of the cutting tools, separated by ','"
  6438. msgstr "Diâmetros das ferramentas de corte, separadas por ','"
  6439. #: flatcamGUI/FlatCAMGUI.py:4646
  6440. #, python-format
  6441. msgid "<b>%s:</b>"
  6442. msgstr "<b>%s:</b>"
  6443. #: flatcamGUI/FlatCAMGUI.py:4650 flatcamGUI/FlatCAMGUI.py:5630
  6444. msgid "Linear Dir."
  6445. msgstr "Direção"
  6446. #: flatcamGUI/FlatCAMGUI.py:4686
  6447. msgid "Circular Pad Array"
  6448. msgstr "Matriz Circular de Ranhuras"
  6449. #: flatcamGUI/FlatCAMGUI.py:4690 flatcamGUI/FlatCAMGUI.py:5539
  6450. #: flatcamGUI/FlatCAMGUI.py:5670
  6451. msgid "Circular Dir."
  6452. msgstr "Sentido"
  6453. #: flatcamGUI/FlatCAMGUI.py:4692 flatcamGUI/FlatCAMGUI.py:5541
  6454. #: flatcamGUI/FlatCAMGUI.py:5672
  6455. msgid ""
  6456. "Direction for circular array.\n"
  6457. "Can be CW = clockwise or CCW = counter clockwise."
  6458. msgstr ""
  6459. "Sentido da matriz circular.\n"
  6460. "Pode ser CW = sentido horário ou CCW = sentido anti-horário."
  6461. #: flatcamGUI/FlatCAMGUI.py:4703 flatcamGUI/FlatCAMGUI.py:5552
  6462. #: flatcamGUI/FlatCAMGUI.py:5683
  6463. msgid "Circ. Angle"
  6464. msgstr "Angulo Circ."
  6465. #: flatcamGUI/FlatCAMGUI.py:4718
  6466. msgid "Distance at which to buffer the Gerber element."
  6467. msgstr "Distância na qual armazenar o elemento Gerber."
  6468. #: flatcamGUI/FlatCAMGUI.py:4725
  6469. msgid "Scale Tool"
  6470. msgstr "Ferra. de Escala"
  6471. #: flatcamGUI/FlatCAMGUI.py:4731
  6472. msgid "Factor to scale the Gerber element."
  6473. msgstr "Fator para dimensionar o elemento Gerber."
  6474. #: flatcamGUI/FlatCAMGUI.py:4738
  6475. msgid "Mark Area Tool"
  6476. msgstr "Marcar Área de Ferra."
  6477. #: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:4752
  6478. msgid "Threshold low"
  6479. msgstr "Limiar baixo"
  6480. #: flatcamGUI/FlatCAMGUI.py:4744
  6481. msgid "Threshold value under which the apertures are not marked."
  6482. msgstr "Valor limiar sob o qual as aberturas não estão marcadas."
  6483. #: flatcamGUI/FlatCAMGUI.py:4754
  6484. msgid "Threshold value over which the apertures are not marked."
  6485. msgstr "Valor limite sobre o qual as aberturas não estão marcadas."
  6486. #: flatcamGUI/FlatCAMGUI.py:4770
  6487. msgid "Excellon General"
  6488. msgstr "Excellon Geral"
  6489. #: flatcamGUI/FlatCAMGUI.py:4792
  6490. msgid "Excellon Format"
  6491. msgstr "Formato Excellon"
  6492. #: flatcamGUI/FlatCAMGUI.py:4794
  6493. msgid ""
  6494. "The NC drill files, usually named Excellon files\n"
  6495. "are files that can be found in different formats.\n"
  6496. "Here we set the format used when the provided\n"
  6497. "coordinates are not using period.\n"
  6498. "\n"
  6499. "Possible presets:\n"
  6500. "\n"
  6501. "PROTEUS 3:3 MM LZ\n"
  6502. "DipTrace 5:2 MM TZ\n"
  6503. "DipTrace 4:3 MM LZ\n"
  6504. "\n"
  6505. "EAGLE 3:3 MM TZ\n"
  6506. "EAGLE 4:3 MM TZ\n"
  6507. "EAGLE 2:5 INCH TZ\n"
  6508. "EAGLE 3:5 INCH TZ\n"
  6509. "\n"
  6510. "ALTIUM 2:4 INCH LZ\n"
  6511. "Sprint Layout 2:4 INCH LZ\n"
  6512. "KiCAD 3:5 INCH TZ"
  6513. msgstr ""
  6514. "Os arquivos de broca NC, normalmente chamados arquivos Excellon\n"
  6515. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6516. "Aqui é definido o formato usado quando as coordenadas\n"
  6517. "fornecidas não estiverem usando ponto.\n"
  6518. "\n"
  6519. "Padrões possíveis:\n"
  6520. "\n"
  6521. "PROTEUS 3:3 mm LZ\n"
  6522. "DipTrace 5:2 mm TZ\n"
  6523. "DipTrace 4:3 mm LZ\n"
  6524. "\n"
  6525. "EAGLE 3:3 mm TZ\n"
  6526. "EAGLE 4:3 mm TZ\n"
  6527. "EAGLE 2:5 polegadas TZ\n"
  6528. "EAGLE 3:5 polegadas TZ\n"
  6529. "\n"
  6530. "ALTIUM 2:4 polegadas LZ\n"
  6531. "Sprint Layout 2:4 polegadas LZ\n"
  6532. "KiCAD 3:5 polegadas TZ"
  6533. #: flatcamGUI/FlatCAMGUI.py:4822
  6534. msgid "Default values for INCH are 2:4"
  6535. msgstr "Valores padrão para Polegadas: 2:4"
  6536. #: flatcamGUI/FlatCAMGUI.py:4830 flatcamGUI/FlatCAMGUI.py:4863
  6537. #: flatcamGUI/FlatCAMGUI.py:5338
  6538. msgid ""
  6539. "This numbers signify the number of digits in\n"
  6540. "the whole part of Excellon coordinates."
  6541. msgstr ""
  6542. "Este número configura o número de dígitos\n"
  6543. "da parte inteira das coordenadas de Excellon."
  6544. #: flatcamGUI/FlatCAMGUI.py:4844 flatcamGUI/FlatCAMGUI.py:4877
  6545. #: flatcamGUI/FlatCAMGUI.py:5352
  6546. msgid ""
  6547. "This numbers signify the number of digits in\n"
  6548. "the decimal part of Excellon coordinates."
  6549. msgstr ""
  6550. "Este número configura o número de dígitos\n"
  6551. "da parte decimal das coordenadas de Excellon."
  6552. #: flatcamGUI/FlatCAMGUI.py:4852
  6553. msgid "METRIC"
  6554. msgstr "MÉTRICO"
  6555. #: flatcamGUI/FlatCAMGUI.py:4855
  6556. msgid "Default values for METRIC are 3:3"
  6557. msgstr "Valores padrão para Métrico: 3:3"
  6558. #: flatcamGUI/FlatCAMGUI.py:4886
  6559. msgid "Default <b>Zeros</b>"
  6560. msgstr "Padrão <b>Zeros</b>"
  6561. #: flatcamGUI/FlatCAMGUI.py:4889 flatcamGUI/FlatCAMGUI.py:5387
  6562. msgid ""
  6563. "This sets the type of Excellon zeros.\n"
  6564. "If LZ then Leading Zeros are kept and\n"
  6565. "Trailing Zeros are removed.\n"
  6566. "If TZ is checked then Trailing Zeros are kept\n"
  6567. "and Leading Zeros are removed."
  6568. msgstr ""
  6569. "Define o tipo padrão de zeros de Excellon.\n"
  6570. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6571. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6572. #: flatcamGUI/FlatCAMGUI.py:4900
  6573. msgid ""
  6574. "This sets the default type of Excellon zeros.\n"
  6575. "If it is not detected in the parsed file the value here\n"
  6576. "will be used.If LZ then Leading Zeros are kept and\n"
  6577. "Trailing Zeros are removed.\n"
  6578. "If TZ is checked then Trailing Zeros are kept\n"
  6579. "and Leading Zeros are removed."
  6580. msgstr ""
  6581. "Define o tipo padrão de zeros de Excellon,\n"
  6582. "se não for detectado no arquivo analisado.\n"
  6583. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6584. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6585. #: flatcamGUI/FlatCAMGUI.py:4910
  6586. msgid "Default <b>Units</b>"
  6587. msgstr "<b>Unidades</b> Padrão"
  6588. #: flatcamGUI/FlatCAMGUI.py:4913
  6589. msgid ""
  6590. "This sets the default units of Excellon files.\n"
  6591. "If it is not detected in the parsed file the value here\n"
  6592. "will be used.Some Excellon files don't have an header\n"
  6593. "therefore this parameter will be used."
  6594. msgstr ""
  6595. "Configura as unidades padrão dos arquivos Excellon.\n"
  6596. "Alguns arquivos Excellon não possuem um cabeçalho.\n"
  6597. "Se não for detectado no arquivo analisado, este padrão\n"
  6598. "será usado."
  6599. #: flatcamGUI/FlatCAMGUI.py:4924
  6600. msgid ""
  6601. "This sets the units of Excellon files.\n"
  6602. "Some Excellon files don't have an header\n"
  6603. "therefore this parameter will be used."
  6604. msgstr ""
  6605. "Configura as unidades dos arquivos Excellon.\n"
  6606. "Alguns arquivos Excellon não possuem um cabeçalho,\n"
  6607. "e assim este parâmetro será usado."
  6608. #: flatcamGUI/FlatCAMGUI.py:4932
  6609. msgid "Excellon Optimization"
  6610. msgstr "Otimização Excellon"
  6611. #: flatcamGUI/FlatCAMGUI.py:4935
  6612. msgid "Algorithm: "
  6613. msgstr "Algoritmo: "
  6614. #: flatcamGUI/FlatCAMGUI.py:4937 flatcamGUI/FlatCAMGUI.py:4951
  6615. msgid ""
  6616. "This sets the optimization type for the Excellon drill path.\n"
  6617. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6618. "Guided Local Path is used. Default search time is 3sec.\n"
  6619. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6620. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6621. "\n"
  6622. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6623. "Travelling Salesman algorithm for path optimization."
  6624. msgstr ""
  6625. "Define o tipo de otimização para o caminho de perfuração do Excellon.\n"
  6626. "Se MH estiver marcado, será usado o algoritmo do Google OR-Tools com "
  6627. "MetaHeuristic.\n"
  6628. "O tempo de pesquisa padrão é de 3s.\n"
  6629. "Usar o comando TCL set_sys excellon_search_time para definir outros "
  6630. "valores.\n"
  6631. "Se Básico estiver marcado, será usado o algoritmo básico do Google OR-"
  6632. "Tools.\n"
  6633. "\n"
  6634. "Se DESABILITADO, FlatCAM está no modo de 32 bits e usa\n"
  6635. "o algoritmo Travelling Salesman para otimização de caminhos."
  6636. #: flatcamGUI/FlatCAMGUI.py:4948
  6637. msgid "MH"
  6638. msgstr "MH"
  6639. #: flatcamGUI/FlatCAMGUI.py:4962
  6640. msgid "Optimization Time"
  6641. msgstr "Tempo de Otimização"
  6642. #: flatcamGUI/FlatCAMGUI.py:4965
  6643. msgid ""
  6644. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6645. "maximum threshold for how much time is spent doing the\n"
  6646. "path optimization. This max duration is set here.\n"
  6647. "In seconds."
  6648. msgstr ""
  6649. "Quando o Metaheuristic (MH) da OR-Tools está ativado, este é o limite\n"
  6650. "máximo de tempo para otimizar o caminho, em segundos. Padão: 3"
  6651. #: flatcamGUI/FlatCAMGUI.py:5008
  6652. msgid "Excellon Options"
  6653. msgstr "Opções Excellon"
  6654. #: flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/FlatCAMGUI.py:5752
  6655. #: flatcamGUI/ObjectUI.py:582
  6656. msgid "Create CNC Job"
  6657. msgstr "Criar um Trabalho CNC"
  6658. #: flatcamGUI/FlatCAMGUI.py:5013
  6659. msgid ""
  6660. "Parameters used to create a CNC Job object\n"
  6661. "for this drill object."
  6662. msgstr ""
  6663. "Parâmetros usados para criar um objeto de Trabalho CNC\n"
  6664. "para a furação."
  6665. #: flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/FlatCAMGUI.py:5764
  6666. #: flatcamGUI/FlatCAMGUI.py:7004 flatcamGUI/ObjectUI.py:593
  6667. #: flatcamGUI/ObjectUI.py:1069 flatcamTools/ToolCalculators.py:107
  6668. msgid "Cut Z"
  6669. msgstr "Cortar Z"
  6670. #: flatcamGUI/FlatCAMGUI.py:5023 flatcamGUI/ObjectUI.py:595
  6671. msgid ""
  6672. "Drill depth (negative)\n"
  6673. "below the copper surface."
  6674. msgstr ""
  6675. "Profundidade da broca (negativo)\n"
  6676. "abaixo da superfície de cobre."
  6677. #: flatcamGUI/FlatCAMGUI.py:5030 flatcamGUI/FlatCAMGUI.py:5802
  6678. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:1103
  6679. msgid "Travel Z"
  6680. msgstr "Viagem Z"
  6681. #: flatcamGUI/FlatCAMGUI.py:5032 flatcamGUI/ObjectUI.py:605
  6682. msgid ""
  6683. "Tool height when travelling\n"
  6684. "across the XY plane."
  6685. msgstr ""
  6686. "Altura da ferramenta durante\n"
  6687. "deslocamentos sobre o plano XY."
  6688. #: flatcamGUI/FlatCAMGUI.py:5040 flatcamGUI/FlatCAMGUI.py:5812
  6689. #: flatcamGUI/ObjectUI.py:613 flatcamGUI/ObjectUI.py:1121
  6690. msgid "Tool change"
  6691. msgstr "Troca de ferramentas"
  6692. #: flatcamGUI/FlatCAMGUI.py:5042 flatcamGUI/ObjectUI.py:615
  6693. msgid ""
  6694. "Include tool-change sequence\n"
  6695. "in G-Code (Pause for tool change)."
  6696. msgstr ""
  6697. "Pausa para troca de ferramentas. Inclua a sequência\n"
  6698. "de troca de ferramentas em G-Code (em Trabalho CNC)."
  6699. #: flatcamGUI/FlatCAMGUI.py:5049 flatcamGUI/FlatCAMGUI.py:5824
  6700. msgid "Toolchange Z"
  6701. msgstr "Troca de ferra. Z"
  6702. #: flatcamGUI/FlatCAMGUI.py:5051 flatcamGUI/FlatCAMGUI.py:5827
  6703. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1117
  6704. msgid ""
  6705. "Z-axis position (height) for\n"
  6706. "tool change."
  6707. msgstr "Posição do eixo Z (altura) para a troca de ferramenta."
  6708. #: flatcamGUI/FlatCAMGUI.py:5058 flatcamGUI/ObjectUI.py:652
  6709. msgid "Feedrate (Plunge):"
  6710. msgstr "Avanço (Mergulho):"
  6711. #: flatcamGUI/FlatCAMGUI.py:5060 flatcamGUI/ObjectUI.py:654
  6712. msgid ""
  6713. "Tool speed while drilling\n"
  6714. "(in units per minute).\n"
  6715. "This is for linear move G01."
  6716. msgstr ""
  6717. "Velocidade da ferramenta durante a perfuração\n"
  6718. "(em unidades por minuto).\n"
  6719. "Para movimento linear G01."
  6720. #: flatcamGUI/FlatCAMGUI.py:5069
  6721. msgid "Spindle Speed"
  6722. msgstr "Velocidade do Spindle"
  6723. #: flatcamGUI/FlatCAMGUI.py:5071 flatcamGUI/ObjectUI.py:681
  6724. msgid ""
  6725. "Speed of the spindle\n"
  6726. "in RPM (optional)"
  6727. msgstr ""
  6728. "Velocidade do spindle\n"
  6729. "em RPM (opcional)"
  6730. #: flatcamGUI/FlatCAMGUI.py:5079 flatcamGUI/FlatCAMGUI.py:5870
  6731. msgid "Spindle dir."
  6732. msgstr "Sentido de Rotação"
  6733. #: flatcamGUI/FlatCAMGUI.py:5081 flatcamGUI/FlatCAMGUI.py:5872
  6734. msgid ""
  6735. "This sets the direction that the spindle is rotating.\n"
  6736. "It can be either:\n"
  6737. "- CW = clockwise or\n"
  6738. "- CCW = counter clockwise"
  6739. msgstr ""
  6740. "Define o sentido de rotação do spindle.\n"
  6741. "Pode ser:\n"
  6742. "- CW = sentido horário ou\n"
  6743. "- CCW = sentido anti-horário"
  6744. #: flatcamGUI/FlatCAMGUI.py:5093 flatcamGUI/FlatCAMGUI.py:5884
  6745. #: flatcamGUI/ObjectUI.py:689 flatcamGUI/ObjectUI.py:1217
  6746. msgid "Dwell"
  6747. msgstr "Esperar Velocidade"
  6748. #: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5886
  6749. #: flatcamGUI/ObjectUI.py:691 flatcamGUI/ObjectUI.py:1220
  6750. msgid ""
  6751. "Pause to allow the spindle to reach its\n"
  6752. "speed before cutting."
  6753. msgstr ""
  6754. "Pausa para permitir que o spindle atinja sua\n"
  6755. "velocidade antes de cortar."
  6756. #: flatcamGUI/FlatCAMGUI.py:5098
  6757. msgid "Duration:"
  6758. msgstr "Tempo de espera:"
  6759. #: flatcamGUI/FlatCAMGUI.py:5100 flatcamGUI/FlatCAMGUI.py:5891
  6760. #: flatcamGUI/ObjectUI.py:696 flatcamGUI/ObjectUI.py:1226
  6761. msgid "Number of time units for spindle to dwell."
  6762. msgstr "Número de unidades de tempo para o fuso residir."
  6763. #: flatcamGUI/FlatCAMGUI.py:5112 flatcamGUI/FlatCAMGUI.py:5901
  6764. #: flatcamGUI/ObjectUI.py:704
  6765. msgid "Postprocessor"
  6766. msgstr "Pós-processador"
  6767. #: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/ObjectUI.py:706
  6768. msgid ""
  6769. "The postprocessor JSON file that dictates\n"
  6770. "Gcode output."
  6771. msgstr ""
  6772. "O arquivo JSON do pós-processador que dita\n"
  6773. "Saída Gcode."
  6774. #: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:745
  6775. msgid "Gcode"
  6776. msgstr "Gcode"
  6777. #: flatcamGUI/FlatCAMGUI.py:5125
  6778. msgid ""
  6779. "Choose what to use for GCode generation:\n"
  6780. "'Drills', 'Slots' or 'Both'.\n"
  6781. "When choosing 'Slots' or 'Both', slots will be\n"
  6782. "converted to drills."
  6783. msgstr ""
  6784. "Escolha o que usar para a geração de G-Code:\n"
  6785. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  6786. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  6787. "convertidos para brocas."
  6788. #: flatcamGUI/FlatCAMGUI.py:5141 flatcamGUI/ObjectUI.py:769
  6789. msgid "Mill Holes"
  6790. msgstr "Fresar Furos"
  6791. #: flatcamGUI/FlatCAMGUI.py:5143 flatcamGUI/ObjectUI.py:771
  6792. msgid "Create Geometry for milling holes."
  6793. msgstr "Cria geometria para furos de fresamento."
  6794. #: flatcamGUI/FlatCAMGUI.py:5147 flatcamGUI/ObjectUI.py:783
  6795. msgid "Drill Tool dia"
  6796. msgstr "Diâ. da Broca:"
  6797. #: flatcamGUI/FlatCAMGUI.py:5154 flatcamGUI/ObjectUI.py:799
  6798. msgid "Slot Tool dia"
  6799. msgstr "Diâ. da Fresa"
  6800. #: flatcamGUI/FlatCAMGUI.py:5156 flatcamGUI/ObjectUI.py:801
  6801. msgid ""
  6802. "Diameter of the cutting tool\n"
  6803. "when milling slots."
  6804. msgstr ""
  6805. "Diâmetro da ferramenta de corte\n"
  6806. "quando fresar fendas (ranhuras)."
  6807. #: flatcamGUI/FlatCAMGUI.py:5168
  6808. msgid "Defaults"
  6809. msgstr "Padrões"
  6810. #: flatcamGUI/FlatCAMGUI.py:5181
  6811. msgid "Excellon Adv. Options"
  6812. msgstr "Opções Avançadas Excellon"
  6813. #: flatcamGUI/FlatCAMGUI.py:5187 flatcamGUI/FlatCAMGUI.py:5924
  6814. msgid "Advanced Options"
  6815. msgstr "Opções Avançadas"
  6816. #: flatcamGUI/FlatCAMGUI.py:5189
  6817. msgid ""
  6818. "Parameters used to create a CNC Job object\n"
  6819. "for this drill object that are shown when App Level is Advanced."
  6820. msgstr ""
  6821. "Parâmetros usados para criar um objeto de Trabalho CNC\n"
  6822. "para furação que são mostrados quando o nível do aplicativo for Avançado."
  6823. #: flatcamGUI/FlatCAMGUI.py:5197 flatcamGUI/ObjectUI.py:555
  6824. msgid "Offset Z"
  6825. msgstr "Deslocamento Z"
  6826. #: flatcamGUI/FlatCAMGUI.py:5199 flatcamGUI/ObjectUI.py:572
  6827. msgid ""
  6828. "Some drill bits (the larger ones) need to drill deeper\n"
  6829. "to create the desired exit hole diameter due of the tip shape.\n"
  6830. "The value here can compensate the Cut Z parameter."
  6831. msgstr ""
  6832. "Algumas brocas (as maiores) precisam perfurar mais profundamente\n"
  6833. "para criar o diâmetro desejado do orifício de saída devido à forma da "
  6834. "ponta.\n"
  6835. "Este valor pode compensar o parâmetro Profundidade de Corte Z."
  6836. #: flatcamGUI/FlatCAMGUI.py:5206
  6837. msgid "Toolchange X,Y"
  6838. msgstr "Troca de ferra.s X,Y"
  6839. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/FlatCAMGUI.py:5937
  6840. msgid "Toolchange X,Y position."
  6841. msgstr "Posição X,Y para troca de ferramentas."
  6842. #: flatcamGUI/FlatCAMGUI.py:5214 flatcamGUI/FlatCAMGUI.py:5944
  6843. #: flatcamGUI/ObjectUI.py:632
  6844. msgid "Start move Z"
  6845. msgstr "Altura Z Inicial"
  6846. #: flatcamGUI/FlatCAMGUI.py:5216 flatcamGUI/ObjectUI.py:634
  6847. msgid ""
  6848. "Height of the tool just after start.\n"
  6849. "Delete the value if you don't need this feature."
  6850. msgstr ""
  6851. "Altura da ferramenta antes de iniciar o trabalho.\n"
  6852. "Exclua o valor se você não precisar deste recurso."
  6853. #: flatcamGUI/FlatCAMGUI.py:5223 flatcamGUI/FlatCAMGUI.py:5954
  6854. #: flatcamGUI/ObjectUI.py:642 flatcamGUI/ObjectUI.py:1147
  6855. msgid "End move Z"
  6856. msgstr "Altura Z Final"
  6857. #: flatcamGUI/FlatCAMGUI.py:5225 flatcamGUI/FlatCAMGUI.py:5956
  6858. #: flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1149
  6859. msgid ""
  6860. "Height of the tool after\n"
  6861. "the last move at the end of the job."
  6862. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  6863. #: flatcamGUI/FlatCAMGUI.py:5232 flatcamGUI/ObjectUI.py:663
  6864. msgid "Feedrate Rapids"
  6865. msgstr "Taxa de Avanço Rápida"
  6866. #: flatcamGUI/FlatCAMGUI.py:5234 flatcamGUI/ObjectUI.py:665
  6867. msgid ""
  6868. "Tool speed while drilling\n"
  6869. "(in units per minute).\n"
  6870. "This is for the rapid move G00.\n"
  6871. "It is useful only for Marlin,\n"
  6872. "ignore for any other cases."
  6873. msgstr ""
  6874. "Velocidade da ferramenta durante a perfuração\n"
  6875. "(em unidades por minuto).\n"
  6876. "Usado para movimento rápido G00.\n"
  6877. "É útil apenas para Marlin. Ignore para outros casos."
  6878. #: flatcamGUI/FlatCAMGUI.py:5245 flatcamGUI/FlatCAMGUI.py:5987
  6879. #: flatcamGUI/ObjectUI.py:715 flatcamGUI/ObjectUI.py:1245
  6880. msgid "Probe Z depth"
  6881. msgstr "Profundidade Z da Sonda"
  6882. #: flatcamGUI/FlatCAMGUI.py:5247 flatcamGUI/FlatCAMGUI.py:5989
  6883. #: flatcamGUI/ObjectUI.py:717 flatcamGUI/ObjectUI.py:1247
  6884. msgid ""
  6885. "The maximum depth that the probe is allowed\n"
  6886. "to probe. Negative value, in current units."
  6887. msgstr ""
  6888. "Profundidade máxima permitida para a sonda.\n"
  6889. "Valor negativo, em unidades atuais."
  6890. #: flatcamGUI/FlatCAMGUI.py:5255 flatcamGUI/FlatCAMGUI.py:5997
  6891. #: flatcamGUI/ObjectUI.py:727 flatcamGUI/ObjectUI.py:1257
  6892. msgid "Feedrate Probe"
  6893. msgstr "Avanço da Sonda"
  6894. #: flatcamGUI/FlatCAMGUI.py:5257 flatcamGUI/FlatCAMGUI.py:5999
  6895. #: flatcamGUI/ObjectUI.py:729 flatcamGUI/ObjectUI.py:1259
  6896. msgid "The feedrate used while the probe is probing."
  6897. msgstr "Velocidade de Avanço usada enquanto a sonda está operando."
  6898. #: flatcamGUI/FlatCAMGUI.py:5263
  6899. msgid "Fast Plunge:"
  6900. msgstr "Mergulho Rápido:"
  6901. #: flatcamGUI/FlatCAMGUI.py:5265 flatcamGUI/FlatCAMGUI.py:6008
  6902. msgid ""
  6903. "By checking this, the vertical move from\n"
  6904. "Z_Toolchange to Z_move is done with G0,\n"
  6905. "meaning the fastest speed available.\n"
  6906. "WARNING: the move is done at Toolchange X,Y coords."
  6907. msgstr ""
  6908. "Ao marcado, o movimento vertical da altura de Troca de\n"
  6909. "Ferramentas para a altura de Deslocamento é feito com G0,\n"
  6910. "na velocidade mais rápida disponível.\n"
  6911. "AVISO: o movimento é feito nas Coordenadas X,Y de troca de ferramentas."
  6912. #: flatcamGUI/FlatCAMGUI.py:5274
  6913. msgid "Fast Retract"
  6914. msgstr "Recolhimento Rápido"
  6915. #: flatcamGUI/FlatCAMGUI.py:5276
  6916. msgid ""
  6917. "Exit hole strategy.\n"
  6918. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6919. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6920. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6921. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6922. "(travel height) is done as fast as possible (G0) in one move."
  6923. msgstr ""
  6924. "Estratégia para sair dos furos.\n"
  6925. "- Quando desmarcado, ao sair do furo, a broca sobe lentamente, com\n"
  6926. " avanço definido (G1), até a profundidade zero e depois some o mais\n"
  6927. " rápido possível (G0) até a altura de deslocamento.\n"
  6928. "- Quando marcado, a subida da profundidade de corte para a altura de\n"
  6929. " deslocamento é feita o mais rápido possível (G0) em um único movimento."
  6930. #: flatcamGUI/FlatCAMGUI.py:5295
  6931. msgid "Excellon Export"
  6932. msgstr "Exportar Excellon"
  6933. #: flatcamGUI/FlatCAMGUI.py:5300
  6934. msgid ""
  6935. "The parameters set here are used in the file exported\n"
  6936. "when using the File -> Export -> Export Excellon menu entry."
  6937. msgstr ""
  6938. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6939. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Excellon."
  6940. #: flatcamGUI/FlatCAMGUI.py:5311 flatcamGUI/FlatCAMGUI.py:5317
  6941. msgid "The units used in the Excellon file."
  6942. msgstr "A unidade usada no arquivo Excellon gerado."
  6943. #: flatcamGUI/FlatCAMGUI.py:5325
  6944. msgid ""
  6945. "The NC drill files, usually named Excellon files\n"
  6946. "are files that can be found in different formats.\n"
  6947. "Here we set the format used when the provided\n"
  6948. "coordinates are not using period."
  6949. msgstr ""
  6950. "Os arquivos com a furação, geralmente chamados de arquivos Excellon\n"
  6951. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6952. "Aqui é definido o formato usado quando as coordenadas\n"
  6953. "fornecidas não usam ponto."
  6954. #: flatcamGUI/FlatCAMGUI.py:5361
  6955. msgid "Format"
  6956. msgstr "Formato"
  6957. #: flatcamGUI/FlatCAMGUI.py:5363 flatcamGUI/FlatCAMGUI.py:5373
  6958. msgid ""
  6959. "Select the kind of coordinates format used.\n"
  6960. "Coordinates can be saved with decimal point or without.\n"
  6961. "When there is no decimal point, it is required to specify\n"
  6962. "the number of digits for integer part and the number of decimals.\n"
  6963. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6964. "or TZ = trailing zeros are kept."
  6965. msgstr ""
  6966. "Selecione o formato de coordenadas a usar.\n"
  6967. "As coordenadas podem ser salvas com ou sem ponto decimal.\n"
  6968. "Quando não há ponto decimal, é necessário especificar\n"
  6969. "o número de dígitos para a parte inteira e o número de casas decimais.\n"
  6970. "Deve ser especificado LZ (manter zeros à esquerda)\n"
  6971. "ou TZ (manter zeros à direita)."
  6972. #: flatcamGUI/FlatCAMGUI.py:5370
  6973. msgid "Decimal"
  6974. msgstr "Decimal"
  6975. #: flatcamGUI/FlatCAMGUI.py:5371
  6976. msgid "No-Decimal"
  6977. msgstr "Não Decimal"
  6978. #: flatcamGUI/FlatCAMGUI.py:5397
  6979. msgid ""
  6980. "This sets the default type of Excellon zeros.\n"
  6981. "If LZ then Leading Zeros are kept and\n"
  6982. "Trailing Zeros are removed.\n"
  6983. "If TZ is checked then Trailing Zeros are kept\n"
  6984. "and Leading Zeros are removed."
  6985. msgstr ""
  6986. "Define o tipo padrão de zeros de Excellon.\n"
  6987. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6988. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6989. #: flatcamGUI/FlatCAMGUI.py:5407
  6990. msgid "Slot type"
  6991. msgstr "Tipo de Ranhura"
  6992. #: flatcamGUI/FlatCAMGUI.py:5410 flatcamGUI/FlatCAMGUI.py:5420
  6993. msgid ""
  6994. "This sets how the slots will be exported.\n"
  6995. "If ROUTED then the slots will be routed\n"
  6996. "using M15/M16 commands.\n"
  6997. "If DRILLED(G85) the slots will be exported\n"
  6998. "using the Drilled slot command (G85)."
  6999. msgstr ""
  7000. "Isso define como os slots serão exportados.\n"
  7001. "Se roteado, os slots serão roteados\n"
  7002. "usando comandos M15 / M16.\n"
  7003. "Se perfurado (G85) os slots serão exportados\n"
  7004. "usando o comando Slot perfurado (G85)."
  7005. #: flatcamGUI/FlatCAMGUI.py:5417
  7006. msgid "Routed"
  7007. msgstr "Roteado"
  7008. #: flatcamGUI/FlatCAMGUI.py:5418
  7009. msgid "Drilled(G85)"
  7010. msgstr "Perfurado (G85)"
  7011. #: flatcamGUI/FlatCAMGUI.py:5450
  7012. msgid "A list of Excellon Editor parameters."
  7013. msgstr "Parâmetros do Editor Excellon."
  7014. #: flatcamGUI/FlatCAMGUI.py:5460
  7015. msgid ""
  7016. "Set the number of selected Excellon geometry\n"
  7017. "items above which the utility geometry\n"
  7018. "becomes just a selection rectangle.\n"
  7019. "Increases the performance when moving a\n"
  7020. "large number of geometric elements."
  7021. msgstr ""
  7022. "Define o número máximo de ítens de geometria Excellon\n"
  7023. "selecionados. Acima desse valor a geometria se torna um\n"
  7024. "retângulo de seleção Aumenta o desempenho ao mover um\n"
  7025. "grande número de elementos geométricos."
  7026. #: flatcamGUI/FlatCAMGUI.py:5472
  7027. msgid "New Tool Dia"
  7028. msgstr "Novo Diâmetro"
  7029. #: flatcamGUI/FlatCAMGUI.py:5484
  7030. msgid "Nr of drills"
  7031. msgstr "Nº de brocas"
  7032. #: flatcamGUI/FlatCAMGUI.py:5495
  7033. msgid "Linear Drill Array"
  7034. msgstr "Matriz Linear de Brocas"
  7035. #: flatcamGUI/FlatCAMGUI.py:5499
  7036. msgid "Linear Dir.:"
  7037. msgstr "Direção:"
  7038. #: flatcamGUI/FlatCAMGUI.py:5515 flatcamGUI/FlatCAMGUI.py:5935
  7039. #, python-format
  7040. msgid "%s:"
  7041. msgstr "%s:"
  7042. #: flatcamGUI/FlatCAMGUI.py:5535
  7043. msgid "Circular Drill Array"
  7044. msgstr "Matriz Circular de Brocas"
  7045. #: flatcamGUI/FlatCAMGUI.py:5563 flatcamGUI/ObjectUI.py:554
  7046. msgid "Slots"
  7047. msgstr "Fendas"
  7048. #: flatcamGUI/FlatCAMGUI.py:5567 flatcamTools/ToolProperties.py:159
  7049. msgid "Length"
  7050. msgstr "Comprimento"
  7051. #: flatcamGUI/FlatCAMGUI.py:5614
  7052. msgid "Linear Slot Array"
  7053. msgstr "Matriz Linear de Ranhuras"
  7054. #: flatcamGUI/FlatCAMGUI.py:5618
  7055. msgid "Nr of slots"
  7056. msgstr "Nº de ranhuras"
  7057. #: flatcamGUI/FlatCAMGUI.py:5666
  7058. msgid "Circular Slot Array"
  7059. msgstr "Matriz Circular de Ranhuras"
  7060. #: flatcamGUI/FlatCAMGUI.py:5700
  7061. msgid "Geometry General"
  7062. msgstr "Geometria Geral"
  7063. #: flatcamGUI/FlatCAMGUI.py:5719
  7064. msgid ""
  7065. "The number of circle steps for <b>Geometry</b> \n"
  7066. "circle and arc shapes linear approximation."
  7067. msgstr ""
  7068. "Número de etapas do círculo para a aproximação linear\n"
  7069. "de Geometria círculo e arco."
  7070. #: flatcamGUI/FlatCAMGUI.py:5747
  7071. msgid "Geometry Options"
  7072. msgstr "Opções de Geometria"
  7073. #: flatcamGUI/FlatCAMGUI.py:5754
  7074. msgid ""
  7075. "Create a CNC Job object\n"
  7076. "tracing the contours of this\n"
  7077. "Geometry object."
  7078. msgstr ""
  7079. "Cria um objeto de Trabalho CNC\n"
  7080. "traçando os contornos deste objeto\n"
  7081. "Geometria."
  7082. #: flatcamGUI/FlatCAMGUI.py:5766 flatcamGUI/ObjectUI.py:1072
  7083. msgid ""
  7084. "Cutting depth (negative)\n"
  7085. "below the copper surface."
  7086. msgstr ""
  7087. "Profundidade de corte (negativo)\n"
  7088. "abaixo da superfície de cobre."
  7089. #: flatcamGUI/FlatCAMGUI.py:5774 flatcamGUI/ObjectUI.py:1081
  7090. msgid "Multi-Depth"
  7091. msgstr "Multi-Profundidade"
  7092. #: flatcamGUI/FlatCAMGUI.py:5777 flatcamGUI/ObjectUI.py:1084
  7093. msgid ""
  7094. "Use multiple passes to limit\n"
  7095. "the cut depth in each pass. Will\n"
  7096. "cut multiple times until Cut Z is\n"
  7097. "reached."
  7098. msgstr ""
  7099. "Use vários passes para limitar\n"
  7100. "a profundidade de corte em cada passagem. Vai\n"
  7101. "cortar várias vezes até o Corte Z é\n"
  7102. "alcançado."
  7103. #: flatcamGUI/FlatCAMGUI.py:5786
  7104. msgid "Depth/Pass"
  7105. msgstr "Profundidade por Passe"
  7106. #: flatcamGUI/FlatCAMGUI.py:5788
  7107. msgid ""
  7108. "The depth to cut on each pass,\n"
  7109. "when multidepth is enabled.\n"
  7110. "It has positive value although\n"
  7111. "it is a fraction from the depth\n"
  7112. "which has negative value."
  7113. msgstr ""
  7114. "A profundidade a ser cortada em cada passe,\n"
  7115. "quando Múltiplas Profundidades estiver ativo.\n"
  7116. "Tem valor positivo, embora seja uma fração\n"
  7117. "da profundidade, que tem valor negativo."
  7118. #: flatcamGUI/FlatCAMGUI.py:5804 flatcamGUI/ObjectUI.py:1105
  7119. msgid ""
  7120. "Height of the tool when\n"
  7121. "moving without cutting."
  7122. msgstr "Altura da ferramenta ao mover sem cortar."
  7123. #: flatcamGUI/FlatCAMGUI.py:5815 flatcamGUI/ObjectUI.py:1124
  7124. msgid ""
  7125. "Include tool-change sequence\n"
  7126. "in the Machine Code (Pause for tool change)."
  7127. msgstr ""
  7128. "Inclua a sequência de troca de ferramentas\n"
  7129. "no Código da Máquina (Pausa para troca de ferramentas)."
  7130. #: flatcamGUI/FlatCAMGUI.py:5836 flatcamGUI/ObjectUI.py:1157
  7131. msgid "Feed Rate X-Y"
  7132. msgstr "Taxa de Avanço X-Y"
  7133. #: flatcamGUI/FlatCAMGUI.py:5838 flatcamGUI/ObjectUI.py:1159
  7134. msgid ""
  7135. "Cutting speed in the XY\n"
  7136. "plane in units per minute"
  7137. msgstr "Velocidade de corte no plano XY em unidades por minuto"
  7138. #: flatcamGUI/FlatCAMGUI.py:5846 flatcamGUI/ObjectUI.py:1167
  7139. msgid "Feed Rate Z"
  7140. msgstr "Taxa de Avanço Z"
  7141. #: flatcamGUI/FlatCAMGUI.py:5848 flatcamGUI/ObjectUI.py:1169
  7142. msgid ""
  7143. "Cutting speed in the XY\n"
  7144. "plane in units per minute.\n"
  7145. "It is called also Plunge."
  7146. msgstr ""
  7147. "Velocidade de corte no plano Z em unidades por minuto.\n"
  7148. "Também é chamado de Mergulho."
  7149. #: flatcamGUI/FlatCAMGUI.py:5857 flatcamGUI/ObjectUI.py:679
  7150. #: flatcamGUI/ObjectUI.py:1204
  7151. msgid "Spindle speed"
  7152. msgstr "Velocidade do Spindle"
  7153. #: flatcamGUI/FlatCAMGUI.py:5860 flatcamGUI/ObjectUI.py:1207
  7154. msgid ""
  7155. "Speed of the spindle in RPM (optional).\n"
  7156. "If LASER postprocessor is used,\n"
  7157. "this value is the power of laser."
  7158. msgstr ""
  7159. "Velocidade do spindle em RPM (opcional).\n"
  7160. "Se o pós-processador LASER é usado,\n"
  7161. "este valor é a potência do laser."
  7162. #: flatcamGUI/FlatCAMGUI.py:5889
  7163. msgid "Duration"
  7164. msgstr "Duração"
  7165. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1236
  7166. msgid ""
  7167. "The Postprocessor file that dictates\n"
  7168. "the Machine Code (like GCode, RML, HPGL) output."
  7169. msgstr ""
  7170. "Arquivo de Pós-processamento que determina o código\n"
  7171. "de máquina de saída(como G-Code, RML, HPGL)."
  7172. #: flatcamGUI/FlatCAMGUI.py:5919
  7173. msgid "Geometry Adv. Options"
  7174. msgstr "Opções Avançadas"
  7175. #: flatcamGUI/FlatCAMGUI.py:5926
  7176. msgid ""
  7177. "Parameters to create a CNC Job object\n"
  7178. "tracing the contours of a Geometry object."
  7179. msgstr ""
  7180. "Parâmetros para criar um objeto de Trabalho CNC\n"
  7181. "traçando os contornos de um objeto Geometria."
  7182. #: flatcamGUI/FlatCAMGUI.py:5946
  7183. msgid ""
  7184. "Height of the tool just after starting the work.\n"
  7185. "Delete the value if you don't need this feature."
  7186. msgstr ""
  7187. "Altura da ferramenta ao iniciar o trabalho.\n"
  7188. "Exclua o valor se você não precisar deste recurso."
  7189. #: flatcamGUI/FlatCAMGUI.py:5964 flatcamGUI/ObjectUI.py:1178
  7190. msgid "Feed Rate Rapids"
  7191. msgstr "Taxa de Avanço Rápido"
  7192. #: flatcamGUI/FlatCAMGUI.py:5966 flatcamGUI/ObjectUI.py:1180
  7193. msgid ""
  7194. "Cutting speed in the XY plane\n"
  7195. "(in units per minute).\n"
  7196. "This is for the rapid move G00.\n"
  7197. "It is useful only for Marlin,\n"
  7198. "ignore for any other cases."
  7199. msgstr ""
  7200. "Velocidade de corte no plano XY (em unidades por minuto).\n"
  7201. "Para o movimento rápido G00.\n"
  7202. "É útil apenas para Marlin, ignore em outros casos."
  7203. #: flatcamGUI/FlatCAMGUI.py:5977 flatcamGUI/ObjectUI.py:1194
  7204. msgid "Re-cut 1st pt."
  7205. msgstr "Re-cortar o primeiro ponto."
  7206. #: flatcamGUI/FlatCAMGUI.py:5979 flatcamGUI/ObjectUI.py:1196
  7207. msgid ""
  7208. "In order to remove possible\n"
  7209. "copper leftovers where first cut\n"
  7210. "meet with last cut, we generate an\n"
  7211. "extended cut over the first cut section."
  7212. msgstr ""
  7213. "Para remover possíveis sobras no ponto de encontro\n"
  7214. "do primeiro com o último corte, gera-se um corte\n"
  7215. "próximo à primeira seção de corte."
  7216. #: flatcamGUI/FlatCAMGUI.py:6006
  7217. msgid "Fast Plunge"
  7218. msgstr "Mergulho Rápido"
  7219. #: flatcamGUI/FlatCAMGUI.py:6018
  7220. msgid "Seg. X size"
  7221. msgstr "Tamanho do Segmento X"
  7222. #: flatcamGUI/FlatCAMGUI.py:6020
  7223. msgid ""
  7224. "The size of the trace segment on the X axis.\n"
  7225. "Useful for auto-leveling.\n"
  7226. "A value of 0 means no segmentation on the X axis."
  7227. msgstr ""
  7228. "O tamanho do segmento de rastreio no eixo X.\n"
  7229. "Útil para nivelamento automático.\n"
  7230. "Valor 0 significa que não há segmentação no eixo X."
  7231. #: flatcamGUI/FlatCAMGUI.py:6029
  7232. msgid "Seg. Y size"
  7233. msgstr "Tamanho do Segmento Y"
  7234. #: flatcamGUI/FlatCAMGUI.py:6031
  7235. msgid ""
  7236. "The size of the trace segment on the Y axis.\n"
  7237. "Useful for auto-leveling.\n"
  7238. "A value of 0 means no segmentation on the Y axis."
  7239. msgstr ""
  7240. "O tamanho do segmento de rastreio no eixo Y.\n"
  7241. "Útil para nivelamento automático.\n"
  7242. "Valor 0 significa que não há segmentação no eixo Y."
  7243. #: flatcamGUI/FlatCAMGUI.py:6047
  7244. msgid "Geometry Editor"
  7245. msgstr "Editor de Geometria"
  7246. #: flatcamGUI/FlatCAMGUI.py:6052
  7247. msgid "A list of Geometry Editor parameters."
  7248. msgstr "Parâmetros do Editor de Geometria."
  7249. #: flatcamGUI/FlatCAMGUI.py:6062
  7250. msgid ""
  7251. "Set the number of selected geometry\n"
  7252. "items above which the utility geometry\n"
  7253. "becomes just a selection rectangle.\n"
  7254. "Increases the performance when moving a\n"
  7255. "large number of geometric elements."
  7256. msgstr ""
  7257. "Define o número máximo de ítens de geometria selecionados.\n"
  7258. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  7259. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  7260. #: flatcamGUI/FlatCAMGUI.py:6081
  7261. msgid "CNC Job General"
  7262. msgstr "Trabalho CNC Geral"
  7263. #: flatcamGUI/FlatCAMGUI.py:6094 flatcamGUI/ObjectUI.py:875
  7264. #: flatcamGUI/ObjectUI.py:1439
  7265. msgid "Plot Object"
  7266. msgstr "Mostrar"
  7267. #: flatcamGUI/FlatCAMGUI.py:6099
  7268. msgid "Plot kind:"
  7269. msgstr "Tipo de Gráfico:"
  7270. #: flatcamGUI/FlatCAMGUI.py:6101 flatcamGUI/ObjectUI.py:1336
  7271. msgid ""
  7272. "This selects the kind of geometries on the canvas to plot.\n"
  7273. "Those can be either of type 'Travel' which means the moves\n"
  7274. "above the work piece or it can be of type 'Cut',\n"
  7275. "which means the moves that cut into the material."
  7276. msgstr ""
  7277. "Seleciona o tipo de geometria mostrada na tela.\n"
  7278. "Pode ser do tipo 'Deslocamento', com os movimentos acima da peça, do\n"
  7279. "tipo 'Corte', com os movimentos cortando o material ou ambos."
  7280. #: flatcamGUI/FlatCAMGUI.py:6109 flatcamGUI/ObjectUI.py:1345
  7281. msgid "Travel"
  7282. msgstr "Desloc."
  7283. #: flatcamGUI/FlatCAMGUI.py:6118 flatcamGUI/ObjectUI.py:1349
  7284. msgid "Display Annotation"
  7285. msgstr "Exibir Anotação"
  7286. #: flatcamGUI/FlatCAMGUI.py:6120 flatcamGUI/ObjectUI.py:1351
  7287. msgid ""
  7288. "This selects if to display text annotation on the plot.\n"
  7289. "When checked it will display numbers in order for each end\n"
  7290. "of a travel line."
  7291. msgstr ""
  7292. "Seleciona se deseja exibir a anotação de texto no gráfico.\n"
  7293. "Quando marcado, exibirá números para cada final\n"
  7294. "de uma linha de deslocamento."
  7295. #: flatcamGUI/FlatCAMGUI.py:6132
  7296. msgid "Annotation Size"
  7297. msgstr "Tamanho da Fonte"
  7298. #: flatcamGUI/FlatCAMGUI.py:6134
  7299. msgid "The font size of the annotation text. In pixels."
  7300. msgstr "O tamanho da fonte do texto de anotação, em pixels."
  7301. #: flatcamGUI/FlatCAMGUI.py:6142
  7302. msgid "Annotation Color"
  7303. msgstr "Cor da Anotação"
  7304. #: flatcamGUI/FlatCAMGUI.py:6144
  7305. msgid "Set the font color for the annotation texts."
  7306. msgstr "Define a cor da fonte para os textos de anotação."
  7307. #: flatcamGUI/FlatCAMGUI.py:6167
  7308. msgid ""
  7309. "The number of circle steps for <b>GCode</b> \n"
  7310. "circle and arc shapes linear approximation."
  7311. msgstr ""
  7312. "O número de etapas de círculo para <b>G-Code</b>.\n"
  7313. "Aproximação linear para círculos e formas de arco."
  7314. #: flatcamGUI/FlatCAMGUI.py:6177
  7315. msgid ""
  7316. "Diameter of the tool to be\n"
  7317. "rendered in the plot."
  7318. msgstr "Diâmetro da ferramenta a ser renderizada no gráfico."
  7319. #: flatcamGUI/FlatCAMGUI.py:6185
  7320. msgid "Coords dec."
  7321. msgstr "Decimais das Coord."
  7322. #: flatcamGUI/FlatCAMGUI.py:6187
  7323. msgid ""
  7324. "The number of decimals to be used for \n"
  7325. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  7326. msgstr ""
  7327. "Número de decimais a ser usado para as coordenadas\n"
  7328. "X, Y, Z no código do CNC (G-Code, etc.)"
  7329. #: flatcamGUI/FlatCAMGUI.py:6195
  7330. msgid "Feedrate dec."
  7331. msgstr "Decimais do Avanço"
  7332. #: flatcamGUI/FlatCAMGUI.py:6197
  7333. msgid ""
  7334. "The number of decimals to be used for \n"
  7335. "the Feedrate parameter in CNC code (GCODE, etc.)"
  7336. msgstr ""
  7337. "O número de decimais a ser usado para o parâmetro\n"
  7338. "Taxa de Avanço no código CNC (G-Code, etc.)"
  7339. #: flatcamGUI/FlatCAMGUI.py:6212
  7340. msgid "CNC Job Options"
  7341. msgstr "Opções de Trabalho CNC"
  7342. #: flatcamGUI/FlatCAMGUI.py:6215
  7343. msgid "Export G-Code"
  7344. msgstr "Exportar G-Code"
  7345. #: flatcamGUI/FlatCAMGUI.py:6217 flatcamGUI/FlatCAMGUI.py:6258
  7346. #: flatcamGUI/ObjectUI.py:1473
  7347. msgid ""
  7348. "Export and save G-Code to\n"
  7349. "make this object to a file."
  7350. msgstr ""
  7351. "Exporta e salva em arquivo\n"
  7352. "o G-Code para fazer este objeto."
  7353. #: flatcamGUI/FlatCAMGUI.py:6223
  7354. msgid "Prepend to G-Code"
  7355. msgstr "Incluir no Início do G-Code"
  7356. #: flatcamGUI/FlatCAMGUI.py:6225 flatcamGUI/ObjectUI.py:1481
  7357. msgid ""
  7358. "Type here any G-Code commands you would\n"
  7359. "like to add at the beginning of the G-Code file."
  7360. msgstr ""
  7361. "Digite aqui os comandos G-Code que você gostaria\n"
  7362. "de adicionar no início do arquivo G-Code gerado."
  7363. #: flatcamGUI/FlatCAMGUI.py:6234
  7364. msgid "Append to G-Code"
  7365. msgstr "Incluir no final do G-Code"
  7366. #: flatcamGUI/FlatCAMGUI.py:6236 flatcamGUI/ObjectUI.py:1492
  7367. msgid ""
  7368. "Type here any G-Code commands you would\n"
  7369. "like to append to the generated file.\n"
  7370. "I.e.: M2 (End of program)"
  7371. msgstr ""
  7372. "Digite aqui os comandos G-Code que você gostaria\n"
  7373. "de adicionar no final do arquivo G-Code gerado.\n"
  7374. "M2 (Fim do programa)"
  7375. #: flatcamGUI/FlatCAMGUI.py:6253
  7376. msgid "CNC Job Adv. Options"
  7377. msgstr "Opções Avançadas"
  7378. #: flatcamGUI/FlatCAMGUI.py:6256 flatcamGUI/ObjectUI.py:1471
  7379. msgid "Export CNC Code"
  7380. msgstr "Exportar Código CNC"
  7381. #: flatcamGUI/FlatCAMGUI.py:6264 flatcamGUI/ObjectUI.py:1509
  7382. msgid "Toolchange G-Code"
  7383. msgstr "G-Code para Troca de Ferra."
  7384. #: flatcamGUI/FlatCAMGUI.py:6267 flatcamGUI/ObjectUI.py:1512
  7385. msgid ""
  7386. "Type here any G-Code commands you would\n"
  7387. "like to be executed when Toolchange event is encountered.\n"
  7388. "This will constitute a Custom Toolchange GCode,\n"
  7389. "or a Toolchange Macro.\n"
  7390. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7391. "\n"
  7392. "WARNING: it can be used only with a postprocessor file\n"
  7393. "that has 'toolchange_custom' in it's name and this is built\n"
  7394. "having as template the 'Toolchange Custom' posprocessor file."
  7395. msgstr ""
  7396. "Digite aqui os comandos do G-Code G que você gostaria de executar quando o "
  7397. "evento do Troca de Ferramentas for encontrado.\n"
  7398. "Ele será um G-Code personalizado para Troca de Ferramentas,\n"
  7399. "ou uma Macro.\n"
  7400. "As variáveis do FlatCAM são circundadas pelo símbolo '%'.\n"
  7401. "\n"
  7402. "ATENÇÃO: pode ser usado apenas com um arquivo de pós-processamento\n"
  7403. "que tenha 'toolchange_custom' em seu nome e este é construído tendo\n"
  7404. "como modelo o arquivo de pós-processamento 'Customização da troca de "
  7405. "ferramentas'."
  7406. #: flatcamGUI/FlatCAMGUI.py:6286 flatcamGUI/ObjectUI.py:1531
  7407. msgid "Use Toolchange Macro"
  7408. msgstr "Usar Macro de Troca de Ferramentas"
  7409. #: flatcamGUI/FlatCAMGUI.py:6288 flatcamGUI/ObjectUI.py:1533
  7410. msgid ""
  7411. "Check this box if you want to use\n"
  7412. "a Custom Toolchange GCode (macro)."
  7413. msgstr ""
  7414. "Marque esta caixa se você quiser usar a macro G-Code para Troca de "
  7415. "Ferramentas."
  7416. #: flatcamGUI/FlatCAMGUI.py:6300 flatcamGUI/ObjectUI.py:1541
  7417. msgid ""
  7418. "A list of the FlatCAM variables that can be used\n"
  7419. "in the Toolchange event.\n"
  7420. "They have to be surrounded by the '%' symbol"
  7421. msgstr ""
  7422. "Uma lista das variáveis FlatCAM que podem ser usadas\n"
  7423. "no evento Troca de Ferramentas.\n"
  7424. "Elas devem estar cercadas pelo símbolo '%'"
  7425. #: flatcamGUI/FlatCAMGUI.py:6310 flatcamGUI/ObjectUI.py:1551
  7426. msgid "FlatCAM CNC parameters"
  7427. msgstr "Parâmetros do FlatCAM CNC"
  7428. #: flatcamGUI/FlatCAMGUI.py:6311 flatcamGUI/ObjectUI.py:1552
  7429. msgid "tool = tool number"
  7430. msgstr "tool = número da ferramenta"
  7431. #: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1553
  7432. msgid "tooldia = tool diameter"
  7433. msgstr "tooldia = diâmetro da ferramenta"
  7434. #: flatcamGUI/FlatCAMGUI.py:6313 flatcamGUI/ObjectUI.py:1554
  7435. msgid "t_drills = for Excellon, total number of drills"
  7436. msgstr "t_drills = para Excellon, número total de brocas"
  7437. #: flatcamGUI/FlatCAMGUI.py:6314 flatcamGUI/ObjectUI.py:1555
  7438. msgid "x_toolchange = X coord for Toolchange"
  7439. msgstr "x_toolchange = coord. X para troca de ferramentas"
  7440. #: flatcamGUI/FlatCAMGUI.py:6315 flatcamGUI/ObjectUI.py:1556
  7441. msgid "y_toolchange = Y coord for Toolchange"
  7442. msgstr "y_toolchange = coord. Y para troca de ferramentas"
  7443. #: flatcamGUI/FlatCAMGUI.py:6316 flatcamGUI/ObjectUI.py:1557
  7444. msgid "z_toolchange = Z coord for Toolchange"
  7445. msgstr "z_toolchange = coord. Z para troca de ferramentas"
  7446. #: flatcamGUI/FlatCAMGUI.py:6317
  7447. msgid "z_cut = Z depth for the cut"
  7448. msgstr "z_cut = profundidade Z para o corte"
  7449. #: flatcamGUI/FlatCAMGUI.py:6318
  7450. msgid "z_move = Z height for travel"
  7451. msgstr "z_move = altura Z para deslocamentos"
  7452. #: flatcamGUI/FlatCAMGUI.py:6319 flatcamGUI/ObjectUI.py:1560
  7453. msgid "z_depthpercut = the step value for multidepth cut"
  7454. msgstr "z_depthpercut = valor do passe para corte múltiplas profundidade"
  7455. #: flatcamGUI/FlatCAMGUI.py:6320 flatcamGUI/ObjectUI.py:1561
  7456. msgid "spindlesspeed = the value for the spindle speed"
  7457. msgstr "spindlesspeed = velocidade do spindle"
  7458. #: flatcamGUI/FlatCAMGUI.py:6322 flatcamGUI/ObjectUI.py:1562
  7459. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  7460. msgstr "dwelltime = tempo de espera para o spindle atingir sua vel. RPM"
  7461. #: flatcamGUI/FlatCAMGUI.py:6343
  7462. msgid "NCC Tool Options"
  7463. msgstr "Opções Área Sem Cobre (NCC)"
  7464. #: flatcamGUI/FlatCAMGUI.py:6348 flatcamGUI/ObjectUI.py:384
  7465. msgid ""
  7466. "Create a Geometry object with\n"
  7467. "toolpaths to cut all non-copper regions."
  7468. msgstr ""
  7469. "Cria um objeto Geometria com caminho de ferramenta\n"
  7470. "para cortar todas as regiões que não são de cobre."
  7471. #: flatcamGUI/FlatCAMGUI.py:6356 flatcamGUI/FlatCAMGUI.py:7211
  7472. msgid "Tools dia"
  7473. msgstr "Diâ. da Ferra."
  7474. #: flatcamGUI/FlatCAMGUI.py:6364 flatcamGUI/FlatCAMGUI.py:6694
  7475. #: flatcamTools/ToolNonCopperClear.py:137 flatcamTools/ToolPaint.py:136
  7476. msgid "Tool order"
  7477. msgstr "Ordem de Ferramenta"
  7478. #: flatcamGUI/FlatCAMGUI.py:6365 flatcamGUI/FlatCAMGUI.py:6375
  7479. #: flatcamGUI/FlatCAMGUI.py:6695 flatcamGUI/FlatCAMGUI.py:6705
  7480. #: flatcamTools/ToolNonCopperClear.py:138
  7481. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:137
  7482. #: flatcamTools/ToolPaint.py:147
  7483. msgid ""
  7484. "This set the way that the tools in the tools table are used.\n"
  7485. "'No' --> means that the used order is the one in the tool table\n"
  7486. "'Forward' --> means that the tools will be ordered from small to big\n"
  7487. "'Reverse' --> menas that the tools will ordered from big to small\n"
  7488. "\n"
  7489. "WARNING: using rest machining will automatically set the order\n"
  7490. "in reverse and disable this control."
  7491. msgstr ""
  7492. "Isso define o modo como as ferramentas na tabela de ferramentas são usadas.\n"
  7493. "'Não' -> significa que a ordem usada é aquela na tabela de ferramentas\n"
  7494. "'Forward' -> significa que as ferramentas serão encomendadas de pequenas a "
  7495. "grandes\n"
  7496. "'Reverso' -> menas que as ferramentas serão encomendadas de grande a "
  7497. "pequena\n"
  7498. "\n"
  7499. "ATENÇÃO: usando a usinagem de descanso irá definir automaticamente a ordem\n"
  7500. "em reverso e desative este controle."
  7501. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/FlatCAMGUI.py:6703
  7502. #: flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:145
  7503. msgid "Forward"
  7504. msgstr "Para frente"
  7505. #: flatcamGUI/FlatCAMGUI.py:6374 flatcamGUI/FlatCAMGUI.py:6704
  7506. #: flatcamTools/ToolNonCopperClear.py:147 flatcamTools/ToolPaint.py:146
  7507. msgid "Reverse"
  7508. msgstr "Reverso"
  7509. #: flatcamGUI/FlatCAMGUI.py:6384 flatcamGUI/FlatCAMGUI.py:6715
  7510. #: flatcamTools/ToolPaint.py:205
  7511. msgid "Overlap Rate"
  7512. msgstr "Taxa de Sobreposição"
  7513. #: flatcamGUI/FlatCAMGUI.py:6386 flatcamTools/ToolNonCopperClear.py:203
  7514. #, python-format
  7515. msgid ""
  7516. "How much (fraction) of the tool width to overlap each tool pass.\n"
  7517. "Example:\n"
  7518. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  7519. "\n"
  7520. "Adjust the value starting with lower values\n"
  7521. "and increasing it if areas that should be cleared are still \n"
  7522. "not cleared.\n"
  7523. "Lower values = faster processing, faster execution on PCB.\n"
  7524. "Higher values = slow processing and slow execution on CNC\n"
  7525. "due of too many paths."
  7526. msgstr ""
  7527. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  7528. "ferramenta.\n"
  7529. "Exemplo:\n"
  7530. "Um valor de 0.25 significa uma sobreposição de 25% do diâmetro da "
  7531. "ferramenta.\n"
  7532. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  7533. "deveria ser limpa não foi limpa.\n"
  7534. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  7535. "Valores maiores = processamento lento e execução lenta no CNC devido\n"
  7536. " ao número de caminhos."
  7537. #: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/FlatCAMGUI.py:6548
  7538. #: flatcamGUI/FlatCAMGUI.py:6732 flatcamTools/ToolNonCopperClear.py:217
  7539. #: flatcamTools/ToolPaint.py:222
  7540. msgid "Margin"
  7541. msgstr "Margem"
  7542. #: flatcamGUI/FlatCAMGUI.py:6402 flatcamTools/ToolNonCopperClear.py:219
  7543. msgid "Bounding box margin."
  7544. msgstr "Margem da caixa delimitadora."
  7545. #: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/FlatCAMGUI.py:6743
  7546. #: flatcamTools/ToolNonCopperClear.py:226 flatcamTools/ToolPaint.py:233
  7547. msgid "Method"
  7548. msgstr "Método"
  7549. #: flatcamGUI/FlatCAMGUI.py:6411 flatcamGUI/FlatCAMGUI.py:6745
  7550. #: flatcamTools/ToolNonCopperClear.py:228 flatcamTools/ToolPaint.py:235
  7551. msgid ""
  7552. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  7553. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  7554. "lines."
  7555. msgstr ""
  7556. "Algoritmo para retirada do cobre:<BR><B>Padrão</B>: passo fixo para dentro. "
  7557. "<BR><B>Baseado em semente</B>: para fora a partir de uma semente."
  7558. "<BR><B>Baseado em linha</B>: linhas paralelas."
  7559. #: flatcamGUI/FlatCAMGUI.py:6425 flatcamGUI/FlatCAMGUI.py:6759
  7560. #: flatcamTools/ToolNonCopperClear.py:242 flatcamTools/ToolPaint.py:249
  7561. msgid "Connect"
  7562. msgstr "Conectar"
  7563. #: flatcamGUI/FlatCAMGUI.py:6434 flatcamGUI/FlatCAMGUI.py:6769
  7564. #: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:258
  7565. msgid "Contour"
  7566. msgstr "Contorno"
  7567. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamTools/ToolNonCopperClear.py:260
  7568. #: flatcamTools/ToolPaint.py:267
  7569. msgid "Rest M."
  7570. msgstr "Maquinagem Restante"
  7571. #: flatcamGUI/FlatCAMGUI.py:6445 flatcamTools/ToolNonCopperClear.py:262
  7572. msgid ""
  7573. "If checked, use 'rest machining'.\n"
  7574. "Basically it will clear copper outside PCB features,\n"
  7575. "using the biggest tool and continue with the next tools,\n"
  7576. "from bigger to smaller, to clear areas of copper that\n"
  7577. "could not be cleared by previous tool, until there is\n"
  7578. "no more copper to clear or there are no more tools.\n"
  7579. "If not checked, use the standard algorithm."
  7580. msgstr ""
  7581. "Se marcada, usa 'usinagem de descanso'.\n"
  7582. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  7583. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  7584. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  7585. "retiradas com a ferramenta anterior.\n"
  7586. "Se não estiver marcada, usa o algoritmo padrão."
  7587. #: flatcamGUI/FlatCAMGUI.py:6460 flatcamGUI/FlatCAMGUI.py:6472
  7588. #: flatcamTools/ToolNonCopperClear.py:277
  7589. #: flatcamTools/ToolNonCopperClear.py:289
  7590. msgid ""
  7591. "If used, it will add an offset to the copper features.\n"
  7592. "The copper clearing will finish to a distance\n"
  7593. "from the copper features.\n"
  7594. "The value can be between 0 and 10 FlatCAM units."
  7595. msgstr ""
  7596. "Se usado, ele adicionará um deslocamento aos recursos de cobre.\n"
  7597. "A clareira de cobre terminará a uma distância\n"
  7598. "dos recursos de cobre.\n"
  7599. "O valor pode estar entre 0 e 10 unidades FlatCAM."
  7600. #: flatcamGUI/FlatCAMGUI.py:6470 flatcamTools/ToolNonCopperClear.py:287
  7601. msgid "Offset value"
  7602. msgstr "Valor de deslocamento"
  7603. #: flatcamGUI/FlatCAMGUI.py:6487 flatcamTools/ToolNonCopperClear.py:313
  7604. msgid "Itself"
  7605. msgstr "Se"
  7606. #: flatcamGUI/FlatCAMGUI.py:6488 flatcamGUI/FlatCAMGUI.py:6791
  7607. msgid "Area"
  7608. msgstr "Área"
  7609. #: flatcamGUI/FlatCAMGUI.py:6489
  7610. #| msgid "Ref."
  7611. msgid "Ref"
  7612. msgstr "Ref"
  7613. #: flatcamGUI/FlatCAMGUI.py:6490
  7614. msgid "Reference"
  7615. msgstr "Referência"
  7616. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamTools/ToolNonCopperClear.py:319
  7617. msgid ""
  7618. "- 'Itself' - the non copper clearing extent\n"
  7619. "is based on the object that is copper cleared.\n"
  7620. " - 'Area Selection' - left mouse click to start selection of the area to be "
  7621. "painted.\n"
  7622. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  7623. "areas.\n"
  7624. "- 'Reference Object' - will do non copper clearing within the area\n"
  7625. "specified by another object."
  7626. msgstr ""
  7627. "- 'Se' - a extensão de limpeza não cobre\n"
  7628. "é baseado no objeto que é cobre limpo.\n"
  7629. "  - 'Seleção de Área' - clique com o botão esquerdo do mouse para iniciar a "
  7630. "seleção da área a ser pintada.\n"
  7631. "Manter uma tecla modificadora pressionada (CTRL ou SHIFT) permitirá "
  7632. "adicionar várias áreas.\n"
  7633. "- 'Objeto de Referência' - fará limpeza não de cobre dentro da área\n"
  7634. "especificado por outro objeto."
  7635. #: flatcamGUI/FlatCAMGUI.py:6510
  7636. msgid "Cutout Tool Options"
  7637. msgstr "Opções da Ferramenta de Recorte"
  7638. #: flatcamGUI/FlatCAMGUI.py:6515 flatcamGUI/ObjectUI.py:400
  7639. msgid ""
  7640. "Create toolpaths to cut around\n"
  7641. "the PCB and separate it from\n"
  7642. "the original board."
  7643. msgstr ""
  7644. "Cria caminhos da ferramenta para cortar\n"
  7645. "o PCB e separá-lo da placa original."
  7646. #: flatcamGUI/FlatCAMGUI.py:6526 flatcamTools/ToolCutOut.py:94
  7647. msgid ""
  7648. "Diameter of the tool used to cutout\n"
  7649. "the PCB shape out of the surrounding material."
  7650. msgstr "Diâmetro da ferramenta usada para cortar o entorno do PCB."
  7651. #: flatcamGUI/FlatCAMGUI.py:6534 flatcamTools/ToolCutOut.py:77
  7652. msgid "Obj kind"
  7653. msgstr "Tipo de obj"
  7654. #: flatcamGUI/FlatCAMGUI.py:6536 flatcamTools/ToolCutOut.py:79
  7655. msgid ""
  7656. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  7657. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  7658. "Gerber object, which is made\n"
  7659. "out of many individual PCB outlines."
  7660. msgstr ""
  7661. "Escolha de qual tipo o objeto que queremos recortar é. <BR>-<B> Single </B>: "
  7662. "contém um único objeto de esboço Gerber PCB. <BR>-<B> Panel </B>: um painel "
  7663. "PCB Gerber objeto, que é feito\n"
  7664. "fora de muitos contornos PCB individuais."
  7665. #: flatcamGUI/FlatCAMGUI.py:6543 flatcamGUI/FlatCAMGUI.py:6790
  7666. #: flatcamTools/ToolCutOut.py:85
  7667. msgid "Single"
  7668. msgstr "Único"
  7669. #: flatcamGUI/FlatCAMGUI.py:6544 flatcamTools/ToolCutOut.py:86
  7670. msgid "Panel"
  7671. msgstr "Painel"
  7672. #: flatcamGUI/FlatCAMGUI.py:6550 flatcamTools/ToolCutOut.py:103
  7673. msgid ""
  7674. "Margin over bounds. A positive value here\n"
  7675. "will make the cutout of the PCB further from\n"
  7676. "the actual PCB border"
  7677. msgstr ""
  7678. "Margem além das bordas. Um valor positivo\n"
  7679. "tornará o recorte do PCB mais longe da borda da PCB"
  7680. #: flatcamGUI/FlatCAMGUI.py:6558
  7681. msgid "Gap size"
  7682. msgstr "Tamanho da Ponte"
  7683. #: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolCutOut.py:113
  7684. msgid ""
  7685. "The size of the bridge gaps in the cutout\n"
  7686. "used to keep the board connected to\n"
  7687. "the surrounding material (the one \n"
  7688. "from which the PCB is cutout)."
  7689. msgstr ""
  7690. "Tamanho das pontes no recorte, utilizadas\n"
  7691. "para manter a placa conectada ao material\n"
  7692. "circundante (de onde o PCB é recortado)."
  7693. #: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolCutOut.py:149
  7694. msgid "Gaps"
  7695. msgstr "Pontes"
  7696. #: flatcamGUI/FlatCAMGUI.py:6571
  7697. msgid ""
  7698. "Number of gaps used for the cutout.\n"
  7699. "There can be maximum 8 bridges/gaps.\n"
  7700. "The choices are:\n"
  7701. "- None - no gaps\n"
  7702. "- lr - left + right\n"
  7703. "- tb - top + bottom\n"
  7704. "- 4 - left + right +top + bottom\n"
  7705. "- 2lr - 2*left + 2*right\n"
  7706. "- 2tb - 2*top + 2*bottom\n"
  7707. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7708. msgstr ""
  7709. "Número de pontes utilizadas para o recorte.\n"
  7710. "Pode haver um máximo de 8 pontes/lacunas.\n"
  7711. "As opções são:\n"
  7712. "- Nenhum - sem lacunas\n"
  7713. "- LR: esquerda + direita\n"
  7714. "- TB: topo + baixo\n"
  7715. "- 4: esquerda + direita + topo + baixo\n"
  7716. "- 2LR: 2*esquerda + 2*direita\n"
  7717. "- 2TB: 2*topo + 2*baixo\n"
  7718. "- 8: 2*esquerda + 2*direita + 2*topo + 2*baixo"
  7719. #: flatcamGUI/FlatCAMGUI.py:6593 flatcamTools/ToolCutOut.py:130
  7720. msgid "Convex Sh."
  7721. msgstr "Forma Convexa"
  7722. #: flatcamGUI/FlatCAMGUI.py:6595 flatcamTools/ToolCutOut.py:132
  7723. msgid ""
  7724. "Create a convex shape surrounding the entire PCB.\n"
  7725. "Used only if the source object type is Gerber."
  7726. msgstr ""
  7727. "Cria uma forma convexa ao redor de toda a PCB.\n"
  7728. "Utilize somente se o tipo de objeto de origem for Gerber."
  7729. #: flatcamGUI/FlatCAMGUI.py:6609
  7730. msgid "2Sided Tool Options"
  7731. msgstr "Opções de PCB 2 Faces"
  7732. #: flatcamGUI/FlatCAMGUI.py:6614
  7733. msgid ""
  7734. "A tool to help in creating a double sided\n"
  7735. "PCB using alignment holes."
  7736. msgstr ""
  7737. "Uma ferramenta para ajudar na criação de um\n"
  7738. "PCB de dupla face usando furos de alinhamento."
  7739. #: flatcamGUI/FlatCAMGUI.py:6624 flatcamTools/ToolDblSided.py:234
  7740. msgid "Drill dia"
  7741. msgstr "Diâ. da Broca"
  7742. #: flatcamGUI/FlatCAMGUI.py:6626 flatcamTools/ToolDblSided.py:225
  7743. #: flatcamTools/ToolDblSided.py:236
  7744. msgid "Diameter of the drill for the alignment holes."
  7745. msgstr "Diâmetro da broca para os furos de alinhamento."
  7746. #: flatcamGUI/FlatCAMGUI.py:6635 flatcamTools/ToolDblSided.py:120
  7747. msgid "Mirror Axis:"
  7748. msgstr "Espelhar Eixo:"
  7749. #: flatcamGUI/FlatCAMGUI.py:6637 flatcamTools/ToolDblSided.py:122
  7750. msgid "Mirror vertically (X) or horizontally (Y)."
  7751. msgstr "Espelha verticalmente (X) ou horizontalmente (Y)."
  7752. #: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolDblSided.py:131
  7753. msgid "Point"
  7754. msgstr "Ponto"
  7755. #: flatcamGUI/FlatCAMGUI.py:6647 flatcamTools/ToolDblSided.py:132
  7756. msgid "Box"
  7757. msgstr "Caixa"
  7758. #: flatcamGUI/FlatCAMGUI.py:6648
  7759. msgid "Axis Ref"
  7760. msgstr "Eixo de Ref."
  7761. #: flatcamGUI/FlatCAMGUI.py:6650 flatcamTools/ToolDblSided.py:135
  7762. msgid ""
  7763. "The axis should pass through a <b>point</b> or cut\n"
  7764. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7765. "the center."
  7766. msgstr ""
  7767. "O eixo deve passar por um <b>ponto</b> ou cortar o centro de uma <b>caixa</"
  7768. "b> especificada (em um objeto FlatCAM)."
  7769. #: flatcamGUI/FlatCAMGUI.py:6666
  7770. msgid "Paint Tool Options"
  7771. msgstr "Opções de Ferramenta de Pintura"
  7772. #: flatcamGUI/FlatCAMGUI.py:6671
  7773. msgid "<b>Parameters:</b>"
  7774. msgstr "<b>Parâmetros:</b>"
  7775. #: flatcamGUI/FlatCAMGUI.py:6673 flatcamGUI/ObjectUI.py:1288
  7776. msgid ""
  7777. "Creates tool paths to cover the\n"
  7778. "whole area of a polygon (remove\n"
  7779. "all copper). You will be asked\n"
  7780. "to click on the desired polygon."
  7781. msgstr ""
  7782. "Cria caminhos de ferramenta para cobrir a área\n"
  7783. "inteira de um polígono (remove todo o cobre).\n"
  7784. "Você será solicitado a clicar no polígono desejado."
  7785. #: flatcamGUI/FlatCAMGUI.py:6779 flatcamTools/ToolPaint.py:282
  7786. msgid "Selection"
  7787. msgstr "Seleção"
  7788. #: flatcamGUI/FlatCAMGUI.py:6781 flatcamTools/ToolPaint.py:300
  7789. msgid ""
  7790. "How to select Polygons to be painted.\n"
  7791. "\n"
  7792. "- 'Area Selection' - left mouse click to start selection of the area to be "
  7793. "painted.\n"
  7794. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  7795. "areas.\n"
  7796. "- 'All Polygons' - the Paint will start after click.\n"
  7797. "- 'Reference Object' - will do non copper clearing within the area\n"
  7798. "specified by another object."
  7799. msgstr ""
  7800. "Como selecionar polígonos a serem pintados.\n"
  7801. "\n"
  7802. "- 'Seleção de Área' - clique com o botão esquerdo do mouse para iniciar a "
  7803. "seleção da área a ser pintada.\n"
  7804. "Manter uma tecla modificadora pressionada (CTRL ou SHIFT) permitirá "
  7805. "adicionar várias áreas.\n"
  7806. "- 'Todos os polígonos' - o Paint será iniciado após o clique.\n"
  7807. "- 'Objeto de Referência' - fará limpeza não de cobre dentro da área\n"
  7808. "especificado por outro objeto."
  7809. #: flatcamGUI/FlatCAMGUI.py:6793
  7810. msgid "Ref."
  7811. msgstr "Ref."
  7812. #: flatcamGUI/FlatCAMGUI.py:6805
  7813. msgid "Film Tool Options"
  7814. msgstr "Opções da Ferramenta de Filme"
  7815. #: flatcamGUI/FlatCAMGUI.py:6810
  7816. msgid ""
  7817. "Create a PCB film from a Gerber or Geometry\n"
  7818. "FlatCAM object.\n"
  7819. "The file is saved in SVG format."
  7820. msgstr ""
  7821. "Cria um filme de PCB a partir de um objeto Gerber\n"
  7822. "ou Geometria FlatCAM.\n"
  7823. "O arquivo é salvo no formato SVG."
  7824. #: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolFilm.py:116
  7825. msgid "Film Type:"
  7826. msgstr "Tipo de Filme:"
  7827. #: flatcamGUI/FlatCAMGUI.py:6823 flatcamTools/ToolFilm.py:118
  7828. msgid ""
  7829. "Generate a Positive black film or a Negative film.\n"
  7830. "Positive means that it will print the features\n"
  7831. "with black on a white canvas.\n"
  7832. "Negative means that it will print the features\n"
  7833. "with white on a black canvas.\n"
  7834. "The Film format is SVG."
  7835. msgstr ""
  7836. "Gera um filme Positivo ou Negativo.\n"
  7837. "Positivo significa que os recursos são impressos\n"
  7838. "em preto em uma tela branca.\n"
  7839. "Negativo significa que os recursos são impressos\n"
  7840. "em branco em uma tela preta.\n"
  7841. "O formato do arquivo do filme é SVG ."
  7842. #: flatcamGUI/FlatCAMGUI.py:6834 flatcamTools/ToolFilm.py:130
  7843. msgid "Border"
  7844. msgstr "Borda"
  7845. #: flatcamGUI/FlatCAMGUI.py:6836 flatcamTools/ToolFilm.py:132
  7846. msgid ""
  7847. "Specify a border around the object.\n"
  7848. "Only for negative film.\n"
  7849. "It helps if we use as a Box Object the same \n"
  7850. "object as in Film Object. It will create a thick\n"
  7851. "black bar around the actual print allowing for a\n"
  7852. "better delimitation of the outline features which are of\n"
  7853. "white color like the rest and which may confound with the\n"
  7854. "surroundings if not for this border."
  7855. msgstr ""
  7856. "Especifica uma borda ao redor do objeto.\n"
  7857. "Somente para filme negativo.\n"
  7858. "Ajuda se for usado como Objeto Caixa o mesmo\n"
  7859. "objeto do Filme. Será criada uma barra preta\n"
  7860. "ao redor da impressão, permitindo uma melhor\n"
  7861. "delimitação dos contornos dos recursos (que são\n"
  7862. "brancos como o restante e podem ser confundidos\n"
  7863. "com os limites, se não for usada essa borda)."
  7864. #: flatcamGUI/FlatCAMGUI.py:6849 flatcamTools/ToolFilm.py:144
  7865. msgid "Scale Stroke"
  7866. msgstr "Espessura da Linha"
  7867. #: flatcamGUI/FlatCAMGUI.py:6851 flatcamTools/ToolFilm.py:146
  7868. msgid ""
  7869. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7870. "It means that the line that envelope each SVG feature will be thicker or "
  7871. "thinner,\n"
  7872. "therefore the fine features may be more affected by this parameter."
  7873. msgstr ""
  7874. "Espessura da linha de cada recurso no arquivo SVG.\n"
  7875. "A linha que envolve cada recurso SVG será mais espessa ou mais fina.\n"
  7876. "Os recursos mais finos podem ser afetados por esse parâmetro."
  7877. #: flatcamGUI/FlatCAMGUI.py:6866
  7878. msgid "Panelize Tool Options"
  7879. msgstr "Opções da Ferramenta Criar Painel"
  7880. #: flatcamGUI/FlatCAMGUI.py:6871
  7881. msgid ""
  7882. "Create an object that contains an array of (x, y) elements,\n"
  7883. "each element is a copy of the source object spaced\n"
  7884. "at a X distance, Y distance of each other."
  7885. msgstr ""
  7886. "Cria um objeto que contém uma matriz de elementos (x, y).\n"
  7887. "Cada elemento é uma cópia do objeto de origem espaçado\n"
  7888. "dos demais por uma distância X, Y."
  7889. #: flatcamGUI/FlatCAMGUI.py:6882 flatcamTools/ToolPanelize.py:147
  7890. msgid "Spacing cols"
  7891. msgstr "Espaço entre Colunas"
  7892. #: flatcamGUI/FlatCAMGUI.py:6884 flatcamTools/ToolPanelize.py:149
  7893. msgid ""
  7894. "Spacing between columns of the desired panel.\n"
  7895. "In current units."
  7896. msgstr ""
  7897. "Espaçamento desejado entre colunas do painel.\n"
  7898. "Nas unidades atuais."
  7899. #: flatcamGUI/FlatCAMGUI.py:6892 flatcamTools/ToolPanelize.py:156
  7900. msgid "Spacing rows"
  7901. msgstr "Espaço entre Linhas"
  7902. #: flatcamGUI/FlatCAMGUI.py:6894 flatcamTools/ToolPanelize.py:158
  7903. msgid ""
  7904. "Spacing between rows of the desired panel.\n"
  7905. "In current units."
  7906. msgstr ""
  7907. "Espaçamento desejado entre linhas do painel.\n"
  7908. "Nas unidades atuais."
  7909. #: flatcamGUI/FlatCAMGUI.py:6902 flatcamTools/ToolPanelize.py:165
  7910. msgid "Columns"
  7911. msgstr "Colunas"
  7912. #: flatcamGUI/FlatCAMGUI.py:6904 flatcamTools/ToolPanelize.py:167
  7913. msgid "Number of columns of the desired panel"
  7914. msgstr "Número de colunas do painel desejado"
  7915. #: flatcamGUI/FlatCAMGUI.py:6911 flatcamTools/ToolPanelize.py:173
  7916. msgid "Rows"
  7917. msgstr "Linhas"
  7918. #: flatcamGUI/FlatCAMGUI.py:6913 flatcamTools/ToolPanelize.py:175
  7919. msgid "Number of rows of the desired panel"
  7920. msgstr "Número de linhas do painel desejado"
  7921. #: flatcamGUI/FlatCAMGUI.py:6919 flatcamTools/ToolPanelize.py:181
  7922. msgid "Gerber"
  7923. msgstr "Gerber"
  7924. #: flatcamGUI/FlatCAMGUI.py:6920 flatcamTools/ToolPanelize.py:182
  7925. msgid "Geo"
  7926. msgstr "Geo"
  7927. #: flatcamGUI/FlatCAMGUI.py:6921 flatcamTools/ToolPanelize.py:183
  7928. msgid "Panel Type"
  7929. msgstr "Tipo de Painel"
  7930. #: flatcamGUI/FlatCAMGUI.py:6923
  7931. msgid ""
  7932. "Choose the type of object for the panel object:\n"
  7933. "- Gerber\n"
  7934. "- Geometry"
  7935. msgstr ""
  7936. "Escolha o tipo de objeto para o painel:\n"
  7937. "- Gerber\n"
  7938. "- Geometria"
  7939. #: flatcamGUI/FlatCAMGUI.py:6932
  7940. msgid "Constrain within"
  7941. msgstr "Restringir dentro de"
  7942. #: flatcamGUI/FlatCAMGUI.py:6934 flatcamTools/ToolPanelize.py:195
  7943. msgid ""
  7944. "Area define by DX and DY within to constrain the panel.\n"
  7945. "DX and DY values are in current units.\n"
  7946. "Regardless of how many columns and rows are desired,\n"
  7947. "the final panel will have as many columns and rows as\n"
  7948. "they fit completely within selected area."
  7949. msgstr ""
  7950. "Área definida por DX e DY para restringir o painel.\n"
  7951. "Os valores DX e DY estão nas unidades atuais.\n"
  7952. "Desde quantas colunas e linhas forem desejadas,\n"
  7953. "o painel final terá tantas colunas e linhas quantas\n"
  7954. "couberem completamente dentro de área selecionada."
  7955. #: flatcamGUI/FlatCAMGUI.py:6943 flatcamTools/ToolPanelize.py:204
  7956. msgid "Width (DX)"
  7957. msgstr "Largura (DX)"
  7958. #: flatcamGUI/FlatCAMGUI.py:6945 flatcamTools/ToolPanelize.py:206
  7959. msgid ""
  7960. "The width (DX) within which the panel must fit.\n"
  7961. "In current units."
  7962. msgstr ""
  7963. "A largura (DX) na qual o painel deve caber.\n"
  7964. "Nas unidades atuais."
  7965. #: flatcamGUI/FlatCAMGUI.py:6952 flatcamTools/ToolPanelize.py:212
  7966. msgid "Height (DY)"
  7967. msgstr "Altura (DY)"
  7968. #: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPanelize.py:214
  7969. msgid ""
  7970. "The height (DY)within which the panel must fit.\n"
  7971. "In current units."
  7972. msgstr ""
  7973. "A altura (DY) na qual o painel deve se ajustar.\n"
  7974. "Nas unidades atuais."
  7975. #: flatcamGUI/FlatCAMGUI.py:6968
  7976. msgid "Calculators Tool Options"
  7977. msgstr "Opções das Calculadoras"
  7978. #: flatcamGUI/FlatCAMGUI.py:6971 flatcamTools/ToolCalculators.py:25
  7979. msgid "V-Shape Tool Calculator"
  7980. msgstr "Calculadora Ferramenta Ponta-em-V"
  7981. #: flatcamGUI/FlatCAMGUI.py:6973
  7982. msgid ""
  7983. "Calculate the tool diameter for a given V-shape tool,\n"
  7984. "having the tip diameter, tip angle and\n"
  7985. "depth-of-cut as parameters."
  7986. msgstr ""
  7987. "Calcula o diâmetro equvalente da ferramenta para uma determinada\n"
  7988. "ferramenta em forma de V, com o diâmetro da ponta, o ângulo da ponta e a\n"
  7989. "profundidade de corte como parâmetros."
  7990. #: flatcamGUI/FlatCAMGUI.py:6984 flatcamTools/ToolCalculators.py:92
  7991. msgid "Tip Diameter"
  7992. msgstr "Diâ. da Ponta"
  7993. #: flatcamGUI/FlatCAMGUI.py:6986 flatcamTools/ToolCalculators.py:97
  7994. msgid ""
  7995. "This is the tool tip diameter.\n"
  7996. "It is specified by manufacturer."
  7997. msgstr ""
  7998. "Diâmetro da ponta da ferramenta.\n"
  7999. "Especificado pelo fabricante."
  8000. #: flatcamGUI/FlatCAMGUI.py:6994 flatcamTools/ToolCalculators.py:100
  8001. msgid "Tip Angle"
  8002. msgstr "Ângulo da Ponta"
  8003. #: flatcamGUI/FlatCAMGUI.py:6996
  8004. msgid ""
  8005. "This is the angle on the tip of the tool.\n"
  8006. "It is specified by manufacturer."
  8007. msgstr ""
  8008. "Ângulo na ponta da ferramenta.\n"
  8009. "Especificado pelo fabricante."
  8010. #: flatcamGUI/FlatCAMGUI.py:7006
  8011. msgid ""
  8012. "This is depth to cut into material.\n"
  8013. "In the CNCJob object it is the CutZ parameter."
  8014. msgstr ""
  8015. "Profundidade para cortar o material.\n"
  8016. "No objeto CNC, é o parâmetro Profundidade de Corte (z_cut)."
  8017. #: flatcamGUI/FlatCAMGUI.py:7013 flatcamTools/ToolCalculators.py:27
  8018. msgid "ElectroPlating Calculator"
  8019. msgstr "Calculadora Eletrolítica"
  8020. #: flatcamGUI/FlatCAMGUI.py:7015 flatcamTools/ToolCalculators.py:149
  8021. msgid ""
  8022. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  8023. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  8024. "chloride."
  8025. msgstr ""
  8026. "Esta calculadora é útil para aqueles que fazem os furos\n"
  8027. "(via/pad/broca) usando um método como tinta grahite ou tinta \n"
  8028. "hipofosfito de cálcio ou cloreto de paládio."
  8029. #: flatcamGUI/FlatCAMGUI.py:7025 flatcamTools/ToolCalculators.py:158
  8030. msgid "Board Length"
  8031. msgstr "Comprimento da Placa"
  8032. #: flatcamGUI/FlatCAMGUI.py:7027 flatcamTools/ToolCalculators.py:162
  8033. msgid "This is the board length. In centimeters."
  8034. msgstr "Comprimento da placa, em centímetros."
  8035. #: flatcamGUI/FlatCAMGUI.py:7033 flatcamTools/ToolCalculators.py:164
  8036. msgid "Board Width"
  8037. msgstr "Largura da Placa"
  8038. #: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolCalculators.py:168
  8039. msgid "This is the board width.In centimeters."
  8040. msgstr "Largura da placa, em centímetros."
  8041. #: flatcamGUI/FlatCAMGUI.py:7040 flatcamTools/ToolCalculators.py:170
  8042. msgid "Current Density"
  8043. msgstr "Densidade de Corrente"
  8044. #: flatcamGUI/FlatCAMGUI.py:7043 flatcamTools/ToolCalculators.py:174
  8045. msgid ""
  8046. "Current density to pass through the board. \n"
  8047. "In Amps per Square Feet ASF."
  8048. msgstr ""
  8049. "Densidade de corrente para passar pela placa.\n"
  8050. "Em Ampères por Pés Quadrados ASF."
  8051. #: flatcamGUI/FlatCAMGUI.py:7049 flatcamTools/ToolCalculators.py:177
  8052. msgid "Copper Growth"
  8053. msgstr "Espessura do Cobre"
  8054. #: flatcamGUI/FlatCAMGUI.py:7052 flatcamTools/ToolCalculators.py:181
  8055. msgid ""
  8056. "How thick the copper growth is intended to be.\n"
  8057. "In microns."
  8058. msgstr "Espessura da camada de cobre, em microns."
  8059. #: flatcamGUI/FlatCAMGUI.py:7065
  8060. msgid "Transform Tool Options"
  8061. msgstr "Opções Transformações"
  8062. #: flatcamGUI/FlatCAMGUI.py:7070
  8063. msgid ""
  8064. "Various transformations that can be applied\n"
  8065. "on a FlatCAM object."
  8066. msgstr ""
  8067. "Várias transformações que podem ser aplicadas\n"
  8068. "a um objeto FlatCAM."
  8069. #: flatcamGUI/FlatCAMGUI.py:7080
  8070. msgid "Rotate Angle"
  8071. msgstr "Ângulo de Giro"
  8072. #: flatcamGUI/FlatCAMGUI.py:7092 flatcamTools/ToolTransform.py:107
  8073. msgid "Skew_X angle"
  8074. msgstr "Ângulo de Inclinação X"
  8075. #: flatcamGUI/FlatCAMGUI.py:7102 flatcamTools/ToolTransform.py:125
  8076. msgid "Skew_Y angle"
  8077. msgstr "Ângulo de Inclinação Y"
  8078. #: flatcamGUI/FlatCAMGUI.py:7112 flatcamTools/ToolTransform.py:164
  8079. msgid "Scale_X factor"
  8080. msgstr "Fator de Escala X"
  8081. #: flatcamGUI/FlatCAMGUI.py:7114 flatcamTools/ToolTransform.py:166
  8082. msgid "Factor for scaling on X axis."
  8083. msgstr "Fator para redimensionamento no eixo X."
  8084. #: flatcamGUI/FlatCAMGUI.py:7121 flatcamTools/ToolTransform.py:181
  8085. msgid "Scale_Y factor"
  8086. msgstr "Fator de Escala Y"
  8087. #: flatcamGUI/FlatCAMGUI.py:7123 flatcamTools/ToolTransform.py:183
  8088. msgid "Factor for scaling on Y axis."
  8089. msgstr "Fator para redimensionamento no eixo Y."
  8090. #: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolTransform.py:202
  8091. msgid ""
  8092. "Scale the selected object(s)\n"
  8093. "using the Scale_X factor for both axis."
  8094. msgstr ""
  8095. "Redimensiona o(s) objeto(s) selecionado(s)\n"
  8096. "usando o Fator de Escala X para ambos os eixos."
  8097. #: flatcamGUI/FlatCAMGUI.py:7139 flatcamTools/ToolTransform.py:211
  8098. msgid ""
  8099. "Scale the selected object(s)\n"
  8100. "using the origin reference when checked,\n"
  8101. "and the center of the biggest bounding box\n"
  8102. "of the selected objects when unchecked."
  8103. msgstr ""
  8104. "Redimensiona o(s) objeto(s) selecionado(s) usando a referência\n"
  8105. "de origem quando marcado, e o centro da maior caixa delimitadora\n"
  8106. "do objeto selecionado quando desmarcado."
  8107. #: flatcamGUI/FlatCAMGUI.py:7148 flatcamTools/ToolTransform.py:239
  8108. msgid "Offset_X val"
  8109. msgstr "Deslocamento X"
  8110. #: flatcamGUI/FlatCAMGUI.py:7150 flatcamTools/ToolTransform.py:241
  8111. msgid "Distance to offset on X axis. In current units."
  8112. msgstr "Distância para deslocar no eixo X, nas unidades atuais."
  8113. #: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolTransform.py:256
  8114. msgid "Offset_Y val"
  8115. msgstr "Deslocamento Y"
  8116. #: flatcamGUI/FlatCAMGUI.py:7159 flatcamTools/ToolTransform.py:258
  8117. msgid "Distance to offset on Y axis. In current units."
  8118. msgstr "Distância para deslocar no eixo Y, nas unidades atuais."
  8119. #: flatcamGUI/FlatCAMGUI.py:7165 flatcamTools/ToolTransform.py:313
  8120. msgid "Mirror Reference"
  8121. msgstr "Referência de Espelho"
  8122. #: flatcamGUI/FlatCAMGUI.py:7167 flatcamTools/ToolTransform.py:315
  8123. msgid ""
  8124. "Flip the selected object(s)\n"
  8125. "around the point in Point Entry Field.\n"
  8126. "\n"
  8127. "The point coordinates can be captured by\n"
  8128. "left click on canvas together with pressing\n"
  8129. "SHIFT key. \n"
  8130. "Then click Add button to insert coordinates.\n"
  8131. "Or enter the coords in format (x, y) in the\n"
  8132. "Point Entry field and click Flip on X(Y)"
  8133. msgstr ""
  8134. "Espelha o(s) objeto(s) selecionado(s)\n"
  8135. "em relação às coordenadas abaixo. \n"
  8136. "\n"
  8137. "As coordenadas do ponto podem ser inseridas:\n"
  8138. "- com clique no botão esquerdo junto com a tecla\n"
  8139. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  8140. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  8141. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  8142. #: flatcamGUI/FlatCAMGUI.py:7178 flatcamTools/ToolTransform.py:326
  8143. msgid " Mirror Ref. Point"
  8144. msgstr "Ponto Ref. Espelho"
  8145. #: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolTransform.py:328
  8146. msgid ""
  8147. "Coordinates in format (x, y) used as reference for mirroring.\n"
  8148. "The 'x' in (x, y) will be used when using Flip on X and\n"
  8149. "the 'y' in (x, y) will be used when using Flip on Y and"
  8150. msgstr ""
  8151. "Coordenadas no formato (x, y) usadas como referência para espelhamento.\n"
  8152. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  8153. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  8154. #: flatcamGUI/FlatCAMGUI.py:7197
  8155. msgid "SolderPaste Tool Options"
  8156. msgstr "Opções da Ferramenta Pasta de Solda"
  8157. #: flatcamGUI/FlatCAMGUI.py:7202
  8158. msgid ""
  8159. "A tool to create GCode for dispensing\n"
  8160. "solder paste onto a PCB."
  8161. msgstr ""
  8162. "Uma ferramenta para criar G-Code para dispensar pasta\n"
  8163. "de solda em um PCB."
  8164. #: flatcamGUI/FlatCAMGUI.py:7213
  8165. msgid "Diameters of nozzle tools, separated by ','"
  8166. msgstr "Diâmetros dos bicos, separados por ','"
  8167. #: flatcamGUI/FlatCAMGUI.py:7220
  8168. msgid "New Nozzle Dia"
  8169. msgstr "Diâ. do Novo Bico"
  8170. #: flatcamGUI/FlatCAMGUI.py:7222 flatcamTools/ToolSolderPaste.py:103
  8171. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  8172. msgstr ""
  8173. "Diâmetro da nova ferramenta Bico para adicionar na tabela de ferramentas"
  8174. #: flatcamGUI/FlatCAMGUI.py:7230 flatcamTools/ToolSolderPaste.py:166
  8175. msgid "Z Dispense Start"
  8176. msgstr "Altura Inicial"
  8177. #: flatcamGUI/FlatCAMGUI.py:7232 flatcamTools/ToolSolderPaste.py:168
  8178. msgid "The height (Z) when solder paste dispensing starts."
  8179. msgstr "A altura (Z) que inicia a distribuição de pasta de solda."
  8180. #: flatcamGUI/FlatCAMGUI.py:7239 flatcamTools/ToolSolderPaste.py:174
  8181. msgid "Z Dispense"
  8182. msgstr "Altura para Distribuir"
  8183. #: flatcamGUI/FlatCAMGUI.py:7241 flatcamTools/ToolSolderPaste.py:176
  8184. msgid "The height (Z) when doing solder paste dispensing."
  8185. msgstr "Altura (Z) para distribuir a pasta de solda."
  8186. #: flatcamGUI/FlatCAMGUI.py:7248 flatcamTools/ToolSolderPaste.py:182
  8187. msgid "Z Dispense Stop"
  8188. msgstr "Altura Final"
  8189. #: flatcamGUI/FlatCAMGUI.py:7250 flatcamTools/ToolSolderPaste.py:184
  8190. msgid "The height (Z) when solder paste dispensing stops."
  8191. msgstr "Altura (Z) após a distribuição de pasta de solda."
  8192. #: flatcamGUI/FlatCAMGUI.py:7257 flatcamTools/ToolSolderPaste.py:190
  8193. msgid "Z Travel"
  8194. msgstr "Altura para Deslocamento"
  8195. #: flatcamGUI/FlatCAMGUI.py:7259 flatcamTools/ToolSolderPaste.py:192
  8196. msgid ""
  8197. "The height (Z) for travel between pads\n"
  8198. "(without dispensing solder paste)."
  8199. msgstr ""
  8200. "Altura (Z) para deslocamento entre pads\n"
  8201. "(sem dispensar pasta de solda)."
  8202. #: flatcamGUI/FlatCAMGUI.py:7267 flatcamTools/ToolSolderPaste.py:199
  8203. msgid "Z Toolchange"
  8204. msgstr "Altura Troca de Ferram."
  8205. #: flatcamGUI/FlatCAMGUI.py:7269 flatcamTools/ToolSolderPaste.py:201
  8206. msgid "The height (Z) for tool (nozzle) change."
  8207. msgstr "Altura (Z) para trocar ferramenta (bico)."
  8208. #: flatcamGUI/FlatCAMGUI.py:7276 flatcamTools/ToolSolderPaste.py:207
  8209. msgid "Toolchange X-Y"
  8210. msgstr "Troca de ferra. X-Y"
  8211. #: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolSolderPaste.py:209
  8212. msgid ""
  8213. "The X,Y location for tool (nozzle) change.\n"
  8214. "The format is (x, y) where x and y are real numbers."
  8215. msgstr ""
  8216. "Posição X,Y para trocar ferramenta (bico).\n"
  8217. "O formato é (x, y) onde x e y são números reais."
  8218. #: flatcamGUI/FlatCAMGUI.py:7286 flatcamTools/ToolSolderPaste.py:216
  8219. msgid "Feedrate X-Y"
  8220. msgstr "Avanço X-Y"
  8221. #: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolSolderPaste.py:218
  8222. msgid "Feedrate (speed) while moving on the X-Y plane."
  8223. msgstr "Avanço (velocidade) para movimento no plano XY."
  8224. #: flatcamGUI/FlatCAMGUI.py:7295 flatcamTools/ToolSolderPaste.py:224
  8225. msgid "Feedrate Z"
  8226. msgstr "Avanço Z"
  8227. #: flatcamGUI/FlatCAMGUI.py:7297 flatcamTools/ToolSolderPaste.py:226
  8228. msgid ""
  8229. "Feedrate (speed) while moving vertically\n"
  8230. "(on Z plane)."
  8231. msgstr ""
  8232. "Avanço (velocidade) para movimento vertical\n"
  8233. "(no plano Z)."
  8234. #: flatcamGUI/FlatCAMGUI.py:7305 flatcamTools/ToolSolderPaste.py:233
  8235. msgid "Feedrate Z Dispense"
  8236. msgstr "Avanço Z Distribuição"
  8237. #: flatcamGUI/FlatCAMGUI.py:7307
  8238. msgid ""
  8239. "Feedrate (speed) while moving up vertically\n"
  8240. "to Dispense position (on Z plane)."
  8241. msgstr ""
  8242. "Avanço (velocidade) para subir verticalmente\n"
  8243. "para a posição Dispensar (no plano Z)."
  8244. #: flatcamGUI/FlatCAMGUI.py:7315 flatcamTools/ToolSolderPaste.py:242
  8245. msgid "Spindle Speed FWD"
  8246. msgstr "Velocidade Spindle FWD"
  8247. #: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolSolderPaste.py:244
  8248. msgid ""
  8249. "The dispenser speed while pushing solder paste\n"
  8250. "through the dispenser nozzle."
  8251. msgstr ""
  8252. "A velocidade do dispensador ao empurrar a pasta de solda\n"
  8253. "através do bico do distribuidor."
  8254. #: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolSolderPaste.py:251
  8255. msgid "Dwell FWD"
  8256. msgstr "Espera FWD"
  8257. #: flatcamGUI/FlatCAMGUI.py:7327 flatcamTools/ToolSolderPaste.py:253
  8258. msgid "Pause after solder dispensing."
  8259. msgstr "Pausa após a dispensação de solda."
  8260. #: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolSolderPaste.py:259
  8261. msgid "Spindle Speed REV"
  8262. msgstr "Velocidade Spindle REV"
  8263. #: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolSolderPaste.py:261
  8264. msgid ""
  8265. "The dispenser speed while retracting solder paste\n"
  8266. "through the dispenser nozzle."
  8267. msgstr ""
  8268. "A velocidade do dispensador enquanto retrai a pasta de solda\n"
  8269. "através do bico do dispensador."
  8270. #: flatcamGUI/FlatCAMGUI.py:7344 flatcamTools/ToolSolderPaste.py:268
  8271. msgid "Dwell REV"
  8272. msgstr "Espera REV"
  8273. #: flatcamGUI/FlatCAMGUI.py:7346 flatcamTools/ToolSolderPaste.py:270
  8274. msgid ""
  8275. "Pause after solder paste dispenser retracted,\n"
  8276. "to allow pressure equilibrium."
  8277. msgstr ""
  8278. "Pausa após o dispensador de pasta de solda retrair, para permitir o "
  8279. "equilíbrio de pressão."
  8280. #: flatcamGUI/FlatCAMGUI.py:7353 flatcamGUI/ObjectUI.py:1234
  8281. #: flatcamTools/ToolSolderPaste.py:276
  8282. msgid "PostProcessor"
  8283. msgstr "Pós-processador"
  8284. #: flatcamGUI/FlatCAMGUI.py:7355 flatcamTools/ToolSolderPaste.py:278
  8285. msgid "Files that control the GCode generation."
  8286. msgstr "Arquivos que controlam a geração de G-Code."
  8287. #: flatcamGUI/FlatCAMGUI.py:7370
  8288. msgid "Substractor Tool Options"
  8289. msgstr "Opções das ferramenta Substractor"
  8290. #: flatcamGUI/FlatCAMGUI.py:7375
  8291. msgid ""
  8292. "A tool to substract one Gerber or Geometry object\n"
  8293. "from another of the same type."
  8294. msgstr ""
  8295. "Uma ferramenta para subtrair um objeto Gerber ou Geometry\n"
  8296. "de outro do mesmo tipo."
  8297. #: flatcamGUI/FlatCAMGUI.py:7380 flatcamTools/ToolSub.py:135
  8298. msgid "Close paths"
  8299. msgstr "Fechar caminhos"
  8300. #: flatcamGUI/FlatCAMGUI.py:7381 flatcamTools/ToolSub.py:136
  8301. msgid ""
  8302. "Checking this will close the paths cut by the Geometry substractor object."
  8303. msgstr ""
  8304. "Marcar isso fechará os caminhos cortados pelo objeto substractor Geometry."
  8305. #: flatcamGUI/FlatCAMGUI.py:7407 flatcamGUI/FlatCAMGUI.py:7413
  8306. msgid "Idle."
  8307. msgstr "Ocioso."
  8308. #: flatcamGUI/FlatCAMGUI.py:7437
  8309. msgid "Application started ..."
  8310. msgstr "Aplicativo iniciado ..."
  8311. #: flatcamGUI/FlatCAMGUI.py:7438
  8312. msgid "Hello!"
  8313. msgstr "Olá!"
  8314. #: flatcamGUI/ObjectUI.py:33
  8315. msgid "FlatCAM Object"
  8316. msgstr "Objeto FlatCAM"
  8317. #: flatcamGUI/ObjectUI.py:58
  8318. msgid ""
  8319. "BASIC is suitable for a beginner. Many parameters\n"
  8320. "are hidden from the user in this mode.\n"
  8321. "ADVANCED mode will make available all parameters.\n"
  8322. "\n"
  8323. "To change the application LEVEL, go to:\n"
  8324. "Edit -> Preferences -> General and check:\n"
  8325. "'APP. LEVEL' radio button."
  8326. msgstr ""
  8327. "BÁSICO é adequado para um iniciante. Muitos parâmetros\n"
  8328. " estão ocultos do usuário neste modo.\n"
  8329. "O modo AVANÇADO disponibilizará todos os parâmetros.\n"
  8330. "\n"
  8331. "Para alterar o NÍVEL do aplicativo, vá para:\n"
  8332. "Editar -> Preferências -> Geral e verificar\n"
  8333. "o botão de rádio 'Nível do Aplicativo\"."
  8334. #: flatcamGUI/ObjectUI.py:81
  8335. msgid "Change the size of the object."
  8336. msgstr "Altera o tamanho do objeto."
  8337. #: flatcamGUI/ObjectUI.py:89
  8338. msgid "Factor"
  8339. msgstr "Fator"
  8340. #: flatcamGUI/ObjectUI.py:91
  8341. msgid ""
  8342. "Factor by which to multiply\n"
  8343. "geometric features of this object."
  8344. msgstr ""
  8345. "Fator pelo qual multiplicar recursos\n"
  8346. "geométricos deste objeto."
  8347. #: flatcamGUI/ObjectUI.py:102
  8348. msgid "Perform scaling operation."
  8349. msgstr "Realiza a operação de dimensionamento."
  8350. #: flatcamGUI/ObjectUI.py:110
  8351. msgid "Change the position of this object."
  8352. msgstr "Altera a posição deste objeto."
  8353. #: flatcamGUI/ObjectUI.py:117
  8354. msgid "Vector"
  8355. msgstr "Vetor"
  8356. #: flatcamGUI/ObjectUI.py:119
  8357. msgid ""
  8358. "Amount by which to move the object\n"
  8359. "in the x and y axes in (x, y) format."
  8360. msgstr ""
  8361. "Quanto mover o objeto\n"
  8362. "nos eixos x e y no formato (x, y)."
  8363. #: flatcamGUI/ObjectUI.py:129
  8364. msgid "Perform the offset operation."
  8365. msgstr "Executa a operação de deslocamento."
  8366. #: flatcamGUI/ObjectUI.py:143
  8367. msgid "Gerber Object"
  8368. msgstr "Objeto Gerber"
  8369. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:515
  8370. #: flatcamGUI/ObjectUI.py:837 flatcamGUI/ObjectUI.py:1361
  8371. msgid "Name"
  8372. msgstr "Nome"
  8373. #: flatcamGUI/ObjectUI.py:203
  8374. msgid ""
  8375. "Toggle the display of the Gerber Apertures Table.\n"
  8376. "When unchecked, it will delete all mark shapes\n"
  8377. "that are drawn on canvas."
  8378. msgstr ""
  8379. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  8380. "Quando desmarcada, serão excluídas todas as formas de marcas\n"
  8381. "desenhadas na tela."
  8382. #: flatcamGUI/ObjectUI.py:213
  8383. msgid "Mark All"
  8384. msgstr "Marcar Todos"
  8385. #: flatcamGUI/ObjectUI.py:215
  8386. msgid ""
  8387. "When checked it will display all the apertures.\n"
  8388. "When unchecked, it will delete all mark shapes\n"
  8389. "that are drawn on canvas."
  8390. msgstr ""
  8391. "Quando marcado, serão mostradas todas as aberturas.\n"
  8392. "Quando desmarcado, serão apagadas todas as formas de marcas\n"
  8393. "desenhadas na tela."
  8394. #: flatcamGUI/ObjectUI.py:243
  8395. msgid "Mark the aperture instances on canvas."
  8396. msgstr "Marque as instâncias de abertura na tela."
  8397. #: flatcamGUI/ObjectUI.py:261
  8398. msgid ""
  8399. "Diameter of the cutting tool.\n"
  8400. "If you want to have an isolation path\n"
  8401. "inside the actual shape of the Gerber\n"
  8402. "feature, use a negative value for\n"
  8403. "this parameter."
  8404. msgstr ""
  8405. "Diâmetro da ferramenta de corte.\n"
  8406. "Se desejar ter um caminho de isolação dentro da forma\n"
  8407. "atual do recurso Gerber, use um valor negativo para\n"
  8408. "este parâmetro."
  8409. #: flatcamGUI/ObjectUI.py:323
  8410. msgid "Generate Isolation Geometry"
  8411. msgstr "Gerar Geometria de Isolação"
  8412. #: flatcamGUI/ObjectUI.py:325
  8413. msgid ""
  8414. "Create a Geometry object with toolpaths to cut \n"
  8415. "isolation outside, inside or on both sides of the\n"
  8416. "object. For a Gerber object outside means outside\n"
  8417. "of the Gerber feature and inside means inside of\n"
  8418. "the Gerber feature, if possible at all. This means\n"
  8419. "that only if the Gerber feature has openings inside, they\n"
  8420. "will be isolated. If what is wanted is to cut isolation\n"
  8421. "inside the actual Gerber feature, use a negative tool\n"
  8422. "diameter above."
  8423. msgstr ""
  8424. "Cria um objeto Geometria com caminhos da ferramenta para\n"
  8425. "cortar a isolação por fora, por dentro ou em ambos os lados\n"
  8426. "do objeto. Para um objeto Gerber externo significa por fora\n"
  8427. "do recurso Gerber e interno significa por dentro do recurso\n"
  8428. "Gerber, se possível. Isso significa que somente se o recurso\n"
  8429. "Gerber tiver aberturas internas, elas serão isoladas. Se o\n"
  8430. "desejado é cortar a isolação dentro do recurso Gerber, use uma\n"
  8431. "ferramenta negativa diâmetro acima."
  8432. #: flatcamGUI/ObjectUI.py:344
  8433. msgid "FULL Geo"
  8434. msgstr "Geo COMPLETO"
  8435. #: flatcamGUI/ObjectUI.py:346
  8436. msgid ""
  8437. "Create the Geometry Object\n"
  8438. "for isolation routing. It contains both\n"
  8439. "the interiors and exteriors geometry."
  8440. msgstr ""
  8441. "Cria o Objeto de Geometria para o roteamento\n"
  8442. "de isolação. Contém tanto a geometria interna\n"
  8443. "quanto a externa."
  8444. #: flatcamGUI/ObjectUI.py:355
  8445. msgid "Ext Geo"
  8446. msgstr "Geo Ext"
  8447. #: flatcamGUI/ObjectUI.py:357
  8448. msgid ""
  8449. "Create the Geometry Object\n"
  8450. "for isolation routing containing\n"
  8451. "only the exteriors geometry."
  8452. msgstr ""
  8453. "Cria o Objeto de Geometria para roteamento\n"
  8454. "de isolação contendo somente a geometria externa."
  8455. #: flatcamGUI/ObjectUI.py:364
  8456. msgid "Int Geo"
  8457. msgstr "Geo Int"
  8458. #: flatcamGUI/ObjectUI.py:366
  8459. msgid ""
  8460. "Create the Geometry Object\n"
  8461. "for isolation routing containing\n"
  8462. "only the interiors geometry."
  8463. msgstr ""
  8464. "Cria o Objeto de Geometria para roteamento\n"
  8465. "de isolação contendo somente a geometria interna."
  8466. #: flatcamGUI/ObjectUI.py:382
  8467. msgid "Clear N-copper"
  8468. msgstr "Limpa N-cobre"
  8469. #: flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:360
  8470. msgid ""
  8471. "Create the Geometry Object\n"
  8472. "for non-copper routing."
  8473. msgstr ""
  8474. "Cria o Objeto de Geometria\n"
  8475. "para roteamento sem cobre."
  8476. #: flatcamGUI/ObjectUI.py:398
  8477. msgid "Board cutout"
  8478. msgstr "Recorte da placa"
  8479. #: flatcamGUI/ObjectUI.py:406 flatcamTools/ToolCutOut.py:337
  8480. msgid "Cutout Tool"
  8481. msgstr "Ferramenta de Recorte"
  8482. #: flatcamGUI/ObjectUI.py:408
  8483. msgid ""
  8484. "Generate the geometry for\n"
  8485. "the board cutout."
  8486. msgstr "Gera a geometria para o recorte da placa."
  8487. #: flatcamGUI/ObjectUI.py:448 flatcamGUI/ObjectUI.py:482
  8488. #: flatcamTools/ToolCutOut.py:184 flatcamTools/ToolCutOut.py:204
  8489. #: flatcamTools/ToolCutOut.py:255 flatcamTools/ToolSolderPaste.py:127
  8490. msgid "Generate Geo"
  8491. msgstr "Gerar Geo"
  8492. #: flatcamGUI/ObjectUI.py:454
  8493. msgid ""
  8494. "Create a geometry surrounding the Gerber object.\n"
  8495. "Square shape."
  8496. msgstr ""
  8497. "Crie uma geometria em torno do objeto Gerber.\n"
  8498. "Forma quadrada."
  8499. #: flatcamGUI/ObjectUI.py:484
  8500. msgid "Generate the Geometry object."
  8501. msgstr "Gera o objeto Geometria."
  8502. #: flatcamGUI/ObjectUI.py:495
  8503. msgid "Excellon Object"
  8504. msgstr "Objeto Excellon"
  8505. #: flatcamGUI/ObjectUI.py:506
  8506. msgid "Solid circles."
  8507. msgstr "Círculos preenchidos ou vazados."
  8508. #: flatcamGUI/ObjectUI.py:554
  8509. msgid "Drills"
  8510. msgstr "Furos"
  8511. #: flatcamGUI/ObjectUI.py:559
  8512. msgid ""
  8513. "This is the Tool Number.\n"
  8514. "When ToolChange is checked, on toolchange event this value\n"
  8515. "will be showed as a T1, T2 ... Tn in the Machine Code."
  8516. msgstr ""
  8517. "Número da Ferramenta.\n"
  8518. "Quando Trocar Ferramentas estiver marcado, este valor\n"
  8519. " será mostrado como T1, T2 ... Tn no Código da Máquina."
  8520. #: flatcamGUI/ObjectUI.py:563 flatcamGUI/ObjectUI.py:902
  8521. #: flatcamTools/ToolNonCopperClear.py:121 flatcamTools/ToolPaint.py:120
  8522. msgid ""
  8523. "Tool Diameter. It's value (in current FlatCAM units) \n"
  8524. "is the cut width into the material."
  8525. msgstr ""
  8526. "Diâmetro da Ferramenta. Seu valor (nas unidades FlatCAM atuais)\n"
  8527. "é a largura do corte no material."
  8528. #: flatcamGUI/ObjectUI.py:566
  8529. msgid ""
  8530. "The number of Drill holes. Holes that are drilled with\n"
  8531. "a drill bit."
  8532. msgstr ""
  8533. "Número de Furos\n"
  8534. "Serão perfurados com brocas."
  8535. #: flatcamGUI/ObjectUI.py:569
  8536. msgid ""
  8537. "The number of Slot holes. Holes that are created by\n"
  8538. "milling them with an endmill bit."
  8539. msgstr ""
  8540. "Número de Fendas\n"
  8541. "Serão criadas com fresas."
  8542. #: flatcamGUI/ObjectUI.py:576
  8543. msgid "Toggle display of the drills for the current tool."
  8544. msgstr "Alterna a exibição da ferramenta atual."
  8545. #: flatcamGUI/ObjectUI.py:584
  8546. msgid ""
  8547. "Create a CNC Job object\n"
  8548. "for this drill object."
  8549. msgstr "Cria um objeto de trabalho CNC para a furação."
  8550. #: flatcamGUI/ObjectUI.py:621 flatcamGUI/ObjectUI.py:1114
  8551. msgid "Tool change Z"
  8552. msgstr "Altura para a troca"
  8553. #: flatcamGUI/ObjectUI.py:738
  8554. msgid ""
  8555. "Select from the Tools Table above\n"
  8556. "the tools you want to include."
  8557. msgstr ""
  8558. "Selecione na Tabela de Ferramentas acima\n"
  8559. "as ferramentas que você deseja incluir."
  8560. #: flatcamGUI/ObjectUI.py:747
  8561. msgid ""
  8562. "Choose what to use for GCode generation:\n"
  8563. "'Drills', 'Slots' or 'Both'.\n"
  8564. "When choosing 'Slots' or 'Both', slots will be\n"
  8565. "converted to a series of drills."
  8566. msgstr ""
  8567. "Escolha o que usar para a geração do G-Code:\n"
  8568. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  8569. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  8570. "convertidas em uma série de brocas."
  8571. #: flatcamGUI/ObjectUI.py:762
  8572. msgid "Create GCode"
  8573. msgstr "Criar G-Code"
  8574. #: flatcamGUI/ObjectUI.py:764
  8575. msgid "Generate the CNC Job."
  8576. msgstr "Gera o arquivo G-Code para o CNC."
  8577. #: flatcamGUI/ObjectUI.py:776
  8578. msgid ""
  8579. "Select from the Tools Table above\n"
  8580. " the hole dias that are to be milled."
  8581. msgstr ""
  8582. "Selecione na Tabela de Ferramentas acima\n"
  8583. "os diâmetros dos furo que serão fresados."
  8584. #: flatcamGUI/ObjectUI.py:790
  8585. msgid "Mill Drills Geo"
  8586. msgstr "Geo Furos"
  8587. #: flatcamGUI/ObjectUI.py:792
  8588. msgid ""
  8589. "Create the Geometry Object\n"
  8590. "for milling DRILLS toolpaths."
  8591. msgstr ""
  8592. "Cria o Objeto Geometria com\n"
  8593. "os caminhos da ferramenta de FUROS."
  8594. #: flatcamGUI/ObjectUI.py:807
  8595. msgid "Mill Slots Geo"
  8596. msgstr "Geo Fendas"
  8597. #: flatcamGUI/ObjectUI.py:809
  8598. msgid ""
  8599. "Create the Geometry Object\n"
  8600. "for milling SLOTS toolpaths."
  8601. msgstr ""
  8602. "Cria o Objeto Geometria com\n"
  8603. "os caminhos da ferramenta de FENDAS."
  8604. #: flatcamGUI/ObjectUI.py:827
  8605. msgid "Geometry Object"
  8606. msgstr "Objeto Geometria"
  8607. #: flatcamGUI/ObjectUI.py:858
  8608. msgid ""
  8609. "Tools in this Geometry object used for cutting.\n"
  8610. "The 'Offset' entry will set an offset for the cut.\n"
  8611. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8612. "'Type' entry is only informative and it allow to know the \n"
  8613. "intent of using the current tool. \n"
  8614. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8615. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8616. "ball(B), or V-Shaped(V). \n"
  8617. "When V-shaped is selected the 'Type' entry is automatically \n"
  8618. "set to Isolation, the CutZ parameter in the UI form is\n"
  8619. "grayed out and Cut Z is automatically calculated from the newly \n"
  8620. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8621. msgstr ""
  8622. "Ferramentas neste objeto Geometria usados para o corte.\n"
  8623. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  8624. "'Deslocamento' pode ser dentro, fora, no caminho (nenhum) e personalizado. A "
  8625. "entrada\n"
  8626. "'Tipo' é somente informativo e permite conhecer a necessidade de usar a "
  8627. "ferramenta atual.\n"
  8628. "Pode ser Desbaste, Acabamento ou Isolação.\n"
  8629. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  8630. "bola (B) ou Em Forma de V (V).\n"
  8631. "Quando forma em V é selecionada, a entrada 'Tipo' é automaticamente\n"
  8632. "alterada para Isolação, o parâmetro Profundidade de Corte\n"
  8633. "no formulário da interface do usuário é desabilitado e a Profundidade\n"
  8634. "de Corte é calculada automaticamente a partir das entradas do\n"
  8635. "formulário da interface do usuário e do Ângulo da Ponta-V."
  8636. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
  8637. msgid "Dia"
  8638. msgstr "Dia"
  8639. #: flatcamGUI/ObjectUI.py:889 flatcamGUI/ObjectUI.py:1455
  8640. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  8641. msgid "TT"
  8642. msgstr "TF"
  8643. #: flatcamGUI/ObjectUI.py:896
  8644. msgid ""
  8645. "This is the Tool Number.\n"
  8646. "When ToolChange is checked, on toolchange event this value\n"
  8647. "will be showed as a T1, T2 ... Tn"
  8648. msgstr ""
  8649. "Número da Ferramenta.\n"
  8650. "Quando Trocar Ferramentas estiver marcado, no evento este valor\n"
  8651. " será mostrado como T1, T2 ... Tn"
  8652. #: flatcamGUI/ObjectUI.py:907
  8653. msgid ""
  8654. "The value for the Offset can be:\n"
  8655. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8656. "line.\n"
  8657. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8658. "'pocket'.\n"
  8659. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8660. msgstr ""
  8661. "O valor para Deslocamento pode ser:\n"
  8662. "- Caminho -> Não há deslocamento, o corte da ferramenta será feito sobre a "
  8663. "linha da geometria.\n"
  8664. "- In(terno) -> O corte da ferramenta seguirá a geometria interna. Será "
  8665. "criado um 'bolso'.\n"
  8666. "- Ex(terno) -> O corte da ferramenta seguirá no lado externo da linha da "
  8667. "geometria.\n"
  8668. "- Personalizado -> Será considerado o valor digitado."
  8669. #: flatcamGUI/ObjectUI.py:914
  8670. msgid ""
  8671. "The (Operation) Type has only informative value. Usually the UI form "
  8672. "values \n"
  8673. "are choosed based on the operation type and this will serve as a reminder.\n"
  8674. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8675. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8676. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8677. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8678. "tip."
  8679. msgstr ""
  8680. "O tipo (operação) tem apenas valor informativo. Normalmente, os valores do "
  8681. "formulário da interface do usuário\n"
  8682. "são escolhidos com base no tipo de operação e isso servirá como um "
  8683. "lembrete.\n"
  8684. "Pode ser 'Desbaste', 'Acabamento' ou 'Isolação'.\n"
  8685. "Para Desbaste, pode-se escolher uma taxa de Avanço inferior e corte de "
  8686. "múltiplas profundidades.\n"
  8687. "Para Acabamento, pode-se escolher uma taxa de avanço mais alta, sem multi-"
  8688. "profundidade.\n"
  8689. "Para Isolação, usa-se uma velocidade de avanço menor, pois é usada uma broca "
  8690. "com ponta fina."
  8691. #: flatcamGUI/ObjectUI.py:923
  8692. msgid ""
  8693. "The Tool Type (TT) can be:\n"
  8694. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8695. "cut width in material\n"
  8696. "is exactly the tool diameter.\n"
  8697. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8698. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8699. "two additional UI form\n"
  8700. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8701. "the Z-Cut parameter such\n"
  8702. "as the cut width into material will be equal with the value in the Tool "
  8703. "Diameter column of this table.\n"
  8704. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8705. "as Isolation."
  8706. msgstr ""
  8707. "O Tipo de Ferramenta (TF) pode ser:\n"
  8708. "- Circular com 1 ... 4 dentes -> apenas informativo. Sendo circular a "
  8709. "largura de corte no material\n"
  8710. " é exatamente o diâmetro da ferramenta.\n"
  8711. "- Bola -> apenas informativo e faz referência à fresa tipo Ball.\n"
  8712. "- Em Forma de V -> o parâmetro Corte Z no formulário de interface do usuário "
  8713. "será desabilitado e dois campos adicionais\n"
  8714. " no formulário UI serão habilitados: Diâmetro Ângulo Ponta-V e Ângulo Ponta-"
  8715. "V. O ajuste desses dois valores ajustará o parâmetro Corte Z, como\n"
  8716. "a largura do corte no material será igual ao valor da coluna Diâmetro da "
  8717. "ferramenta dessa tabela.\n"
  8718. "Escolher o tipo de ferramenta Em Forma de V automaticamente alterará o tipo "
  8719. "de operação para Isolação."
  8720. #: flatcamGUI/ObjectUI.py:935
  8721. msgid ""
  8722. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8723. "that holds the geometry\n"
  8724. "data into the tools. For those geometries, deleting the tool will delete the "
  8725. "geometry data also,\n"
  8726. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8727. "plot on canvas\n"
  8728. "for the corresponding tool."
  8729. msgstr ""
  8730. "Coluna de plotagem. É visível apenas para geometrias MultiGeo, ou seja, "
  8731. "geometrias que contêm os dados da geometria\n"
  8732. "das ferramentas. Para essas geometrias, a exclusão da ferramenta também "
  8733. "excluirá os dados da geometria,\n"
  8734. "assim, esteja ATENTO. Nas caixas de seleção de cada linha, pode ser ativado/"
  8735. "desativado o gráfico na tela\n"
  8736. "para a ferramenta correspondente."
  8737. #: flatcamGUI/ObjectUI.py:948
  8738. msgid "Tool Offset"
  8739. msgstr "Deslocamento"
  8740. #: flatcamGUI/ObjectUI.py:951
  8741. msgid ""
  8742. "The value to offset the cut when \n"
  8743. "the Offset type selected is 'Offset'.\n"
  8744. "The value can be positive for 'outside'\n"
  8745. "cut and negative for 'inside' cut."
  8746. msgstr ""
  8747. "O valor para compensar o corte quando\n"
  8748. "o tipo selecionado for 'Deslocamento'.\n"
  8749. "O valor pode ser positivo para corte 'por fora'\n"
  8750. "e negativo para corte 'por dentro'."
  8751. #: flatcamGUI/ObjectUI.py:974 flatcamTools/ToolNonCopperClear.py:160
  8752. #: flatcamTools/ToolPaint.py:162
  8753. msgid "Tool Dia"
  8754. msgstr "Diâmetro da Ferramenta"
  8755. #: flatcamGUI/ObjectUI.py:993 flatcamTools/ToolNonCopperClear.py:172
  8756. #: flatcamTools/ToolPaint.py:178
  8757. msgid ""
  8758. "Add a new tool to the Tool Table\n"
  8759. "with the diameter specified above."
  8760. msgstr ""
  8761. "Adicione uma nova ferramenta à Tabela de Ferramentas\n"
  8762. "com o diâmetro especificado."
  8763. #: flatcamGUI/ObjectUI.py:1001
  8764. msgid ""
  8765. "Copy a selection of tools in the Tool Table\n"
  8766. "by first selecting a row in the Tool Table."
  8767. msgstr ""
  8768. "Copia uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  8769. "primeiro uma linha na Tabela de Ferramentas."
  8770. #: flatcamGUI/ObjectUI.py:1009
  8771. msgid ""
  8772. "Delete a selection of tools in the Tool Table\n"
  8773. "by first selecting a row in the Tool Table."
  8774. msgstr ""
  8775. "Apaga uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  8776. "primeiro uma linha na Tabela de Ferramentas."
  8777. #: flatcamGUI/ObjectUI.py:1025
  8778. msgid "Tool Data"
  8779. msgstr "Diâ. da Ferra."
  8780. #: flatcamGUI/ObjectUI.py:1028
  8781. msgid ""
  8782. "The data used for creating GCode.\n"
  8783. "Each tool store it's own set of such data."
  8784. msgstr ""
  8785. "Os dados usados para criar o G-Code.\n"
  8786. "Cada loja de ferramentas possui seu próprio conjunto de dados."
  8787. #: flatcamGUI/ObjectUI.py:1046
  8788. msgid "V-Tip Dia"
  8789. msgstr "Diâmetro Ponta-V"
  8790. #: flatcamGUI/ObjectUI.py:1049
  8791. msgid "The tip diameter for V-Shape Tool"
  8792. msgstr "O diâmetro da ponta da ferramenta em forma de V"
  8793. #: flatcamGUI/ObjectUI.py:1057
  8794. msgid "V-Tip Angle"
  8795. msgstr "Ângulo Ponta-V"
  8796. #: flatcamGUI/ObjectUI.py:1060
  8797. msgid ""
  8798. "The tip angle for V-Shape Tool.\n"
  8799. "In degree."
  8800. msgstr "O ângulo da ponta da ferramenta em forma de V, em graus."
  8801. #: flatcamGUI/ObjectUI.py:1095
  8802. msgid "Depth of each pass (positive)."
  8803. msgstr "Profundidade de cada passe (positivo)."
  8804. #: flatcamGUI/ObjectUI.py:1269
  8805. msgid ""
  8806. "Add at least one tool in the tool-table.\n"
  8807. "Click the header to select all, or Ctrl + LMB\n"
  8808. "for custom selection of tools."
  8809. msgstr ""
  8810. "Adicione pelo menos uma ferramenta na tabela de ferramentas.\n"
  8811. "Clique no cabeçalho para selecionar todos ou Ctrl + Botão Esquerdo do Mouse\n"
  8812. "para seleção personalizada de ferramentas."
  8813. #: flatcamGUI/ObjectUI.py:1276
  8814. msgid "Generate"
  8815. msgstr "Gerar"
  8816. #: flatcamGUI/ObjectUI.py:1278
  8817. msgid "Generate the CNC Job object."
  8818. msgstr "Gera o objeto de Trabalho CNC."
  8819. #: flatcamGUI/ObjectUI.py:1285
  8820. msgid "Paint Area"
  8821. msgstr "Área de Pintura"
  8822. #: flatcamGUI/ObjectUI.py:1299
  8823. msgid "Launch Paint Tool in Tools Tab."
  8824. msgstr "Inicia a ferramenta de pintura na guia Ferramentas."
  8825. #: flatcamGUI/ObjectUI.py:1315
  8826. msgid "CNC Job Object"
  8827. msgstr "Objeto de Trabalho CNC"
  8828. #: flatcamGUI/ObjectUI.py:1333
  8829. msgid "Plot kind"
  8830. msgstr "Tipo de Gráfico"
  8831. #: flatcamGUI/ObjectUI.py:1367
  8832. msgid "Travelled dist."
  8833. msgstr "Dist. percorrida"
  8834. #: flatcamGUI/ObjectUI.py:1369 flatcamGUI/ObjectUI.py:1374
  8835. msgid ""
  8836. "This is the total travelled distance on X-Y plane.\n"
  8837. "In current units."
  8838. msgstr ""
  8839. "Essa é a distância total percorrida no plano XY,\n"
  8840. "nas unidades atuais."
  8841. #: flatcamGUI/ObjectUI.py:1379
  8842. msgid "Estimated time"
  8843. msgstr "Duração estimada"
  8844. #: flatcamGUI/ObjectUI.py:1381 flatcamGUI/ObjectUI.py:1386
  8845. msgid ""
  8846. "This is the estimated time to do the routing/drilling,\n"
  8847. "without the time spent in ToolChange events."
  8848. msgstr ""
  8849. "Este é o tempo estimado para fazer o roteamento / perfuração,\n"
  8850. "sem o tempo gasto em eventos de Alteração de Ferramentas."
  8851. #: flatcamGUI/ObjectUI.py:1421
  8852. msgid "CNC Tools Table"
  8853. msgstr "Tabela de Ferra. CNC"
  8854. #: flatcamGUI/ObjectUI.py:1424
  8855. msgid ""
  8856. "Tools in this CNCJob object used for cutting.\n"
  8857. "The tool diameter is used for plotting on canvas.\n"
  8858. "The 'Offset' entry will set an offset for the cut.\n"
  8859. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8860. "'Type' entry is only informative and it allow to know the \n"
  8861. "intent of using the current tool. \n"
  8862. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8863. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8864. "ball(B), or V-Shaped(V)."
  8865. msgstr ""
  8866. "Ferramentas usadas para o corte no Trabalho CNC.\n"
  8867. "O diâmetro da ferramenta é usado para plotagem na tela.\n"
  8868. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  8869. "'Deslocamento' pode ser dentro, fora, no caminho (nenhum) e personalizado. A "
  8870. "entrada\n"
  8871. "'Tipo' é apenas informativa e permite conhecer a necessidade de usar a "
  8872. "ferramenta atual.\n"
  8873. "Pode ser Desbaste, Acabamento ou Isolação.\n"
  8874. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  8875. "bola (B) ou Em forma de V (V)."
  8876. #: flatcamGUI/ObjectUI.py:1456
  8877. msgid "P"
  8878. msgstr "P"
  8879. #: flatcamGUI/ObjectUI.py:1462
  8880. msgid "Update Plot"
  8881. msgstr "Atualizar Gráfico"
  8882. #: flatcamGUI/ObjectUI.py:1464
  8883. msgid "Update the plot."
  8884. msgstr "Atualiza o gráfico."
  8885. #: flatcamGUI/ObjectUI.py:1479
  8886. msgid "Prepend to CNC Code"
  8887. msgstr "Incluir no Início do Código CNC"
  8888. #: flatcamGUI/ObjectUI.py:1490
  8889. msgid "Append to CNC Code"
  8890. msgstr "Incluir no Final do Código CNC"
  8891. #: flatcamGUI/ObjectUI.py:1558
  8892. msgid "z_cut = depth where to cut"
  8893. msgstr "z_cut = profundidade de corte"
  8894. #: flatcamGUI/ObjectUI.py:1559
  8895. msgid "z_move = height where to travel"
  8896. msgstr "z_move = altura para deslocamentos"
  8897. #: flatcamGUI/ObjectUI.py:1578
  8898. msgid "View CNC Code"
  8899. msgstr "Ver Código CNC"
  8900. #: flatcamGUI/ObjectUI.py:1580
  8901. msgid ""
  8902. "Opens TAB to view/modify/print G-Code\n"
  8903. "file."
  8904. msgstr "Abre uma ABA para visualizar/modificar/imprimir o arquivo G-Code."
  8905. #: flatcamGUI/ObjectUI.py:1585
  8906. msgid "Save CNC Code"
  8907. msgstr "Salvar Código CNC"
  8908. #: flatcamGUI/ObjectUI.py:1587
  8909. msgid ""
  8910. "Opens dialog to save G-Code\n"
  8911. "file."
  8912. msgstr "Abre o diálogo para salvar o arquivo G-Code."
  8913. #: flatcamTools/ToolCalculators.py:24
  8914. msgid "Calculators"
  8915. msgstr "Calculadoras"
  8916. #: flatcamTools/ToolCalculators.py:26
  8917. msgid "Units Calculator"
  8918. msgstr "Calculadora de Unidades"
  8919. #: flatcamTools/ToolCalculators.py:68
  8920. msgid "Here you enter the value to be converted from INCH to MM"
  8921. msgstr "Aqui você insere o valor a ser convertido de polegadas para mm"
  8922. #: flatcamTools/ToolCalculators.py:73
  8923. msgid "Here you enter the value to be converted from MM to INCH"
  8924. msgstr "Aqui você insere o valor a ser convertido de mm para polegadas"
  8925. #: flatcamTools/ToolCalculators.py:104
  8926. msgid ""
  8927. "This is the angle of the tip of the tool.\n"
  8928. "It is specified by manufacturer."
  8929. msgstr ""
  8930. "Ângulo da ponta da ferramenta.\n"
  8931. "Especificado pelo fabricante."
  8932. #: flatcamTools/ToolCalculators.py:111
  8933. msgid ""
  8934. "This is the depth to cut into the material.\n"
  8935. "In the CNCJob is the CutZ parameter."
  8936. msgstr ""
  8937. "Esta é a profundidade para cortar material.\n"
  8938. "No Trabalho CNC é o parâmetro Corte Z."
  8939. #: flatcamTools/ToolCalculators.py:114
  8940. msgid "Tool Diameter"
  8941. msgstr "Diâ. da ferra."
  8942. #: flatcamTools/ToolCalculators.py:118
  8943. msgid ""
  8944. "This is the tool diameter to be entered into\n"
  8945. "FlatCAM Gerber section.\n"
  8946. "In the CNCJob section it is called >Tool dia<."
  8947. msgstr ""
  8948. "Este é o diâmetro da ferramenta a ser inserido na seção\n"
  8949. "FlatCAM Gerber.\n"
  8950. "Na seção Trabalho CNC é chamado de Diâmetro da Ferramenta."
  8951. #: flatcamTools/ToolCalculators.py:129 flatcamTools/ToolCalculators.py:210
  8952. msgid "Calculate"
  8953. msgstr "Calcular"
  8954. #: flatcamTools/ToolCalculators.py:132
  8955. msgid ""
  8956. "Calculate either the Cut Z or the effective tool diameter,\n"
  8957. " depending on which is desired and which is known. "
  8958. msgstr ""
  8959. "Calcula a Profundidade de Corte Z ou o diâmetro efetivo da\n"
  8960. "ferramenta, dependendo do que é desejado e do que é conhecido."
  8961. #: flatcamTools/ToolCalculators.py:186
  8962. msgid "Current Value"
  8963. msgstr "Valor da Corrente"
  8964. #: flatcamTools/ToolCalculators.py:190
  8965. msgid ""
  8966. "This is the current intensity value\n"
  8967. "to be set on the Power Supply. In Amps."
  8968. msgstr ""
  8969. "Este é o valor de intensidade de corrente\n"
  8970. "a ser ajustado na fonte de alimentação. Em Ampères."
  8971. #: flatcamTools/ToolCalculators.py:194
  8972. msgid "Time"
  8973. msgstr "Tempo"
  8974. #: flatcamTools/ToolCalculators.py:198
  8975. msgid ""
  8976. "This is the calculated time required for the procedure.\n"
  8977. "In minutes."
  8978. msgstr "Tempo calculado necessário para o procedimento, em minutos."
  8979. #: flatcamTools/ToolCalculators.py:213
  8980. msgid ""
  8981. "Calculate the current intensity value and the procedure time,\n"
  8982. "depending on the parameters above"
  8983. msgstr ""
  8984. "Calcula o valor da intensidade atual e o tempo do\n"
  8985. "procedimento, dependendo dos parâmetros acima"
  8986. #: flatcamTools/ToolCalculators.py:262
  8987. msgid "Calc. Tool"
  8988. msgstr "Calculadoras"
  8989. #: flatcamTools/ToolCutOut.py:18
  8990. msgid "Cutout PCB"
  8991. msgstr "Recorte PCB"
  8992. #: flatcamTools/ToolCutOut.py:54 flatcamTools/ToolNonCopperClear.py:69
  8993. #: flatcamTools/ToolPaint.py:68
  8994. msgid "Obj Type"
  8995. msgstr "Tipo de Objeto"
  8996. #: flatcamTools/ToolCutOut.py:56
  8997. msgid ""
  8998. "Specify the type of object to be cutout.\n"
  8999. "It can be of type: Gerber or Geometry.\n"
  9000. "What is selected here will dictate the kind\n"
  9001. "of objects that will populate the 'Object' combobox."
  9002. msgstr ""
  9003. "Especifica o tipo de objeto a ser cortado.\n"
  9004. "Pode ser do tipo: Gerber ou Geometria.\n"
  9005. "O que estiver selecionado aqui irá ditar o tipo\n"
  9006. "de objetos que preencherão a caixa de combinação 'Objeto'."
  9007. #: flatcamTools/ToolCutOut.py:70 flatcamTools/ToolNonCopperClear.py:87
  9008. #: flatcamTools/ToolPaint.py:86 flatcamTools/ToolPanelize.py:71
  9009. #: flatcamTools/ToolPanelize.py:84
  9010. msgid "Object"
  9011. msgstr "Objeto"
  9012. #: flatcamTools/ToolCutOut.py:72
  9013. msgid "Object to be cutout. "
  9014. msgstr "Objeto a ser recortado."
  9015. #: flatcamTools/ToolCutOut.py:111
  9016. msgid "Gap size:"
  9017. msgstr "Tamanho da Ponte:"
  9018. #: flatcamTools/ToolCutOut.py:138
  9019. msgid "A. Automatic Bridge Gaps"
  9020. msgstr "A. Pontes Automáticas"
  9021. #: flatcamTools/ToolCutOut.py:140
  9022. msgid "This section handle creation of automatic bridge gaps."
  9023. msgstr "Esta seção trata da criação de pontes automáticas."
  9024. #: flatcamTools/ToolCutOut.py:151
  9025. msgid ""
  9026. "Number of gaps used for the Automatic cutout.\n"
  9027. "There can be maximum 8 bridges/gaps.\n"
  9028. "The choices are:\n"
  9029. "- None - no gaps\n"
  9030. "- lr - left + right\n"
  9031. "- tb - top + bottom\n"
  9032. "- 4 - left + right +top + bottom\n"
  9033. "- 2lr - 2*left + 2*right\n"
  9034. "- 2tb - 2*top + 2*bottom\n"
  9035. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  9036. msgstr ""
  9037. "Número de pontes utilizadas no recorte automático.\n"
  9038. "Pode haver um máximo de 8 pontes/lacunas.\n"
  9039. "As opções são:\n"
  9040. "- Nenhum - sem lacunas\n"
  9041. "- LR - esquerda + direita\n"
  9042. "- TB - topo + baixo\n"
  9043. "- 4 - esquerda + direita + topo + baixo\n"
  9044. "- 2LR - 2*esquerda + 2*direita\n"
  9045. "- 2TB - 2*topo + 2*baixo\n"
  9046. "- 8 - 2*esquerda + 2*direita + 2*topo + 2*baixo"
  9047. #: flatcamTools/ToolCutOut.py:175
  9048. msgid "FreeForm"
  9049. msgstr "Forma Livre"
  9050. #: flatcamTools/ToolCutOut.py:177
  9051. msgid ""
  9052. "The cutout shape can be of ny shape.\n"
  9053. "Useful when the PCB has a non-rectangular shape."
  9054. msgstr ""
  9055. "O recorte pode ter qualquer forma.\n"
  9056. "Útil quando o PCB tem uma forma não retangular."
  9057. #: flatcamTools/ToolCutOut.py:186
  9058. msgid ""
  9059. "Cutout the selected object.\n"
  9060. "The cutout shape can be of any shape.\n"
  9061. "Useful when the PCB has a non-rectangular shape."
  9062. msgstr ""
  9063. "Recorta o objeto selecionado.\n"
  9064. "O recorte pode ter qualquer forma.\n"
  9065. "Útil quando o PCB tem uma forma não retangular."
  9066. #: flatcamTools/ToolCutOut.py:195
  9067. msgid "Rectangular"
  9068. msgstr "Retangular"
  9069. #: flatcamTools/ToolCutOut.py:197
  9070. msgid ""
  9071. "The resulting cutout shape is\n"
  9072. "always a rectangle shape and it will be\n"
  9073. "the bounding box of the Object."
  9074. msgstr ""
  9075. "O recorte resultante é\n"
  9076. "sempre em forma de retângulo e será\n"
  9077. "a caixa delimitadora do objeto."
  9078. #: flatcamTools/ToolCutOut.py:206
  9079. msgid ""
  9080. "Cutout the selected object.\n"
  9081. "The resulting cutout shape is\n"
  9082. "always a rectangle shape and it will be\n"
  9083. "the bounding box of the Object."
  9084. msgstr ""
  9085. "Recorta o objeto selecionado.\n"
  9086. "O recorte resultante é\n"
  9087. "sempre em forma de retângulo e será\n"
  9088. "a caixa delimitadora do objeto."
  9089. #: flatcamTools/ToolCutOut.py:214
  9090. msgid "B. Manual Bridge Gaps"
  9091. msgstr "B. Pontes Manuais"
  9092. #: flatcamTools/ToolCutOut.py:216
  9093. msgid ""
  9094. "This section handle creation of manual bridge gaps.\n"
  9095. "This is done by mouse clicking on the perimeter of the\n"
  9096. "Geometry object that is used as a cutout object. "
  9097. msgstr ""
  9098. "Esta seção trata da criação de pontes manuais.\n"
  9099. "Isso é feito clicando com o mouse no perímetro do objeto\n"
  9100. "de Geometria que é usado como objeto de recorte."
  9101. #: flatcamTools/ToolCutOut.py:232
  9102. msgid "Geo Obj"
  9103. msgstr "Obj Geo"
  9104. #: flatcamTools/ToolCutOut.py:234
  9105. msgid "Geometry object used to create the manual cutout."
  9106. msgstr "Objeto de geometria usado para criar o recorte manual."
  9107. #: flatcamTools/ToolCutOut.py:245
  9108. msgid "Manual Geo"
  9109. msgstr "Geo Manual"
  9110. #: flatcamTools/ToolCutOut.py:247 flatcamTools/ToolCutOut.py:257
  9111. msgid ""
  9112. "If the object to be cutout is a Gerber\n"
  9113. "first create a Geometry that surrounds it,\n"
  9114. "to be used as the cutout, if one doesn't exist yet.\n"
  9115. "Select the source Gerber file in the top object combobox."
  9116. msgstr ""
  9117. "Se o objeto a ser recortado for um Gerber\n"
  9118. "primeiro crie uma Geometria que o rodeia,\n"
  9119. "para ser usado como recorte, caso ainda não exista.\n"
  9120. "Selecione o arquivo Gerber de origem na combobox do objeto."
  9121. #: flatcamTools/ToolCutOut.py:267
  9122. msgid "Manual Add Bridge Gaps"
  9123. msgstr "Adicionar Pontes Manuais"
  9124. #: flatcamTools/ToolCutOut.py:269
  9125. msgid ""
  9126. "Use the left mouse button (LMB) click\n"
  9127. "to create a bridge gap to separate the PCB from\n"
  9128. "the surrounding material."
  9129. msgstr ""
  9130. "Use o botão esquerdo do mouse (BEM), clique para criar\n"
  9131. "pontes (para separar o PCB do material circundante)."
  9132. #: flatcamTools/ToolCutOut.py:276
  9133. msgid "Generate Gap"
  9134. msgstr "Gerar Ponte"
  9135. #: flatcamTools/ToolCutOut.py:278
  9136. msgid ""
  9137. "Use the left mouse button (LMB) click\n"
  9138. "to create a bridge gap to separate the PCB from\n"
  9139. "the surrounding material.\n"
  9140. "The LMB click has to be done on the perimeter of\n"
  9141. "the Geometry object used as a cutout geometry."
  9142. msgstr ""
  9143. "Use o botão esquerdo do mouse (BEM): clique\n"
  9144. "para criar uma ponte para separar a PCB do material adjacente.\n"
  9145. "O clique deve ser feito no perímetro\n"
  9146. "do objeto Geometria usado como uma geometria de recorte."
  9147. #: flatcamTools/ToolCutOut.py:367 flatcamTools/ToolCutOut.py:564
  9148. #: flatcamTools/ToolNonCopperClear.py:836
  9149. #: flatcamTools/ToolNonCopperClear.py:845
  9150. #: flatcamTools/ToolNonCopperClear.py:1001 flatcamTools/ToolPaint.py:929
  9151. #: flatcamTools/ToolPaint.py:1093 flatcamTools/ToolPanelize.py:358
  9152. #: flatcamTools/ToolPanelize.py:373 flatcamTools/ToolSub.py:252
  9153. #: flatcamTools/ToolSub.py:265 flatcamTools/ToolSub.py:448
  9154. #: flatcamTools/ToolSub.py:461
  9155. #, python-format
  9156. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  9157. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto: %s"
  9158. #: flatcamTools/ToolCutOut.py:371
  9159. msgid ""
  9160. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  9161. "Select one and try again."
  9162. msgstr ""
  9163. "[ERROR_NOTCL] Não há objeto selecionado para Recorte.\n"
  9164. "Selecione um e tente novamente."
  9165. #: flatcamTools/ToolCutOut.py:386
  9166. msgid ""
  9167. "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9168. "number."
  9169. msgstr ""
  9170. "[WARNING_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número "
  9171. "real positivo."
  9172. #: flatcamTools/ToolCutOut.py:401 flatcamTools/ToolCutOut.py:597
  9173. #: flatcamTools/ToolCutOut.py:893
  9174. msgid ""
  9175. "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  9176. msgstr ""
  9177. "[WARNING_NOTCL] O valor da margem está ausente ou no formato errado. Altere "
  9178. "e tente novamente."
  9179. #: flatcamTools/ToolCutOut.py:412 flatcamTools/ToolCutOut.py:608
  9180. #: flatcamTools/ToolCutOut.py:758
  9181. msgid ""
  9182. "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  9183. msgstr ""
  9184. "[WARNING_NOTCL] O valor do tamanho da ponte está ausente ou no formato "
  9185. "incorreto. Altere e tente novamente."
  9186. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:615
  9187. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  9188. msgstr ""
  9189. "[WARNING_NOTCL] O número de pontes está ausente. Altere e tente novamente."
  9190. #: flatcamTools/ToolCutOut.py:423 flatcamTools/ToolCutOut.py:619
  9191. msgid ""
  9192. "[WARNING_NOTCL] Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', "
  9193. "'2tb', 4 or 8. Fill in a correct value and retry. "
  9194. msgstr ""
  9195. "[WARNING_NOTCL] O valor das lacunas pode ser apenas um de: 'Nenhum', 'lr', "
  9196. "'tb', '2lr', '2tb', 4 ou 8. Preencha um valor correto e tente novamente."
  9197. #: flatcamTools/ToolCutOut.py:429 flatcamTools/ToolCutOut.py:625
  9198. msgid ""
  9199. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  9200. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  9201. "Geometry,\n"
  9202. "and after that perform Cutout."
  9203. msgstr ""
  9204. "[ERROR] A operação de recorte não pode ser feita em uma Geometria multi-"
  9205. "geo.\n"
  9206. "Opcionalmente, essa Geometria Multi-Geo pode ser convertida em Geometria "
  9207. "Única,\n"
  9208. "e depois disso, executar Recorte."
  9209. #: flatcamTools/ToolCutOut.py:547 flatcamTools/ToolCutOut.py:728
  9210. msgid "[success] Any form CutOut operation finished."
  9211. msgstr "[success] Operação de Recorte Livre finalizada."
  9212. #: flatcamTools/ToolCutOut.py:568 flatcamTools/ToolPaint.py:933
  9213. #: flatcamTools/ToolPanelize.py:364
  9214. #, python-format
  9215. msgid "[ERROR_NOTCL] Object not found: %s"
  9216. msgstr "[ERROR_NOTCL] Objeto não encontrado: %s"
  9217. #: flatcamTools/ToolCutOut.py:582 flatcamTools/ToolCutOut.py:748
  9218. #: flatcamTools/ToolCutOut.py:878
  9219. msgid ""
  9220. "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real "
  9221. "number."
  9222. msgstr ""
  9223. "[ERROR_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número real "
  9224. "positivo."
  9225. #: flatcamTools/ToolCutOut.py:733
  9226. msgid ""
  9227. "Click on the selected geometry object perimeter to create a bridge gap ..."
  9228. msgstr ""
  9229. "Clique no perímetro do objeto de geometria selecionado para criar uma "
  9230. "ponte ..."
  9231. #: flatcamTools/ToolCutOut.py:768 flatcamTools/ToolCutOut.py:820
  9232. #, python-format
  9233. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  9234. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Geometria: %s"
  9235. #: flatcamTools/ToolCutOut.py:783
  9236. msgid "Making manual bridge gap..."
  9237. msgstr "Fazendo ponte manual ..."
  9238. #: flatcamTools/ToolCutOut.py:825
  9239. #, python-format
  9240. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  9241. msgstr ""
  9242. "[ERROR_NOTCL] Objeto de geometria para recorte manual não encontrado: %s"
  9243. #: flatcamTools/ToolCutOut.py:835
  9244. msgid "[success] Added manual Bridge Gap."
  9245. msgstr "[success] Ponte Manual Adicionada."
  9246. #: flatcamTools/ToolCutOut.py:853
  9247. #, python-format
  9248. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  9249. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Gerber: %s"
  9250. #: flatcamTools/ToolCutOut.py:857
  9251. msgid ""
  9252. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  9253. "Select one and try again."
  9254. msgstr ""
  9255. "[ERROR_NOTCL] Não há nenhum objeto Gerber selecionado para o Recorte.\n"
  9256. "Selecione um e tente novamente."
  9257. #: flatcamTools/ToolCutOut.py:862
  9258. msgid ""
  9259. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  9260. "Select a Gerber file and try again."
  9261. msgstr ""
  9262. "[ERROR_NOTCL] O objeto selecionado deve ser do tipo Gerber.\n"
  9263. "Selecione um arquivo Gerber e tente novamente."
  9264. #: flatcamTools/ToolCutOut.py:915
  9265. #, python-format
  9266. msgid "[ERROR_NOTCL] Geometry not supported for cutout: %s"
  9267. msgstr "[ERROR_NOTCL] Geometria não suportada para recorte: %s"
  9268. #: flatcamTools/ToolDblSided.py:18
  9269. msgid "2-Sided PCB"
  9270. msgstr "PCB de 2 faces"
  9271. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  9272. #: flatcamTools/ToolDblSided.py:100
  9273. msgid "Mirror"
  9274. msgstr "Espelho"
  9275. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  9276. #: flatcamTools/ToolDblSided.py:102
  9277. msgid ""
  9278. "Mirrors (flips) the specified object around \n"
  9279. "the specified axis. Does not create a new \n"
  9280. "object, but modifies it."
  9281. msgstr ""
  9282. "Espelha (inverte) o objeto especificado em torno do eixo especificado. Não "
  9283. "cria um novo\n"
  9284. "objeto, mas o modifica."
  9285. #: flatcamTools/ToolDblSided.py:73
  9286. msgid "Excellon Object to be mirrored."
  9287. msgstr "Objeto Excellon a ser espelhado."
  9288. #: flatcamTools/ToolDblSided.py:97
  9289. msgid "Geometry Obj to be mirrored."
  9290. msgstr "Objeto Geometria a ser espelhado."
  9291. #: flatcamTools/ToolDblSided.py:133
  9292. msgid "Axis Ref:"
  9293. msgstr "Eixo de Referência:"
  9294. #: flatcamTools/ToolDblSided.py:152
  9295. msgid "Point/Box Reference"
  9296. msgstr "Ponto/Caixa de Referência"
  9297. #: flatcamTools/ToolDblSided.py:154
  9298. msgid ""
  9299. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  9300. "the mirroring axis passes.\n"
  9301. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  9302. "Geo).\n"
  9303. "Through the center of this object pass the mirroring axis selected above."
  9304. msgstr ""
  9305. "Se 'Ponto' for selecionado acima, armazena as coordenadas (x, y) por onde "
  9306. "passa\n"
  9307. "o eixo de espelhamento.\n"
  9308. "Se 'Caixa' for selecionada acima, selecione aqui um objeto FlatCAM (Gerber, "
  9309. "Exc ou Geo).\n"
  9310. "O eixo de espelhamento passa pelo centro deste objeto."
  9311. #: flatcamTools/ToolDblSided.py:162
  9312. msgid ""
  9313. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  9314. "axis \n"
  9315. " selected in 'MIRROR AXIS' pass.\n"
  9316. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  9317. "and left mouse button click on canvas or you can enter the coords manually."
  9318. msgstr ""
  9319. "Adicione as coordenadas no formato <b>(x, y)</b> para o eixo de espelhamento "
  9320. "passar.\n"
  9321. "As coordenadas (x, y) são capturadas pressionando a tecla SHIFT\n"
  9322. "e clicar o botão esquerdo do mouse na tela ou inseridas manualmente."
  9323. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:338
  9324. #: flatcamTools/ToolPaint.py:318
  9325. msgid "Gerber Reference Box Object"
  9326. msgstr "Objeto Caixa de Referência Gerber"
  9327. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:339
  9328. #: flatcamTools/ToolPaint.py:319
  9329. msgid "Excellon Reference Box Object"
  9330. msgstr "Objeto Caixa de Referência Excellon"
  9331. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:340
  9332. #: flatcamTools/ToolPaint.py:320
  9333. msgid "Geometry Reference Box Object"
  9334. msgstr "Objeto Caixa de Referência de Geometria"
  9335. #: flatcamTools/ToolDblSided.py:192
  9336. msgid "Alignment Drill Coordinates"
  9337. msgstr "Coords de Alinhamento de Broca:"
  9338. #: flatcamTools/ToolDblSided.py:194
  9339. msgid ""
  9340. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  9341. "each set of (x, y) coordinates\n"
  9342. "entered here, a pair of drills will be created:\n"
  9343. "\n"
  9344. "- one drill at the coordinates from the field\n"
  9345. "- one drill in mirror position over the axis selected above in the 'Mirror "
  9346. "Axis'."
  9347. msgstr ""
  9348. "Furos de alinhamento (x1, y1), (x2, y2), ... em um lado do eixo do espelho. "
  9349. "Para cada conjunto de coordenadas (x, y)\n"
  9350. "indicado aqui, um par de brocas será criado:\n"
  9351. "\n"
  9352. "- uma broca nas coordenadas do campo\n"
  9353. "- uma broca na posição do espelho sobre o eixo selecionado acima."
  9354. #: flatcamTools/ToolDblSided.py:209
  9355. msgid ""
  9356. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  9357. "on one side of the mirror axis.\n"
  9358. "\n"
  9359. "The coordinates set can be obtained:\n"
  9360. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  9361. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  9362. "field.\n"
  9363. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  9364. "field and click Paste.\n"
  9365. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  9366. msgstr ""
  9367. "Adicione as coordenadas dos furos de alinhamento no formato (x1, y1), (x2, "
  9368. "y2), ...\n"
  9369. "em um lado do eixo do espelho.\n"
  9370. "\n"
  9371. "O conjunto de coordenadas pode ser obtido:\n"
  9372. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, "
  9373. "clicar em Adicionar.\n"
  9374. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Então CTRL + V "
  9375. "no campo.\n"
  9376. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, "
  9377. "clicar no campo e em Colar.\n"
  9378. "- inserindo as coordenadas manualmente no formato: (x1, y1), (x2, y2), ..."
  9379. #: flatcamTools/ToolDblSided.py:223
  9380. msgid "Alignment Drill Diameter"
  9381. msgstr "Diâmetro de Broca de Alinhamento"
  9382. #: flatcamTools/ToolDblSided.py:246
  9383. msgid "Create Excellon Object"
  9384. msgstr "Criar Objeto Excellon"
  9385. #: flatcamTools/ToolDblSided.py:248
  9386. msgid ""
  9387. "Creates an Excellon Object containing the\n"
  9388. "specified alignment holes and their mirror\n"
  9389. "images."
  9390. msgstr ""
  9391. "Cria um Objeto Excellon contendo os\n"
  9392. "furos de alinhamento especificados e suas\n"
  9393. "imagens espelhadas."
  9394. #: flatcamTools/ToolDblSided.py:254
  9395. msgid "Reset"
  9396. msgstr "Redefinir"
  9397. #: flatcamTools/ToolDblSided.py:256
  9398. msgid "Resets all the fields."
  9399. msgstr "Redefine todos os campos."
  9400. #: flatcamTools/ToolDblSided.py:306
  9401. msgid "2-Sided Tool"
  9402. msgstr "PCB 2 Faces"
  9403. #: flatcamTools/ToolDblSided.py:331
  9404. msgid ""
  9405. "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
  9406. "missing. Add them and retry."
  9407. msgstr ""
  9408. "[WARNING_NOTCL] A referência 'Ponto' está selecionada e as coordenadas do "
  9409. "'Ponto' estão faltando. Adicione-as e tente novamente."
  9410. #: flatcamTools/ToolDblSided.py:350
  9411. msgid ""
  9412. "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  9413. msgstr ""
  9414. "[WARNING_NOTCL] Não há objeto Caixa de referência carregado. Carregue um e "
  9415. "tente novamente."
  9416. #: flatcamTools/ToolDblSided.py:372
  9417. msgid ""
  9418. "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and "
  9419. "retry."
  9420. msgstr ""
  9421. "[WARNING_NOTCL] Nenhum valor ou formato incorreto para Diâmetro de Broca. "
  9422. "Altere e tente novamente."
  9423. #: flatcamTools/ToolDblSided.py:379
  9424. msgid ""
  9425. "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
  9426. "and retry."
  9427. msgstr ""
  9428. "[WARNING_NOTCL] Não há Coordenadas de Broca de Alinhamento para usar. "
  9429. "Adicione-as e tente novamente."
  9430. #: flatcamTools/ToolDblSided.py:402
  9431. msgid "[success] Excellon object with alignment drills created..."
  9432. msgstr "[success] Objeto Excellon com brocas de alinhamento criado ..."
  9433. #: flatcamTools/ToolDblSided.py:411
  9434. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  9435. msgstr "[WARNING_NOTCL] Não há objeto Gerber carregado ..."
  9436. #: flatcamTools/ToolDblSided.py:415 flatcamTools/ToolDblSided.py:458
  9437. #: flatcamTools/ToolDblSided.py:502
  9438. msgid ""
  9439. "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  9440. msgstr ""
  9441. "[ERROR_NOTCL] Apenas objetos Gerber, Excellon e Geometria podem ser "
  9442. "espelhados."
  9443. #: flatcamTools/ToolDblSided.py:425
  9444. msgid ""
  9445. "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
  9446. "mirroring reference."
  9447. msgstr ""
  9448. "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Usando Origem (0, 0) "
  9449. "como referência de espelhamento."
  9450. #: flatcamTools/ToolDblSided.py:435 flatcamTools/ToolDblSided.py:479
  9451. #: flatcamTools/ToolDblSided.py:516
  9452. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  9453. msgstr "[WARNING_NOTCL] Não há objeto Caixa carregado ..."
  9454. #: flatcamTools/ToolDblSided.py:445
  9455. #, python-format
  9456. msgid "[success] Gerber %s was mirrored..."
  9457. msgstr "[success] Gerber %s foi espelhado ..."
  9458. #: flatcamTools/ToolDblSided.py:454
  9459. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  9460. msgstr "[WARNING_NOTCL] Não há objeto Excellon carregado ..."
  9461. #: flatcamTools/ToolDblSided.py:469
  9462. msgid ""
  9463. "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
  9464. "coords and try again ..."
  9465. msgstr ""
  9466. "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Adicione as coordenadas "
  9467. "e tente novamente ..."
  9468. #: flatcamTools/ToolDblSided.py:489
  9469. #, python-format
  9470. msgid "[success] Excellon %s was mirrored..."
  9471. msgstr "[success] Excellon %s foi espelhado ..."
  9472. #: flatcamTools/ToolDblSided.py:498
  9473. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  9474. msgstr "[WARNING_NOTCL] Não há objeto Geometria carregado ..."
  9475. #: flatcamTools/ToolDblSided.py:526
  9476. #, python-format
  9477. msgid "[success] Geometry %s was mirrored..."
  9478. msgstr "[success] Geometria %s foi espelhada ..."
  9479. #: flatcamTools/ToolFilm.py:25
  9480. msgid "Film PCB"
  9481. msgstr "Filme PCB"
  9482. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9483. #: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:138
  9484. msgid "Object Type"
  9485. msgstr "Tipo de Objeto"
  9486. #: flatcamTools/ToolFilm.py:58
  9487. msgid ""
  9488. "Specify the type of object for which to create the film.\n"
  9489. "The object can be of type: Gerber or Geometry.\n"
  9490. "The selection here decide the type of objects that will be\n"
  9491. "in the Film Object combobox."
  9492. msgstr ""
  9493. "Especifique o tipo de objeto para o qual criar o filme.\n"
  9494. "O objeto pode ser do tipo: Gerber ou Geometria.\n"
  9495. "A seleção aqui decide o tipo de objetos que estarão\n"
  9496. "na caixa de combinação Objeto de Filme."
  9497. #: flatcamTools/ToolFilm.py:71
  9498. msgid "Film Object"
  9499. msgstr "Objeto de Filme"
  9500. #: flatcamTools/ToolFilm.py:73
  9501. msgid "Object for which to create the film."
  9502. msgstr "Objeto para o qual criar o filme."
  9503. #: flatcamTools/ToolFilm.py:89
  9504. msgid "Box Type:"
  9505. msgstr "Tipo de Caixa:"
  9506. #: flatcamTools/ToolFilm.py:91
  9507. msgid ""
  9508. "Specify the type of object to be used as an container for\n"
  9509. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9510. "the type of objects that will be\n"
  9511. "in the Box Object combobox."
  9512. msgstr ""
  9513. "Especifique o tipo de objeto a ser usado como um contêiner para a criação "
  9514. "de\n"
  9515. "filme. Pode ser: tipo Gerber ou Geometria. A seleção aqui decide o tipo de "
  9516. "objetos que estarão\n"
  9517. "na caixa de combinação Objeto Caixa."
  9518. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9519. msgid "Box Object"
  9520. msgstr "Objeto Caixa"
  9521. #: flatcamTools/ToolFilm.py:106
  9522. msgid ""
  9523. "The actual object that is used a container for the\n"
  9524. " selected object for which we create the film.\n"
  9525. "Usually it is the PCB outline but it can be also the\n"
  9526. "same object for which the film is created."
  9527. msgstr ""
  9528. "O objeto que é usado como um container para o objeto\n"
  9529. "selecionado para o qual criamos o filme.\n"
  9530. "Normalmente, é o contorno do PCB, mas também pode ser\n"
  9531. "do mesmo objeto para o qual o filme é criado."
  9532. #: flatcamTools/ToolFilm.py:114
  9533. msgid "Positive"
  9534. msgstr "Positivo"
  9535. #: flatcamTools/ToolFilm.py:115
  9536. msgid "Negative"
  9537. msgstr "Negativo"
  9538. #: flatcamTools/ToolFilm.py:157
  9539. msgid "Save Film"
  9540. msgstr "Salvar Filme"
  9541. #: flatcamTools/ToolFilm.py:159
  9542. msgid ""
  9543. "Create a Film for the selected object, within\n"
  9544. "the specified box. Does not create a new \n"
  9545. " FlatCAM object, but directly save it in SVG format\n"
  9546. "which can be opened with Inkscape."
  9547. msgstr ""
  9548. "Cria um filme para o objeto selecionado, dentro da caixa especificada. Não "
  9549. "cria um novo objeto\n"
  9550. "FlatCAM, mas salva-o diretamente no formato SVG\n"
  9551. "que pode ser aberto com o programa Inkscape."
  9552. #: flatcamTools/ToolFilm.py:230
  9553. msgid ""
  9554. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  9555. msgstr ""
  9556. "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para "
  9557. "Filme e tente novamente."
  9558. #: flatcamTools/ToolFilm.py:236
  9559. msgid ""
  9560. "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  9561. msgstr ""
  9562. "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para "
  9563. "Caixa e tente novamente."
  9564. #: flatcamTools/ToolFilm.py:260
  9565. msgid "Generating Film ..."
  9566. msgstr "Gerando Filme ..."
  9567. #: flatcamTools/ToolFilm.py:265 flatcamTools/ToolFilm.py:269
  9568. msgid "Export SVG positive"
  9569. msgstr "Exportar SVG positivo"
  9570. #: flatcamTools/ToolFilm.py:274
  9571. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  9572. msgstr "[WARNING_NOTCL] Exportar SVG positivo cancelado."
  9573. #: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
  9574. msgid "Export SVG negative"
  9575. msgstr "Exportar SVG negativo"
  9576. #: flatcamTools/ToolFilm.py:290
  9577. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  9578. msgstr "[WARNING_NOTCL] Exportar SVG negativo cancelado."
  9579. #: flatcamTools/ToolImage.py:25
  9580. msgid "Image as Object"
  9581. msgstr "Imagem como Objeto"
  9582. #: flatcamTools/ToolImage.py:31
  9583. msgid "Image to PCB"
  9584. msgstr "Imagem para PCB"
  9585. #: flatcamTools/ToolImage.py:55
  9586. msgid ""
  9587. "Specify the type of object to create from the image.\n"
  9588. "It can be of type: Gerber or Geometry."
  9589. msgstr ""
  9590. "Especifique o tipo de objeto a ser criado a partir da imagem.\n"
  9591. "Pode ser do tipo: Gerber ou Geometria."
  9592. #: flatcamTools/ToolImage.py:63
  9593. msgid "DPI value"
  9594. msgstr "Valor de DPI"
  9595. #: flatcamTools/ToolImage.py:65
  9596. msgid "Specify a DPI value for the image."
  9597. msgstr "Especifique um valor de DPI (pontos por polegada) para a imagem."
  9598. #: flatcamTools/ToolImage.py:72
  9599. msgid "Level of detail"
  9600. msgstr "Nível de detalhe"
  9601. #: flatcamTools/ToolImage.py:81
  9602. msgid "Image type"
  9603. msgstr "Tipo de imagem"
  9604. #: flatcamTools/ToolImage.py:83
  9605. msgid ""
  9606. "Choose a method for the image interpretation.\n"
  9607. "B/W means a black & white image. Color means a colored image."
  9608. msgstr ""
  9609. "Escolha um método para a interpretação da imagem.\n"
  9610. "P/B significa uma imagem em preto e branco. Cor significa uma imagem "
  9611. "colorida."
  9612. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9613. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9614. msgid "Mask value"
  9615. msgstr "Valor da máscara"
  9616. #: flatcamTools/ToolImage.py:92
  9617. msgid ""
  9618. "Mask for monochrome image.\n"
  9619. "Takes values between [0 ... 255].\n"
  9620. "Decides the level of details to include\n"
  9621. "in the resulting geometry.\n"
  9622. "0 means no detail and 255 means everything \n"
  9623. "(which is totally black)."
  9624. msgstr ""
  9625. "Máscara para imagem monocromática.\n"
  9626. "Valores entre [0 ... 255].\n"
  9627. "Define o nível de detalhes para incluir\n"
  9628. "na geometria resultante.\n"
  9629. "0 significa nenhum detalhe e 255 significa tudo\n"
  9630. "(que é totalmente preto)."
  9631. #: flatcamTools/ToolImage.py:105
  9632. msgid ""
  9633. "Mask for RED color.\n"
  9634. "Takes values between [0 ... 255].\n"
  9635. "Decides the level of details to include\n"
  9636. "in the resulting geometry."
  9637. msgstr ""
  9638. "Máscara para a cor VERMELHA.\n"
  9639. "Valores entre [0 ... 255].\n"
  9640. "Define o nível de detalhes para incluir\n"
  9641. "na geometria resultante."
  9642. #: flatcamTools/ToolImage.py:116
  9643. msgid ""
  9644. "Mask for GREEN color.\n"
  9645. "Takes values between [0 ... 255].\n"
  9646. "Decides the level of details to include\n"
  9647. "in the resulting geometry."
  9648. msgstr ""
  9649. "Máscara para a cor VERDE.\n"
  9650. "Valores entre [0 ... 255].\n"
  9651. "Define o nível de detalhes para incluir\n"
  9652. "na geometria resultante."
  9653. #: flatcamTools/ToolImage.py:127
  9654. msgid ""
  9655. "Mask for BLUE color.\n"
  9656. "Takes values between [0 ... 255].\n"
  9657. "Decides the level of details to include\n"
  9658. "in the resulting geometry."
  9659. msgstr ""
  9660. "Máscara para a cor AZUL.\n"
  9661. "Valores entre [0 ... 255].\n"
  9662. "Define o nível de detalhes para incluir\n"
  9663. "na geometria resultante."
  9664. #: flatcamTools/ToolImage.py:139
  9665. msgid "Import image"
  9666. msgstr "Importar imagem"
  9667. #: flatcamTools/ToolImage.py:141
  9668. msgid "Open a image of raster type and then import it in FlatCAM."
  9669. msgstr "Abre uma imagem do tipo raster e importe-a no FlatCAM."
  9670. #: flatcamTools/ToolImage.py:175
  9671. msgid "Image Tool"
  9672. msgstr "Ferramenta de Imagem"
  9673. #: flatcamTools/ToolImage.py:205 flatcamTools/ToolImage.py:208
  9674. msgid "Import IMAGE"
  9675. msgstr "Importar IMAGEM"
  9676. #: flatcamTools/ToolMeasurement.py:26
  9677. msgid "Measurement"
  9678. msgstr "Medição"
  9679. #: flatcamTools/ToolMeasurement.py:44
  9680. msgid "Those are the units in which the distance is measured."
  9681. msgstr "Unidade em que a distância é medida."
  9682. #: flatcamTools/ToolMeasurement.py:45
  9683. msgid "METRIC (mm)"
  9684. msgstr "Métrico (mm):"
  9685. #: flatcamTools/ToolMeasurement.py:45
  9686. msgid "INCH (in)"
  9687. msgstr "Inglês (in)"
  9688. #: flatcamTools/ToolMeasurement.py:48
  9689. msgid "Start"
  9690. msgstr "Início"
  9691. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  9692. msgid "Coords"
  9693. msgstr "Coords"
  9694. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  9695. msgid "This is measuring Start point coordinates."
  9696. msgstr "Coordenadas do ponto inicial da medição."
  9697. #: flatcamTools/ToolMeasurement.py:51
  9698. msgid "Stop"
  9699. msgstr "Final"
  9700. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  9701. msgid "This is the measuring Stop point coordinates."
  9702. msgstr "Coordenadas do ponto final da medição."
  9703. #: flatcamTools/ToolMeasurement.py:54
  9704. msgid "Dx"
  9705. msgstr "Dx"
  9706. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  9707. msgid "This is the distance measured over the X axis."
  9708. msgstr "Distância medida no eixo X."
  9709. #: flatcamTools/ToolMeasurement.py:57
  9710. msgid "Dy"
  9711. msgstr "Dy"
  9712. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  9713. msgid "This is the distance measured over the Y axis."
  9714. msgstr "Distância medida no eixo Y."
  9715. #: flatcamTools/ToolMeasurement.py:60
  9716. msgid "DISTANCE"
  9717. msgstr "DISTÂNCIA"
  9718. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  9719. msgid "This is the point to point Euclidian distance."
  9720. msgstr "Este é o ponto a apontar a distância euclidiana."
  9721. #: flatcamTools/ToolMeasurement.py:83
  9722. msgid "Measure"
  9723. msgstr "Medir"
  9724. #: flatcamTools/ToolMeasurement.py:131
  9725. msgid "Meas. Tool"
  9726. msgstr "Ferramenta de Medição"
  9727. #: flatcamTools/ToolMeasurement.py:176
  9728. msgid "MEASURING: Click on the Start point ..."
  9729. msgstr "MEDIÇÃO: Clique no ponto inicial ..."
  9730. #: flatcamTools/ToolMeasurement.py:269
  9731. msgid "MEASURING: Click on the Destination point ..."
  9732. msgstr "MEDIÇÃO: Clique no ponto final ..."
  9733. #: flatcamTools/ToolMeasurement.py:277
  9734. #, python-brace-format
  9735. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9736. msgstr "MEDIÇÃO: Resultado D(x) = {d_x} | D(y) = {d_y} | Distância = {d_z}"
  9737. #: flatcamTools/ToolMove.py:81
  9738. msgid "MOVE: Click on the Start point ..."
  9739. msgstr "MOVER: Clique no ponto inicial ..."
  9740. #: flatcamTools/ToolMove.py:88
  9741. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  9742. msgstr "[WARNING_NOTCL] Ação MOVER cancelada. Nenhum objeto para mover."
  9743. #: flatcamTools/ToolMove.py:110
  9744. msgid "MOVE: Click on the Destination point ..."
  9745. msgstr "MOVER: Clique no ponto de destino ..."
  9746. #: flatcamTools/ToolMove.py:128
  9747. msgid "Moving ..."
  9748. msgstr "Movendo ..."
  9749. #: flatcamTools/ToolMove.py:135
  9750. msgid "[WARNING_NOTCL] No object(s) selected."
  9751. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  9752. #: flatcamTools/ToolMove.py:158
  9753. #, python-format
  9754. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9755. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  9756. #: flatcamTools/ToolMove.py:164
  9757. #, python-format
  9758. msgid "[success] %s object was moved ..."
  9759. msgstr "[success] objeto %s foi movido ..."
  9760. #: flatcamTools/ToolMove.py:174
  9761. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  9762. msgstr ""
  9763. "[ERROR_NOTCL] ToolMove.on_left_click() --> Erro ao clicar no botão esquerdo "
  9764. "do mouse."
  9765. #: flatcamTools/ToolMove.py:202
  9766. msgid "[WARNING_NOTCL] Move action cancelled."
  9767. msgstr "[WARNING_NOTCL] Ação Mover cancelada."
  9768. #: flatcamTools/ToolMove.py:214
  9769. msgid "[WARNING_NOTCL] Object(s) not selected"
  9770. msgstr "[WARNING_NOTCL] Objeto(s) não selecionado(s)"
  9771. #: flatcamTools/ToolNonCopperClear.py:26
  9772. msgid "Non-Copper Clearing"
  9773. msgstr "Área Sem Cobre (NCC)"
  9774. #: flatcamTools/ToolNonCopperClear.py:71
  9775. msgid ""
  9776. "Specify the type of object to be cleared of excess copper.\n"
  9777. "It can be of type: Gerber or Geometry.\n"
  9778. "What is selected here will dictate the kind\n"
  9779. "of objects that will populate the 'Object' combobox."
  9780. msgstr ""
  9781. "Especifique o tipo de objeto a ser limpo do excesso de cobre.\n"
  9782. "Pode ser do tipo: Gerber ou Geometry.\n"
  9783. "O que é selecionado aqui irá ditar o tipo\n"
  9784. "de objetos que preencherão a caixa de combinação 'Objeto'."
  9785. #: flatcamTools/ToolNonCopperClear.py:88
  9786. msgid "Object to be cleared of excess copper."
  9787. msgstr "Objeto a ser limpo de excesso de cobre."
  9788. #: flatcamTools/ToolNonCopperClear.py:98
  9789. msgid ""
  9790. "Tools pool from which the algorithm\n"
  9791. "will pick the ones used for copper clearing."
  9792. msgstr ""
  9793. "Conjunto de ferramentas do qual o algoritmo\n"
  9794. "escolherá aquelas usados para limpeza de cobre."
  9795. #: flatcamTools/ToolNonCopperClear.py:113
  9796. msgid ""
  9797. "This is the Tool Number.\n"
  9798. "Non copper clearing will start with the tool with the biggest \n"
  9799. "diameter, continuing until there are no more tools.\n"
  9800. "Only tools that create NCC clearing geometry will still be present\n"
  9801. "in the resulting geometry. This is because with some tools\n"
  9802. "this function will not be able to create painting geometry."
  9803. msgstr ""
  9804. "Este é o Número da Ferramenta.\n"
  9805. "A retirada de cobre (NCC) começará com a ferramenta de maior diâmetro,\n"
  9806. "continuando até que não haja mais ferramentas. As únicas ferramentas\n"
  9807. "que criam a geometria de NCC ainda estarão presentes na geometria\n"
  9808. "resultante. Isso ocorre porque com algumas ferramentas esta função\n"
  9809. "não será capaz de criar geometria de pintura."
  9810. #: flatcamTools/ToolNonCopperClear.py:125 flatcamTools/ToolPaint.py:124
  9811. msgid ""
  9812. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9813. "informative only. Being circular, <BR>the cut width in material is exactly "
  9814. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9815. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9816. "parameter in the resulting geometry UI form and enable two additional UI "
  9817. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9818. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9819. "material will be equal with the value in the Tool Diameter column of this "
  9820. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9821. "the Operation Type in the resulting geometry as Isolation."
  9822. msgstr ""
  9823. "O Tipo de Ferramenta (TF) pode ser:<BR>- <B>Circular</B> com 1 ... 4 dentes -"
  9824. "> é apenas informativo. Como é circular, <BR>a largura do corte é igual ao "
  9825. "diâmetro da ferramenta.<BR>- <B>Bola</B> -> apenas informativo e faz "
  9826. "referência a uma fresa do tipo bola.<BR>- <B>Forma em V</B> -> o parâmetro "
  9827. "corte Z será desativado no formulário e serão habilitados dois campos "
  9828. "adicionais: Diâmetro da Ponta-V e Ângulo da Ponta-V. Ajustando esses dois "
  9829. "parâmetros irá alterar o parâmetro Corte Z como a largura de corte no "
  9830. "material, será igual ao valor na coluna Diâmetro da Ferramenta desta tabela."
  9831. "<BR>Escolhendo o tipo <B>Forma em V</B> automaticamente selecionará o Tipo "
  9832. "de Operação Isolação."
  9833. #: flatcamTools/ToolNonCopperClear.py:162
  9834. msgid "Diameter for the new tool to add in the Tool Table"
  9835. msgstr ""
  9836. "Diâmetro para a nova ferramenta para adicionar na tabela de ferramentas"
  9837. #: flatcamTools/ToolNonCopperClear.py:184 flatcamTools/ToolPaint.py:190
  9838. #: flatcamTools/ToolSolderPaste.py:123
  9839. msgid ""
  9840. "Delete a selection of tools in the Tool Table\n"
  9841. "by first selecting a row(s) in the Tool Table."
  9842. msgstr ""
  9843. "Apague uma seleção de ferramentas na Tabela de Ferramentas selecionando "
  9844. "primeiro a(s) linha(s) na Tabela de Ferramentas."
  9845. #: flatcamTools/ToolNonCopperClear.py:314 flatcamTools/ToolPaint.py:295
  9846. msgid "Area Selection"
  9847. msgstr "Seleção de Área"
  9848. #: flatcamTools/ToolNonCopperClear.py:315 flatcamTools/ToolPaint.py:297
  9849. msgid "Reference Object"
  9850. msgstr "Objeto de referência"
  9851. #: flatcamTools/ToolNonCopperClear.py:317
  9852. msgid "Reference:"
  9853. msgstr "Referência:"
  9854. #: flatcamTools/ToolNonCopperClear.py:332 flatcamTools/ToolPaint.py:312
  9855. msgid "Ref. Type"
  9856. msgstr "Tipo de ref."
  9857. #: flatcamTools/ToolNonCopperClear.py:334
  9858. msgid ""
  9859. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  9860. "It can be Gerber, Excellon or Geometry."
  9861. msgstr ""
  9862. "O tipo de objeto FlatCAM a ser usado como referência de limpeza não cobre.\n"
  9863. "Pode ser Gerber, Excellon ou Geometria."
  9864. #: flatcamTools/ToolNonCopperClear.py:343 flatcamTools/ToolPaint.py:323
  9865. msgid "Ref. Object"
  9866. msgstr "Objeto de ref."
  9867. #: flatcamTools/ToolNonCopperClear.py:345 flatcamTools/ToolPaint.py:325
  9868. msgid "The FlatCAM object to be used as non copper clearing reference."
  9869. msgstr "O objeto FlatCAM a ser usado como referência de limpeza não cobre."
  9870. #: flatcamTools/ToolNonCopperClear.py:358
  9871. msgid "Generate Geometry"
  9872. msgstr "Gerar Geometria"
  9873. #: flatcamTools/ToolNonCopperClear.py:689 flatcamTools/ToolPaint.py:700
  9874. #: flatcamTools/ToolSolderPaste.py:768
  9875. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  9876. msgstr ""
  9877. "[WARNING_NOTCL] Insira um diâmetro de ferramenta para adicionar, no formato "
  9878. "Flutuante."
  9879. #: flatcamTools/ToolNonCopperClear.py:718 flatcamTools/ToolPaint.py:724
  9880. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  9881. msgstr ""
  9882. "[WARNING_NOTCL] Adição cancelada. Ferramenta já está na Tabela de "
  9883. "Ferramentas."
  9884. #: flatcamTools/ToolNonCopperClear.py:723 flatcamTools/ToolPaint.py:729
  9885. msgid "[success] New tool added to Tool Table."
  9886. msgstr "[success] Nova ferramenta adicionada à Tabela de Ferramentas."
  9887. #: flatcamTools/ToolNonCopperClear.py:765 flatcamTools/ToolPaint.py:774
  9888. msgid "[success] Tool from Tool Table was edited."
  9889. msgstr "[sucss] A ferramenta da Tabela de Ferramentas foi editada."
  9890. #: flatcamTools/ToolNonCopperClear.py:776 flatcamTools/ToolPaint.py:785
  9891. #: flatcamTools/ToolSolderPaste.py:855
  9892. msgid ""
  9893. "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
  9894. "Table."
  9895. msgstr ""
  9896. "[WARNING_NOTCL] Editar cancelado. O novo valor de diâmetro já está na tabela "
  9897. "de ferramentas."
  9898. #: flatcamTools/ToolNonCopperClear.py:816 flatcamTools/ToolPaint.py:884
  9899. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  9900. msgstr ""
  9901. "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta para excluir."
  9902. #: flatcamTools/ToolNonCopperClear.py:821 flatcamTools/ToolPaint.py:889
  9903. msgid "[success] Tool(s) deleted from Tool Table."
  9904. msgstr "[success] Ferramenta(s) excluída(s) da Tabela de Ferramentas."
  9905. #: flatcamTools/ToolNonCopperClear.py:849
  9906. msgid "[WARNING_NOTCL] Click the start point of the area."
  9907. msgstr "[WARNING_NOTCL] Clique no ponto inicial da área."
  9908. #: flatcamTools/ToolNonCopperClear.py:860 flatcamTools/ToolPaint.py:991
  9909. msgid "[WARNING_NOTCL] Click the end point of the paint area."
  9910. msgstr "[WARNING_NOTCL] Clique no ponto final da área de pintura."
  9911. #: flatcamTools/ToolNonCopperClear.py:866 flatcamTools/ToolPaint.py:997
  9912. msgid "Zone added. Right click to finish."
  9913. msgstr "Zona adicionada. Clique com o botão direito para terminar."
  9914. #: flatcamTools/ToolNonCopperClear.py:959 flatcamTools/ToolPaint.py:912
  9915. msgid ""
  9916. "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9917. msgstr ""
  9918. "[ERROR_NOTCL] O valor de sobreposição deve estar entre 0 (inclusive) e 1 "
  9919. "(exclusivo),"
  9920. #: flatcamTools/ToolNonCopperClear.py:1027 flatcamTools/ToolPaint.py:1109
  9921. msgid "[ERROR_NOTCL] No object available."
  9922. msgstr "[ERROR_NOTCL] Nenhum objeto disponível."
  9923. #: flatcamTools/ToolNonCopperClear.py:1033
  9924. #: flatcamTools/ToolNonCopperClear.py:1042
  9925. msgid "[WARNING_NOTCL] Buffering ..."
  9926. msgstr "[WARNING_NOTCL] Carregando ..."
  9927. #: flatcamTools/ToolNonCopperClear.py:1035
  9928. #: flatcamTools/ToolNonCopperClear.py:1044
  9929. msgid "[success] Buffering finished ..."
  9930. msgstr "[success] Buffering terminou ..."
  9931. #: flatcamTools/ToolNonCopperClear.py:1049
  9932. msgid "[ERROR_NOTCL] The selected object is not suitable for copper clearing."
  9933. msgstr ""
  9934. "[ERROR_NOTCL] O objeto selecionado não é adequado para limpeza de cobre."
  9935. #: flatcamTools/ToolNonCopperClear.py:1056
  9936. msgid ""
  9937. "[ERROR_NOTCL] Could not get the extent of the area to be non copper cleared."
  9938. msgstr ""
  9939. "[ERROR_NOTCL] Não foi possível obter a extensão da área para não ser de "
  9940. "cobre limpo."
  9941. #: flatcamTools/ToolNonCopperClear.py:1096
  9942. #: flatcamTools/ToolNonCopperClear.py:1217
  9943. msgid "Clearing Non-Copper areas."
  9944. msgstr "Limpando áreas Sem-Cobre."
  9945. #: flatcamTools/ToolNonCopperClear.py:1115
  9946. #, python-format
  9947. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  9948. msgstr "[success] Limpeza de Área Sem-Cobre com Diâmetro = %s iniciada."
  9949. #: flatcamTools/ToolNonCopperClear.py:1184
  9950. #, python-format
  9951. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9952. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  9953. #: flatcamTools/ToolNonCopperClear.py:1189
  9954. msgid "[success] NCC Tool finished."
  9955. msgstr "[success] Retirada de cobre concluída."
  9956. #: flatcamTools/ToolNonCopperClear.py:1191
  9957. msgid ""
  9958. "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
  9959. "cleared. Check the result."
  9960. msgstr ""
  9961. "[WARNING_NOTCL] A retirada de cobre foi concluída, mas alguns recursos do "
  9962. "PCB\n"
  9963. "não puderam ser retirados. Verifique o resultado."
  9964. #: flatcamTools/ToolNonCopperClear.py:1236
  9965. #, python-format
  9966. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  9967. msgstr "[success] Limpeza de cobre iniciada com diâmetro = %s."
  9968. #: flatcamTools/ToolNonCopperClear.py:1334
  9969. #, python-format
  9970. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9971. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  9972. #: flatcamTools/ToolNonCopperClear.py:1342
  9973. msgid ""
  9974. "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
  9975. "settings."
  9976. msgstr ""
  9977. "[ERROR_NOTCL] A limpeza foi concluída, mas não pôde limpar o objeto com as "
  9978. "configurações atuais."
  9979. #: flatcamTools/ToolPDF.py:38
  9980. msgid "PDF Import Tool"
  9981. msgstr "Ferramenta de Importação de PDF"
  9982. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9983. msgid "Open PDF"
  9984. msgstr "Abrir PDF"
  9985. #: flatcamTools/ToolPDF.py:159
  9986. msgid "[WARNING_NOTCL] Open PDF cancelled."
  9987. msgstr "[WARNING_NOTCL] Abrir PDF cancelado."
  9988. #: flatcamTools/ToolPDF.py:186
  9989. msgid "Parsing PDF file ..."
  9990. msgstr "Analisando arquivo PDF ..."
  9991. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  9992. #, python-format
  9993. msgid "Rendering PDF layer #%d ..."
  9994. msgstr "Renderizando camada PDF # %d ..."
  9995. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  9996. msgid "[ERROR_NOTCL] Open PDF file failed."
  9997. msgstr "[ERROR_NOTCL] Falha ao abrir arquivo PDF."
  9998. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  9999. #, python-format
  10000. msgid "[success] Rendered: %s"
  10001. msgstr "[success] Processado: %s"
  10002. #: flatcamTools/ToolPaint.py:70
  10003. msgid ""
  10004. "Specify the type of object to be painted.\n"
  10005. "It can be of type: Gerber or Geometry.\n"
  10006. "What is selected here will dictate the kind\n"
  10007. "of objects that will populate the 'Object' combobox."
  10008. msgstr ""
  10009. "Especifique o tipo de objeto a ser pintado.\n"
  10010. "Pode ser do tipo: Gerber ou Geometry.\n"
  10011. "O que é selecionado aqui irá ditar o tipo\n"
  10012. "de objetos que preencherão a caixa de combinação 'Objeto'."
  10013. #: flatcamTools/ToolPaint.py:87
  10014. msgid "Object to be painted."
  10015. msgstr "Objeto a ser pintado."
  10016. #: flatcamTools/ToolPaint.py:97
  10017. msgid ""
  10018. "Tools pool from which the algorithm\n"
  10019. "will pick the ones used for painting."
  10020. msgstr ""
  10021. "Conjunto de ferramentas do qual o algoritmo\n"
  10022. "escolherá os usados para a pintura."
  10023. #: flatcamTools/ToolPaint.py:112
  10024. msgid ""
  10025. "This is the Tool Number.\n"
  10026. "Painting will start with the tool with the biggest diameter,\n"
  10027. "continuing until there are no more tools.\n"
  10028. "Only tools that create painting geometry will still be present\n"
  10029. "in the resulting geometry. This is because with some tools\n"
  10030. "this function will not be able to create painting geometry."
  10031. msgstr ""
  10032. "Este é o Número da Ferramenta.\n"
  10033. "A pintura começará com a ferramenta com o maior diâmetro,\n"
  10034. "continuando até que não haja mais ferramentas.\n"
  10035. "As únicas ferramentas que criam a geometria da pintura ainda estarão "
  10036. "presentes\n"
  10037. "na geometria resultante. Isso ocorre porque com algumas ferramentas\n"
  10038. "não são capazes de criar geometria de pintura nesta função."
  10039. #: flatcamTools/ToolPaint.py:164
  10040. msgid "Diameter for the new tool."
  10041. msgstr "Diâmetro para a nova ferramenta."
  10042. #: flatcamTools/ToolPaint.py:269
  10043. msgid ""
  10044. "If checked, use 'rest machining'.\n"
  10045. "Basically it will clear copper outside PCB features,\n"
  10046. "using the biggest tool and continue with the next tools,\n"
  10047. "from bigger to smaller, to clear areas of copper that\n"
  10048. "could not be cleared by previous tool, until there is\n"
  10049. "no more copper to clear or there are no more tools.\n"
  10050. "\n"
  10051. "If not checked, use the standard algorithm."
  10052. msgstr ""
  10053. "Se marcada, usa 'usinagem de descanso'.\n"
  10054. "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  10055. "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  10056. "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  10057. "retiradas com a ferramenta anterior.\n"
  10058. "Se não estiver marcada, usa o algoritmo padrão."
  10059. #: flatcamTools/ToolPaint.py:284
  10060. msgid ""
  10061. "How to select the polygons to paint.<BR>Options:<BR>- <B>Single Polygons</"
  10062. "B>: left mouse click on the polygon to be painted.<BR>- <B>Area Selection</"
  10063. "B>: left mouse click to start selection of the area to be painted.<BR>- "
  10064. "<B>All Polygons</B>: paint all polygons.<BR>- <B>Reference Object</B>: paint "
  10065. "an area described by an external reference object."
  10066. msgstr ""
  10067. "Como selecionar os polígonos para pintar. <BR>Opções: <BR>-<B> Single "
  10068. "Polygons </B>: clique com o botão esquerdo do mouse no polígono a ser "
  10069. "pintado. <BR>-<B> Seleção de Área </B> : clique com o botão esquerdo do "
  10070. "mouse para iniciar a seleção da área a ser pintada. <BR>-<B> Todos os "
  10071. "polígonos </B>: pintar todos os polígonos. <BR>-<B> Objeto de referência </"
  10072. "B>: pintar uma área descrita por um objeto de referência externo."
  10073. #: flatcamTools/ToolPaint.py:294
  10074. msgid "Single Polygon"
  10075. msgstr "Polígono Único"
  10076. #: flatcamTools/ToolPaint.py:296
  10077. msgid "All Polygons"
  10078. msgstr "Todos os polígonos"
  10079. #: flatcamTools/ToolPaint.py:314
  10080. msgid ""
  10081. "The type of FlatCAM object to be used as paint reference.\n"
  10082. "It can be Gerber, Excellon or Geometry."
  10083. msgstr ""
  10084. "O tipo de objeto FlatCAM a ser usado como referência de pintura.\n"
  10085. "Pode ser Gerber, Excellon ou Geometria."
  10086. #: flatcamTools/ToolPaint.py:339
  10087. msgid "Create Paint Geometry"
  10088. msgstr "Criar Geometria de Pintura"
  10089. #: flatcamTools/ToolPaint.py:341
  10090. msgid ""
  10091. "- 'Area Selection' - left mouse click to start selection of the area to be "
  10092. "painted.\n"
  10093. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  10094. "areas.\n"
  10095. "- 'All Polygons' - the Paint will start after click.\n"
  10096. "- 'Reference Object' - will do non copper clearing within the area\n"
  10097. "specified by another object."
  10098. msgstr ""
  10099. "- 'Seleção de Área' - clique com o botão esquerdo do mouse para iniciar a "
  10100. "seleção da área a ser pintada.\n"
  10101. "Manter uma tecla modificadora pressionada (CTRL ou SHIFT) permitirá "
  10102. "adicionar várias áreas.\n"
  10103. "- 'Todos os polígonos' - o Paint será iniciado após o clique.\n"
  10104. "- 'Objeto de Referência' - fará limpeza não de cobre dentro da área\n"
  10105. "especificado por outro objeto."
  10106. #: flatcamTools/ToolPaint.py:897
  10107. msgid "geometry_on_paint_button"
  10108. msgstr "geometry_on_paint_button"
  10109. #: flatcamTools/ToolPaint.py:916 flatcamTools/ToolPaint.py:952
  10110. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  10111. msgstr "[WARNING_NOTCL] Clique dentro do polígono desejado."
  10112. #: flatcamTools/ToolPaint.py:939
  10113. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  10114. msgstr "[ERROR_NOTCL] Não é possível pintar geometrias MultiGeo ..."
  10115. #: flatcamTools/ToolPaint.py:961 flatcamTools/ToolPaint.py:1305
  10116. #: flatcamTools/ToolPaint.py:1612
  10117. msgid "Painting polygon..."
  10118. msgstr "Pintando o polígono..."
  10119. #: flatcamTools/ToolPaint.py:980
  10120. msgid "[WARNING_NOTCL] Click the start point of the paint area."
  10121. msgstr "[WARNING_NOTCL] Clique no ponto inicial da área de pintura."
  10122. #: flatcamTools/ToolPaint.py:1154
  10123. msgid "[WARNING] No polygon found."
  10124. msgstr "[WARNING] Nenhum polígono encontrado."
  10125. #: flatcamTools/ToolPaint.py:1157
  10126. msgid "Painting polygon."
  10127. msgstr "Pintando o polígono."
  10128. #: flatcamTools/ToolPaint.py:1199
  10129. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  10130. msgstr "[ERROR_NOTCL] A geometria não pode ser pintada completamente"
  10131. #: flatcamTools/ToolPaint.py:1225
  10132. #, python-format
  10133. msgid ""
  10134. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
  10135. "different strategy of paint\n"
  10136. "%s"
  10137. msgstr ""
  10138. "[ERROR] Não foi possível pintar. Tente uma combinação diferente de "
  10139. "parâmetros ou uma estratégia diferente de pintura\n"
  10140. "%s"
  10141. #: flatcamTools/ToolPaint.py:1267
  10142. #, python-format
  10143. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  10144. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  10145. #: flatcamTools/ToolPaint.py:1273 flatcamTools/ToolPaint.py:1579
  10146. #: flatcamTools/ToolPaint.py:1882
  10147. msgid "Polygon Paint started ..."
  10148. msgstr "Pintura de polígonos iniciada ..."
  10149. #: flatcamTools/ToolPaint.py:1433 flatcamTools/ToolPaint.py:1524
  10150. #: flatcamTools/ToolPaint.py:1736 flatcamTools/ToolPaint.py:1827
  10151. #, python-format
  10152. msgid ""
  10153. "[ERROR] Could not do Paint All. Try a different combination of parameters. "
  10154. "Or a different Method of paint\n"
  10155. "%s"
  10156. msgstr ""
  10157. "[ERROR] Não foi possível pintar todos. Tente uma combinação diferente de "
  10158. "parâmetros, ou um método diferente de pintura\n"
  10159. "%s"
  10160. #: flatcamTools/ToolPaint.py:1457 flatcamTools/ToolPaint.py:1760
  10161. msgid ""
  10162. "[ERROR] There is no Painting Geometry in the file.\n"
  10163. "Usually it means that the tool diameter is too big for the painted "
  10164. "geometry.\n"
  10165. "Change the painting parameters and try again."
  10166. msgstr ""
  10167. "[ERROR] Não há geometria de pintura no arquivo.\n"
  10168. "Normalmente significa que o diâmetro da ferramenta é muito grande para a "
  10169. "geometria pintada.\n"
  10170. "Mude os parâmetros de pintura e tente novamente."
  10171. #: flatcamTools/ToolPaint.py:1466 flatcamTools/ToolPaint.py:1769
  10172. msgid "[success] Paint All Done."
  10173. msgstr "[success] Pintura finalizada."
  10174. #: flatcamTools/ToolPaint.py:1554 flatcamTools/ToolPaint.py:1857
  10175. msgid ""
  10176. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  10177. "Usually it means that the tool diameter is too big for the painted "
  10178. "geometry.\n"
  10179. "Change the painting parameters and try again."
  10180. msgstr ""
  10181. "[ERROR_NOTCL] Não há geometria de pintura no arquivo.\n"
  10182. "Normalmente significa que o diâmetro da ferramenta é muito grande para a "
  10183. "geometria pintada.\n"
  10184. "Mude os parâmetros de pintura e tente novamente."
  10185. #: flatcamTools/ToolPaint.py:1563 flatcamTools/ToolPaint.py:1866
  10186. msgid "[success] Paint All with Rest-Machining done."
  10187. msgstr "[success] Pintura finalizada."
  10188. #: flatcamTools/ToolPanelize.py:25
  10189. msgid "Panelize PCB"
  10190. msgstr "Criar Painel com PCB"
  10191. #: flatcamTools/ToolPanelize.py:58
  10192. msgid ""
  10193. "Specify the type of object to be panelized\n"
  10194. "It can be of type: Gerber, Excellon or Geometry.\n"
  10195. "The selection here decide the type of objects that will be\n"
  10196. "in the Object combobox."
  10197. msgstr ""
  10198. "Especifique o tipo de objeto para criar um painel\n"
  10199. "Pode ser do tipo: Gerber, Excellon ou Geometria.\n"
  10200. "A seleção aqui decide o tipo de objetos que estarão\n"
  10201. "na Caixa de Objetos."
  10202. #: flatcamTools/ToolPanelize.py:73
  10203. msgid ""
  10204. "Object to be panelized. This means that it will\n"
  10205. "be duplicated in an array of rows and columns."
  10206. msgstr ""
  10207. "Objeto para criar painel. Isso significa\n"
  10208. "que ele será duplicado em uma matriz de linhas e colunas."
  10209. #: flatcamTools/ToolPanelize.py:86
  10210. msgid "Penelization Reference"
  10211. msgstr "Referência para Criação de Painel"
  10212. #: flatcamTools/ToolPanelize.py:88
  10213. msgid ""
  10214. "Choose the reference for panelization:\n"
  10215. "- Object = the bounding box of a different object\n"
  10216. "- Bounding Box = the bounding box of the object to be panelized\n"
  10217. "\n"
  10218. "The reference is useful when doing panelization for more than one\n"
  10219. "object. The spacings (really offsets) will be applied in reference\n"
  10220. "to this reference object therefore maintaining the panelized\n"
  10221. "objects in sync."
  10222. msgstr ""
  10223. "Escolha a referência para criação do painel:\n"
  10224. "- Objeto = a caixa delimitadora de um objeto diferente\n"
  10225. "- Caixa Delimitadora = a caixa delimitadora do objeto para criar o painel\n"
  10226. "\n"
  10227. "A referência é útil ao criar um painel para mais de um objeto.\n"
  10228. "Os espaçamentos (deslocamentos) serão aplicados em referência\n"
  10229. "a este objeto de referência, portanto, mantendo os objetos\n"
  10230. "sincronizados no painel."
  10231. #: flatcamTools/ToolPanelize.py:111
  10232. msgid "Box Type"
  10233. msgstr "Tipo de Caixa"
  10234. #: flatcamTools/ToolPanelize.py:113
  10235. msgid ""
  10236. "Specify the type of object to be used as an container for\n"
  10237. "panelization. It can be: Gerber or Geometry type.\n"
  10238. "The selection here decide the type of objects that will be\n"
  10239. "in the Box Object combobox."
  10240. msgstr ""
  10241. "Especifique o tipo de objeto a ser usado como um contêiner para\n"
  10242. "o painel criado. Pode ser: tipo Gerber ou Geometria.\n"
  10243. "A seleção aqui decide o tipo de objetos que estarão na\n"
  10244. "Caixa de Objetos."
  10245. #: flatcamTools/ToolPanelize.py:128
  10246. msgid ""
  10247. "The actual object that is used a container for the\n"
  10248. " selected object that is to be panelized."
  10249. msgstr ""
  10250. "O objeto usado como contêiner para o objeto\n"
  10251. "selecionado para o qual será criado um painel."
  10252. #: flatcamTools/ToolPanelize.py:134
  10253. msgid "Panel Data"
  10254. msgstr "Dados do Painel"
  10255. #: flatcamTools/ToolPanelize.py:136
  10256. msgid ""
  10257. "This informations will shape the resulting panel.\n"
  10258. "The number of rows and columns will set how many\n"
  10259. "duplicates of the original geometry will be generated.\n"
  10260. "\n"
  10261. "The spacings will set the distance between any two\n"
  10262. "elements of the panel array."
  10263. msgstr ""
  10264. "Essas informações moldarão o painel resultante.\n"
  10265. "O número de linhas e colunas definirá quantas\n"
  10266. "duplicatas da geometria original serão geradas.\n"
  10267. "\n"
  10268. "Os espaçamentos definirão a distância entre os\n"
  10269. "elementos da matriz do painel."
  10270. #: flatcamTools/ToolPanelize.py:185
  10271. msgid ""
  10272. "Choose the type of object for the panel object:\n"
  10273. "- Geometry\n"
  10274. "- Gerber"
  10275. msgstr ""
  10276. "Escolha o tipo de objeto para o objeto de painel:\n"
  10277. "- Geometria\n"
  10278. "- Gerber"
  10279. #: flatcamTools/ToolPanelize.py:193
  10280. msgid "Constrain panel within"
  10281. msgstr "Restringir painel dentro de"
  10282. #: flatcamTools/ToolPanelize.py:227
  10283. msgid "Panelize Object"
  10284. msgstr "Criar Painel"
  10285. #: flatcamTools/ToolPanelize.py:229
  10286. msgid ""
  10287. "Panelize the specified object around the specified box.\n"
  10288. "In other words it creates multiple copies of the source object,\n"
  10289. "arranged in a 2D array of rows and columns."
  10290. msgstr ""
  10291. "Cria um painel do objeto especificado ao redor da caixa especificada.\n"
  10292. "Em outras palavras, ele cria várias cópias do objeto de origem,\n"
  10293. "arranjado em uma matriz 2D de linhas e colunas."
  10294. #: flatcamTools/ToolPanelize.py:277
  10295. msgid "Panel. Tool"
  10296. msgstr "Ferramenta de Painel"
  10297. #: flatcamTools/ToolPanelize.py:377
  10298. #, python-format
  10299. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  10300. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  10301. #: flatcamTools/ToolPanelize.py:460
  10302. msgid ""
  10303. "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive "
  10304. "integer."
  10305. msgstr ""
  10306. "[ERROR_NOTCL] Colunas ou Linhas com valor zero. Altere-os para um inteiro "
  10307. "positivo."
  10308. #: flatcamTools/ToolPanelize.py:485 flatcamTools/ToolPanelize.py:642
  10309. msgid "Generating panel ... Please wait."
  10310. msgstr "Gerando painel ... Por favor, aguarde."
  10311. #: flatcamTools/ToolPanelize.py:635
  10312. msgid "[success] Panel done..."
  10313. msgstr "[success] Painel criado..."
  10314. #: flatcamTools/ToolPanelize.py:638
  10315. #, python-brace-format
  10316. msgid ""
  10317. "[WARNING] Too big for the constrain area. Final panel has {col} columns and "
  10318. "{row} rows"
  10319. msgstr ""
  10320. "[WARNING] Grande demais para a área restrita.. O painel final tem {col} "
  10321. "colunas e {row} linhas"
  10322. #: flatcamTools/ToolPanelize.py:647
  10323. msgid "[success] Panel created successfully."
  10324. msgstr "[success] Painel criado com sucesso."
  10325. #: flatcamTools/ToolPcbWizard.py:32
  10326. msgid "PcbWizard Import Tool"
  10327. msgstr "Ferramenta de Importação PcbWizard"
  10328. #: flatcamTools/ToolPcbWizard.py:40
  10329. msgid "Import 2-file Excellon"
  10330. msgstr "Importar Excellon 2-arquivos"
  10331. #: flatcamTools/ToolPcbWizard.py:51
  10332. msgid "Load files"
  10333. msgstr "Carregar arquivos"
  10334. #: flatcamTools/ToolPcbWizard.py:57
  10335. msgid "Excellon file"
  10336. msgstr "Arquivo Excellon"
  10337. #: flatcamTools/ToolPcbWizard.py:59
  10338. msgid ""
  10339. "Load the Excellon file.\n"
  10340. "Usually it has a .DRL extension"
  10341. msgstr ""
  10342. "Carrega o arquivo Excellon.\n"
  10343. "Normalmente ele tem uma extensão .DRL"
  10344. #: flatcamTools/ToolPcbWizard.py:65
  10345. msgid "INF file"
  10346. msgstr "Arquivo INF"
  10347. #: flatcamTools/ToolPcbWizard.py:67
  10348. msgid "Load the INF file."
  10349. msgstr "Carrega o arquivo INF."
  10350. #: flatcamTools/ToolPcbWizard.py:79
  10351. msgid "Tool Number"
  10352. msgstr "Número da Ferramenta"
  10353. #: flatcamTools/ToolPcbWizard.py:81
  10354. msgid "Tool diameter in file units."
  10355. msgstr "Diâmetro da ferramenta em unidades de arquivo."
  10356. #: flatcamTools/ToolPcbWizard.py:87
  10357. msgid "Excellon format"
  10358. msgstr "Formato Excellon"
  10359. #: flatcamTools/ToolPcbWizard.py:95
  10360. msgid "Int. digits"
  10361. msgstr "Dígitos Int."
  10362. #: flatcamTools/ToolPcbWizard.py:97
  10363. msgid "The number of digits for the integral part of the coordinates."
  10364. msgstr "O número de dígitos da parte integral das coordenadas."
  10365. #: flatcamTools/ToolPcbWizard.py:104
  10366. msgid "Frac. digits"
  10367. msgstr "Dígitos Frac."
  10368. #: flatcamTools/ToolPcbWizard.py:106
  10369. msgid "The number of digits for the fractional part of the coordinates."
  10370. msgstr "O número de dígitos para a parte fracionária das coordenadas."
  10371. #: flatcamTools/ToolPcbWizard.py:113
  10372. msgid "No Suppression"
  10373. msgstr "Sem supressão"
  10374. #: flatcamTools/ToolPcbWizard.py:114
  10375. msgid "Zeros supp."
  10376. msgstr "Sup. Zeros"
  10377. #: flatcamTools/ToolPcbWizard.py:116
  10378. msgid ""
  10379. "The type of zeros suppression used.\n"
  10380. "Can be of type:\n"
  10381. "- LZ = leading zeros are kept\n"
  10382. "- TZ = trailing zeros are kept\n"
  10383. "- No Suppression = no zero suppression"
  10384. msgstr ""
  10385. "O tipo de supressão de zeros usado.\n"
  10386. "Pode ser do tipo:\n"
  10387. "- LZ = zeros à esquerda são mantidos\n"
  10388. "- TZ = zeros à direita são mantidos\n"
  10389. "- Sem supressão = sem supressão de zeros"
  10390. #: flatcamTools/ToolPcbWizard.py:129
  10391. msgid ""
  10392. "The type of units that the coordinates and tool\n"
  10393. "diameters are using. Can be INCH or MM."
  10394. msgstr ""
  10395. "A unidade para as coordenadas e os diâmetros\n"
  10396. "de ferramentas. Pode ser Polegada ou mm."
  10397. #: flatcamTools/ToolPcbWizard.py:136
  10398. msgid "Import Excellon"
  10399. msgstr "Importar Excellon"
  10400. #: flatcamTools/ToolPcbWizard.py:138
  10401. msgid ""
  10402. "Import in FlatCAM an Excellon file\n"
  10403. "that store it's information's in 2 files.\n"
  10404. "One usually has .DRL extension while\n"
  10405. "the other has .INF extension."
  10406. msgstr ""
  10407. "Importa no FlatCAM um arquivo Excellon\n"
  10408. "que armazena suas informações em 2 arquivos.\n"
  10409. "Um geralmente possui extensão .DRL e o outro tem extensão .INF."
  10410. #: flatcamTools/ToolPcbWizard.py:197
  10411. msgid "PCBWizard Tool"
  10412. msgstr "Ferramenta PCBWizard"
  10413. #: flatcamTools/ToolPcbWizard.py:291 flatcamTools/ToolPcbWizard.py:295
  10414. msgid "Load PcbWizard Excellon file"
  10415. msgstr "Carregar o arquivo PcbWizard Excellon"
  10416. #: flatcamTools/ToolPcbWizard.py:314 flatcamTools/ToolPcbWizard.py:318
  10417. msgid "Load PcbWizard INF file"
  10418. msgstr "Carregar arquivo PcbWizard INF"
  10419. #: flatcamTools/ToolPcbWizard.py:365
  10420. msgid ""
  10421. "[ERROR] The INF file does not contain the tool table.\n"
  10422. "Try to open the Excellon file from File -> Open -> Excellon\n"
  10423. "and edit the drill diameters manually."
  10424. msgstr ""
  10425. "[ERROR] O arquivo INF não contém a tabela de ferramentas.\n"
  10426. "Tente abrir o arquivo Excellon em Arquivo -> Abrir -> Excellon\n"
  10427. "e edite os diâmetros das brocas manualmente."
  10428. #: flatcamTools/ToolPcbWizard.py:385
  10429. msgid "[success] PcbWizard .INF file loaded."
  10430. msgstr "[success] Arquivo PcbWizard .INF carregado."
  10431. #: flatcamTools/ToolPcbWizard.py:389
  10432. msgid "[success] Main PcbWizard Excellon file loaded."
  10433. msgstr "[success] Arquivo PcbWizard Excellon carregado."
  10434. #: flatcamTools/ToolPcbWizard.py:426
  10435. #, python-format
  10436. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  10437. msgstr "[ERROR_NOTCL] Não é possível analisar o arquivo: %s"
  10438. #: flatcamTools/ToolPcbWizard.py:450
  10439. msgid "Importing Excellon."
  10440. msgstr "Importando Excellon."
  10441. #: flatcamTools/ToolPcbWizard.py:457
  10442. msgid "[ERROR_NOTCL] Import Excellon file failed."
  10443. msgstr "[ERROR_NOTCL] Falha na importação do arquivo Excellon."
  10444. #: flatcamTools/ToolPcbWizard.py:464
  10445. #, python-format
  10446. msgid "[success] Imported: %s"
  10447. msgstr "[success] Importado: %s"
  10448. #: flatcamTools/ToolPcbWizard.py:467
  10449. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  10450. msgstr ""
  10451. "[WARNING_NOTCL] A fusão do Excellon está em andamento. Por favor, espere..."
  10452. #: flatcamTools/ToolPcbWizard.py:469
  10453. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  10454. msgstr "[ERROR_NOTCL] O arquivo Excellon importado é None."
  10455. #: flatcamTools/ToolProperties.py:108
  10456. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  10457. msgstr ""
  10458. "[ERROR_NOTCL] A ferramenta de propriedades não foi exibida. Nenhum objeto "
  10459. "selecionado."
  10460. #: flatcamTools/ToolProperties.py:115
  10461. msgid "[success] Object Properties are displayed."
  10462. msgstr "[success] Propriedades do Objeto exibidas."
  10463. #: flatcamTools/ToolProperties.py:116
  10464. msgid "Properties Tool"
  10465. msgstr "Propriedades de Ferramenta"
  10466. #: flatcamTools/ToolProperties.py:125
  10467. msgid "TYPE"
  10468. msgstr "TIPO"
  10469. #: flatcamTools/ToolProperties.py:126
  10470. msgid "NAME"
  10471. msgstr "NOME"
  10472. #: flatcamTools/ToolProperties.py:127
  10473. msgid "Dimensions"
  10474. msgstr "Dimensões"
  10475. #: flatcamTools/ToolProperties.py:130
  10476. msgid "Options"
  10477. msgstr "Opções"
  10478. #: flatcamTools/ToolProperties.py:141
  10479. msgid "Geo Type"
  10480. msgstr "Tipo Geo."
  10481. #: flatcamTools/ToolProperties.py:142
  10482. msgid "Single-Geo"
  10483. msgstr "Geo. Única"
  10484. #: flatcamTools/ToolProperties.py:142
  10485. msgid "Multi-Geo"
  10486. msgstr "Geo. Múltipla"
  10487. #: flatcamTools/ToolProperties.py:161
  10488. msgid "Width"
  10489. msgstr "Largura"
  10490. #: flatcamTools/ToolProperties.py:167 flatcamTools/ToolProperties.py:170
  10491. msgid "Box Area"
  10492. msgstr "Área da Caixa"
  10493. #: flatcamTools/ToolProperties.py:187 flatcamTools/ToolProperties.py:190
  10494. msgid "Convex_Hull Area"
  10495. msgstr "Área Convexa do Casco"
  10496. #: flatcamTools/ToolProperties.py:195
  10497. msgid "Inch"
  10498. msgstr "Polegada"
  10499. #: flatcamTools/ToolProperties.py:196
  10500. msgid "Metric"
  10501. msgstr "Métrico"
  10502. #: flatcamTools/ToolProperties.py:247 flatcamTools/ToolProperties.py:261
  10503. #: flatcamTools/ToolProperties.py:264 flatcamTools/ToolProperties.py:267
  10504. msgid "Present"
  10505. msgstr "Presente"
  10506. #: flatcamTools/ToolProperties.py:247 flatcamTools/ToolProperties.py:261
  10507. #: flatcamTools/ToolProperties.py:264 flatcamTools/ToolProperties.py:267
  10508. msgid "None"
  10509. msgstr "Nenhum"
  10510. #: flatcamTools/ToolShell.py:69
  10511. msgid "...proccessing..."
  10512. msgstr "...processando..."
  10513. #: flatcamTools/ToolShell.py:71
  10514. #, python-format
  10515. msgid "...proccessing... [%s]"
  10516. msgstr "...processando... [%s]"
  10517. #: flatcamTools/ToolSolderPaste.py:37
  10518. msgid "Solder Paste Tool"
  10519. msgstr "Pasta de Solda"
  10520. #: flatcamTools/ToolSolderPaste.py:65
  10521. msgid "Gerber Solder paste object. "
  10522. msgstr "Objeto Gerber de Pasta de Solda. "
  10523. #: flatcamTools/ToolSolderPaste.py:72
  10524. msgid ""
  10525. "Tools pool from which the algorithm\n"
  10526. "will pick the ones used for dispensing solder paste."
  10527. msgstr ""
  10528. "Conjunto de ferramentas a partir do qual o algoritmo selecionará as usadas "
  10529. "para distribuir pasta de solda."
  10530. #: flatcamTools/ToolSolderPaste.py:87
  10531. msgid ""
  10532. "This is the Tool Number.\n"
  10533. "The solder dispensing will start with the tool with the biggest \n"
  10534. "diameter, continuing until there are no more Nozzle tools.\n"
  10535. "If there are no longer tools but there are still pads not covered\n"
  10536. " with solder paste, the app will issue a warning message box."
  10537. msgstr ""
  10538. "Este é o número da ferramenta.\n"
  10539. "A colocação de pasta de solda começa com a ferramenta com o maior diâmetro,\n"
  10540. "continuando até que não haja mais ferramentas do bico.\n"
  10541. "Se não houver mais ferramentas, mas ainda houver blocos não cobertos\n"
  10542. "com pasta de solda, o aplicativo emitirá uma caixa de mensagem de aviso."
  10543. #: flatcamTools/ToolSolderPaste.py:94
  10544. msgid ""
  10545. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  10546. "is the width of the solder paste dispensed."
  10547. msgstr ""
  10548. "Diâmetro do bico da ferramenta. É o valor (em unidades FlatCAM atuais)\n"
  10549. "da largura da pasta de solda dispensada."
  10550. #: flatcamTools/ToolSolderPaste.py:101
  10551. msgid "New Nozzle Tool"
  10552. msgstr "Nova Ferramenta de Bico"
  10553. #: flatcamTools/ToolSolderPaste.py:117
  10554. msgid ""
  10555. "Add a new nozzle tool to the Tool Table\n"
  10556. "with the diameter specified above."
  10557. msgstr ""
  10558. "Adiciona uma nova ferramenta de bico à tabela de ferramentas\n"
  10559. "com o diâmetro especificado acima."
  10560. #: flatcamTools/ToolSolderPaste.py:129
  10561. msgid "Generate solder paste dispensing geometry."
  10562. msgstr "Gerar geometria de distribuição de pasta de solda."
  10563. #: flatcamTools/ToolSolderPaste.py:142
  10564. msgid "STEP 1"
  10565. msgstr "PASSO 1"
  10566. #: flatcamTools/ToolSolderPaste.py:144
  10567. msgid ""
  10568. "First step is to select a number of nozzle tools for usage\n"
  10569. "and then optionally modify the GCode parameters bellow."
  10570. msgstr ""
  10571. "O primeiro passo é selecionar um número de ferramentas de bico para usar,\n"
  10572. "e opcionalmente, modificar os parâmetros do G-Code abaixo."
  10573. #: flatcamTools/ToolSolderPaste.py:147
  10574. msgid ""
  10575. "Select tools.\n"
  10576. "Modify parameters."
  10577. msgstr ""
  10578. "Selecione ferramentas.\n"
  10579. "Modifique os parâmetros."
  10580. #: flatcamTools/ToolSolderPaste.py:235
  10581. msgid ""
  10582. "Feedrate (speed) while moving up vertically\n"
  10583. " to Dispense position (on Z plane)."
  10584. msgstr ""
  10585. "Avanço (velocidade) enquanto sobe verticalmente\n"
  10586. "para a posição Dispensar (no plano Z)."
  10587. #: flatcamTools/ToolSolderPaste.py:289
  10588. msgid "Generate GCode"
  10589. msgstr "Gerar o G-Code"
  10590. #: flatcamTools/ToolSolderPaste.py:291
  10591. msgid ""
  10592. "Generate GCode for Solder Paste dispensing\n"
  10593. "on PCB pads."
  10594. msgstr ""
  10595. "Gera o G-Code para dispensar pasta de solda\n"
  10596. "nos pads de PCB."
  10597. #: flatcamTools/ToolSolderPaste.py:306
  10598. msgid "STEP 2"
  10599. msgstr "PASSO 2"
  10600. #: flatcamTools/ToolSolderPaste.py:308
  10601. msgid ""
  10602. "Second step is to create a solder paste dispensing\n"
  10603. "geometry out of an Solder Paste Mask Gerber file."
  10604. msgstr ""
  10605. "O segundo passo é criar uma geometria de distribuição de pasta de solda\n"
  10606. "de um arquivo Gerber Máscara de Pasta de Solda."
  10607. #: flatcamTools/ToolSolderPaste.py:324
  10608. msgid "Geo Result"
  10609. msgstr "Geo Result"
  10610. #: flatcamTools/ToolSolderPaste.py:326
  10611. msgid ""
  10612. "Geometry Solder Paste object.\n"
  10613. "The name of the object has to end in:\n"
  10614. "'_solderpaste' as a protection."
  10615. msgstr ""
  10616. "Objeto de Geometria Pasta de Solda.\n"
  10617. "Como proteção, o nome do objeto deve terminar com: \n"
  10618. "'_solderpaste'."
  10619. #: flatcamTools/ToolSolderPaste.py:335
  10620. msgid "STEP 3"
  10621. msgstr "PASSO 3"
  10622. #: flatcamTools/ToolSolderPaste.py:337
  10623. msgid ""
  10624. "Third step is to select a solder paste dispensing geometry,\n"
  10625. "and then generate a CNCJob object.\n"
  10626. "\n"
  10627. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10628. "first you need to generate a geometry with those new params,\n"
  10629. "and only after that you can generate an updated CNCJob."
  10630. msgstr ""
  10631. "O terceiro passo é selecionar uma geometria dispensadora de pasta de solda,\n"
  10632. "e então gerar um objeto de Trabalho CNC.\n"
  10633. "\n"
  10634. "LEMBRE: se você quiser criar um Trabalho CNC com novos parâmetros,\n"
  10635. " primeiro você precisa gerar uma geometria com esses novos parâmetros,\n"
  10636. "e só depois disso você pode gerar um Trabalho CNC atualizado."
  10637. #: flatcamTools/ToolSolderPaste.py:357
  10638. msgid "CNC Result"
  10639. msgstr "Resultado CNC"
  10640. #: flatcamTools/ToolSolderPaste.py:359
  10641. msgid ""
  10642. "CNCJob Solder paste object.\n"
  10643. "In order to enable the GCode save section,\n"
  10644. "the name of the object has to end in:\n"
  10645. "'_solderpaste' as a protection."
  10646. msgstr ""
  10647. "Objeto Trabalho CNC Pasta de Solda.\n"
  10648. "Como proteção, para habilitar a seção de salvar o G-Code,\n"
  10649. "o nome do objeto tem que terminar com:\n"
  10650. "'_solderpaste'."
  10651. #: flatcamTools/ToolSolderPaste.py:369
  10652. msgid "View GCode"
  10653. msgstr "Ver G-Code"
  10654. #: flatcamTools/ToolSolderPaste.py:371
  10655. msgid ""
  10656. "View the generated GCode for Solder Paste dispensing\n"
  10657. "on PCB pads."
  10658. msgstr ""
  10659. "Ver o G-Code gerado para dispensação de pasta de solda\n"
  10660. "nos pads de PCB."
  10661. #: flatcamTools/ToolSolderPaste.py:375
  10662. msgid "Save GCode"
  10663. msgstr "Salvar o G-Code"
  10664. #: flatcamTools/ToolSolderPaste.py:377
  10665. msgid ""
  10666. "Save the generated GCode for Solder Paste dispensing\n"
  10667. "on PCB pads, to a file."
  10668. msgstr ""
  10669. "Salva o G-Code gerado para distribuição de pasta de solda\n"
  10670. "nos pads de PCB, em um arquivo."
  10671. #: flatcamTools/ToolSolderPaste.py:381
  10672. msgid "STEP 4"
  10673. msgstr "PASSO 4"
  10674. #: flatcamTools/ToolSolderPaste.py:383
  10675. msgid ""
  10676. "Fourth step (and last) is to select a CNCJob made from \n"
  10677. "a solder paste dispensing geometry, and then view/save it's GCode."
  10678. msgstr ""
  10679. "O quarto (e último) passo é selecionar um Trabalho CNC feito de\n"
  10680. "uma geometria de distribuição de pasta de solda e, em seguida, visualizar/"
  10681. "salvar o G-Code."
  10682. #: flatcamTools/ToolSolderPaste.py:412
  10683. msgid "Delete Object"
  10684. msgstr "Excluir Objeto"
  10685. #: flatcamTools/ToolSolderPaste.py:797
  10686. msgid ""
  10687. "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  10688. msgstr ""
  10689. "[WARNING_NOTCL] Adição de ferramenta Bocal cancelada. Ferramenta já está na "
  10690. "Tabela de Ferramentas."
  10691. #: flatcamTools/ToolSolderPaste.py:802
  10692. msgid "[success] New Nozzle tool added to Tool Table."
  10693. msgstr "[success] Nova Ferramenta Bocal adicionada à tabela de ferramentas."
  10694. #: flatcamTools/ToolSolderPaste.py:844
  10695. msgid "[success] Nozzle tool from Tool Table was edited."
  10696. msgstr "[success] A ferramenta do bocal da tabela de ferramentas foi editada."
  10697. #: flatcamTools/ToolSolderPaste.py:901
  10698. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  10699. msgstr ""
  10700. "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta bico para excluir."
  10701. #: flatcamTools/ToolSolderPaste.py:906
  10702. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  10703. msgstr "[success] Ferramenta(s) de bico excluída(s) da tabela de ferramentas."
  10704. #: flatcamTools/ToolSolderPaste.py:961
  10705. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  10706. msgstr ""
  10707. "[WARNING_NOTCL] Nenhum objeto Gerber de máscara de Pasta de Solda carregado."
  10708. #: flatcamTools/ToolSolderPaste.py:979
  10709. msgid "Creating Solder Paste dispensing geometry."
  10710. msgstr "Criação da geometria de distribuição da pasta de solda."
  10711. #: flatcamTools/ToolSolderPaste.py:991
  10712. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  10713. msgstr "[WARNING_NOTCL] Nenhuma ferramenta de Bico na tabela de ferramentas."
  10714. #: flatcamTools/ToolSolderPaste.py:1120
  10715. msgid "[success] Solder Paste geometry generated successfully..."
  10716. msgstr "[success] Geometria da pasta de solda gerada com sucesso ..."
  10717. #: flatcamTools/ToolSolderPaste.py:1126
  10718. msgid ""
  10719. "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
  10720. "diameters..."
  10721. msgstr ""
  10722. "[WARNING_NOTCL] Alguns ou todos os pads não possuem pasta de solda devido a "
  10723. "diâmetros inadequados dos bicos..."
  10724. #: flatcamTools/ToolSolderPaste.py:1140
  10725. msgid "Generating Solder Paste dispensing geometry..."
  10726. msgstr "Gerando geometria dispensadora de Pasta de Solda ..."
  10727. #: flatcamTools/ToolSolderPaste.py:1160
  10728. msgid "[WARNING_NOTCL] There is no Geometry object available."
  10729. msgstr "[WARNING_NOTCL] Não há objeto de Geometria disponível."
  10730. #: flatcamTools/ToolSolderPaste.py:1164
  10731. msgid ""
  10732. "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
  10733. "geometry."
  10734. msgstr ""
  10735. "[WARNING_NOTCL] Esta geometria não pode ser processada. NÃO é uma geometria "
  10736. "solder_paste_tool."
  10737. #: flatcamTools/ToolSolderPaste.py:1270
  10738. #, python-format
  10739. msgid "[success] ToolSolderPaste CNCjob created: %s"
  10740. msgstr "[success] Trabalho CNC para Ferramenta de Pasta de Solda criado: %s"
  10741. #: flatcamTools/ToolSolderPaste.py:1302 flatcamTools/ToolSolderPaste.py:1306
  10742. #: flatcamTools/ToolSolderPaste.py:1358
  10743. msgid ""
  10744. "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
  10745. "solder_paste_tool CNCJob object."
  10746. msgstr ""
  10747. "[WARNING_NOTCL] Este objeto Trabalho CNC não pode ser processado. NÃO é um "
  10748. "objeto solder_paste_tool."
  10749. #: flatcamTools/ToolSolderPaste.py:1330
  10750. msgid "[ERROR_NOTCL] No Gcode in the object..."
  10751. msgstr "[ERROR_NOTCL] Nenhum G-Code no objeto ..."
  10752. #: flatcamTools/ToolSolderPaste.py:1339
  10753. #, python-format
  10754. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10755. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  10756. #: flatcamTools/ToolSolderPaste.py:1368
  10757. msgid "Export GCode ..."
  10758. msgstr "Exportar G-Code ..."
  10759. #: flatcamTools/ToolSolderPaste.py:1412
  10760. #, python-format
  10761. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  10762. msgstr ""
  10763. "[success] Arquivo G-Code com dispensador de pasta de solda salvo em: %s"
  10764. #: flatcamTools/ToolSub.py:57
  10765. msgid "Gerber Objects"
  10766. msgstr "Objetos Gerber"
  10767. #: flatcamTools/ToolSub.py:66 flatcamTools/ToolSub.py:112
  10768. msgid "Target"
  10769. msgstr "Alvo"
  10770. #: flatcamTools/ToolSub.py:68
  10771. msgid ""
  10772. "Gerber object from which to substract\n"
  10773. "the substractor Gerber object."
  10774. msgstr ""
  10775. "Objeto Gerber do qual subtrair\n"
  10776. "o objeto Gerber substrator."
  10777. #: flatcamTools/ToolSub.py:80 flatcamTools/ToolSub.py:126
  10778. msgid "Substractor"
  10779. msgstr "Substrator"
  10780. #: flatcamTools/ToolSub.py:82
  10781. msgid ""
  10782. "Gerber object that will be substracted\n"
  10783. "from the target Gerber object."
  10784. msgstr ""
  10785. "Objeto Gerber que será subtraído\n"
  10786. "do objeto Gerber de destino."
  10787. #: flatcamTools/ToolSub.py:89
  10788. msgid "Substract Gerber"
  10789. msgstr "Gerber Substrator"
  10790. #: flatcamTools/ToolSub.py:91
  10791. msgid ""
  10792. "Will remove the area occupied by the substractor\n"
  10793. "Gerber from the Target Gerber.\n"
  10794. "Can be used to remove the overlapping silkscreen\n"
  10795. "over the soldermask."
  10796. msgstr ""
  10797. "Removerá a área ocupada pelo Gerber substrator\n"
  10798. "do Gerber de destino.\n"
  10799. "Pode ser usado para remover a serigrafia sobreposta\n"
  10800. "sobre a máscara de solda."
  10801. #: flatcamTools/ToolSub.py:103
  10802. msgid "Geometry Objects"
  10803. msgstr "Objetos Geometria"
  10804. #: flatcamTools/ToolSub.py:114
  10805. msgid ""
  10806. "Geometry object from which to substract\n"
  10807. "the substractor Geometry object."
  10808. msgstr ""
  10809. "Objeto de geometria a partir do qual subtrair\n"
  10810. "o objeto de geometria do substrator."
  10811. #: flatcamTools/ToolSub.py:128
  10812. msgid ""
  10813. "Geometry object that will be substracted\n"
  10814. "from the target Geometry object."
  10815. msgstr ""
  10816. "Objeto de geometria que será subtraído\n"
  10817. "do objeto de geometria de destino."
  10818. #: flatcamTools/ToolSub.py:139
  10819. msgid "Substract Geometry"
  10820. msgstr "Geometria Substrator"
  10821. #: flatcamTools/ToolSub.py:141
  10822. msgid ""
  10823. "Will remove the area occupied by the substractor\n"
  10824. "Geometry from the Target Geometry."
  10825. msgstr ""
  10826. "Removerá a área ocupada pela geometria substrator\n"
  10827. "da Geometria de destino."
  10828. #: flatcamTools/ToolSub.py:228
  10829. msgid "Sub Tool"
  10830. msgstr "Ferramenta Sub"
  10831. #: flatcamTools/ToolSub.py:244 flatcamTools/ToolSub.py:440
  10832. msgid "[ERROR_NOTCL] No Target object loaded."
  10833. msgstr "[ERROR_NOTCL] Nenhum objeto de destino foi carregado."
  10834. #: flatcamTools/ToolSub.py:257 flatcamTools/ToolSub.py:453
  10835. msgid "[ERROR_NOTCL] No Substractor object loaded."
  10836. msgstr "[ERROR_NOTCL] Nenhum objeto Substrator carregado."
  10837. #: flatcamTools/ToolSub.py:310
  10838. #, python-format
  10839. msgid "Parsing aperture %s geometry ..."
  10840. msgstr "Analisando a geometria de abertura %s ..."
  10841. #: flatcamTools/ToolSub.py:412 flatcamTools/ToolSub.py:608
  10842. msgid "Generating new object ..."
  10843. msgstr "Gerando novo objeto ..."
  10844. #: flatcamTools/ToolSub.py:415 flatcamTools/ToolSub.py:611
  10845. #: flatcamTools/ToolSub.py:690
  10846. msgid "[ERROR_NOTCL] Generating new object failed."
  10847. msgstr "[ERROR_NOTCL] A geração de novo objeto falhou."
  10848. #: flatcamTools/ToolSub.py:419 flatcamTools/ToolSub.py:616
  10849. #, python-format
  10850. msgid "[success] Created: %s"
  10851. msgstr "[success] Criado: %s"
  10852. #: flatcamTools/ToolSub.py:465
  10853. msgid ""
  10854. "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  10855. msgstr ""
  10856. "[ERROR_NOTCL] Atualmente, a geometria do Substrator não pode ser do tipo "
  10857. "MultiGeo."
  10858. #: flatcamTools/ToolSub.py:510
  10859. msgid "Parsing solid_geometry ..."
  10860. msgstr "Analisando solid_geometry ..."
  10861. #: flatcamTools/ToolSub.py:512
  10862. #, python-format
  10863. msgid "Parsing tool %s geometry ..."
  10864. msgstr "Analisando a geometria da ferramenta %s ..."
  10865. #: flatcamTools/ToolTransform.py:23
  10866. msgid "Object Transform"
  10867. msgstr "Transformação de Objeto"
  10868. #: flatcamTools/ToolTransform.py:84
  10869. msgid ""
  10870. "Rotate the selected object(s).\n"
  10871. "The point of reference is the middle of\n"
  10872. "the bounding box for all selected objects."
  10873. msgstr ""
  10874. "Gira o(s) objeto(s) selecionado(s).\n"
  10875. "O ponto de referência é o meio da\n"
  10876. "caixa delimitadora para todos os objetos selecionados."
  10877. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10878. msgid ""
  10879. "Skew/shear the selected object(s).\n"
  10880. "The point of reference is the middle of\n"
  10881. "the bounding box for all selected objects."
  10882. msgstr ""
  10883. "Inclinar/distorcer o(s) objeto(s) selecionado(s).\n"
  10884. "O ponto de referência é o meio da\n"
  10885. "caixa delimitadora para todos os objetos selecionados."
  10886. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10887. msgid ""
  10888. "Scale the selected object(s).\n"
  10889. "The point of reference depends on \n"
  10890. "the Scale reference checkbox state."
  10891. msgstr ""
  10892. "Redimensiona o(s) objeto(s) selecionado(s).\n"
  10893. "O ponto de referência depende\n"
  10894. "do estado da caixa de seleção Escala de referência."
  10895. #: flatcamTools/ToolTransform.py:251 flatcamTools/ToolTransform.py:268
  10896. msgid ""
  10897. "Offset the selected object(s).\n"
  10898. "The point of reference is the middle of\n"
  10899. "the bounding box for all selected objects.\n"
  10900. msgstr ""
  10901. "Desloca o(s) objeto(s) selecionado(s).\n"
  10902. "O ponto de referência é o meio da\n"
  10903. "caixa delimitadora para todos os objetos selecionados.\n"
  10904. #: flatcamTools/ToolTransform.py:298 flatcamTools/ToolTransform.py:306
  10905. msgid ""
  10906. "Flip the selected object(s) over the X axis.\n"
  10907. "Does not create a new object.\n"
  10908. " "
  10909. msgstr ""
  10910. "Espelha o(s) objeto(s) selecionado(s) no eixo X.\n"
  10911. "Não cria um novo objeto.\n"
  10912. " "
  10913. #: flatcamTools/ToolTransform.py:642
  10914. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  10915. msgstr ""
  10916. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10917. "para girar!"
  10918. #: flatcamTools/ToolTransform.py:670
  10919. msgid "CNCJob objects can't be rotated."
  10920. msgstr "Objetos Trabalho CNC não podem ser girados."
  10921. #: flatcamTools/ToolTransform.py:678
  10922. msgid "[success] Rotate done ..."
  10923. msgstr "[success] Giro pronto ..."
  10924. #: flatcamTools/ToolTransform.py:693
  10925. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  10926. msgstr ""
  10927. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10928. "para espelhar!"
  10929. #: flatcamTools/ToolTransform.py:728
  10930. msgid "CNCJob objects can't be mirrored/flipped."
  10931. msgstr "Objetos Trabalho CNC não podem ser espelhados/invertidos."
  10932. #: flatcamTools/ToolTransform.py:762
  10933. msgid ""
  10934. "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  10935. msgstr ""
  10936. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10937. "para inclinar!"
  10938. #: flatcamTools/ToolTransform.py:784
  10939. msgid "CNCJob objects can't be skewed."
  10940. msgstr "Objetos Trabalho CNC não podem ser inclinados."
  10941. #: flatcamTools/ToolTransform.py:811
  10942. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  10943. msgstr ""
  10944. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10945. "para redimensionar!"
  10946. #: flatcamTools/ToolTransform.py:844
  10947. msgid "CNCJob objects can't be scaled."
  10948. msgstr "Objetos Trabalho CNC não podem ser redimensionados."
  10949. #: flatcamTools/ToolTransform.py:863
  10950. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  10951. msgstr ""
  10952. "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto "
  10953. "para deslocar!"
  10954. #: flatcamTools/ToolTransform.py:872
  10955. msgid "CNCJob objects can't be offseted."
  10956. msgstr "Objetos Trabalho CNC não podem ser deslocados."
  10957. #~ msgid ""
  10958. #~ "When choosing the 'Itself' option the non copper clearing extent\n"
  10959. #~ "is based on the object that is copper cleared.\n"
  10960. #~ " Choosing the 'Box' option will do non copper clearing within the box\n"
  10961. #~ "specified by another object different than the one that is copper cleared."
  10962. #~ msgstr ""
  10963. #~ "Ao escolher a opção 'Se', a extensão de compensação não cobre\n"
  10964. #~ "é baseado no objeto que é cobre limpo.\n"
  10965. #~ "Escolhendo a opção de 'Caixa' fará limpeza de cobre não dentro da caixa\n"
  10966. #~ "especificado por outro objeto diferente daquele que é o cobre limpo."
  10967. #~ msgid ""
  10968. #~ "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
  10969. #~ "mouse click on the polygon to be painted.<BR>- <B>Area</B>: left mouse "
  10970. #~ "click to start selection of the area to be painted.<BR>- <B>All</B>: "
  10971. #~ "paint all polygons.<BR>- <B>Ref</B>: paint an area described by an "
  10972. #~ "external reference object."
  10973. #~ msgstr ""
  10974. #~ "Como selecionar os polígonos para pintar. <BR>Opções: <BR>-<B> Single </"
  10975. #~ "B>: clique com o botão esquerdo do mouse no polígono a ser pintado. <BR>-"
  10976. #~ "<B> Área </B>: left clique do mouse para iniciar a seleção da área a ser "
  10977. #~ "pintada. <BR>-<B> Todos </B>: pintar todos os polígonos. <BR>-<B> Ref </"
  10978. #~ "B>: pintar uma área descrita por uma referência externa objeto."
  10979. #~ msgid "Geometry object to be painted. "
  10980. #~ msgstr "Objeto de geometria a ser pintado."
  10981. #~ msgid ""
  10982. #~ "After clicking here, click inside<BR>the polygon you wish to be painted "
  10983. #~ "if <B>Single</B> is selected.<BR>If <B>Area</B> is selected, then the "
  10984. #~ "selection of the area to be painted<BR>will be initiated by a first click "
  10985. #~ "and finished by the second mouse click.<BR>If <B>All</B> is selected "
  10986. #~ "then the Paint will start after click.<BR>If <B>Ref</B> is selected then "
  10987. #~ "the Paint will start after click,<BR>and the painted area will be "
  10988. #~ "described by a selected object.<BR>A new Geometry object with the tool "
  10989. #~ "paths will be created."
  10990. #~ msgstr ""
  10991. #~ "Depois de clicar aqui, clique dentro <BR>do polígono que deseja pintar se "
  10992. #~ "<B> Único </B> estiver selecionado. <BR>Se <B> Área </B> estiver "
  10993. #~ "selecionada, a seleção da área será selecionada. ser pintado <BR>será "
  10994. #~ "iniciado por um primeiro clique e terminado com o segundo clique do "
  10995. #~ "mouse. <BR>Se <B> All </B> for selecionado, o Paint iniciará após o "
  10996. #~ "clique. <BR>Se <B> Ref </B> é selecionado, então o Paint será iniciado "
  10997. #~ "após o clique, <BR>e a área pintada será descrita por um objeto "
  10998. #~ "selecionado. <BR>Um novo objeto Geometry com os caminhos da ferramenta "
  10999. #~ "será criado."
  11000. #~ msgid "Done."
  11001. #~ msgstr "Pronto."
  11002. #~ msgid "<b>Apertures:</b>"
  11003. #~ msgstr "<b> Aberturas: </b>"
  11004. #~ msgid "Aperture Code:"
  11005. #~ msgstr "Código de Abertura:"
  11006. #~ msgid "<b>Languages:</b>"
  11007. #~ msgstr "<b>Idioma:</b>"
  11008. #~ msgid "Width (# passes):"
  11009. #~ msgstr "Largura (passes):"
  11010. #~ msgid "Clear non-copper"
  11011. #~ msgstr "Limpar não-cobre"
  11012. #~ msgid "Rounded corners"
  11013. #~ msgstr "Cantos arredondados"
  11014. #~ msgid ""
  11015. #~ "Creates a Geometry objects with polygons\n"
  11016. #~ "covering the copper-free areas of the PCB."
  11017. #~ msgstr ""
  11018. #~ "Cria um objeto Geometria com polígonos\n"
  11019. #~ "cobrindo as áreas livres de cobre do PCB."
  11020. #~ msgid "<b>Bounding Box:</b>"
  11021. #~ msgstr "<b>Caixa Delimitadora:</b>"
  11022. #~ msgid "<b>Units</b>:"
  11023. #~ msgstr "<b>Unidades</b>:"
  11024. #~ msgid "<b>Zeros</b>:"
  11025. #~ msgstr "<b>Zeros</b>:"
  11026. #~ msgid "INCH:"
  11027. #~ msgstr "POLEGADAS:"
  11028. #~ msgid "Tool change:"
  11029. #~ msgstr "Troca de ferramentas:"
  11030. #~ msgid "Toolchange Z position."
  11031. #~ msgstr "Posição do eixo Z (altura) para a troca de ferramentas."
  11032. #~ msgid "Feedrate:"
  11033. #~ msgstr "Avanço Z (Mergulho):"
  11034. #~ msgid ""
  11035. #~ "Tool speed while drilling\n"
  11036. #~ "(in units per minute)."
  11037. #~ msgstr ""
  11038. #~ "Velocidade da ferramenta durante a perfuração\n"
  11039. #~ "(em unidades por minuto)."
  11040. #~ msgid "<b>Gcode: </b>"
  11041. #~ msgstr "<b>G-Code: </b>"
  11042. #~ msgid "Offset Z:"
  11043. #~ msgstr "Ajuste de Altura:"
  11044. #~ msgid "<b>Slots:</b>"
  11045. #~ msgstr "<b>Ranhuras:</b>"
  11046. #~ msgid "<b>Create CNC Job:</b>"
  11047. #~ msgstr "<b>Criar um Trabalho CNC:</b>"
  11048. #~ msgid "Multidepth"
  11049. #~ msgstr "Múltiplas Profundidades"
  11050. #~ msgid "Multidepth usage: True or False."
  11051. #~ msgstr "Usar Múltiplas Profundidades."
  11052. #~ msgid ""
  11053. #~ "The postprocessor file that dictates\n"
  11054. #~ "Machine Code output."
  11055. #~ msgstr "Arquivo de pós-processamento que define o G-Code de saída."
  11056. #~ msgid "Display Annotation:"
  11057. #~ msgstr "Exibir Anotação:"
  11058. #~ msgid ""
  11059. #~ "Type here any G-Code commands you would\n"
  11060. #~ "like to be executed when Toolchange event is encountered.\n"
  11061. #~ "This will constitute a Custom Toolchange GCode,\n"
  11062. #~ "or a Toolchange Macro."
  11063. #~ msgstr ""
  11064. #~ "Digite aqui os comandos do G-Code que você gostaria de executar\n"
  11065. #~ "quando o evento Troca de Ferramentas for encontrado.\n"
  11066. #~ "É um G-Code personalizado para Troca de Ferramentas\n"
  11067. #~ "ou uma Macro de Troca de Ferramentas."
  11068. #~ msgid ""
  11069. #~ "If checked, use 'rest machining'.\n"
  11070. #~ "Basically it will clear copper outside PCB features,\n"
  11071. #~ "using the biggest tool and continue with the next tools,\n"
  11072. #~ "from bigger to smaller, to clear areas of copper that\n"
  11073. #~ "could not be cleared by previous tool.\n"
  11074. #~ "If not checked, use the standard algorithm."
  11075. #~ msgstr ""
  11076. #~ "Se marcada, usa 'usinagem de descanso'.\n"
  11077. #~ "Basicamente, limpará o cobre fora dos recursos do PCB, utilizando\n"
  11078. #~ "a maior ferramenta e continuará com as próximas ferramentas, da\n"
  11079. #~ "maior para a menor, para limpar áreas de cobre que não puderam ser\n"
  11080. #~ "retiradas com a ferramenta anterior.\n"
  11081. #~ "Se não estiver marcada, usa o algoritmo padrão."
  11082. #~ msgid "Offset:"
  11083. #~ msgstr "Deslocamento:"
  11084. #~ msgid ""
  11085. #~ "Distance from objects at which\n"
  11086. #~ "to draw the cutout."
  11087. #~ msgstr ""
  11088. #~ "Distância dos objetos\n"
  11089. #~ "para desenhar o recorte."
  11090. #~ msgid ""
  11091. #~ "Size of the gaps in the toolpath\n"
  11092. #~ "that will remain to hold the\n"
  11093. #~ "board in place."
  11094. #~ msgstr ""
  11095. #~ "Tamanho das pontes no caminho da ferramenta\n"
  11096. #~ "que permanecerão para manter a placa no lugar."
  11097. #~ msgid "Create a convex shape surrounding the entire PCB."
  11098. #~ msgstr "Crie uma forma convexa ao redor de toda a PCB."
  11099. #~ msgid ""
  11100. #~ "The axis should pass through a <b>point</b> or cut\n"
  11101. #~ " a specified <b>box</b> (in a Geometry object) in \n"
  11102. #~ "the middle."
  11103. #~ msgstr ""
  11104. #~ "O eixo deve passar por um <b>ponto</b> ou cortar\n"
  11105. #~ "no meio uma <b>caixa</b> especificada (em um objeto Geometria)."
  11106. #~ msgid ""
  11107. #~ "How much (fraction) of the tool\n"
  11108. #~ "width to overlap each tool pass."
  11109. #~ msgstr ""
  11110. #~ "Quanta (fração) da largura da ferramenta\n"
  11111. #~ "para sobrepor a cada passe."
  11112. #~ msgid "Panel Type:"
  11113. #~ msgstr "Tipo de Painel:"
  11114. #~ msgid "Tip angle:"
  11115. #~ msgstr "Ângulo da Ponta:"
  11116. #~ msgid "Angle for rotation. In degrees."
  11117. #~ msgstr "Ângulo de rotação, em graus."
  11118. #~ msgid "Angle for Skew/Shear on X axis. In degrees."
  11119. #~ msgstr "Ângulo de inclinação no eixo X, em graus."
  11120. #~ msgid "Angle for Skew/Shear on Y axis. In degrees."
  11121. #~ msgstr "Ângulo de inclinação no eixo X, em graus."
  11122. #~ msgid "XY Toolchange:"
  11123. #~ msgstr "XY Troca de Ferra.:"
  11124. #~ msgid "PostProcessors:"
  11125. #~ msgstr "Pós-processador:"
  11126. #~ msgid "<b>Scale:</b>"
  11127. #~ msgstr "<b>Escala:</b>"
  11128. #~ msgid "<b>Offset:</b>"
  11129. #~ msgstr "<b>Deslocamento:</b>"
  11130. #~ msgid "Combine"
  11131. #~ msgstr "Combinar"
  11132. #~ msgid "<b>Tools Table</b>"
  11133. #~ msgstr "<b>Tabela de Ferramentas</b>"
  11134. #~ msgid ""
  11135. #~ "Tool height just before starting the work.\n"
  11136. #~ "Delete the value if you don't need this feature."
  11137. #~ msgstr ""
  11138. #~ "Altura da ferramenta antes de iniciar o trabalho.\n"
  11139. #~ "Exclua o valor se você não precisar deste recurso."
  11140. #~ msgid ""
  11141. #~ "Z-axis position (height) for\n"
  11142. #~ "the last move."
  11143. #~ msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  11144. #~ msgid ""
  11145. #~ "The json file that dictates\n"
  11146. #~ "gcode output."
  11147. #~ msgstr ""
  11148. #~ "O arquivo de pós-processamento (json) que define\n"
  11149. #~ "a saída G-Code."
  11150. #~ msgid "<b>Type: </b>"
  11151. #~ msgstr "<b>Tipo: </b>"
  11152. #~ msgid "Drills Tool dia:"
  11153. #~ msgstr "Diâmetro da Broca:"
  11154. #~ msgid "Slots Tool dia:"
  11155. #~ msgstr "Diâmetro da Fresa:"
  11156. #~ msgid "<b>Tool Dia:</b>"
  11157. #~ msgstr "<b>Dia Ferramenta:</b>"
  11158. #~ msgid "<b>Tool Data</b>"
  11159. #~ msgstr "<b>Dados da Ferramenta</b>"
  11160. #~ msgid ""
  11161. #~ "This is the height (Z) at which the CNC\n"
  11162. #~ "will go as the last move."
  11163. #~ msgstr ""
  11164. #~ "Esta é a altura (Z) em que o CNC\n"
  11165. #~ "vai após o último movimento."
  11166. #~ msgid "Feed Rate Z (Plunge):"
  11167. #~ msgstr "Taxa de Avanço Z (Mergulho):"
  11168. #~ msgid ""
  11169. #~ "Cutting speed in the Z\n"
  11170. #~ "plane in units per minute"
  11171. #~ msgstr ""
  11172. #~ "Velocidade de corte no plano Z\n"
  11173. #~ "em unidades por minuto"
  11174. #~ msgid ""
  11175. #~ "Cutting speed in the XY\n"
  11176. #~ "plane in units per minute\n"
  11177. #~ "(in units per minute).\n"
  11178. #~ "This is for the rapid move G00.\n"
  11179. #~ "It is useful only for Marlin,\n"
  11180. #~ "ignore for any other cases."
  11181. #~ msgstr ""
  11182. #~ "Velocidade de corte no plano XY\n"
  11183. #~ "em unidades por minuto\n"
  11184. #~ "Usado para o movimento rápido G00.\n"
  11185. #~ "É útil apenas para Marlin,\n"
  11186. #~ "ignore para outros casos."
  11187. #~ msgid "Cut over 1st pt"
  11188. #~ msgstr "Cut over 1st pt"
  11189. #~ msgid "<b>Paint Area:</b>"
  11190. #~ msgstr "<b>Área de Pintura:</b>"
  11191. #~ msgid "<b>CNC Tools Table</b>"
  11192. #~ msgstr "<b>Tabela de Ferramentas CNC</b>"
  11193. #~ msgid ""
  11194. #~ "Type here any G-Code commands you would\n"
  11195. #~ "like to add to the beginning of the generated file."
  11196. #~ msgstr ""
  11197. #~ "Digite aqui comandos G-Code que você gostaria de adicionar ao início do "
  11198. #~ "arquivo gerado."
  11199. #~ msgid ""
  11200. #~ "This is the diameter of the tool tip.\n"
  11201. #~ "The manufacturer specifies it."
  11202. #~ msgstr ""
  11203. #~ "Diâmetro da ponta da ferramenta.\n"
  11204. #~ "Especificado pelo fabricante."
  11205. #~ msgid "Object:"
  11206. #~ msgstr "Objeto:"
  11207. #~ msgid "Units:"
  11208. #~ msgstr "Unidades:"
  11209. #~ msgid ""
  11210. #~ "- 'Itself': the non copper clearing extent\n"
  11211. #~ "is based on the object that is copper cleared.\n"
  11212. #~ " - 'Box': will do non copper clearing within the box\n"
  11213. #~ "specified by the object selected in the Ref. Object combobox."
  11214. #~ msgstr ""
  11215. #~ "- 'Se': a extensão da limpeza não cobre\n"
  11216. #~ "é baseado no objeto que é cobre limpo.\n"
  11217. #~ "- 'Caixa': fará limpeza não cobre dentro da caixa\n"
  11218. #~ "especificado pelo objeto selecionado na referência. Combobox de objetos."
  11219. #~ msgid "Geometry:"
  11220. #~ msgstr "Geometria:"
  11221. #~ msgid ""
  11222. #~ "Scale the selected object(s)\n"
  11223. #~ "using the Scale Factor X for both axis."
  11224. #~ msgstr ""
  11225. #~ "Redimensiona o(s) objeto(s) selecionado(s) usando o\n"
  11226. #~ "Fator de Escala X para ambos os eixos."
  11227. #~ msgid "<b>Excellon Format:</b>"
  11228. #~ msgstr "<b>Formato Excellon:</b>"
  11229. #~ msgid "<b>Tools:</b>"
  11230. #~ msgstr "<b>Ferramentas:</b>"
  11231. #~ msgid "<b>Export G-Code:</b>"
  11232. #~ msgstr "<b>Exportar G-Code:</b>"
  11233. #~ msgid "How to select the polygons to paint."
  11234. #~ msgstr "Como selecionar os polígonos para pintar."
  11235. #~ msgid "<b>V-Shape Tool Calculator:</b>"
  11236. #~ msgstr "<b>Calculadora Ferramenta Ponta-em-V:</b>"
  11237. #~ msgid "<b>ElectroPlating Calculator:</b>"
  11238. #~ msgstr "<b>Calculadora ElectroPlating:</b>"
  11239. #~ msgid "<b>Name:</b>"
  11240. #~ msgstr "<b>Nome:</b>"
  11241. #~ msgid "<b>Plot kind:</b>"
  11242. #~ msgstr "<b>Tipo de Gráfico:</b>"
  11243. #~ msgid "<b>Display Annotation:</b>"
  11244. #~ msgstr "<b>Exibir Anotação:</b>"
  11245. #~ msgid "<b>GERBER:</b>"
  11246. #~ msgstr "<b>GERBER:</b>"
  11247. #~ msgid "<b>EXCELLON:</b>"
  11248. #~ msgstr "<b>EXCELLON:</b>"
  11249. #~ msgid "<b>GEOMETRY</b>:"
  11250. #~ msgstr "<b>GEOMETRIA</b>:"
  11251. #~ msgid "<b>Panel Type:</b>"
  11252. #~ msgstr "<b>Tipo de Painel:</b>"
  11253. #~ msgid "<b>Excellon format:</b>"
  11254. #~ msgstr "<b>Formato Excellon:</b>"
  11255. #~ msgid "<b>Gerber Objects</b>"
  11256. #~ msgstr "<b>Objetos Gerber</b>"
  11257. #~ msgid "<b>Geometry Objects</b>"
  11258. #~ msgstr "<b>Objetos de Geometria</b>"
  11259. #~ msgid "Save &Defaults"
  11260. #~ msgstr "Salvar Pa&drões"
  11261. #~ msgid "Line"
  11262. #~ msgstr "Linha"
  11263. #~ msgid "Tool dia: "
  11264. #~ msgstr "Diâmetro da Ferramenta "
  11265. #~ msgid ""
  11266. #~ "The diameter of the cutting\n"
  11267. #~ "tool.."
  11268. #~ msgstr ""
  11269. #~ "Diâmetro da ferramenta de\n"
  11270. #~ "corte.."
  11271. #~ msgid "Disable"
  11272. #~ msgstr "Desabilitar"
  11273. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  11274. #~ msgstr "[WARNING_NOTCL] Mover cancelado. Nenhuma forma selecionada."
  11275. #~ msgid "Click on the Destination point..."
  11276. #~ msgstr "Clique no ponto de Destino..."
  11277. #~ msgid "Copy as &Geom"
  11278. #~ msgstr "Copiar como &Geom"
  11279. #~ msgid "Ap. Scale Factor:"
  11280. #~ msgstr "Ap. Fator de Escala:"
  11281. #~ msgid ""
  11282. #~ "Change the size of the selected apertures.\n"
  11283. #~ "Factor by which to multiply\n"
  11284. #~ "geometric features of this object."
  11285. #~ msgstr ""
  11286. #~ "Altera o tamanho da abertura selecionada.\n"
  11287. #~ "Fator para multiplicar a\n"
  11288. #~ "geometria do objeto."
  11289. #~ msgid "Ap. Buffer Factor:"
  11290. #~ msgstr "Ap. Fator Buffer:"
  11291. #~ msgid ""
  11292. #~ "Change the size of the selected apertures.\n"
  11293. #~ "Factor by which to expand/shrink\n"
  11294. #~ "geometric features of this object."
  11295. #~ msgstr ""
  11296. #~ "Altera o tamanho da abertura selecionada.\n"
  11297. #~ "Fator para expandir/inclinar a\n"
  11298. #~ "geometria do objeto."
  11299. #~ msgid "[WARNING]No object Box. Using instead %s"
  11300. #~ msgstr "[WARNING]Sem Caixa de objeto. Usando %s"
  11301. #~ msgid "In"
  11302. #~ msgstr "Dentro"
  11303. #~ msgid "Out"
  11304. #~ msgstr "Fora"
  11305. #~ msgid "Custom"
  11306. #~ msgstr "Personalizado"
  11307. #~ msgid "Copy Drill(s)"
  11308. #~ msgstr "Copiar Broca(s)"
  11309. #~ msgid "Both"
  11310. #~ msgstr "Ambos"
  11311. #~ msgid "Pos"
  11312. #~ msgstr "Pos"
  11313. #~ msgid "Neg"
  11314. #~ msgstr "Neg"
  11315. #~ msgid "Solid "
  11316. #~ msgstr "Sólido "
  11317. #~ msgid "M-Color "
  11318. #~ msgstr "M-Cores "
  11319. #~ msgid "Click on CENTER ..."
  11320. #~ msgstr "Clique no CENTRO ..."
  11321. #~ msgid "[success] Done. Region completed."
  11322. #~ msgstr "[success] Pronto. Região completa."
  11323. #~ msgid "Add an aperture to the aperture list"
  11324. #~ msgstr "Adicionar uma abertura à lista"
  11325. #~ msgid "Del Aperture:"
  11326. #~ msgstr "Excluir Abertura:"
  11327. #~ msgid ""
  11328. #~ "Delete a aperture in the aperture list.\n"
  11329. #~ "It will delete also the associated geometry."
  11330. #~ msgstr ""
  11331. #~ "Excluir uma abertura da lista.\n"
  11332. #~ "Excluirá a geometria associada."
  11333. #~ msgid "Save && Close Edit"
  11334. #~ msgstr "Salvar && Sair do Editor"
  11335. #~ msgid ""
  11336. #~ "<b>Editor Shortcut list</b><br>\n"
  11337. #~ " <br>\n"
  11338. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  11339. #~ "strong><br>\n"
  11340. #~ " \n"
  11341. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11342. #~ "\"width:283px\">\n"
  11343. #~ " <tbody>\n"
  11344. #~ " <tr height=\"20\">\n"
  11345. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11346. #~ "strong></td>\n"
  11347. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  11348. #~ " </tr>\n"
  11349. #~ " <tr height=\"20\">\n"
  11350. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  11351. #~ " <td>&nbsp;Buffer Tool</td>\n"
  11352. #~ " </tr>\n"
  11353. #~ " <tr height=\"20\">\n"
  11354. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11355. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  11356. #~ " </tr>\n"
  11357. #~ " <tr height=\"20\">\n"
  11358. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  11359. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  11360. #~ " </tr>\n"
  11361. #~ " <tr height=\"20\">\n"
  11362. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  11363. #~ " <td>&nbsp;Paint Tool</td>\n"
  11364. #~ " </tr>\n"
  11365. #~ " <tr height=\"20\">\n"
  11366. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11367. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11368. #~ " </tr>\n"
  11369. #~ " <tr height=\"20\">\n"
  11370. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  11371. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  11372. #~ " </tr>\n"
  11373. #~ " <tr height=\"20\">\n"
  11374. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11375. #~ " <td>&nbsp;Move Geo Item</td>\n"
  11376. #~ " </tr>\n"
  11377. #~ " <tr height=\"20\">\n"
  11378. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  11379. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  11380. #~ " </tr>\n"
  11381. #~ " <tr height=\"20\">\n"
  11382. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  11383. #~ " <td>&nbsp;Draw a Circle</td>\n"
  11384. #~ " </tr>\n"
  11385. #~ " <tr height=\"20\">\n"
  11386. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  11387. #~ " <td>&nbsp;Draw a Path</td>\n"
  11388. #~ " </tr>\n"
  11389. #~ " <tr height=\"20\">\n"
  11390. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11391. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  11392. #~ " </tr>\n"
  11393. #~ " <tr height=\"20\">\n"
  11394. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  11395. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  11396. #~ " </tr>\n"
  11397. #~ " <tr height=\"20\">\n"
  11398. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11399. #~ " <td>&nbsp;Add Text Tool</td>\n"
  11400. #~ " </tr>\n"
  11401. #~ " <tr height=\"20\">\n"
  11402. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  11403. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  11404. #~ " </tr>\n"
  11405. #~ " <tr height=\"20\">\n"
  11406. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  11407. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  11408. #~ " </tr>\n"
  11409. #~ " <tr height=\"20\">\n"
  11410. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  11411. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  11412. #~ " </tr>\n"
  11413. #~ " <tr height=\"20\">\n"
  11414. #~ " <td height=\"20\">&nbsp;</td>\n"
  11415. #~ " <td>&nbsp;</td>\n"
  11416. #~ " </tr>\n"
  11417. #~ " <tr height=\"20\">\n"
  11418. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  11419. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  11420. #~ " </tr>\n"
  11421. #~ " <tr height=\"20\">\n"
  11422. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  11423. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  11424. #~ " </tr>\n"
  11425. #~ " <tr height=\"20\">\n"
  11426. #~ " <td height=\"20\">&nbsp;</td>\n"
  11427. #~ " <td>&nbsp;</td>\n"
  11428. #~ " </tr>\n"
  11429. #~ " <tr height=\"20\">\n"
  11430. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  11431. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  11432. #~ " </tr>\n"
  11433. #~ " <tr height=\"20\">\n"
  11434. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  11435. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  11436. #~ " </tr>\n"
  11437. #~ " <tr height=\"20\">\n"
  11438. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  11439. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  11440. #~ " </tr>\n"
  11441. #~ " <tr height=\"20\">\n"
  11442. #~ " <td height=\"20\">&nbsp;</td>\n"
  11443. #~ " <td>&nbsp;</td>\n"
  11444. #~ " </tr>\n"
  11445. #~ " <tr height=\"20\">\n"
  11446. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  11447. #~ " <td>&nbsp;Measurement Tool</td>\n"
  11448. #~ " </tr>\n"
  11449. #~ " <tr height=\"20\">\n"
  11450. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11451. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11452. #~ " </tr>\n"
  11453. #~ " <tr height=\"20\">\n"
  11454. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  11455. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  11456. #~ " </tr>\n"
  11457. #~ " <tr height=\"20\">\n"
  11458. #~ " <td height=\"20\">&nbsp;</td>\n"
  11459. #~ " <td>&nbsp;</td>\n"
  11460. #~ " </tr>\n"
  11461. #~ " <tr height=\"20\">\n"
  11462. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  11463. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  11464. #~ " </tr>\n"
  11465. #~ " <tr height=\"20\">\n"
  11466. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  11467. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  11468. #~ " </tr>\n"
  11469. #~ " <tr height=\"20\">\n"
  11470. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11471. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11472. #~ " </tr>\n"
  11473. #~ " <tr height=\"20\">\n"
  11474. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11475. #~ " <td>&nbsp;Delete Shape</td>\n"
  11476. #~ " </tr>\n"
  11477. #~ " </tbody>\n"
  11478. #~ " </table>\n"
  11479. #~ " <br>\n"
  11480. #~ " <br>\n"
  11481. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  11482. #~ "strong><br>\n"
  11483. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11484. #~ "\"width:283px\">\n"
  11485. #~ " <tbody>\n"
  11486. #~ " <tr height=\"20\">\n"
  11487. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11488. #~ "strong></td>\n"
  11489. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  11490. #~ " </tr>\n"
  11491. #~ " <tr height=\"20\">\n"
  11492. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11493. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11494. #~ " </tr>\n"
  11495. #~ " <tr height=\"20\">\n"
  11496. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11497. #~ " <td>&nbsp;Add Drill</td>\n"
  11498. #~ " </tr>\n"
  11499. #~ " <tr height=\"20\">\n"
  11500. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11501. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11502. #~ " </tr>\n"
  11503. #~ " <tr height=\"20\">\n"
  11504. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11505. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11506. #~ " </tr>\n"
  11507. #~ " <tr height=\"20\">\n"
  11508. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11509. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11510. #~ " </tr>\n"
  11511. #~ " <tr height=\"20\">\n"
  11512. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11513. #~ " <td>&nbsp;Add a new Tool</td>\n"
  11514. #~ " </tr>\n"
  11515. #~ " <tr height=\"20\">\n"
  11516. #~ " <td height=\"20\">&nbsp;</td>\n"
  11517. #~ " <td>&nbsp;</td>\n"
  11518. #~ " </tr>\n"
  11519. #~ " <tr height=\"20\">\n"
  11520. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11521. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11522. #~ " </tr>\n"
  11523. #~ " <tr height=\"20\">\n"
  11524. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11525. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11526. #~ " </tr>\n"
  11527. #~ " <tr height=\"20\">\n"
  11528. #~ " <td height=\"20\">&nbsp;</td>\n"
  11529. #~ " <td>&nbsp;</td>\n"
  11530. #~ " </tr>\n"
  11531. #~ " <tr height=\"20\">\n"
  11532. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11533. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11534. #~ " </tr>\n"
  11535. #~ " <tr height=\"20\">\n"
  11536. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11537. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11538. #~ " </tr>\n"
  11539. #~ " </tbody>\n"
  11540. #~ " </table>\n"
  11541. #~ " "
  11542. #~ msgstr ""
  11543. #~ "<b>Lista de Atalhos dos Editores</b><br>\n"
  11544. #~ " <br>\n"
  11545. #~ " <strong><span style=\"color:#0000ff\">EDITOR GEOMETRIA</"
  11546. #~ "span></strong><br>\n"
  11547. #~ " \n"
  11548. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11549. #~ "\"width:283px\">\n"
  11550. #~ " <tbody>\n"
  11551. #~ " <tr height=\"20\">\n"
  11552. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11553. #~ "strong></td>\n"
  11554. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  11555. #~ " </tr>\n"
  11556. #~ " <tr height=\"20\">\n"
  11557. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  11558. #~ " <td>&nbsp;Buffer Tool</td>\n"
  11559. #~ " </tr>\n"
  11560. #~ " <tr height=\"20\">\n"
  11561. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11562. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  11563. #~ " </tr>\n"
  11564. #~ " <tr height=\"20\">\n"
  11565. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  11566. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  11567. #~ " </tr>\n"
  11568. #~ " <tr height=\"20\">\n"
  11569. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  11570. #~ " <td>&nbsp;Paint Tool</td>\n"
  11571. #~ " </tr>\n"
  11572. #~ " <tr height=\"20\">\n"
  11573. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11574. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11575. #~ " </tr>\n"
  11576. #~ " <tr height=\"20\">\n"
  11577. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  11578. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  11579. #~ " </tr>\n"
  11580. #~ " <tr height=\"20\">\n"
  11581. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11582. #~ " <td>&nbsp;Move Geo Item</td>\n"
  11583. #~ " </tr>\n"
  11584. #~ " <tr height=\"20\">\n"
  11585. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  11586. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  11587. #~ " </tr>\n"
  11588. #~ " <tr height=\"20\">\n"
  11589. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  11590. #~ " <td>&nbsp;Draw a Circle</td>\n"
  11591. #~ " </tr>\n"
  11592. #~ " <tr height=\"20\">\n"
  11593. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  11594. #~ " <td>&nbsp;Draw a Path</td>\n"
  11595. #~ " </tr>\n"
  11596. #~ " <tr height=\"20\">\n"
  11597. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11598. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  11599. #~ " </tr>\n"
  11600. #~ " <tr height=\"20\">\n"
  11601. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  11602. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  11603. #~ " </tr>\n"
  11604. #~ " <tr height=\"20\">\n"
  11605. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11606. #~ " <td>&nbsp;Add Text Tool</td>\n"
  11607. #~ " </tr>\n"
  11608. #~ " <tr height=\"20\">\n"
  11609. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  11610. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  11611. #~ " </tr>\n"
  11612. #~ " <tr height=\"20\">\n"
  11613. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  11614. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  11615. #~ " </tr>\n"
  11616. #~ " <tr height=\"20\">\n"
  11617. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  11618. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  11619. #~ " </tr>\n"
  11620. #~ " <tr height=\"20\">\n"
  11621. #~ " <td height=\"20\">&nbsp;</td>\n"
  11622. #~ " <td>&nbsp;</td>\n"
  11623. #~ " </tr>\n"
  11624. #~ " <tr height=\"20\">\n"
  11625. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  11626. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  11627. #~ " </tr>\n"
  11628. #~ " <tr height=\"20\">\n"
  11629. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  11630. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  11631. #~ " </tr>\n"
  11632. #~ " <tr height=\"20\">\n"
  11633. #~ " <td height=\"20\">&nbsp;</td>\n"
  11634. #~ " <td>&nbsp;</td>\n"
  11635. #~ " </tr>\n"
  11636. #~ " <tr height=\"20\">\n"
  11637. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  11638. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  11639. #~ " </tr>\n"
  11640. #~ " <tr height=\"20\">\n"
  11641. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  11642. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  11643. #~ " </tr>\n"
  11644. #~ " <tr height=\"20\">\n"
  11645. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  11646. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  11647. #~ " </tr>\n"
  11648. #~ " <tr height=\"20\">\n"
  11649. #~ " <td height=\"20\">&nbsp;</td>\n"
  11650. #~ " <td>&nbsp;</td>\n"
  11651. #~ " </tr>\n"
  11652. #~ " <tr height=\"20\">\n"
  11653. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  11654. #~ " <td>&nbsp;Measurement Tool</td>\n"
  11655. #~ " </tr>\n"
  11656. #~ " <tr height=\"20\">\n"
  11657. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11658. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11659. #~ " </tr>\n"
  11660. #~ " <tr height=\"20\">\n"
  11661. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  11662. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  11663. #~ " </tr>\n"
  11664. #~ " <tr height=\"20\">\n"
  11665. #~ " <td height=\"20\">&nbsp;</td>\n"
  11666. #~ " <td>&nbsp;</td>\n"
  11667. #~ " </tr>\n"
  11668. #~ " <tr height=\"20\">\n"
  11669. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  11670. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  11671. #~ " </tr>\n"
  11672. #~ " <tr height=\"20\">\n"
  11673. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  11674. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  11675. #~ " </tr>\n"
  11676. #~ " <tr height=\"20\">\n"
  11677. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11678. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11679. #~ " </tr>\n"
  11680. #~ " <tr height=\"20\">\n"
  11681. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11682. #~ " <td>&nbsp;Delete Shape</td>\n"
  11683. #~ " </tr>\n"
  11684. #~ " </tbody>\n"
  11685. #~ " </table>\n"
  11686. #~ " <br>\n"
  11687. #~ " <br>\n"
  11688. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  11689. #~ "strong><br>\n"
  11690. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  11691. #~ "\"width:283px\">\n"
  11692. #~ " <tbody>\n"
  11693. #~ " <tr height=\"20\">\n"
  11694. #~ " <td height=\"20\" width=\"89\"><strong>A</"
  11695. #~ "strong></td>\n"
  11696. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  11697. #~ " </tr>\n"
  11698. #~ " <tr height=\"20\">\n"
  11699. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  11700. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  11701. #~ " </tr>\n"
  11702. #~ " <tr height=\"20\">\n"
  11703. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  11704. #~ " <td>&nbsp;Add Drill</td>\n"
  11705. #~ " </tr>\n"
  11706. #~ " <tr height=\"20\">\n"
  11707. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  11708. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  11709. #~ " </tr>\n"
  11710. #~ " <tr height=\"20\">\n"
  11711. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  11712. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  11713. #~ " </tr>\n"
  11714. #~ " <tr height=\"20\">\n"
  11715. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  11716. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  11717. #~ " </tr>\n"
  11718. #~ " <tr height=\"20\">\n"
  11719. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  11720. #~ " <td>&nbsp;Add a new Tool</td>\n"
  11721. #~ " </tr>\n"
  11722. #~ " <tr height=\"20\">\n"
  11723. #~ " <td height=\"20\">&nbsp;</td>\n"
  11724. #~ " <td>&nbsp;</td>\n"
  11725. #~ " </tr>\n"
  11726. #~ " <tr height=\"20\">\n"
  11727. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11728. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  11729. #~ " </tr>\n"
  11730. #~ " <tr height=\"20\">\n"
  11731. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  11732. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  11733. #~ " </tr>\n"
  11734. #~ " <tr height=\"20\">\n"
  11735. #~ " <td height=\"20\">&nbsp;</td>\n"
  11736. #~ " <td>&nbsp;</td>\n"
  11737. #~ " </tr>\n"
  11738. #~ " <tr height=\"20\">\n"
  11739. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  11740. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  11741. #~ " </tr>\n"
  11742. #~ " <tr height=\"20\">\n"
  11743. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  11744. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  11745. #~ " </tr>\n"
  11746. #~ " </tbody>\n"
  11747. #~ " </table>\n"
  11748. #~ " "
  11749. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  11750. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  11751. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  11752. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  11753. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  11754. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  11755. #~ msgid ""
  11756. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11757. #~ msgstr ""
  11758. #~ "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  11759. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11760. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  11761. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11762. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  11763. #~ msgid "[success] GUI settings deleted ..."
  11764. #~ msgstr "[success] GUI settings deleted ..."
  11765. #~ msgid "Scale Factor:"
  11766. #~ msgstr "Fator de Escala:"
  11767. #~ msgid "Buffer Factor:"
  11768. #~ msgstr "Fator Buffer:"
  11769. #~ msgid "<b>Generate new Gerber Object:</b>"
  11770. #~ msgstr "<b>Gerar novo objeto Gerber:</b>"
  11771. #~ msgid "Will generate a new Gerber object from the changed apertures."
  11772. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  11773. #~ msgid ""
  11774. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11775. #~ "This new object can then be isolated etc."
  11776. #~ msgstr ""
  11777. #~ "Will generate a new Gerber object from the changed apertures.\n"
  11778. #~ "This new object can then be isolated etc."
  11779. #~ msgid "[success]Flip on the Y axis done ..."
  11780. #~ msgstr "[success]Espelhamento no eixo Y pronto ..."
  11781. #~ msgid "[success]Flip on the X axis done ..."
  11782. #~ msgstr "[success]Espelhamento no eixo X pronto ..."
  11783. #~ msgid "[success]Skew on the %s axis done ..."
  11784. #~ msgstr "[success]Inclinação no eixo %s axis pronta ..."
  11785. #~ msgid "[success]Offset on the %s axis done ..."
  11786. #~ msgstr "[success]Deslocamento no eixo %s axis pronto ..."
  11787. #~ msgid ""
  11788. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11789. #~ "Example:\n"
  11790. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11791. #~ "\n"
  11792. #~ "Adjust the value starting with lower values\n"
  11793. #~ "and increasing it if areas that should be painted are still \n"
  11794. #~ "not painted.\n"
  11795. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11796. #~ "Higher values = slow processing and slow execution on CNC\n"
  11797. #~ "due of too many paths."
  11798. #~ msgstr ""
  11799. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  11800. #~ "Example:\n"
  11801. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  11802. #~ "\n"
  11803. #~ "Adjust the value starting with lower values\n"
  11804. #~ "and increasing it if areas that should be painted are still \n"
  11805. #~ "not painted.\n"
  11806. #~ "Lower values = faster processing, faster execution on PCB.\n"
  11807. #~ "Higher values = slow processing and slow execution on CNC\n"
  11808. #~ "due of too many paths."
  11809. #~| msgid "z_toolchange = Z coord for Toolchange"
  11810. #~ msgid "z_cut = Z coord for Toolchange"
  11811. #~ msgstr "z_cut = coord Z coord para o corte"
  11812. #~| msgid "z_toolchange = Z coord for Toolchange"
  11813. #~ msgid "z_move = Z coord for Toolchange"
  11814. #~ msgstr "z_move = coord Z para troca de ferramentas"
  11815. #~ msgid "%s/Project_%s"
  11816. #~ msgstr "%s/Projeto_%s"
  11817. #~ msgid "tool_tab"
  11818. #~ msgstr "tool_tab"