strings.po 421 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576
  1. # SOME DESCRIPTIVE TITLE.
  2. # Copyright (C) YEAR ORGANIZATION
  3. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
  4. #
  5. msgid ""
  6. msgstr ""
  7. "Project-Id-Version: \n"
  8. "POT-Creation-Date: 2019-06-22 23:56+0300\n"
  9. "PO-Revision-Date: 2019-07-11 11:35-0300\n"
  10. "Last-Translator: Carlos Stein <carlos.stein@gmail.com>\n"
  11. "Language-Team: \n"
  12. "Language: pt_BR\n"
  13. "MIME-Version: 1.0\n"
  14. "Content-Type: text/plain; charset=UTF-8\n"
  15. "Content-Transfer-Encoding: 8bit\n"
  16. "Generated-By: pygettext.py 1.5\n"
  17. "X-Generator: Poedit 2.2.3\n"
  18. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  19. "X-Poedit-Basepath: ../../..\n"
  20. "X-Poedit-SearchPath-0: .\n"
  21. "X-Poedit-SearchPathExcluded-0: build\n"
  22. "X-Poedit-SearchPathExcluded-1: doc\n"
  23. "X-Poedit-SearchPathExcluded-2: tests\n"
  24. #: FlatCAMApp.py:925
  25. msgid "[ERROR] Could not find the Language files. The App strings are missing."
  26. msgstr "[ERRO] Não foi possível encontrar os arquivos de idioma. As strings do aplicativo estão faltando."
  27. #: FlatCAMApp.py:1836
  28. msgid ""
  29. "(Type help to get started)\n"
  30. "\n"
  31. msgstr ""
  32. "(Digite help para iniciar)\n"
  33. "\n"
  34. #: FlatCAMApp.py:2018 ObjectCollection.py:80 flatcamTools/ToolImage.py:213 flatcamTools/ToolPcbWizard.py:299 flatcamTools/ToolPcbWizard.py:322
  35. msgid "Open cancelled."
  36. msgstr "Abrir cancelado."
  37. #: FlatCAMApp.py:2032
  38. msgid "Open Config file failed."
  39. msgstr "Falha em abrir o arquivo de Configuração."
  40. #: FlatCAMApp.py:2046
  41. msgid "Open Script file failed."
  42. msgstr "Falha em abrir o arquivo de Script."
  43. #: FlatCAMApp.py:2244
  44. msgid "[WARNING_NOTCL] Select a Geometry, Gerber or Excellon Object to edit."
  45. msgstr "[WARNING_NOTCL] Selecione um Objeto Geometria, Gerber ou Excellon para editar."
  46. #: FlatCAMApp.py:2254
  47. msgid ""
  48. "[WARNING_NOTCL] Simultanoeus editing of tools geometry in a MultiGeo Geometry is not possible.\n"
  49. "Edit only one geometry at a time."
  50. msgstr ""
  51. "[WARNING_NOTCL] A edição simultânea de geometria de ferramentas em uma Geometria MultiGeo não é possível. \n"
  52. " Editar apenas uma geometria por vez."
  53. #: FlatCAMApp.py:2309
  54. msgid "[WARNING_NOTCL] Editor is activated ..."
  55. msgstr "[WARNING_NOTCL] Editor está ativado ..."
  56. #: FlatCAMApp.py:2327
  57. msgid "Do you want to save the edited object?"
  58. msgstr "Você quer salvar o objeto editado?"
  59. #: FlatCAMApp.py:2328 flatcamGUI/FlatCAMGUI.py:1618
  60. msgid "Close Editor"
  61. msgstr "Fechar editor"
  62. #: FlatCAMApp.py:2331 FlatCAMApp.py:3423 FlatCAMApp.py:5989 FlatCAMTranslation.py:89 flatcamGUI/FlatCAMGUI.py:3730
  63. msgid "Yes"
  64. msgstr "Sim"
  65. #: FlatCAMApp.py:2332 FlatCAMApp.py:3424 FlatCAMApp.py:5990 FlatCAMTranslation.py:90 flatcamGUI/FlatCAMGUI.py:3731
  66. msgid "No"
  67. msgstr "Não"
  68. #: FlatCAMApp.py:2333 FlatCAMApp.py:3425 FlatCAMApp.py:3836 FlatCAMApp.py:5991
  69. msgid "Cancel"
  70. msgstr "Cancelar"
  71. #: FlatCAMApp.py:2360
  72. msgid "[WARNING] Object empty after edit."
  73. msgstr "[WARNING] Objeto vazio após a edição."
  74. #: FlatCAMApp.py:2382 FlatCAMApp.py:2401 FlatCAMApp.py:2413
  75. msgid "[WARNING_NOTCL] Select a Gerber, Geometry or Excellon Object to update."
  76. msgstr "[WARNING_NOTCL] Selecione um objeto Gerber, Geometria ou Excellon para atualizar."
  77. #: FlatCAMApp.py:2385
  78. #, python-format
  79. msgid "[selected] %s is updated, returning to App..."
  80. msgstr "[selected] %s está atualizado, retornando ao App ..."
  81. #: FlatCAMApp.py:2750
  82. msgid "[ERROR] Could not load defaults file."
  83. msgstr "[ERROR] Não foi possível carregar o arquivo padrão."
  84. #: FlatCAMApp.py:2762
  85. msgid "[ERROR] Failed to parse defaults file."
  86. msgstr "[ERROR] Falha ao analisar o arquivo de padrões."
  87. #: FlatCAMApp.py:2783 FlatCAMApp.py:2787
  88. msgid "Import FlatCAM Preferences"
  89. msgstr "Importar Preferências do FlatCAM"
  90. #: FlatCAMApp.py:2793
  91. msgid "[WARNING_NOTCL] FlatCAM preferences import cancelled."
  92. msgstr "[WARNING_NOTCL] Importação de preferências do FlatCAM cancelada."
  93. #: FlatCAMApp.py:2801 FlatCAMApp.py:2855 FlatCAMApp.py:3302
  94. msgid "[ERROR_NOTCL] Could not load defaults file."
  95. msgstr "[ERROR_NOTCL] Não foi possível carregar o arquivo de padrões."
  96. #: FlatCAMApp.py:2809 FlatCAMApp.py:3311
  97. msgid "[ERROR_NOTCL] Failed to parse defaults file."
  98. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo de padrões."
  99. #: FlatCAMApp.py:2812
  100. #, python-format
  101. msgid "[success] Imported Defaults from %s"
  102. msgstr "[success] Padrões importados de %s"
  103. #: FlatCAMApp.py:2827 FlatCAMApp.py:2832
  104. msgid "Export FlatCAM Preferences"
  105. msgstr "Exportar preferências do FlatCAM"
  106. #: FlatCAMApp.py:2839
  107. msgid "[WARNING_NOTCL] FlatCAM preferences export cancelled."
  108. msgstr "[WARNING_NOTCL] Exportação de preferências do FlatCAM cancelada."
  109. #: FlatCAMApp.py:2874 FlatCAMApp.py:3356
  110. msgid "[ERROR_NOTCL] Failed to write defaults to file."
  111. msgstr "[ERROR_NOTCL] Falha ao gravar os padrões no arquivo."
  112. #: FlatCAMApp.py:2927
  113. msgid "[ERROR_NOTCL] Failed to open recent files file for writing."
  114. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo de arquivos recentes para gravação."
  115. #: FlatCAMApp.py:3004 camlib.py:4457
  116. msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
  117. msgstr "[ERROR_NOTCL] Ocorreu um erro interno. Veja shell. \n"
  118. #: FlatCAMApp.py:3005
  119. #, python-brace-format
  120. msgid ""
  121. "Object ({kind}) failed because: {error} \n"
  122. "\n"
  123. msgstr ""
  124. "Objeto ({kind}) falhou porque: {error} \n"
  125. "\n"
  126. #: FlatCAMApp.py:3025
  127. msgid "Converting units to "
  128. msgstr "Convertendo unidades para "
  129. #: FlatCAMApp.py:3104 FlatCAMApp.py:3107 FlatCAMApp.py:3110 FlatCAMApp.py:3113
  130. #, python-brace-format
  131. msgid "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</span>"
  132. msgstr "[selected] {kind} criado/selecionado: <span style =\"color:{color};\">{name}</span>"
  133. #: FlatCAMApp.py:3207
  134. #, python-brace-format
  135. msgid "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - {arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing.<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B> Main Contributors:</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>and many others found <a href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED\">here.</a><BR><BR>Development is done <a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">here.</a><BR>DOWNLOAD area <a href = \"https://bitbucket.org/jpcgt/flatcam/downloads/\">here.</a><BR>"
  136. msgstr "<font size=8><B>FlatCAM</B></font><BR>Versão {version} {beta} ({date}) - {arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing.<BR><BR>(c) 2014-2019 <B>Juan Pablo Caram</B><BR><BR><B>Principais colaboradores:</B><BR>Denis Hayrullin<BR>Kamil Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>e muitos outros encontrados <a href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED\">aqui.</a><BR><BR>O desenvolvimento é feito <a href = \"https://bitbucket.org/jpcgt/flatcam/src/Beta/\">aqui.</a><BR>Área de DOWNLOAD <a href = \"https://bitbucket.org/jpcgt/flatcam/downloads/\">aqui.</a><BR>"
  137. #: FlatCAMApp.py:3360
  138. msgid "[success] Defaults saved."
  139. msgstr "[sucesso] Padrões salvos."
  140. #: FlatCAMApp.py:3381
  141. msgid "[ERROR_NOTCL] Could not load factory defaults file."
  142. msgstr "[ERROR_NOTCL] Não foi possível carregar o arquivo de padrões de fábrica."
  143. #: FlatCAMApp.py:3390
  144. msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
  145. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo de padrões de fábrica."
  146. #: FlatCAMApp.py:3404
  147. msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
  148. msgstr "[ERROR_NOTCL] Falha ao gravar os padrões de fábrica no arquivo."
  149. #: FlatCAMApp.py:3408
  150. msgid "Factory defaults saved."
  151. msgstr "Padrões de fábrica salvos."
  152. #: FlatCAMApp.py:3413 flatcamGUI/FlatCAMGUI.py:3106
  153. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  154. msgstr "[WARNING_NOTCL] O aplicativo está salvando o projeto. Por favor, espere ..."
  155. #: FlatCAMApp.py:3418
  156. msgid ""
  157. "There are files/objects modified in FlatCAM. \n"
  158. "Do you want to Save the project?"
  159. msgstr ""
  160. "Existem arquivos/objetos modificados no FlatCAM. \n"
  161. "Você quer salvar o projeto?"
  162. #: FlatCAMApp.py:3421 FlatCAMApp.py:5987
  163. msgid "Save changes"
  164. msgstr "Salvar alterações"
  165. #: FlatCAMApp.py:3488
  166. msgid ""
  167. "[ERROR] Failed join. The Geometry objects are of different types.\n"
  168. "At least one is MultiGeo type and the other is SingleGeo type. A possibility is to convert from one to another and retry joining \n"
  169. "but in the case of converting from MultiGeo to SingleGeo, informations may be lost and the result may not be what was expected. \n"
  170. "Check the generated GCODE."
  171. msgstr ""
  172. "[ERRO] Falha ao unir. Os objetos Geometria são de tipos diferentes. \n"
  173. "Pelo menos um é do tipo MultiGeo e o outro é do tipo SingleGeo. Uma possibilidade é converter de um para outro e tentar unir, \n"
  174. "mas no caso de converter de MultiGeo para SingleGeo, as informações podem ser perdidas e o resultado pode não ser o esperado. \n"
  175. "Verifique o GCODE gerado."
  176. #: FlatCAMApp.py:3529
  177. msgid "[ERROR_NOTCL] Failed. Excellon joining works only on Excellon objects."
  178. msgstr "[ERROR_NOTCL] Falha. A união de Excellon funciona apenas em objetos Excellon."
  179. #: FlatCAMApp.py:3551
  180. msgid "[ERROR_NOTCL] Failed. Gerber joining works only on Gerber objects."
  181. msgstr "[ERROR_NOTCL] Falha. A união de Gerber funciona apenas em objetos Gerber."
  182. #: FlatCAMApp.py:3566 FlatCAMApp.py:3591
  183. msgid "[ERROR_NOTCL] Failed. Select a Geometry Object and try again."
  184. msgstr "[ERROR_NOTCL] Falha. Selecione um Objeto de Geometria e tente novamente."
  185. #: FlatCAMApp.py:3570 FlatCAMApp.py:3595
  186. #, python-format
  187. msgid "[ERROR_NOTCL] Expected a FlatCAMGeometry, got %s"
  188. msgstr "[ERROR_NOTCL] FlatCAM Geometria esperado, recebido %s"
  189. #: FlatCAMApp.py:3583
  190. msgid "[success] A Geometry object was converted to MultiGeo type."
  191. msgstr "[success] Um objeto Geometria foi convertido para o tipo MultiGeo."
  192. #: FlatCAMApp.py:3609
  193. msgid "[success] A Geometry object was converted to SingleGeo type."
  194. msgstr "[success] Um objeto Geometria foi convertido para o tipo SingleGeo."
  195. #: FlatCAMApp.py:3835 FlatCAMApp.py:4674 FlatCAMApp.py:6262 FlatCAMApp.py:6273 FlatCAMApp.py:6513 FlatCAMApp.py:6523
  196. msgid "Ok"
  197. msgstr "Ok"
  198. #: FlatCAMApp.py:3880
  199. #, python-format
  200. msgid "[success] Converted units to %s"
  201. msgstr "[success] Unidades convertidas para %s"
  202. #: FlatCAMApp.py:3891
  203. msgid "[WARNING_NOTCL] Units conversion cancelled."
  204. msgstr "[WARNING_NOTCL] Conversão de unidades cancelada."
  205. #: FlatCAMApp.py:4543
  206. msgid "Open file"
  207. msgstr "Abrir arquivo"
  208. #: FlatCAMApp.py:4574 FlatCAMApp.py:4579
  209. msgid "Export G-Code ..."
  210. msgstr "Exportar G-Code ..."
  211. #: FlatCAMApp.py:4582
  212. msgid "[WARNING_NOTCL] Export Code cancelled."
  213. msgstr "[WARNING_NOTCL] Exportar G-Code cancelado."
  214. #: FlatCAMApp.py:4592
  215. msgid "[WARNING] No such file or directory"
  216. msgstr "[WARNING] Nenhum arquivo ou diretório"
  217. #: FlatCAMApp.py:4599
  218. #, python-format
  219. msgid "Saved to: %s"
  220. msgstr "Salvo para: %s"
  221. #: FlatCAMApp.py:4662 FlatCAMApp.py:4695 FlatCAMApp.py:4706 FlatCAMApp.py:4717 flatcamTools/ToolNonCopperClear.py:489 flatcamTools/ToolSolderPaste.py:765
  222. msgid "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float format."
  223. msgstr "[WARNING_NOTCL] Insira um diâmetro de ferramenta com valor diferente de zero, no formato Flutuante."
  224. #: FlatCAMApp.py:4667 FlatCAMApp.py:4700 FlatCAMApp.py:4711 FlatCAMApp.py:4722 flatcamGUI/FlatCAMGUI.py:3001
  225. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  226. msgstr "[WARNING_NOTCL] Adicionar ferramenta cancelada ..."
  227. #: FlatCAMApp.py:4670
  228. msgid ""
  229. "Adding Tool works only when Advanced is checked.\n"
  230. "Go to Preferences -> General - Show Advanced Options."
  231. msgstr ""
  232. "Adicionar Ferramenta funciona somente quando Avançado está marcado. \n"
  233. "Vá para Preferências -> Geral - Mostrar Opções Avançadas."
  234. #: FlatCAMApp.py:4783
  235. msgid "Object(s) deleted ..."
  236. msgstr "Objeto(s) excluído(s) ..."
  237. #: FlatCAMApp.py:4787
  238. msgid "Failed. No object(s) selected..."
  239. msgstr "Falha. Nenhum objeto selecionado ..."
  240. #: FlatCAMApp.py:4789
  241. msgid "Save the work in Editor and try again ..."
  242. msgstr "Salve o trabalho no Editor e tente novamente ..."
  243. #: FlatCAMApp.py:4802
  244. msgid "Click to set the origin ..."
  245. msgstr "Clique para definir a origem ..."
  246. #: FlatCAMApp.py:4814
  247. msgid "Jump to ..."
  248. msgstr "Pule para ..."
  249. #: FlatCAMApp.py:4815
  250. msgid "Enter the coordinates in format X,Y:"
  251. msgstr "Digite as coordenadas no formato X,Y:"
  252. #: FlatCAMApp.py:4822
  253. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  254. msgstr "Coordenadas erradas. Insira as coordenadas no formato: X,Y"
  255. #: FlatCAMApp.py:4840 flatcamEditors/FlatCAMExcEditor.py:2320 flatcamEditors/FlatCAMExcEditor.py:2327 flatcamEditors/FlatCAMGeoEditor.py:3648 flatcamEditors/FlatCAMGeoEditor.py:3662 flatcamEditors/FlatCAMGrbEditor.py:1040 flatcamEditors/FlatCAMGrbEditor.py:1141 flatcamEditors/FlatCAMGrbEditor.py:1409 flatcamEditors/FlatCAMGrbEditor.py:1666 flatcamEditors/FlatCAMGrbEditor.py:3960 flatcamEditors/FlatCAMGrbEditor.py:3974 flatcamGUI/FlatCAMGUI.py:2414 flatcamGUI/FlatCAMGUI.py:2426
  256. msgid "[success] Done."
  257. msgstr "[success] Pronto."
  258. #: FlatCAMApp.py:4972 FlatCAMApp.py:5039
  259. msgid "[WARNING_NOTCL] No object is selected. Select an object and try again."
  260. msgstr "[WARNING_NOTCL] Nenhum objeto está selecionado. Selecione um objeto e tente novamente."
  261. #: FlatCAMApp.py:5080
  262. msgid "[success] Origin set ..."
  263. msgstr "[success] Origem definida ..."
  264. #: FlatCAMApp.py:5100
  265. msgid "Preferences"
  266. msgstr "Preferências"
  267. #: FlatCAMApp.py:5120
  268. msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
  269. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Espelhar no eixo Y."
  270. #: FlatCAMApp.py:5145
  271. msgid "[success] Flip on Y axis done."
  272. msgstr "[success] Espelhar no eixo Y pronto."
  273. #: FlatCAMApp.py:5147 FlatCAMApp.py:5187 flatcamEditors/FlatCAMGeoEditor.py:1355 flatcamEditors/FlatCAMGrbEditor.py:5343 flatcamTools/ToolTransform.py:748
  274. #, python-format
  275. msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
  276. msgstr "[ERROR_NOTCL] Devido a %s, a ação de espelhamento não foi executada."
  277. #: FlatCAMApp.py:5160
  278. msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
  279. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Espelhar no eixo X."
  280. #: FlatCAMApp.py:5185
  281. msgid "[success] Flip on X axis done."
  282. msgstr "[success] Espelhar no eixo X pronto."
  283. #: FlatCAMApp.py:5200
  284. msgid "[WARNING_NOTCL] No object selected to Rotate."
  285. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para girar."
  286. #: FlatCAMApp.py:5203 FlatCAMApp.py:5248 FlatCAMApp.py:5279
  287. msgid "Transform"
  288. msgstr "Transformar"
  289. #: FlatCAMApp.py:5203 FlatCAMApp.py:5248 FlatCAMApp.py:5279
  290. msgid "Enter the Angle value:"
  291. msgstr "Digite o valor do Ângulo:"
  292. #: FlatCAMApp.py:5233
  293. msgid "[success] Rotation done."
  294. msgstr "[success] Rotação realizada."
  295. #: FlatCAMApp.py:5235 flatcamEditors/FlatCAMGeoEditor.py:1298 flatcamEditors/FlatCAMGrbEditor.py:5272 flatcamTools/ToolTransform.py:677
  296. #, python-format
  297. msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
  298. msgstr "[ERROR_NOTCL] Devido a %s, o movimento de rotação não foi executado."
  299. #: FlatCAMApp.py:5246
  300. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
  301. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Inclinar/Shear no eixo X."
  302. #: FlatCAMApp.py:5267
  303. msgid "[success] Skew on X axis done."
  304. msgstr "[success] Inclinação no eixo X concluído."
  305. #: FlatCAMApp.py:5277
  306. msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
  307. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para Inclinar/Shear no eixo Y."
  308. #: FlatCAMApp.py:5298
  309. msgid "[success] Skew on Y axis done."
  310. msgstr "[success] Skew no eixo Y feito."
  311. #: FlatCAMApp.py:5368
  312. msgid "Grid On/Off"
  313. msgstr "Grid On/Off"
  314. #: FlatCAMApp.py:5381 flatcamEditors/FlatCAMGeoEditor.py:937 flatcamEditors/FlatCAMGrbEditor.py:2381 flatcamEditors/FlatCAMGrbEditor.py:4861 flatcamGUI/ObjectUI.py:991 flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:208 flatcamTools/ToolNonCopperClear.py:134 flatcamTools/ToolPaint.py:131 flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:479 flatcamTools/ToolTransform.py:337
  315. msgid "Add"
  316. msgstr "Adicionar"
  317. #: FlatCAMApp.py:5382 FlatCAMObj.py:3295 flatcamEditors/FlatCAMGrbEditor.py:2386 flatcamGUI/FlatCAMGUI.py:527 flatcamGUI/FlatCAMGUI.py:724 flatcamGUI/FlatCAMGUI.py:1616 flatcamGUI/FlatCAMGUI.py:1953 flatcamGUI/ObjectUI.py:1007 flatcamTools/ToolNonCopperClear.py:146 flatcamTools/ToolPaint.py:143 flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:481
  318. msgid "Delete"
  319. msgstr "Excluir"
  320. #: FlatCAMApp.py:5395
  321. msgid "New Grid ..."
  322. msgstr "Nova Grade ..."
  323. #: FlatCAMApp.py:5396
  324. msgid "Enter a Grid Value:"
  325. msgstr "Digite um valor de grade:"
  326. #: FlatCAMApp.py:5404 FlatCAMApp.py:5431
  327. msgid "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float format."
  328. msgstr "[WARNING_NOTCL] Por favor, insira um valor de grade com valor diferente de zero, no formato Flutuante."
  329. #: FlatCAMApp.py:5410
  330. msgid "[success] New Grid added ..."
  331. msgstr "[success] Nova Grade adicionada ..."
  332. #: FlatCAMApp.py:5413
  333. msgid "[WARNING_NOTCL] Grid already exists ..."
  334. msgstr "[WARNING_NOTCL] Grade já existe ..."
  335. #: FlatCAMApp.py:5416
  336. msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
  337. msgstr "[WARNING_NOTCL] Adicionar nova grade cancelada ..."
  338. #: FlatCAMApp.py:5438
  339. msgid "[ERROR_NOTCL] Grid Value does not exist ..."
  340. msgstr "[ERROR_NOTCL] O valor da grade não existe ..."
  341. #: FlatCAMApp.py:5441
  342. msgid "[success] Grid Value deleted ..."
  343. msgstr "[success] Valores apagados ..."
  344. #: FlatCAMApp.py:5444
  345. msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
  346. msgstr "[WARNING_NOTCL] Excluir valor de grade cancelado ..."
  347. #: FlatCAMApp.py:5483
  348. msgid "[WARNING_NOTCL] No object selected to copy it's name"
  349. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado para copiar nome"
  350. #: FlatCAMApp.py:5487
  351. msgid "Name copied on clipboard ..."
  352. msgstr "Nome copiado na área de transferência ..."
  353. #: FlatCAMApp.py:5529 flatcamEditors/FlatCAMGrbEditor.py:3901
  354. msgid "[success] Coordinates copied to clipboard."
  355. msgstr "[success] Coordenadas copiadas para a área de transferência."
  356. #: FlatCAMApp.py:5785 FlatCAMApp.py:5788 FlatCAMApp.py:5791 FlatCAMApp.py:5794 FlatCAMApp.py:5809 FlatCAMApp.py:5812 FlatCAMApp.py:5815 FlatCAMApp.py:5818 FlatCAMApp.py:5858 FlatCAMApp.py:5861 FlatCAMApp.py:5864 FlatCAMApp.py:5867 ObjectCollection.py:719 ObjectCollection.py:722 ObjectCollection.py:725 ObjectCollection.py:728
  357. #, python-brace-format
  358. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  359. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selecionado"
  360. #: FlatCAMApp.py:5984
  361. msgid ""
  362. "There are files/objects opened in FlatCAM.\n"
  363. "Creating a New project will delete them.\n"
  364. "Do you want to Save the project?"
  365. msgstr ""
  366. "Existem arquivos/objetos abertos no FlatCAM.\n"
  367. "Criar um novo projeto irá apagá-los.\n"
  368. "Você quer Salvar o Projeto?"
  369. #: FlatCAMApp.py:6005
  370. msgid "[success] New Project created..."
  371. msgstr "[success] Novo Projeto criado ..."
  372. #: FlatCAMApp.py:6121 FlatCAMApp.py:6124 flatcamGUI/FlatCAMGUI.py:608 flatcamGUI/FlatCAMGUI.py:1832
  373. msgid "Open Gerber"
  374. msgstr "Abrir Gerber"
  375. #: FlatCAMApp.py:6129
  376. msgid "[WARNING_NOTCL] Open Gerber cancelled."
  377. msgstr "[WARNING_NOTCL] Abrir Gerber cancelado."
  378. #: FlatCAMApp.py:6150 FlatCAMApp.py:6153 flatcamGUI/FlatCAMGUI.py:609 flatcamGUI/FlatCAMGUI.py:1833
  379. msgid "Open Excellon"
  380. msgstr "Abrir Excellon"
  381. #: FlatCAMApp.py:6158
  382. msgid "[WARNING_NOTCL] Open Excellon cancelled."
  383. msgstr "[WARNING_NOTCL] Abrir Excellon cancelado."
  384. #: FlatCAMApp.py:6180 FlatCAMApp.py:6183
  385. msgid "Open G-Code"
  386. msgstr "Abrir G-Code"
  387. #: FlatCAMApp.py:6188
  388. msgid "[WARNING_NOTCL] Open G-Code cancelled."
  389. msgstr "[WARNING_NOTCL] Abrir G-Code cancelado."
  390. #: FlatCAMApp.py:6206 FlatCAMApp.py:6209
  391. msgid "Open Project"
  392. msgstr "Abrir Projeto"
  393. #: FlatCAMApp.py:6217
  394. msgid "[WARNING_NOTCL] Open Project cancelled."
  395. msgstr "[WARNING_NOTCL] Abrir Projeto cancelado."
  396. #: FlatCAMApp.py:6236 FlatCAMApp.py:6239
  397. msgid "Open Configuration File"
  398. msgstr "Abrir Arquivo de Configuração"
  399. #: FlatCAMApp.py:6243
  400. msgid "[WARNING_NOTCL] Open Config cancelled."
  401. msgstr "[WARNING_NOTCL] Abrir Arquivo de Configuração cancelado."
  402. #: FlatCAMApp.py:6258 FlatCAMApp.py:6509 FlatCAMApp.py:8662 FlatCAMApp.py:8682 FlatCAMApp.py:8703 FlatCAMApp.py:8725
  403. msgid "[WARNING_NOTCL] No object selected."
  404. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  405. #: FlatCAMApp.py:6259 FlatCAMApp.py:6510
  406. msgid "Please Select a Geometry object to export"
  407. msgstr "Por favor, selecione um objeto Geometria para exportar"
  408. #: FlatCAMApp.py:6270
  409. msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
  410. msgstr "[ERROR_NOTCL] Somente objetos Geometria, Gerber e CNCJob podem ser usados."
  411. #: FlatCAMApp.py:6283 FlatCAMApp.py:6287
  412. msgid "Export SVG"
  413. msgstr "Exportar SVG"
  414. #: FlatCAMApp.py:6292
  415. msgid "[WARNING_NOTCL] Export SVG cancelled."
  416. msgstr "[WARNING_NOTCL] Exportar SVG cancelado."
  417. #: FlatCAMApp.py:6311
  418. msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
  419. msgstr "[WARNING_NOTCL] Os dados devem ser uma matriz 3D com a última dimensão 3 ou 4"
  420. #: FlatCAMApp.py:6317 FlatCAMApp.py:6321
  421. msgid "Export PNG Image"
  422. msgstr "Exportar Imagem PNG"
  423. #: FlatCAMApp.py:6326
  424. msgid "Export PNG cancelled."
  425. msgstr "Exportar PNG cancelado."
  426. #: FlatCAMApp.py:6345
  427. msgid "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
  428. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto Gerber para exportar."
  429. #: FlatCAMApp.py:6350 FlatCAMApp.py:6473
  430. msgid "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
  431. msgstr "[ERROR_NOTCL] Falhou. Somente objetos Gerber podem ser salvos como arquivos Gerber ..."
  432. #: FlatCAMApp.py:6362
  433. msgid "Save Gerber source file"
  434. msgstr "Salvar arquivo fonte Gerber"
  435. #: FlatCAMApp.py:6367
  436. msgid "[WARNING_NOTCL] Save Gerber source file cancelled."
  437. msgstr "[WARNING_NOTCL] Salvar arquivo fonte Gerber cancelado."
  438. #: FlatCAMApp.py:6386
  439. msgid "[WARNING_NOTCL] No object selected. Please select an Excellon object to export."
  440. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto Excellon para exportar."
  441. #: FlatCAMApp.py:6391 FlatCAMApp.py:6432
  442. msgid "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
  443. msgstr "[ERROR_NOTCL] Falha. Somente objetos Excellon podem ser salvos como arquivos Excellon ..."
  444. #: FlatCAMApp.py:6399 FlatCAMApp.py:6403
  445. msgid "Save Excellon source file"
  446. msgstr "Salvar o arquivo fonte Excellon"
  447. #: FlatCAMApp.py:6408
  448. msgid "[WARNING_NOTCL] Saving Excellon source file cancelled."
  449. msgstr "[WARNING_NOTCL] Salvar arquivo fonte Excellon cancelado."
  450. #: FlatCAMApp.py:6427
  451. msgid "[WARNING_NOTCL] No object selected. Please Select an Excellon object to export."
  452. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto Excellon para exportar."
  453. #: FlatCAMApp.py:6440 FlatCAMApp.py:6444
  454. msgid "Export Excellon"
  455. msgstr "Exportar Excellon"
  456. #: FlatCAMApp.py:6449
  457. msgid "[WARNING_NOTCL] Export Excellon cancelled."
  458. msgstr "[WARNING_NOTCL] Exportar Excellon cancelado."
  459. #: FlatCAMApp.py:6468
  460. msgid "[WARNING_NOTCL] No object selected. Please Select an Gerber object to export."
  461. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto Gerber para exportar."
  462. #: FlatCAMApp.py:6481 FlatCAMApp.py:6485
  463. msgid "Export Gerber"
  464. msgstr "Exportar Gerber"
  465. #: FlatCAMApp.py:6490
  466. msgid "[WARNING_NOTCL] Export Gerber cancelled."
  467. msgstr "[WARNING_NOTCL] Exportar Gerber cancelado."
  468. #: FlatCAMApp.py:6520
  469. msgid "[ERROR_NOTCL] Only Geometry objects can be used."
  470. msgstr "[ERROR_NOTCL] Apenas objetos Geometria podem ser usados."
  471. #: FlatCAMApp.py:6534 FlatCAMApp.py:6538
  472. msgid "Export DXF"
  473. msgstr "Exportar DXF"
  474. #: FlatCAMApp.py:6544
  475. msgid "[WARNING_NOTCL] Export DXF cancelled."
  476. msgstr "[WARNING_NOTCL] Exportar DXF cancelado."
  477. #: FlatCAMApp.py:6564 FlatCAMApp.py:6567
  478. msgid "Import SVG"
  479. msgstr "Importar SVG"
  480. #: FlatCAMApp.py:6576
  481. msgid "[WARNING_NOTCL] Open SVG cancelled."
  482. msgstr "[WARNING_NOTCL] Abrir SVG cancelado."
  483. #: FlatCAMApp.py:6595 FlatCAMApp.py:6599
  484. msgid "Import DXF"
  485. msgstr "Importar DXF"
  486. #: FlatCAMApp.py:6608
  487. msgid "[WARNING_NOTCL] Open DXF cancelled."
  488. msgstr "[WARNING_NOTCL] Abrir DXF cancelado."
  489. #: FlatCAMApp.py:6626
  490. #, python-format
  491. msgid "%s"
  492. msgstr "%s"
  493. #: FlatCAMApp.py:6646
  494. msgid "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
  495. msgstr "[WARNING_NOTCL] Selecione um arquivo Gerber ou Excellon para visualizar o arquivo fonte."
  496. #: FlatCAMApp.py:6653
  497. msgid "[WARNING_NOTCL] There is no selected object for which to see it's source file code."
  498. msgstr "[WARNING_NOTCL] Não há nenhum objeto selecionado para ver o código fonte do arquivo."
  499. #: FlatCAMApp.py:6661
  500. msgid "Source Editor"
  501. msgstr "Editor de fontes"
  502. #: FlatCAMApp.py:6671
  503. #, python-format
  504. msgid "[ERROR]App.on_view_source() -->%s"
  505. msgstr "[ERROR]App.on_view_source() -->%s"
  506. #: FlatCAMApp.py:6683 FlatCAMApp.py:7825 FlatCAMObj.py:5588 flatcamTools/ToolSolderPaste.py:1278
  507. msgid "Code Editor"
  508. msgstr "Editor de Códigos"
  509. #: FlatCAMApp.py:6695
  510. msgid "Script Editor"
  511. msgstr "Editor de Script"
  512. #: FlatCAMApp.py:6698
  513. msgid ""
  514. "#\n"
  515. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  516. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial.html\n"
  517. "#\n"
  518. "\n"
  519. "# FlatCAM commands list:\n"
  520. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, AlignDrillGrid, ClearShell, Cncjob,\n"
  521. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, GeoUnion, GetNames, GetSys,\n"
  522. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, ListSys, MillHoles, Mirror, New,\n"
  523. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, Options, Paint, Panelize,\n"
  524. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,SubtractRectangle, Version,\n"
  525. "# WriteGCode\n"
  526. "#\n"
  527. "\n"
  528. msgstr ""
  529. "#\n"
  530. "# CRIAR UM NOVO SCRIPT TCL FLATCAM\n"
  531. "# Tutorial TCL aqui: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial.html\n"
  532. "#\n"
  533. "\n"
  534. "# Lista de comandos FlatCAM:\n"
  535. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, AlignDrillGrid, ClearShell, Cncjob,\n"
  536. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, GeoUnion, GetNames, GetSys,\n"
  537. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, ListSys, MillHoles, Mirror, New,\n"
  538. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, Options, Paint, Panelize,\n"
  539. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,SubtractRectangle, Version,\n"
  540. "# WriteGCode\n"
  541. "#\n"
  542. "\n"
  543. #: FlatCAMApp.py:6721 FlatCAMApp.py:6724
  544. msgid "Open TCL script"
  545. msgstr "Abrir script TCL"
  546. #: FlatCAMApp.py:6732
  547. msgid "[WARNING_NOTCL] Open TCL script cancelled."
  548. msgstr "[WARNING_NOTCL] Abrir script TCL cancelado."
  549. #: FlatCAMApp.py:6744
  550. #, python-format
  551. msgid "[ERROR]App.on_fileopenscript() -->%s"
  552. msgstr "[ERROR]App.on_fileopenscript() -->%s"
  553. #: FlatCAMApp.py:6770 FlatCAMApp.py:6773
  554. msgid "Run TCL script"
  555. msgstr "Executar script TCL"
  556. #: FlatCAMApp.py:6781
  557. msgid "[WARNING_NOTCL] Run TCL script cancelled."
  558. msgstr "[WARNING_NOTCL] Executar script TCL cancelado."
  559. #: FlatCAMApp.py:6831 FlatCAMApp.py:6835
  560. msgid "Save Project As ..."
  561. msgstr "Salvar Projeto Como ..."
  562. #: FlatCAMApp.py:6832
  563. #, python-brace-format
  564. msgid "{l_save}/Project_{date}"
  565. msgstr "{l_save}/Project_{date}"
  566. #: FlatCAMApp.py:6840
  567. msgid "[WARNING_NOTCL] Save Project cancelled."
  568. msgstr "[WARNING_NOTCL] Salvar Projeto cancelado."
  569. #: FlatCAMApp.py:6884
  570. msgid "Exporting SVG"
  571. msgstr "Exportando SVG"
  572. #: FlatCAMApp.py:6918 FlatCAMApp.py:7024 FlatCAMApp.py:7139
  573. #, python-format
  574. msgid "[success] SVG file exported to %s"
  575. msgstr "[success] Arquivo SVG exportado para %s"
  576. #: FlatCAMApp.py:6949 FlatCAMApp.py:7070
  577. #, python-format
  578. msgid "[WARNING_NOTCL] No object Box. Using instead %s"
  579. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  580. #: FlatCAMApp.py:7027 FlatCAMApp.py:7142
  581. msgid "Generating Film ... Please wait."
  582. msgstr "Gerando Filme ... Por favor, aguarde."
  583. #: FlatCAMApp.py:7290
  584. #, python-format
  585. msgid "[success] Excellon file exported to %s"
  586. msgstr "[success] Arquivo Excellon exportado para %s"
  587. #: FlatCAMApp.py:7297
  588. msgid "Exporting Excellon"
  589. msgstr "Exportando Excellon"
  590. #: FlatCAMApp.py:7302 FlatCAMApp.py:7309
  591. msgid "[ERROR_NOTCL] Could not export Excellon file."
  592. msgstr "[ERROR_NOTCL] Não foi possível exportar o arquivo Excellon."
  593. #: FlatCAMApp.py:7407
  594. #, python-format
  595. msgid "[success] Gerber file exported to %s"
  596. msgstr "[success] Arquivo Gerber exportado para %s"
  597. #: FlatCAMApp.py:7414
  598. msgid "Exporting Gerber"
  599. msgstr "Exportando Gerber"
  600. #: FlatCAMApp.py:7419 FlatCAMApp.py:7426
  601. msgid "[ERROR_NOTCL] Could not export Gerber file."
  602. msgstr "[ERROR_NOTCL] Não foi possível exportar o arquivo Gerber."
  603. #: FlatCAMApp.py:7466
  604. #, python-format
  605. msgid "[success] DXF file exported to %s"
  606. msgstr "[sucesso] Arquivo DXF exportado para %s"
  607. #: FlatCAMApp.py:7472
  608. msgid "Exporting DXF"
  609. msgstr "Exportando DXF"
  610. #: FlatCAMApp.py:7477 FlatCAMApp.py:7484
  611. msgid "[[WARNING_NOTCL]] Could not export DXF file."
  612. msgstr "[[WARNING_NOTCL]] Não foi possível exportar o arquivo DXF."
  613. #: FlatCAMApp.py:7504 FlatCAMApp.py:7546 FlatCAMApp.py:7590
  614. msgid "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and Gerber are supported"
  615. msgstr "[ERROR_NOTCL] O tipo escolhido não é suportado como parâmetro. Apenas Geometria e Gerber são suportados"
  616. #: FlatCAMApp.py:7514
  617. msgid "Importing SVG"
  618. msgstr "Importando SVG"
  619. #: FlatCAMApp.py:7525 FlatCAMApp.py:7567 FlatCAMApp.py:7610 FlatCAMApp.py:7687 FlatCAMApp.py:7748 FlatCAMApp.py:7811 flatcamTools/ToolPDF.py:212
  620. #, python-format
  621. msgid "[success] Opened: %s"
  622. msgstr "[success] Aberto: %s"
  623. #: FlatCAMApp.py:7556
  624. msgid "Importing DXF"
  625. msgstr "Importando DXF"
  626. #: FlatCAMApp.py:7598
  627. msgid "Importing Image"
  628. msgstr "Importando Imagem"
  629. #: FlatCAMApp.py:7639 FlatCAMApp.py:7641
  630. #, python-format
  631. msgid "[ERROR_NOTCL] Failed to open file: %s"
  632. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo: %s"
  633. #: FlatCAMApp.py:7644
  634. #, python-brace-format
  635. msgid "[ERROR_NOTCL] Failed to parse file: {name}. {error}"
  636. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo: {name}. {error}"
  637. #: FlatCAMApp.py:7651 FlatCAMObj.py:4266 flatcamEditors/FlatCAMExcEditor.py:2077
  638. msgid "[ERROR] An internal error has ocurred. See shell.\n"
  639. msgstr "[ERRO] Um erro interno ocorreu. Veja shell. \n"
  640. #: FlatCAMApp.py:7660
  641. msgid "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
  642. msgstr "[ERROR_NOTCL] O objeto não é um arquivo Gerber ou está vazio. Abortando a criação de objetos."
  643. #: FlatCAMApp.py:7668
  644. msgid "Opening Gerber"
  645. msgstr "Abrindo Gerber"
  646. #: FlatCAMApp.py:7678
  647. msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
  648. msgstr "[ERROR_NOTCL] Abrir Gerber falhou. Provavelmente não é um arquivo Gerber."
  649. #: FlatCAMApp.py:7711 flatcamTools/ToolPcbWizard.py:421
  650. msgid "[ERROR_NOTCL] This is not Excellon file."
  651. msgstr "[ERROR_NOTCL] Este não é um arquivo Excellon."
  652. #: FlatCAMApp.py:7714
  653. #, python-format
  654. msgid "[ERROR_NOTCL] Cannot open file: %s"
  655. msgstr "[ERROR_NOTCL] Não é possível abrir o arquivo: %s"
  656. #: FlatCAMApp.py:7719 flatcamTools/ToolPcbWizard.py:429
  657. msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
  658. msgstr "[ERROR_NOTCL] Ocorreu um erro interno. Veja shell. \n"
  659. #: FlatCAMApp.py:7732 flatcamTools/ToolPDF.py:262 flatcamTools/ToolPcbWizard.py:442
  660. #, python-format
  661. msgid "[ERROR_NOTCL] No geometry found in file: %s"
  662. msgstr "[ERROR_NOTCL] Nenhuma geometria encontrada no arquivo: %s"
  663. #: FlatCAMApp.py:7735
  664. msgid "Opening Excellon."
  665. msgstr "Abrindo o Excellon."
  666. #: FlatCAMApp.py:7741
  667. msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
  668. msgstr "[ERROR_NOTCL] Falha ao abrir Excellon. Provavelmente não é um arquivo Excellon."
  669. #: FlatCAMApp.py:7778
  670. #, python-format
  671. msgid "[ERROR_NOTCL] Failed to open %s"
  672. msgstr "[ERROR_NOTCL] Falha ao abrir %s"
  673. #: FlatCAMApp.py:7788
  674. msgid "[ERROR_NOTCL] This is not GCODE"
  675. msgstr "[ERROR_NOTCL] Não é G-Code"
  676. #: FlatCAMApp.py:7794
  677. msgid "Opening G-Code."
  678. msgstr "Abrindo G-Code."
  679. #: FlatCAMApp.py:7802
  680. msgid ""
  681. "[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
  682. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during processing"
  683. msgstr ""
  684. "[ERROR_NOTCL] Falha ao criar o objeto CNCJob. Provavelmente não é um arquivo G-Code. \n"
  685. "A tentativa de criar um objeto FlatCAM CNCJob do arquivo G-Code falhou durante o processamento"
  686. #: FlatCAMApp.py:7842
  687. #, python-format
  688. msgid "[ERROR_NOTCL] Failed to open config file: %s"
  689. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo de configuração: %s"
  690. #: FlatCAMApp.py:7868 FlatCAMApp.py:7885
  691. #, python-format
  692. msgid "[ERROR_NOTCL] Failed to open project file: %s"
  693. msgstr "[ERROR_NOTCL] Falha ao abrir o arquivo do projeto: %s"
  694. #: FlatCAMApp.py:7908
  695. #, python-format
  696. msgid "[success] Project loaded from: %s"
  697. msgstr "[sucesso] Projeto carregado de: %s"
  698. #: FlatCAMApp.py:8013
  699. msgid "Available commands:\n"
  700. msgstr "Comandos disponíveis:\n"
  701. #: FlatCAMApp.py:8015
  702. msgid ""
  703. "\n"
  704. "\n"
  705. "Type help <command_name> for usage.\n"
  706. " Example: help open_gerber"
  707. msgstr ""
  708. "\n"
  709. "\n"
  710. "Digite help <nome_do_comando> para forma de uso. \n"
  711. " Exemplo: help open_gerber"
  712. #: FlatCAMApp.py:8165
  713. msgid "Shows list of commands."
  714. msgstr "Mostra a lista de comandos."
  715. #: FlatCAMApp.py:8222
  716. msgid "[ERROR_NOTCL] Failed to load recent item list."
  717. msgstr "[ERROR_NOTCL] Falha ao carregar a lista de itens recentes."
  718. #: FlatCAMApp.py:8229
  719. msgid "[ERROR_NOTCL] Failed to parse recent item list."
  720. msgstr "[ERROR_NOTCL] Falha ao analisar a lista de itens recentes."
  721. #: FlatCAMApp.py:8273
  722. msgid "Clear Recent files"
  723. msgstr "Limpar arquivos recentes"
  724. #: FlatCAMApp.py:8290 flatcamGUI/FlatCAMGUI.py:968
  725. msgid "<b>Shortcut Key List</b>"
  726. msgstr "<b>Lista de Teclas de Atalho</b>"
  727. #: FlatCAMApp.py:8297
  728. msgid ""
  729. "\n"
  730. "<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from Project Tab</strong></span></p>\n"
  731. "\n"
  732. "<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
  733. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  734. "\n"
  735. "<ol>\n"
  736. "\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, toolbars, key shortcuts or even dragging and dropping the files on the GUI.<br />\n"
  737. "\t<br />\n"
  738. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on the project file, drag &amp; drop of the file into the FLATCAM GUI or through the menu/toolbar links offered within the app.</span><br />\n"
  739. "\t&nbsp;</li>\n"
  740. "\t<li><span style=\"font-size:10px\">Once an object is available in the Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </strong>(more simpler is to double click the object name in the Project Tab), <strong>SELECTED TAB </strong>will be updated with the object properties according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br />\n"
  741. "\t<br />\n"
  742. "\tIf the selection of the object is done on the canvas by single click instead, and the <strong>SELECTED TAB</strong> is in focus, again the object properties will be displayed into the Selected Tab. Alternatively, double clicking on the object on the canvas will bring the <strong>SELECTED TAB</strong> and populate it even if it was out of focus.<br />\n"
  743. "\t<br />\n"
  744. "\tYou can change the parameters in this screen and the flow direction is like this:<br />\n"
  745. "\t<br />\n"
  746. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</span></li>\n"
  747. "</ol>\n"
  748. "\n"
  749. "<p><span style=\"font-size:10px\">A list of key shortcuts is available through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  750. "\n"
  751. " "
  752. msgstr ""
  753. "\n"
  754. "<p><span style=\"font-size:14px\"><strong>Aba Selecionado - Escolha um Item da Aba Projeto</strong></span></p>\n"
  755. "\n"
  756. "<p><span style=\"font-size:10px\"><strong>Detalhes</strong>:<br/>\n"
  757. "O fluxo normal de trabalho no FlatCAM é o seguinte:</span></p>\n"
  758. "\n"
  759. "<ol>\n"
  760. "\t<li><span style=\"font-size:10px\">Ler/Importar um arquivo Gerber, Excellon, G-Code, DXF, Imagem Raster ou SVG no FlatCAM usando os menu&#39;s, barras de trabalho, teclas de atalho ou mesmo arrastando e soltando os arquivos na GUI.<br/>\n"
  761. "\t<br />\n"
  762. "\tVocê pode também ler um <strong>projeto FlatCAM</strong> clicando duas vezes no arquivo de projeto, arrastando soltando o arquivo na GUI do FlatCAM ou através dos links de menu/barra de ferramentas oferecidos dentro do aplicativo.</span><br />\n"
  763. "\t&nbsp;</li>\n"
  764. "\t<li><span style=\"font-size:10px\">Uma vez que um objeto está disponível na Aba Projeto, selecionando-o e então focando em <strong>ABA SELECIONADO</strong> (mais simples é clicar duas vezes no nome do objeto na aba Projeto), a <strong>ABA SELECIONADO</strong> será atualizada com as propriedades do objeto de acordo com o tipo: Gerber, Excellon, Geometria ou Trabalho CNC.<br/>\n"
  765. "\t<br />\n"
  766. "\tSe a seleção do objeto for feita na tela com um único clique, e a <strong>ABA SELECIONADO</strong> estiver em foco, novamente as propriedades do objeto serão exibidas na Aba Selecionado. Como alternativa, clicar duas vezes no objeto na tela trará a <strong>ABA SELECIONADO</strong> e a preencherá mesmo que esteja fora de foco.<br/>\n"
  767. "\t<br />\n"
  768. "\tVocê pode alterar os parâmetros nesta tela e o fluxo é assim:<br />\n"
  769. "\t<br />\n"
  770. "\t<strong>Objeto Gerber/Excellon</strong> -&gt; Alterar Parâmetros -&gt; Gerar Geometria -&gt;<strong> Objeto Geometria </strong>-&gt; Adicionar Ferramentas (alterar parâmetro na Aba Selecionado) -&gt; Gerar Trabalho CNC -&gt;<strong> Objeto Trabalho CNC </strong>-&gt; Verificar G-Code (com Editar Código CNC) e/ou acrescentar/pré-anexar ao G-Code (novamente, na <strong>ABA SELECIONADO)&nbsp;</strong>-&gt; Salvar G-Code</span></li>\n"
  771. "</ol>\n"
  772. "\n"
  773. "<p><span style=\"font-size:10px\">Uma lista de teclas de atalhos está disponível em <strong>Ajuda -&gt; Lista de Atalhos</strong>&nbsp;ou usando a sua tecla de atalho: <strng>F3</strong>.</span></p>\n"
  774. "\n"
  775. " "
  776. #: FlatCAMApp.py:8404
  777. msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
  778. msgstr "[WARNING_NOTCL] Falha na verificação da versão mais recente. Não foi possível conectar."
  779. #: FlatCAMApp.py:8411
  780. msgid "[ERROR_NOTCL] Could not parse information about latest version."
  781. msgstr "[ERROR_NOTCL] Não foi possível analisar informações sobre a versão mais recente."
  782. #: FlatCAMApp.py:8421
  783. msgid "[success] FlatCAM is up to date!"
  784. msgstr "[sucesso] O FlatCAM está atualizado!"
  785. #: FlatCAMApp.py:8426
  786. msgid "Newer Version Available"
  787. msgstr "Nova Versão Disponível"
  788. #: FlatCAMApp.py:8427
  789. msgid ""
  790. "There is a newer version of FlatCAM available for download:\n"
  791. "\n"
  792. msgstr ""
  793. "Existe uma versão mais nova do FlatCAM disponível para download:\n"
  794. "\n"
  795. #: FlatCAMApp.py:8429
  796. msgid "info"
  797. msgstr "info"
  798. #: FlatCAMApp.py:8448
  799. msgid "[success] All plots disabled."
  800. msgstr "[success] Todos os gráficos desabilitados."
  801. #: FlatCAMApp.py:8454
  802. msgid "[success] All non selected plots disabled."
  803. msgstr "[success] Todos os gráficos não selecionados desabilitados."
  804. #: FlatCAMApp.py:8460
  805. msgid "[success] All plots enabled."
  806. msgstr "[success] Todos os gráficos habilitados."
  807. #: FlatCAMApp.py:8466
  808. msgid "[success] Selected plots enabled..."
  809. msgstr "[sucesso] Gráficos selecionados habilitados ..."
  810. #: FlatCAMApp.py:8474
  811. msgid "[success] Selected plots disabled..."
  812. msgstr "[success] Gráficos selecionados desabilitados..."
  813. #: FlatCAMApp.py:8484 FlatCAMApp.py:8497
  814. msgid "Working ..."
  815. msgstr "Trabalhando ..."
  816. #: FlatCAMApp.py:8531
  817. msgid "Saving FlatCAM Project"
  818. msgstr "Salvando o Projeto FlatCAM"
  819. #: FlatCAMApp.py:8552 FlatCAMApp.py:8583
  820. #, python-format
  821. msgid "[success] Project saved to: %s"
  822. msgstr "[sucesso] Projeto salvo em: %s"
  823. #: FlatCAMApp.py:8570
  824. #, python-format
  825. msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
  826. msgstr "[ERROR_NOTCL] Falha ao verificar o arquivo do projeto: %s . Tente salvá-lo novamente."
  827. #: FlatCAMApp.py:8577
  828. #, python-format
  829. msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
  830. msgstr "[ERROR_NOTCL] Falha ao analisar o arquivo de projeto salvo: %s . Tente salvá-lo novamente."
  831. #: FlatCAMApp.py:8585
  832. #, python-format
  833. msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
  834. msgstr "[ERROR_NOTCL] Falha ao salvar o arquivo de projeto: %s . Tente salvá-lo novamente."
  835. #: FlatCAMObj.py:207
  836. #, python-brace-format
  837. msgid "[success] Name changed from {old} to {new}"
  838. msgstr "[success] Nome alterado de {old} para {new}"
  839. #: FlatCAMObj.py:553 FlatCAMObj.py:2034 FlatCAMObj.py:3300 FlatCAMObj.py:5485
  840. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  841. msgstr "<span style=\"color:green;\"><b>Básico</b></span>"
  842. #: FlatCAMObj.py:565 FlatCAMObj.py:2050 FlatCAMObj.py:3322 FlatCAMObj.py:5491
  843. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  844. msgstr "<span style=\"color:red;\"><b>Avançado</b></span>"
  845. #: FlatCAMObj.py:927 FlatCAMObj.py:982
  846. #, python-format
  847. msgid "[success] Isolation geometry created: %s"
  848. msgstr "[sucesso] Geometria de isolamento criada: %s"
  849. #: FlatCAMObj.py:1161
  850. msgid "Plotting Apertures"
  851. msgstr "Plotando Aberturas"
  852. #: FlatCAMObj.py:1877 flatcamEditors/FlatCAMExcEditor.py:1368
  853. msgid "Total Drills"
  854. msgstr "Total de Furos"
  855. #: FlatCAMObj.py:1903 flatcamEditors/FlatCAMExcEditor.py:1400
  856. msgid "Total Slots"
  857. msgstr "Total de Fendas"
  858. #: FlatCAMObj.py:2106 FlatCAMObj.py:3374 FlatCAMObj.py:3674 FlatCAMObj.py:3869 FlatCAMObj.py:3882 FlatCAMObj.py:3999 FlatCAMObj.py:4416 FlatCAMObj.py:4654 FlatCAMObj.py:5067 flatcamEditors/FlatCAMExcEditor.py:1474 flatcamTools/ToolCalculators.py:307 flatcamTools/ToolCalculators.py:318 flatcamTools/ToolCalculators.py:330 flatcamTools/ToolCalculators.py:345 flatcamTools/ToolCalculators.py:358 flatcamTools/ToolCalculators.py:372 flatcamTools/ToolCalculators.py:383 flatcamTools/ToolCalculators.py:394 flatcamTools/ToolCalculators.py:405 flatcamTools/ToolFilm.py:241 flatcamTools/ToolFilm.py:248 flatcamTools/ToolNonCopperClear.py:480 flatcamTools/ToolNonCopperClear.py:551 flatcamTools/ToolNonCopperClear.py:627 flatcamTools/ToolNonCopperClear.py:644 flatcamTools/ToolPaint.py:538 flatcamTools/ToolPaint.py:608 flatcamTools/ToolPaint.py:743 flatcamTools/ToolPaint.py:844 flatcamTools/ToolPaint.py:999 flatcamTools/ToolPanelize.py:385 flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:410 flatcamTools/ToolPanelize.py:423 flatcamTools/ToolPanelize.py:435 flatcamTools/ToolPanelize.py:446 flatcamTools/ToolSolderPaste.py:756 flatcamTools/ToolSolderPaste.py:827
  859. msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
  860. msgstr "[ERROR_NOTCL] Formato incorreto, use um número."
  861. #: FlatCAMObj.py:2330 FlatCAMObj.py:2422 FlatCAMObj.py:2545
  862. msgid "[ERROR_NOTCL] Please select one or more tools from the list and try again."
  863. msgstr "[ERROR_NOTCL] Selecione uma ou mais ferramentas da lista e tente novamente."
  864. #: FlatCAMObj.py:2337
  865. msgid "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
  866. msgstr "[ERROR_NOTCL] A ferramenta de fresagem para BROCAS é maior que o tamanho do furo. Cancelado."
  867. #: FlatCAMObj.py:2351 FlatCAMObj.py:2446 FlatCAMObj.py:2565
  868. msgid "Tool_nr"
  869. msgstr "Ferramenta_nr"
  870. #: FlatCAMObj.py:2351 FlatCAMObj.py:2446 FlatCAMObj.py:2565 flatcamEditors/FlatCAMExcEditor.py:819 flatcamEditors/FlatCAMExcEditor.py:2020 flatcamGUI/ObjectUI.py:556 flatcamTools/ToolNonCopperClear.py:83 flatcamTools/ToolPaint.py:80 flatcamTools/ToolPcbWizard.py:78 flatcamTools/ToolSolderPaste.py:81
  871. msgid "Diameter"
  872. msgstr "Diâmetro"
  873. #: FlatCAMObj.py:2351 FlatCAMObj.py:2446 FlatCAMObj.py:2565
  874. msgid "Drills_Nr"
  875. msgstr "Broca_Nr"
  876. #: FlatCAMObj.py:2351 FlatCAMObj.py:2446 FlatCAMObj.py:2565
  877. msgid "Slots_Nr"
  878. msgstr "Slots_Nr"
  879. #: FlatCAMObj.py:2432
  880. msgid "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
  881. msgstr "[ERROR_NOTCL] A ferramenta de fresagem para SLOTS é maior que o tamanho do furo. Cancelado."
  882. #: FlatCAMObj.py:2607 FlatCAMObj.py:4304 FlatCAMObj.py:4520 FlatCAMObj.py:4837
  883. msgid "[ERROR_NOTCL] Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth\"]"
  884. msgstr "[ERROR_NOTCL] Formato de valor incorreto para self.defaults[\"z_pdepth\"] ou self.options[\"z_pdepth\"]"
  885. #: FlatCAMObj.py:2619 FlatCAMObj.py:4316 FlatCAMObj.py:4532 FlatCAMObj.py:4849
  886. msgid "[ERROR_NOTCL] Wrong value format for self.defaults[\"feedrate_probe\"] or self.options[\"feedrate_probe\"]"
  887. msgstr "[ERROR_NOTCL] Formato de valor incorreto para self.defaults[\"feedrate_probe\"] ou self.options[\"feedrate_probe\"]"
  888. #: FlatCAMObj.py:2651 FlatCAMObj.py:4725 FlatCAMObj.py:4730 FlatCAMObj.py:4880
  889. msgid "Generating CNC Code"
  890. msgstr "Gerando Código CNC"
  891. #: FlatCAMObj.py:2677 FlatCAMObj.py:5026 camlib.py:5167 camlib.py:5626 camlib.py:5889
  892. msgid ""
  893. "[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, y) \n"
  894. "but now there is only one value, not two. "
  895. msgstr ""
  896. "[ERROR] O campo Toolchange X, Y em Editar -> Preferências tem que estar no formato (x, y) \n"
  897. "mas agora existe apenas um valor, não dois. "
  898. #: FlatCAMObj.py:2997 FlatCAMObj.py:3925 FlatCAMObj.py:3926 FlatCAMObj.py:3935
  899. msgid "Iso"
  900. msgstr "Iso"
  901. #: FlatCAMObj.py:2997 FlatCAMObj.py:3257 FlatCAMObj.py:3539
  902. msgid "Rough"
  903. msgstr "Rude"
  904. #: FlatCAMObj.py:2997
  905. msgid "Finish"
  906. msgstr "Terminar"
  907. #: FlatCAMObj.py:3293 flatcamGUI/FlatCAMGUI.py:526 flatcamGUI/FlatCAMGUI.py:722 flatcamGUI/FlatCAMGUI.py:1615 flatcamGUI/FlatCAMGUI.py:1951 flatcamGUI/ObjectUI.py:999
  908. msgid "Copy"
  909. msgstr "Copiar"
  910. #: FlatCAMObj.py:3509
  911. msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
  912. msgstr "[ERROR_NOTCL] Por favor, insira o diâmetro da ferramenta desejada no formato Flutuante."
  913. #: FlatCAMObj.py:3584
  914. msgid "[success] Tool added in Tool Table."
  915. msgstr "[sucesso] Ferramenta adicionada na Tabela de Ferramentas."
  916. #: FlatCAMObj.py:3589
  917. msgid "[ERROR_NOTCL] Default Tool added. Wrong value format entered."
  918. msgstr "[ERROR_NOTCL] Ferramenta padrão adicionada. Formato de valor incorreto inserido."
  919. #: FlatCAMObj.py:3619 FlatCAMObj.py:3629
  920. msgid "[WARNING_NOTCL] Failed. Select a tool to copy."
  921. msgstr "[WARNING_NOTCL] Falhou. Selecione uma ferramenta para copiar."
  922. #: FlatCAMObj.py:3658
  923. msgid "[success] Tool was copied in Tool Table."
  924. msgstr "[sucesso] A ferramenta foi copiada na tabela de ferramentas."
  925. #: FlatCAMObj.py:3691
  926. msgid "[success] Tool was edited in Tool Table."
  927. msgstr "[sucesso] A ferramenta foi editada na Tabela de Ferramentas."
  928. #: FlatCAMObj.py:3722 FlatCAMObj.py:3732
  929. msgid "[WARNING_NOTCL] Failed. Select a tool to delete."
  930. msgstr "[WARNING_NOTCL] Falhou. Selecione uma ferramenta para excluir."
  931. #: FlatCAMObj.py:3756
  932. msgid "[success] Tool was deleted in Tool Table."
  933. msgstr "[sucesso] A ferramenta foi eliminada da Tabela de Ferramentas."
  934. #: FlatCAMObj.py:4185
  935. #, python-format
  936. msgid "[WARNING_NOTCL] This Geometry can't be processed because it is %s geometry."
  937. msgstr "[WARNING_NOTCL] Esta Geometria não pode ser processada porque é %s geometria."
  938. #: FlatCAMObj.py:4202
  939. msgid "[ERROR_NOTCL] Wrong Tool Dia value format entered, use a number."
  940. msgstr "[ERROR_NOTCL] Valor inserido no formato errado. Use um número."
  941. #: FlatCAMObj.py:4229
  942. msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
  943. msgstr "[ERROR_NOTCL] Falhou. Nenhuma ferramenta selecionada na tabela de ferramentas ..."
  944. #: FlatCAMObj.py:4267
  945. #, python-format
  946. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  947. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
  948. #: FlatCAMObj.py:4425 FlatCAMObj.py:4663
  949. msgid ""
  950. "[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
  951. "Add a Tool Offset or change the Offset Type."
  952. msgstr ""
  953. "[WARNING] Tool Offset é selecionado na Tabela de Ferramentas, mas nenhum valor é fornecido. \n"
  954. "Adicione um Offset de Ferramenta ou altere o Tipo de Deslocamento."
  955. #: FlatCAMObj.py:4544 flatcamTools/ToolSolderPaste.py:1107 flatcamTools/ToolSolderPaste.py:1162
  956. msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
  957. msgstr "[ERROR_NOTCL] Cancelado. Arquivo vazio, não tem geometria ..."
  958. #: FlatCAMObj.py:4913 FlatCAMObj.py:4923 camlib.py:3348 camlib.py:3357
  959. msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
  960. msgstr "[ERROR_NOTCL] O fator de escala deve ser um número: inteiro ou flutuante."
  961. #: FlatCAMObj.py:4961
  962. msgid "[success] Geometry Scale done."
  963. msgstr "[sucesso] Escala de geometria feita."
  964. #: FlatCAMObj.py:4978 camlib.py:3426
  965. msgid "[ERROR_NOTCL] An (x,y) pair of values are needed. Probable you entered only one value in the Offset field."
  966. msgstr "[ERROR_NOTCL] Um par de valores (x, y) é necessário. Provavelmente você digitou apenas um valor no campo Deslocamento."
  967. #: FlatCAMObj.py:4998
  968. msgid "[success] Geometry Offset done."
  969. msgstr "[sucesso] Geometria Offset feito."
  970. #: FlatCAMObj.py:5553 FlatCAMObj.py:5558 flatcamTools/ToolSolderPaste.py:1361
  971. msgid "Export Machine Code ..."
  972. msgstr "Exportar Código da Máquina ..."
  973. #: FlatCAMObj.py:5564 flatcamTools/ToolSolderPaste.py:1364
  974. msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
  975. msgstr "[WARNING_NOTCL] Exportar código da máquina cancelado ..."
  976. #: FlatCAMObj.py:5577
  977. #, python-format
  978. msgid "[success] Machine Code file saved to: %s"
  979. msgstr "[sucesso] Arquivo de código da máquina salvo em: %s"
  980. #: FlatCAMObj.py:5599
  981. #, python-format
  982. msgid "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  983. msgstr "[ERROR]FlatCAMCNNJob.on_edit_code_click() -->%s"
  984. #: FlatCAMObj.py:5716
  985. #, python-format
  986. msgid "[WARNING_NOTCL] This CNCJob object can't be processed because it is a %s CNCJob object."
  987. msgstr "[WARNING_NOTCL] Este objeto CNCJob não pode ser processado porque é um objeto %s CNCJob."
  988. #: FlatCAMObj.py:5769
  989. msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
  990. msgstr "[ERROR_NOTCL] O G-Code não possui um código de unidade: G20 ou G21"
  991. #: FlatCAMObj.py:5782
  992. msgid "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's empty."
  993. msgstr "[ERROR_NOTCL] Cancelado. O código personalizado do Toolchange está ativado, mas está vazio."
  994. #: FlatCAMObj.py:5789
  995. msgid "[success] Toolchange G-code was replaced by a custom code."
  996. msgstr "[success] O G-Code do Toolchange foi substituído por um código personalizado."
  997. #: FlatCAMObj.py:5804 flatcamTools/ToolSolderPaste.py:1390
  998. msgid "[WARNING_NOTCL] No such file or directory"
  999. msgstr "[WARNING_NOTCL] Nenhum arquivo ou diretório"
  1000. #: FlatCAMObj.py:5824 FlatCAMObj.py:5836
  1001. msgid "[WARNING_NOTCL] The used postprocessor file has to have in it's name: 'toolchange_custom'"
  1002. msgstr "[WARNING_NOTCL] O arquivo do postprocessor usado deve ter em seu nome: 'toolchange_custom'"
  1003. #: FlatCAMObj.py:5842
  1004. msgid "[ERROR] There is no postprocessor file."
  1005. msgstr "[ERRO] Não há arquivo de pós-processador."
  1006. #: ObjectCollection.py:420
  1007. #, python-brace-format
  1008. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1009. msgstr "Objeto renomeado de <b>{old}</b> para <b>{new}</b>"
  1010. #: ObjectCollection.py:759
  1011. #, python-format
  1012. msgid "[ERROR] Cause of error: %s"
  1013. msgstr "[ERRO] Causa do erro: %s"
  1014. #: camlib.py:197
  1015. msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
  1016. msgstr "[ERROR_NOTCL] self.solid_geometry não é nem BaseGeometry nem lista."
  1017. #: camlib.py:1391
  1018. msgid "[success] Object was mirrored ..."
  1019. msgstr "[sucesso] Objeto foi espelhado ..."
  1020. #: camlib.py:1393
  1021. msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
  1022. msgstr "[ERROR_NOTCL] Falha ao espelhar. Nenhum objeto selecionado"
  1023. #: camlib.py:1429
  1024. msgid "[success] Object was rotated ..."
  1025. msgstr "[sucesso] Objeto foi rotacionado ..."
  1026. #: camlib.py:1431
  1027. msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
  1028. msgstr "[ERROR_NOTCL] Falha ao rotacionar. Nenhum objeto selecionado"
  1029. #: camlib.py:1465
  1030. msgid "[success] Object was skewed ..."
  1031. msgstr "[sucesso] Objeto foi inclinado ..."
  1032. #: camlib.py:1467
  1033. msgid "[ERROR_NOTCL] Failed to skew. No object selected"
  1034. msgstr "[ERROR_NOTCL] Falha ao inclinar. Nenhum objeto selecionado"
  1035. #: camlib.py:2728 camlib.py:2813
  1036. #, python-format
  1037. msgid "[WARNING] Coordinates missing, line ignored: %s"
  1038. msgstr "[AVISO] Coordenadas faltando, linha ignorada: %s"
  1039. #: camlib.py:2729 camlib.py:2814
  1040. msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
  1041. msgstr "[WARNING_NOTCL] O arquivo GERBER pode estar CORROMPIDO. Verifique o arquivo !!!"
  1042. #: camlib.py:2778
  1043. #, python-format
  1044. msgid "[ERROR] Region does not have enough points. File will be processed but there are parser errors. Line number: %s"
  1045. msgstr "[ERRO] A região não possui pontos suficientes. O arquivo será processado, mas há erros de analisador. Número da linha: %s"
  1046. #: camlib.py:3170
  1047. #, python-format
  1048. msgid ""
  1049. "[ERROR]Gerber Parser ERROR.\n"
  1050. "%s:"
  1051. msgstr ""
  1052. "[ERROR]Gerber Parser ERROR.\n"
  1053. "%s:"
  1054. #: camlib.py:3394
  1055. msgid "[success] Gerber Scale done."
  1056. msgstr "[success] Gerber Scale done."
  1057. #: camlib.py:3459
  1058. msgid "[success] Gerber Offset done."
  1059. msgstr "[success] Gerber Offset done."
  1060. #: camlib.py:3513
  1061. msgid "[success] Gerber Mirror done."
  1062. msgstr "[success] Gerber Mirror done."
  1063. #: camlib.py:3559
  1064. msgid "[success] Gerber Skew done."
  1065. msgstr "[success] Gerber Skew done."
  1066. #: camlib.py:3597
  1067. msgid "[success] Gerber Rotate done."
  1068. msgstr "[success] Gerber Rotate done."
  1069. #: camlib.py:3878
  1070. #, python-format
  1071. msgid "[ERROR_NOTCL] This is GCODE mark: %s"
  1072. msgstr "[ERROR_NOTCL] Esta é a marca G-CODE: %s"
  1073. #: camlib.py:3993
  1074. #, python-format
  1075. msgid ""
  1076. "[WARNING] No tool diameter info's. See shell.\n"
  1077. "A tool change event: T%s was found but the Excellon file have no informations regarding the tool diameters therefore the application will try to load it by using some 'fake' diameters.\n"
  1078. "The user needs to edit the resulting Excellon object and change the diameters to reflect the real diameters."
  1079. msgstr ""
  1080. "[WARNING] Nenhuma informação de diâmetro de ferramenta. Veja shell. \n"
  1081. "Um evento de troca de ferramenta: T %s foi encontrado mas o arquivo Excellon não possui informações sobre os diâmetros da ferramenta, portanto o aplicativo tentará carregá-lo usando alguns diâmetros 'falsos'. \n"
  1082. "O usuário precisa editar o objeto Excellon resultante e alterar os diâmetros para os diâmetros reais."
  1083. #: camlib.py:4458
  1084. #, python-brace-format
  1085. msgid ""
  1086. "[ERROR] Excellon Parser error.\n"
  1087. "Parsing Failed. Line {l_nr}: {line}\n"
  1088. msgstr ""
  1089. "[ERROR] Erro do Analisador Excellon. \n"
  1090. "Análise falhou. Linha {l_nr}: {line} \n"
  1091. #: camlib.py:4537
  1092. msgid ""
  1093. "[WARNING] Excellon.create_geometry() -> a drill location was skipped due of not having a tool associated.\n"
  1094. "Check the resulting GCode."
  1095. msgstr ""
  1096. "[WARNING] Excellon.create_geometry () -> um furo foi ignorado por não ter uma ferramenta associada. \n"
  1097. "Verifique o G-Code resultante."
  1098. #: camlib.py:5076
  1099. #, python-format
  1100. msgid "[ERROR] There is no such parameter: %s"
  1101. msgstr "[ERRO] Não existe esse parâmetro: %s"
  1102. #: camlib.py:5146
  1103. msgid ""
  1104. "[WARNING] The Cut Z parameter has positive value. It is the depth value to drill into material.\n"
  1105. "The Cut Z parameter needs to have a negative value, assuming it is a typo therefore the app will convert the value to negative. Check the resulting CNC code (Gcode etc)."
  1106. msgstr ""
  1107. "[WARNING] O parâmetro Cut Z está positivo. Uma vez que é o valor de profundidade para cortar o material, \n"
  1108. "o parâmetro Cut Z precisa ter um valor negativo. Supondo que seja um erro de digitação, o aplicativo converterá o valor para negativo.Verifique o código resultante do CNC (G-Code, etc.)."
  1109. #: camlib.py:5153 camlib.py:5649 camlib.py:5912
  1110. #, python-format
  1111. msgid "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
  1112. msgstr "[WARNING] O parâmetro Cut Z é zero. Não haverá corte, ignorando arquivo %s"
  1113. #: camlib.py:5382 camlib.py:5479 camlib.py:5537
  1114. msgid "[ERROR_NOTCL] The loaded Excellon file has no drills ..."
  1115. msgstr "[ERROR_NOTCL] O arquivo Excellon carregado não tem brocas ..."
  1116. #: camlib.py:5484
  1117. msgid "[ERROR_NOTCL] Wrong optimization type selected."
  1118. msgstr "[ERROR_NOTCL] Tipo de otimização incorreto selecionado."
  1119. #: camlib.py:5637 camlib.py:5900
  1120. msgid "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad combinations of other parameters."
  1121. msgstr "O parâmetro [ERROR_NOTCL] Cut_Z está vazio ou é zero. O mais provável é uma combinação ruim de outros parâmetros."
  1122. #: camlib.py:5642 camlib.py:5905
  1123. msgid ""
  1124. "[WARNING] The Cut Z parameter has positive value. It is the depth value to cut into material.\n"
  1125. "The Cut Z parameter needs to have a negative value, assuming it is a typo therefore the app will convert the value to negative.Check the resulting CNC code (Gcode etc)."
  1126. msgstr ""
  1127. "[WARNING] O parâmetro Cut Z está positivo. Uma vez que é o valor de profundidade para cortar o material, \n"
  1128. "o parâmetro Cut Z precisa ter um valor negativo. Supondo que seja um erro de digitação, o aplicativo converterá o valor para negativo.Verifique o código resultante do CNC (G-Code, etc.)."
  1129. #: camlib.py:5654 camlib.py:5917
  1130. msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
  1131. msgstr "[ERROR_NOTCL] O parâmetro Travel Z é Nulo ou zero."
  1132. #: camlib.py:5658 camlib.py:5921
  1133. msgid ""
  1134. "[WARNING] The Travel Z parameter has negative value. It is the height value to travel between cuts.\n"
  1135. "The Z Travel parameter needs to have a positive value, assuming it is a typo therefore the app will convert the value to positive.Check the resulting CNC code (Gcode etc)."
  1136. msgstr ""
  1137. "[WARNING] O parâmetro Travel Z tem valor negativo. Este é o valor da altura para viajar entre os cortes, \n"
  1138. "e precisa ter um valor positivo. Supondo que seja um erro de digitação, o aplicativo converterá o valor para positivo.Verifique o código CNC resultante (G-Code, etc.)."
  1139. #: camlib.py:5665 camlib.py:5928
  1140. #, python-format
  1141. msgid "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
  1142. msgstr "[WARNING] O parâmetro Z Travel é zero. Isso é perigoso, ignorando arquivo %s"
  1143. #: camlib.py:5795
  1144. #, python-format
  1145. msgid "[ERROR]Expected a Geometry, got %s"
  1146. msgstr "[ERRO] Esperada uma geometria, recebido %s"
  1147. #: camlib.py:5801
  1148. msgid "[ERROR_NOTCL] Trying to generate a CNC Job from a Geometry object without solid_geometry."
  1149. msgstr "[ERROR_NOTCL] Tentando gerar um trabalho CNC a partir de um objeto Geometria sem solid_geometry."
  1150. #: camlib.py:5840
  1151. msgid ""
  1152. "[ERROR_NOTCL] The Tool Offset value is too negative to use for the current_geometry.\n"
  1153. "Raise the value (in module) and try again."
  1154. msgstr ""
  1155. "[ERROR_NOTCL] O valor de Deslocamento da Ferramenta é muito negativo para usar na current_geometry. \n"
  1156. "Altere o valor e tente novamente."
  1157. #: camlib.py:6052
  1158. msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
  1159. msgstr "[ERROR_NOTCL] Não há dados da ferramenta na geometria do SolderPaste."
  1160. #: flatcamEditors/FlatCAMExcEditor.py:37 flatcamEditors/FlatCAMExcEditor.py:143 flatcamEditors/FlatCAMGrbEditor.py:229 flatcamEditors/FlatCAMGrbEditor.py:234
  1161. msgid "Click to place ..."
  1162. msgstr "Clique para colocar ..."
  1163. #: flatcamEditors/FlatCAMExcEditor.py:46
  1164. msgid "[WARNING_NOTCL] To add a drill first select a tool"
  1165. msgstr "[WARNING_NOTCL] Para adicionar uma broca, primeiro selecione uma ferramenta"
  1166. #: flatcamEditors/FlatCAMExcEditor.py:62 flatcamEditors/FlatCAMExcEditor.py:165 flatcamEditors/FlatCAMExcEditor.py:450 flatcamEditors/FlatCAMExcEditor.py:475 flatcamEditors/FlatCAMGrbEditor.py:451 flatcamEditors/FlatCAMGrbEditor.py:1776 flatcamEditors/FlatCAMGrbEditor.py:1804
  1167. msgid "Click on target location ..."
  1168. msgstr "Clique no local de destino ..."
  1169. #: flatcamEditors/FlatCAMExcEditor.py:108
  1170. msgid "[success] Done. Drill added."
  1171. msgstr "[sucesso] Feito. Broca adicionada."
  1172. #: flatcamEditors/FlatCAMExcEditor.py:150
  1173. msgid "[WARNING_NOTCL] To add an Drill Array first select a tool in Tool Table"
  1174. msgstr "[WARNING_NOTCL] Para adicionar um Drill Array, primeiro selecione uma ferramenta na Tabela de Ferramentas"
  1175. #: flatcamEditors/FlatCAMExcEditor.py:182
  1176. msgid "Click on the Drill Circular Array Start position"
  1177. msgstr "Clique na posição inicial do Drill Circular Array"
  1178. #: flatcamEditors/FlatCAMExcEditor.py:204 flatcamEditors/FlatCAMGrbEditor.py:494
  1179. msgid "[ERROR_NOTCL] The value is not Float. Check for comma instead of dot separator."
  1180. msgstr "[ERROR_NOTCL] O valor não é flutuante. Verifique uma vírgula em vez do ponto no separador decimal."
  1181. #: flatcamEditors/FlatCAMExcEditor.py:207
  1182. #, python-format
  1183. msgid "[ERROR_NOTCL] The value is mistyped. Check the value. %s"
  1184. msgstr "[ERROR_NOTCL] O valor foi digitado incorretamente. Verifique o valor. %s"
  1185. #: flatcamEditors/FlatCAMExcEditor.py:305
  1186. msgid "[WARNING_NOTCL] Too many drills for the selected spacing angle."
  1187. msgstr "[WARNING_NOTCL] Brocas demais para o ângulo de espaçamento selecionado."
  1188. #: flatcamEditors/FlatCAMExcEditor.py:322
  1189. msgid "[success] Done. Drill Array added."
  1190. msgstr "[sucesso] Feito. Drill Array adicionado."
  1191. #: flatcamEditors/FlatCAMExcEditor.py:333
  1192. msgid "Click on the Drill(s) to resize ..."
  1193. msgstr "Clique na(s) Broca(s) para redimensionar ..."
  1194. #: flatcamEditors/FlatCAMExcEditor.py:354
  1195. msgid "[ERROR_NOTCL] Resize drill(s) failed. Please enter a diameter for resize."
  1196. msgstr "[ERROR_NOTCL] Redimensionar broca(s) falhou. Por favor insira um diâmetro para redimensionar."
  1197. #: flatcamEditors/FlatCAMExcEditor.py:424
  1198. msgid "[success] Done. Drill Resize completed."
  1199. msgstr "[sucesso] Feito. Redimensionamento de broca concluído."
  1200. #: flatcamEditors/FlatCAMExcEditor.py:427
  1201. msgid "[WARNING_NOTCL] Cancelled. No drills selected for resize ..."
  1202. msgstr "[WARNING_NOTCL] Cancelado. Nenhuma broca selecionada para redimensionar ..."
  1203. #: flatcamEditors/FlatCAMExcEditor.py:452 flatcamEditors/FlatCAMGrbEditor.py:1778
  1204. msgid "Click on reference location ..."
  1205. msgstr "Clique no local de referência ..."
  1206. #: flatcamEditors/FlatCAMExcEditor.py:507
  1207. msgid "[success] Done. Drill(s) Move completed."
  1208. msgstr "[sucesso] Feito. Movimento da Broca realizado."
  1209. #: flatcamEditors/FlatCAMExcEditor.py:592
  1210. msgid "[success] Done. Drill(s) copied."
  1211. msgstr "[sucesso] Feito. Drill(s) copiado."
  1212. #: flatcamEditors/FlatCAMExcEditor.py:792 flatcamGUI/FlatCAMGUI.py:5008
  1213. msgid "Excellon Editor"
  1214. msgstr "Editor Excellon"
  1215. #: flatcamEditors/FlatCAMExcEditor.py:799 flatcamEditors/FlatCAMGrbEditor.py:2266
  1216. msgid "Name:"
  1217. msgstr "Nome:"
  1218. #: flatcamEditors/FlatCAMExcEditor.py:805 flatcamTools/ToolNonCopperClear.py:72 flatcamTools/ToolPaint.py:69 flatcamTools/ToolSolderPaste.py:70
  1219. msgid "Tools Table"
  1220. msgstr "Tabela de Ferramentas"
  1221. #: flatcamEditors/FlatCAMExcEditor.py:807 flatcamGUI/ObjectUI.py:538
  1222. msgid ""
  1223. "Tools in this Excellon object\n"
  1224. "when are used for drilling."
  1225. msgstr ""
  1226. "Ferramentas neste objeto Excellon \n"
  1227. "quando são usadas para perfuração."
  1228. #: flatcamEditors/FlatCAMExcEditor.py:827
  1229. msgid "Add/Delete Tool"
  1230. msgstr "Adicionar/Excluir Ferramenta"
  1231. #: flatcamEditors/FlatCAMExcEditor.py:829
  1232. msgid ""
  1233. "Add/Delete a tool to the tool list\n"
  1234. "for this Excellon object."
  1235. msgstr "Adicionar/Excluir uma ferramenta para a lista de ferramentas \\ npara este objeto Excellon."
  1236. #: flatcamEditors/FlatCAMExcEditor.py:837 flatcamTools/ToolCutOut.py:77
  1237. msgid "Tool Dia:"
  1238. msgstr "Diâmetro da Ferramenta:"
  1239. #: flatcamEditors/FlatCAMExcEditor.py:839 flatcamGUI/FlatCAMGUI.py:5037 flatcamGUI/ObjectUI.py:978
  1240. msgid "Diameter for the new tool"
  1241. msgstr "Diâmetro para a nova ferramenta"
  1242. #: flatcamEditors/FlatCAMExcEditor.py:847
  1243. msgid "Add Tool"
  1244. msgstr "Adicionar Ferramenta"
  1245. #: flatcamEditors/FlatCAMExcEditor.py:849
  1246. msgid ""
  1247. "Add a new tool to the tool list\n"
  1248. "with the diameter specified above."
  1249. msgstr ""
  1250. "Adicione uma nova ferramenta à lista de ferramentas \n"
  1251. "com o diâmetro especificado acima."
  1252. #: flatcamEditors/FlatCAMExcEditor.py:861
  1253. msgid "Delete Tool"
  1254. msgstr "Excluir ferramenta"
  1255. #: flatcamEditors/FlatCAMExcEditor.py:863
  1256. msgid ""
  1257. "Delete a tool in the tool list\n"
  1258. "by selecting a row in the tool table."
  1259. msgstr "Excluir uma ferramenta na lista de ferramentas selecionando uma linha na tabela de ferramentas."
  1260. #: flatcamEditors/FlatCAMExcEditor.py:881
  1261. msgid "Resize Drill(s)"
  1262. msgstr "Redimensionar broca(s)"
  1263. #: flatcamEditors/FlatCAMExcEditor.py:883
  1264. msgid "Resize a drill or a selection of drills."
  1265. msgstr "Redimensione uma broca ou uma seleção de brocas."
  1266. #: flatcamEditors/FlatCAMExcEditor.py:890
  1267. msgid "Resize Dia:"
  1268. msgstr "Redimensionar Dia:"
  1269. #: flatcamEditors/FlatCAMExcEditor.py:892
  1270. msgid "Diameter to resize to."
  1271. msgstr "Diâmetro para redimensionar para."
  1272. #: flatcamEditors/FlatCAMExcEditor.py:900
  1273. msgid "Resize"
  1274. msgstr "Redimensionar"
  1275. #: flatcamEditors/FlatCAMExcEditor.py:902
  1276. msgid "Resize drill(s)"
  1277. msgstr "Redimensionar broca(s)"
  1278. #: flatcamEditors/FlatCAMExcEditor.py:924 flatcamGUI/FlatCAMGUI.py:1612
  1279. msgid "Add Drill Array"
  1280. msgstr "Adicionar Matriz de Broca"
  1281. #: flatcamEditors/FlatCAMExcEditor.py:926
  1282. msgid "Add an array of drills (linear or circular array)"
  1283. msgstr "Adicione uma matriz de brocas (matriz linear ou circular)"
  1284. #: flatcamEditors/FlatCAMExcEditor.py:932
  1285. msgid ""
  1286. "Select the type of drills array to create.\n"
  1287. "It can be Linear X(Y) or Circular"
  1288. msgstr ""
  1289. "Selecione o tipo de array de brocas para criar. \n"
  1290. "Pode ser Linear X (Y) ou Circular"
  1291. #: flatcamEditors/FlatCAMExcEditor.py:935 flatcamEditors/FlatCAMGrbEditor.py:2499
  1292. msgid "Linear"
  1293. msgstr "Linear"
  1294. #: flatcamEditors/FlatCAMExcEditor.py:936 flatcamEditors/FlatCAMGrbEditor.py:2500
  1295. msgid "Circular"
  1296. msgstr "Circular"
  1297. #: flatcamEditors/FlatCAMExcEditor.py:944 flatcamGUI/FlatCAMGUI.py:5047
  1298. msgid "Nr of drills:"
  1299. msgstr "Nº de brocas:"
  1300. #: flatcamEditors/FlatCAMExcEditor.py:946 flatcamGUI/FlatCAMGUI.py:5049
  1301. msgid "Specify how many drills to be in the array."
  1302. msgstr "Especifique quantas brocas devem estar no array."
  1303. #: flatcamEditors/FlatCAMExcEditor.py:964 flatcamEditors/FlatCAMExcEditor.py:1010 flatcamEditors/FlatCAMGrbEditor.py:2526 flatcamEditors/FlatCAMGrbEditor.py:2571
  1304. msgid "Direction:"
  1305. msgstr "Direção:"
  1306. #: flatcamEditors/FlatCAMExcEditor.py:966 flatcamEditors/FlatCAMGrbEditor.py:2528 flatcamGUI/FlatCAMGUI.py:5064
  1307. msgid ""
  1308. "Direction on which the linear array is oriented:\n"
  1309. "- 'X' - horizontal axis \n"
  1310. "- 'Y' - vertical axis or \n"
  1311. "- 'Angle' - a custom angle for the array inclination"
  1312. msgstr ""
  1313. "Direção na qual a matriz linear é orientada: \n"
  1314. "- 'X' - eixo horizontal \n"
  1315. "- 'Y' - eixo vertical ou \n"
  1316. "- 'Ângulo' - um ângulo personalizado para a inclinação da matriz"
  1317. #: flatcamEditors/FlatCAMExcEditor.py:979 flatcamEditors/FlatCAMGrbEditor.py:2541 flatcamGUI/FlatCAMGUI.py:5078
  1318. msgid "Pitch:"
  1319. msgstr "Passo:"
  1320. #: flatcamEditors/FlatCAMExcEditor.py:981 flatcamEditors/FlatCAMGrbEditor.py:2543 flatcamGUI/FlatCAMGUI.py:5080
  1321. msgid "Pitch = Distance between elements of the array."
  1322. msgstr "Passo = Distância entre os elementos da matriz."
  1323. #: flatcamEditors/FlatCAMExcEditor.py:989 flatcamEditors/FlatCAMExcEditor.py:1024 flatcamEditors/FlatCAMGeoEditor.py:665 flatcamEditors/FlatCAMGrbEditor.py:2550 flatcamEditors/FlatCAMGrbEditor.py:2586 flatcamEditors/FlatCAMGrbEditor.py:4588 flatcamGUI/FlatCAMGUI.py:5089 flatcamTools/ToolTransform.py:68
  1324. msgid "Angle:"
  1325. msgstr "Ângulo:"
  1326. #: flatcamEditors/FlatCAMExcEditor.py:991 flatcamEditors/FlatCAMGrbEditor.py:2552
  1327. msgid ""
  1328. "Angle at which the linear array is placed.\n"
  1329. "The precision is of max 2 decimals.\n"
  1330. "Min value is: -359.99 degrees.\n"
  1331. "Max value is: 360.00 degrees."
  1332. msgstr ""
  1333. "Ângulo no qual o array linear é colocado. \n"
  1334. "A precisão é de no máximo 2 decimais. \n"
  1335. "O valor min é: -359.99 graus. \n"
  1336. "O valor máximo é: 360,00 graus."
  1337. #: flatcamEditors/FlatCAMExcEditor.py:1012 flatcamEditors/FlatCAMGrbEditor.py:2573
  1338. msgid "Direction for circular array.Can be CW = clockwise or CCW = counter clockwise."
  1339. msgstr "Direção para matriz circular. Pode ser CW = sentido horário ou CCW = sentido anti-horário."
  1340. #: flatcamEditors/FlatCAMExcEditor.py:1026 flatcamEditors/FlatCAMGrbEditor.py:2588 flatcamGUI/FlatCAMGUI.py:5091 flatcamGUI/FlatCAMGUI.py:5117
  1341. msgid "Angle at which each element in circular array is placed."
  1342. msgstr "Ângulo no qual cada elemento na matriz circular é colocado."
  1343. #: flatcamEditors/FlatCAMExcEditor.py:1487
  1344. msgid ""
  1345. "[WARNING_NOTCL] Tool already in the original or actual tool list.\n"
  1346. "Save and reedit Excellon if you need to add this tool. "
  1347. msgstr ""
  1348. "[WARNING_NOTCL] Ferramenta já na lista de ferramentas original ou atual. \n"
  1349. "Salve e reexiba Excellon se precisar adicionar essa ferramenta. "
  1350. #: flatcamEditors/FlatCAMExcEditor.py:1496 flatcamGUI/FlatCAMGUI.py:2997
  1351. #, python-brace-format
  1352. msgid "[success] Added new tool with dia: {dia} {units}"
  1353. msgstr "[sucesso] Adicionada nova ferramenta com dia: {dia} {units}"
  1354. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1355. msgid "[WARNING_NOTCL] Select a tool in Tool Table"
  1356. msgstr "[WARNING_NOTCL] Selecione uma ferramenta na Tabela de Ferramentas"
  1357. #: flatcamEditors/FlatCAMExcEditor.py:1560
  1358. #, python-brace-format
  1359. msgid "[success] Deleted tool with dia: {del_dia} {units}"
  1360. msgstr "[success] Ferramenta excluída com dia: {del_dia} {units}"
  1361. #: flatcamEditors/FlatCAMExcEditor.py:2074
  1362. msgid "[ERROR_NOTCL] There are no Tools definitions in the file. Aborting Excellon creation."
  1363. msgstr "[ERROR_NOTCL] Não há definições de ferramentas no arquivo. Abortando a criação do Excellon."
  1364. #: flatcamEditors/FlatCAMExcEditor.py:2083
  1365. msgid "Creating Excellon."
  1366. msgstr "Criando Excellon."
  1367. #: flatcamEditors/FlatCAMExcEditor.py:2092
  1368. msgid "[success] Excellon editing finished."
  1369. msgstr "[sucesso] Edição de Excellon terminada."
  1370. #: flatcamEditors/FlatCAMExcEditor.py:2109
  1371. msgid "[WARNING_NOTCL] Cancelled. There is no Tool/Drill selected"
  1372. msgstr "[WARNING_NOTCL] Cancelado. Não há ferramenta/broca selecionada"
  1373. #: flatcamEditors/FlatCAMExcEditor.py:2637
  1374. msgid "[success] Done. Drill(s) deleted."
  1375. msgstr "[sucesso] Feito. Brocas(s) excluída(s)."
  1376. #: flatcamEditors/FlatCAMExcEditor.py:2705 flatcamEditors/FlatCAMGrbEditor.py:4350
  1377. msgid "Click on the circular array Center position"
  1378. msgstr "Clique na posição central da matriz circular"
  1379. #: flatcamEditors/FlatCAMGeoEditor.py:80 flatcamEditors/FlatCAMGrbEditor.py:2416
  1380. msgid "Buffer distance:"
  1381. msgstr "Distância do buffer:"
  1382. #: flatcamEditors/FlatCAMGeoEditor.py:81 flatcamEditors/FlatCAMGrbEditor.py:2417
  1383. msgid "Buffer corner:"
  1384. msgstr "Canto do buffer:"
  1385. #: flatcamEditors/FlatCAMGeoEditor.py:83
  1386. msgid ""
  1387. "There are 3 types of corners:\n"
  1388. " - 'Round': the corner is rounded for exterior buffer.\n"
  1389. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  1390. " - 'Beveled:' the corner is a line that directly connects the features meeting in the corner"
  1391. msgstr ""
  1392. "Existem 3 tipos de cantos: \n"
  1393. " - 'Round': o canto é arredondado para buffer externo. \n"
  1394. " - 'Square:' o canto é encontrado em um ângulo agudo para buffer externo. \n"
  1395. " - 'Beveled:' o canto é uma linha que conecta diretamente os recursos encontrados no canto"
  1396. #: flatcamEditors/FlatCAMGeoEditor.py:89 flatcamEditors/FlatCAMGrbEditor.py:2425
  1397. msgid "Round"
  1398. msgstr "Round"
  1399. #: flatcamEditors/FlatCAMGeoEditor.py:90 flatcamEditors/FlatCAMGrbEditor.py:2426
  1400. msgid "Square"
  1401. msgstr "Square"
  1402. #: flatcamEditors/FlatCAMGeoEditor.py:91 flatcamEditors/FlatCAMGrbEditor.py:2427
  1403. msgid "Beveled"
  1404. msgstr "Beveled"
  1405. #: flatcamEditors/FlatCAMGeoEditor.py:98
  1406. msgid "Buffer Interior"
  1407. msgstr "Buffer Interior"
  1408. #: flatcamEditors/FlatCAMGeoEditor.py:100
  1409. msgid "Buffer Exterior"
  1410. msgstr "Buffer Exterior"
  1411. #: flatcamEditors/FlatCAMGeoEditor.py:106
  1412. msgid "Full Buffer"
  1413. msgstr "Buffer Completo"
  1414. #: flatcamEditors/FlatCAMGeoEditor.py:127 flatcamEditors/FlatCAMGeoEditor.py:2682
  1415. msgid "Buffer Tool"
  1416. msgstr "Ferramenta Buffer"
  1417. #: flatcamEditors/FlatCAMGeoEditor.py:138 flatcamEditors/FlatCAMGeoEditor.py:155 flatcamEditors/FlatCAMGeoEditor.py:172 flatcamEditors/FlatCAMGeoEditor.py:2700 flatcamEditors/FlatCAMGeoEditor.py:2726 flatcamEditors/FlatCAMGeoEditor.py:2752 flatcamEditors/FlatCAMGrbEditor.py:4402
  1418. msgid "[WARNING_NOTCL] Buffer distance value is missing or wrong format. Add it and retry."
  1419. msgstr "[WARNING_NOTCL] O valor da distância do buffer está ausente ou em formato incorreto. Altere e tente novamente."
  1420. #: flatcamEditors/FlatCAMGeoEditor.py:343
  1421. msgid "Text Tool"
  1422. msgstr "Ferramenta de Texto"
  1423. #: flatcamEditors/FlatCAMGeoEditor.py:401 flatcamGUI/FlatCAMGUI.py:803
  1424. msgid "Tool"
  1425. msgstr "Ferramenta"
  1426. #: flatcamEditors/FlatCAMGeoEditor.py:432 flatcamGUI/FlatCAMGUI.py:4054 flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5597 flatcamGUI/FlatCAMGUI.py:5874 flatcamGUI/FlatCAMGUI.py:6014 flatcamGUI/ObjectUI.py:260
  1427. msgid "Tool dia:"
  1428. msgstr "Diâmetro da Ferramenta:"
  1429. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:6016
  1430. msgid ""
  1431. "Diameter of the tool to\n"
  1432. "be used in the operation."
  1433. msgstr ""
  1434. "Diâmetro da ferramenta para \n"
  1435. "ser usada na operação."
  1436. #: flatcamEditors/FlatCAMGeoEditor.py:443 flatcamGUI/FlatCAMGUI.py:5780 flatcamGUI/FlatCAMGUI.py:6025 flatcamTools/ToolNonCopperClear.py:165 flatcamTools/ToolPaint.py:160
  1437. msgid "Overlap Rate:"
  1438. msgstr "Taxa de Sobreposição:"
  1439. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamTools/ToolPaint.py:162
  1440. #, python-format
  1441. msgid ""
  1442. "How much (fraction) of the tool width to overlap each tool pass.\n"
  1443. "Example:\n"
  1444. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  1445. "\n"
  1446. "Adjust the value starting with lower values\n"
  1447. "and increasing it if areas that should be painted are still \n"
  1448. "not painted.\n"
  1449. "Lower values = faster processing, faster execution on PCB.\n"
  1450. "Higher values = slow processing and slow execution on CNC\n"
  1451. "due of too many paths."
  1452. msgstr ""
  1453. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da ferramenta.\n"
  1454. "Exemplo:\n"
  1455. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da ferramenta.\n"
  1456. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  1457. "deveria ser pintada não foi pintada.\n"
  1458. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  1459. "Valores maiores = processamento lento e execução lenta no CNC \n"
  1460. " devido ao número de caminhos."
  1461. #: flatcamEditors/FlatCAMGeoEditor.py:461 flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:5882 flatcamGUI/FlatCAMGUI.py:6035 flatcamTools/ToolCutOut.py:86 flatcamTools/ToolNonCopperClear.py:181 flatcamTools/ToolPaint.py:177
  1462. msgid "Margin:"
  1463. msgstr "Margem:"
  1464. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6037 flatcamTools/ToolPaint.py:179
  1465. msgid ""
  1466. "Distance by which to avoid\n"
  1467. "the edges of the polygon to\n"
  1468. "be painted."
  1469. msgstr ""
  1470. "Distância pela qual evitar \n"
  1471. "as bordas do polígono para \n"
  1472. "ser pintado."
  1473. #: flatcamEditors/FlatCAMGeoEditor.py:472 flatcamGUI/FlatCAMGUI.py:5805 flatcamGUI/FlatCAMGUI.py:6046 flatcamTools/ToolNonCopperClear.py:190 flatcamTools/ToolPaint.py:188
  1474. msgid "Method:"
  1475. msgstr "Método:"
  1476. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6048
  1477. msgid "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards.<BR><B>Seed-based</B>: Outwards from seed."
  1478. msgstr "Algoritmo para pintar o polígono: <BR><B> Padrão </B>: Passo fixo para dentro. <BR><B> Baseado em sementes </B>: para fora da semente."
  1479. #: flatcamEditors/FlatCAMGeoEditor.py:487 flatcamGUI/FlatCAMGUI.py:5821 flatcamGUI/FlatCAMGUI.py:6061 flatcamTools/ToolNonCopperClear.py:206 flatcamTools/ToolPaint.py:204
  1480. msgid "Connect:"
  1481. msgstr "Conectar:"
  1482. #: flatcamEditors/FlatCAMGeoEditor.py:489 flatcamGUI/FlatCAMGUI.py:5823 flatcamGUI/FlatCAMGUI.py:6063 flatcamTools/ToolNonCopperClear.py:208 flatcamTools/ToolPaint.py:206
  1483. msgid ""
  1484. "Draw lines between resulting\n"
  1485. "segments to minimize tool lifts."
  1486. msgstr ""
  1487. "Desenhe linhas entre os \n"
  1488. "segmentos resultantes para minimizar as elevações de ferramentas."
  1489. #: flatcamEditors/FlatCAMGeoEditor.py:496 flatcamGUI/FlatCAMGUI.py:5830 flatcamGUI/FlatCAMGUI.py:6071 flatcamTools/ToolNonCopperClear.py:215 flatcamTools/ToolPaint.py:213
  1490. msgid "Contour:"
  1491. msgstr "Contorno:"
  1492. #: flatcamEditors/FlatCAMGeoEditor.py:498 flatcamGUI/FlatCAMGUI.py:5832 flatcamGUI/FlatCAMGUI.py:6073 flatcamTools/ToolNonCopperClear.py:217 flatcamTools/ToolPaint.py:215
  1493. msgid ""
  1494. "Cut around the perimeter of the polygon\n"
  1495. "to trim rough edges."
  1496. msgstr "Corte o perímetro do polígono para cortar as arestas."
  1497. #: flatcamEditors/FlatCAMGeoEditor.py:509
  1498. msgid "Paint"
  1499. msgstr "Pintura"
  1500. #: flatcamEditors/FlatCAMGeoEditor.py:527 flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1866 flatcamGUI/ObjectUI.py:1314 flatcamTools/ToolPaint.py:341
  1501. msgid "Paint Tool"
  1502. msgstr "Ferramenta de pintura"
  1503. #: flatcamEditors/FlatCAMGeoEditor.py:563
  1504. msgid "[WARNING_NOTCL] Paint cancelled. No shape selected."
  1505. msgstr "[WARNING_NOTCL] Pintura cancelada. Nenhuma forma selecionada."
  1506. #: flatcamEditors/FlatCAMGeoEditor.py:574 flatcamTools/ToolCutOut.py:355 flatcamTools/ToolCutOut.py:518 flatcamTools/ToolCutOut.py:657 flatcamTools/ToolCutOut.py:762 flatcamTools/ToolDblSided.py:363
  1507. msgid "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and retry."
  1508. msgstr "[WARNING_NOTCL] O valor do diâmetro da ferramenta está ausente ou em formato incorreto. Altere e tente novamente."
  1509. #: flatcamEditors/FlatCAMGeoEditor.py:585
  1510. msgid "[WARNING_NOTCL] Overlap value is missing or wrong format. Add it and retry."
  1511. msgstr "[WARNING_NOTCL] O valor de sobreposição está ausente ou em formato incorreto. Altere e tente novamente."
  1512. #: flatcamEditors/FlatCAMGeoEditor.py:597
  1513. msgid "[WARNING_NOTCL] Margin distance value is missing or wrong format. Add it and retry."
  1514. msgstr "[WARNING_NOTCL] O valor da distância da margem está ausente ou em formato incorreto. Altere e tente novamente."
  1515. #: flatcamEditors/FlatCAMGeoEditor.py:606 flatcamEditors/FlatCAMGeoEditor.py:2707 flatcamEditors/FlatCAMGeoEditor.py:2733 flatcamEditors/FlatCAMGeoEditor.py:2759 flatcamTools/ToolNonCopperClear.py:813 flatcamTools/ToolProperties.py:104
  1516. msgid "Tools"
  1517. msgstr "Ferramentas"
  1518. #: flatcamEditors/FlatCAMGeoEditor.py:617 flatcamEditors/FlatCAMGeoEditor.py:990 flatcamEditors/FlatCAMGrbEditor.py:4539 flatcamEditors/FlatCAMGrbEditor.py:4924 flatcamGUI/FlatCAMGUI.py:654 flatcamGUI/FlatCAMGUI.py:1879 flatcamTools/ToolTransform.py:398
  1519. msgid "Transform Tool"
  1520. msgstr "Transformar Ferramenta"
  1521. #: flatcamEditors/FlatCAMGeoEditor.py:618 flatcamEditors/FlatCAMGeoEditor.py:679 flatcamEditors/FlatCAMGrbEditor.py:4540 flatcamEditors/FlatCAMGrbEditor.py:4602 flatcamTools/ToolTransform.py:24 flatcamTools/ToolTransform.py:82
  1522. msgid "Rotate"
  1523. msgstr "Girar"
  1524. #: flatcamEditors/FlatCAMGeoEditor.py:619 flatcamEditors/FlatCAMGrbEditor.py:4541 flatcamTools/ToolTransform.py:25
  1525. msgid "Skew/Shear"
  1526. msgstr "Skew/Shear"
  1527. #: flatcamEditors/FlatCAMGeoEditor.py:620 flatcamEditors/FlatCAMGrbEditor.py:2471 flatcamEditors/FlatCAMGrbEditor.py:4542 flatcamGUI/FlatCAMGUI.py:718 flatcamGUI/FlatCAMGUI.py:1947 flatcamGUI/ObjectUI.py:100 flatcamTools/ToolTransform.py:26
  1528. msgid "Scale"
  1529. msgstr "Escala"
  1530. #: flatcamEditors/FlatCAMGeoEditor.py:621 flatcamEditors/FlatCAMGrbEditor.py:4543 flatcamTools/ToolTransform.py:27
  1531. msgid "Mirror (Flip)"
  1532. msgstr "Espelho (Flip)"
  1533. #: flatcamEditors/FlatCAMGeoEditor.py:622 flatcamEditors/FlatCAMGrbEditor.py:4544 flatcamGUI/ObjectUI.py:127 flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465 flatcamTools/ToolTransform.py:28
  1534. msgid "Offset"
  1535. msgstr "Deslocamento"
  1536. #: flatcamEditors/FlatCAMGeoEditor.py:633 flatcamEditors/FlatCAMGrbEditor.py:4556
  1537. #, python-format
  1538. msgid "Editor %s"
  1539. msgstr "Editor %s"
  1540. #: flatcamEditors/FlatCAMGeoEditor.py:667 flatcamEditors/FlatCAMGrbEditor.py:4590 flatcamTools/ToolTransform.py:70
  1541. msgid ""
  1542. "Angle for Rotation action, in degrees.\n"
  1543. "Float number between -360 and 359.\n"
  1544. "Positive numbers for CW motion.\n"
  1545. "Negative numbers for CCW motion."
  1546. msgstr ""
  1547. "Ângulo para a ação Rotação, em graus. \n"
  1548. "Número flutuante entre -360 e 359. \n"
  1549. "Números positivos para movimento horário. \n"
  1550. "Números negativos para movimento anti-horário."
  1551. #: flatcamEditors/FlatCAMGeoEditor.py:681 flatcamEditors/FlatCAMGrbEditor.py:4604
  1552. msgid ""
  1553. "Rotate the selected shape(s).\n"
  1554. "The point of reference is the middle of\n"
  1555. "the bounding box for all selected shapes."
  1556. msgstr ""
  1557. "Gira a(s) forma(s) selecionada(s). \n"
  1558. "O ponto de referência é o meio da \n"
  1559. "caixa delimitadora para todas as formas selecionadas."
  1560. #: flatcamEditors/FlatCAMGeoEditor.py:704 flatcamEditors/FlatCAMGrbEditor.py:4627 flatcamTools/ToolTransform.py:107
  1561. msgid "Angle X:"
  1562. msgstr "Ângulo X:"
  1563. #: flatcamEditors/FlatCAMGeoEditor.py:706 flatcamEditors/FlatCAMGeoEditor.py:724 flatcamEditors/FlatCAMGrbEditor.py:4629 flatcamEditors/FlatCAMGrbEditor.py:4647 flatcamTools/ToolTransform.py:109 flatcamTools/ToolTransform.py:127
  1564. msgid ""
  1565. "Angle for Skew action, in degrees.\n"
  1566. "Float number between -360 and 359."
  1567. msgstr ""
  1568. "Ângulo de inclinação, em graus. \n"
  1569. "Número flutuante entre -360 e 359."
  1570. #: flatcamEditors/FlatCAMGeoEditor.py:715 flatcamEditors/FlatCAMGrbEditor.py:4638 flatcamTools/ToolTransform.py:118
  1571. msgid "Skew X"
  1572. msgstr "Inclinação X"
  1573. #: flatcamEditors/FlatCAMGeoEditor.py:717 flatcamEditors/FlatCAMGeoEditor.py:735 flatcamEditors/FlatCAMGrbEditor.py:4640 flatcamEditors/FlatCAMGrbEditor.py:4658
  1574. msgid ""
  1575. "Skew/shear the selected shape(s).\n"
  1576. "The point of reference is the middle of\n"
  1577. "the bounding box for all selected shapes."
  1578. msgstr ""
  1579. "Inclinar/distorcer a(s) forma(s) selecionada(s). \n"
  1580. "O ponto de referência é o meio da \n"
  1581. "caixa delimitadora para todas as formas selecionadas."
  1582. #: flatcamEditors/FlatCAMGeoEditor.py:722 flatcamEditors/FlatCAMGrbEditor.py:4645 flatcamTools/ToolTransform.py:125
  1583. msgid "Angle Y:"
  1584. msgstr "Ângulo Y:"
  1585. #: flatcamEditors/FlatCAMGeoEditor.py:733 flatcamEditors/FlatCAMGrbEditor.py:4656 flatcamTools/ToolTransform.py:136
  1586. msgid "Skew Y"
  1587. msgstr "Skew Y"
  1588. #: flatcamEditors/FlatCAMGeoEditor.py:761 flatcamEditors/FlatCAMGrbEditor.py:4684 flatcamTools/ToolTransform.py:164
  1589. msgid "Factor X:"
  1590. msgstr "Fator X:"
  1591. #: flatcamEditors/FlatCAMGeoEditor.py:763 flatcamEditors/FlatCAMGrbEditor.py:4686 flatcamTools/ToolTransform.py:166
  1592. msgid "Factor for Scale action over X axis."
  1593. msgstr "Fator para a escala sobre o eixo X."
  1594. #: flatcamEditors/FlatCAMGeoEditor.py:771 flatcamEditors/FlatCAMGrbEditor.py:4694 flatcamTools/ToolTransform.py:174
  1595. msgid "Scale X"
  1596. msgstr "Escala X"
  1597. #: flatcamEditors/FlatCAMGeoEditor.py:773 flatcamEditors/FlatCAMGeoEditor.py:790 flatcamEditors/FlatCAMGrbEditor.py:4696 flatcamEditors/FlatCAMGrbEditor.py:4713
  1598. msgid ""
  1599. "Scale the selected shape(s).\n"
  1600. "The point of reference depends on \n"
  1601. "the Scale reference checkbox state."
  1602. msgstr ""
  1603. "Ajustar a(s) forma(s) selecionada(s). \n"
  1604. "O ponto de referência depende \n"
  1605. " do estado da caixa de seleção."
  1606. #: flatcamEditors/FlatCAMGeoEditor.py:778 flatcamEditors/FlatCAMGrbEditor.py:4701 flatcamTools/ToolTransform.py:181
  1607. msgid "Factor Y:"
  1608. msgstr "Fator Y:"
  1609. #: flatcamEditors/FlatCAMGeoEditor.py:780 flatcamEditors/FlatCAMGrbEditor.py:4703 flatcamTools/ToolTransform.py:183
  1610. msgid "Factor for Scale action over Y axis."
  1611. msgstr "Fator para ação de escala no eixo Y."
  1612. #: flatcamEditors/FlatCAMGeoEditor.py:788 flatcamEditors/FlatCAMGrbEditor.py:4711 flatcamTools/ToolTransform.py:191
  1613. msgid "Scale Y"
  1614. msgstr "Escala Y"
  1615. #: flatcamEditors/FlatCAMGeoEditor.py:797 flatcamEditors/FlatCAMGrbEditor.py:4720 flatcamGUI/FlatCAMGUI.py:6420 flatcamTools/ToolTransform.py:200
  1616. msgid "Link"
  1617. msgstr "Ligação"
  1618. #: flatcamEditors/FlatCAMGeoEditor.py:799 flatcamEditors/FlatCAMGrbEditor.py:4722
  1619. msgid ""
  1620. "Scale the selected shape(s)\n"
  1621. "using the Scale Factor X for both axis."
  1622. msgstr "Dimensiona a(s) forma(s) selecionada(s) usando o Fator de Escala X para ambos os eixos."
  1623. #: flatcamEditors/FlatCAMGeoEditor.py:805 flatcamEditors/FlatCAMGrbEditor.py:4728 flatcamGUI/FlatCAMGUI.py:6428 flatcamTools/ToolTransform.py:208
  1624. msgid "Scale Reference"
  1625. msgstr "Referência de escala"
  1626. #: flatcamEditors/FlatCAMGeoEditor.py:807 flatcamEditors/FlatCAMGrbEditor.py:4730
  1627. msgid ""
  1628. "Scale the selected shape(s)\n"
  1629. "using the origin reference when checked,\n"
  1630. "and the center of the biggest bounding box\n"
  1631. "of the selected shapes when unchecked."
  1632. msgstr ""
  1633. "Dimensiona a(s) forma(s) selecionada(s) \n"
  1634. " usando a referência de origem quando marcada, \n"
  1635. "e o centro da maior caixa delimitadora \n"
  1636. "de formas selecionadas quando desmarcado."
  1637. #: flatcamEditors/FlatCAMGeoEditor.py:835 flatcamEditors/FlatCAMGrbEditor.py:4759 flatcamTools/ToolTransform.py:238
  1638. msgid "Value X:"
  1639. msgstr "Valor X:"
  1640. #: flatcamEditors/FlatCAMGeoEditor.py:837 flatcamEditors/FlatCAMGrbEditor.py:4761 flatcamTools/ToolTransform.py:240
  1641. msgid "Value for Offset action on X axis."
  1642. msgstr "Valor para o deslocamento no eixo X."
  1643. #: flatcamEditors/FlatCAMGeoEditor.py:845 flatcamEditors/FlatCAMGrbEditor.py:4769 flatcamTools/ToolTransform.py:248
  1644. msgid "Offset X"
  1645. msgstr "Deslocamento X"
  1646. #: flatcamEditors/FlatCAMGeoEditor.py:847 flatcamEditors/FlatCAMGeoEditor.py:865 flatcamEditors/FlatCAMGrbEditor.py:4771 flatcamEditors/FlatCAMGrbEditor.py:4789
  1647. msgid ""
  1648. "Offset the selected shape(s).\n"
  1649. "The point of reference is the middle of\n"
  1650. "the bounding box for all selected shapes.\n"
  1651. msgstr ""
  1652. "Desloca a(s) forma(s) selecionada(s). \n"
  1653. "O ponto de referência é o meio da \n"
  1654. "caixa delimitadora para todas as formas selecionadas. \n"
  1655. #: flatcamEditors/FlatCAMGeoEditor.py:853 flatcamEditors/FlatCAMGrbEditor.py:4777 flatcamTools/ToolTransform.py:255
  1656. msgid "Value Y:"
  1657. msgstr "Valor Y:"
  1658. #: flatcamEditors/FlatCAMGeoEditor.py:855 flatcamEditors/FlatCAMGrbEditor.py:4779 flatcamTools/ToolTransform.py:257
  1659. msgid "Value for Offset action on Y axis."
  1660. msgstr "Valor para a ação de deslocamento no eixo Y."
  1661. #: flatcamEditors/FlatCAMGeoEditor.py:863 flatcamEditors/FlatCAMGrbEditor.py:4787 flatcamTools/ToolTransform.py:265
  1662. msgid "Offset Y"
  1663. msgstr "Deslocamento Y"
  1664. #: flatcamEditors/FlatCAMGeoEditor.py:894 flatcamEditors/FlatCAMGrbEditor.py:4818 flatcamTools/ToolTransform.py:295
  1665. msgid "Flip on X"
  1666. msgstr "Inverte no X"
  1667. #: flatcamEditors/FlatCAMGeoEditor.py:896 flatcamEditors/FlatCAMGeoEditor.py:904 flatcamEditors/FlatCAMGrbEditor.py:4820 flatcamEditors/FlatCAMGrbEditor.py:4828
  1668. msgid ""
  1669. "Flip the selected shape(s) over the X axis.\n"
  1670. "Does not create a new shape."
  1671. msgstr ""
  1672. "Inverte as formas selecionadas sobre o eixo X. \n"
  1673. "Não cria uma nova forma."
  1674. #: flatcamEditors/FlatCAMGeoEditor.py:902 flatcamEditors/FlatCAMGrbEditor.py:4826 flatcamTools/ToolTransform.py:303
  1675. msgid "Flip on Y"
  1676. msgstr "Inverte no Y"
  1677. #: flatcamEditors/FlatCAMGeoEditor.py:911 flatcamEditors/FlatCAMGrbEditor.py:4835 flatcamTools/ToolTransform.py:312
  1678. msgid "Ref Pt"
  1679. msgstr "Pt Ref"
  1680. #: flatcamEditors/FlatCAMGeoEditor.py:913 flatcamEditors/FlatCAMGrbEditor.py:4837
  1681. msgid ""
  1682. "Flip the selected shape(s)\n"
  1683. "around the point in Point Entry Field.\n"
  1684. "\n"
  1685. "The point coordinates can be captured by\n"
  1686. "left click on canvas together with pressing\n"
  1687. "SHIFT key. \n"
  1688. "Then click Add button to insert coordinates.\n"
  1689. "Or enter the coords in format (x, y) in the\n"
  1690. "Point Entry field and click Flip on X(Y)"
  1691. msgstr ""
  1692. "Inverte a(s) forma(s) selecionada(s) \n"
  1693. "em relação ao ponto do Campo de Entrada do Ponto. \n"
  1694. "\n"
  1695. "As coordenadas do ponto podem ser capturadas \n"
  1696. "classificadas na tela com a tecla \n"
  1697. "SHIFT pressionada. \n"
  1698. "Após clicar no botão Adicionar para inserir as coordenadas. \n"
  1699. "Ou digite as coordenadas no formato (x, y) no campo \n"
  1700. "Posição de entrada e clique em Inverter no X (Y)"
  1701. #: flatcamEditors/FlatCAMGeoEditor.py:925 flatcamEditors/FlatCAMGrbEditor.py:4849 flatcamTools/ToolTransform.py:325
  1702. msgid "Point:"
  1703. msgstr "Ponto:"
  1704. #: flatcamEditors/FlatCAMGeoEditor.py:927 flatcamEditors/FlatCAMGrbEditor.py:4851
  1705. msgid ""
  1706. "Coordinates in format (x, y) used as reference for mirroring.\n"
  1707. "The 'x' in (x, y) will be used when using Flip on X and\n"
  1708. "the 'y' in (x, y) will be used when using Flip on Y."
  1709. msgstr ""
  1710. "Coordenadas no formato (x, y) usadas como referência para espelhamento. \n"
  1711. "O 'x' em (x, y) será usado ao usar Inverter no X e \n"
  1712. "o 'y' em (x, y) será usado ao usar Inverter em Y."
  1713. #: flatcamEditors/FlatCAMGeoEditor.py:939 flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamTools/ToolTransform.py:339
  1714. msgid ""
  1715. "The point coordinates can be captured by\n"
  1716. "left click on canvas together with pressing\n"
  1717. "SHIFT key. Then click Add button to insert."
  1718. msgstr ""
  1719. "As coordenadas do ponto podem ser capturadas por \n"
  1720. "botão esquerdo na tela junto com a tecla \n"
  1721. "SHIFT pressionada. Em seguida, clique no botão Adicionar para inserir."
  1722. #: flatcamEditors/FlatCAMGeoEditor.py:1054 flatcamEditors/FlatCAMGrbEditor.py:4988
  1723. msgid "[WARNING_NOTCL] Transformation cancelled. No shape selected."
  1724. msgstr "[WARNING_NOTCL] Transformação cancelada. Nenhuma forma selecionada."
  1725. #: flatcamEditors/FlatCAMGeoEditor.py:1075 flatcamEditors/FlatCAMGrbEditor.py:5008 flatcamTools/ToolTransform.py:468
  1726. msgid "[ERROR_NOTCL] Wrong value format entered for Rotate, use a number."
  1727. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido para Girar, use um número."
  1728. #: flatcamEditors/FlatCAMGeoEditor.py:1112 flatcamEditors/FlatCAMGrbEditor.py:5051 flatcamTools/ToolTransform.py:502
  1729. msgid "[ERROR_NOTCL] Wrong value format entered for Skew X, use a number."
  1730. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido para Skew X, use um número."
  1731. #: flatcamEditors/FlatCAMGeoEditor.py:1133 flatcamEditors/FlatCAMGrbEditor.py:5078 flatcamTools/ToolTransform.py:520
  1732. msgid "[ERROR_NOTCL] Wrong value format entered for Skew Y, use a number."
  1733. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido para Skew Y, use um número."
  1734. #: flatcamEditors/FlatCAMGeoEditor.py:1154 flatcamEditors/FlatCAMGrbEditor.py:5105 flatcamTools/ToolTransform.py:538
  1735. msgid "[ERROR_NOTCL] Wrong value format entered for Scale X, use a number."
  1736. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido na Escala X, use um número."
  1737. #: flatcamEditors/FlatCAMGeoEditor.py:1191 flatcamEditors/FlatCAMGrbEditor.py:5146 flatcamTools/ToolTransform.py:572
  1738. msgid "[ERROR_NOTCL] Wrong value format entered for Scale Y, use a number."
  1739. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido para a Escala Y, use um número."
  1740. #: flatcamEditors/FlatCAMGeoEditor.py:1223 flatcamEditors/FlatCAMGrbEditor.py:5184 flatcamTools/ToolTransform.py:601
  1741. msgid "[ERROR_NOTCL] Wrong value format entered for Offset X, use a number."
  1742. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido para o deslocamento X, use um número."
  1743. #: flatcamEditors/FlatCAMGeoEditor.py:1244 flatcamEditors/FlatCAMGrbEditor.py:5210 flatcamTools/ToolTransform.py:619
  1744. msgid "[ERROR_NOTCL] Wrong value format entered for Offset Y, use a number."
  1745. msgstr "[ERROR_NOTCL] Formato de valor incorreto inserido para o deslocamento Y, use um número."
  1746. #: flatcamEditors/FlatCAMGeoEditor.py:1262 flatcamEditors/FlatCAMGrbEditor.py:5233
  1747. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to rotate!"
  1748. msgstr "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma para girar!"
  1749. #: flatcamEditors/FlatCAMGeoEditor.py:1265 flatcamEditors/FlatCAMGrbEditor.py:5236 flatcamTools/ToolTransform.py:640
  1750. msgid "Appying Rotate"
  1751. msgstr "Aplicando Rotacionar"
  1752. #: flatcamEditors/FlatCAMGeoEditor.py:1293 flatcamEditors/FlatCAMGrbEditor.py:5269
  1753. msgid "[success] Done. Rotate completed."
  1754. msgstr "[sucesso] Feito. Rodar concluído."
  1755. #: flatcamEditors/FlatCAMGeoEditor.py:1309 flatcamEditors/FlatCAMGrbEditor.py:5288
  1756. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to flip!"
  1757. msgstr "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma para virar!"
  1758. #: flatcamEditors/FlatCAMGeoEditor.py:1312 flatcamEditors/FlatCAMGrbEditor.py:5291 flatcamTools/ToolTransform.py:691
  1759. msgid "Applying Flip"
  1760. msgstr "Aplicando Flip"
  1761. #: flatcamEditors/FlatCAMGeoEditor.py:1342 flatcamEditors/FlatCAMGrbEditor.py:5330 flatcamTools/ToolTransform.py:733
  1762. msgid "[success] Flip on the Y axis done ..."
  1763. msgstr "[sucesso] Virar no eixo Y feito ..."
  1764. #: flatcamEditors/FlatCAMGeoEditor.py:1345 flatcamEditors/FlatCAMGrbEditor.py:5338 flatcamTools/ToolTransform.py:742
  1765. msgid "[success] Flip on the X axis done ..."
  1766. msgstr "[sucesso] Virar no eixo X feito ..."
  1767. #: flatcamEditors/FlatCAMGeoEditor.py:1364 flatcamEditors/FlatCAMGrbEditor.py:5358
  1768. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to shear/skew!"
  1769. msgstr "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma para cortar/inclinar!"
  1770. #: flatcamEditors/FlatCAMGeoEditor.py:1367 flatcamEditors/FlatCAMGrbEditor.py:5361 flatcamTools/ToolTransform.py:760
  1771. msgid "Applying Skew"
  1772. msgstr "Aplicando Skew"
  1773. #: flatcamEditors/FlatCAMGeoEditor.py:1392 flatcamEditors/FlatCAMGrbEditor.py:5396 flatcamTools/ToolTransform.py:791
  1774. #, python-format
  1775. msgid "[success] Skew on the %s axis done ..."
  1776. msgstr "[sucesso] Inclinação no eixo %s concluído ..."
  1777. #: flatcamEditors/FlatCAMGeoEditor.py:1396 flatcamEditors/FlatCAMGrbEditor.py:5400 flatcamTools/ToolTransform.py:795
  1778. #, python-format
  1779. msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
  1780. msgstr "[ERROR_NOTCL] Devido a %s , a ação Skew não foi executada."
  1781. #: flatcamEditors/FlatCAMGeoEditor.py:1407 flatcamEditors/FlatCAMGrbEditor.py:5419
  1782. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to scale!"
  1783. msgstr "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma para dimensionar!"
  1784. #: flatcamEditors/FlatCAMGeoEditor.py:1410 flatcamEditors/FlatCAMGrbEditor.py:5422 flatcamTools/ToolTransform.py:809
  1785. msgid "Applying Scale"
  1786. msgstr "Aplicando Escala"
  1787. #: flatcamEditors/FlatCAMGeoEditor.py:1443 flatcamEditors/FlatCAMGrbEditor.py:5460 flatcamTools/ToolTransform.py:848
  1788. #, python-format
  1789. msgid "[success] Scale on the %s axis done ..."
  1790. msgstr "[sucesso] Escala no eixo %s concluído ..."
  1791. #: flatcamEditors/FlatCAMGeoEditor.py:1446 flatcamEditors/FlatCAMGrbEditor.py:5463 flatcamTools/ToolTransform.py:851
  1792. #, python-format
  1793. msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
  1794. msgstr "[ERROR_NOTCL] Devido a %s , a ação de escala não foi executada."
  1795. #: flatcamEditors/FlatCAMGeoEditor.py:1455 flatcamEditors/FlatCAMGrbEditor.py:5476
  1796. msgid "[WARNING_NOTCL] No shape selected. Please Select a shape to offset!"
  1797. msgstr "[WARNING_NOTCL] Nenhuma forma selecionada. Por favor, selecione uma forma para compensar!"
  1798. #: flatcamEditors/FlatCAMGeoEditor.py:1458 flatcamEditors/FlatCAMGrbEditor.py:5479 flatcamTools/ToolTransform.py:861
  1799. msgid "Applying Offset"
  1800. msgstr "Aplicando Deslocamento"
  1801. #: flatcamEditors/FlatCAMGeoEditor.py:1469 flatcamEditors/FlatCAMGrbEditor.py:5501 flatcamTools/ToolTransform.py:880
  1802. #, python-format
  1803. msgid "[success] Offset on the %s axis done ..."
  1804. msgstr "[success] Deslocamento no eixo %s concluído ..."
  1805. #: flatcamEditors/FlatCAMGeoEditor.py:1473 flatcamEditors/FlatCAMGrbEditor.py:5505 flatcamTools/ToolTransform.py:884
  1806. #, python-format
  1807. msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
  1808. msgstr "[ERROR_NOTCL] Devido a %s , a ação de deslocamento não foi executada."
  1809. #: flatcamEditors/FlatCAMGeoEditor.py:1477 flatcamEditors/FlatCAMGrbEditor.py:5509
  1810. msgid "Rotate ..."
  1811. msgstr "Rodar ..."
  1812. #: flatcamEditors/FlatCAMGeoEditor.py:1478 flatcamEditors/FlatCAMGeoEditor.py:1535 flatcamEditors/FlatCAMGeoEditor.py:1552 flatcamEditors/FlatCAMGrbEditor.py:5510 flatcamEditors/FlatCAMGrbEditor.py:5567 flatcamEditors/FlatCAMGrbEditor.py:5584
  1813. msgid "Enter an Angle Value (degrees):"
  1814. msgstr "Digite um valor de ângulo (graus):"
  1815. #: flatcamEditors/FlatCAMGeoEditor.py:1487 flatcamEditors/FlatCAMGrbEditor.py:5519
  1816. msgid "[success] Geometry shape rotate done..."
  1817. msgstr "[sucesso] Rotação da geometria feito ..."
  1818. #: flatcamEditors/FlatCAMGeoEditor.py:1492 flatcamEditors/FlatCAMGrbEditor.py:5524
  1819. msgid "[WARNING_NOTCL] Geometry shape rotate cancelled..."
  1820. msgstr "[WARNING_NOTCL] Rotação da geometria cancelada ..."
  1821. #: flatcamEditors/FlatCAMGeoEditor.py:1498 flatcamEditors/FlatCAMGrbEditor.py:5530
  1822. msgid "Offset on X axis ..."
  1823. msgstr "Deslocamento no eixo X ..."
  1824. #: flatcamEditors/FlatCAMGeoEditor.py:1499 flatcamEditors/FlatCAMGeoEditor.py:1518 flatcamEditors/FlatCAMGrbEditor.py:5531 flatcamEditors/FlatCAMGrbEditor.py:5550
  1825. #, python-format
  1826. msgid "Enter a distance Value (%s):"
  1827. msgstr "Digite um valor de distância ( %s ):"
  1828. #: flatcamEditors/FlatCAMGeoEditor.py:1508 flatcamEditors/FlatCAMGrbEditor.py:5540
  1829. msgid "[success] Geometry shape offset on X axis done..."
  1830. msgstr "[sucesso] Deslocamento da forma da geometria no eixo X ..."
  1831. #: flatcamEditors/FlatCAMGeoEditor.py:1512 flatcamEditors/FlatCAMGrbEditor.py:5544
  1832. msgid "[WARNING_NOTCL] Geometry shape offset X cancelled..."
  1833. msgstr "[WARNING_NOTCL] Deslocamento da forma da geometria X cancelada ..."
  1834. #: flatcamEditors/FlatCAMGeoEditor.py:1517 flatcamEditors/FlatCAMGrbEditor.py:5549
  1835. msgid "Offset on Y axis ..."
  1836. msgstr "Deslocamento no eixo Y ..."
  1837. #: flatcamEditors/FlatCAMGeoEditor.py:1527 flatcamEditors/FlatCAMGrbEditor.py:5559
  1838. msgid "[success] Geometry shape offset on Y axis done..."
  1839. msgstr "[sucesso] Deslocamento da forma da geometria no eixo Y ..."
  1840. #: flatcamEditors/FlatCAMGeoEditor.py:1531 flatcamEditors/FlatCAMGrbEditor.py:5563
  1841. msgid "[WARNING_NOTCL] Geometry shape offset Y cancelled..."
  1842. msgstr "[WARNING_NOTCL] Deslocamento da forma da geometria Y cancelado ..."
  1843. #: flatcamEditors/FlatCAMGeoEditor.py:1534 flatcamEditors/FlatCAMGrbEditor.py:5566
  1844. msgid "Skew on X axis ..."
  1845. msgstr "Inclinação no eixo X ..."
  1846. #: flatcamEditors/FlatCAMGeoEditor.py:1544 flatcamEditors/FlatCAMGrbEditor.py:5576
  1847. msgid "[success] Geometry shape skew on X axis done..."
  1848. msgstr "[sucesso] Forma de geometria inclinada no eixo X ..."
  1849. #: flatcamEditors/FlatCAMGeoEditor.py:1548 flatcamEditors/FlatCAMGrbEditor.py:5580
  1850. msgid "[WARNING_NOTCL] Geometry shape skew X cancelled..."
  1851. msgstr "[WARNING_NOTCL] Forma de geometria inclinada X cancelada ..."
  1852. #: flatcamEditors/FlatCAMGeoEditor.py:1551 flatcamEditors/FlatCAMGrbEditor.py:5583
  1853. msgid "Skew on Y axis ..."
  1854. msgstr "Inclinação no eixo Y ..."
  1855. #: flatcamEditors/FlatCAMGeoEditor.py:1561 flatcamEditors/FlatCAMGrbEditor.py:5593
  1856. msgid "[success] Geometry shape skew on Y axis done..."
  1857. msgstr "[sucesso] Forma de geometria inclinada no eixo Y ..."
  1858. #: flatcamEditors/FlatCAMGeoEditor.py:1565 flatcamEditors/FlatCAMGrbEditor.py:5597
  1859. msgid "[WARNING_NOTCL] Geometry shape skew Y cancelled..."
  1860. msgstr "[WARNING_NOTCL] Forma da geometria inclinada Y cancelada ..."
  1861. #: flatcamEditors/FlatCAMGeoEditor.py:1929 flatcamEditors/FlatCAMGeoEditor.py:1980 flatcamEditors/FlatCAMGrbEditor.py:1361 flatcamEditors/FlatCAMGrbEditor.py:1430
  1862. msgid "Click on Center point ..."
  1863. msgstr "Clique no ponto central ..."
  1864. #: flatcamEditors/FlatCAMGeoEditor.py:1936 flatcamEditors/FlatCAMGrbEditor.py:1369
  1865. msgid "Click on Perimeter point to complete ..."
  1866. msgstr "Clique no ponto Perímetro para completar ..."
  1867. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  1868. msgid "[success] Done. Adding Circle completed."
  1869. msgstr "[sucesso] Feito. Adicionando Círculo concluído."
  1870. #: flatcamEditors/FlatCAMGeoEditor.py:2000 flatcamEditors/FlatCAMGrbEditor.py:1462
  1871. msgid "Click on Start point ..."
  1872. msgstr "Clique no ponto inicial ..."
  1873. #: flatcamEditors/FlatCAMGeoEditor.py:2002 flatcamEditors/FlatCAMGrbEditor.py:1464
  1874. msgid "Click on Point3 ..."
  1875. msgstr "Clique no ponto 3 ..."
  1876. #: flatcamEditors/FlatCAMGeoEditor.py:2004 flatcamEditors/FlatCAMGrbEditor.py:1466
  1877. msgid "Click on Stop point ..."
  1878. msgstr "Clique no ponto de parada ..."
  1879. #: flatcamEditors/FlatCAMGeoEditor.py:2009 flatcamEditors/FlatCAMGrbEditor.py:1471
  1880. msgid "Click on Stop point to complete ..."
  1881. msgstr "Clique no ponto de parada para completar ..."
  1882. #: flatcamEditors/FlatCAMGeoEditor.py:2011 flatcamEditors/FlatCAMGrbEditor.py:1473
  1883. msgid "Click on Point2 to complete ..."
  1884. msgstr "Clique no ponto 2 para completar ..."
  1885. #: flatcamEditors/FlatCAMGeoEditor.py:2013 flatcamEditors/FlatCAMGrbEditor.py:1475
  1886. msgid "Click on Center point to complete ..."
  1887. msgstr "Clique no ponto central para completar ..."
  1888. #: flatcamEditors/FlatCAMGeoEditor.py:2025 flatcamEditors/FlatCAMGrbEditor.py:1487
  1889. #, python-format
  1890. msgid "Direction: %s"
  1891. msgstr "Direção: %s"
  1892. #: flatcamEditors/FlatCAMGeoEditor.py:2035 flatcamEditors/FlatCAMGrbEditor.py:1497
  1893. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  1894. msgstr "Modo: Iniciar -> Parar -> Centro. Clique no ponto inicial ..."
  1895. #: flatcamEditors/FlatCAMGeoEditor.py:2038 flatcamEditors/FlatCAMGrbEditor.py:1500
  1896. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  1897. msgstr "Modo: Ponto 1 -> Ponto 3 -> Ponto 2. Clique no Ponto 1 ..."
  1898. #: flatcamEditors/FlatCAMGeoEditor.py:2041 flatcamEditors/FlatCAMGrbEditor.py:1503
  1899. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  1900. msgstr "Modo: Centro -> Iniciar -> Parar. Clique no ponto central ..."
  1901. #: flatcamEditors/FlatCAMGeoEditor.py:2179
  1902. msgid "[success] Done. Arc completed."
  1903. msgstr "[sucesso] Feito. Arco concluído."
  1904. #: flatcamEditors/FlatCAMGeoEditor.py:2198 flatcamEditors/FlatCAMGeoEditor.py:2251 flatcamEditors/FlatCAMGeoEditor.py:2626
  1905. msgid "Click on 1st corner ..."
  1906. msgstr "Clique no primeiro canto ..."
  1907. #: flatcamEditors/FlatCAMGeoEditor.py:2204
  1908. msgid "Click on opposite corner to complete ..."
  1909. msgstr "Clique no canto oposto para completar ..."
  1910. #: flatcamEditors/FlatCAMGeoEditor.py:2232
  1911. msgid "[success] Done. Rectangle completed."
  1912. msgstr "[sucesso] Feito. Retângulo concluído."
  1913. #: flatcamEditors/FlatCAMGeoEditor.py:2258
  1914. msgid "Click on next Point or click right mouse button to complete ..."
  1915. msgstr "Clique no próximo ponto ou clique com o botão direito do mouse para completar ..."
  1916. #: flatcamEditors/FlatCAMGeoEditor.py:2286
  1917. msgid "[success] Done. Polygon completed."
  1918. msgstr "[sucesso] Feito. Polígono concluído."
  1919. #: flatcamEditors/FlatCAMGeoEditor.py:2296 flatcamEditors/FlatCAMGeoEditor.py:2342 flatcamEditors/FlatCAMGrbEditor.py:1058 flatcamEditors/FlatCAMGrbEditor.py:1252
  1920. msgid "Backtracked one point ..."
  1921. msgstr "Retrocedeu um ponto ..."
  1922. #: flatcamEditors/FlatCAMGeoEditor.py:2324
  1923. msgid "[success] Done. Path completed."
  1924. msgstr "[sucesso] Feito. Caminho concluído."
  1925. #: flatcamEditors/FlatCAMGeoEditor.py:2447
  1926. msgid "[WARNING_NOTCL] MOVE: No shape selected. Select a shape to move ..."
  1927. msgstr "[WARNING_NOTCL] MOVE: Nenhuma forma selecionada. Selecione uma forma para mover ..."
  1928. #: flatcamEditors/FlatCAMGeoEditor.py:2449 flatcamEditors/FlatCAMGeoEditor.py:2461
  1929. msgid " MOVE: Click on reference point ..."
  1930. msgstr " MOVE: Clique no ponto de referência ..."
  1931. #: flatcamEditors/FlatCAMGeoEditor.py:2452
  1932. msgid " Click on destination point ..."
  1933. msgstr " Clique no ponto de destino ..."
  1934. #: flatcamEditors/FlatCAMGeoEditor.py:2486
  1935. msgid "[success] Done. Geometry(s) Move completed."
  1936. msgstr "[sucesso] Feito. Movimento de Geometria(s) completo."
  1937. #: flatcamEditors/FlatCAMGeoEditor.py:2606
  1938. msgid "[success] Done. Geometry(s) Copy completed."
  1939. msgstr "[sucesso] Feito. Cópia de Geometria(s) concluída."
  1940. #: flatcamEditors/FlatCAMGeoEditor.py:2640
  1941. #, python-format
  1942. msgid "[ERROR]Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. Error: %s"
  1943. msgstr "[ERRO] Fonte não suportada. Apenas Regular, Bold, Italic e BoldItalic são suportados. Erro: %s"
  1944. #: flatcamEditors/FlatCAMGeoEditor.py:2650
  1945. msgid "[success] Done. Adding Text completed."
  1946. msgstr "[sucesso] Feito. Adicionando texto concluído."
  1947. #: flatcamEditors/FlatCAMGeoEditor.py:2678
  1948. msgid "Create buffer geometry ..."
  1949. msgstr "Criar geometria de buffer ..."
  1950. #: flatcamEditors/FlatCAMGeoEditor.py:2689 flatcamEditors/FlatCAMGeoEditor.py:2715 flatcamEditors/FlatCAMGeoEditor.py:2741
  1951. msgid "[WARNING_NOTCL] Buffer cancelled. No shape selected."
  1952. msgstr "[WARNING_NOTCL] Buffer cancelado. Nenhuma forma selecionada."
  1953. #: flatcamEditors/FlatCAMGeoEditor.py:2711 flatcamEditors/FlatCAMGrbEditor.py:4447
  1954. msgid "[success] Done. Buffer Tool completed."
  1955. msgstr "[sucesso] Feito. Ferramenta Buffer concluída."
  1956. #: flatcamEditors/FlatCAMGeoEditor.py:2737
  1957. msgid "[success] Done. Buffer Int Tool completed."
  1958. msgstr "[sucesso] Feito. Ferramenta Buffer Int concluída."
  1959. #: flatcamEditors/FlatCAMGeoEditor.py:2763
  1960. msgid "[success] Done. Buffer Ext Tool completed."
  1961. msgstr "[sucesso] Feito. Ferramenta Buffer Ext concluída."
  1962. #: flatcamEditors/FlatCAMGeoEditor.py:2798 flatcamEditors/FlatCAMGrbEditor.py:1983
  1963. msgid "Select a shape to act as deletion area ..."
  1964. msgstr "Selecione uma forma para atuar como área de exclusão ..."
  1965. #: flatcamEditors/FlatCAMGeoEditor.py:2800 flatcamEditors/FlatCAMGeoEditor.py:2819 flatcamEditors/FlatCAMGeoEditor.py:2825 flatcamEditors/FlatCAMGrbEditor.py:1985
  1966. msgid "Click to pick-up the erase shape..."
  1967. msgstr "Clique para pegar a forma de apagar ..."
  1968. #: flatcamEditors/FlatCAMGeoEditor.py:2829 flatcamEditors/FlatCAMGrbEditor.py:2042
  1969. msgid "Click to erase ..."
  1970. msgstr "Clique para apagar ..."
  1971. #: flatcamEditors/FlatCAMGeoEditor.py:2858 flatcamEditors/FlatCAMGrbEditor.py:2075
  1972. msgid "[success] Done. Eraser tool action completed."
  1973. msgstr "[sucesso] Feito. Ação da ferramenta Borracha concluída."
  1974. #: flatcamEditors/FlatCAMGeoEditor.py:2901
  1975. msgid "Create Paint geometry ..."
  1976. msgstr "Criar geometria de pintura ..."
  1977. #: flatcamEditors/FlatCAMGeoEditor.py:2915 flatcamEditors/FlatCAMGrbEditor.py:2217
  1978. msgid "Shape transformations ..."
  1979. msgstr "Transformações de forma ..."
  1980. #: flatcamEditors/FlatCAMGeoEditor.py:3419
  1981. #, python-brace-format
  1982. msgid "[WARNING_NOTCL] Editing MultiGeo Geometry, tool: {tool} with diameter: {dia}"
  1983. msgstr "[WARNING_NOTCL] Editando Geometria MultiGeo, ferramenta: {tool} com diâmetro: {dia}"
  1984. #: flatcamEditors/FlatCAMGeoEditor.py:3796
  1985. msgid "[WARNING_NOTCL] Copy cancelled. No shape selected."
  1986. msgstr "[WARNING_NOTCL] Cópia cancelada. Nenhuma forma selecionada."
  1987. #: flatcamEditors/FlatCAMGeoEditor.py:3803 flatcamGUI/FlatCAMGUI.py:2727 flatcamGUI/FlatCAMGUI.py:2773 flatcamGUI/FlatCAMGUI.py:2791 flatcamGUI/FlatCAMGUI.py:2922 flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:2968
  1988. msgid "Click on target point."
  1989. msgstr "Clique no ponto alvo."
  1990. #: flatcamEditors/FlatCAMGeoEditor.py:4047 flatcamEditors/FlatCAMGeoEditor.py:4082
  1991. msgid "[WARNING_NOTCL] A selection of at least 2 geo items is required to do Intersection."
  1992. msgstr "[WARNING_NOTCL] É necessária uma seleção de pelo menos 2 itens geográficos para fazer a interseção."
  1993. #: flatcamEditors/FlatCAMGeoEditor.py:4166 flatcamEditors/FlatCAMGeoEditor.py:4204 flatcamEditors/FlatCAMGeoEditor.py:4280
  1994. msgid "[ERROR_NOTCL] Negative buffer value is not accepted. Use Buffer interior to generate an 'inside' shape"
  1995. msgstr "[ERROR_NOTCL] Valor de buffer negativo não é aceito. Use o Buffer interior para gerar uma forma 'interna'"
  1996. #: flatcamEditors/FlatCAMGeoEditor.py:4175 flatcamEditors/FlatCAMGeoEditor.py:4213 flatcamEditors/FlatCAMGeoEditor.py:4288
  1997. msgid "[WARNING_NOTCL] Nothing selected for buffering."
  1998. msgstr "[WARNING_NOTCL] Nada selecionado para armazenamento em buffer."
  1999. #: flatcamEditors/FlatCAMGeoEditor.py:4179 flatcamEditors/FlatCAMGeoEditor.py:4217 flatcamEditors/FlatCAMGeoEditor.py:4292
  2000. msgid "[WARNING_NOTCL] Invalid distance for buffering."
  2001. msgstr "[WARNING_NOTCL] Distância inválida para armazenamento em buffer."
  2002. #: flatcamEditors/FlatCAMGeoEditor.py:4189 flatcamEditors/FlatCAMGeoEditor.py:4301
  2003. msgid "[ERROR_NOTCL] Failed, the result is empty. Choose a different buffer value."
  2004. msgstr "[ERROR_NOTCL] Falhou, o resultado está vazio. Escolha um valor de buffer diferente."
  2005. #: flatcamEditors/FlatCAMGeoEditor.py:4197
  2006. msgid "[success] Full buffer geometry created."
  2007. msgstr "[success] Geometria completa do buffer criada."
  2008. #: flatcamEditors/FlatCAMGeoEditor.py:4227
  2009. msgid "[ERROR_NOTCL] Failed, the result is empty. Choose a smaller buffer value."
  2010. msgstr "[ERROR_NOTCL] Falhou, o resultado está vazio. Escolha um valor de buffer menor."
  2011. #: flatcamEditors/FlatCAMGeoEditor.py:4242
  2012. msgid "[success] Interior buffer geometry created."
  2013. msgstr "[sucesso] Geometria do buffer interior criada."
  2014. #: flatcamEditors/FlatCAMGeoEditor.py:4313
  2015. msgid "[success] Exterior buffer geometry created."
  2016. msgstr "[sucesso] Geometria de buffer externa criada."
  2017. #: flatcamEditors/FlatCAMGeoEditor.py:4377
  2018. msgid "[WARNING_NOTCL] Nothing selected for painting."
  2019. msgstr "[WARNING_NOTCL] Nada selecionado para pintura."
  2020. #: flatcamEditors/FlatCAMGeoEditor.py:4383
  2021. msgid "[WARNING] Invalid value for {}"
  2022. msgstr "[AVISO] Valor inválido para {}"
  2023. #: flatcamEditors/FlatCAMGeoEditor.py:4389
  2024. msgid "[ERROR_NOTCL] Could not do Paint. Overlap value has to be less than 1.00 (100%)."
  2025. msgstr "[ERROR_NOTCL] Não foi possível fazer o Paint. O valor de sobreposição tem que ser menor que 1,00 (100%)."
  2026. #: flatcamEditors/FlatCAMGeoEditor.py:4448
  2027. #, python-format
  2028. msgid ""
  2029. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a different method of Paint\n"
  2030. "%s"
  2031. msgstr ""
  2032. "[ERRO] Não foi possível pintar. Tente uma combinação diferente de parâmetros. Ou um método diferente de Paint \n"
  2033. " %s"
  2034. #: flatcamEditors/FlatCAMGeoEditor.py:4459
  2035. msgid "[success] Paint done."
  2036. msgstr "[sucesso] Pintura feita."
  2037. #: flatcamEditors/FlatCAMGrbEditor.py:200
  2038. msgid "[WARNING_NOTCL] To add an Pad first select a aperture in Aperture Table"
  2039. msgstr "[WARNING_NOTCL] Para adicionar um Pad, primeiro selecione uma abertura na Tabela de Abertura"
  2040. #: flatcamEditors/FlatCAMGrbEditor.py:206 flatcamEditors/FlatCAMGrbEditor.py:398
  2041. msgid "[WARNING_NOTCL] Aperture size is zero. It needs to be greater than zero."
  2042. msgstr "[WARNING_NOTCL] O tamanho da abertura é zero. Precisa ser maior que zero."
  2043. #: flatcamEditors/FlatCAMGrbEditor.py:357 flatcamEditors/FlatCAMGrbEditor.py:662
  2044. msgid "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2045. msgstr "Tipo de abertura incompatível. Selecione uma abertura com o tipo 'C', 'R' ou 'O'."
  2046. #: flatcamEditors/FlatCAMGrbEditor.py:369
  2047. msgid "[success] Done. Adding Pad completed."
  2048. msgstr "[sucesso] Feito. Adicionando Pad concluído."
  2049. #: flatcamEditors/FlatCAMGrbEditor.py:391
  2050. msgid "[WARNING_NOTCL] To add an Pad Array first select a aperture in Aperture Table"
  2051. msgstr "[WARNING_NOTCL] Para adicionar uma Matriz de Pads, primeiro selecione uma abertura na Tabela de Abertura"
  2052. #: flatcamEditors/FlatCAMGrbEditor.py:468
  2053. msgid "Click on the Pad Circular Array Start position"
  2054. msgstr "Clique na posição inicial do Pad Circular Array"
  2055. #: flatcamEditors/FlatCAMGrbEditor.py:497
  2056. msgid "[ERROR_NOTCL] The value is mistyped. Check the value."
  2057. msgstr "[ERROR_NOTCL] O valor é digitado incorretamente. Verifique o valor."
  2058. #: flatcamEditors/FlatCAMGrbEditor.py:687
  2059. msgid "[WARNING_NOTCL] Too many Pads for the selected spacing angle."
  2060. msgstr "[WARNING_NOTCL] Demasiados Pads para o ângulo de espaçamento selecionado."
  2061. #: flatcamEditors/FlatCAMGrbEditor.py:709
  2062. msgid "[success] Done. Pad Array added."
  2063. msgstr "[sucesso] Feito. Pad Array adicionado."
  2064. #: flatcamEditors/FlatCAMGrbEditor.py:730
  2065. msgid "Select shape(s) and then click ..."
  2066. msgstr "Selecione a(s) forma(s) e clique em ..."
  2067. #: flatcamEditors/FlatCAMGrbEditor.py:741
  2068. msgid "[ERROR_NOTCL] Failed. Nothing selected."
  2069. msgstr "[ERROR_NOTCL] Falhou. Nada selecionado."
  2070. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2071. msgid "[WARNING_NOTCL] Failed. Poligonize works only on geometries belonging to the same aperture."
  2072. msgstr "[WARNING_NOTCL] Falhou. Poligonize funciona apenas em geometrias pertencentes à mesma abertura."
  2073. #: flatcamEditors/FlatCAMGrbEditor.py:809
  2074. msgid "[success] Done. Poligonize completed."
  2075. msgstr "[sucesso] Feito. Poligonizar concluído."
  2076. #: flatcamEditors/FlatCAMGrbEditor.py:860 flatcamEditors/FlatCAMGrbEditor.py:1075 flatcamEditors/FlatCAMGrbEditor.py:1099
  2077. msgid "Corner Mode 1: 45 degrees ..."
  2078. msgstr "Modo de canto 1: 45 graus ..."
  2079. #: flatcamEditors/FlatCAMGrbEditor.py:862
  2080. msgid "Click on 1st point ..."
  2081. msgstr "Clique no primeiro ponto ..."
  2082. #: flatcamEditors/FlatCAMGrbEditor.py:872 flatcamEditors/FlatCAMGrbEditor.py:1170
  2083. msgid "Click on next Point or click Right mouse button to complete ..."
  2084. msgstr "Clique no próximo ponto ou clique com o botão direito do mouse para completar ..."
  2085. #: flatcamEditors/FlatCAMGrbEditor.py:1063 flatcamEditors/FlatCAMGrbEditor.py:1096
  2086. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2087. msgstr "Modo de canto 2: 45 graus invertido ..."
  2088. #: flatcamEditors/FlatCAMGrbEditor.py:1066 flatcamEditors/FlatCAMGrbEditor.py:1093
  2089. msgid "Corner Mode 3: 90 degrees ..."
  2090. msgstr "Modo de canto 3: 90 graus ..."
  2091. #: flatcamEditors/FlatCAMGrbEditor.py:1069 flatcamEditors/FlatCAMGrbEditor.py:1090
  2092. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2093. msgstr "Modo de canto 4: 90 graus invertido ..."
  2094. #: flatcamEditors/FlatCAMGrbEditor.py:1072 flatcamEditors/FlatCAMGrbEditor.py:1087
  2095. msgid "Corner Mode 5: Free angle ..."
  2096. msgstr "Modo de canto 5: Ângulo livre ..."
  2097. #: flatcamEditors/FlatCAMGrbEditor.py:1126 flatcamEditors/FlatCAMGrbEditor.py:1284 flatcamEditors/FlatCAMGrbEditor.py:1323
  2098. msgid "Track Mode 1: 45 degrees ..."
  2099. msgstr "Modo de Trilha 1: 45 graus ..."
  2100. #: flatcamEditors/FlatCAMGrbEditor.py:1264 flatcamEditors/FlatCAMGrbEditor.py:1318
  2101. msgid "Track Mode 2: Reverse 45 degrees ..."
  2102. msgstr "Modo de Trilha 2: 45 graus invertido ..."
  2103. #: flatcamEditors/FlatCAMGrbEditor.py:1269 flatcamEditors/FlatCAMGrbEditor.py:1313
  2104. msgid "Track Mode 3: 90 degrees ..."
  2105. msgstr "Modo de Trilha 3: 90 graus ..."
  2106. #: flatcamEditors/FlatCAMGrbEditor.py:1274 flatcamEditors/FlatCAMGrbEditor.py:1308
  2107. msgid "Track Mode 4: Reverse 90 degrees ..."
  2108. msgstr "Modo de Trilha 4: 90 graus invertido ..."
  2109. #: flatcamEditors/FlatCAMGrbEditor.py:1279 flatcamEditors/FlatCAMGrbEditor.py:1303
  2110. msgid "Track Mode 5: Free angle ..."
  2111. msgstr "Modo de Trilha 5: Ângulo livre ..."
  2112. #: flatcamEditors/FlatCAMGrbEditor.py:1683
  2113. msgid "Scale the selected Gerber apertures ..."
  2114. msgstr "Escale as aberturas de Gerber selecionadas ..."
  2115. #: flatcamEditors/FlatCAMGrbEditor.py:1725
  2116. msgid "Buffer the selected apertures ..."
  2117. msgstr "Buffer as aberturas selecionadas ..."
  2118. #: flatcamEditors/FlatCAMGrbEditor.py:1769
  2119. msgid "[WARNING_NOTCL] Nothing selected to move ..."
  2120. msgstr "[WARNING_NOTCL] Nada selecionado para se mover ..."
  2121. #: flatcamEditors/FlatCAMGrbEditor.py:1892
  2122. msgid "[success] Done. Apertures Move completed."
  2123. msgstr "[sucesso] Feito. Mover Aberturas completo."
  2124. #: flatcamEditors/FlatCAMGrbEditor.py:1968
  2125. msgid "[success] Done. Apertures copied."
  2126. msgstr "[sucesso] Feito. Aberturas copiadas."
  2127. #: flatcamEditors/FlatCAMGrbEditor.py:2259 flatcamGUI/FlatCAMGUI.py:1604 flatcamGUI/FlatCAMGUI.py:4323
  2128. msgid "Gerber Editor"
  2129. msgstr "Editor Gerber"
  2130. #: flatcamEditors/FlatCAMGrbEditor.py:2278 flatcamGUI/ObjectUI.py:192
  2131. msgid "<b>Apertures:</b>"
  2132. msgstr "<b> Aberturas: </ b>"
  2133. #: flatcamEditors/FlatCAMGrbEditor.py:2280 flatcamGUI/ObjectUI.py:194
  2134. msgid "Apertures Table for the Gerber Object."
  2135. msgstr "Mesa de Aberturas para o Objeto Gerber."
  2136. #: flatcamEditors/FlatCAMGrbEditor.py:2291 flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2137. msgid "Code"
  2138. msgstr "Código"
  2139. #: flatcamEditors/FlatCAMGrbEditor.py:2291 flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228 flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  2140. msgid "Type"
  2141. msgstr "Tipo"
  2142. #: flatcamEditors/FlatCAMGrbEditor.py:2291 flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2143. msgid "Size"
  2144. msgstr "Tamanho"
  2145. #: flatcamEditors/FlatCAMGrbEditor.py:2291 flatcamEditors/FlatCAMGrbEditor.py:3601 flatcamGUI/ObjectUI.py:228
  2146. msgid "Dim"
  2147. msgstr "Dim"
  2148. #: flatcamEditors/FlatCAMGrbEditor.py:2295 flatcamGUI/ObjectUI.py:232
  2149. msgid "Index"
  2150. msgstr "Índice"
  2151. #: flatcamEditors/FlatCAMGrbEditor.py:2297 flatcamGUI/ObjectUI.py:234
  2152. msgid "Aperture Code"
  2153. msgstr "Código de Abertura"
  2154. #: flatcamEditors/FlatCAMGrbEditor.py:2299 flatcamGUI/ObjectUI.py:236
  2155. msgid "Type of aperture: circular, rectangle, macros etc"
  2156. msgstr "Tipo de abertura: circular, retângulo, macros etc"
  2157. #: flatcamEditors/FlatCAMGrbEditor.py:2301 flatcamEditors/FlatCAMGrbEditor.py:2334 flatcamGUI/ObjectUI.py:238
  2158. msgid "Aperture Size:"
  2159. msgstr "Tamanho da abertura:"
  2160. #: flatcamEditors/FlatCAMGrbEditor.py:2303 flatcamGUI/ObjectUI.py:240
  2161. msgid ""
  2162. "Aperture Dimensions:\n"
  2163. " - (width, height) for R, O type.\n"
  2164. " - (dia, nVertices) for P type"
  2165. msgstr ""
  2166. "Dimensões da abertura: \n"
  2167. " - (largura, altura) para o tipo R, O. \n"
  2168. " - (dia, nVertices) para o tipo P"
  2169. #: flatcamEditors/FlatCAMGrbEditor.py:2324
  2170. msgid "Aperture Code:"
  2171. msgstr "Código de Abertura:"
  2172. #: flatcamEditors/FlatCAMGrbEditor.py:2326
  2173. msgid "Code for the new aperture"
  2174. msgstr "Código para a nova abertura"
  2175. #: flatcamEditors/FlatCAMGrbEditor.py:2336
  2176. msgid ""
  2177. "Size for the new aperture.\n"
  2178. "If aperture type is 'R' or 'O' then\n"
  2179. "this value is automatically\n"
  2180. "calculated as:\n"
  2181. "sqrt(width**2 + height**2)"
  2182. msgstr ""
  2183. "Tamanho para a nova abertura. \n"
  2184. "Se o tipo de abertura for 'R' ou 'O' então \n"
  2185. "este valor será automaticamente \n"
  2186. "calculado como: \n"
  2187. "sqrt (largura^2 + altura^2)"
  2188. #: flatcamEditors/FlatCAMGrbEditor.py:2348
  2189. msgid "Aperture Type:"
  2190. msgstr "Tipo de Abertura:"
  2191. #: flatcamEditors/FlatCAMGrbEditor.py:2350
  2192. msgid ""
  2193. "Select the type of new aperture. Can be:\n"
  2194. "C = circular\n"
  2195. "R = rectangular\n"
  2196. "O = oblong"
  2197. msgstr ""
  2198. "Selecione o tipo de nova abertura. Pode ser: \n"
  2199. "C = circular \n"
  2200. "R = retangular \n"
  2201. "O = oblongo"
  2202. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  2203. msgid "Aperture Dim:"
  2204. msgstr "Dim Abertura:"
  2205. #: flatcamEditors/FlatCAMGrbEditor.py:2363
  2206. msgid ""
  2207. "Dimensions for the new aperture.\n"
  2208. "Active only for rectangular apertures (type R).\n"
  2209. "The format is (width, height)"
  2210. msgstr ""
  2211. "Dimensões da nova abertura. \n"
  2212. "Ativa apenas para aberturas retangulares (tipo R). \n"
  2213. "O formato é (largura, altura)"
  2214. #: flatcamEditors/FlatCAMGrbEditor.py:2372
  2215. msgid "Add/Delete Aperture:"
  2216. msgstr "Adicionar/Excluir Abertura:"
  2217. #: flatcamEditors/FlatCAMGrbEditor.py:2374
  2218. msgid "Add/Delete an aperture in the aperture table"
  2219. msgstr "Adicionar/Excluir uma abertura na tabela de abertura"
  2220. #: flatcamEditors/FlatCAMGrbEditor.py:2383
  2221. msgid "Add a new aperture to the aperture list."
  2222. msgstr "Adicione uma nova abertura à lista de abertura."
  2223. #: flatcamEditors/FlatCAMGrbEditor.py:2388
  2224. msgid "Delete a aperture in the aperture list"
  2225. msgstr "Excluir uma abertura da lista de abertura"
  2226. #: flatcamEditors/FlatCAMGrbEditor.py:2404
  2227. msgid "Buffer Aperture:"
  2228. msgstr "Buffer Aperture:"
  2229. #: flatcamEditors/FlatCAMGrbEditor.py:2406
  2230. msgid "Buffer a aperture in the aperture list"
  2231. msgstr "Buffer de uma abertura na lista de abertura"
  2232. #: flatcamEditors/FlatCAMGrbEditor.py:2419
  2233. msgid ""
  2234. "There are 3 types of corners:\n"
  2235. " - 'Round': the corner is rounded.\n"
  2236. " - 'Square:' the corner is met in a sharp angle.\n"
  2237. " - 'Beveled:' the corner is a line that directly connects the features meeting in the corner"
  2238. msgstr ""
  2239. "Existem 3 tipos de cantos: \n"
  2240. " - 'Round': o canto é arredondado. \n"
  2241. " - 'Square:' o canto é ângulo agudo. \n"
  2242. " - 'Beveled:' o canto é uma linha que conecta diretamente os recursos reunidos no canto"
  2243. #: flatcamEditors/FlatCAMGrbEditor.py:2434 flatcamGUI/FlatCAMGUI.py:717 flatcamGUI/FlatCAMGUI.py:1946
  2244. msgid "Buffer"
  2245. msgstr "Amortecedor"
  2246. #: flatcamEditors/FlatCAMGrbEditor.py:2448
  2247. msgid "Scale Aperture:"
  2248. msgstr "Abertura de escala:"
  2249. #: flatcamEditors/FlatCAMGrbEditor.py:2450
  2250. msgid "Scale a aperture in the aperture list"
  2251. msgstr "Ajustar uma abertura na lista de abertura"
  2252. #: flatcamEditors/FlatCAMGrbEditor.py:2458
  2253. msgid "Scale factor:"
  2254. msgstr "Fator de escala:"
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:2460
  2256. msgid ""
  2257. "The factor by which to scale the selected aperture.\n"
  2258. "Values can be between 0.0000 and 999.9999"
  2259. msgstr ""
  2260. "O fator pelo qual dimensionar a abertura selecionada. \n"
  2261. "Os valores podem estar entre 0,0000 e 999,9999"
  2262. #: flatcamEditors/FlatCAMGrbEditor.py:2488 flatcamGUI/FlatCAMGUI.py:707 flatcamGUI/FlatCAMGUI.py:1936
  2263. msgid "Add Pad Array"
  2264. msgstr "Adicionar Pad Array"
  2265. #: flatcamEditors/FlatCAMGrbEditor.py:2490
  2266. msgid "Add an array of pads (linear or circular array)"
  2267. msgstr "Adicione uma matriz de blocos (matriz linear ou circular)"
  2268. #: flatcamEditors/FlatCAMGrbEditor.py:2496
  2269. msgid ""
  2270. "Select the type of pads array to create.\n"
  2271. "It can be Linear X(Y) or Circular"
  2272. msgstr ""
  2273. "Selecione o tipo de matriz de blocos para criar. \n"
  2274. "Pode ser Linear X (Y) ou Circular"
  2275. #: flatcamEditors/FlatCAMGrbEditor.py:2507
  2276. msgid "Nr of pads:"
  2277. msgstr "Nr de pads:"
  2278. #: flatcamEditors/FlatCAMGrbEditor.py:2509
  2279. msgid "Specify how many pads to be in the array."
  2280. msgstr "Especifique quantos pads devem estar no array."
  2281. #: flatcamEditors/FlatCAMGrbEditor.py:2986 flatcamEditors/FlatCAMGrbEditor.py:2990
  2282. msgid "[WARNING_NOTCL] Aperture code value is missing or wrong format. Add it and retry."
  2283. msgstr "[WARNING_NOTCL] O valor do código de abertura está em falta ou em formato incorreto. Altere e tente novamente."
  2284. #: flatcamEditors/FlatCAMGrbEditor.py:3026
  2285. msgid "[WARNING_NOTCL] Aperture dimensions value is missing or wrong format. Add it in format (width, height) and retry."
  2286. msgstr "[WARNING_NOTCL] O valor das dimensões da abertura está em falta ou está no formato errado. Altere (largura, altura) e tente novamente."
  2287. #: flatcamEditors/FlatCAMGrbEditor.py:3038
  2288. msgid "[WARNING_NOTCL] Aperture size value is missing or wrong format. Add it and retry."
  2289. msgstr "[WARNING_NOTCL] O valor do tamanho da abertura está ausente ou está no formato errado. Altere e tente novamente."
  2290. #: flatcamEditors/FlatCAMGrbEditor.py:3049
  2291. msgid "[WARNING_NOTCL] Aperture already in the aperture table."
  2292. msgstr "[WARNING_NOTCL] Abertura já na tabela de abertura."
  2293. #: flatcamEditors/FlatCAMGrbEditor.py:3056
  2294. #, python-brace-format
  2295. msgid "[success] Added new aperture with code: {apid}"
  2296. msgstr "[sucesso] Adicionada nova abertura com código: {apid}"
  2297. #: flatcamEditors/FlatCAMGrbEditor.py:3084
  2298. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table"
  2299. msgstr "[WARNING_NOTCL] Selecione uma abertura na Tabela de Abertura"
  2300. #: flatcamEditors/FlatCAMGrbEditor.py:3090
  2301. #, python-format
  2302. msgid "[WARNING_NOTCL] Select an aperture in Aperture Table --> %s"
  2303. msgstr "[WARNING_NOTCL] Selecione uma abertura na Tabela de Abertura -> %s"
  2304. #: flatcamEditors/FlatCAMGrbEditor.py:3113
  2305. #, python-brace-format
  2306. msgid "[success] Deleted aperture with code: {del_dia}"
  2307. msgstr "[sucesso] Abertura excluída com código: {del_dia}"
  2308. #: flatcamEditors/FlatCAMGrbEditor.py:3533
  2309. #, python-format
  2310. msgid "Adding aperture: %s geo ..."
  2311. msgstr "Adicionando abertura: %s geo ..."
  2312. #: flatcamEditors/FlatCAMGrbEditor.py:3718
  2313. msgid "[ERROR_NOTCL] There are no Aperture definitions in the file. Aborting Gerber creation."
  2314. msgstr "[ERROR_NOTCL] Não há definições do Aperture no arquivo. Abortando a criação de Gerber."
  2315. #: flatcamEditors/FlatCAMGrbEditor.py:3721
  2316. msgid "[ERROR] An internal error has occurred. See shell.\n"
  2317. msgstr "[ERROR] Ocorreu um erro interno. Veja shell. \n"
  2318. #: flatcamEditors/FlatCAMGrbEditor.py:3726
  2319. msgid "Creating Gerber."
  2320. msgstr "Criando Gerber."
  2321. #: flatcamEditors/FlatCAMGrbEditor.py:3734
  2322. msgid "[success] Gerber editing finished."
  2323. msgstr "[sucesso] Edição de Gerber finalizada."
  2324. #: flatcamEditors/FlatCAMGrbEditor.py:3750
  2325. msgid "[WARNING_NOTCL] Cancelled. No aperture is selected"
  2326. msgstr "[WARNING_NOTCL] Cancelado. Nenhuma abertura selecionada"
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:4280
  2328. msgid "[ERROR_NOTCL] Failed. No aperture geometry is selected."
  2329. msgstr "[ERROR_NOTCL] Falhou. Nenhuma geometria de abertura selecionada."
  2330. #: flatcamEditors/FlatCAMGrbEditor.py:4288
  2331. msgid "[success] Done. Apertures geometry deleted."
  2332. msgstr "[sucesso] Feito. Geometria das aberturas excluída."
  2333. #: flatcamEditors/FlatCAMGrbEditor.py:4431
  2334. msgid "[WARNING_NOTCL] No aperture to buffer. Select at least one aperture and try again."
  2335. msgstr "[WARNING_NOTCL] Nenhuma abertura para buffer. Selecione pelo menos uma abertura e tente novamente."
  2336. #: flatcamEditors/FlatCAMGrbEditor.py:4444
  2337. #, python-format
  2338. msgid ""
  2339. "[ERROR_NOTCL] Failed.\n"
  2340. "%s"
  2341. msgstr ""
  2342. "[ERROR_NOTCL] falhou. \n"
  2343. " %s"
  2344. #: flatcamEditors/FlatCAMGrbEditor.py:4461
  2345. msgid "[WARNING_NOTCL] Scale factor value is missing or wrong format. Add it and retry."
  2346. msgstr "[WARNING_NOTCL] O valor do fator de escala está ausente ou está em formato incorreto. Altere e tente novamente."
  2347. #: flatcamEditors/FlatCAMGrbEditor.py:4494
  2348. msgid "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try again."
  2349. msgstr "[WARNING_NOTCL] Nenhuma abertura a escalar. Selecione pelo menos uma abertura e tente novamente."
  2350. #: flatcamEditors/FlatCAMGrbEditor.py:4510
  2351. msgid "[success] Done. Scale Tool completed."
  2352. msgstr "[sucesso] Feito. Ferramenta de escala concluída."
  2353. #: flatcamGUI/FlatCAMGUI.py:50
  2354. msgid "&File"
  2355. msgstr "&Arquivo"
  2356. #: flatcamGUI/FlatCAMGUI.py:55
  2357. msgid "&New Project ...\tCTRL+N"
  2358. msgstr "&Novo Projeto ...\tCTRL + N"
  2359. #: flatcamGUI/FlatCAMGUI.py:57
  2360. msgid "Will create a new, blank project"
  2361. msgstr "Vai criar um novo projeto em branco"
  2362. #: flatcamGUI/FlatCAMGUI.py:62
  2363. msgid "&New"
  2364. msgstr "&Novo"
  2365. #: flatcamGUI/FlatCAMGUI.py:65
  2366. msgid "Geometry\tN"
  2367. msgstr "Geometria\tN"
  2368. #: flatcamGUI/FlatCAMGUI.py:67
  2369. msgid "Will create a new, empty Geometry Object."
  2370. msgstr "Irá criar um novo Objeto Geometria vazio."
  2371. #: flatcamGUI/FlatCAMGUI.py:69
  2372. msgid "Gerber\tB"
  2373. msgstr "Gerber\tB"
  2374. #: flatcamGUI/FlatCAMGUI.py:71
  2375. msgid "Will create a new, empty Gerber Object."
  2376. msgstr "Irá criar um novo Objeto Gerber vazio."
  2377. #: flatcamGUI/FlatCAMGUI.py:73
  2378. msgid "Excellon\tL"
  2379. msgstr "Excellon\tL"
  2380. #: flatcamGUI/FlatCAMGUI.py:75
  2381. msgid "Will create a new, empty Excellon Object."
  2382. msgstr "Irá criar um novo Objeto Excellon vazio."
  2383. #: flatcamGUI/FlatCAMGUI.py:78 flatcamTools/ToolPcbWizard.py:63 flatcamTools/ToolPcbWizard.py:71
  2384. msgid "Open"
  2385. msgstr "Abrir"
  2386. #: flatcamGUI/FlatCAMGUI.py:83
  2387. msgid "Open &Gerber ...\tCTRL+G"
  2388. msgstr "Abrir &Gerber ...\tCTRL+G"
  2389. #: flatcamGUI/FlatCAMGUI.py:90
  2390. msgid "Open &Excellon ...\tCTRL+E"
  2391. msgstr "Abrir &Excellon ...\tCTRL+E"
  2392. #: flatcamGUI/FlatCAMGUI.py:95
  2393. msgid "Open G-&Code ..."
  2394. msgstr "Abrir G-&Code ..."
  2395. #: flatcamGUI/FlatCAMGUI.py:99
  2396. msgid "Open &Project ..."
  2397. msgstr "Abrir &Projeto ..."
  2398. #: flatcamGUI/FlatCAMGUI.py:105
  2399. msgid "Open Config ..."
  2400. msgstr "Abrir Configuração ..."
  2401. #: flatcamGUI/FlatCAMGUI.py:109
  2402. msgid "Recent files"
  2403. msgstr "Arquivos recentes"
  2404. #: flatcamGUI/FlatCAMGUI.py:115
  2405. msgid "Scripting"
  2406. msgstr "Scripting"
  2407. #: flatcamGUI/FlatCAMGUI.py:118
  2408. msgid "New Script ..."
  2409. msgstr "Novo Script ..."
  2410. #: flatcamGUI/FlatCAMGUI.py:120
  2411. msgid "Open Script ..."
  2412. msgstr "Abrir Script ..."
  2413. #: flatcamGUI/FlatCAMGUI.py:122
  2414. msgid "Run Script ...\tSHIFT+S"
  2415. msgstr "Executar Script ...\tSHIFT+S"
  2416. #: flatcamGUI/FlatCAMGUI.py:125
  2417. msgid ""
  2418. "Will run the opened Tcl Script thus\n"
  2419. "enabling the automation of certain\n"
  2420. "functions of FlatCAM."
  2421. msgstr ""
  2422. "Irá executar o script TCL aberto \n"
  2423. "ativando a automação de certas \n"
  2424. "funções do FlatCAM."
  2425. #: flatcamGUI/FlatCAMGUI.py:138
  2426. msgid "Import"
  2427. msgstr "Importar"
  2428. #: flatcamGUI/FlatCAMGUI.py:140
  2429. msgid "&SVG as Geometry Object ..."
  2430. msgstr "&SVG como objeto de geometria ..."
  2431. #: flatcamGUI/FlatCAMGUI.py:143
  2432. msgid "&SVG as Gerber Object ..."
  2433. msgstr "&SVG como objeto Gerber ..."
  2434. #: flatcamGUI/FlatCAMGUI.py:148
  2435. msgid "&DXF as Geometry Object ..."
  2436. msgstr "&DXF como objeto de geometria ..."
  2437. #: flatcamGUI/FlatCAMGUI.py:151
  2438. msgid "&DXF as Gerber Object ..."
  2439. msgstr "&DXF como Objeto Gerber ..."
  2440. #: flatcamGUI/FlatCAMGUI.py:156
  2441. msgid "Export"
  2442. msgstr "Exportar"
  2443. #: flatcamGUI/FlatCAMGUI.py:159
  2444. msgid "Export &SVG ..."
  2445. msgstr "Exportar &SVG ..."
  2446. #: flatcamGUI/FlatCAMGUI.py:162
  2447. msgid "Export DXF ..."
  2448. msgstr "Exportar DXF ..."
  2449. #: flatcamGUI/FlatCAMGUI.py:167
  2450. msgid "Export &PNG ..."
  2451. msgstr "Exportar &PNG ..."
  2452. #: flatcamGUI/FlatCAMGUI.py:169
  2453. msgid ""
  2454. "Will export an image in PNG format,\n"
  2455. "the saved image will contain the visual \n"
  2456. "information currently in FlatCAM Plot Area."
  2457. msgstr ""
  2458. "Irá exportar uma imagem em formato PNG, \n"
  2459. " a imagem salva conterá as informações \n"
  2460. " visuais atualmente na área de plotagem FlatCAM."
  2461. #: flatcamGUI/FlatCAMGUI.py:177
  2462. msgid "Export &Excellon ..."
  2463. msgstr "Exportar &Excellon ..."
  2464. #: flatcamGUI/FlatCAMGUI.py:180
  2465. msgid ""
  2466. "Will export an Excellon Object as Excellon file,\n"
  2467. "the coordinates format, the file units and zeros\n"
  2468. "are set in Preferences -> Excellon Export."
  2469. msgstr ""
  2470. "Irá exportar um Objeto Excellon como arquivo Excel, \n"
  2471. "no formato de coordenadas, as unidades de arquivo e os zeros \n"
  2472. "são definidos em Preferências -> Exportação de Excellon."
  2473. #: flatcamGUI/FlatCAMGUI.py:186
  2474. msgid "Export &Gerber ..."
  2475. msgstr "Exportar &Gerber ..."
  2476. #: flatcamGUI/FlatCAMGUI.py:189
  2477. msgid ""
  2478. "Will export an Gerber Object as Gerber file,\n"
  2479. "the coordinates format, the file units and zeros\n"
  2480. "are set in Preferences -> Gerber Export."
  2481. msgstr ""
  2482. "Irá exportar um Objeto Gerber como arquivo Gerber, \n"
  2483. "o formato de coordenadas, as unidades de arquivo e os zeros \n"
  2484. "estão definidos em Preferências -> Exportação de Gerber."
  2485. #: flatcamGUI/FlatCAMGUI.py:199
  2486. msgid "Save &Defaults"
  2487. msgstr "Salvar Pa&drões"
  2488. #: flatcamGUI/FlatCAMGUI.py:205 flatcamGUI/FlatCAMGUI.py:528
  2489. msgid "Save"
  2490. msgstr "Salvar"
  2491. #: flatcamGUI/FlatCAMGUI.py:208
  2492. msgid "&Save Project ..."
  2493. msgstr "&Salvar Projeto ..."
  2494. #: flatcamGUI/FlatCAMGUI.py:213
  2495. msgid "Save Project &As ...\tCTRL+S"
  2496. msgstr "Salvar Projeto &Como ...\tCTRL+S"
  2497. #: flatcamGUI/FlatCAMGUI.py:217
  2498. msgid "Save Project C&opy ..."
  2499. msgstr "Salvar Cópia do Pr&ojeto ..."
  2500. #: flatcamGUI/FlatCAMGUI.py:225
  2501. msgid "E&xit"
  2502. msgstr "Sair"
  2503. #: flatcamGUI/FlatCAMGUI.py:231
  2504. msgid "&Edit"
  2505. msgstr "&Editar"
  2506. #: flatcamGUI/FlatCAMGUI.py:234
  2507. msgid "Edit Object\tE"
  2508. msgstr "Editar Objeto\tE"
  2509. #: flatcamGUI/FlatCAMGUI.py:235
  2510. msgid "Close Editor\tCTRL+S"
  2511. msgstr "Fechar Editor\tCTRL+S"
  2512. #: flatcamGUI/FlatCAMGUI.py:243
  2513. msgid "Conversion"
  2514. msgstr "Conversão"
  2515. #: flatcamGUI/FlatCAMGUI.py:245
  2516. msgid "&Join Geo/Gerber/Exc -> Geo"
  2517. msgstr "&Unir Geo/Gerber/Exc -> Geo"
  2518. #: flatcamGUI/FlatCAMGUI.py:247
  2519. msgid ""
  2520. "Merge a selection of objects, which can be of type:\n"
  2521. "- Gerber\n"
  2522. "- Excellon\n"
  2523. "- Geometry\n"
  2524. "into a new combo Geometry object."
  2525. msgstr ""
  2526. "Mesclar uma seleção de objetos, que podem ser do tipo: \n"
  2527. "- Gerber \n"
  2528. "- Excellon \n"
  2529. "- Geometria \n"
  2530. " em um novo objeto Geometria."
  2531. #: flatcamGUI/FlatCAMGUI.py:254
  2532. msgid "Join Excellon(s) -> Excellon"
  2533. msgstr "Unir Excellon(s) -> Excellon"
  2534. #: flatcamGUI/FlatCAMGUI.py:256
  2535. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  2536. msgstr "Mesclar uma seleção de objetos Excellon em um novo objeto Excellon."
  2537. #: flatcamGUI/FlatCAMGUI.py:259
  2538. msgid "Join Gerber(s) -> Gerber"
  2539. msgstr "Unir Gerber(s) -> Gerber"
  2540. #: flatcamGUI/FlatCAMGUI.py:261
  2541. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  2542. msgstr "Mesclar uma seleção de objetos Gerber em um novo objeto Gerber."
  2543. #: flatcamGUI/FlatCAMGUI.py:266
  2544. msgid "Convert Single to MultiGeo"
  2545. msgstr "Converter Single para MultiGeo"
  2546. #: flatcamGUI/FlatCAMGUI.py:268
  2547. msgid ""
  2548. "Will convert a Geometry object from single_geometry type\n"
  2549. "to a multi_geometry type."
  2550. msgstr ""
  2551. "Irá converter um objeto Geometria do tipo single_geometry \n"
  2552. " para um tipo multi_geometry."
  2553. #: flatcamGUI/FlatCAMGUI.py:272
  2554. msgid "Convert Multi to SingleGeo"
  2555. msgstr "Converter Multi para SingleGeo"
  2556. #: flatcamGUI/FlatCAMGUI.py:274
  2557. msgid ""
  2558. "Will convert a Geometry object from multi_geometry type\n"
  2559. "to a single_geometry type."
  2560. msgstr ""
  2561. "Irá converter um objeto Geometria do tipo multi_geometry \n"
  2562. " para um tipo single_geometry."
  2563. #: flatcamGUI/FlatCAMGUI.py:280
  2564. msgid "Convert Any to Geo"
  2565. msgstr "Converter Qualquer para Geo"
  2566. #: flatcamGUI/FlatCAMGUI.py:282
  2567. msgid "Convert Any to Gerber"
  2568. msgstr "Converter Qualquer para Gerber"
  2569. #: flatcamGUI/FlatCAMGUI.py:287
  2570. msgid "&Copy\tCTRL+C"
  2571. msgstr "&Copiar\tCTRL+C"
  2572. #: flatcamGUI/FlatCAMGUI.py:291
  2573. msgid "&Delete\tDEL"
  2574. msgstr "&Excluir\tDEL"
  2575. #: flatcamGUI/FlatCAMGUI.py:295
  2576. msgid "Se&t Origin\tO"
  2577. msgstr "De&finir Origem\tO"
  2578. #: flatcamGUI/FlatCAMGUI.py:296
  2579. msgid "Jump to Location\tJ"
  2580. msgstr "Ir para a localização\tJ"
  2581. #: flatcamGUI/FlatCAMGUI.py:301
  2582. msgid "Toggle Units\tQ"
  2583. msgstr "Alternar Unidades\tQ"
  2584. #: flatcamGUI/FlatCAMGUI.py:303
  2585. msgid "&Select All\tCTRL+A"
  2586. msgstr "&Selecionar Tudo\tCTRL+A"
  2587. #: flatcamGUI/FlatCAMGUI.py:307
  2588. msgid "&Preferences\tSHIFT+P"
  2589. msgstr "&Preferências\tSHIFT+P"
  2590. #: flatcamGUI/FlatCAMGUI.py:310
  2591. msgid "&Options"
  2592. msgstr "&Opções"
  2593. #: flatcamGUI/FlatCAMGUI.py:325
  2594. msgid "&Rotate Selection\tSHIFT+(R)"
  2595. msgstr "&Rodar seleção\tSHIFT+(R)"
  2596. #: flatcamGUI/FlatCAMGUI.py:330
  2597. msgid "&Skew on X axis\tSHIFT+X"
  2598. msgstr "&Inclinar no eixo X\tSHIFT+X"
  2599. #: flatcamGUI/FlatCAMGUI.py:332
  2600. msgid "S&kew on Y axis\tSHIFT+Y"
  2601. msgstr "&Inclinar no eixo Y\tSHIFT+Y"
  2602. #: flatcamGUI/FlatCAMGUI.py:337
  2603. msgid "Flip on &X axis\tX"
  2604. msgstr "Espelhar no eixo &X\tX"
  2605. #: flatcamGUI/FlatCAMGUI.py:339
  2606. msgid "Flip on &Y axis\tY"
  2607. msgstr "Espelhar no eixo &Y\tY"
  2608. #: flatcamGUI/FlatCAMGUI.py:344
  2609. msgid "View source\tALT+S"
  2610. msgstr "Ver fonte\tALT+S"
  2611. #: flatcamGUI/FlatCAMGUI.py:349
  2612. msgid "&View"
  2613. msgstr "&Ver"
  2614. #: flatcamGUI/FlatCAMGUI.py:350
  2615. msgid "Enable all plots\tALT+1"
  2616. msgstr "Habilitar todos os gráficos\tALT+1"
  2617. #: flatcamGUI/FlatCAMGUI.py:352
  2618. msgid "Disable all plots\tALT+2"
  2619. msgstr "Desabilitar todos os gráficos\tALT+2"
  2620. #: flatcamGUI/FlatCAMGUI.py:354
  2621. msgid "Disable non-selected\tALT+3"
  2622. msgstr "Desabilitar os não selecionados\tALT+3"
  2623. #: flatcamGUI/FlatCAMGUI.py:357
  2624. msgid "&Zoom Fit\tV"
  2625. msgstr "&Zoom Fit\tV"
  2626. #: flatcamGUI/FlatCAMGUI.py:358
  2627. msgid "&Zoom In\t="
  2628. msgstr "&Zoom In\t="
  2629. #: flatcamGUI/FlatCAMGUI.py:359
  2630. msgid "&Zoom Out\t-"
  2631. msgstr "&Zoom Out\t-"
  2632. #: flatcamGUI/FlatCAMGUI.py:363
  2633. msgid "Toggle Code Editor\tCTRL+E"
  2634. msgstr "Alternar o Editor de Códigos\tCTRL+E"
  2635. #: flatcamGUI/FlatCAMGUI.py:366
  2636. msgid "&Toggle FullScreen\tALT+F10"
  2637. msgstr "Alternar &Tela Cheia\tALT+F10"
  2638. #: flatcamGUI/FlatCAMGUI.py:368
  2639. msgid "&Toggle Plot Area\tCTRL+F10"
  2640. msgstr "&Alternar Área de Gráficos\tCTRL+F10"
  2641. #: flatcamGUI/FlatCAMGUI.py:370
  2642. msgid "&Toggle Project/Sel/Tool\t`"
  2643. msgstr "Alternar Proje&to/Sel/Tool\t`"
  2644. #: flatcamGUI/FlatCAMGUI.py:373
  2645. msgid "&Toggle Grid Snap\tG"
  2646. msgstr "&Alternar Encaixe na Grade\tG"
  2647. #: flatcamGUI/FlatCAMGUI.py:375
  2648. msgid "&Toggle Axis\tSHIFT+G"
  2649. msgstr "&Alternar Eixo\tSHIFT+G"
  2650. #: flatcamGUI/FlatCAMGUI.py:378
  2651. msgid "Toggle Workspace\tSHIFT+W"
  2652. msgstr "Alternar Espaço de Trabalho\tSHIFT+W"
  2653. #: flatcamGUI/FlatCAMGUI.py:381
  2654. msgid "&Tool"
  2655. msgstr "&Ferramenta"
  2656. #: flatcamGUI/FlatCAMGUI.py:383
  2657. msgid "&Command Line\tS"
  2658. msgstr "Linha de &Comando\tS"
  2659. #: flatcamGUI/FlatCAMGUI.py:386
  2660. msgid "&Help"
  2661. msgstr "&Ajuda"
  2662. #: flatcamGUI/FlatCAMGUI.py:387
  2663. msgid "Help\tF1"
  2664. msgstr "Ajuda\tF1"
  2665. #: flatcamGUI/FlatCAMGUI.py:388
  2666. msgid "FlatCAM.org"
  2667. msgstr "FlatCAM.org"
  2668. #: flatcamGUI/FlatCAMGUI.py:391
  2669. msgid "Shortcuts List\tF3"
  2670. msgstr "Lista de Atalhos\tF3"
  2671. #: flatcamGUI/FlatCAMGUI.py:392
  2672. msgid "YouTube Channel\tF4"
  2673. msgstr "Canal do no YouTube\tF4"
  2674. #: flatcamGUI/FlatCAMGUI.py:394
  2675. msgid "About"
  2676. msgstr "Sobre"
  2677. #: flatcamGUI/FlatCAMGUI.py:401
  2678. msgid "Add Circle\tO"
  2679. msgstr "Adicionar Círculo\tO"
  2680. #: flatcamGUI/FlatCAMGUI.py:403
  2681. msgid "Add Arc\tA"
  2682. msgstr "Adicionar Arco\tA"
  2683. #: flatcamGUI/FlatCAMGUI.py:406
  2684. msgid "Add Rectangle\tR"
  2685. msgstr "Adicionar Retângulo\tR"
  2686. #: flatcamGUI/FlatCAMGUI.py:409
  2687. msgid "Add Polygon\tN"
  2688. msgstr "Adicionar Polígono\tN"
  2689. #: flatcamGUI/FlatCAMGUI.py:411
  2690. msgid "Add Path\tP"
  2691. msgstr "Adicionar Caminho\tP"
  2692. #: flatcamGUI/FlatCAMGUI.py:413
  2693. msgid "Add Text\tT"
  2694. msgstr "Adicionar Texto\tT"
  2695. #: flatcamGUI/FlatCAMGUI.py:416
  2696. msgid "Polygon Union\tU"
  2697. msgstr "Unir Polígonos\tU"
  2698. #: flatcamGUI/FlatCAMGUI.py:418
  2699. msgid "Polygon Intersection\tE"
  2700. msgstr "Interseção de Polígonos\tE"
  2701. #: flatcamGUI/FlatCAMGUI.py:420
  2702. msgid "Polygon Subtraction\tS"
  2703. msgstr "Subtração de Polígonos\tS"
  2704. #: flatcamGUI/FlatCAMGUI.py:424
  2705. msgid "Cut Path\tX"
  2706. msgstr "Caminho de Corte\tX"
  2707. #: flatcamGUI/FlatCAMGUI.py:426
  2708. msgid "Copy Geom\tC"
  2709. msgstr "Copiar Geom\tC"
  2710. #: flatcamGUI/FlatCAMGUI.py:428
  2711. msgid "Delete Shape\tDEL"
  2712. msgstr "Excluir Forma\tDEL"
  2713. #: flatcamGUI/FlatCAMGUI.py:431 flatcamGUI/FlatCAMGUI.py:503
  2714. msgid "Move\tM"
  2715. msgstr "Mover\tM"
  2716. #: flatcamGUI/FlatCAMGUI.py:433
  2717. msgid "Buffer Tool\tB"
  2718. msgstr "Ferramenta Buffer\tB"
  2719. #: flatcamGUI/FlatCAMGUI.py:436
  2720. msgid "Paint Tool\tI"
  2721. msgstr "Ferramenta de Pintura\tI"
  2722. #: flatcamGUI/FlatCAMGUI.py:439
  2723. msgid "Transform Tool\tALT+R"
  2724. msgstr "Ferramenta de Transformação\tALT+R"
  2725. #: flatcamGUI/FlatCAMGUI.py:443
  2726. msgid "Toggle Corner Snap\tK"
  2727. msgstr "Alternar Encaixe de Canto\tK"
  2728. #: flatcamGUI/FlatCAMGUI.py:446
  2729. msgid ">Excellon Editor<"
  2730. msgstr ">Editor Excellon<"
  2731. #: flatcamGUI/FlatCAMGUI.py:450
  2732. msgid "Add Drill Array\tA"
  2733. msgstr "Adicionar Matriz de Brocas\tA"
  2734. #: flatcamGUI/FlatCAMGUI.py:452
  2735. msgid "Add Drill\tD"
  2736. msgstr "Adicionar Broca\tD"
  2737. #: flatcamGUI/FlatCAMGUI.py:456
  2738. msgid "Resize Drill(S)\tR"
  2739. msgstr "Redimensionar Broca(s)\tR"
  2740. #: flatcamGUI/FlatCAMGUI.py:458 flatcamGUI/FlatCAMGUI.py:496
  2741. msgid "Copy\tC"
  2742. msgstr "Copiar\tC"
  2743. #: flatcamGUI/FlatCAMGUI.py:460 flatcamGUI/FlatCAMGUI.py:498
  2744. msgid "Delete\tDEL"
  2745. msgstr "Excluir\tDEL"
  2746. #: flatcamGUI/FlatCAMGUI.py:465
  2747. msgid "Move Drill(s)\tM"
  2748. msgstr "Mover Broca(s)\tM"
  2749. #: flatcamGUI/FlatCAMGUI.py:468
  2750. msgid ">Gerber Editor<"
  2751. msgstr ">Editor Gerber<"
  2752. #: flatcamGUI/FlatCAMGUI.py:472
  2753. msgid "Add Pad\tP"
  2754. msgstr "Adicionar Pad\tP"
  2755. #: flatcamGUI/FlatCAMGUI.py:474
  2756. msgid "Add Pad Array\tA"
  2757. msgstr "Adicionar Matriz de Pads\tA"
  2758. #: flatcamGUI/FlatCAMGUI.py:476
  2759. msgid "Add Track\tT"
  2760. msgstr "Adicionar Trilha\tT"
  2761. #: flatcamGUI/FlatCAMGUI.py:478
  2762. msgid "Add Region\tN"
  2763. msgstr "Adicionar Região\tN"
  2764. #: flatcamGUI/FlatCAMGUI.py:482
  2765. msgid "Poligonize\tALT+N"
  2766. msgstr "Poligonizar\tALT+N"
  2767. #: flatcamGUI/FlatCAMGUI.py:484
  2768. msgid "Add SemiDisc\tE"
  2769. msgstr "Adicionar SemiDisc\tE"
  2770. #: flatcamGUI/FlatCAMGUI.py:486
  2771. msgid "Add Disc\tD"
  2772. msgstr "Adicionar Disco\tD"
  2773. #: flatcamGUI/FlatCAMGUI.py:488
  2774. msgid "Buffer\tB"
  2775. msgstr "Buffer\tB"
  2776. #: flatcamGUI/FlatCAMGUI.py:490
  2777. msgid "Scale\tS"
  2778. msgstr "Escala\tS"
  2779. #: flatcamGUI/FlatCAMGUI.py:492
  2780. msgid "Transform\tALT+R"
  2781. msgstr "Transformar\tALT+R"
  2782. #: flatcamGUI/FlatCAMGUI.py:519
  2783. msgid "Enable Plot"
  2784. msgstr "Habilitar Gráfico"
  2785. #: flatcamGUI/FlatCAMGUI.py:520 flatcamGUI/FlatCAMGUI.py:1577
  2786. msgid "Disable Plot"
  2787. msgstr "Desabilitar Gráfico"
  2788. #: flatcamGUI/FlatCAMGUI.py:522
  2789. msgid "Generate CNC"
  2790. msgstr "Gerar CNC"
  2791. #: flatcamGUI/FlatCAMGUI.py:523
  2792. msgid "View Source"
  2793. msgstr "Ver Fonte"
  2794. #: flatcamGUI/FlatCAMGUI.py:525 flatcamGUI/FlatCAMGUI.py:1617
  2795. msgid "Edit"
  2796. msgstr "Editar"
  2797. #: flatcamGUI/FlatCAMGUI.py:531 flatcamGUI/FlatCAMGUI.py:1623 flatcamTools/ToolProperties.py:25
  2798. msgid "Properties"
  2799. msgstr "Propriedades"
  2800. #: flatcamGUI/FlatCAMGUI.py:560
  2801. msgid "File Toolbar"
  2802. msgstr "Barra de Ferramentas de Arquivos"
  2803. #: flatcamGUI/FlatCAMGUI.py:564
  2804. msgid "Edit Toolbar"
  2805. msgstr "Barra de Ferramentas Editar"
  2806. #: flatcamGUI/FlatCAMGUI.py:568
  2807. msgid "View Toolbar"
  2808. msgstr "Barra de Ferramentas Ver"
  2809. #: flatcamGUI/FlatCAMGUI.py:572
  2810. msgid "Shell Toolbar"
  2811. msgstr "Barra de Ferramentas Shell"
  2812. #: flatcamGUI/FlatCAMGUI.py:576
  2813. msgid "Tools Toolbar"
  2814. msgstr "Barra de Ferramentas Ferramentas"
  2815. #: flatcamGUI/FlatCAMGUI.py:580
  2816. msgid "Excellon Editor Toolbar"
  2817. msgstr "Barra de Ferramentas Editor Excellon"
  2818. #: flatcamGUI/FlatCAMGUI.py:584
  2819. msgid "Geometry Editor Toolbar"
  2820. msgstr "Barra de Ferramentas Editor de Geometria"
  2821. #: flatcamGUI/FlatCAMGUI.py:588
  2822. msgid "Gerber Editor Toolbar"
  2823. msgstr "Barra de Ferramentas Editor Gerber"
  2824. #: flatcamGUI/FlatCAMGUI.py:592
  2825. msgid "Grid Toolbar"
  2826. msgstr "Barra de Ferramentas Grid"
  2827. #: flatcamGUI/FlatCAMGUI.py:611 flatcamGUI/FlatCAMGUI.py:1835
  2828. msgid "Open project"
  2829. msgstr "Abrir projeto"
  2830. #: flatcamGUI/FlatCAMGUI.py:612 flatcamGUI/FlatCAMGUI.py:1836
  2831. msgid "Save project"
  2832. msgstr "Salvar projeto"
  2833. #: flatcamGUI/FlatCAMGUI.py:615 flatcamGUI/FlatCAMGUI.py:1839
  2834. msgid "New Blank Geometry"
  2835. msgstr "Nova geometria em branco"
  2836. #: flatcamGUI/FlatCAMGUI.py:616
  2837. msgid "New Blank Gerber"
  2838. msgstr "Gerber novo em branco"
  2839. #: flatcamGUI/FlatCAMGUI.py:617 flatcamGUI/FlatCAMGUI.py:1840
  2840. msgid "New Blank Excellon"
  2841. msgstr "Novo Excellon em branco"
  2842. #: flatcamGUI/FlatCAMGUI.py:619 flatcamGUI/FlatCAMGUI.py:1842
  2843. msgid "Editor"
  2844. msgstr "Editor"
  2845. #: flatcamGUI/FlatCAMGUI.py:621 flatcamGUI/FlatCAMGUI.py:1844
  2846. msgid "Save Object and close the Editor"
  2847. msgstr "Salvar objeto e fechar o editor"
  2848. #: flatcamGUI/FlatCAMGUI.py:625 flatcamGUI/FlatCAMGUI.py:1848
  2849. msgid "&Delete"
  2850. msgstr "&Excluir"
  2851. #: flatcamGUI/FlatCAMGUI.py:628 flatcamGUI/FlatCAMGUI.py:1851
  2852. msgid "&Replot"
  2853. msgstr "&Redesenhar"
  2854. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1852
  2855. msgid "&Clear plot"
  2856. msgstr "&Limpar gráfico"
  2857. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1853
  2858. msgid "Zoom In"
  2859. msgstr "Zoom +"
  2860. #: flatcamGUI/FlatCAMGUI.py:631 flatcamGUI/FlatCAMGUI.py:1854
  2861. msgid "Zoom Out"
  2862. msgstr "Zoom -"
  2863. #: flatcamGUI/FlatCAMGUI.py:632 flatcamGUI/FlatCAMGUI.py:1592 flatcamGUI/FlatCAMGUI.py:1855
  2864. msgid "Zoom Fit"
  2865. msgstr "Zoom Fit"
  2866. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1860
  2867. msgid "&Command Line"
  2868. msgstr "Linha de &Comando"
  2869. #: flatcamGUI/FlatCAMGUI.py:640 flatcamGUI/FlatCAMGUI.py:1863
  2870. msgid "2Sided Tool"
  2871. msgstr "Ferramenta de 2 Faces"
  2872. #: flatcamGUI/FlatCAMGUI.py:641 flatcamGUI/FlatCAMGUI.py:1864
  2873. msgid "&Cutout Tool"
  2874. msgstr "Ferramenta de &Corte"
  2875. #: flatcamGUI/FlatCAMGUI.py:642 flatcamGUI/FlatCAMGUI.py:1865 flatcamGUI/ObjectUI.py:392 flatcamTools/ToolNonCopperClear.py:285
  2876. msgid "NCC Tool"
  2877. msgstr "Ferramenta NCC"
  2878. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1869
  2879. msgid "Panel Tool"
  2880. msgstr "Ferramenta de Painel"
  2881. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1870 flatcamTools/ToolFilm.py:204
  2882. msgid "Film Tool"
  2883. msgstr "Ferramenta de Filme"
  2884. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1872 flatcamTools/ToolSolderPaste.py:451
  2885. msgid "SolderPaste Tool"
  2886. msgstr "Ferramenta SolderPaste"
  2887. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1873 flatcamTools/ToolSub.py:26
  2888. msgid "Substract Tool"
  2889. msgstr "Ferramenta Substrato"
  2890. #: flatcamGUI/FlatCAMGUI.py:653 flatcamGUI/FlatCAMGUI.py:1878
  2891. msgid "Calculators Tool"
  2892. msgstr "Ferramenta de Calculadoras"
  2893. #: flatcamGUI/FlatCAMGUI.py:657 flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:1882 flatcamGUI/FlatCAMGUI.py:1934
  2894. msgid "Select"
  2895. msgstr "Selecione"
  2896. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:1883
  2897. msgid "Add Drill Hole"
  2898. msgstr "Adicionar Furo"
  2899. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:1885
  2900. msgid "Add Drill Hole Array"
  2901. msgstr "Adicionar Matriz do Furos"
  2902. #: flatcamGUI/FlatCAMGUI.py:661 flatcamGUI/FlatCAMGUI.py:1886
  2903. msgid "Resize Drill"
  2904. msgstr "Redimensionar Broca"
  2905. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:1889
  2906. msgid "Copy Drill"
  2907. msgstr "Copiar Broca"
  2908. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:1891
  2909. msgid "Delete Drill"
  2910. msgstr "Excluir Broca"
  2911. #: flatcamGUI/FlatCAMGUI.py:668 flatcamGUI/FlatCAMGUI.py:1894
  2912. msgid "Move Drill"
  2913. msgstr "Mover Broca"
  2914. #: flatcamGUI/FlatCAMGUI.py:672 flatcamGUI/FlatCAMGUI.py:1898
  2915. msgid "Add Circle"
  2916. msgstr "Adicionar Círculo"
  2917. #: flatcamGUI/FlatCAMGUI.py:673 flatcamGUI/FlatCAMGUI.py:1899
  2918. msgid "Add Arc"
  2919. msgstr "Adicionar Arco"
  2920. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:1901
  2921. msgid "Add Rectangle"
  2922. msgstr "Adicionar Retângulo"
  2923. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:1904
  2924. msgid "Add Path"
  2925. msgstr "Adicionar Caminho"
  2926. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1906
  2927. msgid "Add Polygon"
  2928. msgstr "Adicionar Polígono"
  2929. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1908
  2930. msgid "Add Text"
  2931. msgstr "Adicione Texto"
  2932. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1910
  2933. msgid "Add Buffer"
  2934. msgstr "Adicionar Buffer"
  2935. #: flatcamGUI/FlatCAMGUI.py:683 flatcamGUI/FlatCAMGUI.py:1911
  2936. msgid "Paint Shape"
  2937. msgstr "Pintar Forma"
  2938. #: flatcamGUI/FlatCAMGUI.py:684 flatcamGUI/FlatCAMGUI.py:719 flatcamGUI/FlatCAMGUI.py:1912 flatcamGUI/FlatCAMGUI.py:1948
  2939. msgid "Eraser"
  2940. msgstr "Apagador"
  2941. #: flatcamGUI/FlatCAMGUI.py:687 flatcamGUI/FlatCAMGUI.py:1916
  2942. msgid "Polygon Union"
  2943. msgstr "União de Polígonos"
  2944. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:1918
  2945. msgid "Polygon Intersection"
  2946. msgstr "Interseção de Polígonos"
  2947. #: flatcamGUI/FlatCAMGUI.py:691 flatcamGUI/FlatCAMGUI.py:1920
  2948. msgid "Polygon Subtraction"
  2949. msgstr "Subtração de Polígonos"
  2950. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:1923
  2951. msgid "Cut Path"
  2952. msgstr "Caminho de Corte"
  2953. #: flatcamGUI/FlatCAMGUI.py:695
  2954. msgid "Copy Shape(s)"
  2955. msgstr "Copiar Forma(s)"
  2956. #: flatcamGUI/FlatCAMGUI.py:698
  2957. msgid "Delete Shape '-'"
  2958. msgstr "Excluir Forma '-'"
  2959. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:1928 flatcamGUI/FlatCAMGUI.py:1955
  2960. msgid "Transformations"
  2961. msgstr "Transformações"
  2962. #: flatcamGUI/FlatCAMGUI.py:702
  2963. msgid "Move Objects "
  2964. msgstr "Mover Objetos "
  2965. #: flatcamGUI/FlatCAMGUI.py:706 flatcamGUI/FlatCAMGUI.py:1935
  2966. msgid "Add Pad"
  2967. msgstr "Adicionar Pad"
  2968. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:1937
  2969. msgid "Add Track"
  2970. msgstr "Adicionar Trilha"
  2971. #: flatcamGUI/FlatCAMGUI.py:709 flatcamGUI/FlatCAMGUI.py:1938
  2972. msgid "Add Region"
  2973. msgstr "Adicionar Região"
  2974. #: flatcamGUI/FlatCAMGUI.py:711 flatcamGUI/FlatCAMGUI.py:1940
  2975. msgid "Poligonize"
  2976. msgstr "Poligonizar"
  2977. #: flatcamGUI/FlatCAMGUI.py:713 flatcamGUI/FlatCAMGUI.py:1942
  2978. msgid "SemiDisc"
  2979. msgstr "SemiDisc"
  2980. #: flatcamGUI/FlatCAMGUI.py:714 flatcamGUI/FlatCAMGUI.py:1943
  2981. msgid "Disc"
  2982. msgstr "Disco"
  2983. #: flatcamGUI/FlatCAMGUI.py:728 flatcamGUI/FlatCAMGUI.py:1602 flatcamGUI/FlatCAMGUI.py:1622 flatcamGUI/FlatCAMGUI.py:1957 flatcamTools/ToolMove.py:26
  2984. msgid "Move"
  2985. msgstr "Mover"
  2986. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1963
  2987. msgid "Snap to grid"
  2988. msgstr "Encaixar na Grade"
  2989. #: flatcamGUI/FlatCAMGUI.py:737 flatcamGUI/FlatCAMGUI.py:1966
  2990. msgid "Grid X snapping distance"
  2991. msgstr "Grade X distância de encaixe"
  2992. #: flatcamGUI/FlatCAMGUI.py:742 flatcamGUI/FlatCAMGUI.py:1971
  2993. msgid "Grid Y snapping distance"
  2994. msgstr "Grade Y distância de encaixe"
  2995. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1977
  2996. msgid ""
  2997. "When active, value on Grid_X\n"
  2998. "is copied to the Grid_Y value."
  2999. msgstr ""
  3000. "Quando ativo, o valor em Grid_X\n"
  3001. "é copiado para o valor Grid_Y."
  3002. #: flatcamGUI/FlatCAMGUI.py:754 flatcamGUI/FlatCAMGUI.py:1983
  3003. msgid "Snap to corner"
  3004. msgstr "Encaixar no canto"
  3005. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:1987 flatcamGUI/FlatCAMGUI.py:3344
  3006. msgid "Max. magnet distance"
  3007. msgstr "Max. distância magnética"
  3008. #: flatcamGUI/FlatCAMGUI.py:786 flatcamGUI/FlatCAMGUI.py:1586
  3009. msgid "Project"
  3010. msgstr "Projeto"
  3011. #: flatcamGUI/FlatCAMGUI.py:796
  3012. msgid "Selected"
  3013. msgstr "Selecionado"
  3014. #: flatcamGUI/FlatCAMGUI.py:815 flatcamGUI/FlatCAMGUI.py:823
  3015. msgid "Plot Area"
  3016. msgstr "Área de Gráfico"
  3017. #: flatcamGUI/FlatCAMGUI.py:847
  3018. msgid "General"
  3019. msgstr "Geral"
  3020. #: flatcamGUI/FlatCAMGUI.py:856
  3021. msgid "APP. DEFAULTS"
  3022. msgstr "PADRÕES APP."
  3023. #: flatcamGUI/FlatCAMGUI.py:857
  3024. msgid "PROJ. OPTIONS "
  3025. msgstr "OPÇÕES PROJ."
  3026. #: flatcamGUI/FlatCAMGUI.py:868
  3027. msgid "GERBER"
  3028. msgstr "GERBER"
  3029. #: flatcamGUI/FlatCAMGUI.py:877
  3030. msgid "EXCELLON"
  3031. msgstr "EXCELLON"
  3032. #: flatcamGUI/FlatCAMGUI.py:886
  3033. msgid "GEOMETRY"
  3034. msgstr "GEOMETRIA"
  3035. #: flatcamGUI/FlatCAMGUI.py:896
  3036. msgid "CNC-JOB"
  3037. msgstr "TRABALHO CNC"
  3038. #: flatcamGUI/FlatCAMGUI.py:905
  3039. msgid "TOOLS"
  3040. msgstr "FERRAMENTAS"
  3041. #: flatcamGUI/FlatCAMGUI.py:922
  3042. msgid "Import Preferences"
  3043. msgstr "Importar Preferências"
  3044. #: flatcamGUI/FlatCAMGUI.py:925
  3045. msgid ""
  3046. "Import a full set of FlatCAM settings from a file\n"
  3047. "previously saved on HDD.\n"
  3048. "\n"
  3049. "FlatCAM automatically save a 'factory_defaults' file\n"
  3050. "on the first start. Do not delete that file."
  3051. msgstr ""
  3052. "Importa um conjunto completo de configurações do FlatCAM de um arquivo\n"
  3053. "previamente salvo no HDD.\n"
  3054. "\n"
  3055. "FlatCAM salva automaticamente o arquivo 'factory_defaults'\n"
  3056. "na primeira inicialização. Não exclua esse arquivo."
  3057. #: flatcamGUI/FlatCAMGUI.py:932
  3058. msgid "Export Preferences"
  3059. msgstr "Exportar Preferências"
  3060. #: flatcamGUI/FlatCAMGUI.py:935
  3061. msgid ""
  3062. "Export a full set of FlatCAM settings in a file\n"
  3063. "that is saved on HDD."
  3064. msgstr ""
  3065. "Exporta um conjunto completo de configurações do FlatCAM em um arquivo\n"
  3066. "salvo no HDD."
  3067. #: flatcamGUI/FlatCAMGUI.py:940
  3068. msgid "Open Pref Folder"
  3069. msgstr "Abrir a Pasta Pref"
  3070. #: flatcamGUI/FlatCAMGUI.py:943
  3071. msgid "Open the folder where FlatCAM save the preferences files."
  3072. msgstr "Abre a pasta onde o FlatCAM salva os arquivos de preferências."
  3073. #: flatcamGUI/FlatCAMGUI.py:951
  3074. msgid "Save Preferences"
  3075. msgstr "Salvar Preferências"
  3076. #: flatcamGUI/FlatCAMGUI.py:954
  3077. msgid ""
  3078. "Save the current settings in the 'current_defaults' file\n"
  3079. "which is the file storing the working default preferences."
  3080. msgstr ""
  3081. "Salve as configurações atuais no arquivo 'current_defaults'\n"
  3082. "que armazena as preferências padrão de trabalho."
  3083. #: flatcamGUI/FlatCAMGUI.py:980
  3084. msgid ""
  3085. "<b>General Shortcut list</b><br>\n"
  3086. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  3087. " <tbody>\n"
  3088. " <tr height=\"20\">\n"
  3089. " <td height=\"20\" width=\"89\"><strong>F3</strong></td>\n"
  3090. " <td width=\"194\"><span style=\"color:#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  3091. " </tr>\n"
  3092. " <tr height=\"20\">\n"
  3093. " <td height=\"20\">&nbsp;</td>\n"
  3094. " <td>&nbsp;</td>\n"
  3095. " </tr>\n"
  3096. " <tr height=\"20\">\n"
  3097. " <td height=\"20\"><strong>1</strong></td>\n"
  3098. " <td>&nbsp;Switch to Project Tab</td>\n"
  3099. " </tr>\n"
  3100. " <tr height=\"20\">\n"
  3101. " <td height=\"20\"><strong>2</strong></td>\n"
  3102. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3103. " </tr>\n"
  3104. " <tr height=\"20\">\n"
  3105. " <td height=\"20\"><strong>3</strong></td>\n"
  3106. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3107. " </tr>\n"
  3108. " <tr height=\"20\">\n"
  3109. " <td height=\"20\">&nbsp;</td>\n"
  3110. " <td>&nbsp;</td>\n"
  3111. " </tr>\n"
  3112. " <tr height=\"20\">\n"
  3113. " <td height=\"20\"><strong>B</strong></td>\n"
  3114. " <td>&nbsp;New Gerber</td>\n"
  3115. " </tr>\n"
  3116. " <tr height=\"20\">\n"
  3117. " <td height=\"20\"><strong>E</strong></td>\n"
  3118. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3119. " </tr>\n"
  3120. " <tr height=\"20\">\n"
  3121. " <td height=\"20\"><strong>G</strong></td>\n"
  3122. " <td>&nbsp;Grid On/Off</td>\n"
  3123. " </tr>\n"
  3124. " <tr height=\"20\">\n"
  3125. " <td height=\"20\"><strong>J</strong></td>\n"
  3126. " <td>&nbsp;Jump to Coordinates</td>\n"
  3127. " </tr>\n"
  3128. " <tr height=\"20\">\n"
  3129. " <td height=\"20\"><strong>L</strong></td>\n"
  3130. " <td>&nbsp;New Excellon</td>\n"
  3131. " </tr>\n"
  3132. " <tr height=\"20\">\n"
  3133. " <td height=\"20\"><strong>M</strong></td>\n"
  3134. " <td>&nbsp;Move Obj</td>\n"
  3135. " </tr>\n"
  3136. " <tr height=\"20\">\n"
  3137. " <td height=\"20\"><strong>N</strong></td>\n"
  3138. " <td>&nbsp;New Geometry</td>\n"
  3139. " </tr>\n"
  3140. " <tr height=\"20\">\n"
  3141. " <td height=\"20\"><strong>O</strong></td>\n"
  3142. " <td>&nbsp;Set Origin</td>\n"
  3143. " </tr>\n"
  3144. " <tr height=\"20\">\n"
  3145. " <td height=\"20\"><strong>Q</strong></td>\n"
  3146. " <td>&nbsp;Change Units</td>\n"
  3147. " </tr>\n"
  3148. " <tr height=\"20\">\n"
  3149. " <td height=\"20\"><strong>P</strong></td>\n"
  3150. " <td>&nbsp;Open Properties Tool</td>\n"
  3151. " </tr>\n"
  3152. " <tr height=\"20\">\n"
  3153. " <td height=\"20\"><strong>R</strong></td>\n"
  3154. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3155. " </tr>\n"
  3156. " <tr height=\"20\">\n"
  3157. " <td height=\"20\"><strong>S</strong></td>\n"
  3158. " <td>&nbsp;Shell Toggle</td>\n"
  3159. " </tr>\n"
  3160. " <tr height=\"20\">\n"
  3161. " <td height=\"20\"><strong>T</strong></td>\n"
  3162. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)</td>\n"
  3163. " </tr>\n"
  3164. " <tr height=\"20\">\n"
  3165. " <td height=\"20\"><strong>V</strong></td>\n"
  3166. " <td>&nbsp;Zoom Fit</td>\n"
  3167. " </tr>\n"
  3168. " <tr height=\"20\">\n"
  3169. " <td height=\"20\"><strong>X</strong></td>\n"
  3170. " <td>&nbsp;Flip on X_axis</td>\n"
  3171. " </tr>\n"
  3172. " <tr height=\"20\">\n"
  3173. " <td height=\"20\"><strong>Y</strong></td>\n"
  3174. " <td>&nbsp;Flip on Y_axis</td>\n"
  3175. " </tr>\n"
  3176. " <tr height=\"20\">\n"
  3177. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3178. " <td>&nbsp;Zoom Out</td>\n"
  3179. " </tr>\n"
  3180. " <tr height=\"20\">\n"
  3181. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3182. " <td>&nbsp;Zoom In</td>\n"
  3183. " </tr>\n"
  3184. " <tr height=\"20\">\n"
  3185. " <td height=\"20\">&nbsp;</td>\n"
  3186. " <td>&nbsp;</td>\n"
  3187. " </tr>\n"
  3188. " <tr height=\"20\">\n"
  3189. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3190. " <td>&nbsp;Select All</td>\n"
  3191. " </tr>\n"
  3192. " <tr height=\"20\">\n"
  3193. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3194. " <td>&nbsp;Copy Obj</td>\n"
  3195. " </tr>\n"
  3196. " <tr height=\"20\">\n"
  3197. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3198. " <td>&nbsp;Open Excellon File</td>\n"
  3199. " </tr>\n"
  3200. " <tr height=\"20\">\n"
  3201. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3202. " <td>&nbsp;Open Gerber File</td>\n"
  3203. " </tr>\n"
  3204. " <tr height=\"20\">\n"
  3205. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3206. " <td>&nbsp;New Project</td>\n"
  3207. " </tr>\n"
  3208. " <tr height=\"20\">\n"
  3209. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3210. " <td>&nbsp;Measurement Tool</td>\n"
  3211. " </tr>\n"
  3212. " <tr height=\"20\">\n"
  3213. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3214. " <td>&nbsp;Open Project</td>\n"
  3215. " </tr>\n"
  3216. " <tr height=\"20\">\n"
  3217. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3218. " <td>&nbsp;Save Project As</td>\n"
  3219. " </tr>\n"
  3220. " <tr height=\"20\">\n"
  3221. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3222. " <td>&nbsp;Toggle Plot Area</td>\n"
  3223. " </tr>\n"
  3224. " <tr height=\"20\">\n"
  3225. " <td height=\"20\">&nbsp;</td>\n"
  3226. " <td>&nbsp;</td>\n"
  3227. " </tr>\n"
  3228. " <tr height=\"20\">\n"
  3229. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3230. " <td>&nbsp;Copy Obj_Name</td>\n"
  3231. " </tr>\n"
  3232. " <tr height=\"20\">\n"
  3233. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3234. " <td>&nbsp;Toggle Code Editor</td>\n"
  3235. " </tr>\n"
  3236. " <tr height=\"20\">\n"
  3237. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3238. " <td>&nbsp;Toggle the axis</td>\n"
  3239. " </tr>\n"
  3240. " <tr height=\"20\">\n"
  3241. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3242. " <td>&nbsp;Open Preferences Window</td>\n"
  3243. " </tr>\n"
  3244. " <tr height=\"20\">\n"
  3245. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3246. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3247. " </tr>\n"
  3248. " <tr height=\"20\">\n"
  3249. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3250. " <td>&nbsp;Run a Script</td>\n"
  3251. " </tr>\n"
  3252. " <tr height=\"20\">\n"
  3253. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3254. " <td>&nbsp;Toggle the workspace</td>\n"
  3255. " </tr>\n"
  3256. " <tr height=\"20\">\n"
  3257. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3258. " <td>&nbsp;Skew on X axis</td>\n"
  3259. " </tr>\n"
  3260. " <tr height=\"20\">\n"
  3261. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3262. " <td>&nbsp;Skew on Y axis</td>\n"
  3263. " </tr>\n"
  3264. " <tr height=\"20\">\n"
  3265. " <td height=\"20\">&nbsp;</td>\n"
  3266. " <td>&nbsp;</td>\n"
  3267. " </tr>\n"
  3268. " <tr height=\"20\">\n"
  3269. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3270. " <td>&nbsp;Calculators Tool</td>\n"
  3271. " </tr>\n"
  3272. " <tr height=\"20\">\n"
  3273. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3274. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3275. " </tr>\n"
  3276. " <tr height=\"20\">\n"
  3277. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3278. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3279. " </tr>\n"
  3280. " <tr height=\"20\">\n"
  3281. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3282. " <td>&nbsp;Film PCB Tool</td>\n"
  3283. " </tr>\n"
  3284. " <tr height=\"20\">\n"
  3285. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3286. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3287. " </tr>\n"
  3288. " <tr height=\"20\">\n"
  3289. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3290. " <td>&nbsp;Paint Area Tool</td>\n"
  3291. " </tr>\n"
  3292. " <tr height=\"20\">\n"
  3293. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  3294. " <td>&nbsp;PDF Import Tool</td>\n"
  3295. " </tr>\n"
  3296. " <tr height=\"20\">\n"
  3297. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3298. " <td>&nbsp;Transformations Tool</td>\n"
  3299. " </tr>\n"
  3300. " <tr height=\"20\">\n"
  3301. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3302. " <td>&nbsp;View File Source</td>\n"
  3303. " </tr>\n"
  3304. " <tr height=\"20\">\n"
  3305. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3306. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3307. " </tr>\n"
  3308. " <tr height=\"20\">\n"
  3309. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3310. " <td>&nbsp;Enable all Plots</td>\n"
  3311. " </tr>\n"
  3312. " <tr height=\"20\">\n"
  3313. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3314. " <td>&nbsp;Disable all Plots</td>\n"
  3315. " </tr>\n"
  3316. " <tr height=\"20\">\n"
  3317. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3318. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3319. " </tr>\n"
  3320. " <tr height=\"20\">\n"
  3321. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3322. " <td>&nbsp;Toggle Full Screen</td>\n"
  3323. " </tr>\n"
  3324. " <tr height=\"20\">\n"
  3325. " <td height=\"20\">&nbsp;</td>\n"
  3326. " <td>&nbsp;</td>\n"
  3327. " </tr>\n"
  3328. " <tr height=\"20\">\n"
  3329. " <td height=\"20\"><strong>F1</strong></td>\n"
  3330. " <td>&nbsp;Open Online Manual</td>\n"
  3331. " </tr>\n"
  3332. " <tr height=\"20\">\n"
  3333. " <td height=\"20\"><strong>F4</strong></td>\n"
  3334. " <td>&nbsp;Open Online Tutorials</td>\n"
  3335. " </tr>\n"
  3336. " <tr height=\"20\">\n"
  3337. " <td height=\"20\"><strong>Del</strong></td>\n"
  3338. " <td>&nbsp;Delete Object</td>\n"
  3339. " </tr>\n"
  3340. " <tr height=\"20\">\n"
  3341. " <td height=\"20\"><strong>Del</strong></td>\n"
  3342. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3343. " </tr>\n"
  3344. " <tr height=\"20\">\n"
  3345. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3346. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left Side)</td>\n"
  3347. " </tr>\n"
  3348. " <tr height=\"20\">\n"
  3349. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3350. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3351. " </tr>\n"
  3352. " <tr height=\"20\">\n"
  3353. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3354. " <td>&nbsp;Deselects all objects</td>\n"
  3355. " </tr>\n"
  3356. " </tbody>\n"
  3357. " </table>\n"
  3358. " \n"
  3359. " "
  3360. msgstr ""
  3361. "<b>Lista de Atalhos Gerais</b><br>\n"
  3362. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  3363. " <tbody>\n"
  3364. " <tr height=\"20\">\n"
  3365. " <td height=\"20\" width=\"89\"><strong>F3</strong></td>\n"
  3366. " <td width=\"194\"><span style=\"color:#006400\"><strong>&nbsp;MOSTRA LISTA DE ATALHOS</strong></span></td>\n"
  3367. " </tr>\n"
  3368. " <tr height=\"20\">\n"
  3369. " <td height=\"20\">&nbsp;</td>\n"
  3370. " <td>&nbsp;</td>\n"
  3371. " </tr>\n"
  3372. " <tr height=\"20\">\n"
  3373. " <td height=\"20\"><strong>1</strong></td>\n"
  3374. " <td>&nbsp;Switch to Project Tab</td>\n"
  3375. " </tr>\n"
  3376. " <tr height=\"20\">\n"
  3377. " <td height=\"20\"><strong>2</strong></td>\n"
  3378. " <td>&nbsp;Switch to Selected Tab</td>\n"
  3379. " </tr>\n"
  3380. " <tr height=\"20\">\n"
  3381. " <td height=\"20\"><strong>3</strong></td>\n"
  3382. " <td>&nbsp;Switch to Tool Tab</td>\n"
  3383. " </tr>\n"
  3384. " <tr height=\"20\">\n"
  3385. " <td height=\"20\">&nbsp;</td>\n"
  3386. " <td>&nbsp;</td>\n"
  3387. " </tr>\n"
  3388. " <tr height=\"20\">\n"
  3389. " <td height=\"20\"><strong>B</strong></td>\n"
  3390. " <td>&nbsp;New Gerber</td>\n"
  3391. " </tr>\n"
  3392. " <tr height=\"20\">\n"
  3393. " <td height=\"20\"><strong>E</strong></td>\n"
  3394. " <td>&nbsp;Edit Object (if selected)</td>\n"
  3395. " </tr>\n"
  3396. " <tr height=\"20\">\n"
  3397. " <td height=\"20\"><strong>G</strong></td>\n"
  3398. " <td>&nbsp;Grid On/Off</td>\n"
  3399. " </tr>\n"
  3400. " <tr height=\"20\">\n"
  3401. " <td height=\"20\"><strong>J</strong></td>\n"
  3402. " <td>&nbsp;Jump to Coordinates</td>\n"
  3403. " </tr>\n"
  3404. " <tr height=\"20\">\n"
  3405. " <td height=\"20\"><strong>L</strong></td>\n"
  3406. " <td>&nbsp;New Excellon</td>\n"
  3407. " </tr>\n"
  3408. " <tr height=\"20\">\n"
  3409. " <td height=\"20\"><strong>M</strong></td>\n"
  3410. " <td>&nbsp;Move Obj</td>\n"
  3411. " </tr>\n"
  3412. " <tr height=\"20\">\n"
  3413. " <td height=\"20\"><strong>N</strong></td>\n"
  3414. " <td>&nbsp;New Geometry</td>\n"
  3415. " </tr>\n"
  3416. " <tr height=\"20\">\n"
  3417. " <td height=\"20\"><strong>O</strong></td>\n"
  3418. " <td>&nbsp;Set Origin</td>\n"
  3419. " </tr>\n"
  3420. " <tr height=\"20\">\n"
  3421. " <td height=\"20\"><strong>Q</strong></td>\n"
  3422. " <td>&nbsp;Change Units</td>\n"
  3423. " </tr>\n"
  3424. " <tr height=\"20\">\n"
  3425. " <td height=\"20\"><strong>P</strong></td>\n"
  3426. " <td>&nbsp;Open Properties Tool</td>\n"
  3427. " </tr>\n"
  3428. " <tr height=\"20\">\n"
  3429. " <td height=\"20\"><strong>R</strong></td>\n"
  3430. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  3431. " </tr>\n"
  3432. " <tr height=\"20\">\n"
  3433. " <td height=\"20\"><strong>S</strong></td>\n"
  3434. " <td>&nbsp;Shell Toggle</td>\n"
  3435. " </tr>\n"
  3436. " <tr height=\"20\">\n"
  3437. " <td height=\"20\"><strong>T</strong></td>\n"
  3438. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab or in Tools NCC or Tools Paint)</td>\n"
  3439. " </tr>\n"
  3440. " <tr height=\"20\">\n"
  3441. " <td height=\"20\"><strong>V</strong></td>\n"
  3442. " <td>&nbsp;Zoom Fit</td>\n"
  3443. " </tr>\n"
  3444. " <tr height=\"20\">\n"
  3445. " <td height=\"20\"><strong>X</strong></td>\n"
  3446. " <td>&nbsp;Flip on X_axis</td>\n"
  3447. " </tr>\n"
  3448. " <tr height=\"20\">\n"
  3449. " <td height=\"20\"><strong>Y</strong></td>\n"
  3450. " <td>&nbsp;Flip on Y_axis</td>\n"
  3451. " </tr>\n"
  3452. " <tr height=\"20\">\n"
  3453. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  3454. " <td>&nbsp;Zoom Out</td>\n"
  3455. " </tr>\n"
  3456. " <tr height=\"20\">\n"
  3457. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  3458. " <td>&nbsp;Zoom In</td>\n"
  3459. " </tr>\n"
  3460. " <tr height=\"20\">\n"
  3461. " <td height=\"20\">&nbsp;</td>\n"
  3462. " <td>&nbsp;</td>\n"
  3463. " </tr>\n"
  3464. " <tr height=\"20\">\n"
  3465. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  3466. " <td>&nbsp;Select All</td>\n"
  3467. " </tr>\n"
  3468. " <tr height=\"20\">\n"
  3469. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  3470. " <td>&nbsp;Copy Obj</td>\n"
  3471. " </tr>\n"
  3472. " <tr height=\"20\">\n"
  3473. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  3474. " <td>&nbsp;Open Excellon File</td>\n"
  3475. " </tr>\n"
  3476. " <tr height=\"20\">\n"
  3477. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  3478. " <td>&nbsp;Open Gerber File</td>\n"
  3479. " </tr>\n"
  3480. " <tr height=\"20\">\n"
  3481. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  3482. " <td>&nbsp;New Project</td>\n"
  3483. " </tr>\n"
  3484. " <tr height=\"20\">\n"
  3485. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3486. " <td>&nbsp;Measurement Tool</td>\n"
  3487. " </tr>\n"
  3488. " <tr height=\"20\">\n"
  3489. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  3490. " <td>&nbsp;Open Project</td>\n"
  3491. " </tr>\n"
  3492. " <tr height=\"20\">\n"
  3493. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3494. " <td>&nbsp;Save Project As</td>\n"
  3495. " </tr>\n"
  3496. " <tr height=\"20\">\n"
  3497. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  3498. " <td>&nbsp;Toggle Plot Area</td>\n"
  3499. " </tr>\n"
  3500. " <tr height=\"20\">\n"
  3501. " <td height=\"20\">&nbsp;</td>\n"
  3502. " <td>&nbsp;</td>\n"
  3503. " </tr>\n"
  3504. " <tr height=\"20\">\n"
  3505. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  3506. " <td>&nbsp;Copy Obj_Name</td>\n"
  3507. " </tr>\n"
  3508. " <tr height=\"20\">\n"
  3509. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  3510. " <td>&nbsp;Toggle Code Editor</td>\n"
  3511. " </tr>\n"
  3512. " <tr height=\"20\">\n"
  3513. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  3514. " <td>&nbsp;Toggle the axis</td>\n"
  3515. " </tr>\n"
  3516. " <tr height=\"20\">\n"
  3517. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  3518. " <td>&nbsp;Open Preferences Window</td>\n"
  3519. " </tr>\n"
  3520. " <tr height=\"20\">\n"
  3521. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  3522. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  3523. " </tr>\n"
  3524. " <tr height=\"20\">\n"
  3525. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  3526. " <td>&nbsp;Run a Script</td>\n"
  3527. " </tr>\n"
  3528. " <tr height=\"20\">\n"
  3529. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  3530. " <td>&nbsp;Toggle the workspace</td>\n"
  3531. " </tr>\n"
  3532. " <tr height=\"20\">\n"
  3533. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3534. " <td>&nbsp;Skew on X axis</td>\n"
  3535. " </tr>\n"
  3536. " <tr height=\"20\">\n"
  3537. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3538. " <td>&nbsp;Skew on Y axis</td>\n"
  3539. " </tr>\n"
  3540. " <tr height=\"20\">\n"
  3541. " <td height=\"20\">&nbsp;</td>\n"
  3542. " <td>&nbsp;</td>\n"
  3543. " </tr>\n"
  3544. " <tr height=\"20\">\n"
  3545. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  3546. " <td>&nbsp;Calculators Tool</td>\n"
  3547. " </tr>\n"
  3548. " <tr height=\"20\">\n"
  3549. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  3550. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  3551. " </tr>\n"
  3552. " <tr height=\"20\">\n"
  3553. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  3554. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  3555. " </tr>\n"
  3556. " <tr height=\"20\">\n"
  3557. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  3558. " <td>&nbsp;Film PCB Tool</td>\n"
  3559. " </tr>\n"
  3560. " <tr height=\"20\">\n"
  3561. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  3562. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  3563. " </tr>\n"
  3564. " <tr height=\"20\">\n"
  3565. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  3566. " <td>&nbsp;Paint Area Tool</td>\n"
  3567. " </tr>\n"
  3568. " <tr height=\"20\">\n"
  3569. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  3570. " <td>&nbsp;PDF Import Tool</td>\n"
  3571. " </tr>\n"
  3572. " <tr height=\"20\">\n"
  3573. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3574. " <td>&nbsp;Transformations Tool</td>\n"
  3575. " </tr>\n"
  3576. " <tr height=\"20\">\n"
  3577. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  3578. " <td>&nbsp;View File Source</td>\n"
  3579. " </tr>\n"
  3580. " <tr height=\"20\">\n"
  3581. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  3582. " <td>&nbsp;Cutout PCB Tool</td>\n"
  3583. " </tr>\n"
  3584. " <tr height=\"20\">\n"
  3585. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  3586. " <td>&nbsp;Enable all Plots</td>\n"
  3587. " </tr>\n"
  3588. " <tr height=\"20\">\n"
  3589. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  3590. " <td>&nbsp;Disable all Plots</td>\n"
  3591. " </tr>\n"
  3592. " <tr height=\"20\">\n"
  3593. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  3594. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  3595. " </tr>\n"
  3596. " <tr height=\"20\">\n"
  3597. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  3598. " <td>&nbsp;Toggle Full Screen</td>\n"
  3599. " </tr>\n"
  3600. " <tr height=\"20\">\n"
  3601. " <td height=\"20\">&nbsp;</td>\n"
  3602. " <td>&nbsp;</td>\n"
  3603. " </tr>\n"
  3604. " <tr height=\"20\">\n"
  3605. " <td height=\"20\"><strong>F1</strong></td>\n"
  3606. " <td>&nbsp;Open Online Manual</td>\n"
  3607. " </tr>\n"
  3608. " <tr height=\"20\">\n"
  3609. " <td height=\"20\"><strong>F4</strong></td>\n"
  3610. " <td>&nbsp;Open Online Tutorials</td>\n"
  3611. " </tr>\n"
  3612. " <tr height=\"20\">\n"
  3613. " <td height=\"20\"><strong>Del</strong></td>\n"
  3614. " <td>&nbsp;Delete Object</td>\n"
  3615. " </tr>\n"
  3616. " <tr height=\"20\">\n"
  3617. " <td height=\"20\"><strong>Del</strong></td>\n"
  3618. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  3619. " </tr>\n"
  3620. " <tr height=\"20\">\n"
  3621. " <td height=\"20\"><strong>'`'</strong></td>\n"
  3622. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left Side)</td>\n"
  3623. " </tr>\n"
  3624. " <tr height=\"20\">\n"
  3625. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  3626. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  3627. " </tr>\n"
  3628. " <tr height=\"20\">\n"
  3629. " <td height=\"20\"><strong>Escape</strong></td>\n"
  3630. " <td>&nbsp;Deselects all objects</td>\n"
  3631. " </tr>\n"
  3632. " </tbody>\n"
  3633. " </table>\n"
  3634. " \n"
  3635. " "
  3636. #: flatcamGUI/FlatCAMGUI.py:1265
  3637. msgid ""
  3638. "<b>Editor Shortcut list</b><br>\n"
  3639. " <br>\n"
  3640. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></strong><br>\n"
  3641. " \n"
  3642. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  3643. " <tbody>\n"
  3644. " <tr height=\"20\">\n"
  3645. " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  3646. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3647. " </tr>\n"
  3648. " <tr height=\"20\">\n"
  3649. " <td height=\"20\"><strong>B</strong></td>\n"
  3650. " <td>&nbsp;Buffer Tool</td>\n"
  3651. " </tr>\n"
  3652. " <tr height=\"20\">\n"
  3653. " <td height=\"20\"><strong>C</strong></td>\n"
  3654. " <td>&nbsp;Copy Geo Item</td>\n"
  3655. " </tr>\n"
  3656. " <tr height=\"20\">\n"
  3657. " <td height=\"20\"><strong>D</strong></td>\n"
  3658. " <td>&nbsp;Within Add Arc will toogle the ARC direction: CW or CCW</td>\n"
  3659. " </tr>\n"
  3660. " <tr height=\"20\">\n"
  3661. " <td height=\"20\"><strong>E</strong></td>\n"
  3662. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3663. " </tr>\n"
  3664. " <tr height=\"20\">\n"
  3665. " <td height=\"20\"><strong>I</strong></td>\n"
  3666. " <td>&nbsp;Paint Tool</td>\n"
  3667. " </tr>\n"
  3668. " <tr height=\"20\">\n"
  3669. " <td height=\"20\"><strong>J</strong></td>\n"
  3670. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3671. " </tr>\n"
  3672. " <tr height=\"20\">\n"
  3673. " <td height=\"20\"><strong>K</strong></td>\n"
  3674. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3675. " </tr>\n"
  3676. " <tr height=\"20\">\n"
  3677. " <td height=\"20\"><strong>M</strong></td>\n"
  3678. " <td>&nbsp;Move Geo Item</td>\n"
  3679. " </tr>\n"
  3680. " <tr height=\"20\">\n"
  3681. " <td height=\"20\"><strong>M</strong></td>\n"
  3682. " <td>&nbsp;Within Add Arc will cycle through the ARC modes</td>\n"
  3683. " </tr>\n"
  3684. " <tr height=\"20\">\n"
  3685. " <td height=\"20\"><strong>N</strong></td>\n"
  3686. " <td>&nbsp;Draw a Polygon</td>\n"
  3687. " </tr>\n"
  3688. " <tr height=\"20\">\n"
  3689. " <td height=\"20\"><strong>O</strong></td>\n"
  3690. " <td>&nbsp;Draw a Circle</td>\n"
  3691. " </tr>\n"
  3692. " <tr height=\"20\">\n"
  3693. " <td height=\"20\"><strong>P</strong></td>\n"
  3694. " <td>&nbsp;Draw a Path</td>\n"
  3695. " </tr>\n"
  3696. " <tr height=\"20\">\n"
  3697. " <td height=\"20\"><strong>R</strong></td>\n"
  3698. " <td>&nbsp;Draw Rectangle</td>\n"
  3699. " </tr>\n"
  3700. " <tr height=\"20\">\n"
  3701. " <td height=\"20\"><strong>S</strong></td>\n"
  3702. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  3703. " </tr>\n"
  3704. " <tr height=\"20\">\n"
  3705. " <td height=\"20\"><strong>T</strong></td>\n"
  3706. " <td>&nbsp;Add Text Tool</td>\n"
  3707. " </tr>\n"
  3708. " <tr height=\"20\">\n"
  3709. " <td height=\"20\"><strong>U</strong></td>\n"
  3710. " <td>&nbsp;Polygon Union Tool</td>\n"
  3711. " </tr>\n"
  3712. " <tr height=\"20\">\n"
  3713. " <td height=\"20\"><strong>X</strong></td>\n"
  3714. " <td>&nbsp;Flip shape on X axis</td>\n"
  3715. " </tr>\n"
  3716. " <tr height=\"20\">\n"
  3717. " <td height=\"20\"><strong>Y</strong></td>\n"
  3718. " <td>&nbsp;Flip shape on Y axis</td>\n"
  3719. " </tr>\n"
  3720. " <tr height=\"20\">\n"
  3721. " <td height=\"20\">&nbsp;</td>\n"
  3722. " <td>&nbsp;</td>\n"
  3723. " </tr>\n"
  3724. " <tr height=\"20\">\n"
  3725. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  3726. " <td>&nbsp;Skew shape on X axis</td>\n"
  3727. " </tr>\n"
  3728. " <tr height=\"20\">\n"
  3729. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  3730. " <td>&nbsp;Skew shape on Y axis</td>\n"
  3731. " </tr>\n"
  3732. " <tr height=\"20\">\n"
  3733. " <td height=\"20\">&nbsp;</td>\n"
  3734. " <td>&nbsp;</td>\n"
  3735. " </tr>\n"
  3736. " <tr height=\"20\">\n"
  3737. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3738. " <td>&nbsp;Editor Transformation Tool</td>\n"
  3739. " </tr>\n"
  3740. " <tr height=\"20\">\n"
  3741. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  3742. " <td>&nbsp;Offset shape on X axis</td>\n"
  3743. " </tr>\n"
  3744. " <tr height=\"20\">\n"
  3745. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  3746. " <td>&nbsp;Offset shape on Y axis</td>\n"
  3747. " </tr>\n"
  3748. " <tr height=\"20\">\n"
  3749. " <td height=\"20\">&nbsp;</td>\n"
  3750. " <td>&nbsp;</td>\n"
  3751. " </tr>\n"
  3752. " <tr height=\"20\">\n"
  3753. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  3754. " <td>&nbsp;Measurement Tool</td>\n"
  3755. " </tr>\n"
  3756. " <tr height=\"20\">\n"
  3757. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3758. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3759. " </tr>\n"
  3760. " <tr height=\"20\">\n"
  3761. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  3762. " <td>&nbsp;Polygon Cut Tool</td>\n"
  3763. " </tr>\n"
  3764. " <tr height=\"20\">\n"
  3765. " <td height=\"20\">&nbsp;</td>\n"
  3766. " <td>&nbsp;</td>\n"
  3767. " </tr>\n"
  3768. " <tr height=\"20\">\n"
  3769. " <td height=\"20\"><strong>Space</strong></td>\n"
  3770. " <td>&nbsp;Rotate Geometry</td>\n"
  3771. " </tr>\n"
  3772. " <tr height=\"20\">\n"
  3773. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  3774. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  3775. " </tr>\n"
  3776. " <tr height=\"20\">\n"
  3777. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3778. " <td>&nbsp;Abort and return to Select</td>\n"
  3779. " </tr>\n"
  3780. " <tr height=\"20\">\n"
  3781. " <td height=\"20\"><strong>Del</strong></td>\n"
  3782. " <td>&nbsp;Delete Shape</td>\n"
  3783. " </tr>\n"
  3784. " </tbody>\n"
  3785. " </table>\n"
  3786. " <br>\n"
  3787. " <br>\n"
  3788. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></strong><br>\n"
  3789. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  3790. " <tbody>\n"
  3791. " <tr height=\"20\">\n"
  3792. " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  3793. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  3794. " </tr>\n"
  3795. " <tr height=\"20\">\n"
  3796. " <td height=\"20\"><strong>C</strong></td>\n"
  3797. " <td>&nbsp;Copy Drill(s)</td>\n"
  3798. " </tr>\n"
  3799. " <tr height=\"20\">\n"
  3800. " <td height=\"20\"><strong>D</strong></td>\n"
  3801. " <td>&nbsp;Add Drill</td>\n"
  3802. " </tr>\n"
  3803. " <tr height=\"20\">\n"
  3804. " <td height=\"20\"><strong>J</strong></td>\n"
  3805. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3806. " </tr>\n"
  3807. " <tr height=\"20\">\n"
  3808. " <td height=\"20\"><strong>M</strong></td>\n"
  3809. " <td>&nbsp;Move Drill(s)</td>\n"
  3810. " </tr>\n"
  3811. " <tr height=\"20\">\n"
  3812. " <td height=\"20\"><strong>R</strong></td>\n"
  3813. " <td>&nbsp;Resize Drill(s)</td>\n"
  3814. " </tr>\n"
  3815. " <tr height=\"20\">\n"
  3816. " <td height=\"20\"><strong>T</strong></td>\n"
  3817. " <td>&nbsp;Add a new Tool</td>\n"
  3818. " </tr>\n"
  3819. " <tr height=\"20\">\n"
  3820. " <td height=\"20\">&nbsp;</td>\n"
  3821. " <td>&nbsp;</td>\n"
  3822. " </tr>\n"
  3823. " <tr height=\"20\">\n"
  3824. " <td height=\"20\"><strong>Del</strong></td>\n"
  3825. " <td>&nbsp;Delete Drill(s)</td>\n"
  3826. " </tr>\n"
  3827. " <tr height=\"20\">\n"
  3828. " <td height=\"20\"><strong>Del</strong></td>\n"
  3829. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  3830. " </tr>\n"
  3831. " <tr height=\"20\">\n"
  3832. " <td height=\"20\">&nbsp;</td>\n"
  3833. " <td>&nbsp;</td>\n"
  3834. " </tr>\n"
  3835. " <tr height=\"20\">\n"
  3836. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3837. " <td>&nbsp;Abort and return to Select</td>\n"
  3838. " </tr>\n"
  3839. " <tr height=\"20\">\n"
  3840. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3841. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3842. " </tr>\n"
  3843. " </tbody>\n"
  3844. " </table>\n"
  3845. " <br>\n"
  3846. " <br>\n"
  3847. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></strong><br>\n"
  3848. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  3849. " <tbody>\n"
  3850. " <tr height=\"20\">\n"
  3851. " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  3852. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  3853. " </tr>\n"
  3854. " <tr height=\"20\">\n"
  3855. " <td height=\"20\"><strong>B</strong></td>\n"
  3856. " <td>&nbsp;Buffer</td>\n"
  3857. " </tr>\n"
  3858. " <tr height=\"20\">\n"
  3859. " <td height=\"20\"><strong>C</strong></td>\n"
  3860. " <td>&nbsp;Copy</td>\n"
  3861. " </tr>\n"
  3862. " <tr height=\"20\">\n"
  3863. " <td height=\"20\"><strong>D</strong></td>\n"
  3864. " <td>&nbsp;Add Disc</td>\n"
  3865. " </tr>\n"
  3866. " <tr height=\"20\">\n"
  3867. " <td height=\"20\"><strong>E</strong></td>\n"
  3868. " <td>&nbsp;Add SemiDisc</td>\n"
  3869. " </tr>\n"
  3870. " <tr height=\"20\">\n"
  3871. " <td height=\"20\"><strong>J</strong></td>\n"
  3872. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3873. " </tr>\n"
  3874. " <tr height=\"20\">\n"
  3875. " <td height=\"20\"><strong>M</strong></td>\n"
  3876. " <td>&nbsp;Move</td>\n"
  3877. " </tr>\n"
  3878. " <tr height=\"20\">\n"
  3879. " <td height=\"20\"><strong>N</strong></td>\n"
  3880. " <td>&nbsp;Add Region</td>\n"
  3881. " </tr>\n"
  3882. " <tr height=\"20\">\n"
  3883. " <td height=\"20\"><strong>P</strong></td>\n"
  3884. " <td>&nbsp;Add Pad</td>\n"
  3885. " </tr>\n"
  3886. " <tr height=\"20\">\n"
  3887. " <td height=\"20\"><strong>R</strong></td>\n"
  3888. " <td>&nbsp;Within Track & Region Tools will cycle in REVERSE the bend modes</td>\n"
  3889. " </tr>\n"
  3890. " <tr height=\"20\">\n"
  3891. " <td height=\"20\"><strong>S</strong></td>\n"
  3892. " <td>&nbsp;Scale</td>\n"
  3893. " </tr>\n"
  3894. " <tr height=\"20\">\n"
  3895. " <td height=\"20\"><strong>T</strong></td>\n"
  3896. " <td>&nbsp;Add Track</td>\n"
  3897. " </tr>\n"
  3898. " <tr height=\"20\">\n"
  3899. " <td height=\"20\"><strong>T</strong></td>\n"
  3900. " <td>&nbsp;Within Track & Region Tools will cycle FORWARD the bend modes</td>\n"
  3901. " </tr>\n"
  3902. " <tr height=\"20\">\n"
  3903. " <td height=\"20\">&nbsp;</td>\n"
  3904. " <td>&nbsp;</td>\n"
  3905. " </tr>\n"
  3906. " <tr height=\"20\">\n"
  3907. " <td height=\"20\"><strong>Del</strong></td>\n"
  3908. " <td>&nbsp;Delete</td>\n"
  3909. " </tr>\n"
  3910. " <tr height=\"20\">\n"
  3911. " <td height=\"20\"><strong>Del</strong></td>\n"
  3912. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  3913. " </tr>\n"
  3914. " <tr height=\"20\">\n"
  3915. " <td height=\"20\">&nbsp;</td>\n"
  3916. " <td>&nbsp;</td>\n"
  3917. " </tr>\n"
  3918. " <tr height=\"20\">\n"
  3919. " <td height=\"20\"><strong>ESC</strong></td>\n"
  3920. " <td>&nbsp;Abort and return to Select</td>\n"
  3921. " </tr>\n"
  3922. " <tr height=\"20\">\n"
  3923. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  3924. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  3925. " </tr>\n"
  3926. " <tr height=\"20\">\n"
  3927. " <td height=\"20\">&nbsp;</td>\n"
  3928. " <td>&nbsp;</td>\n"
  3929. " </tr>\n"
  3930. " <tr height=\"20\">\n"
  3931. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  3932. " <td>&nbsp;Transformation Tool</td>\n"
  3933. " </tr>\n"
  3934. " </tbody>\n"
  3935. " </table>\n"
  3936. " "
  3937. msgstr ""
  3938. "<b>Editor Shortcut list</b><br>\n"
  3939. " <br>\n"
  3940. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></strong><br>\n"
  3941. " \n"
  3942. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  3943. " <tbody>\n"
  3944. " <tr height=\"20\">\n"
  3945. " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  3946. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  3947. " </tr>\n"
  3948. " <tr height=\"20\">\n"
  3949. " <td height=\"20\"><strong>B</strong></td>\n"
  3950. " <td>&nbsp;Buffer Tool</td>\n"
  3951. " </tr>\n"
  3952. " <tr height=\"20\">\n"
  3953. " <td height=\"20\"><strong>C</strong></td>\n"
  3954. " <td>&nbsp;Copy Geo Item</td>\n"
  3955. " </tr>\n"
  3956. " <tr height=\"20\">\n"
  3957. " <td height=\"20\"><strong>D</strong></td>\n"
  3958. " <td>&nbsp;Within Add Arc will toogle the ARC direction: CW or CCW</td>\n"
  3959. " </tr>\n"
  3960. " <tr height=\"20\">\n"
  3961. " <td height=\"20\"><strong>E</strong></td>\n"
  3962. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  3963. " </tr>\n"
  3964. " <tr height=\"20\">\n"
  3965. " <td height=\"20\"><strong>I</strong></td>\n"
  3966. " <td>&nbsp;Paint Tool</td>\n"
  3967. " </tr>\n"
  3968. " <tr height=\"20\">\n"
  3969. " <td height=\"20\"><strong>J</strong></td>\n"
  3970. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  3971. " </tr>\n"
  3972. " <tr height=\"20\">\n"
  3973. " <td height=\"20\"><strong>K</strong></td>\n"
  3974. " <td>&nbsp;Toggle Corner Snap</td>\n"
  3975. " </tr>\n"
  3976. " <tr height=\"20\">\n"
  3977. " <td height=\"20\"><strong>M</strong></td>\n"
  3978. " <td>&nbsp;Move Geo Item</td>\n"
  3979. " </tr>\n"
  3980. " <tr height=\"20\">\n"
  3981. " <td height=\"20\"><strong>M</strong></td>\n"
  3982. " <td>&nbsp;Within Add Arc will cycle through the ARC modes</td>\n"
  3983. " </tr>\n"
  3984. " <tr height=\"20\">\n"
  3985. " <td height=\"20\"><strong>N</strong></td>\n"
  3986. " <td>&nbsp;Draw a Polygon</td>\n"
  3987. " </tr>\n"
  3988. " <tr height=\"20\">\n"
  3989. " <td height=\"20\"><strong>O</strong></td>\n"
  3990. " <td>&nbsp;Draw a Circle</td>\n"
  3991. " </tr>\n"
  3992. " <tr height=\"20\">\n"
  3993. " <td height=\"20\"><strong>P</strong></td>\n"
  3994. " <td>&nbsp;Draw a Path</td>\n"
  3995. " </tr>\n"
  3996. " <tr height=\"20\">\n"
  3997. " <td height=\"20\"><strong>R</strong></td>\n"
  3998. " <td>&nbsp;Draw Rectangle</td>\n"
  3999. " </tr>\n"
  4000. " <tr height=\"20\">\n"
  4001. " <td height=\"20\"><strong>S</strong></td>\n"
  4002. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4003. " </tr>\n"
  4004. " <tr height=\"20\">\n"
  4005. " <td height=\"20\"><strong>T</strong></td>\n"
  4006. " <td>&nbsp;Add Text Tool</td>\n"
  4007. " </tr>\n"
  4008. " <tr height=\"20\">\n"
  4009. " <td height=\"20\"><strong>U</strong></td>\n"
  4010. " <td>&nbsp;Polygon Union Tool</td>\n"
  4011. " </tr>\n"
  4012. " <tr height=\"20\">\n"
  4013. " <td height=\"20\"><strong>X</strong></td>\n"
  4014. " <td>&nbsp;Flip shape on X axis</td>\n"
  4015. " </tr>\n"
  4016. " <tr height=\"20\">\n"
  4017. " <td height=\"20\"><strong>Y</strong></td>\n"
  4018. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4019. " </tr>\n"
  4020. " <tr height=\"20\">\n"
  4021. " <td height=\"20\">&nbsp;</td>\n"
  4022. " <td>&nbsp;</td>\n"
  4023. " </tr>\n"
  4024. " <tr height=\"20\">\n"
  4025. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4026. " <td>&nbsp;Skew shape on X axis</td>\n"
  4027. " </tr>\n"
  4028. " <tr height=\"20\">\n"
  4029. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4030. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4031. " </tr>\n"
  4032. " <tr height=\"20\">\n"
  4033. " <td height=\"20\">&nbsp;</td>\n"
  4034. " <td>&nbsp;</td>\n"
  4035. " </tr>\n"
  4036. " <tr height=\"20\">\n"
  4037. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4038. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4039. " </tr>\n"
  4040. " <tr height=\"20\">\n"
  4041. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4042. " <td>&nbsp;Offset shape on X axis</td>\n"
  4043. " </tr>\n"
  4044. " <tr height=\"20\">\n"
  4045. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4046. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4047. " </tr>\n"
  4048. " <tr height=\"20\">\n"
  4049. " <td height=\"20\">&nbsp;</td>\n"
  4050. " <td>&nbsp;</td>\n"
  4051. " </tr>\n"
  4052. " <tr height=\"20\">\n"
  4053. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4054. " <td>&nbsp;Measurement Tool</td>\n"
  4055. " </tr>\n"
  4056. " <tr height=\"20\">\n"
  4057. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4058. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4059. " </tr>\n"
  4060. " <tr height=\"20\">\n"
  4061. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4062. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4063. " </tr>\n"
  4064. " <tr height=\"20\">\n"
  4065. " <td height=\"20\">&nbsp;</td>\n"
  4066. " <td>&nbsp;</td>\n"
  4067. " </tr>\n"
  4068. " <tr height=\"20\">\n"
  4069. " <td height=\"20\"><strong>Space</strong></td>\n"
  4070. " <td>&nbsp;Rotate Geometry</td>\n"
  4071. " </tr>\n"
  4072. " <tr height=\"20\">\n"
  4073. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4074. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4075. " </tr>\n"
  4076. " <tr height=\"20\">\n"
  4077. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4078. " <td>&nbsp;Abort and return to Select</td>\n"
  4079. " </tr>\n"
  4080. " <tr height=\"20\">\n"
  4081. " <td height=\"20\"><strong>Del</strong></td>\n"
  4082. " <td>&nbsp;Delete Shape</td>\n"
  4083. " </tr>\n"
  4084. " </tbody>\n"
  4085. " </table>\n"
  4086. " <br>\n"
  4087. " <br>\n"
  4088. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></strong><br>\n"
  4089. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  4090. " <tbody>\n"
  4091. " <tr height=\"20\">\n"
  4092. " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  4093. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4094. " </tr>\n"
  4095. " <tr height=\"20\">\n"
  4096. " <td height=\"20\"><strong>C</strong></td>\n"
  4097. " <td>&nbsp;Copy Drill(s)</td>\n"
  4098. " </tr>\n"
  4099. " <tr height=\"20\">\n"
  4100. " <td height=\"20\"><strong>D</strong></td>\n"
  4101. " <td>&nbsp;Add Drill</td>\n"
  4102. " </tr>\n"
  4103. " <tr height=\"20\">\n"
  4104. " <td height=\"20\"><strong>J</strong></td>\n"
  4105. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4106. " </tr>\n"
  4107. " <tr height=\"20\">\n"
  4108. " <td height=\"20\"><strong>M</strong></td>\n"
  4109. " <td>&nbsp;Move Drill(s)</td>\n"
  4110. " </tr>\n"
  4111. " <tr height=\"20\">\n"
  4112. " <td height=\"20\"><strong>R</strong></td>\n"
  4113. " <td>&nbsp;Resize Drill(s)</td>\n"
  4114. " </tr>\n"
  4115. " <tr height=\"20\">\n"
  4116. " <td height=\"20\"><strong>T</strong></td>\n"
  4117. " <td>&nbsp;Add a new Tool</td>\n"
  4118. " </tr>\n"
  4119. " <tr height=\"20\">\n"
  4120. " <td height=\"20\">&nbsp;</td>\n"
  4121. " <td>&nbsp;</td>\n"
  4122. " </tr>\n"
  4123. " <tr height=\"20\">\n"
  4124. " <td height=\"20\"><strong>Del</strong></td>\n"
  4125. " <td>&nbsp;Delete Drill(s)</td>\n"
  4126. " </tr>\n"
  4127. " <tr height=\"20\">\n"
  4128. " <td height=\"20\"><strong>Del</strong></td>\n"
  4129. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4130. " </tr>\n"
  4131. " <tr height=\"20\">\n"
  4132. " <td height=\"20\">&nbsp;</td>\n"
  4133. " <td>&nbsp;</td>\n"
  4134. " </tr>\n"
  4135. " <tr height=\"20\">\n"
  4136. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4137. " <td>&nbsp;Abort and return to Select</td>\n"
  4138. " </tr>\n"
  4139. " <tr height=\"20\">\n"
  4140. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4141. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4142. " </tr>\n"
  4143. " </tbody>\n"
  4144. " </table>\n"
  4145. " <br>\n"
  4146. " <br>\n"
  4147. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></strong><br>\n"
  4148. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  4149. " <tbody>\n"
  4150. " <tr height=\"20\">\n"
  4151. " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  4152. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4153. " </tr>\n"
  4154. " <tr height=\"20\">\n"
  4155. " <td height=\"20\"><strong>B</strong></td>\n"
  4156. " <td>&nbsp;Buffer</td>\n"
  4157. " </tr>\n"
  4158. " <tr height=\"20\">\n"
  4159. " <td height=\"20\"><strong>C</strong></td>\n"
  4160. " <td>&nbsp;Copy</td>\n"
  4161. " </tr>\n"
  4162. " <tr height=\"20\">\n"
  4163. " <td height=\"20\"><strong>D</strong></td>\n"
  4164. " <td>&nbsp;Add Disc</td>\n"
  4165. " </tr>\n"
  4166. " <tr height=\"20\">\n"
  4167. " <td height=\"20\"><strong>E</strong></td>\n"
  4168. " <td>&nbsp;Add SemiDisc</td>\n"
  4169. " </tr>\n"
  4170. " <tr height=\"20\">\n"
  4171. " <td height=\"20\"><strong>J</strong></td>\n"
  4172. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4173. " </tr>\n"
  4174. " <tr height=\"20\">\n"
  4175. " <td height=\"20\"><strong>M</strong></td>\n"
  4176. " <td>&nbsp;Move</td>\n"
  4177. " </tr>\n"
  4178. " <tr height=\"20\">\n"
  4179. " <td height=\"20\"><strong>N</strong></td>\n"
  4180. " <td>&nbsp;Add Region</td>\n"
  4181. " </tr>\n"
  4182. " <tr height=\"20\">\n"
  4183. " <td height=\"20\"><strong>P</strong></td>\n"
  4184. " <td>&nbsp;Add Pad</td>\n"
  4185. " </tr>\n"
  4186. " <tr height=\"20\">\n"
  4187. " <td height=\"20\"><strong>R</strong></td>\n"
  4188. " <td>&nbsp;Within Track & Region Tools will cycle in REVERSE the bend modes</td>\n"
  4189. " </tr>\n"
  4190. " <tr height=\"20\">\n"
  4191. " <td height=\"20\"><strong>S</strong></td>\n"
  4192. " <td>&nbsp;Scale</td>\n"
  4193. " </tr>\n"
  4194. " <tr height=\"20\">\n"
  4195. " <td height=\"20\"><strong>T</strong></td>\n"
  4196. " <td>&nbsp;Add Track</td>\n"
  4197. " </tr>\n"
  4198. " <tr height=\"20\">\n"
  4199. " <td height=\"20\"><strong>T</strong></td>\n"
  4200. " <td>&nbsp;Within Track & Region Tools will cycle FORWARD the bend modes</td>\n"
  4201. " </tr>\n"
  4202. " <tr height=\"20\">\n"
  4203. " <td height=\"20\">&nbsp;</td>\n"
  4204. " <td>&nbsp;</td>\n"
  4205. " </tr>\n"
  4206. " <tr height=\"20\">\n"
  4207. " <td height=\"20\"><strong>Del</strong></td>\n"
  4208. " <td>&nbsp;Delete</td>\n"
  4209. " </tr>\n"
  4210. " <tr height=\"20\">\n"
  4211. " <td height=\"20\"><strong>Del</strong></td>\n"
  4212. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4213. " </tr>\n"
  4214. " <tr height=\"20\">\n"
  4215. " <td height=\"20\">&nbsp;</td>\n"
  4216. " <td>&nbsp;</td>\n"
  4217. " </tr>\n"
  4218. " <tr height=\"20\">\n"
  4219. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4220. " <td>&nbsp;Abort and return to Select</td>\n"
  4221. " </tr>\n"
  4222. " <tr height=\"20\">\n"
  4223. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4224. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4225. " </tr>\n"
  4226. " <tr height=\"20\">\n"
  4227. " <td height=\"20\">&nbsp;</td>\n"
  4228. " <td>&nbsp;</td>\n"
  4229. " </tr>\n"
  4230. " <tr height=\"20\">\n"
  4231. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4232. " <td>&nbsp;Transformation Tool</td>\n"
  4233. " </tr>\n"
  4234. " </tbody>\n"
  4235. " </table>\n"
  4236. " "
  4237. #: flatcamGUI/FlatCAMGUI.py:1578
  4238. msgid "Toggle Panel"
  4239. msgstr "Painel de alternância"
  4240. #: flatcamGUI/FlatCAMGUI.py:1581
  4241. msgid "New"
  4242. msgstr "Novo"
  4243. #: flatcamGUI/FlatCAMGUI.py:1582
  4244. msgid "Geometry"
  4245. msgstr "Geometria"
  4246. #: flatcamGUI/FlatCAMGUI.py:1584
  4247. msgid "Excellon"
  4248. msgstr "Excellon"
  4249. #: flatcamGUI/FlatCAMGUI.py:1589
  4250. msgid "Grids"
  4251. msgstr "Grades"
  4252. #: flatcamGUI/FlatCAMGUI.py:1591
  4253. msgid "View"
  4254. msgstr "Ver"
  4255. #: flatcamGUI/FlatCAMGUI.py:1593
  4256. msgid "Clear Plot"
  4257. msgstr "Limpar Gráfico"
  4258. #: flatcamGUI/FlatCAMGUI.py:1594
  4259. msgid "Replot"
  4260. msgstr "Replot"
  4261. #: flatcamGUI/FlatCAMGUI.py:1597
  4262. msgid "Geo Editor"
  4263. msgstr "Editor Geométrico"
  4264. #: flatcamGUI/FlatCAMGUI.py:1598
  4265. msgid "Line"
  4266. msgstr "Linha"
  4267. #: flatcamGUI/FlatCAMGUI.py:1599
  4268. msgid "Rectangle"
  4269. msgstr "Retângulo"
  4270. #: flatcamGUI/FlatCAMGUI.py:1600
  4271. msgid "Cut"
  4272. msgstr "Cortar"
  4273. #: flatcamGUI/FlatCAMGUI.py:1605
  4274. msgid "Pad"
  4275. msgstr "Pad"
  4276. #: flatcamGUI/FlatCAMGUI.py:1606
  4277. msgid "Pad Array"
  4278. msgstr "Matriz de Pads"
  4279. #: flatcamGUI/FlatCAMGUI.py:1607
  4280. msgid "Track"
  4281. msgstr "Trilha"
  4282. #: flatcamGUI/FlatCAMGUI.py:1608
  4283. msgid "Region"
  4284. msgstr "Região"
  4285. #: flatcamGUI/FlatCAMGUI.py:1610
  4286. msgid "Exc Editor"
  4287. msgstr "Editor Exc"
  4288. #: flatcamGUI/FlatCAMGUI.py:1611
  4289. msgid "Add Drill"
  4290. msgstr "Adicionar Broca"
  4291. #: flatcamGUI/FlatCAMGUI.py:1643
  4292. msgid "Print Preview"
  4293. msgstr "Visualizar Impressão"
  4294. #: flatcamGUI/FlatCAMGUI.py:1644
  4295. msgid "Print Code"
  4296. msgstr "Imprimir Código"
  4297. #: flatcamGUI/FlatCAMGUI.py:1645
  4298. msgid "Find in Code"
  4299. msgstr "Encontrar no Código"
  4300. #: flatcamGUI/FlatCAMGUI.py:1650
  4301. msgid "Replace With"
  4302. msgstr "Substituir Por"
  4303. #: flatcamGUI/FlatCAMGUI.py:1654
  4304. msgid "All"
  4305. msgstr "Todos"
  4306. #: flatcamGUI/FlatCAMGUI.py:1656
  4307. msgid ""
  4308. "When checked it will replace all instances in the 'Find' box\n"
  4309. "with the text in the 'Replace' box.."
  4310. msgstr "Quando marcado, todas as instâncias na caixa 'Localizar'\\ nserão substituídas pelo texto na caixa 'Substituir'."
  4311. #: flatcamGUI/FlatCAMGUI.py:1659
  4312. msgid "Open Code"
  4313. msgstr "Abrir Código"
  4314. #: flatcamGUI/FlatCAMGUI.py:1660
  4315. msgid "Save Code"
  4316. msgstr "Salvar Código"
  4317. #: flatcamGUI/FlatCAMGUI.py:1695
  4318. msgid ""
  4319. "Relative neasurement.\n"
  4320. "Reference is last click position"
  4321. msgstr ""
  4322. "Medição relativa.\n"
  4323. "Em referência à posição do último clique"
  4324. #: flatcamGUI/FlatCAMGUI.py:1701
  4325. msgid ""
  4326. "Absolute neasurement.\n"
  4327. "Reference is (X=0, Y= 0) position"
  4328. msgstr ""
  4329. "Medição absoluta.\n"
  4330. " Em referência à posição (X = 0, Y = 0)"
  4331. #: flatcamGUI/FlatCAMGUI.py:1897
  4332. msgid "Select 'Esc'"
  4333. msgstr "Selecione 'Esc'"
  4334. #: flatcamGUI/FlatCAMGUI.py:1924
  4335. msgid "Copy Objects"
  4336. msgstr "Copiar Objetos"
  4337. #: flatcamGUI/FlatCAMGUI.py:1926
  4338. msgid "Delete Shape"
  4339. msgstr "Excluir Forma"
  4340. #: flatcamGUI/FlatCAMGUI.py:1931
  4341. msgid "Move Objects"
  4342. msgstr "Mover Objetos"
  4343. #: flatcamGUI/FlatCAMGUI.py:2360
  4344. msgid ""
  4345. "Please first select a geometry item to be cutted\n"
  4346. "then select the geometry item that will be cutted\n"
  4347. "out of the first item. In the end press ~X~ key or\n"
  4348. "the toolbar button."
  4349. msgstr ""
  4350. "Por favor, primeiro selecione um item de geometria a ser cortado\n"
  4351. "e em seguida, selecione o item de geometria que será cortado\n"
  4352. "fora do primeiro item. No final, pressione a tecla ~ X ~ ou\n"
  4353. "o botão da barra de ferramentas."
  4354. #: flatcamGUI/FlatCAMGUI.py:2367 flatcamGUI/FlatCAMGUI.py:2504 flatcamGUI/FlatCAMGUI.py:2563 flatcamGUI/FlatCAMGUI.py:2583
  4355. msgid "Warning"
  4356. msgstr "Aviso"
  4357. #: flatcamGUI/FlatCAMGUI.py:2434 flatcamGUI/FlatCAMGUI.py:2633 flatcamGUI/FlatCAMGUI.py:2844
  4358. msgid "[WARNING_NOTCL] Cancelled."
  4359. msgstr "[WARNING_NOTCL] Cancelado."
  4360. #: flatcamGUI/FlatCAMGUI.py:2499
  4361. msgid ""
  4362. "Please select geometry items \n"
  4363. "on which to perform Intersection Tool."
  4364. msgstr ""
  4365. "Por favor, selecione itens de geometria\n"
  4366. "para executar ferramenta de interseção."
  4367. #: flatcamGUI/FlatCAMGUI.py:2558
  4368. msgid ""
  4369. "Please select geometry items \n"
  4370. "on which to perform Substraction Tool."
  4371. msgstr ""
  4372. "Por favor, selecione itens de geometria\n"
  4373. "para executar ferramenta de subtração."
  4374. #: flatcamGUI/FlatCAMGUI.py:2578
  4375. msgid ""
  4376. "Please select geometry items \n"
  4377. "on which to perform union."
  4378. msgstr ""
  4379. "Por favor, selecione itens de geometria\n"
  4380. "para executar ferramenta de união."
  4381. #: flatcamGUI/FlatCAMGUI.py:2649 flatcamGUI/FlatCAMGUI.py:2861
  4382. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4383. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para excluir."
  4384. #: flatcamGUI/FlatCAMGUI.py:2733 flatcamGUI/FlatCAMGUI.py:2928
  4385. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4386. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para copiar."
  4387. #: flatcamGUI/FlatCAMGUI.py:2779 flatcamGUI/FlatCAMGUI.py:2974
  4388. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4389. msgstr "[WARNING_NOTCL] Cancelado. Nada selecionado para mover."
  4390. #: flatcamGUI/FlatCAMGUI.py:2988
  4391. msgid "New Tool ..."
  4392. msgstr "Nova Ferramenta ..."
  4393. #: flatcamGUI/FlatCAMGUI.py:2989
  4394. msgid "Enter a Tool Diameter:"
  4395. msgstr "Digite um diâmetro de ferramenta:"
  4396. #: flatcamGUI/FlatCAMGUI.py:3032
  4397. msgid "Measurement Tool exit..."
  4398. msgstr "Saída da ferramenta de medição ..."
  4399. #: flatcamGUI/FlatCAMGUI.py:3323
  4400. msgid "GUI Preferences"
  4401. msgstr "Preferências da GUI"
  4402. #: flatcamGUI/FlatCAMGUI.py:3329
  4403. msgid "Grid X value:"
  4404. msgstr "Valor da grade X:"
  4405. #: flatcamGUI/FlatCAMGUI.py:3331
  4406. msgid "This is the Grid snap value on X axis."
  4407. msgstr "Este é o valor do snap à grade no eixo X."
  4408. #: flatcamGUI/FlatCAMGUI.py:3336
  4409. msgid "Grid Y value:"
  4410. msgstr "Valor da grade Y:"
  4411. #: flatcamGUI/FlatCAMGUI.py:3338
  4412. msgid "This is the Grid snap value on Y axis."
  4413. msgstr "Este é o valor do snap à grade no eixo Y."
  4414. #: flatcamGUI/FlatCAMGUI.py:3343
  4415. msgid "Snap Max:"
  4416. msgstr "Snap Max:"
  4417. #: flatcamGUI/FlatCAMGUI.py:3348
  4418. msgid "Workspace:"
  4419. msgstr "Área de trabalho:"
  4420. #: flatcamGUI/FlatCAMGUI.py:3350
  4421. msgid ""
  4422. "Draw a delimiting rectangle on canvas.\n"
  4423. "The purpose is to illustrate the limits for our work."
  4424. msgstr ""
  4425. "Desenhe um retângulo de delimitação na tela.\n"
  4426. "O objetivo é ilustrar os limites do nosso trabalho."
  4427. #: flatcamGUI/FlatCAMGUI.py:3353
  4428. msgid "Wk. format:"
  4429. msgstr "Wk formato:"
  4430. #: flatcamGUI/FlatCAMGUI.py:3355
  4431. msgid ""
  4432. "Select the type of rectangle to be used on canvas,\n"
  4433. "as valid workspace."
  4434. msgstr ""
  4435. "Selecione o tipo de retângulo a ser usado na tela,\n"
  4436. "como espaço de trabalho válido."
  4437. #: flatcamGUI/FlatCAMGUI.py:3368
  4438. msgid "Plot Fill:"
  4439. msgstr "Enchimento de Plotagem:"
  4440. #: flatcamGUI/FlatCAMGUI.py:3370
  4441. msgid ""
  4442. "Set the fill color for plotted objects.\n"
  4443. "First 6 digits are the color and the last 2\n"
  4444. "digits are for alpha (transparency) level."
  4445. msgstr ""
  4446. "Defina a cor de preenchimento para os objetos plotados.\n"
  4447. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  4448. "dígitos são para o nível alfa (transparência)."
  4449. #: flatcamGUI/FlatCAMGUI.py:3384 flatcamGUI/FlatCAMGUI.py:3434 flatcamGUI/FlatCAMGUI.py:3484
  4450. msgid "Alpha Level:"
  4451. msgstr "Nível Alfa:"
  4452. #: flatcamGUI/FlatCAMGUI.py:3386
  4453. msgid "Set the fill transparency for plotted objects."
  4454. msgstr "Definir a transparência de preenchimento para objetos plotados."
  4455. #: flatcamGUI/FlatCAMGUI.py:3403
  4456. msgid "Plot Line:"
  4457. msgstr "Linha:"
  4458. #: flatcamGUI/FlatCAMGUI.py:3405
  4459. msgid "Set the line color for plotted objects."
  4460. msgstr "Defina a cor da linha para objetos plotados."
  4461. #: flatcamGUI/FlatCAMGUI.py:3417
  4462. msgid "Sel. Fill:"
  4463. msgstr "Sel. Preenchimento:"
  4464. #: flatcamGUI/FlatCAMGUI.py:3419
  4465. msgid ""
  4466. "Set the fill color for the selection box\n"
  4467. "in case that the selection is done from left to right.\n"
  4468. "First 6 digits are the color and the last 2\n"
  4469. "digits are for alpha (transparency) level."
  4470. msgstr ""
  4471. "Defina a cor de preenchimento para a caixa de seleção\n"
  4472. "no caso de a seleção ser feita da esquerda para a direita.\n"
  4473. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  4474. "dígitos são para o nível alfa (transparência)."
  4475. #: flatcamGUI/FlatCAMGUI.py:3436
  4476. msgid "Set the fill transparency for the 'left to right' selection box."
  4477. msgstr "Defina a transparência de preenchimento para a caixa de seleção \"da esquerda para a direita\"."
  4478. #: flatcamGUI/FlatCAMGUI.py:3453
  4479. msgid "Sel. Line:"
  4480. msgstr "Sel. Linha:"
  4481. #: flatcamGUI/FlatCAMGUI.py:3455
  4482. msgid "Set the line color for the 'left to right' selection box."
  4483. msgstr "Defina a cor da linha para a caixa de seleção \"da esquerda para a direita\"."
  4484. #: flatcamGUI/FlatCAMGUI.py:3467
  4485. msgid "Sel2. Fill:"
  4486. msgstr "Sel2 Preenchimento:"
  4487. #: flatcamGUI/FlatCAMGUI.py:3469
  4488. msgid ""
  4489. "Set the fill color for the selection box\n"
  4490. "in case that the selection is done from right to left.\n"
  4491. "First 6 digits are the color and the last 2\n"
  4492. "digits are for alpha (transparency) level."
  4493. msgstr ""
  4494. "Defina a cor de preenchimento para a caixa de seleção, caso a seleção seja feita da direita para a esquerda.\n"
  4495. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  4496. "dígitos são para o nível alfa (transparência)."
  4497. #: flatcamGUI/FlatCAMGUI.py:3486
  4498. msgid "Set the fill transparency for selection 'right to left' box."
  4499. msgstr "Defina a transparência de preenchimento para a seleção da caixa 'direita para a esquerda'."
  4500. #: flatcamGUI/FlatCAMGUI.py:3503
  4501. msgid "Sel2. Line:"
  4502. msgstr "Sel2 Linha:"
  4503. #: flatcamGUI/FlatCAMGUI.py:3505
  4504. msgid "Set the line color for the 'right to left' selection box."
  4505. msgstr "Defina a cor da linha para a caixa de seleção 'direita para a esquerda'."
  4506. #: flatcamGUI/FlatCAMGUI.py:3517
  4507. msgid "Editor Draw:"
  4508. msgstr "Editor de Desenho:"
  4509. #: flatcamGUI/FlatCAMGUI.py:3519
  4510. msgid "Set the color for the shape."
  4511. msgstr "Definir a cor da forma."
  4512. #: flatcamGUI/FlatCAMGUI.py:3531
  4513. msgid "Editor Draw Sel.:"
  4514. msgstr "Editor de Desenho Sel.:"
  4515. #: flatcamGUI/FlatCAMGUI.py:3533
  4516. msgid "Set the color of the shape when selected."
  4517. msgstr "Defina a cor da forma quando selecionada."
  4518. #: flatcamGUI/FlatCAMGUI.py:3545
  4519. msgid "Project Items:"
  4520. msgstr "Itens do Projeto:"
  4521. #: flatcamGUI/FlatCAMGUI.py:3547
  4522. msgid "Set the color of the items in Project Tab Tree."
  4523. msgstr "Defina a cor dos itens na Árvore do Guia de Projeto."
  4524. #: flatcamGUI/FlatCAMGUI.py:3558
  4525. msgid "Proj. Dis. Items:"
  4526. msgstr "Proj. Dis. Items:"
  4527. #: flatcamGUI/FlatCAMGUI.py:3560
  4528. msgid ""
  4529. "Set the color of the items in Project Tab Tree,\n"
  4530. "for the case when the items are disabled."
  4531. msgstr ""
  4532. "Defina a cor dos itens na Árvore da guia Projeto,\n"
  4533. "para o caso em que os itens estão desativados."
  4534. #: flatcamGUI/FlatCAMGUI.py:3611
  4535. msgid "GUI Settings"
  4536. msgstr "Configurações da GUI"
  4537. #: flatcamGUI/FlatCAMGUI.py:3617
  4538. msgid "Layout:"
  4539. msgstr "Layout:"
  4540. #: flatcamGUI/FlatCAMGUI.py:3619
  4541. msgid ""
  4542. "Select an layout for FlatCAM.\n"
  4543. "It is applied immediately."
  4544. msgstr ""
  4545. "Selecione um layout para o FlatCAM.\n"
  4546. "É aplicado imediatamente."
  4547. #: flatcamGUI/FlatCAMGUI.py:3635
  4548. msgid "Style:"
  4549. msgstr "Estilo:"
  4550. #: flatcamGUI/FlatCAMGUI.py:3637
  4551. msgid ""
  4552. "Select an style for FlatCAM.\n"
  4553. "It will be applied at the next app start."
  4554. msgstr ""
  4555. "Selecione um estilo para FlatCAM.\n"
  4556. "Ele será aplicado no próximo início do aplicativo."
  4557. #: flatcamGUI/FlatCAMGUI.py:3648
  4558. msgid "HDPI Support:"
  4559. msgstr "Suporte HDPI:"
  4560. #: flatcamGUI/FlatCAMGUI.py:3650
  4561. msgid ""
  4562. "Enable High DPI support for FlatCAM.\n"
  4563. "It will be applied at the next app start."
  4564. msgstr ""
  4565. "Ativa o suporte de alta DPI para FlatCAM.\n"
  4566. "Ele será aplicado no próximo início do aplicativo."
  4567. #: flatcamGUI/FlatCAMGUI.py:3663
  4568. msgid "Clear GUI Settings:"
  4569. msgstr "Limpar Configurações da GUI:"
  4570. #: flatcamGUI/FlatCAMGUI.py:3665
  4571. msgid ""
  4572. "Clear the GUI settings for FlatCAM,\n"
  4573. "such as: layout, gui state, style, hdpi support etc."
  4574. msgstr ""
  4575. "Limpa as configurações da GUI para FlatCAM,\n"
  4576. "como: layout, estado de gui, estilo, suporte a HDPI etc."
  4577. #: flatcamGUI/FlatCAMGUI.py:3668
  4578. msgid "Clear"
  4579. msgstr "Limpar"
  4580. #: flatcamGUI/FlatCAMGUI.py:3672
  4581. msgid "Hover Shape:"
  4582. msgstr "Hover Shape:"
  4583. #: flatcamGUI/FlatCAMGUI.py:3674
  4584. msgid ""
  4585. "Enable display of a hover shape for FlatCAM objects.\n"
  4586. "It is displayed whenever the mouse cursor is hovering\n"
  4587. "over any kind of not-selected object."
  4588. msgstr ""
  4589. "Habilita a exibição de uma forma hover para objetos FlatCAM.\n"
  4590. "É exibido sempre que o cursor do mouse estiver pairando\n"
  4591. "sobre qualquer tipo de objeto não selecionado."
  4592. #: flatcamGUI/FlatCAMGUI.py:3681
  4593. msgid "Sel. Shape:"
  4594. msgstr "Sel. Forma:"
  4595. #: flatcamGUI/FlatCAMGUI.py:3683
  4596. msgid ""
  4597. "Enable the display of a selection shape for FlatCAM objects.\n"
  4598. "It is displayed whenever the mouse selects an object\n"
  4599. "either by clicking or dragging mouse from left to right or\n"
  4600. "right to left."
  4601. msgstr ""
  4602. "Ativa a exibição de seleção de forma para objetos FlatCAM.\n"
  4603. "É exibido sempre que o mouse seleciona um objeto\n"
  4604. "seja clicando ou arrastando o mouse da esquerda para a direita ou da direita para a esquerda."
  4605. #: flatcamGUI/FlatCAMGUI.py:3725
  4606. msgid "Are you sure you want to delete the GUI Settings? \n"
  4607. msgstr "Tem certeza de que deseja excluir as configurações da GUI? \n"
  4608. #: flatcamGUI/FlatCAMGUI.py:3728
  4609. msgid "Clear GUI Settings"
  4610. msgstr "Limpar as configurações da GUI"
  4611. #: flatcamGUI/FlatCAMGUI.py:3749
  4612. msgid "App Preferences"
  4613. msgstr "Preferências de aplicativo"
  4614. #: flatcamGUI/FlatCAMGUI.py:3755
  4615. msgid "<b>Units:</b>"
  4616. msgstr "<b>Unidades:</b>"
  4617. #: flatcamGUI/FlatCAMGUI.py:3756
  4618. msgid ""
  4619. "The default value for FlatCAM units.\n"
  4620. "Whatever is selected here is set every time\n"
  4621. "FLatCAM is started."
  4622. msgstr ""
  4623. "O valor padrão para unidades FlatCAM.\n"
  4624. "O que estiver selecionado aqui será definido sempre que\n"
  4625. "FLatCAM for iniciado."
  4626. #: flatcamGUI/FlatCAMGUI.py:3763
  4627. msgid "<b>APP. LEVEL:</b>"
  4628. msgstr "<b>NÍVEL APP.:</b>"
  4629. #: flatcamGUI/FlatCAMGUI.py:3764
  4630. msgid ""
  4631. "Choose the default level of usage for FlatCAM.\n"
  4632. "BASIC level -> reduced functionality, best for beginner's.\n"
  4633. "ADVANCED level -> full functionality.\n"
  4634. "\n"
  4635. "The choice here will influence the parameters in\n"
  4636. "the Selected Tab for all kinds of FlatCAM objects."
  4637. msgstr ""
  4638. "Escolha o nível padrão de uso para FlatCAM.\n"
  4639. "Nível BÁSICO -> funcionalidade reduzida, melhor para iniciantes.\n"
  4640. "AVANÇADO -> funcionalidade completa.\n"
  4641. "\n"
  4642. "A escolha aqui influenciará os parâmetros na\n"
  4643. "Guia Selecionada para todos os tipos de objetos FlatCAM."
  4644. #: flatcamGUI/FlatCAMGUI.py:3769
  4645. msgid "Basic"
  4646. msgstr "Básico"
  4647. #: flatcamGUI/FlatCAMGUI.py:3770
  4648. msgid "Advanced"
  4649. msgstr "Avançado"
  4650. #: flatcamGUI/FlatCAMGUI.py:3773
  4651. msgid "<b>Languages:</b>"
  4652. msgstr "<b>Idioma:</b>"
  4653. #: flatcamGUI/FlatCAMGUI.py:3774
  4654. msgid "Set the language used throughout FlatCAM."
  4655. msgstr "Defina o idioma usado no FlatCAM."
  4656. #: flatcamGUI/FlatCAMGUI.py:3777
  4657. msgid "Apply Language"
  4658. msgstr "Aplique o Idioma"
  4659. #: flatcamGUI/FlatCAMGUI.py:3778
  4660. msgid ""
  4661. "Set the language used throughout FlatCAM.\n"
  4662. "The app will restart after click.Windows: When FlatCAM is installed in Program Files\n"
  4663. "directory, it is possible that the app will not\n"
  4664. "restart after the button is clicked due of Windows\n"
  4665. "security features. In this case the language will be\n"
  4666. "applied at the next app start."
  4667. msgstr ""
  4668. "Define o idioma usado no FlatCAM.\n"
  4669. "O aplicativo será reinicializado após o clique. Windows: Quando o FlatCAM estiver instalado no diretório Arquivos de Programas,\n"
  4670. "é possível que o aplicativo não seja\n"
  4671. "reiniciado depois que o botão for clicado devido aos recursos\n"
  4672. "de segurança do Windows. Neste caso, o idioma será\n"
  4673. "aplicado no próximo início do aplicativo."
  4674. #: flatcamGUI/FlatCAMGUI.py:3787
  4675. msgid "Shell at StartUp:"
  4676. msgstr "Shell at StartUp:"
  4677. #: flatcamGUI/FlatCAMGUI.py:3789 flatcamGUI/FlatCAMGUI.py:3794
  4678. msgid ""
  4679. "Check this box if you want the shell to\n"
  4680. "start automatically at startup."
  4681. msgstr ""
  4682. "Marque esta caixa se você deseja que o shell seja\n"
  4683. "inicializado automaticamente na inicialização."
  4684. #: flatcamGUI/FlatCAMGUI.py:3799
  4685. msgid "Version Check:"
  4686. msgstr "Verificação de versão:"
  4687. #: flatcamGUI/FlatCAMGUI.py:3801 flatcamGUI/FlatCAMGUI.py:3806
  4688. msgid ""
  4689. "Check this box if you want to check\n"
  4690. "for a new version automatically at startup."
  4691. msgstr ""
  4692. "Marque esta caixa se você quiser verificar\n"
  4693. "por nova versão automaticamente na inicialização."
  4694. #: flatcamGUI/FlatCAMGUI.py:3811
  4695. msgid "Send Stats:"
  4696. msgstr "Enviar estatísticas:"
  4697. #: flatcamGUI/FlatCAMGUI.py:3813 flatcamGUI/FlatCAMGUI.py:3818
  4698. msgid ""
  4699. "Check this box if you agree to send anonymous\n"
  4700. "stats automatically at startup, to help improve FlatCAM."
  4701. msgstr ""
  4702. "Marque esta caixa se você concorda em enviar\n"
  4703. "dados anônimos automaticamente na inicialização, para ajudar a melhorar o FlatCAM."
  4704. #: flatcamGUI/FlatCAMGUI.py:3825
  4705. msgid "<b>Pan Button:</b>"
  4706. msgstr "<b>Botão Pan:</b>"
  4707. #: flatcamGUI/FlatCAMGUI.py:3826
  4708. msgid ""
  4709. "Select the mouse button to use for panning:\n"
  4710. "- MMB --> Middle Mouse Button\n"
  4711. "- RMB --> Right Mouse Button"
  4712. msgstr ""
  4713. "Selecione o botão do mouse para usar o panning:\n"
  4714. "- BM -> Botão do meio do mouse\n"
  4715. "- BD -> botão direito do mouse"
  4716. #: flatcamGUI/FlatCAMGUI.py:3833
  4717. msgid "<b>Multiple Sel:</b>"
  4718. msgstr "<b>Sel. Múltipla:</b>"
  4719. #: flatcamGUI/FlatCAMGUI.py:3834
  4720. msgid "Select the key used for multiple selection."
  4721. msgstr "Selecione a tecla usada para seleção múltipla."
  4722. #: flatcamGUI/FlatCAMGUI.py:3839
  4723. msgid "Project at StartUp:"
  4724. msgstr "Projeto no StartUp:"
  4725. #: flatcamGUI/FlatCAMGUI.py:3841 flatcamGUI/FlatCAMGUI.py:3846
  4726. msgid ""
  4727. "Check this box if you want the project/selected/tool tab area to\n"
  4728. "to be shown automatically at startup."
  4729. msgstr ""
  4730. "Marque esta caixa se você quiser que a guia projeto/selecionado/ferramenta seja\n"
  4731. "apresentada automaticamente na inicialização."
  4732. #: flatcamGUI/FlatCAMGUI.py:3851
  4733. msgid "Project AutoHide:"
  4734. msgstr "AutoHide Projeto:"
  4735. #: flatcamGUI/FlatCAMGUI.py:3853 flatcamGUI/FlatCAMGUI.py:3859
  4736. msgid ""
  4737. "Check this box if you want the project/selected/tool tab area to\n"
  4738. "hide automatically when there are no objects loaded and\n"
  4739. "to show whenever a new object is created."
  4740. msgstr ""
  4741. "Marque esta caixa se você deseja que a guia projeto/selecionado/ferramenta\n"
  4742. "apresente automaticamente quando não houver objetos carregados e\n"
  4743. "para mostrar sempre que um novo objeto for criado."
  4744. #: flatcamGUI/FlatCAMGUI.py:3865
  4745. msgid "<b>Enable ToolTips:</b>"
  4746. msgstr "<b>Habilitar Dicas:</b>"
  4747. #: flatcamGUI/FlatCAMGUI.py:3867 flatcamGUI/FlatCAMGUI.py:3872
  4748. msgid ""
  4749. "Check this box if you want to have toolTips displayed\n"
  4750. "when hovering with mouse over items throughout the App."
  4751. msgstr ""
  4752. "Marque esta caixa se quiser que as dicas de ferramentas sejam exibidas\n"
  4753. "ao passar o mouse sobre os itens em todo o aplicativo."
  4754. #: flatcamGUI/FlatCAMGUI.py:3875
  4755. msgid "Workers number:"
  4756. msgstr "Número de trabalhadores:"
  4757. #: flatcamGUI/FlatCAMGUI.py:3877 flatcamGUI/FlatCAMGUI.py:3886
  4758. msgid ""
  4759. "The number of Qthreads made available to the App.\n"
  4760. "A bigger number may finish the jobs more quickly but\n"
  4761. "depending on your computer speed, may make the App\n"
  4762. "unresponsive. Can have a value between 2 and 16.\n"
  4763. "Default value is 2.\n"
  4764. "After change, it will be applied at next App start."
  4765. msgstr ""
  4766. "O número de Qthreads disponibilizados para o App.\n"
  4767. "Um número maior pode terminar os trabalhos mais rapidamente, mas\n"
  4768. "dependendo da velocidade do computador, pode fazer com que o App\n"
  4769. "não responda. Pode ter um valor entre 2 e 16.\n"
  4770. "O valor padrão é 2.\n"
  4771. "Após a mudança, ele será aplicado no próximo início do aplicativo."
  4772. #: flatcamGUI/FlatCAMGUI.py:3898 flatcamGUI/FlatCAMGUI.py:3907
  4773. msgid ""
  4774. "This value can counter the effect of the Circle Steps\n"
  4775. "parameter. Default value is 0.01.\n"
  4776. "A lower value will increase the detail both in image\n"
  4777. "and in Gcode for the circles, with a higher cost in\n"
  4778. "performance. Higher value will provide more\n"
  4779. "performance at the expense of level of detail."
  4780. msgstr ""
  4781. "Este valor pode contrariar o efeito do parâmetro Passos do Círculo.\n"
  4782. "O valor padrão é 0,01.\n"
  4783. "Um valor mais baixo aumentará os detalhes na imagem\n"
  4784. "e no G-Code para os círculos, com um custo maior em\n"
  4785. "desempenho. Valor maior proporcionará mais\n"
  4786. "performance à custa do nível de detalhe."
  4787. #: flatcamGUI/FlatCAMGUI.py:3943
  4788. msgid "\"Open\" behavior"
  4789. msgstr "Comportamento \"Abrir\""
  4790. #: flatcamGUI/FlatCAMGUI.py:3945
  4791. msgid ""
  4792. "When checked the path for the last saved file is used when saving files,\n"
  4793. "and the path for the last opened file is used when opening files.\n"
  4794. "\n"
  4795. "When unchecked the path for opening files is the one used last: either the\n"
  4796. "path for saving files or the path for opening files."
  4797. msgstr ""
  4798. "Quando marcado, o caminho do último arquivo salvo é usado ao salvar arquivos,\n"
  4799. "e o caminho para o último arquivo aberto é usado ao abrir arquivos.\n"
  4800. "\n"
  4801. "Quando desmarcado, o caminho para abrir arquivos é aquele usado por último: o caminho\n"
  4802. "para salvar arquivos ou o caminho para abrir arquivos."
  4803. #: flatcamGUI/FlatCAMGUI.py:3954
  4804. msgid "Save Compressed Project"
  4805. msgstr "Salvar Projeto Compactado"
  4806. #: flatcamGUI/FlatCAMGUI.py:3956
  4807. msgid ""
  4808. "Whether to save a compressed or uncompressed project.\n"
  4809. "When checked it will save a compressed FlatCAM project."
  4810. msgstr ""
  4811. "Para salvar um projeto compactado ou descompactado.\n"
  4812. "Quando marcado, o projeto FlatCAM será salvo compactado."
  4813. #: flatcamGUI/FlatCAMGUI.py:3967
  4814. msgid "Compression Level:"
  4815. msgstr "Nível de Compressão:"
  4816. #: flatcamGUI/FlatCAMGUI.py:3969
  4817. msgid ""
  4818. "The level of compression used when saving\n"
  4819. "a FlatCAM project. Higher value means better compression\n"
  4820. "but require more RAM usage and more processing time."
  4821. msgstr ""
  4822. "O nível de compactação usado ao salvar o\n"
  4823. "Projeto FlatCAM. Maior valor significa melhor compactação, mas é necessário mais uso de RAM e mais tempo de processamento."
  4824. #: flatcamGUI/FlatCAMGUI.py:3992
  4825. msgid "Gerber General"
  4826. msgstr "Gerber Geral"
  4827. #: flatcamGUI/FlatCAMGUI.py:3995 flatcamGUI/FlatCAMGUI.py:4361 flatcamGUI/FlatCAMGUI.py:5135 flatcamGUI/FlatCAMGUI.py:5504 flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:505 flatcamGUI/ObjectUI.py:833 flatcamGUI/ObjectUI.py:1350
  4828. msgid "<b>Plot Options:</b>"
  4829. msgstr "<b>Opções de Gráfico:</b>"
  4830. #: flatcamGUI/FlatCAMGUI.py:4002 flatcamGUI/FlatCAMGUI.py:4373 flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:506
  4831. msgid "Solid"
  4832. msgstr "Preenchido"
  4833. #: flatcamGUI/FlatCAMGUI.py:4004 flatcamGUI/ObjectUI.py:158
  4834. msgid "Solid color polygons."
  4835. msgstr "Polígonos de cor sólida."
  4836. #: flatcamGUI/FlatCAMGUI.py:4009 flatcamGUI/ObjectUI.py:164
  4837. msgid "M-Color"
  4838. msgstr "Cor-M"
  4839. #: flatcamGUI/FlatCAMGUI.py:4011 flatcamGUI/ObjectUI.py:166
  4840. msgid "Draw polygons in different colors."
  4841. msgstr "Desenha polígonos em cores diferentes."
  4842. #: flatcamGUI/FlatCAMGUI.py:4016 flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/FlatCAMGUI.py:5139 flatcamGUI/ObjectUI.py:172
  4843. msgid "Plot"
  4844. msgstr "Plot"
  4845. #: flatcamGUI/FlatCAMGUI.py:4018 flatcamGUI/FlatCAMGUI.py:5141 flatcamGUI/ObjectUI.py:174 flatcamGUI/ObjectUI.py:546 flatcamGUI/ObjectUI.py:879 flatcamGUI/ObjectUI.py:1450
  4846. msgid "Plot (show) this object."
  4847. msgstr "Mostra o objeto no gráfico."
  4848. #: flatcamGUI/FlatCAMGUI.py:4023 flatcamGUI/FlatCAMGUI.py:5149 flatcamGUI/FlatCAMGUI.py:5587
  4849. msgid "Circle Steps:"
  4850. msgstr "Passos do Círculo:"
  4851. #: flatcamGUI/FlatCAMGUI.py:4025
  4852. msgid ""
  4853. "The number of circle steps for Gerber \n"
  4854. "circular aperture linear approximation."
  4855. msgstr ""
  4856. "Número de passos de círculo para Gerber.\n"
  4857. "Aproximação linear de abertura circular."
  4858. #: flatcamGUI/FlatCAMGUI.py:4040
  4859. msgid "Gerber Options"
  4860. msgstr "Opções Gerber"
  4861. #: flatcamGUI/FlatCAMGUI.py:4043 flatcamGUI/ObjectUI.py:251
  4862. msgid "<b>Isolation Routing:</b>"
  4863. msgstr "<b>Isolação no Roteamento:</b>"
  4864. #: flatcamGUI/FlatCAMGUI.py:4045 flatcamGUI/ObjectUI.py:253
  4865. msgid ""
  4866. "Create a Geometry object with\n"
  4867. "toolpaths to cut outside polygons."
  4868. msgstr ""
  4869. "Cria um objeto Geometria com\n"
  4870. "caminho de ferramenta para cortar polígonos externos."
  4871. #: flatcamGUI/FlatCAMGUI.py:4056 flatcamGUI/FlatCAMGUI.py:4735 flatcamGUI/FlatCAMGUI.py:5876 flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:804
  4872. msgid "Diameter of the cutting tool."
  4873. msgstr "Diâmetro da ferramenta de corte."
  4874. #: flatcamGUI/FlatCAMGUI.py:4063
  4875. msgid "Width (# passes):"
  4876. msgstr "Largura (nº de passos):"
  4877. #: flatcamGUI/FlatCAMGUI.py:4065 flatcamGUI/ObjectUI.py:275
  4878. msgid ""
  4879. "Width of the isolation gap in\n"
  4880. "number (integer) of tool widths."
  4881. msgstr ""
  4882. "Largura da isolação em\n"
  4883. "número (inteiro) de larguras da ferramenta."
  4884. #: flatcamGUI/FlatCAMGUI.py:4073 flatcamGUI/ObjectUI.py:283
  4885. msgid "Pass overlap:"
  4886. msgstr "Sobreposição:"
  4887. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/ObjectUI.py:285
  4888. #, python-format
  4889. msgid ""
  4890. "How much (fraction) of the tool width to overlap each tool pass.\n"
  4891. "Example:\n"
  4892. "A value here of 0.25 means an overlap of 25% from the tool diameter found above."
  4893. msgstr ""
  4894. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da ferramenta.\n"
  4895. "Exemplo:\n"
  4896. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da ferramenta."
  4897. #: flatcamGUI/FlatCAMGUI.py:4083 flatcamGUI/ObjectUI.py:295
  4898. msgid "Milling Type:"
  4899. msgstr "Tipo de Fresamento:"
  4900. #: flatcamGUI/FlatCAMGUI.py:4085 flatcamGUI/ObjectUI.py:297
  4901. msgid ""
  4902. "Milling type:\n"
  4903. "- climb / best for precision milling and to reduce tool usage\n"
  4904. "- conventional / useful when there is no backlash compensation"
  4905. msgstr ""
  4906. "Tipo de fresamento:\n"
  4907. "- subida: melhor para fresamento de precisão e para reduzir o uso da ferramenta\n"
  4908. "- convencional: útil quando não há compensação de folga"
  4909. #: flatcamGUI/FlatCAMGUI.py:4095
  4910. msgid "Combine Passes"
  4911. msgstr "Combine Passes"
  4912. #: flatcamGUI/FlatCAMGUI.py:4097 flatcamGUI/ObjectUI.py:309
  4913. msgid "Combine all passes into one object"
  4914. msgstr "Combine all passes into one object"
  4915. #: flatcamGUI/FlatCAMGUI.py:4102
  4916. msgid "<b>Clear non-copper:</b>"
  4917. msgstr "<b>Limpar não-cobre:</b>"
  4918. #: flatcamGUI/FlatCAMGUI.py:4104 flatcamGUI/FlatCAMGUI.py:5764 flatcamGUI/ObjectUI.py:386
  4919. msgid ""
  4920. "Create a Geometry object with\n"
  4921. "toolpaths to cut all non-copper regions."
  4922. msgstr ""
  4923. "Cria um objeto Geometria com\n"
  4924. "caminho de ferramenta para cortar todas as regiões que não são de cobre."
  4925. #: flatcamGUI/FlatCAMGUI.py:4113 flatcamGUI/FlatCAMGUI.py:4139 flatcamGUI/ObjectUI.py:430 flatcamGUI/ObjectUI.py:464
  4926. msgid "Boundary Margin:"
  4927. msgstr "Margem de Limite:"
  4928. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/ObjectUI.py:432
  4929. msgid ""
  4930. "Specify the edge of the PCB\n"
  4931. "by drawing a box around all\n"
  4932. "objects with this minimum\n"
  4933. "distance."
  4934. msgstr ""
  4935. "Especifica a borda do PCB\n"
  4936. "desenhando uma caixa em volta de todos os\n"
  4937. "objetos com esta\n"
  4938. "distância mínima."
  4939. #: flatcamGUI/FlatCAMGUI.py:4125 flatcamGUI/FlatCAMGUI.py:4148
  4940. msgid "Rounded corners"
  4941. msgstr "Cantos arredondados"
  4942. #: flatcamGUI/FlatCAMGUI.py:4127
  4943. msgid ""
  4944. "Creates a Geometry objects with polygons\n"
  4945. "covering the copper-free areas of the PCB."
  4946. msgstr ""
  4947. "Cria um objeto Geometria com polígonos\n"
  4948. "cobrindo as áreas livres de cobre do PCB."
  4949. #: flatcamGUI/FlatCAMGUI.py:4133 flatcamGUI/ObjectUI.py:454
  4950. msgid "<b>Bounding Box:</b>"
  4951. msgstr "<b>Caixa Delimitadora:</b>"
  4952. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/ObjectUI.py:466
  4953. msgid ""
  4954. "Distance of the edges of the box\n"
  4955. "to the nearest polygon."
  4956. msgstr ""
  4957. "Distância das bordas da caixa\n"
  4958. "para o polígono mais próximo."
  4959. #: flatcamGUI/FlatCAMGUI.py:4150 flatcamGUI/ObjectUI.py:476
  4960. msgid ""
  4961. "If the bounding box is \n"
  4962. "to have rounded corners\n"
  4963. "their radius is equal to\n"
  4964. "the margin."
  4965. msgstr ""
  4966. "Se a caixa delimitadora tiver\n"
  4967. "cantos arredondados\n"
  4968. "o seu raio é igual\n"
  4969. "a margem."
  4970. #: flatcamGUI/FlatCAMGUI.py:4164
  4971. msgid "Gerber Adv. Options"
  4972. msgstr "Opções Av. Gerber"
  4973. #: flatcamGUI/FlatCAMGUI.py:4167
  4974. msgid "<b>Advanced Param.:</b>"
  4975. msgstr "<b>Parâmetros avançados:</b>"
  4976. #: flatcamGUI/FlatCAMGUI.py:4169
  4977. msgid ""
  4978. "A list of Gerber advanced parameters.\n"
  4979. "Those parameters are available only for\n"
  4980. "Advanced App. Level."
  4981. msgstr ""
  4982. "Uma lista de parâmetros avançados do Gerber.\n"
  4983. "Esses parâmetros estão disponíveis somente para\n"
  4984. "App no nível avançado."
  4985. #: flatcamGUI/FlatCAMGUI.py:4179 flatcamGUI/ObjectUI.py:314
  4986. msgid "\"Follow\""
  4987. msgstr "\"Segue\""
  4988. #: flatcamGUI/FlatCAMGUI.py:4181 flatcamGUI/ObjectUI.py:316
  4989. msgid ""
  4990. "Generate a 'Follow' geometry.\n"
  4991. "This means that it will cut through\n"
  4992. "the middle of the trace."
  4993. msgstr ""
  4994. "Gera uma geometria \"Segue\".\n"
  4995. "Isso significa que ele cortará\n"
  4996. "o traço no meio."
  4997. #: flatcamGUI/FlatCAMGUI.py:4188
  4998. msgid "Table Show/Hide"
  4999. msgstr "Mostra/Esconde Tabela"
  5000. #: flatcamGUI/FlatCAMGUI.py:4190
  5001. msgid ""
  5002. "Toggle the display of the Gerber Apertures Table.\n"
  5003. "Also, on hide, it will delete all mark shapes\n"
  5004. "that are drawn on canvas."
  5005. msgstr ""
  5006. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  5007. "Além disso, ao ocultar, ele excluirá todas as formas de marcas\n"
  5008. "que estão desenhadas na tela."
  5009. #: flatcamGUI/FlatCAMGUI.py:4229
  5010. msgid "Gerber Export"
  5011. msgstr "Exportar Gerber"
  5012. #: flatcamGUI/FlatCAMGUI.py:4232 flatcamGUI/FlatCAMGUI.py:4884
  5013. msgid "<b>Export Options:</b>"
  5014. msgstr "<b>Opções de Exportar:</b>"
  5015. #: flatcamGUI/FlatCAMGUI.py:4234
  5016. msgid ""
  5017. "The parameters set here are used in the file exported\n"
  5018. "when using the File -> Export -> Export Gerber menu entry."
  5019. msgstr ""
  5020. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  5021. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Gerber."
  5022. #: flatcamGUI/FlatCAMGUI.py:4243 flatcamGUI/FlatCAMGUI.py:4895
  5023. msgid "<b>Units</b>:"
  5024. msgstr "<b>Unidades</b>:"
  5025. #: flatcamGUI/FlatCAMGUI.py:4245 flatcamGUI/FlatCAMGUI.py:4251
  5026. msgid "The units used in the Gerber file."
  5027. msgstr "As unidades usadas no arquivo Gerber."
  5028. #: flatcamGUI/FlatCAMGUI.py:4257 flatcamGUI/FlatCAMGUI.py:4909
  5029. msgid "<b>Int/Decimals:</b>"
  5030. msgstr "<b>Int/Decimal:</b>"
  5031. #: flatcamGUI/FlatCAMGUI.py:4259
  5032. msgid ""
  5033. "The number of digits in the whole part of the number\n"
  5034. "and in the fractional part of the number."
  5035. msgstr ""
  5036. "O número de dígitos na parte inteira\n"
  5037. "e na parte fracionária do número."
  5038. #: flatcamGUI/FlatCAMGUI.py:4270
  5039. msgid ""
  5040. "This numbers signify the number of digits in\n"
  5041. "the whole part of Gerber coordinates."
  5042. msgstr ""
  5043. "Esses números significam o número de dígitos \n"
  5044. "em toda a parte das coordenadas de Gerber."
  5045. #: flatcamGUI/FlatCAMGUI.py:4284
  5046. msgid ""
  5047. "This numbers signify the number of digits in\n"
  5048. "the decimal part of Gerber coordinates."
  5049. msgstr ""
  5050. "Estes números significam o número de dígitos\n"
  5051. "na parte decimal das coordenadas de Gerber."
  5052. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/FlatCAMGUI.py:4970
  5053. msgid "<b>Zeros</b>:"
  5054. msgstr "<b>Zeros</b>:"
  5055. #: flatcamGUI/FlatCAMGUI.py:4296 flatcamGUI/FlatCAMGUI.py:4306
  5056. msgid ""
  5057. "This sets the type of Gerber zeros.\n"
  5058. "If LZ then Leading Zeros are removed and\n"
  5059. "Trailing Zeros are kept.\n"
  5060. "If TZ is checked then Trailing Zeros are removed\n"
  5061. "and Leading Zeros are kept."
  5062. msgstr ""
  5063. "Define o tipo de zeros de Gerber.\n"
  5064. "LZ: os Zeros à Esquerda são removidos\n"
  5065. "e os Zeros à Direita são mantidos.\n"
  5066. "TZ: os Zeros à Direita serão removidos\n"
  5067. "e os Zeros à Esquerda serão mantidos."
  5068. #: flatcamGUI/FlatCAMGUI.py:4326 flatcamGUI/FlatCAMGUI.py:5011 flatcamGUI/FlatCAMGUI.py:5470 flatcamGUI/FlatCAMGUI.py:5762 flatcamGUI/FlatCAMGUI.py:5863 flatcamGUI/FlatCAMGUI.py:5942 flatcamGUI/FlatCAMGUI.py:6001 flatcamGUI/FlatCAMGUI.py:6104 flatcamGUI/FlatCAMGUI.py:6165 flatcamGUI/FlatCAMGUI.py:6364 flatcamGUI/FlatCAMGUI.py:6491
  5069. msgid "<b>Parameters:</b>"
  5070. msgstr "<b>Parâmetros:</b>"
  5071. #: flatcamGUI/FlatCAMGUI.py:4328
  5072. msgid "A list of Gerber Editor parameters."
  5073. msgstr "Uma lista de parâmetros do Editor Gerber."
  5074. #: flatcamGUI/FlatCAMGUI.py:4336 flatcamGUI/FlatCAMGUI.py:5021 flatcamGUI/FlatCAMGUI.py:5480
  5075. msgid "Selection limit:"
  5076. msgstr "Limite de seleção:"
  5077. #: flatcamGUI/FlatCAMGUI.py:4338
  5078. msgid ""
  5079. "Set the number of selected Gerber geometry\n"
  5080. "items above which the utility geometry\n"
  5081. "becomes just a selection rectangle.\n"
  5082. "Increases the performance when moving a\n"
  5083. "large number of geometric elements."
  5084. msgstr ""
  5085. "Define o número máximo de ítens de geometria Gerber\n"
  5086. "selecionados. Acima desse valor a geometria se torna um\n"
  5087. "retângulo de seleção.\n"
  5088. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  5089. #: flatcamGUI/FlatCAMGUI.py:4358
  5090. msgid "Excellon General"
  5091. msgstr "Excellon Geral"
  5092. #: flatcamGUI/FlatCAMGUI.py:4380
  5093. msgid "<b>Excellon Format:</b>"
  5094. msgstr "<b>Formato Excellon:</b>"
  5095. #: flatcamGUI/FlatCAMGUI.py:4382
  5096. msgid ""
  5097. "The NC drill files, usually named Excellon files\n"
  5098. "are files that can be found in different formats.\n"
  5099. "Here we set the format used when the provided\n"
  5100. "coordinates are not using period.\n"
  5101. "\n"
  5102. "Possible presets:\n"
  5103. "\n"
  5104. "PROTEUS 3:3 MM LZ\n"
  5105. "DipTrace 5:2 MM TZ\n"
  5106. "DipTrace 4:3 MM LZ\n"
  5107. "\n"
  5108. "EAGLE 3:3 MM TZ\n"
  5109. "EAGLE 4:3 MM TZ\n"
  5110. "EAGLE 2:5 INCH TZ\n"
  5111. "EAGLE 3:5 INCH TZ\n"
  5112. "\n"
  5113. "ALTIUM 2:4 INCH LZ\n"
  5114. "Sprint Layout 2:4 INCH LZ\n"
  5115. "KiCAD 3:5 INCH TZ"
  5116. msgstr ""
  5117. "Os arquivos de broca NC, normalmente chamados arquivos Excellon\n"
  5118. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  5119. "Aqui definiremos o formato usado quando as coordenadas\n"
  5120. "fornecidas não estiverem usando ponto.\n"
  5121. "\n"
  5122. "Padrões possíveis:\n"
  5123. "\n"
  5124. "PROTEUS 3:3 mm LZ\n"
  5125. "DipTrace 5:2 mm TZ\n"
  5126. "DipTrace 4:3 mm LZ\n"
  5127. "\n"
  5128. "EAGLE 3:3 mm TZ\n"
  5129. "EAGLE 4:3 mm TZ\n"
  5130. "EAGLE 2:5 polegadas TZ\n"
  5131. "EAGLE 3:5 polegadas TZ\n"
  5132. "\n"
  5133. "ALTIUM 2:4 polegadas LZ\n"
  5134. "Sprint Layout 2:4 polegadas LZ\n"
  5135. "KiCAD 3:5 polegadas TZ"
  5136. #: flatcamGUI/FlatCAMGUI.py:4407
  5137. msgid "INCH:"
  5138. msgstr "POLEGADAS:"
  5139. #: flatcamGUI/FlatCAMGUI.py:4410
  5140. msgid "Default values for INCH are 2:4"
  5141. msgstr "Valores padrão para Polegadas são 2:4"
  5142. #: flatcamGUI/FlatCAMGUI.py:4418 flatcamGUI/FlatCAMGUI.py:4451 flatcamGUI/FlatCAMGUI.py:4924
  5143. msgid ""
  5144. "This numbers signify the number of digits in\n"
  5145. "the whole part of Excellon coordinates."
  5146. msgstr ""
  5147. "Esses números significam o número de dígitos\n"
  5148. "em toda a parte das coordenadas do Excellon."
  5149. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4465 flatcamGUI/FlatCAMGUI.py:4938
  5150. msgid ""
  5151. "This numbers signify the number of digits in\n"
  5152. "the decimal part of Excellon coordinates."
  5153. msgstr ""
  5154. "Estes números significam o número de dígitos na\n"
  5155. "parte decimal das coordenadas de Excellon."
  5156. #: flatcamGUI/FlatCAMGUI.py:4440
  5157. msgid "METRIC:"
  5158. msgstr "MÉTRICO:"
  5159. #: flatcamGUI/FlatCAMGUI.py:4443
  5160. msgid "Default values for METRIC are 3:3"
  5161. msgstr "Valores padrão para MÉTRICO são 3:3"
  5162. #: flatcamGUI/FlatCAMGUI.py:4474
  5163. msgid "Default <b>Zeros</b>:"
  5164. msgstr "Padrão <b>Zeros</b>:"
  5165. #: flatcamGUI/FlatCAMGUI.py:4477 flatcamGUI/FlatCAMGUI.py:4973
  5166. msgid ""
  5167. "This sets the type of Excellon zeros.\n"
  5168. "If LZ then Leading Zeros are kept and\n"
  5169. "Trailing Zeros are removed.\n"
  5170. "If TZ is checked then Trailing Zeros are kept\n"
  5171. "and Leading Zeros are removed."
  5172. msgstr ""
  5173. "Define o tipo de zeros de Excellon.\n"
  5174. "LZ: os Zeros à Esquerda são mantidos\n"
  5175. "e os Zeros à Direita são removidos.\n"
  5176. "TZ: os Zeros à Direita serão mantidos\n"
  5177. "e os Zeros à Esquerda serão removidos."
  5178. #: flatcamGUI/FlatCAMGUI.py:4488
  5179. msgid ""
  5180. "This sets the default type of Excellon zeros.\n"
  5181. "If it is not detected in the parsed file the value here\n"
  5182. "will be used.If LZ then Leading Zeros are kept and\n"
  5183. "Trailing Zeros are removed.\n"
  5184. "If TZ is checked then Trailing Zeros are kept\n"
  5185. "and Leading Zeros are removed."
  5186. msgstr ""
  5187. "Define o tipo padrão de zeros de Excellon.\n"
  5188. "Se não for detectado no arquivo analisado o valor aqui\n"
  5189. " será usado. LZ: os Zeros à Esquerda são mantidos\n"
  5190. "e os Zeros à Direita são removidos.\n"
  5191. "TZ: os Zeros à Direita serão mantidos\n"
  5192. "e os Zeros à Esquerda serão removidos."
  5193. #: flatcamGUI/FlatCAMGUI.py:4498
  5194. msgid "Default <b>Units</b>:"
  5195. msgstr "<b>Unidades</b> Padrão:"
  5196. #: flatcamGUI/FlatCAMGUI.py:4501
  5197. msgid ""
  5198. "This sets the default units of Excellon files.\n"
  5199. "If it is not detected in the parsed file the value here\n"
  5200. "will be used.Some Excellon files don't have an header\n"
  5201. "therefore this parameter will be used."
  5202. msgstr ""
  5203. "Configura as unidades padrão dos arquivos Excellon.\n"
  5204. "Se não for detectado no arquivo analisado, o valor aqui\n"
  5205. "será usado. Alguns arquivos Excellon não possuem um cabeçalho\n"
  5206. ", e assim este parâmetro será usado."
  5207. #: flatcamGUI/FlatCAMGUI.py:4512
  5208. msgid ""
  5209. "This sets the units of Excellon files.\n"
  5210. "Some Excellon files don't have an header\n"
  5211. "therefore this parameter will be used."
  5212. msgstr ""
  5213. "Configura as unidades dos arquivos Excellon.\n"
  5214. "Alguns arquivos Excellon não possuem um cabeçalho\n"
  5215. ", e assim este parâmetro será usado."
  5216. #: flatcamGUI/FlatCAMGUI.py:4520
  5217. msgid "<b>Excellon Optimization:</b>"
  5218. msgstr "<b>Otimização Excellon:</b>"
  5219. #: flatcamGUI/FlatCAMGUI.py:4523
  5220. msgid "Algorithm: "
  5221. msgstr "Algoritmo: "
  5222. #: flatcamGUI/FlatCAMGUI.py:4525 flatcamGUI/FlatCAMGUI.py:4539
  5223. msgid ""
  5224. "This sets the optimization type for the Excellon drill path.\n"
  5225. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5226. "Guided Local Path is used. Default search time is 3sec.\n"
  5227. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5228. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5229. "\n"
  5230. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5231. "Travelling Salesman algorithm for path optimization."
  5232. msgstr ""
  5233. "Define o tipo de otimização para o caminho de perfuração do Excellon.\n"
  5234. "Se MH estiver marcado, será usado o algoritmo do Google OR-Tools com MetaHeuristic.\n"
  5235. "O tempo de pesquisa padrão é de 3s.\n"
  5236. "Usar o comando TCL set_sys excellon_search_time para definir outros valores.\n"
  5237. "Se Básico estiver marcado, será usado o algoritmo básico do Google OR-Tools.\n"
  5238. "\n"
  5239. "Se DESABILITADO, FlatCAM trabalha no modo de 32 bits e usa\n"
  5240. "o algorítmo Travelling Salesman para otimização de caminhos."
  5241. #: flatcamGUI/FlatCAMGUI.py:4550
  5242. msgid "Optimization Time: "
  5243. msgstr "Tempo de Otimização: "
  5244. #: flatcamGUI/FlatCAMGUI.py:4553
  5245. msgid ""
  5246. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5247. "maximum threshold for how much time is spent doing the\n"
  5248. "path optimization. This max duration is set here.\n"
  5249. "In seconds."
  5250. msgstr ""
  5251. "Quando o Metaheuristic (MH) da OR-Tools está ativado, existe um limite\n"
  5252. "máximo para o tempo gasto para otimizar o\n"
  5253. "caminho. Esse tempo máximo é definido aqui.\n"
  5254. "Em segundos."
  5255. #: flatcamGUI/FlatCAMGUI.py:4596
  5256. msgid "Excellon Options"
  5257. msgstr "Opções Excellon"
  5258. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/ObjectUI.py:584
  5259. msgid "<b>Create CNC Job</b>"
  5260. msgstr "<b>Criar Trabalho CNC</b>"
  5261. #: flatcamGUI/FlatCAMGUI.py:4601
  5262. msgid ""
  5263. "Parameters used to create a CNC Job object\n"
  5264. "for this drill object."
  5265. msgstr ""
  5266. "Parâmetros usados para criar um objeto de trabalho CNC\n"
  5267. "para este objeto de broca."
  5268. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:5196 flatcamGUI/FlatCAMGUI.py:6300 flatcamGUI/ObjectUI.py:595 flatcamGUI/ObjectUI.py:1062 flatcamTools/ToolCalculators.py:108
  5269. msgid "Cut Z:"
  5270. msgstr "Profundidade de Corte:"
  5271. #: flatcamGUI/FlatCAMGUI.py:4611 flatcamGUI/ObjectUI.py:597
  5272. msgid ""
  5273. "Drill depth (negative)\n"
  5274. "below the copper surface."
  5275. msgstr ""
  5276. "Profundidade da broca (negativo)\n"
  5277. "abaixo da superfície de cobre."
  5278. #: flatcamGUI/FlatCAMGUI.py:4618 flatcamGUI/FlatCAMGUI.py:5229 flatcamGUI/ObjectUI.py:605 flatcamGUI/ObjectUI.py:1098
  5279. msgid "Travel Z:"
  5280. msgstr "Altura para Deslocamento:"
  5281. #: flatcamGUI/FlatCAMGUI.py:4620 flatcamGUI/ObjectUI.py:607
  5282. msgid ""
  5283. "Tool height when travelling\n"
  5284. "across the XY plane."
  5285. msgstr ""
  5286. "Altura da ferramenta durante\n"
  5287. "deslocamentos sobre o plano XY."
  5288. #: flatcamGUI/FlatCAMGUI.py:4628 flatcamGUI/FlatCAMGUI.py:5239
  5289. msgid "Tool change:"
  5290. msgstr "Troca de ferramentas:"
  5291. #: flatcamGUI/FlatCAMGUI.py:4630 flatcamGUI/FlatCAMGUI.py:5241 flatcamGUI/ObjectUI.py:617
  5292. msgid ""
  5293. "Include tool-change sequence\n"
  5294. "in G-Code (Pause for tool change)."
  5295. msgstr ""
  5296. "Pausa para troca de ferramentas. Inclua a sequência\n"
  5297. "de troca de ferramentas em G-Code."
  5298. #: flatcamGUI/FlatCAMGUI.py:4637 flatcamGUI/FlatCAMGUI.py:5249
  5299. msgid "Toolchange Z:"
  5300. msgstr "Altura para a troca:"
  5301. #: flatcamGUI/FlatCAMGUI.py:4639 flatcamGUI/FlatCAMGUI.py:5251
  5302. msgid "Toolchange Z position."
  5303. msgstr "Posição do eixo Z (altura) para a troca de ferramentas."
  5304. #: flatcamGUI/FlatCAMGUI.py:4645
  5305. msgid "Feedrate:"
  5306. msgstr "Avanço (Mergulho):"
  5307. #: flatcamGUI/FlatCAMGUI.py:4647
  5308. msgid ""
  5309. "Tool speed while drilling\n"
  5310. "(in units per minute)."
  5311. msgstr ""
  5312. "Velocidade da ferramenta durante a perfuração\n"
  5313. "(em unidades por minuto)."
  5314. #: flatcamGUI/FlatCAMGUI.py:4655
  5315. msgid "Spindle Speed:"
  5316. msgstr "Velocidade do Spindle:"
  5317. #: flatcamGUI/FlatCAMGUI.py:4657 flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:684
  5318. msgid ""
  5319. "Speed of the spindle\n"
  5320. "in RPM (optional)"
  5321. msgstr ""
  5322. "Velocidade do spindle\n"
  5323. "em RPM (opcional)"
  5324. #: flatcamGUI/FlatCAMGUI.py:4665 flatcamGUI/FlatCAMGUI.py:5289
  5325. msgid "Spindle dir.:"
  5326. msgstr "Sentido de Rotação:"
  5327. #: flatcamGUI/FlatCAMGUI.py:4667 flatcamGUI/FlatCAMGUI.py:5291
  5328. msgid ""
  5329. "This sets the direction that the spindle is rotating.\n"
  5330. "It can be either:\n"
  5331. "- CW = clockwise or\n"
  5332. "- CCW = counter clockwise"
  5333. msgstr ""
  5334. "Define o sentido de rotação do spindle.\n"
  5335. "Pode ser:\n"
  5336. "- CW = sentido horário ou\n"
  5337. "- CCW = sentido anti-horário"
  5338. #: flatcamGUI/FlatCAMGUI.py:4679 flatcamGUI/FlatCAMGUI.py:5303 flatcamGUI/ObjectUI.py:692 flatcamGUI/ObjectUI.py:1224
  5339. msgid "Dwell:"
  5340. msgstr "Espera Velocidade:"
  5341. #: flatcamGUI/FlatCAMGUI.py:4681 flatcamGUI/FlatCAMGUI.py:5305 flatcamGUI/ObjectUI.py:694 flatcamGUI/ObjectUI.py:1227
  5342. msgid ""
  5343. "Pause to allow the spindle to reach its\n"
  5344. "speed before cutting."
  5345. msgstr ""
  5346. "Pausa para permitir que o spindle atinja sua\n"
  5347. "velocidade antes de cortar."
  5348. #: flatcamGUI/FlatCAMGUI.py:4684 flatcamGUI/FlatCAMGUI.py:5308
  5349. msgid "Duration:"
  5350. msgstr "Tempo de espera:"
  5351. #: flatcamGUI/FlatCAMGUI.py:4686 flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/ObjectUI.py:699 flatcamGUI/ObjectUI.py:1234
  5352. msgid "Number of milliseconds for spindle to dwell."
  5353. msgstr "Tempo em Milissegundos para o spindle atingir a velocidade."
  5354. #: flatcamGUI/FlatCAMGUI.py:4698 flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/ObjectUI.py:707
  5355. msgid "Postprocessor:"
  5356. msgstr "Pós-processador:"
  5357. #: flatcamGUI/FlatCAMGUI.py:4700
  5358. msgid ""
  5359. "The postprocessor file that dictates\n"
  5360. "gcode output."
  5361. msgstr ""
  5362. "O arquivo de pós-processamento (json) que define\n"
  5363. "a saída G-Ccode."
  5364. #: flatcamGUI/FlatCAMGUI.py:4709
  5365. msgid "<b>Gcode: </b>"
  5366. msgstr "<b>G-Code: </b>"
  5367. #: flatcamGUI/FlatCAMGUI.py:4711
  5368. msgid ""
  5369. "Choose what to use for GCode generation:\n"
  5370. "'Drills', 'Slots' or 'Both'.\n"
  5371. "When choosing 'Slots' or 'Both', slots will be\n"
  5372. "converted to drills."
  5373. msgstr ""
  5374. "Escolha o que usar para a geração de G-Code:\n"
  5375. "'Drill', 'Slots' ou 'Both'.\n"
  5376. "Quando escolher 'Slots' ou 'Both', os slots serão\n"
  5377. "convertidos para brocas."
  5378. #: flatcamGUI/FlatCAMGUI.py:4727 flatcamGUI/ObjectUI.py:772
  5379. msgid "<b>Mill Holes</b>"
  5380. msgstr "<b>Fresar Furos</b>"
  5381. #: flatcamGUI/FlatCAMGUI.py:4729 flatcamGUI/ObjectUI.py:774
  5382. msgid "Create Geometry for milling holes."
  5383. msgstr "Cria geometria para furos de fresamento."
  5384. #: flatcamGUI/FlatCAMGUI.py:4733
  5385. msgid "Drill Tool dia:"
  5386. msgstr "Diâmetro da Broca:"
  5387. #: flatcamGUI/FlatCAMGUI.py:4740
  5388. msgid "Slot Tool dia:"
  5389. msgstr "Diâmetro da Fresa:"
  5390. #: flatcamGUI/FlatCAMGUI.py:4742
  5391. msgid ""
  5392. "Diameter of the cutting tool\n"
  5393. "when milling slots."
  5394. msgstr ""
  5395. "Diâmetro da ferramenta de corte\n"
  5396. "quando fresar fendas (ranhuras)."
  5397. #: flatcamGUI/FlatCAMGUI.py:4754
  5398. msgid "Defaults"
  5399. msgstr "Padrões"
  5400. #: flatcamGUI/FlatCAMGUI.py:4767
  5401. msgid "Excellon Adv. Options"
  5402. msgstr "Opções Avançadas Excellon"
  5403. #: flatcamGUI/FlatCAMGUI.py:4773 flatcamGUI/FlatCAMGUI.py:5343
  5404. msgid "<b>Advanced Options:</b>"
  5405. msgstr "<b>Opções Avançadas:</b>"
  5406. #: flatcamGUI/FlatCAMGUI.py:4775
  5407. msgid ""
  5408. "Parameters used to create a CNC Job object\n"
  5409. "for this drill object that are shown when App Level is Advanced."
  5410. msgstr ""
  5411. "Parâmetros usados para criar um objeto de trabalho do CNC\n"
  5412. "para furação que são mostrados quando o nível do aplicativo for Avançado."
  5413. #: flatcamGUI/FlatCAMGUI.py:4783
  5414. msgid "Offset Z:"
  5415. msgstr "Ajuste de Altura:"
  5416. #: flatcamGUI/FlatCAMGUI.py:4785 flatcamGUI/ObjectUI.py:574
  5417. msgid ""
  5418. "Some drill bits (the larger ones) need to drill deeper\n"
  5419. "to create the desired exit hole diameter due of the tip shape.\n"
  5420. "The value here can compensate the Cut Z parameter."
  5421. msgstr ""
  5422. "Algumas brocas (as maiores) precisam perfurar mais profundamente\n"
  5423. "para criar o diâmetro desejado do orifício de saída devido à forma da ponta.\n"
  5424. "Este valor pode compensar o parâmetro Profundidade de Corte Z."
  5425. #: flatcamGUI/FlatCAMGUI.py:4792 flatcamGUI/FlatCAMGUI.py:5354
  5426. msgid "Toolchange X,Y:"
  5427. msgstr "Troca de ferramentas X,Y:"
  5428. #: flatcamGUI/FlatCAMGUI.py:4794 flatcamGUI/FlatCAMGUI.py:5356
  5429. msgid "Toolchange X,Y position."
  5430. msgstr "Posição X,Y para troca de ferramentas."
  5431. #: flatcamGUI/FlatCAMGUI.py:4800 flatcamGUI/FlatCAMGUI.py:5363 flatcamGUI/ObjectUI.py:634
  5432. msgid "Start move Z:"
  5433. msgstr "Altura Z Inicial:"
  5434. #: flatcamGUI/FlatCAMGUI.py:4802
  5435. msgid ""
  5436. "Height of the tool just after start.\n"
  5437. "Delete the value if you don't need this feature."
  5438. msgstr ""
  5439. "Altura da ferramenta antes de iniciar o trabalho.\n"
  5440. "Exclua o valor se você não precisar deste recurso."
  5441. #: flatcamGUI/FlatCAMGUI.py:4809 flatcamGUI/FlatCAMGUI.py:5373 flatcamGUI/ObjectUI.py:644 flatcamGUI/ObjectUI.py:1144
  5442. msgid "End move Z:"
  5443. msgstr "Altura Z Final:"
  5444. #: flatcamGUI/FlatCAMGUI.py:4811 flatcamGUI/FlatCAMGUI.py:5375
  5445. msgid ""
  5446. "Height of the tool after\n"
  5447. "the last move at the end of the job."
  5448. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  5449. #: flatcamGUI/FlatCAMGUI.py:4818 flatcamGUI/FlatCAMGUI.py:5383 flatcamGUI/ObjectUI.py:665
  5450. msgid "Feedrate Rapids:"
  5451. msgstr "Taxa de Avanço Rápida:"
  5452. #: flatcamGUI/FlatCAMGUI.py:4820 flatcamGUI/ObjectUI.py:667
  5453. msgid ""
  5454. "Tool speed while drilling\n"
  5455. "(in units per minute).\n"
  5456. "This is for the rapid move G00.\n"
  5457. "It is useful only for Marlin,\n"
  5458. "ignore for any other cases."
  5459. msgstr ""
  5460. "Velocidade da ferramenta durante a perfuração\n"
  5461. "(em unidades por minuto).\n"
  5462. "Usado para movimento rápido G00.\n"
  5463. "É útil apenas para Marlin,\n"
  5464. "ignore para outros casos."
  5465. #: flatcamGUI/FlatCAMGUI.py:4831 flatcamGUI/FlatCAMGUI.py:5407 flatcamGUI/ObjectUI.py:718 flatcamGUI/ObjectUI.py:1256
  5466. msgid "Probe Z depth:"
  5467. msgstr "Profundidade Z da Sonda:"
  5468. #: flatcamGUI/FlatCAMGUI.py:4833 flatcamGUI/FlatCAMGUI.py:5409 flatcamGUI/ObjectUI.py:720 flatcamGUI/ObjectUI.py:1259
  5469. msgid ""
  5470. "The maximum depth that the probe is allowed\n"
  5471. "to probe. Negative value, in current units."
  5472. msgstr ""
  5473. "Profundidade máxima permitida para a sonda.\n"
  5474. "Valor negativo, em unidades atuais."
  5475. #: flatcamGUI/FlatCAMGUI.py:4841 flatcamGUI/FlatCAMGUI.py:5417 flatcamGUI/ObjectUI.py:730 flatcamGUI/ObjectUI.py:1270
  5476. msgid "Feedrate Probe:"
  5477. msgstr "Avanço da Sonda:"
  5478. #: flatcamGUI/FlatCAMGUI.py:4843 flatcamGUI/FlatCAMGUI.py:5419 flatcamGUI/ObjectUI.py:732 flatcamGUI/ObjectUI.py:1273
  5479. msgid "The feedrate used while the probe is probing."
  5480. msgstr "Velocidade de Avanço usada enquanto a sonda está operando."
  5481. #: flatcamGUI/FlatCAMGUI.py:4849 flatcamGUI/FlatCAMGUI.py:5426
  5482. msgid "Fast Plunge:"
  5483. msgstr "Mergulho Rápido:"
  5484. #: flatcamGUI/FlatCAMGUI.py:4851 flatcamGUI/FlatCAMGUI.py:5428
  5485. msgid ""
  5486. "By checking this, the vertical move from\n"
  5487. "Z_Toolchange to Z_move is done with G0,\n"
  5488. "meaning the fastest speed available.\n"
  5489. "WARNING: the move is done at Toolchange X,Y coords."
  5490. msgstr ""
  5491. "Ao marcado, o movimento vertical da altura de\n"
  5492. "Troca de Ferramentas para a altura de Deslocamento\n"
  5493. "é feito com G0, na velocidade mais rápida disponível.\n"
  5494. "AVISO: o movimento é feito nas Coordenadas X,Y de troca de ferramentas."
  5495. #: flatcamGUI/FlatCAMGUI.py:4860
  5496. msgid "Fast Retract:"
  5497. msgstr "Recolhimento Rápido:"
  5498. #: flatcamGUI/FlatCAMGUI.py:4862
  5499. msgid ""
  5500. "Exit hole strategy.\n"
  5501. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5502. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5503. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5504. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5505. "(travel height) is done as fast as possible (G0) in one move."
  5506. msgstr ""
  5507. "Estratégia para sair dos furos.\n"
  5508. "- Quando desmarcado, ao sair do furo, a broca sobe lentamente, com\n"
  5509. "avanço definido (G1), até a profundidade zero e depois some o mais\n"
  5510. "rápido possível (G0) até a altura de deslocamento.\n"
  5511. "- Quando marcado, o deslocamento da profundidade de corte para a altura de deslocamento\n"
  5512. " é feito o mais rápido possível (G0) em um único movimento."
  5513. #: flatcamGUI/FlatCAMGUI.py:4881
  5514. msgid "Excellon Export"
  5515. msgstr "Exportar Excellon"
  5516. #: flatcamGUI/FlatCAMGUI.py:4886
  5517. msgid ""
  5518. "The parameters set here are used in the file exported\n"
  5519. "when using the File -> Export -> Export Excellon menu entry."
  5520. msgstr ""
  5521. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  5522. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Excellon."
  5523. #: flatcamGUI/FlatCAMGUI.py:4897 flatcamGUI/FlatCAMGUI.py:4903
  5524. msgid "The units used in the Excellon file."
  5525. msgstr "A unidade usada no arquivo Excellon."
  5526. #: flatcamGUI/FlatCAMGUI.py:4911
  5527. msgid ""
  5528. "The NC drill files, usually named Excellon files\n"
  5529. "are files that can be found in different formats.\n"
  5530. "Here we set the format used when the provided\n"
  5531. "coordinates are not using period."
  5532. msgstr ""
  5533. "Os arquivos com a furação, geralmente chamados de arquivos Excellon\n"
  5534. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  5535. "Aqui é definido o formato usado quando as coordenadas\n"
  5536. "fornecidas não usam ponto."
  5537. #: flatcamGUI/FlatCAMGUI.py:4947
  5538. msgid "<b>Format:</b>"
  5539. msgstr "<b>Formato:</b>"
  5540. #: flatcamGUI/FlatCAMGUI.py:4949 flatcamGUI/FlatCAMGUI.py:4959
  5541. msgid ""
  5542. "Select the kind of coordinates format used.\n"
  5543. "Coordinates can be saved with decimal point or without.\n"
  5544. "When there is no decimal point, it is required to specify\n"
  5545. "the number of digits for integer part and the number of decimals.\n"
  5546. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5547. "or TZ = trailing zeros are kept."
  5548. msgstr ""
  5549. "Selecione o formato de coordenadas usado.\n"
  5550. "As coordenadas podem ser salvas com ou sem ponto decimal.\n"
  5551. "Quando não há ponto decimal, é necessário especificar\n"
  5552. "o número de dígitos para a parte inteira e o número de casas decimais.\n"
  5553. "Deve ser especificado LZ (manter zeros à esquerda)\n"
  5554. "ou TZ (manter zeros à direita)."
  5555. #: flatcamGUI/FlatCAMGUI.py:4983
  5556. msgid ""
  5557. "This sets the default type of Excellon zeros.\n"
  5558. "If LZ then Leading Zeros are kept and\n"
  5559. "Trailing Zeros are removed.\n"
  5560. "If TZ is checked then Trailing Zeros are kept\n"
  5561. "and Leading Zeros are removed."
  5562. msgstr ""
  5563. "Define o tipo padrão de zeros de Excellon.\n"
  5564. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  5565. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  5566. #: flatcamGUI/FlatCAMGUI.py:5013
  5567. msgid "A list of Excellon Editor parameters."
  5568. msgstr "Uma lista de parâmetros do Editor Excellon."
  5569. #: flatcamGUI/FlatCAMGUI.py:5023
  5570. msgid ""
  5571. "Set the number of selected Excellon geometry\n"
  5572. "items above which the utility geometry\n"
  5573. "becomes just a selection rectangle.\n"
  5574. "Increases the performance when moving a\n"
  5575. "large number of geometric elements."
  5576. msgstr ""
  5577. "Define o número máximo de ítens de geometria Excellon\n"
  5578. "selecionados. Acima desse valor a geometria se torna um\n"
  5579. "retângulo de seleção.\n"
  5580. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  5581. #: flatcamGUI/FlatCAMGUI.py:5035
  5582. msgid "New Tool Dia:"
  5583. msgstr "Novo Diâmetro:"
  5584. #: flatcamGUI/FlatCAMGUI.py:5058
  5585. msgid "<b>Linear Drill Array:</b>"
  5586. msgstr "<b>Matriz Linear de Brocas:</b>"
  5587. #: flatcamGUI/FlatCAMGUI.py:5062
  5588. msgid "Linear Dir.:"
  5589. msgstr "Direção:"
  5590. #: flatcamGUI/FlatCAMGUI.py:5098
  5591. msgid "<b>Circular Drill Array:</b>"
  5592. msgstr "<b>Matriz Circular de Brocas:</b>"
  5593. #: flatcamGUI/FlatCAMGUI.py:5102
  5594. msgid "Circular Dir.:"
  5595. msgstr "Sentido:"
  5596. #: flatcamGUI/FlatCAMGUI.py:5104
  5597. msgid ""
  5598. "Direction for circular array.\n"
  5599. "Can be CW = clockwise or CCW = counter clockwise."
  5600. msgstr ""
  5601. "Sentido da matriz circular.\n"
  5602. "Pode ser CW = sentido horário ou CCW = sentido anti-horário."
  5603. #: flatcamGUI/FlatCAMGUI.py:5115
  5604. msgid "Circ. Angle:"
  5605. msgstr "Ângulo:"
  5606. #: flatcamGUI/FlatCAMGUI.py:5132
  5607. msgid "Geometry General"
  5608. msgstr "Geometria Geral"
  5609. #: flatcamGUI/FlatCAMGUI.py:5151
  5610. msgid ""
  5611. "The number of circle steps for <b>Geometry</b> \n"
  5612. "circle and arc shapes linear approximation."
  5613. msgstr ""
  5614. "Número de etapas do círculo para a aproximação linear de <b>Geometria</b>\n"
  5615. "círculo e arco."
  5616. #: flatcamGUI/FlatCAMGUI.py:5159
  5617. msgid "<b>Tools:</b>"
  5618. msgstr "<b>Ferramentas:</b>"
  5619. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5774
  5620. msgid "Diameters of the cutting tools, separated by ','"
  5621. msgstr "Diâmetros das ferramentas de corte, separadas por ','"
  5622. #: flatcamGUI/FlatCAMGUI.py:5179
  5623. msgid "Geometry Options"
  5624. msgstr "Opções de Geometria"
  5625. #: flatcamGUI/FlatCAMGUI.py:5184
  5626. msgid "<b>Create CNC Job:</b>"
  5627. msgstr "<b>Criar um Trabalho CNC:</b>"
  5628. #: flatcamGUI/FlatCAMGUI.py:5186
  5629. msgid ""
  5630. "Create a CNC Job object\n"
  5631. "tracing the contours of this\n"
  5632. "Geometry object."
  5633. msgstr ""
  5634. "Cria um objeto de trabalho CNC\n"
  5635. "traçando os contornos deste objeto\n"
  5636. "Geometria."
  5637. #: flatcamGUI/FlatCAMGUI.py:5198 flatcamGUI/ObjectUI.py:1065
  5638. msgid ""
  5639. "Cutting depth (negative)\n"
  5640. "below the copper surface."
  5641. msgstr ""
  5642. "Profundidade de corte (negativo)\n"
  5643. "abaixo da superfície de cobre."
  5644. #: flatcamGUI/FlatCAMGUI.py:5206
  5645. msgid "Multidepth"
  5646. msgstr "Múltiplas Profundidades"
  5647. #: flatcamGUI/FlatCAMGUI.py:5208
  5648. msgid "Multidepth usage: True or False."
  5649. msgstr "Usar Múltiplas Profundidades."
  5650. #: flatcamGUI/FlatCAMGUI.py:5213
  5651. msgid "Depth/Pass:"
  5652. msgstr "Profundidade por Passe:"
  5653. #: flatcamGUI/FlatCAMGUI.py:5215
  5654. msgid ""
  5655. "The depth to cut on each pass,\n"
  5656. "when multidepth is enabled.\n"
  5657. "It has positive value although\n"
  5658. "it is a fraction from the depth\n"
  5659. "which has negative value."
  5660. msgstr ""
  5661. "A profundidade a ser cortada em cada passe,\n"
  5662. "quando Múltiplas Profundidades estiver ativo.\n"
  5663. "Tem valor positivo, embora seja uma fração\n"
  5664. "da profundidade, que tem valor negativo."
  5665. #: flatcamGUI/FlatCAMGUI.py:5231 flatcamGUI/ObjectUI.py:1101
  5666. msgid ""
  5667. "Height of the tool when\n"
  5668. "moving without cutting."
  5669. msgstr ""
  5670. "Altura da ferramenta ao mover sem cortar."
  5671. #: flatcamGUI/FlatCAMGUI.py:5258 flatcamGUI/ObjectUI.py:1156
  5672. msgid "Feed Rate X-Y:"
  5673. msgstr "Taxa de Avanço XY:"
  5674. #: flatcamGUI/FlatCAMGUI.py:5260 flatcamGUI/ObjectUI.py:1159
  5675. msgid ""
  5676. "Cutting speed in the XY\n"
  5677. "plane in units per minute"
  5678. msgstr "Velocidade de corte no plano XY em unidades por minuto"
  5679. #: flatcamGUI/FlatCAMGUI.py:5268
  5680. msgid "Feed Rate Z:"
  5681. msgstr "Taxa de Avanço Z:"
  5682. #: flatcamGUI/FlatCAMGUI.py:5270
  5683. msgid ""
  5684. "Cutting speed in the XY\n"
  5685. "plane in units per minute.\n"
  5686. "It is called also Plunge."
  5687. msgstr ""
  5688. "Velocidade de corte no plano Z em unidades por minuto.\n"
  5689. "Também é chamado de Mergulho."
  5690. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1211
  5691. msgid "Spindle speed:"
  5692. msgstr "Velocidade do Spindle:"
  5693. #: flatcamGUI/FlatCAMGUI.py:5322
  5694. msgid ""
  5695. "The postprocessor file that dictates\n"
  5696. "Machine Code output."
  5697. msgstr ""
  5698. "O arquivo do pós-processador que dita a saída do\n"
  5699. "Código da máquina."
  5700. #: flatcamGUI/FlatCAMGUI.py:5338
  5701. msgid "Geometry Adv. Options"
  5702. msgstr "Opções Avançadas"
  5703. #: flatcamGUI/FlatCAMGUI.py:5345
  5704. msgid ""
  5705. "Parameters to create a CNC Job object\n"
  5706. "tracing the contours of a Geometry object."
  5707. msgstr ""
  5708. "Parâmetros para criar um objeto de Trabalho CNC\n"
  5709. "traçando os contornos de um objeto Geometria."
  5710. #: flatcamGUI/FlatCAMGUI.py:5365
  5711. msgid ""
  5712. "Height of the tool just after starting the work.\n"
  5713. "Delete the value if you don't need this feature."
  5714. msgstr ""
  5715. "Altura da ferramenta ao iniciar o trabalho.\n"
  5716. "Exclua o valor se você não precisar deste recurso."
  5717. #: flatcamGUI/FlatCAMGUI.py:5385
  5718. msgid ""
  5719. "Cutting speed in the XY plane\n"
  5720. "(in units per minute).\n"
  5721. "This is for the rapid move G00.\n"
  5722. "It is useful only for Marlin,\n"
  5723. "ignore for any other cases."
  5724. msgstr ""
  5725. "Velocidade de corte no plano XY (em unidades por minuto).\n"
  5726. "Para o movimento rápido G00.\n"
  5727. "É útil apenas para Marlin, ignore em outros casos."
  5728. #: flatcamGUI/FlatCAMGUI.py:5397
  5729. msgid "Re-cut 1st pt."
  5730. msgstr "Re-corte primeiro ponto."
  5731. #: flatcamGUI/FlatCAMGUI.py:5399 flatcamGUI/ObjectUI.py:1202
  5732. msgid ""
  5733. "In order to remove possible\n"
  5734. "copper leftovers where first cut\n"
  5735. "meet with last cut, we generate an\n"
  5736. "extended cut over the first cut section."
  5737. msgstr ""
  5738. "Para remover possíveis sobras no ponto de encontro\n"
  5739. "do primeiro com o último corte, gera-se um corte\n"
  5740. "próximo à primeira seção de corte."
  5741. #: flatcamGUI/FlatCAMGUI.py:5438
  5742. msgid "Seg. X size:"
  5743. msgstr "Tamanho Segmento X:"
  5744. #: flatcamGUI/FlatCAMGUI.py:5440
  5745. msgid ""
  5746. "The size of the trace segment on the X axis.\n"
  5747. "Useful for auto-leveling.\n"
  5748. "A value of 0 means no segmentation on the X axis."
  5749. msgstr ""
  5750. "O tamanho do segmento de rastreio no eixo X.\n"
  5751. "Útil para nivelamento automático.\n"
  5752. "Valor 0 significa que não há segmentação no eixo X."
  5753. #: flatcamGUI/FlatCAMGUI.py:5449
  5754. msgid "Seg. Y size:"
  5755. msgstr "Tamanho Segmento Y:"
  5756. #: flatcamGUI/FlatCAMGUI.py:5451
  5757. msgid ""
  5758. "The size of the trace segment on the Y axis.\n"
  5759. "Useful for auto-leveling.\n"
  5760. "A value of 0 means no segmentation on the Y axis."
  5761. msgstr ""
  5762. "O tamanho do segmento de rastreio no eixo Y.\n"
  5763. "Útil para nivelamento automático.\n"
  5764. "Valor 0 significa que não há segmentação no eixo Y."
  5765. #: flatcamGUI/FlatCAMGUI.py:5467
  5766. msgid "Geometry Editor"
  5767. msgstr "Editor de Geometria"
  5768. #: flatcamGUI/FlatCAMGUI.py:5472
  5769. msgid "A list of Geometry Editor parameters."
  5770. msgstr "Uma lista de parâmetros do Editor de Geometria."
  5771. #: flatcamGUI/FlatCAMGUI.py:5482
  5772. msgid ""
  5773. "Set the number of selected geometry\n"
  5774. "items above which the utility geometry\n"
  5775. "becomes just a selection rectangle.\n"
  5776. "Increases the performance when moving a\n"
  5777. "large number of geometric elements."
  5778. msgstr ""
  5779. "Define o número máximo de ítens de geometria selecionados.\n"
  5780. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  5781. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  5782. #: flatcamGUI/FlatCAMGUI.py:5501
  5783. msgid "CNC Job General"
  5784. msgstr "CNC Geral"
  5785. #: flatcamGUI/FlatCAMGUI.py:5514 flatcamGUI/ObjectUI.py:544 flatcamGUI/ObjectUI.py:877 flatcamGUI/ObjectUI.py:1447
  5786. msgid "Plot Object"
  5787. msgstr "Mostrar"
  5788. #: flatcamGUI/FlatCAMGUI.py:5521
  5789. msgid "Plot kind:"
  5790. msgstr "Tipo de Gráfico:"
  5791. #: flatcamGUI/FlatCAMGUI.py:5523 flatcamGUI/ObjectUI.py:1356
  5792. msgid ""
  5793. "This selects the kind of geometries on the canvas to plot.\n"
  5794. "Those can be either of type 'Travel' which means the moves\n"
  5795. "above the work piece or it can be of type 'Cut',\n"
  5796. "which means the moves that cut into the material."
  5797. msgstr ""
  5798. "Seleciona o tipo de geometria mostrada na tela.\n"
  5799. "Pode ser do tipo 'Deslocamento', com os movimentos acima da peça ou do\n"
  5800. "tipo 'Corte', com os movimentos cortando o material."
  5801. #: flatcamGUI/FlatCAMGUI.py:5540
  5802. msgid "Display Annotation:"
  5803. msgstr "Exibir Anotação:"
  5804. #: flatcamGUI/FlatCAMGUI.py:5542 flatcamGUI/ObjectUI.py:1372
  5805. msgid ""
  5806. "This selects if to display text annotation on the plot.\n"
  5807. "When checked it will display numbers in order for each end\n"
  5808. "of a travel line."
  5809. msgstr ""
  5810. "Seleciona se deseja exibir a anotação de texto no gráfico.\n"
  5811. "Quando marcado, exibirá números para cada final\n"
  5812. "de uma linha de deslocamento."
  5813. #: flatcamGUI/FlatCAMGUI.py:5554
  5814. msgid "Annotation Size:"
  5815. msgstr "Tamanho da Anotação:"
  5816. #: flatcamGUI/FlatCAMGUI.py:5556
  5817. msgid "The font size of the annotation text. In pixels."
  5818. msgstr "O tamanho da fonte do texto de anotação. Em pixels."
  5819. #: flatcamGUI/FlatCAMGUI.py:5564
  5820. msgid "Annotation Color:"
  5821. msgstr "Cor da Anotação:"
  5822. #: flatcamGUI/FlatCAMGUI.py:5566
  5823. msgid "Set the font color for the annotation texts."
  5824. msgstr "Define a cor da fonte para os textos de anotação."
  5825. #: flatcamGUI/FlatCAMGUI.py:5589
  5826. msgid ""
  5827. "The number of circle steps for <b>GCode</b> \n"
  5828. "circle and arc shapes linear approximation."
  5829. msgstr ""
  5830. "O número de etapas de círculo para <b>G-Code</b>\n"
  5831. "aproximação linear para círculos e formas de arco."
  5832. #: flatcamGUI/FlatCAMGUI.py:5599
  5833. msgid ""
  5834. "Diameter of the tool to be\n"
  5835. "rendered in the plot."
  5836. msgstr "Diâmetro da ferramenta a ser renderizada no gráfico."
  5837. #: flatcamGUI/FlatCAMGUI.py:5607
  5838. msgid "Coords dec.:"
  5839. msgstr "Decimais das Coordenadas:"
  5840. #: flatcamGUI/FlatCAMGUI.py:5609
  5841. msgid ""
  5842. "The number of decimals to be used for \n"
  5843. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  5844. msgstr ""
  5845. "Número de decimais a ser usado para as coordenadas\n"
  5846. "X, Y, Z no código do CNC (G-Code, etc.)"
  5847. #: flatcamGUI/FlatCAMGUI.py:5617
  5848. msgid "Feedrate dec.:"
  5849. msgstr "Decimais da Taxa de Avanço:"
  5850. #: flatcamGUI/FlatCAMGUI.py:5619
  5851. msgid ""
  5852. "The number of decimals to be used for \n"
  5853. "the Feedrate parameter in CNC code (GCODE, etc.)"
  5854. msgstr ""
  5855. "O número de decimais a ser usado para\n"
  5856. "o parâmetro Taxa de Avanço no código CNC (G-Code, etc.)"
  5857. #: flatcamGUI/FlatCAMGUI.py:5634
  5858. msgid "CNC Job Options"
  5859. msgstr "Opções de Trabalho CNC"
  5860. #: flatcamGUI/FlatCAMGUI.py:5637 flatcamGUI/FlatCAMGUI.py:5678
  5861. msgid "<b>Export G-Code:</b>"
  5862. msgstr "<b>Exportar G-Code:</b>"
  5863. #: flatcamGUI/FlatCAMGUI.py:5639 flatcamGUI/FlatCAMGUI.py:5680 flatcamGUI/ObjectUI.py:1483
  5864. msgid ""
  5865. "Export and save G-Code to\n"
  5866. "make this object to a file."
  5867. msgstr ""
  5868. "Exporta e salva em arquivo\n"
  5869. "o G-Code para fazer este objeto."
  5870. #: flatcamGUI/FlatCAMGUI.py:5645
  5871. msgid "Prepend to G-Code:"
  5872. msgstr "Incluir no Início do G-Code:"
  5873. #: flatcamGUI/FlatCAMGUI.py:5647
  5874. msgid ""
  5875. "Type here any G-Code commands you would\n"
  5876. "like to add at the beginning of the G-Code file."
  5877. msgstr "Digite aqui os comandos G-Code que você gostaria\n"
  5878. "de adicionar no início do arquivo G-Code gerado."
  5879. #: flatcamGUI/FlatCAMGUI.py:5656
  5880. msgid "Append to G-Code:"
  5881. msgstr "Incluir no final do G-Code:"
  5882. #: flatcamGUI/FlatCAMGUI.py:5658 flatcamGUI/ObjectUI.py:1505
  5883. msgid ""
  5884. "Type here any G-Code commands you would\n"
  5885. "like to append to the generated file.\n"
  5886. "I.e.: M2 (End of program)"
  5887. msgstr ""
  5888. "Digite aqui os comandos G-Code que você gostaria'n"
  5889. "de acrescentar no final do arquivo G-Code gerado.\n"
  5890. "M2 (Fim do programa)"
  5891. #: flatcamGUI/FlatCAMGUI.py:5675
  5892. msgid "CNC Job Adv. Options"
  5893. msgstr "Opções Avançadas"
  5894. #: flatcamGUI/FlatCAMGUI.py:5686 flatcamGUI/ObjectUI.py:1523
  5895. msgid "Toolchange G-Code:"
  5896. msgstr "G-Code para Troca de Ferramentas:"
  5897. #: flatcamGUI/FlatCAMGUI.py:5688
  5898. msgid ""
  5899. "Type here any G-Code commands you would\n"
  5900. "like to be executed when Toolchange event is encountered.\n"
  5901. "This will constitute a Custom Toolchange GCode,\n"
  5902. "or a Toolchange Macro."
  5903. msgstr ""
  5904. "Digite aqui os comandos do G-Code que você gostaria de executar\n"
  5905. "quando o evento Troca de Ferramentas for encontrado.\n"
  5906. "Será uma personalização de G-Code para Troca de Ferramentas\n"
  5907. "ou uma Macro de Troca de Ferramentas."
  5908. #: flatcamGUI/FlatCAMGUI.py:5702 flatcamGUI/ObjectUI.py:1545
  5909. msgid "Use Toolchange Macro"
  5910. msgstr "Usar Macro de Troca de Ferramentas"
  5911. #: flatcamGUI/FlatCAMGUI.py:5704 flatcamGUI/ObjectUI.py:1548
  5912. msgid ""
  5913. "Check this box if you want to use\n"
  5914. "a Custom Toolchange GCode (macro)."
  5915. msgstr "Marque esta caixa se você quiser usar a macro G-Code de Troca de Ferramentas."
  5916. #: flatcamGUI/FlatCAMGUI.py:5716 flatcamGUI/ObjectUI.py:1557
  5917. msgid ""
  5918. "A list of the FlatCAM variables that can be used\n"
  5919. "in the Toolchange event.\n"
  5920. "They have to be surrounded by the '%' symbol"
  5921. msgstr ""
  5922. "Uma lista das variáveis FlatCAM que podem ser usadas\n"
  5923. "no evento Troca de Ferramentas.\n"
  5924. "Eles devem estar cercados pelo símbolo '%'"
  5925. #: flatcamGUI/FlatCAMGUI.py:5723 flatcamGUI/ObjectUI.py:1564
  5926. msgid "Parameters"
  5927. msgstr "Parâmetros"
  5928. #: flatcamGUI/FlatCAMGUI.py:5726 flatcamGUI/ObjectUI.py:1567
  5929. msgid "FlatCAM CNC parameters"
  5930. msgstr "Parâmetros do FlatCAM CNC"
  5931. #: flatcamGUI/FlatCAMGUI.py:5727 flatcamGUI/ObjectUI.py:1568
  5932. msgid "tool = tool number"
  5933. msgstr "tool = número da ferramenta"
  5934. #: flatcamGUI/FlatCAMGUI.py:5728 flatcamGUI/ObjectUI.py:1569
  5935. msgid "tooldia = tool diameter"
  5936. msgstr "tooldia = diâmetro da ferramenta"
  5937. #: flatcamGUI/FlatCAMGUI.py:5729 flatcamGUI/ObjectUI.py:1570
  5938. msgid "t_drills = for Excellon, total number of drills"
  5939. msgstr "t_drills = para Excellon, número total de brocas"
  5940. #: flatcamGUI/FlatCAMGUI.py:5730 flatcamGUI/ObjectUI.py:1571
  5941. msgid "x_toolchange = X coord for Toolchange"
  5942. msgstr "x_toolchange = coord. X para troca de ferramentas"
  5943. #: flatcamGUI/FlatCAMGUI.py:5731 flatcamGUI/ObjectUI.py:1572
  5944. msgid "y_toolchange = Y coord for Toolchange"
  5945. msgstr "y_toolchange = coord. Y para troca de ferramentas"
  5946. #: flatcamGUI/FlatCAMGUI.py:5732 flatcamGUI/ObjectUI.py:1573
  5947. msgid "z_toolchange = Z coord for Toolchange"
  5948. msgstr "z_toolchange = coord. Z para troca de ferramentas"
  5949. #: flatcamGUI/FlatCAMGUI.py:5733
  5950. msgid "z_cut = Z depth for the cut"
  5951. msgstr "z_cut = profundidade Z para o corte"
  5952. #: flatcamGUI/FlatCAMGUI.py:5734
  5953. msgid "z_move = Z height for travel"
  5954. msgstr "z_move = altura Z para deslocamentos"
  5955. #: flatcamGUI/FlatCAMGUI.py:5735 flatcamGUI/ObjectUI.py:1576
  5956. msgid "z_depthpercut = the step value for multidepth cut"
  5957. msgstr "z_depthpercut = valor do passo para corte múltiplas profundidade"
  5958. #: flatcamGUI/FlatCAMGUI.py:5736 flatcamGUI/ObjectUI.py:1577
  5959. msgid "spindlesspeed = the value for the spindle speed"
  5960. msgstr "spindlesspeed = velocidade do spindle"
  5961. #: flatcamGUI/FlatCAMGUI.py:5738 flatcamGUI/ObjectUI.py:1578
  5962. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  5963. msgstr "dwelltime = tempo de espera para o spindle atingir sua vel. RPM"
  5964. #: flatcamGUI/FlatCAMGUI.py:5759
  5965. msgid "NCC Tool Options"
  5966. msgstr "Opções Retirada de Cobre (NCC)"
  5967. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/FlatCAMGUI.py:6502
  5968. msgid "Tools dia:"
  5969. msgstr "Diâmetro da Ferramenta:"
  5970. #: flatcamGUI/FlatCAMGUI.py:5782 flatcamTools/ToolNonCopperClear.py:167
  5971. #, python-format
  5972. msgid ""
  5973. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5974. "Example:\n"
  5975. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  5976. "\n"
  5977. "Adjust the value starting with lower values\n"
  5978. "and increasing it if areas that should be cleared are still \n"
  5979. "not cleared.\n"
  5980. "Lower values = faster processing, faster execution on PCB.\n"
  5981. "Higher values = slow processing and slow execution on CNC\n"
  5982. "due of too many paths."
  5983. msgstr ""
  5984. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da ferramenta.\n"
  5985. "Exemplo:\n"
  5986. "Um valor de 0,25 significa uma sobreposição de 25% do diâmetro da ferramenta.\n"
  5987. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  5988. "deveria ser limpa não foi limpa.\n"
  5989. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  5990. "Valores maiores = processamento lento e execução lenta no CNC \n"
  5991. " devido ao número de caminhos."
  5992. #: flatcamGUI/FlatCAMGUI.py:5798 flatcamTools/ToolNonCopperClear.py:183
  5993. msgid "Bounding box margin."
  5994. msgstr "Margem da caixa delimitadora."
  5995. #: flatcamGUI/FlatCAMGUI.py:5807 flatcamTools/ToolNonCopperClear.py:192 flatcamTools/ToolPaint.py:190
  5996. msgid "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards.<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel lines."
  5997. msgstr "Algoritmo para retirada do cobre:<BR><B>Padrão</ B>: passo fixo para dentro. <BR><B>Baseado em sementes</B>: para fora a partir da semente.<BR><B>Baseado em linha</B>: linhas paralelas."
  5998. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamTools/ToolNonCopperClear.py:224 flatcamTools/ToolPaint.py:222
  5999. msgid "Rest M.:"
  6000. msgstr "Rest M.:"
  6001. #: flatcamGUI/FlatCAMGUI.py:5841
  6002. msgid ""
  6003. "If checked, use 'rest machining'.\n"
  6004. "Basically it will clear copper outside PCB features,\n"
  6005. "using the biggest tool and continue with the next tools,\n"
  6006. "from bigger to smaller, to clear areas of copper that\n"
  6007. "could not be cleared by previous tool.\n"
  6008. "If not checked, use the standard algorithm."
  6009. msgstr ""
  6010. "Se marcada, usa 'usinagem de descanso'.\n"
  6011. "Basicamente, irá limpar o cobre fora dos recursos do PCB,\n"
  6012. "utilizando a maior ferramenta e continuar com as próximas ferramentas,\n"
  6013. "de maior para menor, para limpar áreas de cobre que não puderam ser\n"
  6014. "retiradas pela ferramenta anterior.\n"
  6015. "Se não estiver marcada, usa o algoritmo padrão."
  6016. #: flatcamGUI/FlatCAMGUI.py:5860
  6017. msgid "Cutout Tool Options"
  6018. msgstr "Opções da Ferramenta de Recorte"
  6019. #: flatcamGUI/FlatCAMGUI.py:5865 flatcamGUI/ObjectUI.py:402
  6020. msgid ""
  6021. "Create toolpaths to cut around\n"
  6022. "the PCB and separate it from\n"
  6023. "the original board."
  6024. msgstr ""
  6025. "Cria caminhos da ferramenta para cortar\n"
  6026. "o PCB e separá-lo da placa original."
  6027. #: flatcamGUI/FlatCAMGUI.py:5884
  6028. msgid ""
  6029. "Distance from objects at which\n"
  6030. "to draw the cutout."
  6031. msgstr ""
  6032. "Distância dos objetos\n"
  6033. "para desenhar o recorte."
  6034. #: flatcamGUI/FlatCAMGUI.py:5891 flatcamTools/ToolCutOut.py:96
  6035. msgid "Gap size:"
  6036. msgstr "Tamanho da Ponte:"
  6037. #: flatcamGUI/FlatCAMGUI.py:5893
  6038. msgid ""
  6039. "Size of the gaps in the toolpath\n"
  6040. "that will remain to hold the\n"
  6041. "board in place."
  6042. msgstr ""
  6043. "Tamanho das pontes no caminho da ferramenta\n"
  6044. "que permanecerão para manter a placa no lugar."
  6045. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamTools/ToolCutOut.py:134
  6046. msgid "Gaps:"
  6047. msgstr "Pontes:"
  6048. #: flatcamGUI/FlatCAMGUI.py:5903
  6049. msgid ""
  6050. "Number of bridge gaps used for the cutout.\n"
  6051. "There can be maximum 8 bridges/gaps.\n"
  6052. "The choices are:\n"
  6053. "- lr - left + right\n"
  6054. "- tb - top + bottom\n"
  6055. "- 4 - left + right +top + bottom\n"
  6056. "- 2lr - 2*left + 2*right\n"
  6057. "- 2tb - 2*top + 2*bottom\n"
  6058. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6059. msgstr ""
  6060. "Número de pontes utilizadas para o recorte.\n"
  6061. "Pode haver um máximo de 8 pontes/lacunas.\n"
  6062. "As opções são:\n"
  6063. "- LR - esquerda + direita\n"
  6064. "- TB - superior + inferior\n"
  6065. "- 4 - esquerda + direita + topo + inferior\n"
  6066. "- 2LR - 2*esquerdo + 2*direito\n"
  6067. "- 2TB - 2*superior + 2*inferior\n"
  6068. "- 8 - 2*esquerdo + 2*direito + 2*superior + 2*inferior"
  6069. #: flatcamGUI/FlatCAMGUI.py:5924 flatcamTools/ToolCutOut.py:115
  6070. msgid "Convex Sh.:"
  6071. msgstr "Forma Convexa:"
  6072. #: flatcamGUI/FlatCAMGUI.py:5926
  6073. msgid "Create a convex shape surrounding the entire PCB."
  6074. msgstr "Crie uma forma convexa ao redor de toda a PCB."
  6075. #: flatcamGUI/FlatCAMGUI.py:5939
  6076. msgid "2Sided Tool Options"
  6077. msgstr "Opções de Ferramentas 2 Faces"
  6078. #: flatcamGUI/FlatCAMGUI.py:5944
  6079. msgid ""
  6080. "A tool to help in creating a double sided\n"
  6081. "PCB using alignment holes."
  6082. msgstr ""
  6083. "Uma ferramenta para ajudar na criação de um\n"
  6084. "PCB de dupla face usando furos de alinhamento."
  6085. #: flatcamGUI/FlatCAMGUI.py:5954 flatcamTools/ToolDblSided.py:235
  6086. msgid "Drill diam.:"
  6087. msgstr "Diâmetro da Broca:"
  6088. #: flatcamGUI/FlatCAMGUI.py:5956 flatcamTools/ToolDblSided.py:226 flatcamTools/ToolDblSided.py:237
  6089. msgid "Diameter of the drill for the alignment holes."
  6090. msgstr "Diâmetro da broca para os furos de alinhamento."
  6091. #: flatcamGUI/FlatCAMGUI.py:5965 flatcamTools/ToolDblSided.py:120
  6092. msgid "Mirror Axis:"
  6093. msgstr "Espelhar Eixo:"
  6094. #: flatcamGUI/FlatCAMGUI.py:5967 flatcamTools/ToolDblSided.py:122
  6095. msgid "Mirror vertically (X) or horizontally (Y)."
  6096. msgstr "Espelha verticalmente (X) ou horizontalmente (Y)."
  6097. #: flatcamGUI/FlatCAMGUI.py:5978 flatcamTools/ToolDblSided.py:133
  6098. msgid "Axis Ref:"
  6099. msgstr "Eixo de Referência:"
  6100. #: flatcamGUI/FlatCAMGUI.py:5980
  6101. msgid ""
  6102. "The axis should pass through a <b>point</b> or cut\n"
  6103. " a specified <b>box</b> (in a Geometry object) in \n"
  6104. "the middle."
  6105. msgstr "O eixo deve passar por um <b>ponto</b> ou cortar no meio uma <b>caixa</b> especificada (em um objeto Geometria)."
  6106. #: flatcamGUI/FlatCAMGUI.py:5996
  6107. msgid "Paint Tool Options"
  6108. msgstr "Opções de Ferramenta de Pintura"
  6109. #: flatcamGUI/FlatCAMGUI.py:6003 flatcamGUI/ObjectUI.py:1305
  6110. msgid ""
  6111. "Creates tool paths to cover the\n"
  6112. "whole area of a polygon (remove\n"
  6113. "all copper). You will be asked\n"
  6114. "to click on the desired polygon."
  6115. msgstr ""
  6116. "Cria caminhos de ferramenta para cobrir a área\n"
  6117. "inteira de um polígono (remove todo o cobre).\n"
  6118. "Você será solicitado a clicar no polígono desejado."
  6119. #: flatcamGUI/FlatCAMGUI.py:6027
  6120. msgid ""
  6121. "How much (fraction) of the tool\n"
  6122. "width to overlap each tool pass."
  6123. msgstr ""
  6124. "Quanta (fração) da largura da ferramenta\n"
  6125. "para sobrepor a cada passe."
  6126. #: flatcamGUI/FlatCAMGUI.py:6081 flatcamTools/ToolPaint.py:237
  6127. msgid "Selection:"
  6128. msgstr "Seleção:"
  6129. #: flatcamGUI/FlatCAMGUI.py:6083
  6130. msgid "How to select the polygons to paint."
  6131. msgstr "Como selecionar os polígonos para pintar."
  6132. #: flatcamGUI/FlatCAMGUI.py:6101
  6133. msgid "Film Tool Options"
  6134. msgstr "Opções da Ferramenta de Filme"
  6135. #: flatcamGUI/FlatCAMGUI.py:6106
  6136. msgid ""
  6137. "Create a PCB film from a Gerber or Geometry\n"
  6138. "FlatCAM object.\n"
  6139. "The file is saved in SVG format."
  6140. msgstr ""
  6141. "Crie um filme de PCB a partir de um objeto Gerber ou Geometria\n"
  6142. "FlatCAM.\n"
  6143. "O arquivo é salvo no formato SVG."
  6144. #: flatcamGUI/FlatCAMGUI.py:6117 flatcamTools/ToolFilm.py:116
  6145. msgid "Film Type:"
  6146. msgstr "Tipo de Filme:"
  6147. #: flatcamGUI/FlatCAMGUI.py:6119 flatcamTools/ToolFilm.py:118
  6148. msgid ""
  6149. "Generate a Positive black film or a Negative film.\n"
  6150. "Positive means that it will print the features\n"
  6151. "with black on a white canvas.\n"
  6152. "Negative means that it will print the features\n"
  6153. "with white on a black canvas.\n"
  6154. "The Film format is SVG."
  6155. msgstr ""
  6156. "Gera um filme Positivo ou Negativo.\n"
  6157. "Positivo significa que os recursos são impressos\n"
  6158. "em preto em uma tela branca.\n"
  6159. "Negativo significa que os recursos são impressos\n"
  6160. "em branco em uma tela preta.\n"
  6161. "O formato do arquivo do filme é SVG ."
  6162. #: flatcamGUI/FlatCAMGUI.py:6130 flatcamTools/ToolFilm.py:130
  6163. msgid "Border:"
  6164. msgstr "Borda:"
  6165. #: flatcamGUI/FlatCAMGUI.py:6132 flatcamTools/ToolFilm.py:132
  6166. msgid ""
  6167. "Specify a border around the object.\n"
  6168. "Only for negative film.\n"
  6169. "It helps if we use as a Box Object the same \n"
  6170. "object as in Film Object. It will create a thick\n"
  6171. "black bar around the actual print allowing for a\n"
  6172. "better delimitation of the outline features which are of\n"
  6173. "white color like the rest and which may confound with the\n"
  6174. "surroundings if not for this border."
  6175. msgstr ""
  6176. "Especifica uma borda ao redor do objeto.\n"
  6177. "Somente para filme negativo.\n"
  6178. "Ajuda se for usado como Objeto Caixa o mesmo\n"
  6179. "objeto do Filme. Será criada uma barra preta\n"
  6180. "ao redor da impressão, permitindo uma melhor\n"
  6181. "delimitação dos contornos dos recursos (que são\n"
  6182. "brancos como o restante e podem ser confundidos\n"
  6183. "com os limites, se não for usada essa borda)."
  6184. #: flatcamGUI/FlatCAMGUI.py:6145 flatcamTools/ToolFilm.py:144
  6185. msgid "Scale Stroke:"
  6186. msgstr "Espessura da Linha:"
  6187. #: flatcamGUI/FlatCAMGUI.py:6147 flatcamTools/ToolFilm.py:146
  6188. msgid ""
  6189. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6190. "It means that the line that envelope each SVG feature will be thicker or thinner,\n"
  6191. "therefore the fine features may be more affected by this parameter."
  6192. msgstr ""
  6193. "Espessura da linha de cada recurso no arquivo SVG.\n"
  6194. "A linha que envolve cada recurso SVG será mais espessa ou mais fina.\n"
  6195. "Os recursos mais finos podem ser afetados por esse parâmetro."
  6196. #: flatcamGUI/FlatCAMGUI.py:6162
  6197. msgid "Panelize Tool Options"
  6198. msgstr "Opções da Ferramenta Criar Painel"
  6199. #: flatcamGUI/FlatCAMGUI.py:6167
  6200. msgid ""
  6201. "Create an object that contains an array of (x, y) elements,\n"
  6202. "each element is a copy of the source object spaced\n"
  6203. "at a X distance, Y distance of each other."
  6204. msgstr ""
  6205. "Cria um objeto que contém uma matriz de elementos (x, y).\n"
  6206. "Cada elemento é uma cópia do objeto de origem espaçado\n"
  6207. "dos demais por uma distância X, Y."
  6208. #: flatcamGUI/FlatCAMGUI.py:6178 flatcamTools/ToolPanelize.py:147
  6209. msgid "Spacing cols:"
  6210. msgstr "Espaço entre Colunas:"
  6211. #: flatcamGUI/FlatCAMGUI.py:6180 flatcamTools/ToolPanelize.py:149
  6212. msgid ""
  6213. "Spacing between columns of the desired panel.\n"
  6214. "In current units."
  6215. msgstr ""
  6216. "Espaçamento entre colunas do painel desejado.\n"
  6217. "Nas unidades atuais."
  6218. #: flatcamGUI/FlatCAMGUI.py:6188 flatcamTools/ToolPanelize.py:156
  6219. msgid "Spacing rows:"
  6220. msgstr "Espaço entre Linhas:"
  6221. #: flatcamGUI/FlatCAMGUI.py:6190 flatcamTools/ToolPanelize.py:158
  6222. msgid ""
  6223. "Spacing between rows of the desired panel.\n"
  6224. "In current units."
  6225. msgstr ""
  6226. "Espaçamento entre linhas do painel desejado.\n"
  6227. "Nas unidades atuais."
  6228. #: flatcamGUI/FlatCAMGUI.py:6198 flatcamTools/ToolPanelize.py:165
  6229. msgid "Columns:"
  6230. msgstr "Colunas:"
  6231. #: flatcamGUI/FlatCAMGUI.py:6200 flatcamTools/ToolPanelize.py:167
  6232. msgid "Number of columns of the desired panel"
  6233. msgstr "Número de colunas do painel desejado"
  6234. #: flatcamGUI/FlatCAMGUI.py:6207 flatcamTools/ToolPanelize.py:173
  6235. msgid "Rows:"
  6236. msgstr "Linhas:"
  6237. #: flatcamGUI/FlatCAMGUI.py:6209 flatcamTools/ToolPanelize.py:175
  6238. msgid "Number of rows of the desired panel"
  6239. msgstr "Número de linhas do painel desejado"
  6240. #: flatcamGUI/FlatCAMGUI.py:6217
  6241. msgid "Panel Type:"
  6242. msgstr "Tipo de Painel:"
  6243. #: flatcamGUI/FlatCAMGUI.py:6219
  6244. msgid ""
  6245. "Choose the type of object for the panel object:\n"
  6246. "- Gerber\n"
  6247. "- Geometry"
  6248. msgstr ""
  6249. "Escolha o tipo de objeto para o painel:\n"
  6250. "- Gerber\n"
  6251. "- Geometria"
  6252. #: flatcamGUI/FlatCAMGUI.py:6228
  6253. msgid "Constrain within:"
  6254. msgstr "Restringir dentro de:"
  6255. #: flatcamGUI/FlatCAMGUI.py:6230 flatcamTools/ToolPanelize.py:195
  6256. msgid ""
  6257. "Area define by DX and DY within to constrain the panel.\n"
  6258. "DX and DY values are in current units.\n"
  6259. "Regardless of how many columns and rows are desired,\n"
  6260. "the final panel will have as many columns and rows as\n"
  6261. "they fit completely within selected area."
  6262. msgstr ""
  6263. "Área definida por DX e DY para restringir o painel.\n"
  6264. "Os valores DX e DY estão nas unidades atuais.\n"
  6265. "Desde quantas colunas e linhas forem desejadas,\n"
  6266. "o painel final terá tantas colunas e linhas quantas\n"
  6267. "couberem completamente dentro de área selecionada."
  6268. #: flatcamGUI/FlatCAMGUI.py:6239 flatcamTools/ToolPanelize.py:204
  6269. msgid "Width (DX):"
  6270. msgstr "Largura (DX):"
  6271. #: flatcamGUI/FlatCAMGUI.py:6241 flatcamTools/ToolPanelize.py:206
  6272. msgid ""
  6273. "The width (DX) within which the panel must fit.\n"
  6274. "In current units."
  6275. msgstr ""
  6276. "A largura (DX) na qual o painel deve caber.\n"
  6277. "Nas unidades atuais."
  6278. #: flatcamGUI/FlatCAMGUI.py:6248 flatcamTools/ToolPanelize.py:212
  6279. msgid "Height (DY):"
  6280. msgstr "Altura (DY):"
  6281. #: flatcamGUI/FlatCAMGUI.py:6250 flatcamTools/ToolPanelize.py:214
  6282. msgid ""
  6283. "The height (DY)within which the panel must fit.\n"
  6284. "In current units."
  6285. msgstr ""
  6286. "A altura (DY) na qual o painel deve se ajustar.\n"
  6287. "Nas unidades atuais."
  6288. #: flatcamGUI/FlatCAMGUI.py:6264
  6289. msgid "Calculators Tool Options"
  6290. msgstr "Opções das Ferramentas Calculadoras"
  6291. #: flatcamGUI/FlatCAMGUI.py:6267
  6292. msgid "<b>V-Shape Tool Calculator:</b>"
  6293. msgstr "<b>Calculadora Ferramenta Forma-V:</b>"
  6294. #: flatcamGUI/FlatCAMGUI.py:6269
  6295. msgid ""
  6296. "Calculate the tool diameter for a given V-shape tool,\n"
  6297. "having the tip diameter, tip angle and\n"
  6298. "depth-of-cut as parameters."
  6299. msgstr "Calcula o diâmetro equvalente da ferramenta para uma determinada\n"
  6300. "ferramenta em forma de V, com o diâmetro da ponta, o ângulo da ponta e a\n"
  6301. "profundidade de corte como parâmetros."
  6302. #: flatcamGUI/FlatCAMGUI.py:6280 flatcamTools/ToolCalculators.py:94
  6303. msgid "Tip Diameter:"
  6304. msgstr "Diâmetro da Ponta:"
  6305. #: flatcamGUI/FlatCAMGUI.py:6282
  6306. msgid ""
  6307. "This is the tool tip diameter.\n"
  6308. "It is specified by manufacturer."
  6309. msgstr ""
  6310. "Diâmetro da ponta da ferramenta.\n"
  6311. "Especificado pelo fabricante."
  6312. #: flatcamGUI/FlatCAMGUI.py:6290
  6313. msgid "Tip angle:"
  6314. msgstr "Ângulo da Ponta:"
  6315. #: flatcamGUI/FlatCAMGUI.py:6292
  6316. msgid ""
  6317. "This is the angle on the tip of the tool.\n"
  6318. "It is specified by manufacturer."
  6319. msgstr ""
  6320. "Ângulo na ponta da ferramenta.\n"
  6321. "Especificado pelo fabricante."
  6322. #: flatcamGUI/FlatCAMGUI.py:6302
  6323. msgid ""
  6324. "This is depth to cut into material.\n"
  6325. "In the CNCJob object it is the CutZ parameter."
  6326. msgstr ""
  6327. "Profundidade para cortar o material.\n"
  6328. "No objeto CNC, é o parâmetro Profundidade de Corte (z_cut)."
  6329. #: flatcamGUI/FlatCAMGUI.py:6309
  6330. msgid "<b>ElectroPlating Calculator:</b>"
  6331. msgstr "<b>Calculadora ElectroPlating:</b>"
  6332. #: flatcamGUI/FlatCAMGUI.py:6311 flatcamTools/ToolCalculators.py:152
  6333. msgid ""
  6334. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6335. "using a method like grahite ink or calcium hypophosphite ink or palladium chloride."
  6336. msgstr "Esta calculadora é útil para aqueles que fazem os furos\n"
  6337. "(via/pad/broca) usando um método como tinta grahite ou tinta \n"
  6338. "hipofosfito de cálcio ou cloreto de paládio."
  6339. #: flatcamGUI/FlatCAMGUI.py:6321 flatcamTools/ToolCalculators.py:161
  6340. msgid "Board Length:"
  6341. msgstr "Comprimento da Placa:"
  6342. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamTools/ToolCalculators.py:165
  6343. msgid "This is the board length. In centimeters."
  6344. msgstr "Comprimento da placa, em centímetros."
  6345. #: flatcamGUI/FlatCAMGUI.py:6329 flatcamTools/ToolCalculators.py:167
  6346. msgid "Board Width:"
  6347. msgstr "Largura da Placa:"
  6348. #: flatcamGUI/FlatCAMGUI.py:6331 flatcamTools/ToolCalculators.py:171
  6349. msgid "This is the board width.In centimeters."
  6350. msgstr "Largura da placa, em centímetros."
  6351. #: flatcamGUI/FlatCAMGUI.py:6336 flatcamTools/ToolCalculators.py:173
  6352. msgid "Current Density:"
  6353. msgstr "Densidade de Corrente:"
  6354. #: flatcamGUI/FlatCAMGUI.py:6339 flatcamTools/ToolCalculators.py:177
  6355. msgid ""
  6356. "Current density to pass through the board. \n"
  6357. "In Amps per Square Feet ASF."
  6358. msgstr ""
  6359. "Densidade de corrente para passar pela placa.\n"
  6360. "Em Ampères por Pés Quadrados ASF."
  6361. #: flatcamGUI/FlatCAMGUI.py:6345 flatcamTools/ToolCalculators.py:181
  6362. msgid "Copper Growth:"
  6363. msgstr "Espessura do Cobre:"
  6364. #: flatcamGUI/FlatCAMGUI.py:6348 flatcamTools/ToolCalculators.py:185
  6365. msgid ""
  6366. "How thick the copper growth is intended to be.\n"
  6367. "In microns."
  6368. msgstr "Espessura da camada de cobre, em microns."
  6369. #: flatcamGUI/FlatCAMGUI.py:6361
  6370. msgid "Transform Tool Options"
  6371. msgstr "Opções Transformações"
  6372. #: flatcamGUI/FlatCAMGUI.py:6366
  6373. msgid ""
  6374. "Various transformations that can be applied\n"
  6375. "on a FlatCAM object."
  6376. msgstr ""
  6377. "Várias transformações que podem ser aplicadas\n"
  6378. "a um objeto FlatCAM."
  6379. #: flatcamGUI/FlatCAMGUI.py:6376
  6380. msgid "Rotate Angle:"
  6381. msgstr "Ângulo de Rotação:"
  6382. #: flatcamGUI/FlatCAMGUI.py:6378
  6383. msgid "Angle for rotation. In degrees."
  6384. msgstr "Ângulo de rotação, em graus."
  6385. #: flatcamGUI/FlatCAMGUI.py:6385
  6386. msgid "Skew_X angle:"
  6387. msgstr "Ângulo de Inclinação X:"
  6388. #: flatcamGUI/FlatCAMGUI.py:6387
  6389. msgid "Angle for Skew/Shear on X axis. In degrees."
  6390. msgstr "Ângulo de inclinação no eixo X, em graus."
  6391. #: flatcamGUI/FlatCAMGUI.py:6394
  6392. msgid "Skew_Y angle:"
  6393. msgstr "Ângulo de Inclinação Y:"
  6394. #: flatcamGUI/FlatCAMGUI.py:6396
  6395. msgid "Angle for Skew/Shear on Y axis. In degrees."
  6396. msgstr "Ângulo de inclinação no eixo X, em graus."
  6397. #: flatcamGUI/FlatCAMGUI.py:6403
  6398. msgid "Scale_X factor:"
  6399. msgstr "Fator de Escala X:"
  6400. #: flatcamGUI/FlatCAMGUI.py:6405
  6401. msgid "Factor for scaling on X axis."
  6402. msgstr "Fator para redimensionamento no eixo X."
  6403. #: flatcamGUI/FlatCAMGUI.py:6412
  6404. msgid "Scale_Y factor:"
  6405. msgstr "Fator de Escala Y:"
  6406. #: flatcamGUI/FlatCAMGUI.py:6414
  6407. msgid "Factor for scaling on Y axis."
  6408. msgstr "Fator para redimensionamento no eixo Y."
  6409. #: flatcamGUI/FlatCAMGUI.py:6422
  6410. msgid ""
  6411. "Scale the selected object(s)\n"
  6412. "using the Scale_X factor for both axis."
  6413. msgstr ""
  6414. "Redimensiona o(s) objeto(s) selecionado(s)\n"
  6415. "usando o Fator de Escala X para ambos os eixos."
  6416. #: flatcamGUI/FlatCAMGUI.py:6430 flatcamTools/ToolTransform.py:210
  6417. msgid ""
  6418. "Scale the selected object(s)\n"
  6419. "using the origin reference when checked,\n"
  6420. "and the center of the biggest bounding box\n"
  6421. "of the selected objects when unchecked."
  6422. msgstr ""
  6423. "Redimensiona o(s) objeto(s) selecionado(s) usando a referência\n"
  6424. "de origem quando marcado, e o centro da maior caixa delimitadora\n"
  6425. "do objeto selecionado quando desmarcado."
  6426. #: flatcamGUI/FlatCAMGUI.py:6439
  6427. msgid "Offset_X val:"
  6428. msgstr "Deslocamento X:"
  6429. #: flatcamGUI/FlatCAMGUI.py:6441
  6430. msgid "Distance to offset on X axis. In current units."
  6431. msgstr "Distância para deslocar no eixo X, nas unidades atuais."
  6432. #: flatcamGUI/FlatCAMGUI.py:6448
  6433. msgid "Offset_Y val:"
  6434. msgstr "Deslocamento Y:"
  6435. #: flatcamGUI/FlatCAMGUI.py:6450
  6436. msgid "Distance to offset on Y axis. In current units."
  6437. msgstr "Distância para deslocar no eixo Y, nas unidades atuais."
  6438. #: flatcamGUI/FlatCAMGUI.py:6456
  6439. msgid "Mirror Reference"
  6440. msgstr "Referência de Espelho"
  6441. #: flatcamGUI/FlatCAMGUI.py:6458 flatcamTools/ToolTransform.py:314
  6442. msgid ""
  6443. "Flip the selected object(s)\n"
  6444. "around the point in Point Entry Field.\n"
  6445. "\n"
  6446. "The point coordinates can be captured by\n"
  6447. "left click on canvas together with pressing\n"
  6448. "SHIFT key. \n"
  6449. "Then click Add button to insert coordinates.\n"
  6450. "Or enter the coords in format (x, y) in the\n"
  6451. "Point Entry field and click Flip on X(Y)"
  6452. msgstr ""
  6453. "Espelha o(s) objeto(s) selecionado(s)\n"
  6454. "em relação ao ponto no campo de Entrada do Ponto.\n"
  6455. "\n"
  6456. "As coordenadas do ponto podem ser inseridas\n"
  6457. "com clique no botão esquerdo junto com a tecla\n"
  6458. "SHIFT pressionada,\n"
  6459. "e clicar no botão Adicionar para inserir as coordenadas.\n"
  6460. "Ou digitar as coordenadas no formato (x, y) no campo\n"
  6461. "Posição de entrada e clicar em Inverter no X (Y)"
  6462. #: flatcamGUI/FlatCAMGUI.py:6469
  6463. msgid " Mirror Ref. Point:"
  6464. msgstr " Ponto Ref. Espelho:"
  6465. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamTools/ToolTransform.py:327
  6466. msgid ""
  6467. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6468. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6469. "the 'y' in (x, y) will be used when using Flip on Y and"
  6470. msgstr ""
  6471. "Coordenadas no formato (x, y) usadas como referência para espelhamento.\n"
  6472. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  6473. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  6474. #: flatcamGUI/FlatCAMGUI.py:6488
  6475. msgid "SolderPaste Tool Options"
  6476. msgstr "Opções da Ferramenta Pasta de Solda"
  6477. #: flatcamGUI/FlatCAMGUI.py:6493
  6478. msgid ""
  6479. "A tool to create GCode for dispensing\n"
  6480. "solder paste onto a PCB."
  6481. msgstr ""
  6482. "Uma ferramenta para criar G-Code para dispensar pasta\n"
  6483. "de solda em um PCB."
  6484. #: flatcamGUI/FlatCAMGUI.py:6504
  6485. msgid "Diameters of nozzle tools, separated by ','"
  6486. msgstr "Diâmetros dos bicos das ferramentas, separadas por ','"
  6487. #: flatcamGUI/FlatCAMGUI.py:6511
  6488. msgid "<b>New Nozzle Dia:</b>"
  6489. msgstr "<b>Novo Diâmetro Bico:</b>"
  6490. #: flatcamGUI/FlatCAMGUI.py:6513 flatcamTools/ToolSolderPaste.py:103
  6491. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6492. msgstr "Diâmetro da nova ferramenta Bico para adicionar na tabela de ferramentas"
  6493. #: flatcamGUI/FlatCAMGUI.py:6521 flatcamTools/ToolSolderPaste.py:166
  6494. msgid "Z Dispense Start:"
  6495. msgstr "Z Início Colocação:"
  6496. #: flatcamGUI/FlatCAMGUI.py:6523 flatcamTools/ToolSolderPaste.py:168
  6497. msgid "The height (Z) when solder paste dispensing starts."
  6498. msgstr "A altura (Z) que inicial a distribuição de pasta de solda."
  6499. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamTools/ToolSolderPaste.py:174
  6500. msgid "Z Dispense:"
  6501. msgstr "Z Colocar:"
  6502. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamTools/ToolSolderPaste.py:176
  6503. msgid "The height (Z) when doing solder paste dispensing."
  6504. msgstr "Altura (Z) para distribuir a pasta de solda."
  6505. #: flatcamGUI/FlatCAMGUI.py:6539 flatcamTools/ToolSolderPaste.py:183
  6506. msgid "Z Dispense Stop:"
  6507. msgstr "Z Final Colocação:"
  6508. #: flatcamGUI/FlatCAMGUI.py:6541 flatcamTools/ToolSolderPaste.py:185
  6509. msgid "The height (Z) when solder paste dispensing stops."
  6510. msgstr "Altura (Z) para interromper a distribuição de pasta de solda."
  6511. #: flatcamGUI/FlatCAMGUI.py:6548 flatcamTools/ToolSolderPaste.py:191
  6512. msgid "Z Travel:"
  6513. msgstr "Z Deslocamento:"
  6514. #: flatcamGUI/FlatCAMGUI.py:6550 flatcamTools/ToolSolderPaste.py:193
  6515. msgid ""
  6516. "The height (Z) for travel between pads\n"
  6517. "(without dispensing solder paste)."
  6518. msgstr ""
  6519. "Altura (Z) para deslocamento entre pads\n"
  6520. "(sem dispensar pasta de solda)."
  6521. #: flatcamGUI/FlatCAMGUI.py:6558 flatcamTools/ToolSolderPaste.py:200
  6522. msgid "Z Toolchange:"
  6523. msgstr "Z Troca de Ferramentas:"
  6524. #: flatcamGUI/FlatCAMGUI.py:6560 flatcamTools/ToolSolderPaste.py:202
  6525. msgid "The height (Z) for tool (nozzle) change."
  6526. msgstr "Altura (Z) para troca de ferramenta (bocal)."
  6527. #: flatcamGUI/FlatCAMGUI.py:6567 flatcamTools/ToolSolderPaste.py:208
  6528. msgid "XY Toolchange:"
  6529. msgstr "XY Troca de Ferramentas:"
  6530. #: flatcamGUI/FlatCAMGUI.py:6569 flatcamTools/ToolSolderPaste.py:210
  6531. msgid ""
  6532. "The X,Y location for tool (nozzle) change.\n"
  6533. "The format is (x, y) where x and y are real numbers."
  6534. msgstr ""
  6535. "Posição X, Y para trocar ferramenta (bocal).\n"
  6536. "O formato é (x, y) onde x e y são números reais."
  6537. #: flatcamGUI/FlatCAMGUI.py:6577 flatcamTools/ToolSolderPaste.py:217
  6538. msgid "Feedrate X-Y:"
  6539. msgstr "Avanço XY:"
  6540. #: flatcamGUI/FlatCAMGUI.py:6579 flatcamTools/ToolSolderPaste.py:219
  6541. msgid "Feedrate (speed) while moving on the X-Y plane."
  6542. msgstr "Avanço (velocidade) para movimento no plano XY."
  6543. #: flatcamGUI/FlatCAMGUI.py:6586 flatcamTools/ToolSolderPaste.py:225
  6544. msgid "Feedrate Z:"
  6545. msgstr "Avanço Z:"
  6546. #: flatcamGUI/FlatCAMGUI.py:6588 flatcamTools/ToolSolderPaste.py:227
  6547. msgid ""
  6548. "Feedrate (speed) while moving vertically\n"
  6549. "(on Z plane)."
  6550. msgstr ""
  6551. "Avanço (velocidade) para movimento vertical\n"
  6552. "(no plano Z)."
  6553. #: flatcamGUI/FlatCAMGUI.py:6596 flatcamTools/ToolSolderPaste.py:234
  6554. msgid "Feedrate Z Dispense:"
  6555. msgstr "Avanço Z Distribuição:"
  6556. #: flatcamGUI/FlatCAMGUI.py:6598
  6557. msgid ""
  6558. "Feedrate (speed) while moving up vertically\n"
  6559. "to Dispense position (on Z plane)."
  6560. msgstr ""
  6561. "Avanço (velocidade) para subir verticalmente\n"
  6562. "para a posição Dispensar (no plano Z)."
  6563. #: flatcamGUI/FlatCAMGUI.py:6606 flatcamTools/ToolSolderPaste.py:243
  6564. msgid "Spindle Speed FWD:"
  6565. msgstr "Velocidade Spindle FWD:"
  6566. #: flatcamGUI/FlatCAMGUI.py:6608 flatcamTools/ToolSolderPaste.py:245
  6567. msgid ""
  6568. "The dispenser speed while pushing solder paste\n"
  6569. "through the dispenser nozzle."
  6570. msgstr ""
  6571. "A velocidade do dispensador ao empurrar a pasta de solda\n"
  6572. " através do bico do distribuidor."
  6573. #: flatcamGUI/FlatCAMGUI.py:6616 flatcamTools/ToolSolderPaste.py:252
  6574. msgid "Dwell FWD:"
  6575. msgstr "Dwell FWD:"
  6576. #: flatcamGUI/FlatCAMGUI.py:6618 flatcamTools/ToolSolderPaste.py:254
  6577. msgid "Pause after solder dispensing."
  6578. msgstr "Pausa após a dispensação de solda."
  6579. #: flatcamGUI/FlatCAMGUI.py:6625 flatcamTools/ToolSolderPaste.py:260
  6580. msgid "Spindle Speed REV:"
  6581. msgstr "Velocidade Spindle REV:"
  6582. #: flatcamGUI/FlatCAMGUI.py:6627 flatcamTools/ToolSolderPaste.py:262
  6583. msgid ""
  6584. "The dispenser speed while retracting solder paste\n"
  6585. "through the dispenser nozzle."
  6586. msgstr ""
  6587. "A velocidade do dispensador enquanto retrai a pasta de solda\n"
  6588. " através do bocal do dispensador."
  6589. #: flatcamGUI/FlatCAMGUI.py:6635 flatcamTools/ToolSolderPaste.py:269
  6590. msgid "Dwell REV:"
  6591. msgstr "Dwell REV:"
  6592. #: flatcamGUI/FlatCAMGUI.py:6637 flatcamTools/ToolSolderPaste.py:271
  6593. msgid ""
  6594. "Pause after solder paste dispenser retracted,\n"
  6595. "to allow pressure equilibrium."
  6596. msgstr "Pausa após o dispensador de pasta de solda retraído, para permitir o equilíbrio de pressão."
  6597. #: flatcamGUI/FlatCAMGUI.py:6644 flatcamTools/ToolSolderPaste.py:277
  6598. msgid "PostProcessors:"
  6599. msgstr "PostProcessors:"
  6600. #: flatcamGUI/FlatCAMGUI.py:6646 flatcamTools/ToolSolderPaste.py:279
  6601. msgid "Files that control the GCode generation."
  6602. msgstr "Arquivos que controlam a geração de G-Code."
  6603. #: flatcamGUI/FlatCAMGUI.py:6676 flatcamGUI/FlatCAMGUI.py:6682
  6604. msgid "Idle."
  6605. msgstr "Ocioso."
  6606. #: flatcamGUI/FlatCAMGUI.py:6706
  6607. msgid "Application started ..."
  6608. msgstr "Aplicativo iniciado ..."
  6609. #: flatcamGUI/FlatCAMGUI.py:6707
  6610. msgid "Hello!"
  6611. msgstr "Olá!"
  6612. #: flatcamGUI/ObjectUI.py:33
  6613. msgid "FlatCAM Object"
  6614. msgstr "Objeto FlatCAM"
  6615. #: flatcamGUI/ObjectUI.py:58
  6616. msgid ""
  6617. "BASIC is suitable for a beginner. Many parameters\n"
  6618. "are hidden from the user in this mode.\n"
  6619. "ADVANCED mode will make available all parameters.\n"
  6620. "\n"
  6621. "To change the application LEVEL, go to:\n"
  6622. "Edit -> Preferences -> General and check:\n"
  6623. "'APP. LEVEL' radio button."
  6624. msgstr ""
  6625. "BÁSICO é adequado para um iniciante. Muitos parâmetros\n"
  6626. " estão ocultos do usuário neste modo.\n"
  6627. "O modo AVANÇADO disponibilizará todos os parâmetros.\n"
  6628. "\n"
  6629. "Para alterar o NÍVEL do aplicativo, vá para:\n"
  6630. "Editar -> Preferências -> Geral e verificar:\n"
  6631. "o botão de rádio 'Nível do App\"."
  6632. #: flatcamGUI/ObjectUI.py:79
  6633. msgid "<b>Scale:</b>"
  6634. msgstr "<b>Escala:</b>"
  6635. #: flatcamGUI/ObjectUI.py:81
  6636. msgid "Change the size of the object."
  6637. msgstr "Altera o tamanho do objeto."
  6638. #: flatcamGUI/ObjectUI.py:89
  6639. msgid "Factor:"
  6640. msgstr "Fator:"
  6641. #: flatcamGUI/ObjectUI.py:91
  6642. msgid ""
  6643. "Factor by which to multiply\n"
  6644. "geometric features of this object."
  6645. msgstr ""
  6646. "Fator pelo qual multiplicar recursos\n"
  6647. "geométricos deste objeto."
  6648. #: flatcamGUI/ObjectUI.py:102
  6649. msgid "Perform scaling operation."
  6650. msgstr "Realiza a operação de dimensionamento."
  6651. #: flatcamGUI/ObjectUI.py:108
  6652. msgid "<b>Offset:</b>"
  6653. msgstr "<b>Deslocamento:</b>"
  6654. #: flatcamGUI/ObjectUI.py:110
  6655. msgid "Change the position of this object."
  6656. msgstr "Altera a posição deste objeto."
  6657. #: flatcamGUI/ObjectUI.py:117
  6658. msgid "Vector:"
  6659. msgstr "Vetor:"
  6660. #: flatcamGUI/ObjectUI.py:119
  6661. msgid ""
  6662. "Amount by which to move the object\n"
  6663. "in the x and y axes in (x, y) format."
  6664. msgstr ""
  6665. "Quanto mover o objeto\n"
  6666. "nos eixos x e y no formato (x, y)."
  6667. #: flatcamGUI/ObjectUI.py:129
  6668. msgid "Perform the offset operation."
  6669. msgstr "Executa a operação de deslocamento."
  6670. #: flatcamGUI/ObjectUI.py:143
  6671. msgid "Gerber Object"
  6672. msgstr "Objeto Gerber"
  6673. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:517 flatcamGUI/ObjectUI.py:839 flatcamGUI/ObjectUI.py:1382
  6674. msgid "<b>Name:</b>"
  6675. msgstr "<b>Nome:</b>"
  6676. #: flatcamGUI/ObjectUI.py:203
  6677. msgid ""
  6678. "Toggle the display of the Gerber Apertures Table.\n"
  6679. "When unchecked, it will delete all mark shapes\n"
  6680. "that are drawn on canvas."
  6681. msgstr ""
  6682. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  6683. "Quando desmarcada, serão excluídas todas as formas de marcas\n"
  6684. "desenhadas na tela."
  6685. #: flatcamGUI/ObjectUI.py:214
  6686. msgid "Mark All"
  6687. msgstr "Marcar Todos"
  6688. #: flatcamGUI/ObjectUI.py:216
  6689. msgid ""
  6690. "When checked it will display all the apertures.\n"
  6691. "When unchecked, it will delete all mark shapes\n"
  6692. "that are drawn on canvas."
  6693. msgstr ""
  6694. "Quando marcado, serão mostradas todas as aberturas.\n"
  6695. "Quando desmarcado, serão apagadas todas as formas de marcas\n"
  6696. "desenhadas na tela."
  6697. #: flatcamGUI/ObjectUI.py:244
  6698. msgid "Mark the aperture instances on canvas."
  6699. msgstr "Marque as instâncias de abertura na tela."
  6700. #: flatcamGUI/ObjectUI.py:262
  6701. msgid ""
  6702. "Diameter of the cutting tool.\n"
  6703. "If you want to have an isolation path\n"
  6704. "inside the actual shape of the Gerber\n"
  6705. "feature, use a negative value for\n"
  6706. "this parameter."
  6707. msgstr ""
  6708. "Diâmetro da ferramenta de corte.\n"
  6709. "Se desejar ter um caminho de isolamento\n"
  6710. "dentro da forma atual do recurso Gerber, use um valor negativo para\n"
  6711. "este parâmetro."
  6712. #: flatcamGUI/ObjectUI.py:273
  6713. msgid "Passes:"
  6714. msgstr "Passes:"
  6715. #: flatcamGUI/ObjectUI.py:307
  6716. msgid "Combine"
  6717. msgstr "Combinar"
  6718. #: flatcamGUI/ObjectUI.py:323
  6719. msgid "<b>Generate Isolation Geometry:</b>"
  6720. msgstr "<b>Gerar Geometria de Isolamento:</b>"
  6721. #: flatcamGUI/ObjectUI.py:325
  6722. msgid ""
  6723. "Create a Geometry object with toolpaths to cut \n"
  6724. "isolation outside, inside or on both sides of the\n"
  6725. "object. For a Gerber object outside means outside\n"
  6726. "of the Gerber feature and inside means inside of\n"
  6727. "the Gerber feature, if possible at all. This means\n"
  6728. "that only if the Gerber feature has openings inside, they\n"
  6729. "will be isolated. If what is wanted is to cut isolation\n"
  6730. "inside the actual Gerber feature, use a negative tool\n"
  6731. "diameter above."
  6732. msgstr ""
  6733. "Cria um objeto Geometria com caminhos da ferramenta para cortar a\n"
  6734. "isolação por fora, por dentro ou em ambos os lados do\n"
  6735. "objeto. Para um objeto Gerber externo significa\n"
  6736. "por fora do recurso Gerber e interno significa por dentro do recurso Gerber, se possível. Isso significa\n"
  6737. "que somente se o recurso Gerber tiver aberturas internas, elas\n"
  6738. "serão isoladas. Se o que é desejado é cortar o isolamento\n"
  6739. "dentro do recurso Gerber, use uma ferramenta negativa\n"
  6740. "diâmetro acima."
  6741. #: flatcamGUI/ObjectUI.py:344
  6742. msgid "FULL Geo"
  6743. msgstr "Geo COMPLETO"
  6744. #: flatcamGUI/ObjectUI.py:346
  6745. msgid ""
  6746. "Create the Geometry Object\n"
  6747. "for isolation routing. It contains both\n"
  6748. "the interiors and exteriors geometry."
  6749. msgstr ""
  6750. "Cria o Objeto de Geometria\n"
  6751. "para o roteamento de isolamento. Contém tanto a geometria do interior quanto a do exterior."
  6752. #: flatcamGUI/ObjectUI.py:355
  6753. msgid "Ext Geo"
  6754. msgstr "Geo Ext"
  6755. #: flatcamGUI/ObjectUI.py:357
  6756. msgid ""
  6757. "Create the Geometry Object\n"
  6758. "for isolation routing containing\n"
  6759. "only the exteriors geometry."
  6760. msgstr ""
  6761. "Cria o Objeto de Geometria\n"
  6762. "para roteamento de isolamento contendo\n"
  6763. "somente a geometria do exterior."
  6764. #: flatcamGUI/ObjectUI.py:364
  6765. msgid "Int Geo"
  6766. msgstr "Geo Int"
  6767. #: flatcamGUI/ObjectUI.py:366
  6768. msgid ""
  6769. "Create the Geometry Object\n"
  6770. "for isolation routing containing\n"
  6771. "only the interiors geometry."
  6772. msgstr ""
  6773. "Cria o Objeto de Geometria\n"
  6774. "para o roteamento de isolamento contendo\n"
  6775. "somente a geometria do interior."
  6776. #: flatcamGUI/ObjectUI.py:384
  6777. msgid "<b>Clear N-copper:</b>"
  6778. msgstr "<b>Limpa N-cobre:</b>"
  6779. #: flatcamGUI/ObjectUI.py:394 flatcamTools/ToolNonCopperClear.py:240
  6780. msgid ""
  6781. "Create the Geometry Object\n"
  6782. "for non-copper routing."
  6783. msgstr ""
  6784. "Cria o Objeto de Geometria\n"
  6785. "para roteamento sem cobre."
  6786. #: flatcamGUI/ObjectUI.py:400
  6787. msgid "<b>Board cutout:</b>"
  6788. msgstr "<b>Recorte da placa:</b>"
  6789. #: flatcamGUI/ObjectUI.py:408 flatcamTools/ToolCutOut.py:313
  6790. msgid "Cutout Tool"
  6791. msgstr "Ferramenta de Recorte"
  6792. #: flatcamGUI/ObjectUI.py:410
  6793. msgid ""
  6794. "Generate the geometry for\n"
  6795. "the board cutout."
  6796. msgstr "Gera a geometria para o recorte da placa."
  6797. #: flatcamGUI/ObjectUI.py:416
  6798. msgid "<b>Non-copper regions:</b>"
  6799. msgstr "<b>Regiões sem cobre:</b>"
  6800. #: flatcamGUI/ObjectUI.py:418
  6801. msgid ""
  6802. "Create polygons covering the\n"
  6803. "areas without copper on the PCB.\n"
  6804. "Equivalent to the inverse of this\n"
  6805. "object. Can be used to remove all\n"
  6806. "copper from a specified region."
  6807. msgstr ""
  6808. "Criar polígonos cobrindo as\n"
  6809. "áreas sem cobre no PCB.\n"
  6810. "Equivalente ao inverso do\n"
  6811. "objeto. Pode ser usado para remover todo o\n"
  6812. "cobre de uma região especificada."
  6813. #: flatcamGUI/ObjectUI.py:443 flatcamGUI/ObjectUI.py:474
  6814. msgid "Rounded Geo"
  6815. msgstr "Geo Arredondado"
  6816. #: flatcamGUI/ObjectUI.py:445
  6817. msgid "Resulting geometry will have rounded corners."
  6818. msgstr "A geometria resultante terá cantos arredondados."
  6819. #: flatcamGUI/ObjectUI.py:450 flatcamGUI/ObjectUI.py:484 flatcamTools/ToolCutOut.py:168 flatcamTools/ToolCutOut.py:188 flatcamTools/ToolCutOut.py:239 flatcamTools/ToolSolderPaste.py:127
  6820. msgid "Generate Geo"
  6821. msgstr "Gerar Geo"
  6822. #: flatcamGUI/ObjectUI.py:456
  6823. msgid ""
  6824. "Create a geometry surrounding the Gerber object.\n"
  6825. "Square shape."
  6826. msgstr ""
  6827. "Crie uma geometria em torno do objeto Gerber.\n"
  6828. "Forma quadrada."
  6829. #: flatcamGUI/ObjectUI.py:486
  6830. msgid "Generate the Geometry object."
  6831. msgstr "Gera o objeto Geometria."
  6832. #: flatcamGUI/ObjectUI.py:497
  6833. msgid "Excellon Object"
  6834. msgstr "Objeto Excellon"
  6835. #: flatcamGUI/ObjectUI.py:508
  6836. msgid "Solid circles."
  6837. msgstr "Círculos preenchidos ou vazados."
  6838. #: flatcamGUI/ObjectUI.py:536 flatcamGUI/ObjectUI.py:858
  6839. msgid "<b>Tools Table</b>"
  6840. msgstr "<b>Tabela de Ferramentas</b>"
  6841. #: flatcamGUI/ObjectUI.py:556
  6842. msgid "Drills"
  6843. msgstr "Furos"
  6844. #: flatcamGUI/ObjectUI.py:556
  6845. msgid "Slots"
  6846. msgstr "Fendas"
  6847. #: flatcamGUI/ObjectUI.py:557
  6848. msgid "Offset Z"
  6849. msgstr "Deslocamento Z"
  6850. #: flatcamGUI/ObjectUI.py:561
  6851. msgid ""
  6852. "This is the Tool Number.\n"
  6853. "When ToolChange is checked, on toolchange event this value\n"
  6854. "will be showed as a T1, T2 ... Tn in the Machine Code."
  6855. msgstr ""
  6856. "Número da Ferramenta.\n"
  6857. "Quando Trocar Ferramentas estiver marcado, este valor\n"
  6858. " será mostrado como T1, T2 ... Tn no Código da Máquina."
  6859. #: flatcamGUI/ObjectUI.py:565 flatcamGUI/ObjectUI.py:904 flatcamTools/ToolNonCopperClear.py:97 flatcamTools/ToolPaint.py:94
  6860. msgid ""
  6861. "Tool Diameter. It's value (in current FlatCAM units) \n"
  6862. "is the cut width into the material."
  6863. msgstr ""
  6864. "Diâmetro da Ferramenta. Seu valor (nas unidades FlatCAM atuais)\n"
  6865. "é a largura do corte no material."
  6866. #: flatcamGUI/ObjectUI.py:568
  6867. msgid ""
  6868. "The number of Drill holes. Holes that are drilled with\n"
  6869. "a drill bit."
  6870. msgstr ""
  6871. "Número de Furos\nSerão perfurados com brocas."
  6872. #: flatcamGUI/ObjectUI.py:571
  6873. msgid ""
  6874. "The number of Slot holes. Holes that are created by\n"
  6875. "milling them with an endmill bit."
  6876. msgstr ""
  6877. "Número de Fendas\nSerão criadas com fresas."
  6878. #: flatcamGUI/ObjectUI.py:578
  6879. msgid "Toggle display of the drills for the current tool."
  6880. msgstr "Alterna a exibição da ferramenta atual."
  6881. #: flatcamGUI/ObjectUI.py:586
  6882. msgid ""
  6883. "Create a CNC Job object\n"
  6884. "for this drill object."
  6885. msgstr ""
  6886. "Cria um objeto de trabalho CNC para a furação."
  6887. #: flatcamGUI/ObjectUI.py:615 flatcamGUI/ObjectUI.py:1118
  6888. msgid "Tool change"
  6889. msgstr "Troca de ferramentas"
  6890. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:1111
  6891. msgid "Tool change Z:"
  6892. msgstr "Altura para a troca:"
  6893. #: flatcamGUI/ObjectUI.py:625 flatcamGUI/ObjectUI.py:1114
  6894. msgid ""
  6895. "Z-axis position (height) for\n"
  6896. "tool change."
  6897. msgstr "Posição do eixo Z (altura) para a troca de ferramenta."
  6898. #: flatcamGUI/ObjectUI.py:636
  6899. msgid ""
  6900. "Tool height just before starting the work.\n"
  6901. "Delete the value if you don't need this feature."
  6902. msgstr ""
  6903. "Altura da ferramenta antes de iniciar o trabalho.\n"
  6904. "Exclua o valor se você não precisar deste recurso."
  6905. #: flatcamGUI/ObjectUI.py:646
  6906. msgid ""
  6907. "Z-axis position (height) for\n"
  6908. "the last move."
  6909. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  6910. #: flatcamGUI/ObjectUI.py:654
  6911. msgid "Feedrate (Plunge):"
  6912. msgstr "Avanço (Mergulho):"
  6913. #: flatcamGUI/ObjectUI.py:656
  6914. msgid ""
  6915. "Tool speed while drilling\n"
  6916. "(in units per minute).\n"
  6917. "This is for linear move G01."
  6918. msgstr ""
  6919. "Velocidade da ferramenta durante a perfuração\n"
  6920. "(em unidades por minuto).\n"
  6921. "Para movimento linear G01."
  6922. #: flatcamGUI/ObjectUI.py:709
  6923. msgid ""
  6924. "The json file that dictates\n"
  6925. "gcode output."
  6926. msgstr ""
  6927. "O arquivo de pós-processamento (json) que define\n"
  6928. "a saída G-Ccode."
  6929. #: flatcamGUI/ObjectUI.py:741
  6930. msgid ""
  6931. "Select from the Tools Table above\n"
  6932. "the tools you want to include."
  6933. msgstr "Selecione na Tabela de Ferramentas acima\n"
  6934. "as ferramentas que você deseja incluir."
  6935. #: flatcamGUI/ObjectUI.py:748
  6936. msgid "<b>Type: </b>"
  6937. msgstr "<b>Tipo: </b>"
  6938. #: flatcamGUI/ObjectUI.py:750
  6939. msgid ""
  6940. "Choose what to use for GCode generation:\n"
  6941. "'Drills', 'Slots' or 'Both'.\n"
  6942. "When choosing 'Slots' or 'Both', slots will be\n"
  6943. "converted to a series of drills."
  6944. msgstr ""
  6945. "Escolha o que usar para a geração do G-Code:\n"
  6946. "'Broca', 'Fenda' ou 'Ambos'.\n"
  6947. "Quando escolher 'Fenda' ou 'Ambos', as fendas serão\n"
  6948. "convertidas em uma série de brocas."
  6949. #: flatcamGUI/ObjectUI.py:765
  6950. msgid "Create GCode"
  6951. msgstr "Criar G-Code"
  6952. #: flatcamGUI/ObjectUI.py:767
  6953. msgid "Generate the CNC Job."
  6954. msgstr "Gera o arquivo G-Code para o CNC."
  6955. #: flatcamGUI/ObjectUI.py:779
  6956. msgid ""
  6957. "Select from the Tools Table above\n"
  6958. " the hole dias that are to be milled."
  6959. msgstr ""
  6960. "Selecione na Tabela de Ferramentas acima\n"
  6961. "os diâmetros dos furo que serão fresados."
  6962. #: flatcamGUI/ObjectUI.py:786
  6963. msgid "Drills Tool dia:"
  6964. msgstr "Diâmetro da Broca:"
  6965. #: flatcamGUI/ObjectUI.py:793
  6966. msgid "Mill Drills Geo"
  6967. msgstr "Geo Furos"
  6968. #: flatcamGUI/ObjectUI.py:795
  6969. msgid ""
  6970. "Create the Geometry Object\n"
  6971. "for milling DRILLS toolpaths."
  6972. msgstr ""
  6973. "Cria o Objeto Geometria com\n"
  6974. "os caminhos da ferramenta de FUROS."
  6975. #: flatcamGUI/ObjectUI.py:802
  6976. msgid "Slots Tool dia:"
  6977. msgstr "Diâmetro da Fresa:"
  6978. #: flatcamGUI/ObjectUI.py:809
  6979. msgid "Mill Slots Geo"
  6980. msgstr "Geo Fendas"
  6981. #: flatcamGUI/ObjectUI.py:811
  6982. msgid ""
  6983. "Create the Geometry Object\n"
  6984. "for milling SLOTS toolpaths."
  6985. msgstr ""
  6986. "Cria o Objeto Geometria com\n"
  6987. "os caminhos da ferramenta de FENDAS."
  6988. #: flatcamGUI/ObjectUI.py:829
  6989. msgid "Geometry Object"
  6990. msgstr "Objeto Geometria"
  6991. #: flatcamGUI/ObjectUI.py:860
  6992. msgid ""
  6993. "Tools in this Geometry object used for cutting.\n"
  6994. "The 'Offset' entry will set an offset for the cut.\n"
  6995. "'Offset' can be inside, outside, on path (none) and custom.\n"
  6996. "'Type' entry is only informative and it allow to know the \n"
  6997. "intent of using the current tool. \n"
  6998. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  6999. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7000. "ball(B), or V-Shaped(V). \n"
  7001. "When V-shaped is selected the 'Type' entry is automatically \n"
  7002. "set to Isolation, the CutZ parameter in the UI form is\n"
  7003. "grayed out and Cut Z is automatically calculated from the newly \n"
  7004. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7005. msgstr ""
  7006. "Ferramentas neste objeto Geometria usados para o corte.\n"
  7007. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  7008. "'Deslocamento' pode estar dentro, fora, no caminho (none) e personalizado. A entrada\n"
  7009. "'Tipo' é somente informativo e permite conhecer a necessidade de usar a ferramenta atual.\n"
  7010. "Pode ser Desbaste, Acabamento ou Isolamento.\n"
  7011. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  7012. "bola (B) ou Em Forma de V (V).\n"
  7013. "Quando forma em V é selecionada, a entrada 'Tipo' é automaticamente\n"
  7014. "conectada ao Isolamento, o parâmetro CorteZ no formulário da interface do usuário é\n"
  7015. "desabilitado e o Corte Z é calculado automaticamente a partir das entradas do formulário da interface do usuário\n"
  7016. "e do Ângulo da Ponta-V."
  7017. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  7018. msgid "Dia"
  7019. msgstr "Dia"
  7020. #: flatcamGUI/ObjectUI.py:891 flatcamGUI/ObjectUI.py:1465
  7021. msgid "TT"
  7022. msgstr "TF"
  7023. #: flatcamGUI/ObjectUI.py:898
  7024. msgid ""
  7025. "This is the Tool Number.\n"
  7026. "When ToolChange is checked, on toolchange event this value\n"
  7027. "will be showed as a T1, T2 ... Tn"
  7028. msgstr ""
  7029. "Número da Ferramenta.\n"
  7030. "Quando Trocar Ferramentas estiver marcado, no evento este valor\n"
  7031. " será mostrado como T1, T2 ... Tn"
  7032. #: flatcamGUI/ObjectUI.py:909
  7033. msgid ""
  7034. "The value for the Offset can be:\n"
  7035. "- Path -> There is no offset, the tool cut will be done through the geometry line.\n"
  7036. "- In(side) -> The tool cut will follow the geometry inside. It will create a 'pocket'.\n"
  7037. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7038. msgstr ""
  7039. "O valor para o Deslocamento pode ser:\n"
  7040. "- Caminho -> Não há deslocamento, o corte da ferramenta será feito através da linha da geometria.\n"
  7041. "- In(terno) -> O corte da ferramenta seguirá a geometria interna. Ele criará um 'pocket'.\n"
  7042. "- Ex(terno) -> O corte da ferramenta seguirá a linha da geometria no lado externo."
  7043. #: flatcamGUI/ObjectUI.py:916
  7044. msgid ""
  7045. "The (Operation) Type has only informative value. Usually the UI form values \n"
  7046. "are choosed based on the operation type and this will serve as a reminder.\n"
  7047. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7048. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7049. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7050. "For Isolation we need a lower Feedrate as it use a milling bit with a fine tip."
  7051. msgstr ""
  7052. "O tipo (operação) tem apenas valor informativo. Normalmente, os valores do formulário da interface do usuário\n"
  7053. "são escolhidos com base no tipo de operação e isso servirá como um lembrete.\n"
  7054. "Pode ser 'Desbaste', 'Acabamento' ou 'Isolamento'.\n"
  7055. "Para desbaste, podemos escolher uma taxa de Avanço inferior e corte de múltiplas profundidades.\n"
  7056. "Para Acabamento, podemos escolher uma taxa de avanço mais alta, sem multi-profundidade.\n"
  7057. "Para Isolamento, precisamos de uma velocidade de avanço menor, pois é usada uma broca com ponta fina."
  7058. #: flatcamGUI/ObjectUI.py:925
  7059. msgid ""
  7060. "The Tool Type (TT) can be:\n"
  7061. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the cut width in material\n"
  7062. "is exactly the tool diameter.\n"
  7063. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7064. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable two additional UI form\n"
  7065. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter such\n"
  7066. "as the cut width into material will be equal with the value in the Tool Diameter column of this table.\n"
  7067. "Choosing the V-Shape Tool Type automatically will select the Operation Type as Isolation."
  7068. msgstr ""
  7069. "O Tipo de Ferramenta (TF) pode ser:\n"
  7070. "- Circular com 1 ... 4 dentes -> apenas informativo. Sendo circular a largura de corte no material\n"
  7071. " é exatamente o diâmetro da ferramenta.\n"
  7072. "- Bola -> apenas informativo e faz referência à fresa tipo Ball.\n"
  7073. "- Em Forma de V -> o parâmetro Corte Z no formulário de interface do usuário será desabilitado e dois campos adicionais\n"
  7074. " no formulário UI serão habilitados: Diâmetro Ângulo Ponta-V e Ângulo Ponta-V. O ajuste desses dois valores ajustará o parâmetro Corte Z, como\n"
  7075. "a largura do corte no material será igual ao valor da coluna Diâmetro da ferramenta dessa tabela.\n"
  7076. "Escolher o tipo de ferramenta Em Forma de V automaticamente selecionará o tipo de operação como isolamento."
  7077. #: flatcamGUI/ObjectUI.py:936
  7078. msgid ""
  7079. "Plot column. It is visible only for MultiGeo geometries, meaning geometries that holds the geometry\n"
  7080. "data into the tools. For those geometries, deleting the tool will delete the geometry data also,\n"
  7081. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the plot on canvas\n"
  7082. "for the corresponding tool."
  7083. msgstr ""
  7084. "Coluna de plotagem. É visível apenas para geometrias MultiGeo, ou seja, geometrias que contêm os dados da geometria\n"
  7085. "das ferramentas. Para essas geometrias, a exclusão da ferramenta também excluirá os dados da geometria,\n"
  7086. "assim, esteja ATENTO. Nas caixas de seleção de cada linha, pode ser ativado/desativado o gráfico na tela\n"
  7087. "para a ferramenta correspondente."
  7088. #: flatcamGUI/ObjectUI.py:949
  7089. msgid "Tool Offset:"
  7090. msgstr "Deslocamento:"
  7091. #: flatcamGUI/ObjectUI.py:952
  7092. msgid ""
  7093. "The value to offset the cut when \n"
  7094. "the Offset type selected is 'Offset'.\n"
  7095. "The value can be positive for 'outside'\n"
  7096. "cut and negative for 'inside' cut."
  7097. msgstr ""
  7098. "O valor para compensar o corte quando\n"
  7099. "o tipo selecionado for 'Deslocamento'.\n"
  7100. "O valor pode ser positivo para corte 'por fora'\n"
  7101. "e negativo para corte 'por dentro'."
  7102. #: flatcamGUI/ObjectUI.py:975
  7103. msgid "<b>Tool Dia:</b>"
  7104. msgstr "<b>Dia Ferramenta:</b>"
  7105. #: flatcamGUI/ObjectUI.py:994 flatcamTools/ToolNonCopperClear.py:136 flatcamTools/ToolPaint.py:133
  7106. msgid ""
  7107. "Add a new tool to the Tool Table\n"
  7108. "with the diameter specified above."
  7109. msgstr ""
  7110. "Adicione uma nova ferramenta à Tabela de Ferramentas\n"
  7111. "com o diâmetro especificado."
  7112. #: flatcamGUI/ObjectUI.py:1002
  7113. msgid ""
  7114. "Copy a selection of tools in the Tool Table\n"
  7115. "by first selecting a row in the Tool Table."
  7116. msgstr "Copia uma seleção de ferramentas na Tabela de Ferramentas selecionando primeiro uma linha na Tabela de Ferramentas."
  7117. #: flatcamGUI/ObjectUI.py:1010
  7118. msgid ""
  7119. "Delete a selection of tools in the Tool Table\n"
  7120. "by first selecting a row in the Tool Table."
  7121. msgstr "Apaga uma seleção de ferramentas na Tabela de Ferramentas selecionando primeiro uma linha na Tabela de Ferramentas."
  7122. #: flatcamGUI/ObjectUI.py:1026
  7123. msgid "<b>Tool Data</b>"
  7124. msgstr "<b>Dados da Ferramenta</b>"
  7125. #: flatcamGUI/ObjectUI.py:1029
  7126. msgid ""
  7127. "The data used for creating GCode.\n"
  7128. "Each tool store it's own set of such data."
  7129. msgstr ""
  7130. "Os dados usados para criar o G-Code.\n"
  7131. "Cada loja de ferramentas possui seu próprio conjunto de dados."
  7132. #: flatcamGUI/ObjectUI.py:1039
  7133. msgid "V-Tip Dia:"
  7134. msgstr "Diâmetro Ponta-V:"
  7135. #: flatcamGUI/ObjectUI.py:1042
  7136. msgid "The tip diameter for V-Shape Tool"
  7137. msgstr "O diâmetro da ponta da ferramenta em forma de V"
  7138. #: flatcamGUI/ObjectUI.py:1050
  7139. msgid "V-Tip Angle:"
  7140. msgstr "Ângulo Ponta-V:"
  7141. #: flatcamGUI/ObjectUI.py:1053
  7142. msgid ""
  7143. "The tip angle for V-Shape Tool.\n"
  7144. "In degree."
  7145. msgstr "O ângulo da ponta da ferramenta em forma de V, em graus."
  7146. #: flatcamGUI/ObjectUI.py:1074
  7147. msgid "Multi-Depth:"
  7148. msgstr "Multi-Profundidade:"
  7149. #: flatcamGUI/ObjectUI.py:1077
  7150. msgid ""
  7151. "Use multiple passes to limit\n"
  7152. "the cut depth in each pass. Will\n"
  7153. "cut multiple times until Cut Z is\n"
  7154. "reached.\n"
  7155. "To the right, input the depth of \n"
  7156. "each pass (positive value)."
  7157. msgstr ""
  7158. "Usa vários passes para limitar a profundidade de corte em cada passagem. Será\n"
  7159. "cortado várias vezes até que o Corte Z seja atingido.\n"
  7160. "Para a direita, insira a profundidade de cada passe (valor positivo)."
  7161. #: flatcamGUI/ObjectUI.py:1090
  7162. msgid "Depth of each pass (positive)."
  7163. msgstr "Profundidade de cada passe (positivo)."
  7164. #: flatcamGUI/ObjectUI.py:1121
  7165. msgid ""
  7166. "Include tool-change sequence\n"
  7167. "in the Machine Code (Pause for tool change)."
  7168. msgstr ""
  7169. "Inclua a sequência de troca de ferramentas\n"
  7170. "no Código da Máquina (Pausa para troca de ferramentas)."
  7171. #: flatcamGUI/ObjectUI.py:1147
  7172. msgid ""
  7173. "This is the height (Z) at which the CNC\n"
  7174. "will go as the last move."
  7175. msgstr ""
  7176. "Esta é a altura (Z) em que o CNC\n"
  7177. " vai como o último movimento."
  7178. #: flatcamGUI/ObjectUI.py:1168
  7179. msgid "Feed Rate Z (Plunge):"
  7180. msgstr "Taxa de Avanço Z (Mergulho):"
  7181. #: flatcamGUI/ObjectUI.py:1171
  7182. msgid ""
  7183. "Cutting speed in the Z\n"
  7184. "plane in units per minute"
  7185. msgstr ""
  7186. "Velocidade de corte no plano Z\n"
  7187. "em unidades por minuto"
  7188. #: flatcamGUI/ObjectUI.py:1180
  7189. msgid "Feed Rate Rapids:"
  7190. msgstr "Taxa de Avanço Rápido:"
  7191. #: flatcamGUI/ObjectUI.py:1183
  7192. msgid ""
  7193. "Cutting speed in the XY\n"
  7194. "plane in units per minute\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\n"
  7201. "em unidades por minuto\n"
  7202. "Usado para o movimento rápido G00.\n"
  7203. "É útil apenas para Marlin,\n"
  7204. "ignore para outros casos."
  7205. #: flatcamGUI/ObjectUI.py:1199
  7206. msgid "Cut over 1st pt"
  7207. msgstr "Cut over 1st pt"
  7208. #: flatcamGUI/ObjectUI.py:1214
  7209. msgid ""
  7210. "Speed of the spindle in RPM (optional).\n"
  7211. "If LASER postprocessor is used,\n"
  7212. "this value is the power of laser."
  7213. msgstr ""
  7214. "Velocidade do spindle em RPM (opcional).\n"
  7215. "Se o pós-processador LASER é usado,\n"
  7216. "este valor é a potência do laser."
  7217. #: flatcamGUI/ObjectUI.py:1243
  7218. msgid "PostProcessor:"
  7219. msgstr "Pós-processador:"
  7220. #: flatcamGUI/ObjectUI.py:1246
  7221. msgid ""
  7222. "The Postprocessor file that dictates\n"
  7223. "the Machine Code (like GCode, RML, HPGL) output."
  7224. msgstr ""
  7225. "O arquivo Pós-processador determina a saída\n"
  7226. "de código da máquina (como G-Code, RML, HPGL)."
  7227. #: flatcamGUI/ObjectUI.py:1284
  7228. msgid ""
  7229. "Add at least one tool in the tool-table.\n"
  7230. "Click the header to select all, or Ctrl + LMB\n"
  7231. "for custom selection of tools."
  7232. msgstr ""
  7233. "Adicione pelo menos uma ferramenta na tabela de ferramentas.\n"
  7234. "Clique no cabeçalho para selecionar todos ou Ctrl + Botão Esquerdo do Mouse\n"
  7235. "para seleção personalizada de ferramentas."
  7236. #: flatcamGUI/ObjectUI.py:1291
  7237. msgid "Generate"
  7238. msgstr "Gerar"
  7239. #: flatcamGUI/ObjectUI.py:1294
  7240. msgid "Generate the CNC Job object."
  7241. msgstr "Gera o objeto de trabalho do CNC."
  7242. #: flatcamGUI/ObjectUI.py:1302
  7243. msgid "<b>Paint Area:</b>"
  7244. msgstr "<b>Área de Pintura:</b>"
  7245. #: flatcamGUI/ObjectUI.py:1317
  7246. msgid "Launch Paint Tool in Tools Tab."
  7247. msgstr "Inicia a ferramenta de pintura na guia Ferramentas."
  7248. #: flatcamGUI/ObjectUI.py:1334
  7249. msgid "CNC Job Object"
  7250. msgstr "Objeto de trabalho CNC"
  7251. #: flatcamGUI/ObjectUI.py:1353
  7252. msgid "<b>Plot kind:</b>"
  7253. msgstr "<b>Tipo de Plot:</b>"
  7254. #: flatcamGUI/ObjectUI.py:1369
  7255. msgid "<b>Display Annotation:</b>"
  7256. msgstr "<b>Exibir Anotação:</b>"
  7257. #: flatcamGUI/ObjectUI.py:1388
  7258. msgid "<b>Travelled dist.:</b>"
  7259. msgstr "<b>Dist. percorrida:</b>"
  7260. #: flatcamGUI/ObjectUI.py:1391 flatcamGUI/ObjectUI.py:1398
  7261. msgid ""
  7262. "This is the total travelled distance on X-Y plane.\n"
  7263. "In current units."
  7264. msgstr ""
  7265. "Essa é a distância total percorrida no plano XY,\n"
  7266. "nas unidades atuais."
  7267. #: flatcamGUI/ObjectUI.py:1429
  7268. msgid "<b>CNC Tools Table</b>"
  7269. msgstr "<b>Tabela de Ferramentas CNC</b>"
  7270. #: flatcamGUI/ObjectUI.py:1432
  7271. msgid ""
  7272. "Tools in this CNCJob object used for cutting.\n"
  7273. "The tool diameter is used for plotting on canvas.\n"
  7274. "The 'Offset' entry will set an offset for the cut.\n"
  7275. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7276. "'Type' entry is only informative and it allow to know the \n"
  7277. "intent of using the current tool. \n"
  7278. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7279. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7280. "ball(B), or V-Shaped(V)."
  7281. msgstr ""
  7282. "Ferramentas usadas para o corte.\n"
  7283. "O diâmetro da ferramenta é usado para plotagem na tela.\n"
  7284. "A entrada 'Deslocamento' define um deslocamento para o corte.\n"
  7285. "'Deslocamento' pode estar dentro, fora, no caminho (nenhum) e personalizado. A entrada\n"
  7286. "'Tipo' é apenas informativa e permite conhecer a necessidade de usar a ferramenta atual.\n"
  7287. "Pode ser Desbaste, Acabamento ou Isolamento.\n"
  7288. "O 'Tipo de Ferramenta' (TF) pode ser circular com 1 a 4 dentes (C1..C4),\n"
  7289. "bola (B) ou Em forma de V (V)."
  7290. #: flatcamGUI/ObjectUI.py:1466
  7291. msgid "P"
  7292. msgstr "P"
  7293. #: flatcamGUI/ObjectUI.py:1472
  7294. msgid "Update Plot"
  7295. msgstr "Atualizar Plot"
  7296. #: flatcamGUI/ObjectUI.py:1474
  7297. msgid "Update the plot."
  7298. msgstr "Atualiza plot."
  7299. #: flatcamGUI/ObjectUI.py:1481
  7300. msgid "<b>Export CNC Code:</b>"
  7301. msgstr "<b>Exportar Código CNC:</b>"
  7302. #: flatcamGUI/ObjectUI.py:1489
  7303. msgid "Prepend to CNC Code:"
  7304. msgstr "Cabeçalho ao Código CNC:"
  7305. #: flatcamGUI/ObjectUI.py:1492
  7306. msgid ""
  7307. "Type here any G-Code commands you would\n"
  7308. "like to add to the beginning of the generated file."
  7309. msgstr "Digite aqui comandos G-Code que você gostaria de adicionar ao início do arquivo gerado."
  7310. #: flatcamGUI/ObjectUI.py:1502
  7311. msgid "Append to CNC Code:"
  7312. msgstr "Anexar ao Código CNC:"
  7313. #: flatcamGUI/ObjectUI.py:1526
  7314. msgid ""
  7315. "Type here any G-Code commands you would\n"
  7316. "like to be executed when Toolchange event is encountered.\n"
  7317. "This will constitute a Custom Toolchange GCode,\n"
  7318. "or a Toolchange Macro.\n"
  7319. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7320. "\n"
  7321. "WARNING: it can be used only with a postprocessor file\n"
  7322. "that has 'toolchange_custom' in it's name and this is built\n"
  7323. "having as template the 'Toolchange Custom' posprocessor file."
  7324. msgstr ""
  7325. "Digite aqui os comandos do G-Code G que você gostaria de executar quando o evento do Troca de Ferramentas for encontrado.\n"
  7326. "Ele será um G-Code personalizado para Troca de Ferramentas,\n"
  7327. "ou uma Macro.\n"
  7328. "As variáveis do FlatCAM são circundadas pelo símbolo '%'.\n"
  7329. "\n"
  7330. "ATENÇÃO: pode ser usado apenas com um arquivo de pós-processador\n"
  7331. "que tenha 'toolchange_custom' em seu nome e este é construído tendo\n"
  7332. "como modelo o arquivo do posprocessador 'Customização da troca de ferramentas'."
  7333. #: flatcamGUI/ObjectUI.py:1574
  7334. msgid "z_cut = depth where to cut"
  7335. msgstr "z_cut = profundidade onde cortar"
  7336. #: flatcamGUI/ObjectUI.py:1575
  7337. msgid "z_move = height where to travel"
  7338. msgstr "z_move = altura para onde viajar"
  7339. #: flatcamGUI/ObjectUI.py:1593
  7340. msgid "View CNC Code"
  7341. msgstr "Ver Código CNC"
  7342. #: flatcamGUI/ObjectUI.py:1596
  7343. msgid ""
  7344. "Opens TAB to view/modify/print G-Code\n"
  7345. "file."
  7346. msgstr "Abre uma ABA para visualizar/modificar/imprimir o arquivo G-Code."
  7347. #: flatcamGUI/ObjectUI.py:1602
  7348. msgid "Save CNC Code"
  7349. msgstr "Salvar Código CNC"
  7350. #: flatcamGUI/ObjectUI.py:1605
  7351. msgid ""
  7352. "Opens dialog to save G-Code\n"
  7353. "file."
  7354. msgstr "Abre o diálogo para salvar o arquivo G-Code."
  7355. #: flatcamTools/ToolCalculators.py:24
  7356. msgid "Calculators"
  7357. msgstr "Calculadoras"
  7358. #: flatcamTools/ToolCalculators.py:25
  7359. msgid "V-Shape Tool Calculator"
  7360. msgstr "Calculadora Ferramenta Forma-V"
  7361. #: flatcamTools/ToolCalculators.py:26
  7362. msgid "Units Calculator"
  7363. msgstr "Calculadora de Unidades"
  7364. #: flatcamTools/ToolCalculators.py:27
  7365. msgid "ElectroPlating Calculator"
  7366. msgstr "Calculadora Eletrolítica"
  7367. #: flatcamTools/ToolCalculators.py:68
  7368. msgid "Here you enter the value to be converted from INCH to MM"
  7369. msgstr "Aqui você insere o valor a ser convertido de polegadas para mm"
  7370. #: flatcamTools/ToolCalculators.py:73
  7371. msgid "Here you enter the value to be converted from MM to INCH"
  7372. msgstr "Aqui você insere o valor a ser convertido de mm para polegadas"
  7373. #: flatcamTools/ToolCalculators.py:98
  7374. msgid ""
  7375. "This is the diameter of the tool tip.\n"
  7376. "The manufacturer specifies it."
  7377. msgstr ""
  7378. "Diâmetro da ponta da ferramenta.\n"
  7379. "Especificado pelo fabricante."
  7380. #: flatcamTools/ToolCalculators.py:101
  7381. msgid "Tip Angle:"
  7382. msgstr "Ângulo da Ponta:"
  7383. #: flatcamTools/ToolCalculators.py:105
  7384. msgid ""
  7385. "This is the angle of the tip of the tool.\n"
  7386. "It is specified by manufacturer."
  7387. msgstr ""
  7388. "Ângulo da ponta da ferramenta.\n"
  7389. "Especificado pelo fabricante."
  7390. #: flatcamTools/ToolCalculators.py:112
  7391. msgid ""
  7392. "This is the depth to cut into the material.\n"
  7393. "In the CNCJob is the CutZ parameter."
  7394. msgstr ""
  7395. "Esta é a profundidade a cortar no material.\n"
  7396. "No Trabalho CNC é o parâmetro Corte Z."
  7397. #: flatcamTools/ToolCalculators.py:115
  7398. msgid "Tool Diameter:"
  7399. msgstr "Diâmetro da ferramenta:"
  7400. #: flatcamTools/ToolCalculators.py:119
  7401. msgid ""
  7402. "This is the tool diameter to be entered into\n"
  7403. "FlatCAM Gerber section.\n"
  7404. "In the CNCJob section it is called >Tool dia<."
  7405. msgstr ""
  7406. "Este é o diâmetro da ferramenta a ser inserido na seção\n"
  7407. "FlatCAM Gerber.\n"
  7408. "Na seção CNC é chamado de Diâmetro da Ferramenta."
  7409. #: flatcamTools/ToolCalculators.py:131 flatcamTools/ToolCalculators.py:214
  7410. msgid "Calculate"
  7411. msgstr "Calcular"
  7412. #: flatcamTools/ToolCalculators.py:134
  7413. msgid ""
  7414. "Calculate either the Cut Z or the effective tool diameter,\n"
  7415. " depending on which is desired and which is known. "
  7416. msgstr "Calcule o Corte Z ou o diâmetro efetivo da ferramenta, dependendo do que é desejado e do que é conhecido."
  7417. #: flatcamTools/ToolCalculators.py:190
  7418. msgid "Current Value:"
  7419. msgstr "Valor da Corrente:"
  7420. #: flatcamTools/ToolCalculators.py:194
  7421. msgid ""
  7422. "This is the current intensity value\n"
  7423. "to be set on the Power Supply. In Amps."
  7424. msgstr ""
  7425. "Este é o valor de intensidade de corrente\n"
  7426. "a ser ajustado na fonte de alimentação. Em Ampères."
  7427. #: flatcamTools/ToolCalculators.py:198
  7428. msgid "Time:"
  7429. msgstr "Tempo:"
  7430. #: flatcamTools/ToolCalculators.py:202
  7431. msgid ""
  7432. "This is the calculated time required for the procedure.\n"
  7433. "In minutes."
  7434. msgstr "Tempo calculado necessário para o procedimento, em minutos."
  7435. #: flatcamTools/ToolCalculators.py:217
  7436. msgid ""
  7437. "Calculate the current intensity value and the procedure time,\n"
  7438. " depending on the parameters above"
  7439. msgstr ""
  7440. "Calcula o valor da intensidade de corrente e o tempo do procedimento,\n"
  7441. "dependendo dos parâmetros acima"
  7442. #: flatcamTools/ToolCutOut.py:17
  7443. msgid "Cutout PCB"
  7444. msgstr "Recorte PCB"
  7445. #: flatcamTools/ToolCutOut.py:53
  7446. msgid "Obj Type:"
  7447. msgstr "Tipo de Obj:"
  7448. #: flatcamTools/ToolCutOut.py:55
  7449. msgid ""
  7450. "Specify the type of object to be cutout.\n"
  7451. "It can be of type: Gerber or Geometry.\n"
  7452. "What is selected here will dictate the kind\n"
  7453. "of objects that will populate the 'Object' combobox."
  7454. msgstr ""
  7455. "Especifica o tipo de objeto a ser cortado.\n"
  7456. "Pode ser do tipo: Gerber ou Geometria.\n"
  7457. "O que estiver selecionado aqui irá ditar o tipo\n"
  7458. "de objetos que preencherão a caixa de combinação 'Objeto'."
  7459. #: flatcamTools/ToolCutOut.py:69 flatcamTools/ToolPanelize.py:71
  7460. msgid "Object:"
  7461. msgstr "Objeto:"
  7462. #: flatcamTools/ToolCutOut.py:71
  7463. msgid "Object to be cutout. "
  7464. msgstr "Objeto a ser recortado."
  7465. #: flatcamTools/ToolCutOut.py:79
  7466. msgid ""
  7467. "Diameter of the tool used to cutout\n"
  7468. "the PCB shape out of the surrounding material."
  7469. msgstr "Diâmetro da ferramenta usada para cortar o entorno do PCB."
  7470. #: flatcamTools/ToolCutOut.py:88
  7471. msgid ""
  7472. "Margin over bounds. A positive value here\n"
  7473. "will make the cutout of the PCB further from\n"
  7474. "the actual PCB border"
  7475. msgstr "Margem além dos limites. Um valor positivo aqui tornará o recorte do PCB mais longe da borda real da PCB"
  7476. #: flatcamTools/ToolCutOut.py:98
  7477. msgid ""
  7478. "The size of the bridge gaps in the cutout\n"
  7479. "used to keep the board connected to\n"
  7480. "the surrounding material (the one \n"
  7481. "from which the PCB is cutout)."
  7482. msgstr ""
  7483. "O tamanho das pontes no recorte,\n"
  7484. "utilizadas para manter a placa conectada\n"
  7485. "ao material circundante (a partir do qual o PCB é recortado)."
  7486. #: flatcamTools/ToolCutOut.py:117
  7487. msgid ""
  7488. "Create a convex shape surrounding the entire PCB.\n"
  7489. "Used only if the source object type is Gerber."
  7490. msgstr ""
  7491. "Cria uma forma convexa ao redor de toda a PCB.\n"
  7492. "Utilize somente se o tipo de objeto de origem for Gerber."
  7493. #: flatcamTools/ToolCutOut.py:123
  7494. msgid "A. Automatic Bridge Gaps"
  7495. msgstr "A. Pontes Automáticas"
  7496. #: flatcamTools/ToolCutOut.py:125
  7497. msgid "This section handle creation of automatic bridge gaps."
  7498. msgstr "Esta seção trata da criação de pontes automáticas."
  7499. #: flatcamTools/ToolCutOut.py:136
  7500. msgid ""
  7501. "Number of gaps used for the Automatic cutout.\n"
  7502. "There can be maximum 8 bridges/gaps.\n"
  7503. "The choices are:\n"
  7504. "- lr - left + right\n"
  7505. "- tb - top + bottom\n"
  7506. "- 4 - left + right +top + bottom\n"
  7507. "- 2lr - 2*left + 2*right\n"
  7508. "- 2tb - 2*top + 2*bottom\n"
  7509. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7510. msgstr ""
  7511. "Número de pontes usadas para o Recorte Automático.\n"
  7512. "Pode haver no máximo 8 pontes.\n"
  7513. "As opções são:\n"
  7514. "- ed - esquerda + direita\n"
  7515. "- si - parte superior + inferior\n"
  7516. "- 4 - esquerda + direita + parte superior + inferior\n"
  7517. "- 2ed - 2*esquerda + 2*direita\n"
  7518. "- 2si - 2*superior + 2*inferior\n"
  7519. "- 8 - 2*esquerda + 2*direita + 2*superior + 2*inferior"
  7520. #: flatcamTools/ToolCutOut.py:159
  7521. msgid "FreeForm:"
  7522. msgstr "Forma Livre:"
  7523. #: flatcamTools/ToolCutOut.py:161
  7524. msgid ""
  7525. "The cutout shape can be of ny shape.\n"
  7526. "Useful when the PCB has a non-rectangular shape."
  7527. msgstr ""
  7528. "O recorte pode ter qualquer forma.\n"
  7529. "Útil quando o PCB tem uma forma não retangular."
  7530. #: flatcamTools/ToolCutOut.py:170
  7531. msgid ""
  7532. "Cutout the selected object.\n"
  7533. "The cutout shape can be of any shape.\n"
  7534. "Useful when the PCB has a non-rectangular shape."
  7535. msgstr ""
  7536. "Recorta o objeto selecionado.\n"
  7537. "O recorte pode ter qualquer forma.\n"
  7538. "Útil quando o PCB tem uma forma não retangular."
  7539. #: flatcamTools/ToolCutOut.py:179
  7540. msgid "Rectangular:"
  7541. msgstr "Retangular:"
  7542. #: flatcamTools/ToolCutOut.py:181
  7543. msgid ""
  7544. "The resulting cutout shape is\n"
  7545. "always a rectangle shape and it will be\n"
  7546. "the bounding box of the Object."
  7547. msgstr ""
  7548. "O recorte resultante é\n"
  7549. "sempre em forma de retângulo e será\n"
  7550. "a caixa delimitadora do objeto."
  7551. #: flatcamTools/ToolCutOut.py:190
  7552. msgid ""
  7553. "Cutout the selected object.\n"
  7554. "The resulting cutout shape is\n"
  7555. "always a rectangle shape and it will be\n"
  7556. "the bounding box of the Object."
  7557. msgstr ""
  7558. "Recorta o objeto selecionado.\n"
  7559. "O recorte resultante é\n"
  7560. "sempre em forma de retângulo e será\n"
  7561. "a caixa delimitadora do objeto."
  7562. #: flatcamTools/ToolCutOut.py:198
  7563. msgid "B. Manual Bridge Gaps"
  7564. msgstr "B. Pontes Manuais"
  7565. #: flatcamTools/ToolCutOut.py:200
  7566. msgid ""
  7567. "This section handle creation of manual bridge gaps.\n"
  7568. "This is done by mouse clicking on the perimeter of the\n"
  7569. "Geometry object that is used as a cutout object. "
  7570. msgstr ""
  7571. "Esta seção trata da criação de pontes manuais.\n"
  7572. "Isso é feito clicando com o mouse no perímetro do objeto\n"
  7573. "de Geometria que é usado como objeto de recorte."
  7574. #: flatcamTools/ToolCutOut.py:216
  7575. msgid "Geo Obj:"
  7576. msgstr "Obj Geo:"
  7577. #: flatcamTools/ToolCutOut.py:218
  7578. msgid "Geometry object used to create the manual cutout."
  7579. msgstr "Objeto de geometria usado para criar o recorte manual."
  7580. #: flatcamTools/ToolCutOut.py:229
  7581. msgid "Manual Geo:"
  7582. msgstr "Geo Manual:"
  7583. #: flatcamTools/ToolCutOut.py:231 flatcamTools/ToolCutOut.py:241
  7584. msgid ""
  7585. "If the object to be cutout is a Gerber\n"
  7586. "first create a Geometry that surrounds it,\n"
  7587. "to be used as the cutout, if one doesn't exist yet.\n"
  7588. "Select the source Gerber file in the top object combobox."
  7589. msgstr ""
  7590. "Se o objeto a ser recortado for um Gerber\n"
  7591. "primeiro crie uma Geometria que o rodeia,\n"
  7592. "para ser usado como recorte, caso ainda não exista.\n"
  7593. "Selecione o arquivo Gerber de origem na combobox do objeto."
  7594. #: flatcamTools/ToolCutOut.py:251
  7595. msgid "Manual Add Bridge Gaps:"
  7596. msgstr "Adicionar Pontes Manuais:"
  7597. #: flatcamTools/ToolCutOut.py:253
  7598. msgid ""
  7599. "Use the left mouse button (LMB) click\n"
  7600. "to create a bridge gap to separate the PCB from\n"
  7601. "the surrounding material."
  7602. msgstr ""
  7603. "Use o botão esquerdo do mouse (BEM), clique\n"
  7604. "para criar pontes, para separar o PCB do material circundante."
  7605. #: flatcamTools/ToolCutOut.py:260
  7606. msgid "Generate Gap"
  7607. msgstr "Gerar Espaço"
  7608. #: flatcamTools/ToolCutOut.py:262
  7609. msgid ""
  7610. "Use the left mouse button (LMB) click\n"
  7611. "to create a bridge gap to separate the PCB from\n"
  7612. "the surrounding material.\n"
  7613. "The LMB click has to be done on the perimeter of\n"
  7614. "the Geometry object used as a cutout geometry."
  7615. msgstr ""
  7616. "Use o botão esquerdo do mouse (BEM): clique\n"
  7617. "para criar uma ponte para separar a PCB do material adjacente.\n"
  7618. "O clique deve ser feito no perímetro\n"
  7619. "do objeto Geometria usado como uma geometria de recorte."
  7620. #: flatcamTools/ToolCutOut.py:341 flatcamTools/ToolCutOut.py:505 flatcamTools/ToolNonCopperClear.py:666 flatcamTools/ToolPaint.py:764 flatcamTools/ToolPanelize.py:352 flatcamTools/ToolPanelize.py:366 flatcamTools/ToolSub.py:237 flatcamTools/ToolSub.py:249 flatcamTools/ToolSub.py:428 flatcamTools/ToolSub.py:440
  7621. #, python-format
  7622. msgid "[ERROR_NOTCL] Could not retrieve object: %s"
  7623. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto: %s"
  7624. #: flatcamTools/ToolCutOut.py:345
  7625. msgid ""
  7626. "[ERROR_NOTCL] There is no object selected for Cutout.\n"
  7627. "Select one and try again."
  7628. msgstr ""
  7629. "[ERROR_NOTCL] Não há objeto selecionado para Recorte.\n"
  7630. "Selecione um e tente novamente."
  7631. #: flatcamTools/ToolCutOut.py:360
  7632. msgid "[WARNING_NOTCL] Tool Diameter is zero value. Change it to a positive real number."
  7633. msgstr "[WARNING_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número real positivo."
  7634. #: flatcamTools/ToolCutOut.py:370 flatcamTools/ToolCutOut.py:533 flatcamTools/ToolCutOut.py:777
  7635. msgid "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
  7636. msgstr "[WARNING_NOTCL] O valor da margem está ausente ou no formato errado. Altere e tente novamente."
  7637. #: flatcamTools/ToolCutOut.py:381 flatcamTools/ToolCutOut.py:544 flatcamTools/ToolCutOut.py:672
  7638. msgid "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
  7639. msgstr "[WARNING_NOTCL] O valor do tamanho da lacuna está ausente ou no formato incorreto. Altere e tente novamente."
  7640. #: flatcamTools/ToolCutOut.py:388 flatcamTools/ToolCutOut.py:551
  7641. msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
  7642. msgstr "[WARNING_NOTCL] O número de pontes está ausente. Altere e tente novamente."
  7643. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:555
  7644. msgid "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 or 8. Fill in a correct value and retry. "
  7645. msgstr "[WARNING_NOTCL] O valor das lacunas pode ser apenas um de: 'lr', 'tb', '2lr', '2tb', 4 ou 8. Preencha um valor correto e tente novamente."
  7646. #: flatcamTools/ToolCutOut.py:397 flatcamTools/ToolCutOut.py:560
  7647. msgid ""
  7648. "[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
  7649. "Optionally, this Multi-geo Geometry can be converted to Single-geo Geometry,\n"
  7650. "and after that perform Cutout."
  7651. msgstr ""
  7652. "[ERROR] A operação de recorte não pode ser feita em uma Geometria multi-geo.\n"
  7653. "Opcionalmente, essa Geometria Multi-Geo pode ser convertida em Geometria Única,\n"
  7654. "e depois disso, executar Recorte."
  7655. #: flatcamTools/ToolCutOut.py:489 flatcamTools/ToolCutOut.py:642
  7656. msgid "[success] Any form CutOut operation finished."
  7657. msgstr "[success] Operação de Recorte Livre finalizada."
  7658. #: flatcamTools/ToolCutOut.py:509 flatcamTools/ToolPaint.py:768 flatcamTools/ToolPanelize.py:358
  7659. #, python-format
  7660. msgid "[ERROR_NOTCL] Object not found: %s"
  7661. msgstr "[ERROR_NOTCL] Objeto não encontrado: %s"
  7662. #: flatcamTools/ToolCutOut.py:523 flatcamTools/ToolCutOut.py:662 flatcamTools/ToolCutOut.py:767
  7663. msgid "[ERROR_NOTCL] Tool Diameter is zero value. Change it to a positive real number."
  7664. msgstr "[ERROR_NOTCL] O diâmetro da ferramenta está zerado. Mude para um número real positivo."
  7665. #: flatcamTools/ToolCutOut.py:647
  7666. msgid "Click on the selected geometry object perimeter to create a bridge gap ..."
  7667. msgstr "Clique no perímetro do objeto de geometria selecionado para criar uma lacuna de ponte ..."
  7668. #: flatcamTools/ToolCutOut.py:688
  7669. msgid "Making manual bridge gap..."
  7670. msgstr "Fazendo ponte manual ..."
  7671. #: flatcamTools/ToolCutOut.py:711
  7672. #, python-format
  7673. msgid "[ERROR_NOTCL] Could not retrieve Geometry object: %s"
  7674. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Geometria: %s"
  7675. #: flatcamTools/ToolCutOut.py:715
  7676. #, python-format
  7677. msgid "[ERROR_NOTCL] Geometry object for manual cutout not found: %s"
  7678. msgstr "[ERROR_NOTCL] Objeto de geometria para recorte manual não encontrado: %s"
  7679. #: flatcamTools/ToolCutOut.py:725
  7680. msgid "[success] Added manual Bridge Gap."
  7681. msgstr "[success] Ponte Manual Adicionada."
  7682. #: flatcamTools/ToolCutOut.py:742
  7683. #, python-format
  7684. msgid "[ERROR_NOTCL] Could not retrieve Gerber object: %s"
  7685. msgstr "[ERROR_NOTCL] Não foi possível recuperar o objeto Gerber: %s"
  7686. #: flatcamTools/ToolCutOut.py:746
  7687. msgid ""
  7688. "[ERROR_NOTCL] There is no Gerber object selected for Cutout.\n"
  7689. "Select one and try again."
  7690. msgstr ""
  7691. "[ERROR_NOTCL] Não há nenhum objeto Gerber selecionado para o Recorte.\n"
  7692. "Selecione um e tente novamente."
  7693. #: flatcamTools/ToolCutOut.py:751
  7694. msgid ""
  7695. "[ERROR_NOTCL] The selected object has to be of Gerber type.\n"
  7696. "Select a Gerber file and try again."
  7697. msgstr ""
  7698. "[ERROR_NOTCL] O objeto selecionado deve ser do tipo Gerber.\n"
  7699. "Selecione um arquivo Gerber e tente novamente."
  7700. #: flatcamTools/ToolDblSided.py:18
  7701. msgid "2-Sided PCB"
  7702. msgstr "PCB de 2 faces"
  7703. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76 flatcamTools/ToolDblSided.py:100
  7704. msgid "Mirror"
  7705. msgstr "Espelho"
  7706. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78 flatcamTools/ToolDblSided.py:102
  7707. msgid ""
  7708. "Mirrors (flips) the specified object around \n"
  7709. "the specified axis. Does not create a new \n"
  7710. "object, but modifies it."
  7711. msgstr ""
  7712. "Espelha (inverte) o objeto especificado em torno do eixo especificado. Não cria um novo\n"
  7713. "objeto, mas o modifica."
  7714. #: flatcamTools/ToolDblSided.py:73
  7715. msgid "Excellon Object to be mirrored."
  7716. msgstr "Objeto Excellon a ser espelhado."
  7717. #: flatcamTools/ToolDblSided.py:97
  7718. msgid "Geometry Obj to be mirrored."
  7719. msgstr "Objeto Geometria a ser espelhado."
  7720. #: flatcamTools/ToolDblSided.py:135
  7721. msgid ""
  7722. "The axis should pass through a <b>point</b> or cut\n"
  7723. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7724. "the center."
  7725. msgstr "O eixo deve passar por um <b>ponto</b> ou cortar o centro de uma <b>caixa</b> especificada (em um objeto FlatCAM)."
  7726. #: flatcamTools/ToolDblSided.py:152
  7727. msgid "Point/Box Reference:"
  7728. msgstr "Ponto/Caixa de Referência:"
  7729. #: flatcamTools/ToolDblSided.py:154
  7730. msgid ""
  7731. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7732. "the mirroring axis passes.\n"
  7733. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or Geo).\n"
  7734. "Through the center of this object pass the mirroring axis selected above."
  7735. msgstr ""
  7736. "Se 'Ponto' for selecionado acima, armazena as coordenadas (x, y) por onde passa\n"
  7737. "o eixo de espelhamento.\n"
  7738. "Se 'Caixa' for selecionada acima, selecione aqui um objeto FlatCAM (Gerber, Exc ou Geo).\n"
  7739. "O eixo de espelhamento passa pelo centro deste objeto."
  7740. #: flatcamTools/ToolDblSided.py:162
  7741. msgid ""
  7742. "Add the coordinates in format <b>(x, y)</b> through which the mirroring axis \n"
  7743. " selected in 'MIRROR AXIS' pass.\n"
  7744. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7745. "and left mouse button click on canvas or you can enter the coords manually."
  7746. msgstr ""
  7747. "Adicione as coordenadas no formato <b>(x, y)</b> para o eixo de espelhamento passar.\n"
  7748. "As coordenadas (x, y) são capturadas pressionando a tecla SHIFT\n"
  7749. "e clicar o botão esquerdo do mouse na tela ou inseridas manualmente."
  7750. #: flatcamTools/ToolDblSided.py:182
  7751. msgid "Gerber Reference Box Object"
  7752. msgstr "Objeto Caixa de Referência Gerber"
  7753. #: flatcamTools/ToolDblSided.py:183
  7754. msgid "Excellon Reference Box Object"
  7755. msgstr "Objeto Caixa de Referência Excellon"
  7756. #: flatcamTools/ToolDblSided.py:184
  7757. msgid "Geometry Reference Box Object"
  7758. msgstr "Objeto Caixa de Referência de Geometria"
  7759. #: flatcamTools/ToolDblSided.py:193
  7760. msgid "Alignment Drill Coordinates:"
  7761. msgstr "Coordenadas de Alinhamento de Broca:"
  7762. #: flatcamTools/ToolDblSided.py:195
  7763. msgid ""
  7764. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For each set of (x, y) coordinates\n"
  7765. "entered here, a pair of drills will be created:\n"
  7766. "\n"
  7767. "- one drill at the coordinates from the field\n"
  7768. "- one drill in mirror position over the axis selected above in the 'Mirror Axis'."
  7769. msgstr ""
  7770. "Furos de alinhamento (x1, y1), (x2, y2), ... em um lado do eixo do espelho. Para cada conjunto de coordenadas (x, y)\n"
  7771. "indicado aqui, um par de brocas será criado:\n"
  7772. "\n"
  7773. "- uma broca nas coordenadas do campo\n"
  7774. "- uma broca na posição do espelho sobre o eixo selecionado acima."
  7775. #: flatcamTools/ToolDblSided.py:210
  7776. msgid ""
  7777. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7778. "on one side of the mirror axis.\n"
  7779. "\n"
  7780. "The coordinates set can be obtained:\n"
  7781. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7782. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the field.\n"
  7783. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the field and click Paste.\n"
  7784. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7785. msgstr ""
  7786. "Adicione as coordenadas dos furos de alinhamento no formato (x1, y1), (x2, y2), ...\n"
  7787. "em um lado do eixo do espelho.\n"
  7788. "\n"
  7789. "O conjunto de coordenadas pode ser obtido:\n"
  7790. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, clicar em Adicionar.\n"
  7791. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Então CTRL + V no campo.\n"
  7792. "- tecla SHIFT e clique com o botão esquerdo do mouse na tela. Em seguida, clicar no campo e em Colar.\n"
  7793. "- inserindo as coordenadas manualmente no formato: (x1, y1), (x2, y2), ..."
  7794. #: flatcamTools/ToolDblSided.py:224
  7795. msgid "Alignment Drill Diameter"
  7796. msgstr "Diâmetro de Broca de Alinhamento"
  7797. #: flatcamTools/ToolDblSided.py:247
  7798. msgid "Create Excellon Object"
  7799. msgstr "Criar Objeto Excellon"
  7800. #: flatcamTools/ToolDblSided.py:249
  7801. msgid ""
  7802. "Creates an Excellon Object containing the\n"
  7803. "specified alignment holes and their mirror\n"
  7804. "images."
  7805. msgstr ""
  7806. "Cria um Objeto Excellon contendo os\n"
  7807. "furos de alinhamento especificados e suas\n"
  7808. "imagens espelhadas."
  7809. #: flatcamTools/ToolDblSided.py:255
  7810. msgid "Reset"
  7811. msgstr "Redefinir"
  7812. #: flatcamTools/ToolDblSided.py:257
  7813. msgid "Resets all the fields."
  7814. msgstr "Redefine todos os campos."
  7815. #: flatcamTools/ToolDblSided.py:302
  7816. msgid "2-Sided Tool"
  7817. msgstr "Ferramenta 2 Faces"
  7818. #: flatcamTools/ToolDblSided.py:327
  7819. msgid "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are missing. Add them and retry."
  7820. msgstr "[WARNING_NOTCL] A referência 'Ponto' está selecionada e as coordenadas do 'Ponto' estão faltando. Adicione-as e tente novamente."
  7821. #: flatcamTools/ToolDblSided.py:346
  7822. msgid "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
  7823. msgstr "[WARNING_NOTCL] Não há objeto Caixa de referência carregado. Carregue um e tente novamente."
  7824. #: flatcamTools/ToolDblSided.py:368
  7825. msgid "[WARNING_NOTCL] No value or wrong format in Drill Dia entry. Add it and retry."
  7826. msgstr "[WARNING_NOTCL] Nenhum valor ou formato incorreto para Diâmetro de Broca. Altere e tente novamente."
  7827. #: flatcamTools/ToolDblSided.py:375
  7828. msgid "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them and retry."
  7829. msgstr "[WARNING_NOTCL] Não há Coordenadas de Broca de Alinhamento para usar. Adicione-as e tente novamente."
  7830. #: flatcamTools/ToolDblSided.py:397
  7831. msgid "[success] Excellon object with alignment drills created..."
  7832. msgstr "[success] Objeto Excellon com brocas de alinhamento criado ..."
  7833. #: flatcamTools/ToolDblSided.py:406
  7834. msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
  7835. msgstr "[WARNING_NOTCL] Não há objeto Gerber carregado ..."
  7836. #: flatcamTools/ToolDblSided.py:410 flatcamTools/ToolDblSided.py:453 flatcamTools/ToolDblSided.py:497
  7837. msgid "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
  7838. msgstr "[ERROR_NOTCL] Apenas objetos Gerber, Excellon e Geometria podem ser espelhados."
  7839. #: flatcamTools/ToolDblSided.py:420
  7840. msgid "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
  7841. msgstr "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Usando Origem (0, 0) como referência de espelhamento."
  7842. #: flatcamTools/ToolDblSided.py:430 flatcamTools/ToolDblSided.py:474 flatcamTools/ToolDblSided.py:511
  7843. msgid "[WARNING_NOTCL] There is no Box object loaded ..."
  7844. msgstr "[WARNING_NOTCL] Não há objeto Caixa carregado ..."
  7845. #: flatcamTools/ToolDblSided.py:440
  7846. #, python-format
  7847. msgid "[success] Gerber %s was mirrored..."
  7848. msgstr "[success] Gerber %s foi espelhado ..."
  7849. #: flatcamTools/ToolDblSided.py:449
  7850. msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
  7851. msgstr "[WARNING_NOTCL] Não há objeto Excellon carregado ..."
  7852. #: flatcamTools/ToolDblSided.py:464
  7853. msgid "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add coords and try again ..."
  7854. msgstr "[WARNING_NOTCL] Faltando as Coordenadas do 'Ponto'. Adicione as coordenadas e tente novamente ..."
  7855. #: flatcamTools/ToolDblSided.py:484
  7856. #, python-format
  7857. msgid "[success] Excellon %s was mirrored..."
  7858. msgstr "[success] Excellon %s foi espelhado ..."
  7859. #: flatcamTools/ToolDblSided.py:493
  7860. msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
  7861. msgstr "[WARNING_NOTCL] Não há objeto Geometria carregado ..."
  7862. #: flatcamTools/ToolDblSided.py:521
  7863. #, python-format
  7864. msgid "[success] Geometry %s was mirrored..."
  7865. msgstr "[success] Geometria %s foi espelhada ..."
  7866. #: flatcamTools/ToolFilm.py:25
  7867. msgid "Film PCB"
  7868. msgstr "Filme PCB"
  7869. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53 flatcamTools/ToolPanelize.py:56
  7870. msgid "Object Type:"
  7871. msgstr "Tipo de Objeto:"
  7872. #: flatcamTools/ToolFilm.py:58
  7873. msgid ""
  7874. "Specify the type of object for which to create the film.\n"
  7875. "The object can be of type: Gerber or Geometry.\n"
  7876. "The selection here decide the type of objects that will be\n"
  7877. "in the Film Object combobox."
  7878. msgstr ""
  7879. "Especifique o tipo de objeto para o qual criar o filme.\n"
  7880. "O objeto pode ser do tipo: Gerber ou Geometria.\n"
  7881. "A seleção aqui decide o tipo de objetos que estarão\n"
  7882. "na caixa de combinação Objeto de Filme."
  7883. #: flatcamTools/ToolFilm.py:71
  7884. msgid "Film Object:"
  7885. msgstr "Objeto de Filme:"
  7886. #: flatcamTools/ToolFilm.py:73
  7887. msgid "Object for which to create the film."
  7888. msgstr "Objeto para o qual criar o filme."
  7889. #: flatcamTools/ToolFilm.py:89 flatcamTools/ToolPanelize.py:111
  7890. msgid "Box Type:"
  7891. msgstr "Tipo de Caixa:"
  7892. #: flatcamTools/ToolFilm.py:91
  7893. msgid ""
  7894. "Specify the type of object to be used as an container for\n"
  7895. "film creation. It can be: Gerber or Geometry type.The selection here decide the type of objects that will be\n"
  7896. "in the Box Object combobox."
  7897. msgstr ""
  7898. "Especifique o tipo de objeto a ser usado como um contêiner para a criação de\n"
  7899. "filme. Pode ser: tipo Gerber ou Geometria. A seleção aqui decide o tipo de objetos que estarão\n"
  7900. "na caixa de combinação Objeto Caixa."
  7901. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  7902. msgid "Box Object:"
  7903. msgstr "Objeto Caixa:"
  7904. #: flatcamTools/ToolFilm.py:106
  7905. msgid ""
  7906. "The actual object that is used a container for the\n"
  7907. " selected object for which we create the film.\n"
  7908. "Usually it is the PCB outline but it can be also the\n"
  7909. "same object for which the film is created."
  7910. msgstr ""
  7911. "O objeto que é usado como um container para o objeto\n"
  7912. "selecionado para o qual criamos o filme.\n"
  7913. "Normalmente, é o contorno do PCB, mas também pode ser\n"
  7914. "do mesmo objeto para o qual o filme é criado."
  7915. #: flatcamTools/ToolFilm.py:157
  7916. msgid "Save Film"
  7917. msgstr "Salvar Filme"
  7918. #: flatcamTools/ToolFilm.py:159
  7919. msgid ""
  7920. "Create a Film for the selected object, within\n"
  7921. "the specified box. Does not create a new \n"
  7922. " FlatCAM object, but directly save it in SVG format\n"
  7923. "which can be opened with Inkscape."
  7924. msgstr ""
  7925. "Cria um filme para o objeto selecionado, dentro da caixa especificada. Não cria um novo objeto\n"
  7926. "FlatCAM, mas salva-o diretamente no formato SVG\n"
  7927. "que pode ser aberto com o programa Inkscape."
  7928. #: flatcamTools/ToolFilm.py:225
  7929. msgid "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
  7930. msgstr "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para Filme e tente novamente."
  7931. #: flatcamTools/ToolFilm.py:231
  7932. msgid "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
  7933. msgstr "[ERROR_NOTCL] Nenhum objeto FlatCAM selecionado. Carregue um objeto para Caixa e tente novamente."
  7934. #: flatcamTools/ToolFilm.py:255
  7935. msgid "Generating Film ..."
  7936. msgstr "Gerando Filme ..."
  7937. #: flatcamTools/ToolFilm.py:260 flatcamTools/ToolFilm.py:264
  7938. msgid "Export SVG positive"
  7939. msgstr "Exportar SVG positivo"
  7940. #: flatcamTools/ToolFilm.py:269
  7941. msgid "[WARNING_NOTCL] Export SVG positive cancelled."
  7942. msgstr "[WARNING_NOTCL] Exportar SVG positivo cancelado."
  7943. #: flatcamTools/ToolFilm.py:276 flatcamTools/ToolFilm.py:280
  7944. msgid "Export SVG negative"
  7945. msgstr "Exportar SVG negativo"
  7946. #: flatcamTools/ToolFilm.py:285
  7947. msgid "[WARNING_NOTCL] Export SVG negative cancelled."
  7948. msgstr "[WARNING_NOTCL] Exportar SVG negativo cancelado."
  7949. #: flatcamTools/ToolImage.py:25
  7950. msgid "Image as Object"
  7951. msgstr "Imagem como Objeto"
  7952. #: flatcamTools/ToolImage.py:31
  7953. msgid "Image to PCB"
  7954. msgstr "Imagem para PCB"
  7955. #: flatcamTools/ToolImage.py:55
  7956. msgid ""
  7957. "Specify the type of object to create from the image.\n"
  7958. "It can be of type: Gerber or Geometry."
  7959. msgstr ""
  7960. "Especifique o tipo de objeto a ser criado a partir da imagem.\n"
  7961. "Pode ser do tipo: Gerber ou Geometria."
  7962. #: flatcamTools/ToolImage.py:63
  7963. msgid "DPI value:"
  7964. msgstr "Valor de DPI:"
  7965. #: flatcamTools/ToolImage.py:65
  7966. msgid "Specify a DPI value for the image."
  7967. msgstr "Especifique um valor de DPI (pontos por polegada) para a imagem."
  7968. #: flatcamTools/ToolImage.py:72
  7969. msgid "Level of detail"
  7970. msgstr "Nível de detalhe"
  7971. #: flatcamTools/ToolImage.py:81
  7972. msgid "Image type"
  7973. msgstr "Tipo de imagem"
  7974. #: flatcamTools/ToolImage.py:83
  7975. msgid ""
  7976. "Choose a method for the image interpretation.\n"
  7977. "B/W means a black & white image. Color means a colored image."
  7978. msgstr ""
  7979. "Escolha um método para a interpretação da imagem.\n"
  7980. "P/B significa uma imagem em preto e branco. Cor significa uma imagem colorida."
  7981. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103 flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  7982. msgid "Mask value"
  7983. msgstr "Valor da máscara"
  7984. #: flatcamTools/ToolImage.py:92
  7985. msgid ""
  7986. "Mask for monochrome image.\n"
  7987. "Takes values between [0 ... 255].\n"
  7988. "Decides the level of details to include\n"
  7989. "in the resulting geometry.\n"
  7990. "0 means no detail and 255 means everything \n"
  7991. "(which is totally black)."
  7992. msgstr ""
  7993. "Máscara para imagem monocromática.\n"
  7994. "Valores entre [0 ... 255].\n"
  7995. "Define o nível de detalhes para incluir\n"
  7996. "na geometria resultante.\n"
  7997. "0 significa nenhum detalhe e 255 significa tudo\n"
  7998. "(que é totalmente preto)."
  7999. #: flatcamTools/ToolImage.py:105
  8000. msgid ""
  8001. "Mask for RED color.\n"
  8002. "Takes values between [0 ... 255].\n"
  8003. "Decides the level of details to include\n"
  8004. "in the resulting geometry."
  8005. msgstr ""
  8006. "Máscara para a cor VERMELHA.\n"
  8007. "Valores entre [0 ... 255].\n"
  8008. "Define o nível de detalhes para incluir\n"
  8009. "na geometria resultante."
  8010. #: flatcamTools/ToolImage.py:116
  8011. msgid ""
  8012. "Mask for GREEN color.\n"
  8013. "Takes values between [0 ... 255].\n"
  8014. "Decides the level of details to include\n"
  8015. "in the resulting geometry."
  8016. msgstr ""
  8017. "Máscara para a cor VERDE.\n"
  8018. "Valores entre [0 ... 255].\n"
  8019. "Define o nível de detalhes para incluir\n"
  8020. "na geometria resultante."
  8021. #: flatcamTools/ToolImage.py:127
  8022. msgid ""
  8023. "Mask for BLUE color.\n"
  8024. "Takes values between [0 ... 255].\n"
  8025. "Decides the level of details to include\n"
  8026. "in the resulting geometry."
  8027. msgstr ""
  8028. "Máscara para a cor AZUL.\n"
  8029. "Valores entre [0 ... 255].\n"
  8030. "Define o nível de detalhes para incluir\n"
  8031. "na geometria resultante."
  8032. #: flatcamTools/ToolImage.py:139
  8033. msgid "Import image"
  8034. msgstr "Importar imagem"
  8035. #: flatcamTools/ToolImage.py:141
  8036. msgid "Open a image of raster type and then import it in FlatCAM."
  8037. msgstr "Abre uma imagem do tipo raster e importe-a no FlatCAM."
  8038. #: flatcamTools/ToolImage.py:170
  8039. msgid "Image Tool"
  8040. msgstr "Ferramenta de Imagem"
  8041. #: flatcamTools/ToolImage.py:200 flatcamTools/ToolImage.py:203
  8042. msgid "Import IMAGE"
  8043. msgstr "Importar IMAGEM"
  8044. #: flatcamTools/ToolMeasurement.py:26
  8045. msgid "Measurement"
  8046. msgstr "Medição"
  8047. #: flatcamTools/ToolMeasurement.py:44
  8048. msgid "Units:"
  8049. msgstr "Unidades:"
  8050. #: flatcamTools/ToolMeasurement.py:45
  8051. msgid "Those are the units in which the distance is measured."
  8052. msgstr "Unidade em que a distância é medida."
  8053. #: flatcamTools/ToolMeasurement.py:49
  8054. msgid "Start"
  8055. msgstr "Iniciar"
  8056. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:52
  8057. msgid "Coords"
  8058. msgstr "Coords"
  8059. #: flatcamTools/ToolMeasurement.py:50 flatcamTools/ToolMeasurement.py:66
  8060. msgid "This is measuring Start point coordinates."
  8061. msgstr "Coordenadas do ponto inicial da medição."
  8062. #: flatcamTools/ToolMeasurement.py:52
  8063. msgid "Stop"
  8064. msgstr "Final"
  8065. #: flatcamTools/ToolMeasurement.py:53 flatcamTools/ToolMeasurement.py:70
  8066. msgid "This is the measuring Stop point coordinates."
  8067. msgstr "Coordenadas do ponto final da medição."
  8068. #: flatcamTools/ToolMeasurement.py:55
  8069. msgid "Dx:"
  8070. msgstr "Dx:"
  8071. #: flatcamTools/ToolMeasurement.py:56 flatcamTools/ToolMeasurement.py:74
  8072. msgid "This is the distance measured over the X axis."
  8073. msgstr "Distância medida no eixo X."
  8074. #: flatcamTools/ToolMeasurement.py:58
  8075. msgid "Dy:"
  8076. msgstr "Dy:"
  8077. #: flatcamTools/ToolMeasurement.py:59 flatcamTools/ToolMeasurement.py:79
  8078. msgid "This is the distance measured over the Y axis."
  8079. msgstr "Distância medida no eixo Y."
  8080. #: flatcamTools/ToolMeasurement.py:61
  8081. msgid "DISTANCE"
  8082. msgstr "DISTÂNCIA"
  8083. #: flatcamTools/ToolMeasurement.py:62 flatcamTools/ToolMeasurement.py:84
  8084. msgid "This is the point to point Euclidian distance."
  8085. msgstr "Este é o ponto a apontar a distância euclidiana."
  8086. #: flatcamTools/ToolMeasurement.py:86
  8087. msgid "Measure"
  8088. msgstr "Medida"
  8089. #: flatcamTools/ToolMeasurement.py:132
  8090. msgid "Meas. Tool"
  8091. msgstr "Ferramenta de Medição"
  8092. #: flatcamTools/ToolMeasurement.py:177
  8093. msgid "MEASURING: Click on the Start point ..."
  8094. msgstr "MEDIÇÃO: Clique no ponto inicial ..."
  8095. #: flatcamTools/ToolMeasurement.py:270
  8096. msgid "MEASURING: Click on the Destination point ..."
  8097. msgstr "MEDIÇÃO: Clique no ponto final ..."
  8098. #: flatcamTools/ToolMeasurement.py:278
  8099. #, python-brace-format
  8100. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8101. msgstr "MEDIÇÃO: Resultado D(x) = {d_x} | D(y) = {d_y} | Distância = {d_z}"
  8102. #: flatcamTools/ToolMove.py:81
  8103. msgid "MOVE: Click on the Start point ..."
  8104. msgstr "MOVER: Clique no ponto inicial ..."
  8105. #: flatcamTools/ToolMove.py:88
  8106. msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
  8107. msgstr "[WARNING_NOTCL] Ação MOVER cancelada. Nenhum objeto para mover."
  8108. #: flatcamTools/ToolMove.py:110
  8109. msgid "MOVE: Click on the Destination point ..."
  8110. msgstr "MOVER: Clique no ponto de destino ..."
  8111. #: flatcamTools/ToolMove.py:128
  8112. msgid "Moving ..."
  8113. msgstr "Movendo ..."
  8114. #: flatcamTools/ToolMove.py:135
  8115. msgid "[WARNING_NOTCL] No object(s) selected."
  8116. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado."
  8117. #: flatcamTools/ToolMove.py:158
  8118. #, python-format
  8119. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8120. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
  8121. #: flatcamTools/ToolMove.py:164
  8122. #, python-format
  8123. msgid "[success] %s object was moved ..."
  8124. msgstr "[success] objeto %s foi movido ..."
  8125. #: flatcamTools/ToolMove.py:174
  8126. msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
  8127. msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> Erro ao clicar no botão esquerdo do mouse."
  8128. #: flatcamTools/ToolMove.py:202
  8129. msgid "[WARNING_NOTCL] Move action cancelled."
  8130. msgstr "[WARNING_NOTCL] Ação Mover cancelada."
  8131. #: flatcamTools/ToolMove.py:214
  8132. msgid "[WARNING_NOTCL] Object(s) not selected"
  8133. msgstr "[WARNING_NOTCL] Objeto(s) não selecionado(s)"
  8134. #: flatcamTools/ToolNonCopperClear.py:26
  8135. msgid "Non-Copper Clearing"
  8136. msgstr "Limpeza Sem-Cobre"
  8137. #: flatcamTools/ToolNonCopperClear.py:64
  8138. msgid "Gerber object to be cleared of excess copper. "
  8139. msgstr "Objeto Gerber do qual será retirado o cobre."
  8140. #: flatcamTools/ToolNonCopperClear.py:74
  8141. msgid ""
  8142. "Tools pool from which the algorithm\n"
  8143. "will pick the ones used for copper clearing."
  8144. msgstr ""
  8145. "Conjunto de ferramentas do qual o algoritmo\n"
  8146. "escolherá aquelas usados para limpeza de cobre."
  8147. #: flatcamTools/ToolNonCopperClear.py:89
  8148. msgid ""
  8149. "This is the Tool Number.\n"
  8150. "Non copper clearing will start with the tool with the biggest \n"
  8151. "diameter, continuing until there are no more tools.\n"
  8152. "Only tools that create NCC clearing geometry will still be present\n"
  8153. "in the resulting geometry. This is because with some tools\n"
  8154. "this function will not be able to create painting geometry."
  8155. msgstr ""
  8156. "Este é o Número da Ferramenta.\n"
  8157. "A limpeza de cobre começará com a ferramenta de maior diâmetro, continuando até que não haja mais ferramentas.\n"
  8158. "As únicas ferramentas que criam a geometria de limpeza do NCC ainda estarão presentes na geometria resultante. Isso ocorre porque com algumas ferramentas\n"
  8159. "esta função não será capaz de criar geometria de pintura."
  8160. #: flatcamTools/ToolNonCopperClear.py:101 flatcamTools/ToolPaint.py:98
  8161. msgid "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is informative only. Being circular, <BR>the cut width in material is exactly the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut parameter in the resulting geometry UI form and enable two additional UI form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter such as the cut width into material will be equal with the value in the Tool Diameter column of this table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select the Operation Type in the resulting geometry as Isolation."
  8162. msgstr "O Tipode Ferramenta (TF) pode ser:<BR>- <B>Circular</B> com 1 ... 4 dentes -> é apenas informativo. Como é circular, <BR>a largura do corte é igual ao diâmetro da ferramenta.<BR>- <B>Bola</B> -> apenas informativo e faz referência a uma fresa do tipo bola.<BR>- <B>Forma em V</B> -> o parâmetro corte Z será desativado no formulário e serão habilitados dois campos adicionais: Diâmetro da Ponta-V e Ângulo da Ponta-V. Ajustando esses dois parâmetros irá alterar o parâmetro Corte Z como a largura de corte no material, será igual ao valor na coluna Diâmetro da Ferramenta desta tabela.<BR>Escolhendo o tipo <B>Forma em V</B> automaticamente selecionará o Tipo de Operação Isolação."
  8163. #: flatcamTools/ToolNonCopperClear.py:120 flatcamTools/ToolPaint.py:117
  8164. msgid "Tool Dia"
  8165. msgstr "Diâmetro da Ferramenta"
  8166. #: flatcamTools/ToolNonCopperClear.py:122
  8167. msgid "Diameter for the new tool to add in the Tool Table"
  8168. msgstr "Diâmetro para a nova ferramenta para adicionar na tabela de ferramentas"
  8169. #: flatcamTools/ToolNonCopperClear.py:148 flatcamTools/ToolPaint.py:145 flatcamTools/ToolSolderPaste.py:123
  8170. msgid ""
  8171. "Delete a selection of tools in the Tool Table\n"
  8172. "by first selecting a row(s) in the Tool Table."
  8173. msgstr "Apague uma seleção de ferramentas na Tabela de Ferramentas selecionando primeiro a(s) linha(s) na Tabela de Ferramentas."
  8174. #: flatcamTools/ToolNonCopperClear.py:199
  8175. msgid "Standard"
  8176. msgstr "Padrão"
  8177. #: flatcamTools/ToolNonCopperClear.py:200
  8178. msgid "Seed-based"
  8179. msgstr "Seed-based"
  8180. #: flatcamTools/ToolNonCopperClear.py:201
  8181. msgid "Straight lines"
  8182. msgstr "Linhas retas"
  8183. #: flatcamTools/ToolNonCopperClear.py:226
  8184. msgid ""
  8185. "If checked, use 'rest machining'.\n"
  8186. "Basically it will clear copper outside PCB features,\n"
  8187. "using the biggest tool and continue with the next tools,\n"
  8188. "from bigger to smaller, to clear areas of copper that\n"
  8189. "could not be cleared by previous tool, until there is\n"
  8190. "no more copper to clear or there are no more tools.\n"
  8191. "If not checked, use the standard algorithm."
  8192. msgstr ""
  8193. "Se marcada, usa 'usinagem de descanso'.\n"
  8194. "Basicamente, irá limpar o cobre fora dos recursos do PCB,\n"
  8195. "utilizando a maior ferramenta e continuar com as próximas ferramentas,\n"
  8196. "de maior para menor, para limpar áreas de cobre que\n"
  8197. "não podem ser retiradas pela ferramenta anterior, até que não haja mais cobre para limpar ou não haja mais ferramentas.\n"
  8198. "Se não estiver marcada, usa o algoritmo padrão."
  8199. #: flatcamTools/ToolNonCopperClear.py:238
  8200. msgid "Generate Geometry"
  8201. msgstr "Gera Geometria"
  8202. #: flatcamTools/ToolNonCopperClear.py:485 flatcamTools/ToolPaint.py:544 flatcamTools/ToolSolderPaste.py:761
  8203. msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
  8204. msgstr "[WARNING_NOTCL] Insira um diâmetro de ferramenta para adicionar, no formato Flutuante."
  8205. #: flatcamTools/ToolNonCopperClear.py:513 flatcamTools/ToolPaint.py:568
  8206. msgid "[WARNING_NOTCL] Adding tool cancelled. Tool already in Tool Table."
  8207. msgstr "[WARNING_NOTCL] Adição cancelada. Ferramenta já está na Tabela de Ferramentas."
  8208. #: flatcamTools/ToolNonCopperClear.py:518 flatcamTools/ToolPaint.py:573
  8209. msgid "[success] New tool added to Tool Table."
  8210. msgstr "[success] Nova ferramenta adicionada à Tabela de Ferramentas."
  8211. #: flatcamTools/ToolNonCopperClear.py:560 flatcamTools/ToolPaint.py:616
  8212. msgid "[success] Tool from Tool Table was edited."
  8213. msgstr "[sucss] A ferramenta da Tabela de Ferramentas foi editada."
  8214. #: flatcamTools/ToolNonCopperClear.py:571 flatcamTools/ToolPaint.py:627 flatcamTools/ToolSolderPaste.py:847
  8215. msgid "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool Table."
  8216. msgstr "[WARNING_NOTCL] Editar cancelado. O novo valor de diâmetro já está na tabela de ferramentas."
  8217. #: flatcamTools/ToolNonCopperClear.py:610 flatcamTools/ToolPaint.py:724
  8218. msgid "[WARNING_NOTCL] Delete failed. Select a tool to delete."
  8219. msgstr "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta para excluir."
  8220. #: flatcamTools/ToolNonCopperClear.py:615 flatcamTools/ToolPaint.py:729
  8221. msgid "[success] Tool(s) deleted from Tool Table."
  8222. msgstr "[success] Ferramenta(s) excluída(s) da Tabela de Ferramentas."
  8223. #: flatcamTools/ToolNonCopperClear.py:633 flatcamTools/ToolPaint.py:748
  8224. msgid "[ERROR_NOTCL] Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  8225. msgstr "[ERROR_NOTCL] O valor de sobreposição deve estar entre 0 (inclusive) e 1 (exclusivo),"
  8226. #: flatcamTools/ToolNonCopperClear.py:673
  8227. msgid "[ERROR_NOTCL] No Gerber file available."
  8228. msgstr "[ERROR_NOTCL] Nenhum arquivo Gerber disponível."
  8229. #: flatcamTools/ToolNonCopperClear.py:711 flatcamTools/ToolNonCopperClear.py:833
  8230. msgid "Clearing Non-Copper areas."
  8231. msgstr "Limpando áreas Sem-Cobre."
  8232. #: flatcamTools/ToolNonCopperClear.py:729
  8233. #, python-format
  8234. msgid "[success] Non-Copper Clearing with ToolDia = %s started."
  8235. msgstr "[success] Limpeza Sem-Cobre com Diâmetro = %s iniciada."
  8236. #: flatcamTools/ToolNonCopperClear.py:798
  8237. #, python-format
  8238. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8239. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
  8240. #: flatcamTools/ToolNonCopperClear.py:803
  8241. msgid "[success] NCC Tool finished."
  8242. msgstr "[success] Limpeza concluída."
  8243. #: flatcamTools/ToolNonCopperClear.py:805
  8244. msgid "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be cleared. Check the result."
  8245. msgstr "[WARNING_NOTCL] A limpeza foi concluída, mas alguns recursos do PCB não puderam ser retirados. Verifique o resultado."
  8246. #: flatcamTools/ToolNonCopperClear.py:851
  8247. #, python-format
  8248. msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
  8249. msgstr "[success] Limpeza de cobre com iniciada com diâmetro = %s."
  8250. #: flatcamTools/ToolNonCopperClear.py:949
  8251. #, python-format
  8252. msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8253. msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
  8254. #: flatcamTools/ToolNonCopperClear.py:957
  8255. msgid "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current settings."
  8256. msgstr "[ERROR_NOTCL] A limpeza foi concluída, mas não pôde limpar o objeto com as configurações atuais."
  8257. #: flatcamTools/ToolPDF.py:38
  8258. msgid "PDF Import Tool"
  8259. msgstr "Ferramenta de Importação de PDF"
  8260. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  8261. msgid "Open PDF"
  8262. msgstr "Abrir PDF"
  8263. #: flatcamTools/ToolPDF.py:159
  8264. msgid "[WARNING_NOTCL] Open PDF cancelled."
  8265. msgstr "[WARNING_NOTCL] Abrir PDF cancelado."
  8266. #: flatcamTools/ToolPDF.py:186
  8267. msgid "Parsing PDF file ..."
  8268. msgstr "Analisando arquivo PDF ..."
  8269. #: flatcamTools/ToolPDF.py:265 flatcamTools/ToolPDF.py:338
  8270. #, python-format
  8271. msgid "Rendering PDF layer #%d ..."
  8272. msgstr "Renderizando camada PDF # %d ..."
  8273. #: flatcamTools/ToolPDF.py:269 flatcamTools/ToolPDF.py:342
  8274. msgid "[ERROR_NOTCL] Open PDF file failed."
  8275. msgstr "[ERROR_NOTCL] Falha ao abrir arquivo PDF."
  8276. #: flatcamTools/ToolPDF.py:274 flatcamTools/ToolPDF.py:347
  8277. #, python-format
  8278. msgid "[success] Rendered: %s"
  8279. msgstr "[success] Processado: %s"
  8280. #: flatcamTools/ToolPaint.py:24
  8281. msgid "Paint Area"
  8282. msgstr "Área de Pintura"
  8283. #: flatcamTools/ToolPaint.py:60
  8284. msgid "Geometry:"
  8285. msgstr "Geometria:"
  8286. #: flatcamTools/ToolPaint.py:62
  8287. msgid "Geometry object to be painted. "
  8288. msgstr "Objeto de geometria a ser pintado."
  8289. #: flatcamTools/ToolPaint.py:71
  8290. msgid ""
  8291. "Tools pool from which the algorithm\n"
  8292. "will pick the ones used for painting."
  8293. msgstr ""
  8294. "Conjunto de ferramentas do qual o algoritmo\n"
  8295. "escolherá os usados para a pintura."
  8296. #: flatcamTools/ToolPaint.py:86
  8297. msgid ""
  8298. "This is the Tool Number.\n"
  8299. "Painting will start with the tool with the biggest diameter,\n"
  8300. "continuing until there are no more tools.\n"
  8301. "Only tools that create painting geometry will still be present\n"
  8302. "in the resulting geometry. This is because with some tools\n"
  8303. "this function will not be able to create painting geometry."
  8304. msgstr ""
  8305. "Este é o Número da Ferramenta.\n"
  8306. "A pintura começará com a ferramenta com o maior diâmetro,\n"
  8307. "continuando até que não haja mais ferramentas.\n"
  8308. "As únicas ferramentas que criam a geometria da pintura ainda estarão presentes\n"
  8309. "na geometria resultante. Isso ocorre porque com algumas ferramentas\n"
  8310. "não são capazes de criar geometria de pintura nesta função."
  8311. #: flatcamTools/ToolPaint.py:119
  8312. msgid "Diameter for the new tool."
  8313. msgstr "Diâmetro para a nova ferramenta."
  8314. #: flatcamTools/ToolPaint.py:224
  8315. msgid ""
  8316. "If checked, use 'rest machining'.\n"
  8317. "Basically it will clear copper outside PCB features,\n"
  8318. "using the biggest tool and continue with the next tools,\n"
  8319. "from bigger to smaller, to clear areas of copper that\n"
  8320. "could not be cleared by previous tool, until there is\n"
  8321. "no more copper to clear or there are no more tools.\n"
  8322. "\n"
  8323. "If not checked, use the standard algorithm."
  8324. msgstr ""
  8325. "Se marcada, usa 'usinagem de descanso'.\n"
  8326. "Basicamente, irá limpar o cobre fora dos recursos do PCB,\n"
  8327. "utilizando a maior ferramenta e continuar com as próximas ferramentas,\n"
  8328. "de maior para menor, para limpar áreas de cobre que\n"
  8329. "não podem ser retiradas pela ferramenta anterior, até que não haja mais cobre para limpar ou não haja mais ferramentas.\n"
  8330. "\n"
  8331. "Se não estiver marcada, usa o algoritmo padrão."
  8332. #: flatcamTools/ToolPaint.py:239
  8333. msgid "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all polygons."
  8334. msgstr "Como selecionar os polígonos para pintar.<BR>Opções:<BR> - <B>Único</ B>: clique com o botão esquerdo do mouse no polígono a ser pintado.<BR> - <B>Todos</ B>: pintar todos os polígonos."
  8335. #: flatcamTools/ToolPaint.py:254
  8336. msgid "Create Paint Geometry"
  8337. msgstr "Criar Geometria de Pintura"
  8338. #: flatcamTools/ToolPaint.py:256
  8339. msgid "After clicking here, click inside<BR>the polygon you wish to be painted if <B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will start after click.<BR>A new Geometry object with the tool<BR>paths will be created."
  8340. msgstr "Depois de clicar aqui, clique dentro<BR>do polígono que você deseja pintar se <B>Único</B> estiver selecionado.<BR>Se <B>Todos</B> for selecionado, a Pintura será iniciada após o clique.<BR>Será criado um novo objeto Geometria com os caminhos da ferramenta."
  8341. #: flatcamTools/ToolPaint.py:733
  8342. msgid "geometry_on_paint_button"
  8343. msgstr "geometry_on_paint_button"
  8344. #: flatcamTools/ToolPaint.py:752 flatcamTools/ToolPaint.py:787
  8345. msgid "[WARNING_NOTCL] Click inside the desired polygon."
  8346. msgstr "[WARNING_NOTCL] Clique dentro do polígono desejado."
  8347. #: flatcamTools/ToolPaint.py:774
  8348. msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
  8349. msgstr "[ERROR_NOTCL] Não é possível pintar geometrias MultiGeo ..."
  8350. #: flatcamTools/ToolPaint.py:796 flatcamTools/ToolPaint.py:1003
  8351. msgid "Painting polygon..."
  8352. msgstr "Pintando o polígono..."
  8353. #: flatcamTools/ToolPaint.py:851
  8354. msgid "[WARNING] No polygon found."
  8355. msgstr "[WARNING] Nenhum polígono encontrado."
  8356. #: flatcamTools/ToolPaint.py:854
  8357. msgid "Painting polygon."
  8358. msgstr "Pintando o polígono."
  8359. #: flatcamTools/ToolPaint.py:896
  8360. msgid "[ERROR_NOTCL] Geometry could not be painted completely"
  8361. msgstr "[ERROR_NOTCL] A geometria não pode ser pintada completamente"
  8362. #: flatcamTools/ToolPaint.py:922
  8363. #, python-format
  8364. msgid ""
  8365. "[ERROR] Could not do Paint. Try a different combination of parameters. Or a different strategy of paint\n"
  8366. "%s"
  8367. msgstr ""
  8368. "[ERRO] Não foi possível pintar. Tente uma combinação diferente de parâmetros ou uma estratégia diferente de pintura\n"
  8369. "%s"
  8370. #: flatcamTools/ToolPaint.py:964
  8371. #, python-format
  8372. msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8373. msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
  8374. #: flatcamTools/ToolPaint.py:970 flatcamTools/ToolPaint.py:1267
  8375. msgid "Polygon Paint started ..."
  8376. msgstr "Pintura de polígonos iniciada ..."
  8377. #: flatcamTools/ToolPaint.py:1123 flatcamTools/ToolPaint.py:1212
  8378. #, python-format
  8379. msgid ""
  8380. "[ERROR] Could not do Paint All. Try a different combination of parameters. Or a different Method of paint\n"
  8381. "%s"
  8382. msgstr ""
  8383. "[ERRO] Não foi possível pintar todos. Tente uma combinação diferente de parâmetros, ou um método diferente de pintura\n"
  8384. "%s"
  8385. #: flatcamTools/ToolPaint.py:1147
  8386. msgid ""
  8387. "[ERROR] There is no Painting Geometry in the file.\n"
  8388. "Usually it means that the tool diameter is too big for the painted geometry.\n"
  8389. "Change the painting parameters and try again."
  8390. msgstr ""
  8391. "[ERROR] Não há geometria de pintura no arquivo.\n"
  8392. "Normalmente significa que o diâmetro da ferramenta é muito grande para a geometria pintada.\n"
  8393. "Mude os parâmetros de pintura e tente novamente."
  8394. #: flatcamTools/ToolPaint.py:1156
  8395. msgid "[success] Paint All Done."
  8396. msgstr "[success] Pintura finalizada."
  8397. #: flatcamTools/ToolPaint.py:1242
  8398. msgid ""
  8399. "[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
  8400. "Usually it means that the tool diameter is too big for the painted geometry.\n"
  8401. "Change the painting parameters and try again."
  8402. msgstr ""
  8403. "[ERROR_NOTCL] Não há geometria de pintura no arquivo.\n"
  8404. "Normalmente significa que o diâmetro da ferramenta é muito grande para a geometria pintada.\n"
  8405. "Mude os parâmetros de pintura e tente novamente."
  8406. #: flatcamTools/ToolPaint.py:1251
  8407. msgid "[success] Paint All with Rest-Machining done."
  8408. msgstr "[success] Pintura finalizada."
  8409. #: flatcamTools/ToolPanelize.py:25
  8410. msgid "Panelize PCB"
  8411. msgstr "Criar Painéis no PCB"
  8412. #: flatcamTools/ToolPanelize.py:58
  8413. msgid ""
  8414. "Specify the type of object to be panelized\n"
  8415. "It can be of type: Gerber, Excellon or Geometry.\n"
  8416. "The selection here decide the type of objects that will be\n"
  8417. "in the Object combobox."
  8418. msgstr ""
  8419. "Especifique o tipo de objeto para criar painéis\n"
  8420. "Pode ser do tipo: Gerber, Excellon ou Geometria.\n"
  8421. "A seleção aqui decide o tipo de objetos que estarão\n"
  8422. "na Caixa de Objetos."
  8423. #: flatcamTools/ToolPanelize.py:73
  8424. msgid ""
  8425. "Object to be panelized. This means that it will\n"
  8426. "be duplicated in an array of rows and columns."
  8427. msgstr "Objeto para criar painéis. Isso significa que ele será duplicado em uma matriz de linhas e colunas."
  8428. #: flatcamTools/ToolPanelize.py:86
  8429. msgid "<b>Penelization Reference:</b>"
  8430. msgstr "<b>Referência de Criação de Painéis:</b>"
  8431. #: flatcamTools/ToolPanelize.py:88
  8432. msgid ""
  8433. "Choose the reference for panelization:\n"
  8434. "- Object = the bounding box of a different object\n"
  8435. "- Bounding Box = the bounding box of the object to be panelized\n"
  8436. "\n"
  8437. "The reference is useful when doing panelization for more than one\n"
  8438. "object. The spacings (really offsets) will be applied in reference\n"
  8439. "to this reference object therefore maintaining the panelized\n"
  8440. "objects in sync."
  8441. msgstr ""
  8442. "Escolha a referência para criação de painéis:\n"
  8443. "- Objeto = a caixa delimitadora de um objeto diferente\n"
  8444. "- Caixa Delimitadora = a caixa delimitadora do objeto para criar painéis\n"
  8445. "\n"
  8446. "A referência é útil ao criar painéis para mais de um\n"
  8447. "objeto. Os espaçamentos (realmente deslocamentos) serão aplicados na referência\n"
  8448. "para este objeto de referência, portanto, mantendo os\n"
  8449. "objetos sincronizados nos painéis."
  8450. #: flatcamTools/ToolPanelize.py:113
  8451. msgid ""
  8452. "Specify the type of object to be used as an container for\n"
  8453. "panelization. It can be: Gerber or Geometry type.\n"
  8454. "The selection here decide the type of objects that will be\n"
  8455. "in the Box Object combobox."
  8456. msgstr ""
  8457. "Especifique o tipo de objeto a ser usado como um contêiner para\n"
  8458. "criação de painéis. Pode ser: tipo Gerber ou Geometria.\n"
  8459. "A seleção aqui decide o tipo de objetos que estarão na\n"
  8460. "Caixa de Objetos."
  8461. #: flatcamTools/ToolPanelize.py:128
  8462. msgid ""
  8463. "The actual object that is used a container for the\n"
  8464. " selected object that is to be panelized."
  8465. msgstr ""
  8466. "O objeto usado como contêiner para o objeto\n"
  8467. "selecionado que deve criado painéis."
  8468. #: flatcamTools/ToolPanelize.py:134
  8469. msgid "<b>Panel Data:</b>"
  8470. msgstr "<b>Dados do Painel:</b>"
  8471. #: flatcamTools/ToolPanelize.py:136
  8472. msgid ""
  8473. "This informations will shape the resulting panel.\n"
  8474. "The number of rows and columns will set how many\n"
  8475. "duplicates of the original geometry will be generated.\n"
  8476. "\n"
  8477. "The spacings will set the distance between any two\n"
  8478. "elements of the panel array."
  8479. msgstr ""
  8480. "Essas informações moldarão o painel resultante.\n"
  8481. "O número de linhas e colunas definirá quantas\n"
  8482. "duplicatas da geometria original serão geradas.\n"
  8483. "\n"
  8484. "Os espaçamentos definirão a distância entre os\n"
  8485. "elementos da matriz do painel."
  8486. #: flatcamTools/ToolPanelize.py:183
  8487. msgid "<b>Panel Type:</b>"
  8488. msgstr "<b>Tipo de Painel:</b>"
  8489. #: flatcamTools/ToolPanelize.py:185
  8490. msgid ""
  8491. "Choose the type of object for the panel object:\n"
  8492. "- Geometry\n"
  8493. "- Gerber"
  8494. msgstr ""
  8495. "Escolha o tipo de objeto para o objeto de painel:\n"
  8496. "- Geometria\n"
  8497. "- Gerber"
  8498. #: flatcamTools/ToolPanelize.py:193
  8499. msgid "Constrain panel within:"
  8500. msgstr "Restringir painel dentro de:"
  8501. #: flatcamTools/ToolPanelize.py:227
  8502. msgid "Panelize Object"
  8503. msgstr "Criar Painéis"
  8504. #: flatcamTools/ToolPanelize.py:229
  8505. msgid ""
  8506. "Panelize the specified object around the specified box.\n"
  8507. "In other words it creates multiple copies of the source object,\n"
  8508. "arranged in a 2D array of rows and columns."
  8509. msgstr ""
  8510. "Cria painéis do objeto especificado ao redor da caixa especificada.\n"
  8511. "Em outras palavras, ele cria várias cópias do objeto de origem,\n"
  8512. "arranjado em uma matriz 2D de linhas e colunas."
  8513. #: flatcamTools/ToolPanelize.py:370
  8514. #, python-format
  8515. msgid "[WARNING_NOTCL]No object Box. Using instead %s"
  8516. msgstr "[WARNING_NOTCL] Nenhuma caixa de objeto. Usando em vez de %s"
  8517. #: flatcamTools/ToolPanelize.py:453
  8518. msgid "[ERROR_NOTCL] Columns or Rows are zero value. Change them to a positive integer."
  8519. msgstr "[ERROR_NOTCL] Colunas ou Linhas com valor zero. Altere-os para um inteiro positivo."
  8520. #: flatcamTools/ToolPanelize.py:478 flatcamTools/ToolPanelize.py:635
  8521. msgid "Generating panel ... Please wait."
  8522. msgstr "Gerando painel ... Por favor, aguarde."
  8523. #: flatcamTools/ToolPanelize.py:628
  8524. msgid "[success] Panel done..."
  8525. msgstr "[success] Painel criado..."
  8526. #: flatcamTools/ToolPanelize.py:631
  8527. #, python-brace-format
  8528. msgid "[WARNING] Too big for the constrain area. Final panel has {col} columns and {row} rows"
  8529. msgstr "[WARNING] Grande demais para a área restrita.. O painel final tem {col} colunas e {row} linhas"
  8530. #: flatcamTools/ToolPanelize.py:640
  8531. msgid "[success] Panel created successfully."
  8532. msgstr "[success] Painel criado com sucesso."
  8533. #: flatcamTools/ToolPcbWizard.py:32
  8534. msgid "PcbWizard Import Tool"
  8535. msgstr "Ferramenta de Importação PcbWizard"
  8536. #: flatcamTools/ToolPcbWizard.py:40
  8537. msgid "Import 2-file Excellon"
  8538. msgstr "Importar Excellon 2-arquivos"
  8539. #: flatcamTools/ToolPcbWizard.py:57
  8540. msgid "Excellon file:"
  8541. msgstr "Arquivo Excellon:"
  8542. #: flatcamTools/ToolPcbWizard.py:59
  8543. msgid ""
  8544. "Load the Excellon file.\n"
  8545. "Usually it has a .DRL extension"
  8546. msgstr ""
  8547. "Carrega o arquivo Excellon.\n"
  8548. "Normalmente ele tem uma extensão .DRL"
  8549. #: flatcamTools/ToolPcbWizard.py:66
  8550. msgid "INF file:"
  8551. msgstr "Arquivo INF:"
  8552. #: flatcamTools/ToolPcbWizard.py:68
  8553. msgid "Load the INF file."
  8554. msgstr "Carrega o arquivo INF."
  8555. #: flatcamTools/ToolPcbWizard.py:81
  8556. msgid "Tool Number"
  8557. msgstr "Número da Ferramenta"
  8558. #: flatcamTools/ToolPcbWizard.py:83
  8559. msgid "Tool diameter in file units."
  8560. msgstr "Diâmetro da ferramenta em unidades de arquivo."
  8561. #: flatcamTools/ToolPcbWizard.py:97
  8562. msgid "Int. digits:"
  8563. msgstr "Dígitos Int.:"
  8564. #: flatcamTools/ToolPcbWizard.py:99
  8565. msgid "The number of digits for the integral part of the coordinates."
  8566. msgstr "O número de dígitos da parte integral das coordenadas."
  8567. #: flatcamTools/ToolPcbWizard.py:106
  8568. msgid "Frac. digits:"
  8569. msgstr "Dígitos Frac.:"
  8570. #: flatcamTools/ToolPcbWizard.py:108
  8571. msgid "The number of digits for the fractional part of the coordinates."
  8572. msgstr "O número de dígitos para a parte fracionária das coordenadas."
  8573. #: flatcamTools/ToolPcbWizard.py:116
  8574. msgid "Zeros supp.:"
  8575. msgstr "Sup. Zeros:"
  8576. #: flatcamTools/ToolPcbWizard.py:118
  8577. msgid ""
  8578. "The type of zeros suppression used.\n"
  8579. "Can be of type:\n"
  8580. "- LZ = leading zeros are kept\n"
  8581. "- TZ = trailing zeros are kept\n"
  8582. "- No Suppression = no zero suppression"
  8583. msgstr ""
  8584. "O tipo de supressão de zeros usado.\n"
  8585. "Pode ser do tipo:\n"
  8586. "- LZ = zeros à esquerda são mantidos\n"
  8587. "- TZ = zeros à direita são mantidos\n"
  8588. "- Sem supressão = sem supressão de zeros"
  8589. #: flatcamTools/ToolPcbWizard.py:129
  8590. msgid "Units"
  8591. msgstr "Unidades"
  8592. #: flatcamTools/ToolPcbWizard.py:131
  8593. msgid ""
  8594. "The type of units that the coordinates and tool\n"
  8595. "diameters are using. Can be INCH or MM."
  8596. msgstr ""
  8597. "A unidade para as coordenadas e os diâmetros\n"
  8598. "de ferramentas. Pode ser Polegada ou mm."
  8599. #: flatcamTools/ToolPcbWizard.py:138
  8600. msgid "Import Excellon"
  8601. msgstr "Importar Excellon"
  8602. #: flatcamTools/ToolPcbWizard.py:140
  8603. msgid ""
  8604. "Import in FlatCAM an Excellon file\n"
  8605. "that store it's information's in 2 files.\n"
  8606. "One usually has .DRL extension while\n"
  8607. "the other has .INF extension."
  8608. msgstr ""
  8609. "Importe no FlatCAM um arquivo Excellon\n"
  8610. "que armazena suas informações em 2 arquivos.\n"
  8611. "Um geralmente possui extensão .DRL e o outro tem extensão .INF."
  8612. #: flatcamTools/ToolPcbWizard.py:194
  8613. msgid "PCBWizard Tool"
  8614. msgstr "Ferramenta PCBWizard"
  8615. #: flatcamTools/ToolPcbWizard.py:288 flatcamTools/ToolPcbWizard.py:292
  8616. msgid "Load PcbWizard Excellon file"
  8617. msgstr "Carregar o arquivo PcbWizard Excellon"
  8618. #: flatcamTools/ToolPcbWizard.py:312 flatcamTools/ToolPcbWizard.py:316
  8619. msgid "Load PcbWizard INF file"
  8620. msgstr "Carregar arquivo PcbWizard INF"
  8621. #: flatcamTools/ToolPcbWizard.py:363
  8622. msgid ""
  8623. "[ERROR] The INF file does not contain the tool table.\n"
  8624. "Try to open the Excellon file from File -> Open -> Excellon\n"
  8625. "and edit the drill diameters manually."
  8626. msgstr ""
  8627. "[ERROR] O arquivo INF não contém a tabela de ferramentas.\n"
  8628. "Tente abrir o arquivo Excellon em Arquivo -> Abrir -> Excellon\n"
  8629. "e edite os diâmetros das brocas manualmente."
  8630. #: flatcamTools/ToolPcbWizard.py:383
  8631. msgid "[success] PcbWizard .INF file loaded."
  8632. msgstr "[success] Arquivo PcbWizard .INF carregado."
  8633. #: flatcamTools/ToolPcbWizard.py:387
  8634. msgid "[success] Main PcbWizard Excellon file loaded."
  8635. msgstr "[success] Arquivo PcbWizard Excellon carregado."
  8636. #: flatcamTools/ToolPcbWizard.py:424
  8637. #, python-format
  8638. msgid "[ERROR_NOTCL] Cannot parse file: %s"
  8639. msgstr "[ERROR_NOTCL] Não é possível analisar o arquivo: %s"
  8640. #: flatcamTools/ToolPcbWizard.py:447
  8641. msgid "Importing Excellon."
  8642. msgstr "Importando Excellon."
  8643. #: flatcamTools/ToolPcbWizard.py:454
  8644. msgid "[ERROR_NOTCL] Import Excellon file failed."
  8645. msgstr "[ERROR_NOTCL] Falha na importação do arquivo Excellon."
  8646. #: flatcamTools/ToolPcbWizard.py:461
  8647. #, python-format
  8648. msgid "[success] Imported: %s"
  8649. msgstr "[success] Importado: %s"
  8650. #: flatcamTools/ToolPcbWizard.py:464
  8651. msgid "[WARNING_NOTCL] Excellon merging is in progress. Please wait..."
  8652. msgstr "[WARNING_NOTCL] A fusão do Excellon está em andamento. Por favor, espere..."
  8653. #: flatcamTools/ToolPcbWizard.py:466
  8654. msgid "[ERROR_NOTCL] The imported Excellon file is None."
  8655. msgstr "[ERROR_NOTCL] O arquivo Excellon importado é None."
  8656. #: flatcamTools/ToolProperties.py:103
  8657. msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
  8658. msgstr "[ERROR_NOTCL] A ferramenta de propriedades não foi exibida. Nenhum objeto selecionado."
  8659. #: flatcamTools/ToolProperties.py:110
  8660. msgid "[success] Object Properties are displayed."
  8661. msgstr "[success] Propriedades do Objeto exibidas."
  8662. #: flatcamTools/ToolProperties.py:111
  8663. msgid "Properties Tool"
  8664. msgstr "Propriedades de Ferramenta"
  8665. #: flatcamTools/ToolShell.py:69
  8666. msgid "...proccessing..."
  8667. msgstr "... processando ..."
  8668. #: flatcamTools/ToolShell.py:71
  8669. #, python-format
  8670. msgid "...proccessing... [%s]"
  8671. msgstr "... processando ... [%s]"
  8672. #: flatcamTools/ToolSolderPaste.py:37
  8673. msgid "Solder Paste Tool"
  8674. msgstr "Ferramenta de Pasta de Solda"
  8675. #: flatcamTools/ToolSolderPaste.py:65
  8676. msgid "Gerber Solder paste object. "
  8677. msgstr "Objeto Gerber de Pasta de Solda. "
  8678. #: flatcamTools/ToolSolderPaste.py:72
  8679. msgid ""
  8680. "Tools pool from which the algorithm\n"
  8681. "will pick the ones used for dispensing solder paste."
  8682. msgstr "Conjunto de ferramentas a partir do qual o algoritmo selecionará as usadas para distribuir pasta de solda."
  8683. #: flatcamTools/ToolSolderPaste.py:87
  8684. msgid ""
  8685. "This is the Tool Number.\n"
  8686. "The solder dispensing will start with the tool with the biggest \n"
  8687. "diameter, continuing until there are no more Nozzle tools.\n"
  8688. "If there are no longer tools but there are still pads not covered\n"
  8689. " with solder paste, the app will issue a warning message box."
  8690. msgstr ""
  8691. "Este é o número da ferramenta.\n"
  8692. "A colocação de pasta de solda começa com a ferramenta com o maior diâmetro, continuando até que não haja mais ferramentas do bocal.\n"
  8693. "Se não houver mais ferramentas, mas ainda houver blocos não cobertos\n"
  8694. " com pasta de solda, o aplicativo emitirá uma caixa de mensagem de aviso."
  8695. #: flatcamTools/ToolSolderPaste.py:94
  8696. msgid ""
  8697. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8698. "is the width of the solder paste dispensed."
  8699. msgstr ""
  8700. "Diâmetro da ferramenta do bocal. É o valor (em unidades FlatCAM atuais)\n"
  8701. "da largura da pasta de solda dispensada."
  8702. #: flatcamTools/ToolSolderPaste.py:101
  8703. msgid "New Nozzle Tool"
  8704. msgstr "Nova Ferramenta de Bico"
  8705. #: flatcamTools/ToolSolderPaste.py:117
  8706. msgid ""
  8707. "Add a new nozzle tool to the Tool Table\n"
  8708. "with the diameter specified above."
  8709. msgstr ""
  8710. "Adiciona uma nova ferramenta de bico à tabela de ferramentas\n"
  8711. "com o diâmetro especificado acima."
  8712. #: flatcamTools/ToolSolderPaste.py:129
  8713. msgid "Generate solder paste dispensing geometry."
  8714. msgstr "Gerar geometria de distribuição de pasta de solda."
  8715. #: flatcamTools/ToolSolderPaste.py:142
  8716. msgid "STEP 1:"
  8717. msgstr "PASSO 1:"
  8718. #: flatcamTools/ToolSolderPaste.py:144
  8719. msgid ""
  8720. "First step is to select a number of nozzle tools for usage\n"
  8721. "and then optionally modify the GCode parameters bellow."
  8722. msgstr ""
  8723. "O primeiro passo é selecionar um número de ferramentas de bico para usar,\n"
  8724. "e opcionalmente, modificar os parâmetros do G-Code abaixo."
  8725. #: flatcamTools/ToolSolderPaste.py:147
  8726. msgid ""
  8727. "Select tools.\n"
  8728. "Modify parameters."
  8729. msgstr ""
  8730. "Selecione ferramentas.\n"
  8731. "Modifique os parâmetros."
  8732. #: flatcamTools/ToolSolderPaste.py:236
  8733. msgid ""
  8734. "Feedrate (speed) while moving up vertically\n"
  8735. " to Dispense position (on Z plane)."
  8736. msgstr ""
  8737. "Avanço (velocidade) enquanto sobe verticalmente\n"
  8738. "para a posição Dispensar (no plano Z)."
  8739. #: flatcamTools/ToolSolderPaste.py:290
  8740. msgid "Generate GCode"
  8741. msgstr "Gerar o G-Code"
  8742. #: flatcamTools/ToolSolderPaste.py:292
  8743. msgid ""
  8744. "Generate GCode for Solder Paste dispensing\n"
  8745. "on PCB pads."
  8746. msgstr ""
  8747. "Gera o G-Code para dispensar pasta de solda\n"
  8748. "nos pads de PCB."
  8749. #: flatcamTools/ToolSolderPaste.py:308
  8750. msgid "STEP 2:"
  8751. msgstr "PASSO 2:"
  8752. #: flatcamTools/ToolSolderPaste.py:310
  8753. msgid ""
  8754. "Second step is to create a solder paste dispensing\n"
  8755. "geometry out of an Solder Paste Mask Gerber file."
  8756. msgstr ""
  8757. "O segundo passo é criar uma geometria de distribuição de pasta de solda\n"
  8758. "de um arquivo Gerber Máscara de Pasta de Solda."
  8759. #: flatcamTools/ToolSolderPaste.py:326
  8760. msgid "Geo Result:"
  8761. msgstr "Geo Result:"
  8762. #: flatcamTools/ToolSolderPaste.py:328
  8763. msgid ""
  8764. "Geometry Solder Paste object.\n"
  8765. "The name of the object has to end in:\n"
  8766. "'_solderpaste' as a protection."
  8767. msgstr ""
  8768. "Objeto de Geometria Pasta de Solda.\n"
  8769. "Como proteção, o nome do objeto deve terminar com: \n"
  8770. "'_solderpaste'."
  8771. #: flatcamTools/ToolSolderPaste.py:337
  8772. msgid "STEP 3:"
  8773. msgstr "PASSO 3:"
  8774. #: flatcamTools/ToolSolderPaste.py:339
  8775. msgid ""
  8776. "Third step is to select a solder paste dispensing geometry,\n"
  8777. "and then generate a CNCJob object.\n"
  8778. "\n"
  8779. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  8780. "first you need to generate a geometry with those new params,\n"
  8781. "and only after that you can generate an updated CNCJob."
  8782. msgstr ""
  8783. "O terceiro passo é selecionar uma geometria dispensadora de pasta de solda,\n"
  8784. "e então gerar um objeto de Trabalho CNC.\n"
  8785. "\n"
  8786. "LEMBRE: se você quiser criar um Trabalho CNC com novos parâmetros,\n"
  8787. " primeiro você precisa gerar uma geometria com esses novos parâmetros,\n"
  8788. "e só depois disso você pode gerar um Trabalho CNC atualizado."
  8789. #: flatcamTools/ToolSolderPaste.py:359
  8790. msgid "CNC Result:"
  8791. msgstr "CNC Result:"
  8792. #: flatcamTools/ToolSolderPaste.py:361
  8793. msgid ""
  8794. "CNCJob Solder paste object.\n"
  8795. "In order to enable the GCode save section,\n"
  8796. "the name of the object has to end in:\n"
  8797. "'_solderpaste' as a protection."
  8798. msgstr ""
  8799. "Objeto Trabalho CNC Pasta de Solda.\n"
  8800. "Como proteção, para habilitar a seção de salvar o G-Code,\n"
  8801. "o nome do objeto tem que terminar com:\n"
  8802. "'_solderpaste'."
  8803. #: flatcamTools/ToolSolderPaste.py:371
  8804. msgid "View GCode"
  8805. msgstr "Ver G-Code"
  8806. #: flatcamTools/ToolSolderPaste.py:373
  8807. msgid ""
  8808. "View the generated GCode for Solder Paste dispensing\n"
  8809. "on PCB pads."
  8810. msgstr ""
  8811. "Ver o G-Code gerado para dispensação de pasta de solda\n"
  8812. "nos pads de PCB."
  8813. #: flatcamTools/ToolSolderPaste.py:377
  8814. msgid "Save GCode"
  8815. msgstr "Salvar o G-Code"
  8816. #: flatcamTools/ToolSolderPaste.py:379
  8817. msgid ""
  8818. "Save the generated GCode for Solder Paste dispensing\n"
  8819. "on PCB pads, to a file."
  8820. msgstr ""
  8821. "Salva o G-Code gerado para distribuição de pasta de solda\n"
  8822. "nos pads de PCB, em um arquivo."
  8823. #: flatcamTools/ToolSolderPaste.py:383
  8824. msgid "STEP 4:"
  8825. msgstr "PASSO 4:"
  8826. #: flatcamTools/ToolSolderPaste.py:385
  8827. msgid ""
  8828. "Fourth step (and last) is to select a CNCJob made from \n"
  8829. "a solder paste dispensing geometry, and then view/save it's GCode."
  8830. msgstr ""
  8831. "O quarto (e último) passo é selecionar um Trabalho CNC feito de\n"
  8832. "uma geometria de distribuição de pasta de solda e, em seguida, visualizar/salvar o G-Code."
  8833. #: flatcamTools/ToolSolderPaste.py:413
  8834. msgid "Delete Object"
  8835. msgstr "Excluir Objeto"
  8836. #: flatcamTools/ToolSolderPaste.py:789
  8837. msgid "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
  8838. msgstr "[WARNING_NOTCL] Adição de ferramenta Bocal cancelada. Ferramenta já está na Tabela de Ferramentas."
  8839. #: flatcamTools/ToolSolderPaste.py:794
  8840. msgid "[success] New Nozzle tool added to Tool Table."
  8841. msgstr "[success] Nova Ferramenta Bocal adicionada à tabela de ferramentas."
  8842. #: flatcamTools/ToolSolderPaste.py:836
  8843. msgid "[success] Nozzle tool from Tool Table was edited."
  8844. msgstr "[success] A ferramenta do bocal da tabela de ferramentas foi editada."
  8845. #: flatcamTools/ToolSolderPaste.py:892
  8846. msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
  8847. msgstr "[WARNING_NOTCL] Exclusão falhou. Selecione uma ferramenta bico para excluir."
  8848. #: flatcamTools/ToolSolderPaste.py:897
  8849. msgid "[success] Nozzle tool(s) deleted from Tool Table."
  8850. msgstr "[success] Ferramenta(s) de bico excluída(s) da tabela de ferramentas."
  8851. #: flatcamTools/ToolSolderPaste.py:952
  8852. msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
  8853. msgstr "[WARNING_NOTCL] Nenhum objeto Gerber de máscara de Pasta de Solda carregado."
  8854. #: flatcamTools/ToolSolderPaste.py:969
  8855. msgid "Creating Solder Paste dispensing geometry."
  8856. msgstr "Criação da geometria de distribuição da pasta de solda."
  8857. #: flatcamTools/ToolSolderPaste.py:981
  8858. msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
  8859. msgstr "[WARNING_NOTCL] Nenhuma ferramenta de Bico na tabela de ferramentas."
  8860. #: flatcamTools/ToolSolderPaste.py:1110
  8861. msgid "[success] Solder Paste geometry generated successfully..."
  8862. msgstr "[success] Geometria da pasta de solda gerada com sucesso ..."
  8863. #: flatcamTools/ToolSolderPaste.py:1116
  8864. msgid "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle diameters..."
  8865. msgstr "[WARNING_NOTCL] Alguns ou todos os pads não possuem pasta de solda devido a diâmetros inadequados dos bicos..."
  8866. #: flatcamTools/ToolSolderPaste.py:1130
  8867. msgid "Generating Solder Paste dispensing geometry..."
  8868. msgstr "Gerando geometria dispensadora de Pasta de Solda ..."
  8869. #: flatcamTools/ToolSolderPaste.py:1150
  8870. msgid "[WARNING_NOTCL] There is no Geometry object available."
  8871. msgstr "[WARNING_NOTCL] Não há objeto de Geometria disponível."
  8872. #: flatcamTools/ToolSolderPaste.py:1154
  8873. msgid "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool geometry."
  8874. msgstr "[WARNING_NOTCL] Esta geometria não pode ser processada. NÃO é uma geometria solder_paste_tool."
  8875. #: flatcamTools/ToolSolderPaste.py:1259
  8876. #, python-format
  8877. msgid "[success] ToolSolderPaste CNCjob created: %s"
  8878. msgstr "[success] ToolSolderPaste CNCjob criado: %s"
  8879. #: flatcamTools/ToolSolderPaste.py:1291 flatcamTools/ToolSolderPaste.py:1295 flatcamTools/ToolSolderPaste.py:1346
  8880. msgid "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
  8881. msgstr "[WARNING_NOTCL] Este objeto CNCJob não pode ser processado. NÃO é um objeto CNCJob solder_paste_tool."
  8882. #: flatcamTools/ToolSolderPaste.py:1318
  8883. msgid "[ERROR_NOTCL] No Gcode in the object..."
  8884. msgstr "[ERROR_NOTCL] Nenhum G-Code no objeto ..."
  8885. #: flatcamTools/ToolSolderPaste.py:1327
  8886. #, python-format
  8887. msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8888. msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
  8889. #: flatcamTools/ToolSolderPaste.py:1356
  8890. msgid "Export GCode ..."
  8891. msgstr "Exportar G-Code ..."
  8892. #: flatcamTools/ToolSolderPaste.py:1396
  8893. #, python-format
  8894. msgid "[success] Solder paste dispenser GCode file saved to: %s"
  8895. msgstr "[success] Arquivo G-Code com dispensador de pasta de solda salvo em: %s"
  8896. #: flatcamTools/ToolSub.py:55
  8897. msgid "<b>Gerber Objects</b>"
  8898. msgstr "<b>Objetos Gerber</b>"
  8899. #: flatcamTools/ToolSub.py:64 flatcamTools/ToolSub.py:110
  8900. msgid "Target:"
  8901. msgstr "Alvo:"
  8902. #: flatcamTools/ToolSub.py:66
  8903. msgid ""
  8904. "Gerber object from which to substract\n"
  8905. "the substractor Gerber object."
  8906. msgstr ""
  8907. "Objeto Gerber do qual subtrair\n"
  8908. "o objeto Gerber substrator."
  8909. #: flatcamTools/ToolSub.py:78 flatcamTools/ToolSub.py:124
  8910. msgid "Substractor:"
  8911. msgstr "Substrator:"
  8912. #: flatcamTools/ToolSub.py:80
  8913. msgid ""
  8914. "Gerber object that will be substracted\n"
  8915. "from the target Gerber object."
  8916. msgstr ""
  8917. "Objeto Gerber que será subtraído\n"
  8918. "do objeto Gerber de destino."
  8919. #: flatcamTools/ToolSub.py:87
  8920. msgid "Substract Gerber"
  8921. msgstr "Substrator Gerber"
  8922. #: flatcamTools/ToolSub.py:89
  8923. msgid ""
  8924. "Will remove the area occupied by the substractor\n"
  8925. "Gerber from the Target Gerber.\n"
  8926. "Can be used to remove the overlapping silkscreen\n"
  8927. "over the soldermask."
  8928. msgstr ""
  8929. "Removerá a área ocupada pelo Gerber substrator\n"
  8930. "do Gerber de destino.\n"
  8931. "Pode ser usado para remover a serigrafia sobreposta\n"
  8932. "sobre a máscara de solda."
  8933. #: flatcamTools/ToolSub.py:101
  8934. msgid "<b>Geometry Objects</b>"
  8935. msgstr "<b>Objetos de Geometria</b>"
  8936. #: flatcamTools/ToolSub.py:112
  8937. msgid ""
  8938. "Geometry object from which to substract\n"
  8939. "the substractor Geometry object."
  8940. msgstr ""
  8941. "Objeto de geometria a partir do qual subtrair\n"
  8942. "o objeto de geometria do substrator."
  8943. #: flatcamTools/ToolSub.py:126
  8944. msgid ""
  8945. "Geometry object that will be substracted\n"
  8946. "from the target Geometry object."
  8947. msgstr ""
  8948. "Objeto de geometria que será subtraído\n"
  8949. "do objeto de geometria de destino."
  8950. #: flatcamTools/ToolSub.py:133
  8951. msgid "Substract Geometry"
  8952. msgstr "Geometria Substrator"
  8953. #: flatcamTools/ToolSub.py:135
  8954. msgid ""
  8955. "Will remove the area occupied by the substractor\n"
  8956. "Geometry from the Target Geometry."
  8957. msgstr ""
  8958. "Removerá a área ocupada pela geometria substrator\n"
  8959. "da Geometria de destino."
  8960. #: flatcamTools/ToolSub.py:215
  8961. msgid "Sub Tool"
  8962. msgstr "Ferramenta Sub"
  8963. #: flatcamTools/ToolSub.py:230 flatcamTools/ToolSub.py:421
  8964. msgid "[ERROR_NOTCL] No Target object loaded."
  8965. msgstr "[ERROR_NOTCL] Nenhum objeto de destino foi carregado."
  8966. #: flatcamTools/ToolSub.py:242 flatcamTools/ToolSub.py:433
  8967. msgid "[ERROR_NOTCL] No Substractor object loaded."
  8968. msgstr "[ERROR_NOTCL] Nenhum objeto Substrator carregado."
  8969. #: flatcamTools/ToolSub.py:294
  8970. #, python-format
  8971. msgid "Parsing aperture %s geometry ..."
  8972. msgstr "Analisando a geometria de abertura %s ..."
  8973. #: flatcamTools/ToolSub.py:396 flatcamTools/ToolSub.py:539
  8974. msgid "Generating new object ..."
  8975. msgstr "Gerando novo objeto ..."
  8976. #: flatcamTools/ToolSub.py:399 flatcamTools/ToolSub.py:542
  8977. msgid "[ERROR_NOTCL] Generating new object failed."
  8978. msgstr "[ERROR_NOTCL] A geração de novo objeto falhou."
  8979. #: flatcamTools/ToolSub.py:403 flatcamTools/ToolSub.py:547
  8980. #, python-format
  8981. msgid "[success] Created: %s"
  8982. msgstr "[success] Criado: %s"
  8983. #: flatcamTools/ToolSub.py:444
  8984. msgid "[ERROR_NOTCL] Currently, the Substractor geometry cannot be of type Multigeo."
  8985. msgstr "[ERROR_NOTCL] Atualmente, a geometria do Substrator não pode ser do tipo MultiGeo."
  8986. #: flatcamTools/ToolSub.py:489
  8987. msgid "Parsing solid_geometry ..."
  8988. msgstr "Analisando solid_geometry ..."
  8989. #: flatcamTools/ToolSub.py:491
  8990. #, python-format
  8991. msgid "Parsing tool %s geometry ..."
  8992. msgstr "Analisando a geometria da ferramenta %s ..."
  8993. #: flatcamTools/ToolTransform.py:23
  8994. msgid "Object Transform"
  8995. msgstr "Transformação de Objeto"
  8996. #: flatcamTools/ToolTransform.py:84
  8997. msgid ""
  8998. "Rotate the selected object(s).\n"
  8999. "The point of reference is the middle of\n"
  9000. "the bounding box for all selected objects."
  9001. msgstr ""
  9002. "Rotaciona o(s) objeto(s) selecionado(s).\n"
  9003. "O ponto de referência é o meio da\n"
  9004. "caixa delimitadora para todos os objetos selecionados."
  9005. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  9006. msgid ""
  9007. "Skew/shear the selected object(s).\n"
  9008. "The point of reference is the middle of\n"
  9009. "the bounding box for all selected objects."
  9010. msgstr ""
  9011. "Inclinar/distorcer o(s) objeto(s) selecionado(s).\n"
  9012. "O ponto de referência é o meio da\n"
  9013. "caixa delimitadora para todos os objetos selecionados."
  9014. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  9015. msgid ""
  9016. "Scale the selected object(s).\n"
  9017. "The point of reference depends on \n"
  9018. "the Scale reference checkbox state."
  9019. msgstr ""
  9020. "Redimensiona o(s) objeto(s) selecionado(s).\n"
  9021. "O ponto de referência depende\n"
  9022. "do estado da caixa de seleção Escala de referência."
  9023. #: flatcamTools/ToolTransform.py:202
  9024. msgid ""
  9025. "Scale the selected object(s)\n"
  9026. "using the Scale Factor X for both axis."
  9027. msgstr "Redimensiona o(s) objeto(s) selecionado(s) usando o Fator de Escala X para ambos os eixos."
  9028. #: flatcamTools/ToolTransform.py:250 flatcamTools/ToolTransform.py:267
  9029. msgid ""
  9030. "Offset the selected object(s).\n"
  9031. "The point of reference is the middle of\n"
  9032. "the bounding box for all selected objects.\n"
  9033. msgstr ""
  9034. "Desloca o(s) objeto(s) selecionado(s).\n"
  9035. "O ponto de referência é o meio da\n"
  9036. "caixa delimitadora para todos os objetos selecionados.\n"
  9037. #: flatcamTools/ToolTransform.py:297 flatcamTools/ToolTransform.py:305
  9038. msgid ""
  9039. "Flip the selected object(s) over the X axis.\n"
  9040. "Does not create a new object.\n"
  9041. " "
  9042. msgstr ""
  9043. "Inverte o(s) objeto(s) selecionado(s) no eixo X.\n"
  9044. "Não cria um novo objeto.\n"
  9045. " "
  9046. #: flatcamTools/ToolTransform.py:637
  9047. msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
  9048. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto para girar!"
  9049. #: flatcamTools/ToolTransform.py:665
  9050. msgid "CNCJob objects can't be rotated."
  9051. msgstr "Objetos CNCJob não podem ser girados."
  9052. #: flatcamTools/ToolTransform.py:673
  9053. msgid "[success] Rotate done ..."
  9054. msgstr "[success] Rotacionado ..."
  9055. #: flatcamTools/ToolTransform.py:688
  9056. msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
  9057. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto para espelhar!"
  9058. #: flatcamTools/ToolTransform.py:723
  9059. msgid "CNCJob objects can't be mirrored/flipped."
  9060. msgstr "Objetos CNCJob não podem ser espelhados/invertidos."
  9061. #: flatcamTools/ToolTransform.py:757
  9062. msgid "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
  9063. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto para distorcer/inclinar!"
  9064. #: flatcamTools/ToolTransform.py:779
  9065. msgid "CNCJob objects can't be skewed."
  9066. msgstr "Objetos CNCJob não podem ser distorcidos."
  9067. #: flatcamTools/ToolTransform.py:806
  9068. msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
  9069. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto para redimensionar!"
  9070. #: flatcamTools/ToolTransform.py:839
  9071. msgid "CNCJob objects can't be scaled."
  9072. msgstr "Objetos CNCJob não podem ser redimensionados."
  9073. #: flatcamTools/ToolTransform.py:858
  9074. msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
  9075. msgstr "[WARNING_NOTCL] Nenhum objeto selecionado. Por favor, selecione um objeto para deslocar!"
  9076. #: flatcamTools/ToolTransform.py:867
  9077. msgid "CNCJob objects can't be offseted."
  9078. msgstr "Objetos CNCJob não podem ser deslocados."
  9079. #~ msgid "Tool dia: "
  9080. #~ msgstr "Tool dia: "
  9081. #~ msgid ""
  9082. #~ "The diameter of the cutting\n"
  9083. #~ "tool.."
  9084. #~ msgstr ""
  9085. #~ "The diameter of the cutting\n"
  9086. #~ "tool.."
  9087. #~ msgid "Disable"
  9088. #~ msgstr "Disable"
  9089. #~ msgid "[WARNING_NOTCL] Move cancelled. No shape selected."
  9090. #~ msgstr "[WARNING_NOTCL] Move cancelled. No shape selected."
  9091. #~ msgid "Click on the Destination point..."
  9092. #~ msgstr "Click on the Destination point..."
  9093. #~ msgid "Copy as &Geom"
  9094. #~ msgstr "Copy as &Geom"
  9095. #~ msgid "Ap. Scale Factor:"
  9096. #~ msgstr "Ap. Scale Factor:"
  9097. #~ msgid ""
  9098. #~ "Change the size of the selected apertures.\n"
  9099. #~ "Factor by which to multiply\n"
  9100. #~ "geometric features of this object."
  9101. #~ msgstr ""
  9102. #~ "Change the size of the selected apertures.\n"
  9103. #~ "Factor by which to multiply\n"
  9104. #~ "geometric features of this object."
  9105. #~ msgid "Ap. Buffer Factor:"
  9106. #~ msgstr "Ap. Buffer Factor:"
  9107. #~ msgid ""
  9108. #~ "Change the size of the selected apertures.\n"
  9109. #~ "Factor by which to expand/shrink\n"
  9110. #~ "geometric features of this object."
  9111. #~ msgstr ""
  9112. #~ "Change the size of the selected apertures.\n"
  9113. #~ "Factor by which to expand/shrink\n"
  9114. #~ "geometric features of this object."
  9115. #~ msgid "[WARNING]No object Box. Using instead %s"
  9116. #~ msgstr "[WARNING]No object Box. Using instead %s"
  9117. #~ msgid "Path"
  9118. #~ msgstr "Path"
  9119. #~ msgid "In"
  9120. #~ msgstr "In"
  9121. #~ msgid "Out"
  9122. #~ msgstr "Out"
  9123. #~ msgid "Custom"
  9124. #~ msgstr "Custom"
  9125. #~ msgid "Angle"
  9126. #~ msgstr "Angle"
  9127. #~ msgid "Copy Drill(s)"
  9128. #~ msgstr "Copy Drill(s)"
  9129. #~ msgid "MMB"
  9130. #~ msgstr "MMB"
  9131. #~ msgid "RMB"
  9132. #~ msgstr "RMB"
  9133. #~ msgid "CTRL"
  9134. #~ msgstr "CTRL"
  9135. #~ msgid "SHIFT"
  9136. #~ msgstr "SHIFT"
  9137. #~ msgid "Climb"
  9138. #~ msgstr "Climb"
  9139. #~ msgid "Conv."
  9140. #~ msgstr "Conv."
  9141. #~ msgid "LZ"
  9142. #~ msgstr "LZ"
  9143. #~ msgid "TZ"
  9144. #~ msgstr "TZ"
  9145. #~ msgid "INCH"
  9146. #~ msgstr "INCH"
  9147. #~ msgid "MM"
  9148. #~ msgstr "MM"
  9149. #~ msgid "MH"
  9150. #~ msgstr "MH"
  9151. #~ msgid "Both"
  9152. #~ msgstr "Both"
  9153. #~ msgid "Decimal"
  9154. #~ msgstr "Decimal"
  9155. #~ msgid "No-Decimal"
  9156. #~ msgstr "No-Decimal"
  9157. #~ msgid "Travel"
  9158. #~ msgstr "Travel"
  9159. #~ msgid "X"
  9160. #~ msgstr "X"
  9161. #~ msgid "Y"
  9162. #~ msgstr "Y"
  9163. #~ msgid "Point"
  9164. #~ msgstr "Point"
  9165. #~ msgid "Box"
  9166. #~ msgstr "Box"
  9167. #~ msgid "Single"
  9168. #~ msgstr "Single"
  9169. #~ msgid "Pos"
  9170. #~ msgstr "Pos"
  9171. #~ msgid "Neg"
  9172. #~ msgstr "Neg"
  9173. #~ msgid "Gerber"
  9174. #~ msgstr "Gerber"
  9175. #~ msgid "Geo"
  9176. #~ msgstr "Geo"
  9177. #~ msgid "Solid "
  9178. #~ msgstr "Solid "
  9179. #~ msgid "M-Color "
  9180. #~ msgstr "M-Color "
  9181. #~ msgid "Done."
  9182. #~ msgstr "Done."
  9183. #~ msgid "Click on CENTER ..."
  9184. #~ msgstr "Click on CENTER ..."
  9185. #~ msgid "[success] Done. Region completed."
  9186. #~ msgstr "[success] Done. Region completed."
  9187. #~ msgid "Add an aperture to the aperture list"
  9188. #~ msgstr "Add an aperture to the aperture list"
  9189. #~ msgid "Go"
  9190. #~ msgstr "Go"
  9191. #~ msgid "Del Aperture:"
  9192. #~ msgstr "Del Aperture:"
  9193. #~ msgid ""
  9194. #~ "Delete a aperture in the aperture list.\n"
  9195. #~ "It will delete also the associated geometry."
  9196. #~ msgstr ""
  9197. #~ "Delete a aperture in the aperture list.\n"
  9198. #~ "It will delete also the associated geometry."
  9199. #~ msgid "Save && Close Edit"
  9200. #~ msgstr "Save && Close Edit"
  9201. #~ msgid ""
  9202. #~ "<b>Editor Shortcut list</b><br>\n"
  9203. #~ " <br>\n"
  9204. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></strong><br>\n"
  9205. #~ " \n"
  9206. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  9207. #~ " <tbody>\n"
  9208. #~ " <tr height=\"20\">\n"
  9209. #~ " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  9210. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  9211. #~ " </tr>\n"
  9212. #~ " <tr height=\"20\">\n"
  9213. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  9214. #~ " <td>&nbsp;Buffer Tool</td>\n"
  9215. #~ " </tr>\n"
  9216. #~ " <tr height=\"20\">\n"
  9217. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  9218. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  9219. #~ " </tr>\n"
  9220. #~ " <tr height=\"20\">\n"
  9221. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  9222. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  9223. #~ " </tr>\n"
  9224. #~ " <tr height=\"20\">\n"
  9225. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  9226. #~ " <td>&nbsp;Paint Tool</td>\n"
  9227. #~ " </tr>\n"
  9228. #~ " <tr height=\"20\">\n"
  9229. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  9230. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  9231. #~ " </tr>\n"
  9232. #~ " <tr height=\"20\">\n"
  9233. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  9234. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  9235. #~ " </tr>\n"
  9236. #~ " <tr height=\"20\">\n"
  9237. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  9238. #~ " <td>&nbsp;Move Geo Item</td>\n"
  9239. #~ " </tr>\n"
  9240. #~ " <tr height=\"20\">\n"
  9241. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  9242. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  9243. #~ " </tr>\n"
  9244. #~ " <tr height=\"20\">\n"
  9245. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  9246. #~ " <td>&nbsp;Draw a Circle</td>\n"
  9247. #~ " </tr>\n"
  9248. #~ " <tr height=\"20\">\n"
  9249. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  9250. #~ " <td>&nbsp;Draw a Path</td>\n"
  9251. #~ " </tr>\n"
  9252. #~ " <tr height=\"20\">\n"
  9253. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  9254. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  9255. #~ " </tr>\n"
  9256. #~ " <tr height=\"20\">\n"
  9257. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  9258. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  9259. #~ " </tr>\n"
  9260. #~ " <tr height=\"20\">\n"
  9261. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  9262. #~ " <td>&nbsp;Add Text Tool</td>\n"
  9263. #~ " </tr>\n"
  9264. #~ " <tr height=\"20\">\n"
  9265. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  9266. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  9267. #~ " </tr>\n"
  9268. #~ " <tr height=\"20\">\n"
  9269. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  9270. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  9271. #~ " </tr>\n"
  9272. #~ " <tr height=\"20\">\n"
  9273. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  9274. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  9275. #~ " </tr>\n"
  9276. #~ " <tr height=\"20\">\n"
  9277. #~ " <td height=\"20\">&nbsp;</td>\n"
  9278. #~ " <td>&nbsp;</td>\n"
  9279. #~ " </tr>\n"
  9280. #~ " <tr height=\"20\">\n"
  9281. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  9282. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  9283. #~ " </tr>\n"
  9284. #~ " <tr height=\"20\">\n"
  9285. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  9286. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  9287. #~ " </tr>\n"
  9288. #~ " <tr height=\"20\">\n"
  9289. #~ " <td height=\"20\">&nbsp;</td>\n"
  9290. #~ " <td>&nbsp;</td>\n"
  9291. #~ " </tr>\n"
  9292. #~ " <tr height=\"20\">\n"
  9293. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  9294. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  9295. #~ " </tr>\n"
  9296. #~ " <tr height=\"20\">\n"
  9297. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  9298. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  9299. #~ " </tr>\n"
  9300. #~ " <tr height=\"20\">\n"
  9301. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  9302. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  9303. #~ " </tr>\n"
  9304. #~ " <tr height=\"20\">\n"
  9305. #~ " <td height=\"20\">&nbsp;</td>\n"
  9306. #~ " <td>&nbsp;</td>\n"
  9307. #~ " </tr>\n"
  9308. #~ " <tr height=\"20\">\n"
  9309. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  9310. #~ " <td>&nbsp;Measurement Tool</td>\n"
  9311. #~ " </tr>\n"
  9312. #~ " <tr height=\"20\">\n"
  9313. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  9314. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  9315. #~ " </tr>\n"
  9316. #~ " <tr height=\"20\">\n"
  9317. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  9318. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  9319. #~ " </tr>\n"
  9320. #~ " <tr height=\"20\">\n"
  9321. #~ " <td height=\"20\">&nbsp;</td>\n"
  9322. #~ " <td>&nbsp;</td>\n"
  9323. #~ " </tr>\n"
  9324. #~ " <tr height=\"20\">\n"
  9325. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  9326. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  9327. #~ " </tr>\n"
  9328. #~ " <tr height=\"20\">\n"
  9329. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  9330. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  9331. #~ " </tr>\n"
  9332. #~ " <tr height=\"20\">\n"
  9333. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  9334. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  9335. #~ " </tr>\n"
  9336. #~ " <tr height=\"20\">\n"
  9337. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  9338. #~ " <td>&nbsp;Delete Shape</td>\n"
  9339. #~ " </tr>\n"
  9340. #~ " </tbody>\n"
  9341. #~ " </table>\n"
  9342. #~ " <br>\n"
  9343. #~ " <br>\n"
  9344. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></strong><br>\n"
  9345. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  9346. #~ " <tbody>\n"
  9347. #~ " <tr height=\"20\">\n"
  9348. #~ " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  9349. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  9350. #~ " </tr>\n"
  9351. #~ " <tr height=\"20\">\n"
  9352. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  9353. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  9354. #~ " </tr>\n"
  9355. #~ " <tr height=\"20\">\n"
  9356. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  9357. #~ " <td>&nbsp;Add Drill</td>\n"
  9358. #~ " </tr>\n"
  9359. #~ " <tr height=\"20\">\n"
  9360. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  9361. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  9362. #~ " </tr>\n"
  9363. #~ " <tr height=\"20\">\n"
  9364. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  9365. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  9366. #~ " </tr>\n"
  9367. #~ " <tr height=\"20\">\n"
  9368. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  9369. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  9370. #~ " </tr>\n"
  9371. #~ " <tr height=\"20\">\n"
  9372. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  9373. #~ " <td>&nbsp;Add a new Tool</td>\n"
  9374. #~ " </tr>\n"
  9375. #~ " <tr height=\"20\">\n"
  9376. #~ " <td height=\"20\">&nbsp;</td>\n"
  9377. #~ " <td>&nbsp;</td>\n"
  9378. #~ " </tr>\n"
  9379. #~ " <tr height=\"20\">\n"
  9380. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  9381. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  9382. #~ " </tr>\n"
  9383. #~ " <tr height=\"20\">\n"
  9384. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  9385. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  9386. #~ " </tr>\n"
  9387. #~ " <tr height=\"20\">\n"
  9388. #~ " <td height=\"20\">&nbsp;</td>\n"
  9389. #~ " <td>&nbsp;</td>\n"
  9390. #~ " </tr>\n"
  9391. #~ " <tr height=\"20\">\n"
  9392. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  9393. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  9394. #~ " </tr>\n"
  9395. #~ " <tr height=\"20\">\n"
  9396. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  9397. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  9398. #~ " </tr>\n"
  9399. #~ " </tbody>\n"
  9400. #~ " </table>\n"
  9401. #~ " "
  9402. #~ msgstr ""
  9403. #~ "<b>Editor Shortcut list</b><br>\n"
  9404. #~ " <br>\n"
  9405. #~ " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></strong><br>\n"
  9406. #~ " \n"
  9407. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  9408. #~ " <tbody>\n"
  9409. #~ " <tr height=\"20\">\n"
  9410. #~ " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  9411. #~ " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  9412. #~ " </tr>\n"
  9413. #~ " <tr height=\"20\">\n"
  9414. #~ " <td height=\"20\"><strong>B</strong></td>\n"
  9415. #~ " <td>&nbsp;Buffer Tool</td>\n"
  9416. #~ " </tr>\n"
  9417. #~ " <tr height=\"20\">\n"
  9418. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  9419. #~ " <td>&nbsp;Copy Geo Item</td>\n"
  9420. #~ " </tr>\n"
  9421. #~ " <tr height=\"20\">\n"
  9422. #~ " <td height=\"20\"><strong>E</strong></td>\n"
  9423. #~ " <td>&nbsp;Polygon Intersection Tool</td>\n"
  9424. #~ " </tr>\n"
  9425. #~ " <tr height=\"20\">\n"
  9426. #~ " <td height=\"20\"><strong>I</strong></td>\n"
  9427. #~ " <td>&nbsp;Paint Tool</td>\n"
  9428. #~ " </tr>\n"
  9429. #~ " <tr height=\"20\">\n"
  9430. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  9431. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  9432. #~ " </tr>\n"
  9433. #~ " <tr height=\"20\">\n"
  9434. #~ " <td height=\"20\"><strong>K</strong></td>\n"
  9435. #~ " <td>&nbsp;Toggle Corner Snap</td>\n"
  9436. #~ " </tr>\n"
  9437. #~ " <tr height=\"20\">\n"
  9438. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  9439. #~ " <td>&nbsp;Move Geo Item</td>\n"
  9440. #~ " </tr>\n"
  9441. #~ " <tr height=\"20\">\n"
  9442. #~ " <td height=\"20\"><strong>N</strong></td>\n"
  9443. #~ " <td>&nbsp;Draw a Polygon</td>\n"
  9444. #~ " </tr>\n"
  9445. #~ " <tr height=\"20\">\n"
  9446. #~ " <td height=\"20\"><strong>O</strong></td>\n"
  9447. #~ " <td>&nbsp;Draw a Circle</td>\n"
  9448. #~ " </tr>\n"
  9449. #~ " <tr height=\"20\">\n"
  9450. #~ " <td height=\"20\"><strong>P</strong></td>\n"
  9451. #~ " <td>&nbsp;Draw a Path</td>\n"
  9452. #~ " </tr>\n"
  9453. #~ " <tr height=\"20\">\n"
  9454. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  9455. #~ " <td>&nbsp;Draw Rectangle</td>\n"
  9456. #~ " </tr>\n"
  9457. #~ " <tr height=\"20\">\n"
  9458. #~ " <td height=\"20\"><strong>S</strong></td>\n"
  9459. #~ " <td>&nbsp;Polygon Substraction Tool</td>\n"
  9460. #~ " </tr>\n"
  9461. #~ " <tr height=\"20\">\n"
  9462. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  9463. #~ " <td>&nbsp;Add Text Tool</td>\n"
  9464. #~ " </tr>\n"
  9465. #~ " <tr height=\"20\">\n"
  9466. #~ " <td height=\"20\"><strong>U</strong></td>\n"
  9467. #~ " <td>&nbsp;Polygon Union Tool</td>\n"
  9468. #~ " </tr>\n"
  9469. #~ " <tr height=\"20\">\n"
  9470. #~ " <td height=\"20\"><strong>X</strong></td>\n"
  9471. #~ " <td>&nbsp;Flip shape on X axis</td>\n"
  9472. #~ " </tr>\n"
  9473. #~ " <tr height=\"20\">\n"
  9474. #~ " <td height=\"20\"><strong>Y</strong></td>\n"
  9475. #~ " <td>&nbsp;Flip shape on Y axis</td>\n"
  9476. #~ " </tr>\n"
  9477. #~ " <tr height=\"20\">\n"
  9478. #~ " <td height=\"20\">&nbsp;</td>\n"
  9479. #~ " <td>&nbsp;</td>\n"
  9480. #~ " </tr>\n"
  9481. #~ " <tr height=\"20\">\n"
  9482. #~ " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  9483. #~ " <td>&nbsp;Skew shape on X axis</td>\n"
  9484. #~ " </tr>\n"
  9485. #~ " <tr height=\"20\">\n"
  9486. #~ " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  9487. #~ " <td>&nbsp;Skew shape on Y axis</td>\n"
  9488. #~ " </tr>\n"
  9489. #~ " <tr height=\"20\">\n"
  9490. #~ " <td height=\"20\">&nbsp;</td>\n"
  9491. #~ " <td>&nbsp;</td>\n"
  9492. #~ " </tr>\n"
  9493. #~ " <tr height=\"20\">\n"
  9494. #~ " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  9495. #~ " <td>&nbsp;Editor Transformation Tool</td>\n"
  9496. #~ " </tr>\n"
  9497. #~ " <tr height=\"20\">\n"
  9498. #~ " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  9499. #~ " <td>&nbsp;Offset shape on X axis</td>\n"
  9500. #~ " </tr>\n"
  9501. #~ " <tr height=\"20\">\n"
  9502. #~ " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  9503. #~ " <td>&nbsp;Offset shape on Y axis</td>\n"
  9504. #~ " </tr>\n"
  9505. #~ " <tr height=\"20\">\n"
  9506. #~ " <td height=\"20\">&nbsp;</td>\n"
  9507. #~ " <td>&nbsp;</td>\n"
  9508. #~ " </tr>\n"
  9509. #~ " <tr height=\"20\">\n"
  9510. #~ " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  9511. #~ " <td>&nbsp;Measurement Tool</td>\n"
  9512. #~ " </tr>\n"
  9513. #~ " <tr height=\"20\">\n"
  9514. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  9515. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  9516. #~ " </tr>\n"
  9517. #~ " <tr height=\"20\">\n"
  9518. #~ " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  9519. #~ " <td>&nbsp;Polygon Cut Tool</td>\n"
  9520. #~ " </tr>\n"
  9521. #~ " <tr height=\"20\">\n"
  9522. #~ " <td height=\"20\">&nbsp;</td>\n"
  9523. #~ " <td>&nbsp;</td>\n"
  9524. #~ " </tr>\n"
  9525. #~ " <tr height=\"20\">\n"
  9526. #~ " <td height=\"20\"><strong>Space</strong></td>\n"
  9527. #~ " <td>&nbsp;Rotate Geometry</td>\n"
  9528. #~ " </tr>\n"
  9529. #~ " <tr height=\"20\">\n"
  9530. #~ " <td height=\"20\"><strong>ENTER</strong></td>\n"
  9531. #~ " <td>&nbsp;Finish drawing for certain tools</td>\n"
  9532. #~ " </tr>\n"
  9533. #~ " <tr height=\"20\">\n"
  9534. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  9535. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  9536. #~ " </tr>\n"
  9537. #~ " <tr height=\"20\">\n"
  9538. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  9539. #~ " <td>&nbsp;Delete Shape</td>\n"
  9540. #~ " </tr>\n"
  9541. #~ " </tbody>\n"
  9542. #~ " </table>\n"
  9543. #~ " <br>\n"
  9544. #~ " <br>\n"
  9545. #~ " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></strong><br>\n"
  9546. #~ " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"width:283px\">\n"
  9547. #~ " <tbody>\n"
  9548. #~ " <tr height=\"20\">\n"
  9549. #~ " <td height=\"20\" width=\"89\"><strong>A</strong></td>\n"
  9550. #~ " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  9551. #~ " </tr>\n"
  9552. #~ " <tr height=\"20\">\n"
  9553. #~ " <td height=\"20\"><strong>C</strong></td>\n"
  9554. #~ " <td>&nbsp;Copy Drill(s)</td>\n"
  9555. #~ " </tr>\n"
  9556. #~ " <tr height=\"20\">\n"
  9557. #~ " <td height=\"20\"><strong>D</strong></td>\n"
  9558. #~ " <td>&nbsp;Add Drill</td>\n"
  9559. #~ " </tr>\n"
  9560. #~ " <tr height=\"20\">\n"
  9561. #~ " <td height=\"20\"><strong>J</strong></td>\n"
  9562. #~ " <td>&nbsp;Jump to Location (x, y)</td>\n"
  9563. #~ " </tr>\n"
  9564. #~ " <tr height=\"20\">\n"
  9565. #~ " <td height=\"20\"><strong>M</strong></td>\n"
  9566. #~ " <td>&nbsp;Move Drill(s)</td>\n"
  9567. #~ " </tr>\n"
  9568. #~ " <tr height=\"20\">\n"
  9569. #~ " <td height=\"20\"><strong>R</strong></td>\n"
  9570. #~ " <td>&nbsp;Resize Drill(s)</td>\n"
  9571. #~ " </tr>\n"
  9572. #~ " <tr height=\"20\">\n"
  9573. #~ " <td height=\"20\"><strong>T</strong></td>\n"
  9574. #~ " <td>&nbsp;Add a new Tool</td>\n"
  9575. #~ " </tr>\n"
  9576. #~ " <tr height=\"20\">\n"
  9577. #~ " <td height=\"20\">&nbsp;</td>\n"
  9578. #~ " <td>&nbsp;</td>\n"
  9579. #~ " </tr>\n"
  9580. #~ " <tr height=\"20\">\n"
  9581. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  9582. #~ " <td>&nbsp;Delete Drill(s)</td>\n"
  9583. #~ " </tr>\n"
  9584. #~ " <tr height=\"20\">\n"
  9585. #~ " <td height=\"20\"><strong>Del</strong></td>\n"
  9586. #~ " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  9587. #~ " </tr>\n"
  9588. #~ " <tr height=\"20\">\n"
  9589. #~ " <td height=\"20\">&nbsp;</td>\n"
  9590. #~ " <td>&nbsp;</td>\n"
  9591. #~ " </tr>\n"
  9592. #~ " <tr height=\"20\">\n"
  9593. #~ " <td height=\"20\"><strong>ESC</strong></td>\n"
  9594. #~ " <td>&nbsp;Abort and return to Select</td>\n"
  9595. #~ " </tr>\n"
  9596. #~ " <tr height=\"20\">\n"
  9597. #~ " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  9598. #~ " <td>&nbsp;Save Object and Exit Editor</td>\n"
  9599. #~ " </tr>\n"
  9600. #~ " </tbody>\n"
  9601. #~ " </table>\n"
  9602. #~ " "
  9603. #~ msgid "[ERROR_NOTCL]Could not load defaults file."
  9604. #~ msgstr "[ERROR_NOTCL]Could not load defaults file."
  9605. #~ msgid "[ERROR_NOTCL] Failed to parse project file: %s"
  9606. #~ msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
  9607. #~ msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
  9608. #~ msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
  9609. #~ msgid "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  9610. #~ msgstr "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
  9611. #~ msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  9612. #~ msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
  9613. #~ msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  9614. #~ msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
  9615. #~ msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
  9616. #~ msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
  9617. #~ msgid "[success] GUI settings deleted ..."
  9618. #~ msgstr "[success] GUI settings deleted ..."
  9619. #~ msgid "Scale Factor:"
  9620. #~ msgstr "Scale Factor:"
  9621. #~ msgid "Buffer Factor:"
  9622. #~ msgstr "Buffer Factor:"
  9623. #~ msgid "<b>Generate new Gerber Object:</b>"
  9624. #~ msgstr "<b>Generate new Gerber Object:</b>"
  9625. #~ msgid "Will generate a new Gerber object from the changed apertures."
  9626. #~ msgstr "Will generate a new Gerber object from the changed apertures."
  9627. #~ msgid ""
  9628. #~ "Will generate a new Gerber object from the changed apertures.\n"
  9629. #~ "This new object can then be isolated etc."
  9630. #~ msgstr ""
  9631. #~ "Will generate a new Gerber object from the changed apertures.\n"
  9632. #~ "This new object can then be isolated etc."
  9633. #~ msgid "[success]Flip on the Y axis done ..."
  9634. #~ msgstr "[success]Flip on the Y axis done ..."
  9635. #~ msgid "[success]Flip on the X axis done ..."
  9636. #~ msgstr "[success]Flip on the X axis done ..."
  9637. #~ msgid "[success]Skew on the %s axis done ..."
  9638. #~ msgstr "[success]Skew on the %s axis done ..."
  9639. #~ msgid "[success]Offset on the %s axis done ..."
  9640. #~ msgstr "[success]Offset on the %s axis done ..."
  9641. #~ msgid ""
  9642. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9643. #~ "Example:\n"
  9644. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9645. #~ "\n"
  9646. #~ "Adjust the value starting with lower values\n"
  9647. #~ "and increasing it if areas that should be painted are still \n"
  9648. #~ "not painted.\n"
  9649. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9650. #~ "Higher values = slow processing and slow execution on CNC\n"
  9651. #~ "due of too many paths."
  9652. #~ msgstr ""
  9653. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9654. #~ "Example:\n"
  9655. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9656. #~ "\n"
  9657. #~ "Adjust the value starting with lower values\n"
  9658. #~ "and increasing it if areas that should be painted are still \n"
  9659. #~ "not painted.\n"
  9660. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9661. #~ "Higher values = slow processing and slow execution on CNC\n"
  9662. #~ "due of too many paths."
  9663. #~| msgid "z_toolchange = Z coord for Toolchange"
  9664. #~ msgid "z_cut = Z coord for Toolchange"
  9665. #~ msgstr "z_cut = Z coord for Toolchange"
  9666. #~| msgid "z_toolchange = Z coord for Toolchange"
  9667. #~ msgid "z_move = Z coord for Toolchange"
  9668. #~ msgstr "z_move = Z coord for Toolchange"
  9669. #~ msgid "%s/Project_%s"
  9670. #~ msgstr "%s/Project_%s"
  9671. #~ msgid "tool_tab"
  9672. #~ msgstr "tool_tab"