strings.po 386 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562
  1. msgid ""
  2. msgstr ""
  3. "Project-Id-Version: \n"
  4. "POT-Creation-Date: 2019-09-10 00:20+0300\n"
  5. "PO-Revision-Date: 2019-09-11 23:04+0300\n"
  6. "Last-Translator: Carlos Stein <carlos.stein@gmail.com>\n"
  7. "Language-Team: \n"
  8. "Language: pt_BR\n"
  9. "MIME-Version: 1.0\n"
  10. "Content-Type: text/plain; charset=UTF-8\n"
  11. "Content-Transfer-Encoding: 8bit\n"
  12. "Generated-By: pygettext.py 1.5\n"
  13. "X-Generator: Poedit 2.2.3\n"
  14. "Plural-Forms: nplurals=2; plural=(n != 1);\n"
  15. "X-Poedit-Basepath: ../../..\n"
  16. "X-Poedit-SearchPath-0: .\n"
  17. "X-Poedit-SearchPathExcluded-0: build\n"
  18. "X-Poedit-SearchPathExcluded-1: doc\n"
  19. "X-Poedit-SearchPathExcluded-2: tests\n"
  20. #: FlatCAMApp.py:1113
  21. msgid "Could not find the Language files. The App strings are missing."
  22. msgstr "Não foi possível encontrar os arquivos de idioma. Estão faltando as "
  23. "strings do aplicativo."
  24. #: FlatCAMApp.py:1655
  25. msgid "Detachable Tabs"
  26. msgstr "Abas Destacáveis"
  27. #: FlatCAMApp.py:2067
  28. msgid ""
  29. "Open Source Software - Type help to get started\n"
  30. "\n"
  31. msgstr "Software de Código Aberto - Digite help para iniciar\n\n"
  32. #: FlatCAMApp.py:2270 FlatCAMApp.py:7220
  33. msgid "New Project - Not saved"
  34. msgstr "Novo Projeto - Não salvo"
  35. #: FlatCAMApp.py:2320 ObjectCollection.py:80 flatcamTools/ToolImage.py:218
  36. #: flatcamTools/ToolPcbWizard.py:301 flatcamTools/ToolPcbWizard.py:324
  37. msgid "Open cancelled."
  38. msgstr "Abrir cancelado."
  39. #: FlatCAMApp.py:2335
  40. msgid "Open Config file failed."
  41. msgstr "Falha ao abrir o arquivo de Configuração."
  42. #: FlatCAMApp.py:2349
  43. msgid "Open Script file failed."
  44. msgstr "Falha ao abrir o arquivo de Script."
  45. #: FlatCAMApp.py:2366
  46. msgid "Open Excellon file failed."
  47. msgstr "Falha ao abrir o arquivo Excellon."
  48. #: FlatCAMApp.py:2377
  49. msgid "Open GCode file failed."
  50. msgstr "Falha ao abrir o arquivo G-Code."
  51. #: FlatCAMApp.py:2388
  52. msgid "Open Gerber file failed."
  53. msgstr "Falha ao abrir o arquivo Gerber."
  54. #: FlatCAMApp.py:2652
  55. msgid "Select a Geometry, Gerber or Excellon Object to edit."
  56. msgstr "Selecione um Objeto Geometria, Gerber ou Excellon para editar."
  57. #: FlatCAMApp.py:2666
  58. msgid ""
  59. "Simultanoeus editing of tools geometry in a MultiGeo Geometry is not "
  60. "possible.\n"
  61. "Edit only one geometry at a time."
  62. msgstr "A edição simultânea de ferramentas geometria em uma "
  63. "Geometria MultiGeo não é possível. \n"
  64. "Edite apenas uma geometria por vez."
  65. #: FlatCAMApp.py:2721
  66. msgid "Editor is activated ..."
  67. msgstr "Editor está ativado ..."
  68. #: FlatCAMApp.py:2739
  69. msgid "Do you want to save the edited object?"
  70. msgstr "Você quer salvar o objeto editado?"
  71. #: FlatCAMApp.py:2740 flatcamGUI/FlatCAMGUI.py:1721
  72. msgid "Close Editor"
  73. msgstr "Fechar Editor"
  74. #: FlatCAMApp.py:2743 FlatCAMApp.py:4028 FlatCAMApp.py:6224 FlatCAMApp.py:7128
  75. #: FlatCAMTranslation.py:96 FlatCAMTranslation.py:169
  76. #: flatcamGUI/FlatCAMGUI.py:3996
  77. msgid "Yes"
  78. msgstr "Sim"
  79. #: FlatCAMApp.py:2744 FlatCAMApp.py:4029 FlatCAMApp.py:6225 FlatCAMApp.py:7129
  80. #: FlatCAMTranslation.py:97 FlatCAMTranslation.py:170
  81. #: flatcamGUI/FlatCAMGUI.py:3997 flatcamGUI/FlatCAMGUI.py:6517
  82. #: flatcamGUI/FlatCAMGUI.py:6877 flatcamTools/ToolNonCopperClear.py:171
  83. #: flatcamTools/ToolPaint.py:144
  84. msgid "No"
  85. msgstr "Não"
  86. #: FlatCAMApp.py:2745 FlatCAMApp.py:4030 FlatCAMApp.py:4719 FlatCAMApp.py:5720
  87. #: FlatCAMApp.py:7130
  88. msgid "Cancel"
  89. msgstr "Cancelar"
  90. #: FlatCAMApp.py:2773
  91. msgid "Object empty after edit."
  92. msgstr "Objeto vazio após a edição."
  93. #: FlatCAMApp.py:2796 FlatCAMApp.py:2817 FlatCAMApp.py:2830
  94. msgid "Select a Gerber, Geometry or Excellon Object to update."
  95. msgstr "Selecione um objeto Gerber, Geometria ou Excellon para atualizar."
  96. #: FlatCAMApp.py:2800
  97. msgid "is updated, returning to App..."
  98. msgstr "está atualizado, retornando ao App..."
  99. #: FlatCAMApp.py:3186 FlatCAMApp.py:3240 FlatCAMApp.py:3889
  100. msgid "Could not load defaults file."
  101. msgstr "Não foi possível carregar o arquivo com os padrões."
  102. #: FlatCAMApp.py:3199 FlatCAMApp.py:3249 FlatCAMApp.py:3899
  103. msgid "Failed to parse defaults file."
  104. msgstr "Falha ao analisar o arquivo com os padrões."
  105. #: FlatCAMApp.py:3220 FlatCAMApp.py:3224
  106. msgid "Import FlatCAM Preferences"
  107. msgstr "Importar Preferências do FlatCAM"
  108. #: FlatCAMApp.py:3231
  109. msgid "FlatCAM preferences import cancelled."
  110. msgstr "Importação de preferências do FlatCAM cancelada."
  111. #: FlatCAMApp.py:3254
  112. msgid "Imported Defaults from"
  113. msgstr "Padrões importados de"
  114. #: FlatCAMApp.py:3274 FlatCAMApp.py:3279
  115. msgid "Export FlatCAM Preferences"
  116. msgstr "Exportar preferências do FlatCAM"
  117. #: FlatCAMApp.py:3287
  118. msgid "FlatCAM preferences export cancelled."
  119. msgstr "Exportação de preferências do FlatCAM cancelada."
  120. #: FlatCAMApp.py:3296 FlatCAMApp.py:5531 FlatCAMApp.py:8113 FlatCAMApp.py:8229
  121. #: FlatCAMApp.py:8355 FlatCAMApp.py:8414 FlatCAMApp.py:8528 FlatCAMApp.py:8657
  122. #: FlatCAMObj.py:6167 flatcamTools/ToolSolderPaste.py:1428
  123. msgid ""
  124. "Permission denied, saving not possible.\n"
  125. "Most likely another app is holding the file open and not accessible."
  126. msgstr "Permissão negada, não é possível salvar.\n"
  127. "É provável que outro aplicativo esteja mantendo o arquivo aberto e "
  128. "não acessível."
  129. #: FlatCAMApp.py:3309
  130. msgid "Could not load preferences file."
  131. msgstr "Não foi possível carregar o arquivo com as preferências."
  132. #: FlatCAMApp.py:3329 FlatCAMApp.py:3945
  133. msgid "Failed to write defaults to file."
  134. msgstr "Falha ao gravar os padrões no arquivo."
  135. #: FlatCAMApp.py:3335
  136. msgid "Exported preferences to"
  137. msgstr "Preferências exportadas para"
  138. #: FlatCAMApp.py:3352
  139. msgid "FlatCAM Preferences Folder opened."
  140. msgstr "Pasta com Preferências FlatCAM aberta."
  141. #: FlatCAMApp.py:3425
  142. msgid "Failed to open recent files file for writing."
  143. msgstr "Falha ao abrir o arquivo com lista de arquivos recentes para gravação."
  144. #: FlatCAMApp.py:3436
  145. msgid "Failed to open recent projects file for writing."
  146. msgstr "Falha ao abrir o arquivo com lista de projetos recentes para gravação."
  147. #: FlatCAMApp.py:3519 camlib.py:4806 flatcamTools/ToolSolderPaste.py:1214
  148. msgid "An internal error has ocurred. See shell.\n"
  149. msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
  150. #: FlatCAMApp.py:3520
  151. #, python-brace-format
  152. msgid ""
  153. "Object ({kind}) failed because: {error} \n"
  154. "\n"
  155. msgstr "Objeto ({kind}) falhou porque: {error} \n"
  156. "\n"
  157. #: FlatCAMApp.py:3541
  158. msgid "Converting units to "
  159. msgstr "Convertendo unidades para "
  160. #: FlatCAMApp.py:3637 FlatCAMApp.py:3640 FlatCAMApp.py:3643 FlatCAMApp.py:3646
  161. #, python-brace-format
  162. msgid ""
  163. "[selected] {kind} created/selected: <span style=\"color:{color};\">{name}</"
  164. "span>"
  165. msgstr "[selected] {kind} criado/selecionado: <span style =\"color:{color};\">{name}"
  166. "</span>"
  167. #: FlatCAMApp.py:3663 FlatCAMApp.py:5787 FlatCAMObj.py:225 FlatCAMObj.py:240
  168. #: FlatCAMObj.py:256 FlatCAMObj.py:336 flatcamTools/ToolMove.py:187
  169. msgid "Plotting"
  170. msgstr "Plotando"
  171. #: FlatCAMApp.py:3782
  172. #, python-brace-format
  173. msgid ""
  174. "<font size=8><B>FlatCAM</B></font><BR>Version {version} {beta} ({date}) - "
  175. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  176. "<BR><BR><B> License: </B><BR>Licensed under MIT license (2014 - 2019)<BR>by "
  177. "(c)Juan Pablo Caram <BR><BR><B> Programmers:</B><BR>Denis Hayrullin<BR>Kamil "
  178. "Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>and many others found <a "
  179. "href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED"
  180. "\">here.</a><BR><BR><B>Development</B> is done <a href = \"https://bitbucket."
  181. "org/jpcgt/flatcam/src/Beta/\">here.</a><BR><b>DOWNLOAD</B> area <a href = "
  182. "\"https://bitbucket.org/jpcgt/flatcam/downloads/\">here.</a><BR>"
  183. msgstr ""
  184. "<font size=8><B>FlatCAM</B></font><BR>Versão {version} {beta} ({date}) - "
  185. "{arch} <BR><BR>2D Computer-Aided Printed Circuit Board<BR>Manufacturing."
  186. "<BR><BR><B> License: </B><BR>Licensed under MIT license (2014 - 2019)<BR>by "
  187. "(c)Juan Pablo Caram<BR><BR><B>Programadores:</B><BR>Denis Hayrullin<BR>Kamil " "Sopko<BR>Marius Stanciu<BR>Matthieu Berthomé<BR>e muitos outros encontrados <a " "href = \"https://bitbucket.org/jpcgt/flatcam/pull-requests/?state=MERGED"
  188. "\">aqui.</a><BR><BR>O <B>desenvolvimento</B> é feito <a href = \"https://bitbucket."
  189. "org/jpcgt/flatcam/src/Beta/\">aqui.</a><BR>Área de <B>DOWNLOAD</B> <a href = \"https://"
  190. "bitbucket.org/jpcgt/flatcam/downloads/\">aqui.</a><BR>"
  191. #: FlatCAMApp.py:3818
  192. msgid "Close"
  193. msgstr "Fechar"
  194. #: FlatCAMApp.py:3950 FlatCAMApp.py:6234
  195. msgid "Preferences saved."
  196. msgstr "Preferências salvas."
  197. #: FlatCAMApp.py:3978
  198. msgid "Could not load factory defaults file."
  199. msgstr "Não foi possível carregar o arquivo de padrões de fábrica."
  200. #: FlatCAMApp.py:3988
  201. msgid "Failed to parse factory defaults file."
  202. msgstr "Falha ao analisar o arquivo de padrões de fábrica."
  203. #: FlatCAMApp.py:4003
  204. msgid "Failed to write factory defaults to file."
  205. msgstr "Falha ao gravar os padrões de fábrica no arquivo."
  206. #: FlatCAMApp.py:4007
  207. msgid "Factory defaults saved."
  208. msgstr "Padrões de fábrica salvos."
  209. #: FlatCAMApp.py:4018
  210. msgid "Application is saving the project. Please wait ..."
  211. msgstr "O aplicativo está salvando o projeto. Por favor, espere ..."
  212. #: FlatCAMApp.py:4023 FlatCAMTranslation.py:164
  213. msgid ""
  214. "There are files/objects modified in FlatCAM. \n"
  215. "Do you want to Save the project?"
  216. msgstr ""
  217. "Existem arquivos/objetos modificados no FlatCAM. \n"
  218. "Você quer salvar o projeto?"
  219. #: FlatCAMApp.py:4026 FlatCAMApp.py:7126 FlatCAMTranslation.py:167
  220. msgid "Save changes"
  221. msgstr "Salvar alterações"
  222. #: FlatCAMApp.py:4237
  223. msgid "[success] Selected Excellon file extensions registered with FlatCAM."
  224. msgstr "As extensões de arquivo Excellon selecionadas foram registradas para o FlatCAM"
  225. #: FlatCAMApp.py:4259
  226. msgid "Selected GCode file extensions registered with FlatCAM."
  227. msgstr "As extensões de arquivo G-Code selecionadas foram registradas para o FlatCAM"
  228. #: FlatCAMApp.py:4281
  229. msgid "Selected Gerber file extensions registered with FlatCAM."
  230. msgstr "As extensões de arquivo Gerber selecionadas foram registradas para o FlatCAM"
  231. #: FlatCAMApp.py:4305
  232. msgid ""
  233. "Failed join. The Geometry objects are of different types.\n"
  234. "At least one is MultiGeo type and the other is SingleGeo type. A possibility "
  235. "is to convert from one to another and retry joining \n"
  236. "but in the case of converting from MultiGeo to SingleGeo, informations may "
  237. "be lost and the result may not be what was expected. \n"
  238. "Check the generated GCODE."
  239. msgstr ""
  240. "Falha ao unir. Os objetos Geometria são de tipos diferentes.\n"
  241. "Pelo menos um é do tipo MultiGeo e o outro é do tipo SingleGeo. Uma "
  242. "possibilidade é converter de um para outro e tentar unir,\n"
  243. "mas no caso de converter de MultiGeo para SingleGeo, as informações podem "
  244. "ser perdidas e o resultado pode não ser o esperado.\n"
  245. "Verifique o G-CODE gerado."
  246. #: FlatCAMApp.py:4347
  247. msgid "Failed. Excellon joining works only on Excellon objects."
  248. msgstr "Falha. A união de Excellon funciona apenas em objetos Excellon."
  249. #: FlatCAMApp.py:4370
  250. msgid "Failed. Gerber joining works only on Gerber objects."
  251. msgstr "Falha. A união de Gerber funciona apenas em objetos Gerber."
  252. #: FlatCAMApp.py:4395 FlatCAMApp.py:4432
  253. msgid "Failed. Select a Geometry Object and try again."
  254. msgstr "Falha. Selecione um Objeto de Geometria e tente novamente."
  255. #: FlatCAMApp.py:4400
  256. msgid "Expected a FlatCAMGeometry, got"
  257. msgstr "Geometria FlatCAM esperada, recebido"
  258. #: FlatCAMApp.py:4414
  259. msgid "A Geometry object was converted to MultiGeo type."
  260. msgstr "Um objeto Geometria foi convertido para o tipo MultiGeo."
  261. #: FlatCAMApp.py:4437
  262. #, python-format
  263. msgid "Expected a FlatCAMGeometry, got %s"
  264. msgstr "Geometria FlatCAM esperada, recebido %s"
  265. #: FlatCAMApp.py:4452
  266. msgid "A Geometry object was converted to SingleGeo type."
  267. msgstr "Um objeto Geometria foi convertido para o tipo SingleGeo."
  268. #: FlatCAMApp.py:4713
  269. msgid "Toggle Units"
  270. msgstr "Alternar Unidades"
  271. #: FlatCAMApp.py:4715
  272. msgid "Change project units ..."
  273. msgstr "Alterar unidades do projeto ..."
  274. #: FlatCAMApp.py:4716
  275. msgid ""
  276. "Changing the units of the project causes all geometrical properties of all "
  277. "objects to be scaled accordingly.\n"
  278. "Continue?"
  279. msgstr ""
  280. "Alterar as unidades do projeto fará com que todas as propriedades "
  281. "geométricas de todos os objetos sejam redimensionadas.\n"
  282. "Continuar?"
  283. #: FlatCAMApp.py:4718 FlatCAMApp.py:5614 FlatCAMApp.py:5719 FlatCAMApp.py:7419
  284. #: FlatCAMApp.py:7433 FlatCAMApp.py:7688 FlatCAMApp.py:7699
  285. msgid "Ok"
  286. msgstr "Ok"
  287. #: FlatCAMApp.py:4767
  288. #, python-format
  289. msgid "Converted units to %s"
  290. msgstr "Unidades convertidas para %s"
  291. #: FlatCAMApp.py:4779
  292. msgid " Units conversion cancelled."
  293. msgstr "Conversão de unidades cancelada."
  294. #: FlatCAMApp.py:5477
  295. msgid "Open file"
  296. msgstr "Abrir arquivo"
  297. #: FlatCAMApp.py:5508 FlatCAMApp.py:5513
  298. msgid "Export G-Code ..."
  299. msgstr "Exportar G-Code ..."
  300. #: FlatCAMApp.py:5517
  301. msgid "Export Code cancelled."
  302. msgstr "Exportar G-Code cancelado."
  303. #: FlatCAMApp.py:5527 FlatCAMObj.py:6163 flatcamTools/ToolSolderPaste.py:1424
  304. msgid "No such file or directory"
  305. msgstr "Nenhum arquivo ou diretório"
  306. #: FlatCAMApp.py:5539
  307. #, python-format
  308. msgid "Saved to: %s"
  309. msgstr "Salvo em: %s"
  310. #: FlatCAMApp.py:5602 FlatCAMApp.py:5635 FlatCAMApp.py:5646 FlatCAMApp.py:5657
  311. #: flatcamTools/ToolNonCopperClear.py:915 flatcamTools/ToolSolderPaste.py:774
  312. msgid "Please enter a tool diameter with non-zero value, in Float format."
  313. msgstr "Insira um diâmetro de ferramenta com valor diferente de "
  314. "zero, no formato Flutuante.""
  315. #: FlatCAMApp.py:5607 FlatCAMApp.py:5640 FlatCAMApp.py:5662
  316. msgid "Adding Tool cancelled"
  317. msgstr "Adicionar ferramenta cancelada ..."
  318. #: FlatCAMApp.py:5610
  319. msgid ""
  320. "Adding Tool works only when Advanced is checked.\n"
  321. "Go to Preferences -> General - Show Advanced Options."
  322. msgstr ""
  323. "Adicionar Ferramenta funciona somente no modo Avançado.\n"
  324. "Vá em Preferências -> Geral - Mostrar Opções Avançadas."
  325. #: FlatCAMApp.py:5651 flatcamGUI/FlatCAMGUI.py:3168
  326. msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
  327. msgstr "Adicionar ferramenta cancelada ..."
  328. #: FlatCAMApp.py:5714
  329. msgid "Delete objects"
  330. msgstr "Excluir objetos"
  331. #: FlatCAMApp.py:5717
  332. msgid ""
  333. "Are you sure you want to permanently delete\n"
  334. "the selected objects?"
  335. msgstr ""
  336. "Você tem certeza de que deseja excluir permanentemente\n"
  337. "os objetos selecionados?"
  338. #: FlatCAMApp.py:5747
  339. msgid "Object(s) deleted"
  340. msgstr "Objeto(s) excluído(s)"
  341. #: FlatCAMApp.py:5751
  342. msgid "Failed. No object(s) selected..."
  343. msgstr "Falha. Nenhum objeto selecionado..."
  344. #: FlatCAMApp.py:5753
  345. msgid "Save the work in Editor and try again ..."
  346. msgstr "Salve o trabalho no Editor e tente novamente ..."
  347. #: FlatCAMApp.py:5771
  348. msgid "Object deleted"
  349. msgstr "Objeto excluído"
  350. #: FlatCAMApp.py:5795
  351. msgid "Click to set the origin ..."
  352. msgstr "Clique para definir a origem ..."
  353. #: FlatCAMApp.py:5819
  354. msgid "Setting Origin..."
  355. msgstr "Definindo Origem..."
  356. #: FlatCAMApp.py:5831
  357. msgid "Origin set"
  358. msgstr "Origem definida"
  359. #: FlatCAMApp.py:5846
  360. msgid "Jump to ..."
  361. msgstr "Pular para ..."
  362. #: FlatCAMApp.py:5847
  363. msgid "Enter the coordinates in format X,Y:"
  364. msgstr "Digite as coordenadas no formato X,Y:"
  365. #: FlatCAMApp.py:5854
  366. msgid "Wrong coordinates. Enter coordinates in format: X,Y"
  367. msgstr "Coordenadas erradas. Insira as coordenadas no formato X,Y"
  368. #: FlatCAMApp.py:5873 flatcamEditors/FlatCAMExcEditor.py:3445
  369. #: flatcamEditors/FlatCAMExcEditor.py:3453
  370. #: flatcamEditors/FlatCAMGeoEditor.py:3791
  371. #: flatcamEditors/FlatCAMGeoEditor.py:3806
  372. #: flatcamEditors/FlatCAMGrbEditor.py:1067
  373. #: flatcamEditors/FlatCAMGrbEditor.py:1171
  374. #: flatcamEditors/FlatCAMGrbEditor.py:1445
  375. #: flatcamEditors/FlatCAMGrbEditor.py:1703
  376. #: flatcamEditors/FlatCAMGrbEditor.py:4182
  377. #: flatcamEditors/FlatCAMGrbEditor.py:4197
  378. msgid "Done."
  379. msgstr "Pronto"
  380. #: FlatCAMApp.py:6007 FlatCAMApp.py:6075
  381. msgid "No object is selected. Select an object and try again."
  382. msgstr "Nenhum objeto está selecionado. Selecione um objeto e tente "
  383. "novamente."
  384. #: FlatCAMApp.py:6095
  385. msgid ""
  386. "Aborting. The current task will be gracefully closed as soon as possible..."
  387. msgstr "Abortando. A tarefa atual será fechada normalmente o mais rápido possível ..."
  388. #: FlatCAMApp.py:6101
  389. msgid "The current task was gracefully closed on user request..."
  390. msgstr "A tarefa atual foi fechada normalmente mediante solicitação do usuário ..."
  391. #: FlatCAMApp.py:6118 flatcamGUI/GUIElements.py:1443
  392. msgid "Preferences"
  393. msgstr "Preferências"
  394. #: FlatCAMApp.py:6185
  395. msgid "Preferences edited but not saved."
  396. msgstr "Preferências editadas, mas não salvas."
  397. #: FlatCAMApp.py:6219
  398. msgid ""
  399. "One or more values are changed.\n"
  400. "Do you want to save the Preferences?"
  401. msgstr ""
  402. "Um ou mais valores foram alterados.\n"
  403. "Você deseja salvar as preferências?"
  404. #: FlatCAMApp.py:6221 flatcamGUI/FlatCAMGUI.py:198 flatcamGUI/FlatCAMGUI.py:989
  405. msgid "Save Preferences"
  406. msgstr "Salvar Preferências"
  407. #: FlatCAMApp.py:6250
  408. msgid "No object selected to Flip on Y axis."
  409. msgstr "Nenhum objeto selecionado para Espelhar no eixo Y."
  410. #: FlatCAMApp.py:6276
  411. msgid "Flip on Y axis done."
  412. msgstr "Espelhado no eixo Y."
  413. #: FlatCAMApp.py:6279 FlatCAMApp.py:6322
  414. #: flatcamEditors/FlatCAMGrbEditor.py:5624
  415. msgid "Flip action was not executed."
  416. msgstr "A ação de espelhamento não foi executada."
  417. #: FlatCAMApp.py:6293
  418. msgid "No object selected to Flip on X axis."
  419. msgstr "Nenhum objeto selecionado para Espelhar no eixo X."
  420. #: FlatCAMApp.py:6319
  421. msgid "Flip on X axis done."
  422. msgstr "Espelhado no eixo X."
  423. #: FlatCAMApp.py:6336
  424. msgid "No object selected to Rotate."
  425. msgstr "Nenhum objeto selecionado para Girar."
  426. #: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
  427. msgid "Transform"
  428. msgstr "Transformar"
  429. #: FlatCAMApp.py:6339 FlatCAMApp.py:6387 FlatCAMApp.py:6420
  430. msgid "Enter the Angle value:"
  431. msgstr "Digite o valor do Ângulo:"
  432. #: FlatCAMApp.py:6370
  433. msgid "Rotation done."
  434. msgstr "Rotação realizada."
  435. #: FlatCAMApp.py:6373
  436. msgid "Rotation movement was not executed."
  437. msgstr "O movimento de rotação não foi executado."
  438. #: FlatCAMApp.py:6385
  439. msgid "No object selected to Skew/Shear on X axis."
  440. msgstr "Nenhum objeto selecionado para Inclinar no eixo X."
  441. #: FlatCAMApp.py:6407
  442. msgid "Skew on X axis done."
  443. msgstr "Inclinação no eixo X concluída."
  444. #: FlatCAMApp.py:6418
  445. msgid "No object selected to Skew/Shear on Y axis."
  446. msgstr "Nenhum objeto selecionado para Inclinar no eixo Y."
  447. #: FlatCAMApp.py:6440
  448. msgid "Skew on Y axis done."
  449. msgstr "Inclinação no eixo Y concluída."
  450. #: FlatCAMApp.py:6491
  451. msgid "Grid On/Off"
  452. msgstr "Liga/Desliga a Grade"
  453. #: FlatCAMApp.py:6504 flatcamEditors/FlatCAMGeoEditor.py:940
  454. #: flatcamEditors/FlatCAMGrbEditor.py:2477
  455. #: flatcamEditors/FlatCAMGrbEditor.py:5134 flatcamGUI/ObjectUI.py:1053
  456. #: flatcamTools/ToolDblSided.py:160 flatcamTools/ToolDblSided.py:207
  457. #: flatcamTools/ToolNonCopperClear.py:237 flatcamTools/ToolPaint.py:176
  458. #: flatcamTools/ToolSolderPaste.py:115 flatcamTools/ToolSolderPaste.py:483
  459. #: flatcamTools/ToolTransform.py:338
  460. msgid "Add"
  461. msgstr "Adicionar"
  462. #: FlatCAMApp.py:6505 FlatCAMObj.py:3566
  463. #: flatcamEditors/FlatCAMGrbEditor.py:2482 flatcamGUI/FlatCAMGUI.py:545
  464. #: flatcamGUI/FlatCAMGUI.py:748 flatcamGUI/FlatCAMGUI.py:1719
  465. #: flatcamGUI/FlatCAMGUI.py:2094 flatcamGUI/ObjectUI.py:1069
  466. #: flatcamTools/ToolNonCopperClear.py:249 flatcamTools/ToolPaint.py:188
  467. #: flatcamTools/ToolSolderPaste.py:121 flatcamTools/ToolSolderPaste.py:485
  468. msgid "Delete"
  469. msgstr "Excluir"
  470. #: FlatCAMApp.py:6518
  471. msgid "New Grid ..."
  472. msgstr "Nova Grade ..."
  473. #: FlatCAMApp.py:6519
  474. msgid "Enter a Grid Value:"
  475. msgstr "Digite um valor para grade:"
  476. #: FlatCAMApp.py:6527 FlatCAMApp.py:6554
  477. msgid "Please enter a grid value with non-zero value, in Float format."
  478. msgstr "Por favor, insira um valor de grade com valor diferente de "
  479. "zero, no formato Flutuante."
  480. #: FlatCAMApp.py:6533
  481. msgid "New Grid added"
  482. msgstr "Nova Grade adicionada"
  483. #: FlatCAMApp.py:6536
  484. msgid "Grid already exists"
  485. msgstr "Grade já existe"
  486. #: FlatCAMApp.py:6539
  487. msgid "Adding New Grid cancelled"
  488. msgstr "Adicionar nova grade cancelada"
  489. #: FlatCAMApp.py:6561
  490. msgid " Grid Value does not exist"
  491. msgstr "O valor da grade não existe"
  492. #: FlatCAMApp.py:6564
  493. msgid "Grid Value deleted"
  494. msgstr "Grade apagada"
  495. #: FlatCAMApp.py:6567
  496. msgid "Delete Grid value cancelled"
  497. msgstr "Excluir valor de grade cancelado"
  498. #: FlatCAMApp.py:6573
  499. msgid "Key Shortcut List"
  500. msgstr "Lista de Teclas de Atalho"
  501. #: FlatCAMApp.py:6607
  502. msgid " No object selected to copy it's name"
  503. msgstr "Nenhum objeto selecionado para copiar nome"
  504. #: FlatCAMApp.py:6611
  505. msgid "Name copied on clipboard ..."
  506. msgstr "Nome copiado para a área de transferência"
  507. #: FlatCAMApp.py:6654 flatcamEditors/FlatCAMGrbEditor.py:4122
  508. msgid "Coordinates copied to clipboard."
  509. msgstr "Coordenadas copiadas para a área de transferência."
  510. #: FlatCAMApp.py:6907 FlatCAMApp.py:6911 FlatCAMApp.py:6915 FlatCAMApp.py:6919
  511. #: FlatCAMApp.py:6935 FlatCAMApp.py:6939 FlatCAMApp.py:6943 FlatCAMApp.py:6947
  512. #: FlatCAMApp.py:6987 FlatCAMApp.py:6990 FlatCAMApp.py:6993 FlatCAMApp.py:6996
  513. #: ObjectCollection.py:725 ObjectCollection.py:728 ObjectCollection.py:731
  514. #: ObjectCollection.py:734
  515. #, python-brace-format
  516. msgid "[selected]<span style=\"color:{color};\">{name}</span> selected"
  517. msgstr "[selected]<span style=\"color:{color};\">{name}</span> selecionado"
  518. #: FlatCAMApp.py:7123
  519. msgid ""
  520. "There are files/objects opened in FlatCAM.\n"
  521. "Creating a New project will delete them.\n"
  522. "Do you want to Save the project?"
  523. msgstr ""
  524. "Existem arquivos/objetos abertos no FlatCAM.\n"
  525. "Criar um novo projeto irá apagá-los.\n"
  526. "Você deseja Salvar o Projeto?"
  527. #: FlatCAMApp.py:7145
  528. msgid "New Project created"
  529. msgstr "Novo Projeto criado"
  530. #: FlatCAMApp.py:7265 FlatCAMApp.py:7269 flatcamGUI/FlatCAMGUI.py:626
  531. #: flatcamGUI/FlatCAMGUI.py:1970
  532. msgid "Open Gerber"
  533. msgstr "Abrir Gerber"
  534. #: FlatCAMApp.py:7277
  535. msgid "Open Gerber cancelled."
  536. msgstr "Abrir Gerber cancelado."
  537. #: FlatCAMApp.py:7297 FlatCAMApp.py:7301 flatcamGUI/FlatCAMGUI.py:627
  538. #: flatcamGUI/FlatCAMGUI.py:1971
  539. msgid "Open Excellon"
  540. msgstr "Abrir Excellon"
  541. #: FlatCAMApp.py:7308
  542. msgid " Open Excellon cancelled."
  543. msgstr "Abrir Excellon cancelado."
  544. #: FlatCAMApp.py:7331 FlatCAMApp.py:7335
  545. msgid "Open G-Code"
  546. msgstr "Abrir G-Code"
  547. #: FlatCAMApp.py:7343
  548. msgid "Open G-Code cancelled."
  549. msgstr "Abrir G-Code cancelado."
  550. #: FlatCAMApp.py:7360 FlatCAMApp.py:7363
  551. msgid "Open Project"
  552. msgstr "Abrir Projeto"
  553. #: FlatCAMApp.py:7372
  554. msgid "Open Project cancelled."
  555. msgstr "Abrir Projeto cancelado."
  556. #: FlatCAMApp.py:7391 FlatCAMApp.py:7394
  557. msgid "Open Configuration File"
  558. msgstr "Abrir Arquivo de Configuração"
  559. #: FlatCAMApp.py:7399
  560. msgid "Open Config cancelled."
  561. msgstr "Abrir Arquivo de Configuração cancelado."
  562. #: FlatCAMApp.py:7415 FlatCAMApp.py:7684 FlatCAMApp.py:10115
  563. #: FlatCAMApp.py:10136 FlatCAMApp.py:10158 FlatCAMApp.py:10181
  564. msgid "No object selected."
  565. msgstr "Nenhum objeto selecionado."
  566. #: FlatCAMApp.py:7416 FlatCAMApp.py:7685
  567. msgid "Please Select a Geometry object to export"
  568. msgstr "Por favor, selecione um objeto Geometria para exportar"
  569. #: FlatCAMApp.py:7430
  570. msgid "Only Geometry, Gerber and CNCJob objects can be used."
  571. msgstr "omente objetos Geometria, Gerber e Trabalho CNC podem ser "
  572. "usados."
  573. #: FlatCAMApp.py:7443 FlatCAMApp.py:7447
  574. msgid "Export SVG"
  575. msgstr "Exportar SVG"
  576. #: FlatCAMApp.py:7453
  577. msgid " Export SVG cancelled."
  578. msgstr "Exportar SVG cancelado."
  579. #: FlatCAMApp.py:7473
  580. msgid "Data must be a 3D array with last dimension 3 or 4"
  581. msgstr "Os dados devem ser uma matriz 3D com a última dimensão 3 ou 4"
  582. #: FlatCAMApp.py:7479 FlatCAMApp.py:7483
  583. msgid "Export PNG Image"
  584. msgstr "Exportar Imagem PNG"
  585. #: FlatCAMApp.py:7488
  586. msgid "Export PNG cancelled."
  587. msgstr "Exportar PNG cancelado."
  588. #: FlatCAMApp.py:7508
  589. msgid "No object selected. Please select an Gerber object to export."
  590. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  591. "Gerber para exportar."
  592. #: FlatCAMApp.py:7514 FlatCAMApp.py:7646
  593. msgid "Failed. Only Gerber objects can be saved as Gerber files..."
  594. msgstr "Falhou. Somente objetos Gerber podem ser salvos como arquivos "
  595. "Gerber..."
  596. #: FlatCAMApp.py:7526
  597. msgid "Save Gerber source file"
  598. msgstr "Salvar arquivo fonte Gerber"
  599. #: FlatCAMApp.py:7532
  600. msgid "Save Gerber source file cancelled."
  601. msgstr "Salvar arquivo fonte Gerber cancelado."
  602. #: FlatCAMApp.py:7552
  603. msgid "No object selected. Please select an Excellon object to export."
  604. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  605. "Excellon para exportar."
  606. #: FlatCAMApp.py:7558 FlatCAMApp.py:7602
  607. msgid "Failed. Only Excellon objects can be saved as Excellon files..."
  608. msgstr "Falhou. Somente objetos Excellon podem ser salvos como arquivos "
  609. "Excellon..."
  610. #: FlatCAMApp.py:7566 FlatCAMApp.py:7570
  611. msgid "Save Excellon source file"
  612. msgstr "Salvar o arquivo fonte Excellon"
  613. #: FlatCAMApp.py:7576
  614. msgid "Saving Excellon source file cancelled."
  615. msgstr "Salvar arquivo fonte Excellon cancelado."
  616. #: FlatCAMApp.py:7596
  617. msgid "No object selected. Please Select an Excellon object to export."
  618. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  619. "Excellon para exportar."
  620. #: FlatCAMApp.py:7610 FlatCAMApp.py:7614
  621. msgid "Export Excellon"
  622. msgstr "Exportar Excellon"
  623. #: FlatCAMApp.py:7620
  624. msgid "Export Excellon cancelled."
  625. msgstr "Exportar Excellon cancelado."
  626. #: FlatCAMApp.py:7640
  627. msgid "No object selected. Please Select an Gerber object to export."
  628. msgstr "Nenhum objeto selecionado. Por favor, selecione um objeto "
  629. "Gerber para exportar."
  630. #: FlatCAMApp.py:7654 FlatCAMApp.py:7658
  631. msgid "Export Gerber"
  632. msgstr "Exportar Gerber"
  633. #: FlatCAMApp.py:7664
  634. msgid "Export Gerber cancelled."
  635. msgstr "Exportar Gerber cancelado."
  636. #: FlatCAMApp.py:7696
  637. msgid "Only Geometry objects can be used."
  638. msgstr "Apenas objetos Geometria podem ser usados."
  639. #: FlatCAMApp.py:7710 FlatCAMApp.py:7714
  640. msgid "Export DXF"
  641. msgstr "Exportar DXF"
  642. #: FlatCAMApp.py:7721
  643. msgid "Export DXF cancelled."
  644. msgstr "Exportar DXF cancelado."
  645. #: FlatCAMApp.py:7741 FlatCAMApp.py:7744
  646. msgid "Import SVG"
  647. msgstr "Importar SVG"
  648. #: FlatCAMApp.py:7754
  649. msgid "Open SVG cancelled."
  650. msgstr "Abrir SVG cancelado."
  651. #: FlatCAMApp.py:7773 FlatCAMApp.py:7777
  652. msgid "Import DXF"
  653. msgstr "Importar DXF"
  654. #: FlatCAMApp.py:7787
  655. msgid "Open DXF cancelled."
  656. msgstr "Abrir DXF cancelado."
  657. #: FlatCAMApp.py:7805
  658. #, python-format
  659. msgid "%s"
  660. msgstr "%s"
  661. #: FlatCAMApp.py:7826
  662. msgid "Select an Gerber or Excellon file to view it's source file."
  663. msgstr "Selecione um arquivo Gerber ou Excellon para visualizar o "
  664. "arquivo fonte."
  665. #: FlatCAMApp.py:7834
  666. msgid "There is no selected object for which to see it's source file code."
  667. msgstr "Nenhum objeto selecionado para ver o código fonte do "
  668. "arquivo."
  669. #: FlatCAMApp.py:7842
  670. msgid "Source Editor"
  671. msgstr "Editor de Fontes"
  672. #: FlatCAMApp.py:7853
  673. msgid "App.on_view_source() -->"
  674. msgstr "App.on_view_source() -->"
  675. #: FlatCAMApp.py:7865 FlatCAMApp.py:9110 FlatCAMObj.py:5946
  676. #: flatcamTools/ToolSolderPaste.py:1304
  677. msgid "Code Editor"
  678. msgstr "Editor de Códigos"
  679. #: FlatCAMApp.py:7877
  680. msgid "Script Editor"
  681. msgstr "Editor de Script"
  682. #: FlatCAMApp.py:7880
  683. msgid ""
  684. "#\n"
  685. "# CREATE A NEW FLATCAM TCL SCRIPT\n"
  686. "# TCL Tutorial here: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  687. "html\n"
  688. "#\n"
  689. "\n"
  690. "# FlatCAM commands list:\n"
  691. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  692. "AlignDrillGrid, ClearShell, Cncjob,\n"
  693. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  694. "GeoUnion, GetNames, GetSys,\n"
  695. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  696. "ListSys, MillHoles, Mirror, New,\n"
  697. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  698. "Options, Paint, Panelize,\n"
  699. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  700. "SubtractRectangle, Version,\n"
  701. "# WriteGCode\n"
  702. "#\n"
  703. "\n"
  704. msgstr ""
  705. "#\n"
  706. "# CRIAR UM NOVO SCRIPT TCL FLATCAM\n"
  707. "# Tutorial TCL aqui: https://www.tcl.tk/man/tcl8.5/tutorial/tcltutorial."
  708. "html\n"
  709. "#\n"
  710. "\n"
  711. "# Lista de comandos FlatCAM:\n"
  712. "# AddCircle, AddPolygon, AddPolyline, AddRectangle, AlignDrill, "
  713. "AlignDrillGrid, ClearShell, Cncjob,\n"
  714. "# Cutout, Delete, Drillcncjob, ExportGcode, ExportSVG, Exteriors, GeoCutout, "
  715. "GeoUnion, GetNames, GetSys,\n"
  716. "# ImportSvg, Interiors, Isolate, Follow, JoinExcellon, JoinGeometry, "
  717. "ListSys, MillHoles, Mirror, New,\n"
  718. "# NewGeometry, Offset, OpenExcellon, OpenGCode, OpenGerber, OpenProject, "
  719. "Options, Paint, Panelize,\n"
  720. "# Plot, SaveProject, SaveSys, Scale, SetActive, SetSys, Skew, SubtractPoly,"
  721. "SubtractRectangle, Version,\n"
  722. "# WriteGCode\n"
  723. "#\n"
  724. "\n"
  725. #: FlatCAMApp.py:7903 FlatCAMApp.py:7906
  726. msgid "Open TCL script"
  727. msgstr "Abrir script TCL"
  728. #: FlatCAMApp.py:7915
  729. msgid "Open TCL script cancelled."
  730. msgstr "Abrir script TCL cancelado."
  731. #: FlatCAMApp.py:7928
  732. msgid "App.on_fileopenscript() -->"
  733. msgstr "App.on_fileopenscript() -->"
  734. #: FlatCAMApp.py:7954 FlatCAMApp.py:7957
  735. msgid "Run TCL script"
  736. msgstr "Executar script TCL"
  737. #: FlatCAMApp.py:7966
  738. msgid "Run TCL script cancelled."
  739. msgstr "Executar script TCL cancelado."
  740. #: FlatCAMApp.py:8021 FlatCAMApp.py:8025
  741. msgid "Save Project As ..."
  742. msgstr "Salvar Projeto Como..."
  743. #: FlatCAMApp.py:8022
  744. #, python-brace-format
  745. msgid "{l_save}/Project_{date}"
  746. msgstr "{l_save}/Project_{date}"
  747. #: FlatCAMApp.py:8031
  748. msgid "Save Project cancelled."
  749. msgstr "Salvar Projeto cancelado."
  750. #: FlatCAMApp.py:8079
  751. msgid "Exporting SVG"
  752. msgstr "Exportando SVG"
  753. #: FlatCAMApp.py:8121 FlatCAMApp.py:8238 FlatCAMApp.py:8364
  754. msgid "SVG file exported to"
  755. msgstr "Arquivo SVG exportado para"
  756. #: FlatCAMApp.py:8156 FlatCAMApp.py:8287 flatcamTools/ToolPanelize.py:381
  757. msgid "No object Box. Using instead"
  758. msgstr "Nenhuma caixa de objeto. Usando"
  759. #: FlatCAMApp.py:8241 FlatCAMApp.py:8367
  760. msgid "Generating Film ... Please wait."
  761. msgstr "Gerando Filme ... Por favor, aguarde."
  762. #: FlatCAMApp.py:8536
  763. msgid "Excellon file exported to"
  764. msgstr "Arquivo Excellon exportado para"
  765. #: FlatCAMApp.py:8543
  766. msgid "Exporting Excellon"
  767. msgstr "Exportando Excellon"
  768. #: FlatCAMApp.py:8549 FlatCAMApp.py:8557
  769. msgid "Could not export Excellon file."
  770. msgstr "Não foi possível exportar o arquivo Excellon."
  771. #: FlatCAMApp.py:8665
  772. msgid "Gerber file exported to"
  773. msgstr "Arquivo Gerber exportado para"
  774. #: FlatCAMApp.py:8672
  775. msgid "Exporting Gerber"
  776. msgstr "Exportando Gerber"
  777. #: FlatCAMApp.py:8678 FlatCAMApp.py:8686
  778. msgid "Could not export Gerber file."
  779. msgstr "Não foi possível exportar o arquivo Gerber."
  780. #: FlatCAMApp.py:8729
  781. msgid "DXF file exported to"
  782. msgstr "Arquivo DXF exportado para"
  783. #: FlatCAMApp.py:8735
  784. msgid "Exporting DXF"
  785. msgstr "Exportando DXF"
  786. #: FlatCAMApp.py:8741 FlatCAMApp.py:8749
  787. msgid "Could not export DXF file."
  788. msgstr "Não foi possível exportar o arquivo DXF."
  789. #: FlatCAMApp.py:8770 FlatCAMApp.py:8814 FlatCAMApp.py:8860
  790. msgid ""
  791. "Not supported type is picked as parameter. Only Geometry and Gerber are "
  792. "supported"
  793. msgstr "O tipo escolhido não é suportado como parâmetro. Apenas "
  794. "Geometria e Gerber são suportados"
  795. #: FlatCAMApp.py:8780
  796. msgid "Importing SVG"
  797. msgstr "Importando SVG"
  798. #: FlatCAMApp.py:8792 FlatCAMApp.py:8836 FlatCAMApp.py:8881 FlatCAMApp.py:8962
  799. #: FlatCAMApp.py:9029 FlatCAMApp.py:9096
  800. msgid "Opened"
  801. msgstr "Aberto"
  802. #: FlatCAMApp.py:8824
  803. msgid "Importing DXF"
  804. msgstr "Importando DXF"
  805. #: FlatCAMApp.py:8868
  806. msgid "Importing Image"
  807. msgstr "Importando Imagem"
  808. #: FlatCAMApp.py:8911
  809. msgid "Failed to open file"
  810. msgstr "Falha ao abrir o arquivo"
  811. #: FlatCAMApp.py:8916
  812. msgid "Failed to parse file"
  813. msgstr "Falha ao analisar o arquivo"
  814. #: FlatCAMApp.py:8923 FlatCAMApp.py:8997 FlatCAMObj.py:4523
  815. #: flatcamEditors/FlatCAMGrbEditor.py:3939 flatcamTools/ToolPcbWizard.py:437
  816. msgid "An internal error has occurred. See shell.\n"
  817. msgstr "Ocorreu um erro interno. Veja shell. (linha de comando)\n"
  818. #: FlatCAMApp.py:8933
  819. msgid "Object is not Gerber file or empty. Aborting object creation."
  820. msgstr "O objeto não é um arquivo Gerber ou está vazio. Abortando a "
  821. "criação de objetos."
  822. #: FlatCAMApp.py:8941
  823. msgid "Opening Gerber"
  824. msgstr "Abrindo Gerber"
  825. #: FlatCAMApp.py:8952
  826. msgid " Open Gerber failed. Probable not a Gerber file."
  827. msgstr "Abrir Gerber falhou. Provavelmente não é um arquivo Gerber."
  828. #: FlatCAMApp.py:8987 flatcamTools/ToolPcbWizard.py:427
  829. msgid "This is not Excellon file."
  830. msgstr "Este não é um arquivo Excellon."
  831. #: FlatCAMApp.py:8991
  832. msgid "Cannot open file"
  833. msgstr "Não é possível abrir o arquivo"
  834. #: FlatCAMApp.py:9011 flatcamTools/ToolPDF.py:270
  835. #: flatcamTools/ToolPcbWizard.py:451
  836. msgid "No geometry found in file"
  837. msgstr "Nenhuma geometria encontrada no arquivo"
  838. #: FlatCAMApp.py:9014
  839. msgid "Opening Excellon."
  840. msgstr "Abrindo Excellon."
  841. #: FlatCAMApp.py:9021
  842. msgid "Open Excellon file failed. Probable not an Excellon file."
  843. msgstr "Falha ao abrir Excellon. Provavelmente não é um arquivo Excellon."
  844. #: FlatCAMApp.py:9060
  845. msgid "Failed to open"
  846. msgstr "Falha ao abrir"
  847. #: FlatCAMApp.py:9071
  848. msgid "This is not GCODE"
  849. msgstr "Não é G-Code"
  850. #: FlatCAMApp.py:9077
  851. msgid "Opening G-Code."
  852. msgstr "Abrindo G-Code."
  853. #: FlatCAMApp.py:9086
  854. msgid ""
  855. "Failed to create CNCJob Object. Probable not a GCode file.\n"
  856. " Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
  857. "processing"
  858. msgstr "Falha ao criar o objeto Trabalho CNC. Provavelmente não é um "
  859. "arquivo G-Code. \n"
  860. "A tentativa de criar um objeto de Trabalho CNC do arquivo G-Code falhou "
  861. "durante o processamento"
  862. #: FlatCAMApp.py:9128
  863. msgid "Failed to open config file"
  864. msgstr "Falha ao abrir o arquivo de configuração"
  865. #: FlatCAMApp.py:9149
  866. msgid "Loading Project ... Please Wait ..."
  867. msgstr "Carregando projeto ... Por favor aguarde ..."
  868. #: FlatCAMApp.py:9157 FlatCAMApp.py:9176
  869. msgid "Failed to open project file"
  870. msgstr "Falha ao abrir o arquivo de projeto"
  871. #: FlatCAMApp.py:9200
  872. msgid "Loading Project ... restoring"
  873. msgstr "Carregando projeto ... restaurando"
  874. #: FlatCAMApp.py:9210
  875. msgid "Project loaded from"
  876. msgstr "Projeto carregado de"
  877. #: FlatCAMApp.py:9316
  878. msgid "Available commands:\n"
  879. msgstr "Comandos disponíveis:\n"
  880. #: FlatCAMApp.py:9318
  881. msgid ""
  882. "\n"
  883. "\n"
  884. "Type help <command_name> for usage.\n"
  885. " Example: help open_gerber"
  886. msgstr ""
  887. "\n"
  888. "\n"
  889. "Digite help <nome_do_comando> para forma de uso.\n"
  890. " Exemplo: help open_gerber"
  891. #: FlatCAMApp.py:9468
  892. msgid "Shows list of commands."
  893. msgstr "Mostra a lista de comandos."
  894. #: FlatCAMApp.py:9526
  895. msgid "Failed to load recent item list."
  896. msgstr "Falha ao carregar a lista de itens recentes."
  897. #: FlatCAMApp.py:9534
  898. msgid "Failed to parse recent item list."
  899. msgstr "Falha ao analisar a lista de itens recentes."
  900. #: FlatCAMApp.py:9545
  901. msgid "Failed to load recent projects item list."
  902. msgstr "Falha ao carregar a lista de projetos recentes."
  903. #: FlatCAMApp.py:9553
  904. msgid "Failed to parse recent project item list."
  905. msgstr "Falha ao analisar a lista de projetos recentes."
  906. #: FlatCAMApp.py:9612 FlatCAMApp.py:9635
  907. msgid "Clear Recent files"
  908. msgstr "Limpar arquivos recentes"
  909. #: FlatCAMApp.py:9652 flatcamGUI/FlatCAMGUI.py:1006
  910. msgid "<b>Shortcut Key List</b>"
  911. msgstr "<b>Lista de Teclas de Atalho</b>"
  912. #: FlatCAMApp.py:9664
  913. #, python-brace-format
  914. msgid ""
  915. "\n"
  916. "<p><span style=\"font-size:{tsize}px\"><strong>Selected Tab - Choose an Item "
  917. "from Project Tab</strong></span></p>\n"
  918. "\n"
  919. "<p><span style=\"font-size:{fsize}px\"><strong>Details</strong>:<br />\n"
  920. "The normal flow when working in FlatCAM is the following:</span></p>\n"
  921. "\n"
  922. "<ol>\n"
  923. "\t<li><span style=\"font-size:{fsize}px\">Loat/Import a Gerber, Excellon, "
  924. "Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;"
  925. "s, toolbars, key shortcuts or even dragging and dropping the files on the "
  926. "GUI.<br />\n"
  927. "\t<br />\n"
  928. "\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
  929. "the project file, drag &amp; drop of the file into the FLATCAM GUI or "
  930. "through the menu/toolbar links offered within the app.</span><br />\n"
  931. "\t&nbsp;</li>\n"
  932. "\t<li><span style=\"font-size:{fsize}px\">Once an object is available in the "
  933. "Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
  934. "strong>(more simpler is to double click the object name in the Project Tab), "
  935. "<strong>SELECTED TAB </strong>will be updated with the object properties "
  936. "according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
  937. ">\n"
  938. "\t<br />\n"
  939. "\tIf the selection of the object is done on the canvas by single click "
  940. "instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
  941. "properties will be displayed into the Selected Tab. Alternatively, double "
  942. "clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
  943. "strong> and populate it even if it was out of focus.<br />\n"
  944. "\t<br />\n"
  945. "\tYou can change the parameters in this screen and the flow direction is "
  946. "like this:<br />\n"
  947. "\t<br />\n"
  948. "\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
  949. "Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
  950. "param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
  951. "strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
  952. "GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
  953. "span></li>\n"
  954. "</ol>\n"
  955. "\n"
  956. "<p><span style=\"font-size:{fsize}px\">A list of key shortcuts is available "
  957. "through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
  958. "through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
  959. "\n"
  960. " "
  961. msgstr ""
  962. "\n"
  963. "<p><span style=\"font-size:{tsize}px\"><strong>Aba Selecionado - Escolha um "
  964. "Item na Aba Projeto</strong></span></p>\n"
  965. "\n"
  966. "<p><span style=\"font-size:{fsize}px\"><strong>Detalhes</strong>:<br/>\n"
  967. "O fluxo normal de trabalho no FlatCAM é o seguinte:</span></p>\n"
  968. "\n"
  969. "<ol>\n"
  970. "\t<li><span style=\"font-size:{fsize}px\">Ler/Importar um arquivo Gerber, "
  971. "Excellon, G-Code, DXF, Imagem Raster ou SVG no FlatCAM usando os menus, "
  972. "barras de trabalho, teclas de atalho ou mesmo arrastando e soltando os "
  973. "arquivos na GUI.<br/>\n"
  974. "\t<br/>\n"
  975. "\tVocê pode também ler um <strong>projeto FlatCAM</strong> clicando duas "
  976. "vezes no arquivo de projeto, arrastando e soltando o arquivo na GUI do "
  977. "FlatCAM ou através dos links de menu/barra de ferramentas oferecidos dentro "
  978. "do aplicativo.</span><br/>\n"
  979. "\t&nbsp;</li>\n"
  980. "\t<li><span style=\"font-size:{fsize}px\">Uma vez que um objeto está "
  981. "disponível na <strong>Aba Projeto</strong>, selecione-o e então vá para a "
  982. "<strong>Aba Selecionado</strong> (ou clique duas vezes no nome do objeto na "
  983. "<strong>Aba Projeto</strong>). A <strong>Aba Selecionado</strong> será "
  984. "atualizada com as propriedades do objeto de acordo com o tipo: Gerber, "
  985. "Excellon, Geometria ou Trabalho CNC.<br/>\n"
  986. "\t<br/>\n"
  987. "\tSe a seleção do objeto for feita na tela com um único clique, e a "
  988. "<strong>Aba Selecionado</strong> estiver em foco, novamente as propriedades "
  989. "do objeto serão exibidas na <strong>Aba Selecionado</strong>. Como "
  990. "alternativa, clicar duas vezes no objeto na tela trará a <strong>Aba "
  991. "Selecionado</strong> e a preencherá mesmo que esteja fora de foco.<br/>\n"
  992. "\t<br/>\n"
  993. "\tVocê pode alterar os parâmetros nesta tela e o fluxo é assim:<br/>\n"
  994. "\t<br/>\n"
  995. "\t<strong>Objeto Gerber/Excellon</strong> -&gt; Alterar Parâmetros -&gt; "
  996. "Gerar Geometria -&gt;<strong> Objeto Geometria </strong>-&gt; Adicionar "
  997. "Ferramentas (alterar parâmetro na Aba Selecionado) -&gt; Gerar Trabalho CNC -"
  998. "&gt;<strong> Objeto Trabalho CNC </strong>-&gt; Verificar G-Code (com Editar "
  999. "Código CNC) e/ou acrescentar/pré-anexar ao G-Code (novamente, na "
  1000. "<strong>ABA SELECIONADO)&nbsp;</strong>-&gt; Salvar G-Code</span></li>\n"
  1001. "</ol>\n"
  1002. "\n"
  1003. "<p><span style=\"font-size:{fsize}px\">Uma lista de teclas de atalhos está "
  1004. "disponível em <strong>Ajuda -&gt; Lista de Teclas de Atalho</strong>&nbsp;ou "
  1005. "usando a sua tecla de atalho: <strong>F3</strong>.</span></p>\n"
  1006. "\n"
  1007. " "
  1008. #: FlatCAMApp.py:9743
  1009. msgid "Failed checking for latest version. Could not connect."
  1010. msgstr "Falha na verificação da versão mais recente. Não foi "
  1011. "possível conectar."
  1012. #: FlatCAMApp.py:9751
  1013. msgid "Could not parse information about latest version."
  1014. msgstr "Não foi possível analisar informações sobre a versão mais recente."
  1015. #: FlatCAMApp.py:9762
  1016. msgid "FlatCAM is up to date!"
  1017. msgstr "O FlatCAM está atualizado!"
  1018. #: FlatCAMApp.py:9767
  1019. msgid "Newer Version Available"
  1020. msgstr "Nova Versão Disponível"
  1021. #: FlatCAMApp.py:9768
  1022. msgid ""
  1023. "There is a newer version of FlatCAM available for download:\n"
  1024. "\n"
  1025. msgstr ""
  1026. "Existe uma versão mais nova do FlatCAM disponível para download:\n"
  1027. "\n"
  1028. #: FlatCAMApp.py:9770
  1029. msgid "info"
  1030. msgstr "info"
  1031. #: FlatCAMApp.py:9825
  1032. msgid "All plots disabled."
  1033. msgstr "Todos os gráficos desabilitados."
  1034. #: FlatCAMApp.py:9832
  1035. msgid "All non selected plots disabled."
  1036. msgstr "Todos os gráficos não selecionados desabilitados."
  1037. #: FlatCAMApp.py:9839
  1038. msgid "All plots enabled."
  1039. msgstr "Todos os gráficos habilitados."
  1040. #: FlatCAMApp.py:9846
  1041. msgid "Selected plots enabled..."
  1042. msgstr "Gráficos selecionados habilitados..."
  1043. #: FlatCAMApp.py:9855
  1044. msgid "Selected plots disabled..."
  1045. msgstr "Gráficos selecionados desabilitados..."
  1046. #: FlatCAMApp.py:9873
  1047. msgid "Enabling plots ..."
  1048. msgstr "Habilitando gráficos..."
  1049. #: FlatCAMApp.py:9907
  1050. msgid "Disabling plots ..."
  1051. msgstr "Desabilitando gráficos..."
  1052. #: FlatCAMApp.py:9929
  1053. msgid "Working ..."
  1054. msgstr "Trabalhando ..."
  1055. #: FlatCAMApp.py:9967
  1056. msgid "Saving FlatCAM Project"
  1057. msgstr "Salvando o Projeto FlatCAM"
  1058. #: FlatCAMApp.py:9989 FlatCAMApp.py:10024
  1059. msgid "Project saved to"
  1060. msgstr "Projeto salvo em"
  1061. #: FlatCAMApp.py:10008
  1062. msgid "Failed to verify project file"
  1063. msgstr "Falha ao verificar o arquivo do projeto"
  1064. #: FlatCAMApp.py:10008 FlatCAMApp.py:10016 FlatCAMApp.py:10027
  1065. msgid "Retry to save it."
  1066. msgstr "Tente salvá-lo novamente."
  1067. #: FlatCAMApp.py:10016 FlatCAMApp.py:10027
  1068. msgid "Failed to parse saved project file"
  1069. msgstr "Falha ao analisar o arquivo de projeto salvo"
  1070. #: FlatCAMApp.py:10238
  1071. msgid "The user requested a graceful exit of the current task."
  1072. msgstr "O usuário solicitou uma saída normal da tarefa atual."
  1073. #: FlatCAMObj.py:213
  1074. #, python-brace-format
  1075. msgid "[success] Name changed from {old} to {new}"
  1076. msgstr "Nome alterado de {old} para {new}"
  1077. #: FlatCAMObj.py:222
  1078. msgid "Offsetting..."
  1079. msgstr "Deslocando..."
  1080. #: FlatCAMObj.py:237
  1081. msgid "Scaling..."
  1082. msgstr "Dimensionando..."
  1083. #: FlatCAMObj.py:253
  1084. msgid "Skewing..."
  1085. msgstr "Inclinando..."
  1086. #: FlatCAMObj.py:600 FlatCAMObj.py:2293 FlatCAMObj.py:3571 FlatCAMObj.py:5837
  1087. msgid "<span style=\"color:green;\"><b>Basic</b></span>"
  1088. msgstr "<span style=\"color:green;\"><b>Básico</b></span>"
  1089. #: FlatCAMObj.py:613 FlatCAMObj.py:2309 FlatCAMObj.py:3593 FlatCAMObj.py:5843
  1090. msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
  1091. msgstr "<span style=\"color:red;\"><b>Avançado</b></span>"
  1092. #: FlatCAMObj.py:802
  1093. msgid "Buffering solid geometry"
  1094. msgstr ""
  1095. #: FlatCAMObj.py:805 flatcamGUI/FlatCAMGUI.py:4322
  1096. #: flatcamTools/ToolNonCopperClear.py:1531
  1097. #: flatcamTools/ToolNonCopperClear.py:1625
  1098. #: flatcamTools/ToolNonCopperClear.py:1637
  1099. #: flatcamTools/ToolNonCopperClear.py:1864
  1100. #: flatcamTools/ToolNonCopperClear.py:1956
  1101. #: flatcamTools/ToolNonCopperClear.py:1968
  1102. msgid "Buffering"
  1103. msgstr ""
  1104. #: FlatCAMObj.py:811
  1105. msgid "Done"
  1106. msgstr "Pronto"
  1107. #: FlatCAMObj.py:1071 FlatCAMObj.py:1178
  1108. #: flatcamTools/ToolNonCopperClear.py:1560
  1109. #: flatcamTools/ToolNonCopperClear.py:1888
  1110. msgid "Isolation geometry could not be generated."
  1111. msgstr "A geometria de isolação não pôde ser gerada."
  1112. #: FlatCAMObj.py:1108 FlatCAMObj.py:3261 FlatCAMObj.py:3528 FlatCAMObj.py:3804
  1113. msgid "Rough"
  1114. msgstr "Desbaste"
  1115. #: FlatCAMObj.py:1133 FlatCAMObj.py:1201
  1116. msgid "Isolation geometry created"
  1117. msgstr "Geometria de isolação criada"
  1118. #: FlatCAMObj.py:1386
  1119. msgid "Plotting Apertures"
  1120. msgstr "Mostrando Aberturas"
  1121. #: FlatCAMObj.py:2121 flatcamEditors/FlatCAMExcEditor.py:2309
  1122. msgid "Total Drills"
  1123. msgstr "Total de Furos"
  1124. #: FlatCAMObj.py:2153 flatcamEditors/FlatCAMExcEditor.py:2341
  1125. msgid "Total Slots"
  1126. msgstr "Total de Fendas"
  1127. #: FlatCAMObj.py:2367 FlatCAMObj.py:3644 FlatCAMObj.py:3938 FlatCAMObj.py:4129
  1128. #: FlatCAMObj.py:4140 FlatCAMObj.py:4258 FlatCAMObj.py:4461 FlatCAMObj.py:4668
  1129. #: FlatCAMObj.py:4907 FlatCAMObj.py:5405
  1130. #: flatcamEditors/FlatCAMExcEditor.py:2416
  1131. #: flatcamEditors/FlatCAMGeoEditor.py:1080
  1132. #: flatcamEditors/FlatCAMGeoEditor.py:1117
  1133. #: flatcamEditors/FlatCAMGeoEditor.py:1138
  1134. #: flatcamEditors/FlatCAMGeoEditor.py:1159
  1135. #: flatcamEditors/FlatCAMGeoEditor.py:1196
  1136. #: flatcamEditors/FlatCAMGeoEditor.py:1228
  1137. #: flatcamEditors/FlatCAMGeoEditor.py:1249
  1138. #: flatcamEditors/FlatCAMGrbEditor.py:5283
  1139. #: flatcamEditors/FlatCAMGrbEditor.py:5326
  1140. #: flatcamEditors/FlatCAMGrbEditor.py:5353
  1141. #: flatcamEditors/FlatCAMGrbEditor.py:5380
  1142. #: flatcamEditors/FlatCAMGrbEditor.py:5421
  1143. #: flatcamEditors/FlatCAMGrbEditor.py:5459
  1144. #: flatcamEditors/FlatCAMGrbEditor.py:5485 flatcamTools/ToolCalculators.py:311
  1145. #: flatcamTools/ToolCalculators.py:322 flatcamTools/ToolCalculators.py:334
  1146. #: flatcamTools/ToolCalculators.py:349 flatcamTools/ToolCalculators.py:362
  1147. #: flatcamTools/ToolCalculators.py:376 flatcamTools/ToolCalculators.py:387
  1148. #: flatcamTools/ToolCalculators.py:398 flatcamTools/ToolCalculators.py:409
  1149. #: flatcamTools/ToolFilm.py:248 flatcamTools/ToolFilm.py:254
  1150. #: flatcamTools/ToolNonCopperClear.py:862
  1151. #: flatcamTools/ToolNonCopperClear.py:873
  1152. #: flatcamTools/ToolNonCopperClear.py:883
  1153. #: flatcamTools/ToolNonCopperClear.py:901
  1154. #: flatcamTools/ToolNonCopperClear.py:980
  1155. #: flatcamTools/ToolNonCopperClear.py:1062
  1156. #: flatcamTools/ToolNonCopperClear.py:1341
  1157. #: flatcamTools/ToolNonCopperClear.py:1371 flatcamTools/ToolPaint.py:699
  1158. #: flatcamTools/ToolPaint.py:774 flatcamTools/ToolPaint.py:922
  1159. #: flatcamTools/ToolPaint.py:976 flatcamTools/ToolPaint.py:1225
  1160. #: flatcamTools/ToolPaint.py:1496 flatcamTools/ToolPaint.py:1966
  1161. #: flatcamTools/ToolPanelize.py:397 flatcamTools/ToolPanelize.py:409
  1162. #: flatcamTools/ToolPanelize.py:422 flatcamTools/ToolPanelize.py:435
  1163. #: flatcamTools/ToolPanelize.py:447 flatcamTools/ToolPanelize.py:458
  1164. #: flatcamTools/ToolSolderPaste.py:764 flatcamTools/ToolSolderPaste.py:839
  1165. #: flatcamTools/ToolTransform.py:474 flatcamTools/ToolTransform.py:508
  1166. #: flatcamTools/ToolTransform.py:526 flatcamTools/ToolTransform.py:544
  1167. #: flatcamTools/ToolTransform.py:578 flatcamTools/ToolTransform.py:607
  1168. #: flatcamTools/ToolTransform.py:625
  1169. msgid "Wrong value format entered, use a number."
  1170. msgstr "Formato incorreto, use um número."
  1171. #: FlatCAMObj.py:2608 FlatCAMObj.py:2698 FlatCAMObj.py:2819
  1172. msgid "Please select one or more tools from the list and try again."
  1173. msgstr "Selecione uma ou mais ferramentas da lista e tente novamente."
  1174. #: FlatCAMObj.py:2614
  1175. msgid "Milling tool for DRILLS is larger than hole size. Cancelled."
  1176. msgstr "A ferramenta BROCA é maior que o tamanho do furo. Cancelado."
  1177. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1178. msgid "Tool_nr"
  1179. msgstr "Ferramenta_nr"
  1180. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1181. #: flatcamEditors/FlatCAMExcEditor.py:1500
  1182. #: flatcamEditors/FlatCAMExcEditor.py:3133 flatcamGUI/ObjectUI.py:613
  1183. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  1184. #: flatcamTools/ToolPcbWizard.py:76 flatcamTools/ToolSolderPaste.py:81
  1185. msgid "Diameter"
  1186. msgstr "Diâmetro"
  1187. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1188. msgid "Drills_Nr"
  1189. msgstr "Furo_Nr"
  1190. #: FlatCAMObj.py:2627 FlatCAMObj.py:2720 FlatCAMObj.py:2838
  1191. msgid "Slots_Nr"
  1192. msgstr "Fenda_Nr"
  1193. #: FlatCAMObj.py:2707
  1194. msgid "Milling tool for SLOTS is larger than hole size. Cancelled."
  1195. msgstr "A ferramenta fresa para FENDAS é maior que o tamanho do furo. Cancelado."
  1196. #: FlatCAMObj.py:2879 FlatCAMObj.py:4559 FlatCAMObj.py:4777 FlatCAMObj.py:5100
  1197. msgid ""
  1198. "Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth"
  1199. "\"]"
  1200. msgstr ""
  1201. "Valor com formato incorreto para self.defaults[\"z_pdepth\"] ou "
  1202. "self.options[\"z_pdepth\"]"
  1203. #: FlatCAMObj.py:2890 FlatCAMObj.py:4570 FlatCAMObj.py:5111
  1204. msgid ""
  1205. "Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1206. "options[\"feedrate_probe\"]"
  1207. msgstr ""
  1208. "Valor com formato incorreto para self.defaults[\"feedrate_probe"
  1209. "\"] ou self.options[\"feedrate_probe\"]"
  1210. #: FlatCAMObj.py:2920 FlatCAMObj.py:4987 FlatCAMObj.py:4993 FlatCAMObj.py:5145
  1211. msgid "Generating CNC Code"
  1212. msgstr "Gerando Código CNC"
  1213. #: FlatCAMObj.py:2946 camlib.py:5658 camlib.py:6632
  1214. msgid ""
  1215. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1216. "y) \n"
  1217. "but now there is only one value, not two. "
  1218. msgstr ""
  1219. "O campo Troca de Ferramentas X, Y em Editar -> Preferências deve "
  1220. "estar no formato (x, y).\n"
  1221. "Agora existe apenas um valor, não dois."
  1222. #: FlatCAMObj.py:3261 FlatCAMObj.py:4180 FlatCAMObj.py:4181 FlatCAMObj.py:4190
  1223. msgid "Iso"
  1224. msgstr "Isolação"
  1225. #: FlatCAMObj.py:3261
  1226. msgid "Finish"
  1227. msgstr "Acabamento"
  1228. #: FlatCAMObj.py:3564 flatcamGUI/FlatCAMGUI.py:544 flatcamGUI/FlatCAMGUI.py:746
  1229. #: flatcamGUI/FlatCAMGUI.py:1718 flatcamGUI/FlatCAMGUI.py:2092
  1230. #: flatcamGUI/ObjectUI.py:1061
  1231. msgid "Copy"
  1232. msgstr "Copiar"
  1233. #: FlatCAMObj.py:3775
  1234. msgid "Please enter the desired tool diameter in Float format."
  1235. msgstr "Por favor, insira o diâmetro da ferramenta desejada no formato "
  1236. "Flutuante."
  1237. #: FlatCAMObj.py:3849
  1238. msgid "Tool added in Tool Table."
  1239. msgstr "Ferramenta adicionada na Tabela de Ferramentas."
  1240. #: FlatCAMObj.py:3853
  1241. msgid "Default Tool added. Wrong value format entered."
  1242. msgstr "Ferramenta padrão adicionada. Valor inserico com formato incorreto."
  1243. #: FlatCAMObj.py:3886 FlatCAMObj.py:3895
  1244. msgid "Failed. Select a tool to copy."
  1245. msgstr "Falhou. Selecione uma ferramenta para copiar."
  1246. #: FlatCAMObj.py:3923
  1247. msgid "Tool was copied in Tool Table."
  1248. msgstr "A ferramenta foi copiada na tabela de ferramentas."
  1249. #: FlatCAMObj.py:3953
  1250. msgid "Tool was edited in Tool Table."
  1251. msgstr "A ferramenta foi editada na Tabela de Ferramentas."
  1252. #: FlatCAMObj.py:3982 FlatCAMObj.py:3991
  1253. msgid "Failed. Select a tool to delete."
  1254. msgstr "Falhou. Selecione uma ferramenta para excluir."
  1255. #: FlatCAMObj.py:4014
  1256. msgid "Tool was deleted in Tool Table."
  1257. msgstr "A ferramenta foi eliminada da Tabela de Ferramentas."
  1258. #: FlatCAMObj.py:4444
  1259. #, python-format
  1260. msgid "This Geometry can't be processed because it is %s geometry."
  1261. msgstr "Esta Geometria não pode ser processada porque é %s geometria."
  1262. #: FlatCAMObj.py:4486
  1263. msgid "Failed. No tool selected in the tool table ..."
  1264. msgstr "Falhou. Nenhuma ferramenta selecionada na tabela de ferramentas ..."
  1265. #: FlatCAMObj.py:4524
  1266. msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
  1267. msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() -->"
  1268. #: FlatCAMObj.py:4673 FlatCAMObj.py:4913
  1269. msgid ""
  1270. "Tool Offset is selected in Tool Table but no value is provided.\n"
  1271. "Add a Tool Offset or change the Offset Type."
  1272. msgstr ""
  1273. "Deslocamento de Ferramenta selecionado na Tabela de Ferramentas, mas nenhum "
  1274. "valor foi fornecido.\n"
  1275. "Adicione um Deslocamento de Ferramenta ou altere o Tipo de Deslocamento."
  1276. #: FlatCAMObj.py:4724 FlatCAMObj.py:4954
  1277. msgid "G-Code parsing in progress..."
  1278. msgstr "Análisando o G-Code..."
  1279. #: FlatCAMObj.py:4726 FlatCAMObj.py:4956
  1280. msgid "G-Code parsing finished..."
  1281. msgstr "Análise do G-Code finalisada..."
  1282. #: FlatCAMObj.py:4734 FlatCAMObj.py:4966 FlatCAMObj.py:5138
  1283. msgid "Finished G-Code processing..."
  1284. msgstr "Processamento do G-Code finalisado..."
  1285. #: FlatCAMObj.py:4736 FlatCAMObj.py:4968
  1286. #, python-format
  1287. msgid "G-Code processing failed with error: %s"
  1288. msgstr "Processamento do G-Code falhou com erro: %s"
  1289. #: FlatCAMObj.py:4788
  1290. msgid ""
  1291. " Wrong value format for self.defaults[\"feedrate_probe\"] or self."
  1292. "options[\"feedrate_probe\"]"
  1293. msgstr ""
  1294. " Valor com formato incorreto para self.defaults[\"feedrate_probe\"] ou self."
  1295. "options[\"feedrate_probe\"]"
  1296. #: FlatCAMObj.py:4799 flatcamTools/ToolSolderPaste.py:1187
  1297. msgid "Cancelled. Empty file, it has no geometry"
  1298. msgstr "Cancelado. Arquivo vazio, não tem geometria"
  1299. #: FlatCAMObj.py:4990 FlatCAMObj.py:4996 FlatCAMObj.py:5148
  1300. msgid "CNCjob created"
  1301. msgstr ""
  1302. #: FlatCAMObj.py:5180 FlatCAMObj.py:5190 camlib.py:3581 camlib.py:3591
  1303. msgid "Scale factor has to be a number: integer or float."
  1304. msgstr "O fator de escala deve ser um número: inteiro ou flutuante."
  1305. #: FlatCAMObj.py:5264
  1306. msgid "Geometry Scale done."
  1307. msgstr "Redimensionamento de geometria feita."
  1308. #: FlatCAMObj.py:5281 camlib.py:3685
  1309. msgid ""
  1310. "An (x,y) pair of values are needed. Probable you entered only one value in "
  1311. "the Offset field."
  1312. msgstr ""
  1313. "Um par (x,y) de valores é necessário. Provavelmente você "
  1314. "digitou apenas um valor no campo Deslocamento."
  1315. #: FlatCAMObj.py:5335
  1316. msgid "Geometry Offset done."
  1317. msgstr "Deslocamento de Geometria feito."
  1318. #: FlatCAMObj.py:5364
  1319. msgid ""
  1320. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1321. "y)\n"
  1322. "but now there is only one value, not two."
  1323. msgstr ""
  1324. #: FlatCAMObj.py:5905 FlatCAMObj.py:5910 flatcamTools/ToolSolderPaste.py:1393
  1325. msgid "Export Machine Code ..."
  1326. msgstr "Exportar Código da Máquina ..."
  1327. #: FlatCAMObj.py:5916 flatcamTools/ToolSolderPaste.py:1397
  1328. msgid "Export Machine Code cancelled ..."
  1329. msgstr "Exportar código da máquina cancelado ..."
  1330. #: FlatCAMObj.py:5934
  1331. msgid "Machine Code file saved to"
  1332. msgstr "Arquivo G-Code salvo em"
  1333. #: FlatCAMObj.py:5958
  1334. msgid "FlatCAMCNNJob.on_edit_code_click() -->"
  1335. msgstr "FlatCAMCNNJob.on_edit_code_click() -->"
  1336. #: FlatCAMObj.py:5966
  1337. msgid "Loaded Machine Code into Code Editor"
  1338. msgstr "G-Code aberto no Editor de Códigos"
  1339. #: FlatCAMObj.py:6078
  1340. msgid "This CNCJob object can't be processed because it is a"
  1341. msgstr "Este objeto Trabalho CNC não pode ser processado porque é um"
  1342. #: FlatCAMObj.py:6080
  1343. msgid "CNCJob object"
  1344. msgstr "objeto de Trabalho CNC"
  1345. #: FlatCAMObj.py:6132
  1346. msgid "G-code does not have a units code: either G20 or G21"
  1347. msgstr "O G-Code não possui um código de unidade: G20 ou G21"
  1348. #: FlatCAMObj.py:6144
  1349. msgid "Cancelled. The Toolchange Custom code is enabled but it's empty."
  1350. msgstr "Cancelado. O código personalizado para Troca de Ferramentas está "
  1351. "ativado, mas está vazio."
  1352. #: FlatCAMObj.py:6150
  1353. msgid "Toolchange G-code was replaced by a custom code."
  1354. msgstr "O G-Code para Troca de Ferramentas foi substituído por um código personalizado."
  1355. #: FlatCAMObj.py:6177
  1356. msgid "Saved to"
  1357. msgstr "Salvo em"
  1358. #: FlatCAMObj.py:6187 FlatCAMObj.py:6197
  1359. msgid ""
  1360. "The used postprocessor file has to have in it's name: 'toolchange_custom'"
  1361. msgstr ""
  1362. "O arquivo de pós-processamento deve ter em seu nome: 'toolchange_custom'"
  1363. #: FlatCAMObj.py:6201
  1364. msgid "There is no postprocessor file."
  1365. msgstr "Não há arquivo de pós-processamento."
  1366. #: FlatCAMProcess.py:172
  1367. msgid "processes running."
  1368. msgstr "processos executando."
  1369. #: FlatCAMTranslation.py:91
  1370. msgid "The application will restart."
  1371. msgstr "O aplicativo reiniciará."
  1372. #: FlatCAMTranslation.py:92
  1373. #, python-format
  1374. msgid "Are you sure do you want to change the current language to %s?"
  1375. msgstr "Você tem certeza de que quer alterar o idioma para %s?"
  1376. #: FlatCAMTranslation.py:94
  1377. msgid "Apply Language ..."
  1378. msgstr "Aplicar o Idioma ..."
  1379. #: ObjectCollection.py:426
  1380. #, python-brace-format
  1381. msgid "Object renamed from <b>{old}</b> to <b>{new}</b>"
  1382. msgstr "Objeto renomeado de <b>{old}</b> para <b>{new}</b>"
  1383. #: ObjectCollection.py:766
  1384. msgid "Cause of error"
  1385. msgstr "Motivo do erro"
  1386. #: camlib.py:215
  1387. msgid "self.solid_geometry is neither BaseGeometry or list."
  1388. msgstr "self.solid_geometry não é nem BaseGeometry nem lista."
  1389. #: camlib.py:1522
  1390. msgid "Object was mirrored"
  1391. msgstr "O objeto foi espelhado"
  1392. #: camlib.py:1525
  1393. msgid "Failed to mirror. No object selected"
  1394. msgstr "Falha ao espelhar. Nenhum objeto selecionado"
  1395. #: camlib.py:1594
  1396. msgid "Object was rotated"
  1397. msgstr "O objeto foi rotacionado"
  1398. #: camlib.py:1597
  1399. msgid "Failed to rotate. No object selected"
  1400. msgstr "Falha ao girar. Nenhum objeto selecionado"
  1401. #: camlib.py:1665
  1402. msgid "Object was skewed"
  1403. msgstr "O objeto foi inclinado"
  1404. #: camlib.py:1668
  1405. msgid "Failed to skew. No object selected"
  1406. msgstr "Falha ao inclinar. Nenhum objeto selecionado"
  1407. #: camlib.py:2443
  1408. msgid "Gerber processing. Parsing"
  1409. msgstr "Processando Gerber. Analisando."
  1410. #: camlib.py:2443
  1411. msgid "lines"
  1412. msgstr "linhas"
  1413. #: camlib.py:2942 camlib.py:3030
  1414. msgid "Coordinates missing, line ignored"
  1415. msgstr "Coordenadas faltando, linha ignorada"
  1416. #: camlib.py:2944 camlib.py:3032
  1417. msgid "GERBER file might be CORRUPT. Check the file !!!"
  1418. msgstr "O arquivo GERBER pode estar CORROMPIDO. Verifique o arquivo !!!"
  1419. #: camlib.py:2994
  1420. msgid ""
  1421. "Region does not have enough points. File will be processed but there are "
  1422. "parser errors. Line number"
  1423. msgstr ""
  1424. "A região não possui pontos suficientes. O arquivo será processado, "
  1425. "mas há erros na análise. Número da linha"
  1426. #: camlib.py:3364
  1427. msgid "Gerber processing. Joining"
  1428. msgstr "Processando Gerber. Unindo."
  1429. #: camlib.py:3364
  1430. msgid "polygons"
  1431. msgstr "polígonos"
  1432. #: camlib.py:3399
  1433. msgid "Gerber Line"
  1434. msgstr "Linha Gerber"
  1435. #: camlib.py:3399
  1436. msgid "Gerber Line Content"
  1437. msgstr "Conteúdo"
  1438. #: camlib.py:3401
  1439. msgid "Gerber Parser ERROR"
  1440. msgstr "Erro de Análise"
  1441. #: camlib.py:3649
  1442. msgid "Gerber Scale done."
  1443. msgstr "Redimensionamento Gerber pronto."
  1444. #: camlib.py:3739
  1445. msgid "Gerber Offset done."
  1446. msgstr "Deslocamento Gerber pronto."
  1447. #: camlib.py:3816
  1448. msgid "Gerber Mirror done."
  1449. msgstr "Espelhamento Gerber pronto."
  1450. #: camlib.py:3885
  1451. msgid "Gerber Skew done."
  1452. msgstr "Inclinação Gerber pronta."
  1453. #: camlib.py:3946
  1454. msgid "Gerber Rotate done."
  1455. msgstr "Rotação Gerber pronta."
  1456. #: camlib.py:4233
  1457. msgid "This is GCODE mark"
  1458. msgstr "Esta é a marca G-CODE"
  1459. #: camlib.py:4349
  1460. msgid ""
  1461. "No tool diameter info's. See shell.\n"
  1462. "A tool change event: T"
  1463. msgstr ""
  1464. #: camlib.py:4352
  1465. msgid ""
  1466. "was found but the Excellon file have no informations regarding the tool "
  1467. "diameters therefore the application will try to load it by using some 'fake' "
  1468. "diameters.\n"
  1469. "The user needs to edit the resulting Excellon object and change the "
  1470. "diameters to reflect the real diameters."
  1471. msgstr ""
  1472. "foi encontrado mas o arquivo Excellon não possui informações sobre os diâmetros "
  1473. "da ferramenta. \nO aplicativo tentará carregá-lo usando alguns diâmetros 'falsos'./nO usuário precisa editar o objeto Excellon resultante e\n"
  1474. "alterar os diâmetros para os valores reais."
  1475. #: camlib.py:4807
  1476. #, python-brace-format
  1477. msgid ""
  1478. "{e_code} Excellon Parser error.\n"
  1479. "Parsing Failed. Line {l_nr}: {line}\n"
  1480. msgstr ""
  1481. "{e_code} Erro do Analisador Excellon.\n"
  1482. "Análise falhou. Linha {l_nr}: {line}\n"
  1483. #: camlib.py:4890
  1484. msgid ""
  1485. "Excellon.create_geometry() -> a drill location was skipped due of not having "
  1486. "a tool associated.\n"
  1487. "Check the resulting GCode."
  1488. msgstr ""
  1489. "Excellon.create_geometry () -> um furo foi ignorado por não ter "
  1490. "uma ferramenta associada.\n"
  1491. "Verifique o G-Code resultante."
  1492. #: camlib.py:5564
  1493. msgid "There is no such parameter"
  1494. msgstr "Não existe esse parâmetro"
  1495. #: camlib.py:5635
  1496. msgid ""
  1497. "The Cut Z parameter has positive value. It is the depth value to drill into "
  1498. "material.\n"
  1499. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1500. "therefore the app will convert the value to negative. Check the resulting "
  1501. "CNC code (Gcode etc)."
  1502. msgstr ""
  1503. "O parâmetro Profundidade de Corte está positivo. Este valor é a\n"
  1504. "profundidade para cortar o material, e deve ser negativo. Supondo que seja\n"
  1505. "um erro de digitação, o aplicativo converterá o valor para negativo.\n"
  1506. "Verifique o código CNC resultante (G-Code, etc.)."
  1507. #: camlib.py:5643 camlib.py:6316 camlib.py:6658
  1508. msgid "The Cut Z parameter is zero. There will be no cut, skipping file"
  1509. msgstr "O parâmetro Profundidade de Corte é zero. Não haverá corte, "
  1510. "ignorando arquivo"
  1511. #: camlib.py:5695
  1512. msgid "Creating a list of points to drill..."
  1513. msgstr "Criando uma lista de pontos para furar..."
  1514. #: camlib.py:5778
  1515. msgid "Starting G-Code"
  1516. msgstr "Iniciando o G-Code"
  1517. #: camlib.py:5874 camlib.py:6020 camlib.py:6126 camlib.py:6425 camlib.py:6767
  1518. msgid "Starting G-Code for tool with diameter"
  1519. msgstr "Iniciando o G-Code para ferramenta com diâmetro"
  1520. #: camlib.py:5931 camlib.py:6077 camlib.py:6184
  1521. msgid "G91 coordinates not implemented"
  1522. msgstr "coordenadas G91 não implementadas"
  1523. #: camlib.py:5937 camlib.py:6083 camlib.py:6190
  1524. msgid "The loaded Excellon file has no drills"
  1525. msgstr "O arquivo Excellon carregado não tem brocas"
  1526. #: camlib.py:6089
  1527. msgid "Wrong optimization type selected."
  1528. msgstr "Tipo de otimização incorreto selecionado."
  1529. #: camlib.py:6212
  1530. msgid "Finished G-Code generation..."
  1531. msgstr "Geração de G-Code concluída..."
  1532. #: camlib.py:6289
  1533. msgid ""
  1534. "The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, "
  1535. "y) \n"
  1536. "but now there is only one value, not two."
  1537. msgstr ""
  1538. #: camlib.py:6302 camlib.py:6644
  1539. msgid ""
  1540. "Cut_Z parameter is None or zero. Most likely a bad combinations of other "
  1541. "parameters."
  1542. msgstr ""
  1543. "Profundidade de Corte está vazio ou é zero. Provavelmente é uma "
  1544. "combinação ruim de outros parâmetros."
  1545. #: camlib.py:6308 camlib.py:6650
  1546. msgid ""
  1547. "The Cut Z parameter has positive value. It is the depth value to cut into "
  1548. "material.\n"
  1549. "The Cut Z parameter needs to have a negative value, assuming it is a typo "
  1550. "therefore the app will convert the value to negative.Check the resulting CNC "
  1551. "code (Gcode etc)."
  1552. msgstr ""
  1553. "O parâmetro Profundidade de Corte está positivo. Este valor é a\n"
  1554. "profundidade para cortar o material, e deve ser negativo. Supondo que seja\n"
  1555. "um erro de digitação, o aplicativo converterá o valor para negativo.\n"
  1556. "Verifique o código CNC resultante (G-Code, etc.)."
  1557. #: camlib.py:6326 camlib.py:6664
  1558. msgid "Travel Z parameter is None or zero."
  1559. msgstr "O parâmetro Altura de Deslocamento Z é Nulo ou zero."
  1560. #: camlib.py:6331 camlib.py:6669
  1561. msgid ""
  1562. "The Travel Z parameter has negative value. It is the height value to travel "
  1563. "between cuts.\n"
  1564. "The Z Travel parameter needs to have a positive value, assuming it is a typo "
  1565. "therefore the app will convert the value to positive.Check the resulting CNC "
  1566. "code (Gcode etc)."
  1567. msgstr ""
  1568. "O parâmetro Altura de Deslocamento tem valor negativo. Este valor\n"
  1569. "é a altura nos deslocamentos entre os cortes, e deve ser positivo. Supondo\n"
  1570. "que seja um erro de digitação, o aplicativo converterá o valor para positivo.\n"
  1571. "Verifique o código CNC resultante (G-Code, etc.)."
  1572. #: camlib.py:6339 camlib.py:6677
  1573. msgid "The Z Travel parameter is zero. This is dangerous, skipping file"
  1574. msgstr "O parâmetro Altura de Deslocamento é zero. Isso é perigoso, "
  1575. "ignorando arquivo"
  1576. #: camlib.py:6354 camlib.py:6696
  1577. msgid "Indexing geometry before generating G-Code..."
  1578. msgstr "Indexando geometrias antes de gerar o G-Code..."
  1579. #: camlib.py:6408 camlib.py:6753
  1580. msgid "Starting G-Code..."
  1581. msgstr "Iniciando o G-Code..."
  1582. #: camlib.py:6495 camlib.py:6837
  1583. msgid "Finished G-Code generation"
  1584. msgstr "Geração de G-Code concluída..."
  1585. #: camlib.py:6497
  1586. msgid "paths traced"
  1587. msgstr "caminho traçado"
  1588. #: camlib.py:6532
  1589. msgid "Expected a Geometry, got"
  1590. msgstr "Esperando uma geometria, recebido"
  1591. #: camlib.py:6539
  1592. msgid ""
  1593. "Trying to generate a CNC Job from a Geometry object without solid_geometry."
  1594. msgstr ""
  1595. Tentando gerar um trabalho CNC a partir de um objeto Geometria "
  1596. "sem solid_geometry."
  1597. #: camlib.py:6578
  1598. #, python-format
  1599. msgid "[ERROR_NOTCL] %s"
  1600. msgstr "[ERROR_NOTCL] %s"
  1601. #: camlib.py:6839
  1602. msgid " paths traced."
  1603. msgstr " caminhos traçados."
  1604. #: camlib.py:6868
  1605. msgid "There is no tool data in the SolderPaste geometry."
  1606. msgstr "Não há dados de ferramenta na geometria de Pasta de Solda."
  1607. #: camlib.py:6955
  1608. msgid "Finished SolderPste G-Code generation"
  1609. msgstr "Geração de G-Code para Pasta de Solda concluída"
  1610. #: camlib.py:6957
  1611. msgid "paths traced."
  1612. msgstr "caminhos traçados."
  1613. #: camlib.py:7430 camlib.py:7708 camlib.py:7811 camlib.py:7858
  1614. msgid "G91 coordinates not implemented ..."
  1615. msgstr "Coordenadas G91 não implementadas..."
  1616. #: flatcamEditors/FlatCAMExcEditor.py:45 flatcamEditors/FlatCAMExcEditor.py:70
  1617. #: flatcamEditors/FlatCAMExcEditor.py:152
  1618. #: flatcamEditors/FlatCAMExcEditor.py:356
  1619. #: flatcamEditors/FlatCAMExcEditor.py:548
  1620. #: flatcamEditors/FlatCAMGrbEditor.py:238
  1621. #: flatcamEditors/FlatCAMGrbEditor.py:243
  1622. msgid "Click to place ..."
  1623. msgstr "Clique para colocar ..."
  1624. #: flatcamEditors/FlatCAMExcEditor.py:54
  1625. msgid "To add a drill first select a tool"
  1626. msgstr "Para adicionar uma broca, primeiro selecione uma ferramenta"
  1627. #: flatcamEditors/FlatCAMExcEditor.py:117
  1628. msgid "Done. Drill added."
  1629. msgstr "Feito. Broca adicionada."
  1630. #: flatcamEditors/FlatCAMExcEditor.py:160
  1631. msgid "To add an Drill Array first select a tool in Tool Table"
  1632. msgstr "Para adicionar um Matriz de Brocas, primeiro selecione uma "
  1633. "ferramenta na Tabela de Ferramentas"
  1634. #: flatcamEditors/FlatCAMExcEditor.py:176
  1635. #: flatcamEditors/FlatCAMExcEditor.py:386
  1636. #: flatcamEditors/FlatCAMExcEditor.py:596
  1637. #: flatcamEditors/FlatCAMExcEditor.py:1098
  1638. #: flatcamEditors/FlatCAMExcEditor.py:1123
  1639. #: flatcamEditors/FlatCAMGrbEditor.py:462
  1640. #: flatcamEditors/FlatCAMGrbEditor.py:1859
  1641. #: flatcamEditors/FlatCAMGrbEditor.py:1887
  1642. msgid "Click on target location ..."
  1643. msgstr "Clique no local de destino ..."
  1644. #: flatcamEditors/FlatCAMExcEditor.py:193
  1645. msgid "Click on the Drill Circular Array Start position"
  1646. msgstr "Clique na posição inicial da Matriz Circular de Brocas"
  1647. #: flatcamEditors/FlatCAMExcEditor.py:215
  1648. #: flatcamEditors/FlatCAMExcEditor.py:635
  1649. #: flatcamEditors/FlatCAMGrbEditor.py:505
  1650. msgid "The value is not Float. Check for comma instead of dot separator."
  1651. msgstr "O valor não é flutuante. Verifique se há uma vírgula em vez do ponto "
  1652. "no separador decimal."
  1653. #: flatcamEditors/FlatCAMExcEditor.py:219
  1654. msgid "The value is mistyped. Check the value"
  1655. msgstr "O valor foi digitado incorretamente. Verifique o valor"
  1656. #: flatcamEditors/FlatCAMExcEditor.py:318
  1657. msgid "Too many drills for the selected spacing angle."
  1658. msgstr "Muitas brocas para o ângulo de espaçamento selecionado."
  1659. #: flatcamEditors/FlatCAMExcEditor.py:336
  1660. msgid "Done. Drill Array added."
  1661. msgstr "Matriz de Brocas adicionada."
  1662. #: flatcamEditors/FlatCAMExcEditor.py:365
  1663. msgid "To add a slot first select a tool"
  1664. msgstr "Para adicionar um ranhura, primeiro selecione uma ferramenta"
  1665. #: flatcamEditors/FlatCAMExcEditor.py:423
  1666. #: flatcamEditors/FlatCAMExcEditor.py:430
  1667. #: flatcamEditors/FlatCAMExcEditor.py:701
  1668. #: flatcamEditors/FlatCAMExcEditor.py:708
  1669. msgid "Value is missing or wrong format. Add it and retry."
  1670. msgstr "Valor está faltando ou formato errado. Adicione e tente novamente."
  1671. #: flatcamEditors/FlatCAMExcEditor.py:529
  1672. msgid "Done. Adding Slot completed."
  1673. msgstr "Feito. Ranhura adicionada."
  1674. #: flatcamEditors/FlatCAMExcEditor.py:556
  1675. msgid "To add an Slot Array first select a tool in Tool Table"
  1676. msgstr "Para adicionar uma matriz de ranhuras, primeiro selecione "
  1677. "uma ferramenta na Tabela de Ferramentas"
  1678. #: flatcamEditors/FlatCAMExcEditor.py:613
  1679. msgid "Click on the Slot Circular Array Start position"
  1680. msgstr "Clique na posição inicial da matriz circular da ranhura"
  1681. #: flatcamEditors/FlatCAMExcEditor.py:639
  1682. #: flatcamEditors/FlatCAMGrbEditor.py:509
  1683. msgid "The value is mistyped. Check the value."
  1684. msgstr "O valor digitado está incorreto. Verifique o valor."
  1685. #: flatcamEditors/FlatCAMExcEditor.py:818
  1686. msgid "Too many Slots for the selected spacing angle."
  1687. msgstr "Muitas Ranhuras para o ângulo de espaçamento selecionado."
  1688. #: flatcamEditors/FlatCAMExcEditor.py:841
  1689. msgid "Done. Slot Array added."
  1690. msgstr "Feito. Matriz de Ranhuras adicionada."
  1691. #: flatcamEditors/FlatCAMExcEditor.py:858
  1692. msgid "Click on the Drill(s) to resize ..."
  1693. msgstr "Clique na(s) Broca(s) para redimensionar ..."
  1694. #: flatcamEditors/FlatCAMExcEditor.py:888
  1695. msgid "Resize drill(s) failed. Please enter a diameter for resize."
  1696. msgstr "Redimensionar broca(s) falhou. Por favor insira um diâmetro "
  1697. "para redimensionar."
  1698. #: flatcamEditors/FlatCAMExcEditor.py:978
  1699. #: flatcamEditors/FlatCAMExcEditor.py:1048
  1700. msgid "Cancelled."
  1701. msgstr "Cancelado."
  1702. #: flatcamEditors/FlatCAMExcEditor.py:1069
  1703. msgid "Drill/Slot Resize completed."
  1704. msgstr "Redimensionamento de broca/ranhura concluído."
  1705. #: flatcamEditors/FlatCAMExcEditor.py:1072
  1706. msgid "Cancelled. No drills/slots selected for resize ..."
  1707. msgstr "Cancelado. Nenhuma broca/ranhura selecionada para "
  1708. "redimensionar ..."
  1709. #: flatcamEditors/FlatCAMExcEditor.py:1100
  1710. #: flatcamEditors/FlatCAMGrbEditor.py:1861
  1711. msgid "Click on reference location ..."
  1712. msgstr "Clique no local de referência ..."
  1713. #: flatcamEditors/FlatCAMExcEditor.py:1156
  1714. msgid "Done. Drill(s) Move completed."
  1715. msgstr "Movimento da Broca realizado."
  1716. #: flatcamEditors/FlatCAMExcEditor.py:1254
  1717. msgid "Done. Drill(s) copied."
  1718. msgstr "Broca(s) copiada(s)."
  1719. #: flatcamEditors/FlatCAMExcEditor.py:1473 flatcamGUI/FlatCAMGUI.py:5510
  1720. msgid "Excellon Editor"
  1721. msgstr "Editor Excellon"
  1722. #: flatcamEditors/FlatCAMExcEditor.py:1480
  1723. #: flatcamEditors/FlatCAMGrbEditor.py:2361
  1724. msgid "Name:"
  1725. msgstr "Nome:"
  1726. #: flatcamEditors/FlatCAMExcEditor.py:1486 flatcamGUI/ObjectUI.py:593
  1727. #: flatcamGUI/ObjectUI.py:919 flatcamTools/ToolNonCopperClear.py:96
  1728. #: flatcamTools/ToolPaint.py:95 flatcamTools/ToolSolderPaste.py:70
  1729. msgid "Tools Table"
  1730. msgstr "Tabela de Ferramentas"
  1731. #: flatcamEditors/FlatCAMExcEditor.py:1488 flatcamGUI/ObjectUI.py:595
  1732. msgid ""
  1733. "Tools in this Excellon object\n"
  1734. "when are used for drilling."
  1735. msgstr ""
  1736. "Ferramentas neste objeto Excellon \n"
  1737. "quando são usadas para perfuração."
  1738. #: flatcamEditors/FlatCAMExcEditor.py:1508
  1739. msgid "Add/Delete Tool"
  1740. msgstr "Adicionar/Excluir Ferramenta"
  1741. #: flatcamEditors/FlatCAMExcEditor.py:1510
  1742. msgid ""
  1743. "Add/Delete a tool to the tool list\n"
  1744. "for this Excellon object."
  1745. msgstr ""
  1746. "Adicionar/Excluir uma ferramenta para a lista de ferramentas\n"
  1747. "para este objeto Excellon."
  1748. #: flatcamEditors/FlatCAMExcEditor.py:1518 flatcamGUI/ObjectUI.py:1037
  1749. #: flatcamTools/ToolNonCopperClear.py:212 flatcamTools/ToolPaint.py:162
  1750. msgid "Tool Dia"
  1751. msgstr "Diâmetro da Ferramenta:"
  1752. #: flatcamEditors/FlatCAMExcEditor.py:1520 flatcamGUI/FlatCAMGUI.py:5539
  1753. #: flatcamGUI/ObjectUI.py:1040
  1754. msgid "Diameter for the new tool"
  1755. msgstr "Diâmetro da nova ferramenta"
  1756. #: flatcamEditors/FlatCAMExcEditor.py:1528
  1757. msgid "Add Tool"
  1758. msgstr "Adicionar Ferramenta"
  1759. #: flatcamEditors/FlatCAMExcEditor.py:1530
  1760. msgid ""
  1761. "Add a new tool to the tool list\n"
  1762. "with the diameter specified above."
  1763. msgstr ""
  1764. "Adiciona uma nova ferramenta à lista de ferramentas\n"
  1765. "com o diâmetro especificado acima."
  1766. #: flatcamEditors/FlatCAMExcEditor.py:1542
  1767. msgid "Delete Tool"
  1768. msgstr "Excluir Ferramenta"
  1769. #: flatcamEditors/FlatCAMExcEditor.py:1544
  1770. msgid ""
  1771. "Delete a tool in the tool list\n"
  1772. "by selecting a row in the tool table."
  1773. msgstr ""
  1774. "Exclui uma ferramenta da lista de ferramentas selecionando uma linha na "
  1775. "tabela de ferramentas."
  1776. #: flatcamEditors/FlatCAMExcEditor.py:1562
  1777. msgid "Resize Drill(s)"
  1778. msgstr "Redimensionar Broca(s)"
  1779. #: flatcamEditors/FlatCAMExcEditor.py:1564
  1780. msgid "Resize a drill or a selection of drills."
  1781. msgstr "Redimensiona uma broca ou uma seleção de brocas."
  1782. #: flatcamEditors/FlatCAMExcEditor.py:1571
  1783. msgid "Resize Dia"
  1784. msgstr "Novo Diâmetro:"
  1785. #: flatcamEditors/FlatCAMExcEditor.py:1573
  1786. msgid "Diameter to resize to."
  1787. msgstr "Novo diâmetro"
  1788. #: flatcamEditors/FlatCAMExcEditor.py:1581
  1789. msgid "Resize"
  1790. msgstr "Redimensionar"
  1791. #: flatcamEditors/FlatCAMExcEditor.py:1583
  1792. msgid "Resize drill(s)"
  1793. msgstr "Redimensionar broca(s)"
  1794. #: flatcamEditors/FlatCAMExcEditor.py:1608 flatcamGUI/FlatCAMGUI.py:1710
  1795. msgid "Add Drill Array"
  1796. msgstr "Adicionar Matriz de Brocas"
  1797. #: flatcamEditors/FlatCAMExcEditor.py:1610
  1798. msgid "Add an array of drills (linear or circular array)"
  1799. msgstr "Adiciona uma matriz de brocas (matriz linear ou circular)"
  1800. #: flatcamEditors/FlatCAMExcEditor.py:1616
  1801. msgid ""
  1802. "Select the type of drills array to create.\n"
  1803. "It can be Linear X(Y) or Circular"
  1804. msgstr ""
  1805. "Selecione o tipo de matriz de brocas para criar.\n"
  1806. "Pode ser Linear X(Y) ou Circular"
  1807. #: flatcamEditors/FlatCAMExcEditor.py:1619
  1808. #: flatcamEditors/FlatCAMExcEditor.py:1821
  1809. #: flatcamEditors/FlatCAMGrbEditor.py:2647
  1810. msgid "Linear"
  1811. msgstr "Linear"
  1812. #: flatcamEditors/FlatCAMExcEditor.py:1620
  1813. #: flatcamEditors/FlatCAMExcEditor.py:1822
  1814. #: flatcamEditors/FlatCAMGrbEditor.py:2648 flatcamGUI/FlatCAMGUI.py:6460
  1815. #: flatcamTools/ToolNonCopperClear.py:203
  1816. msgid "Circular"
  1817. msgstr "Circular"
  1818. #: flatcamEditors/FlatCAMExcEditor.py:1628 flatcamGUI/FlatCAMGUI.py:5549
  1819. msgid "Nr of drills"
  1820. msgstr "Nº de brocas"
  1821. #: flatcamEditors/FlatCAMExcEditor.py:1629 flatcamGUI/FlatCAMGUI.py:5551
  1822. msgid "Specify how many drills to be in the array."
  1823. msgstr "Especifique quantas brocas devem estar na matriz."
  1824. #: flatcamEditors/FlatCAMExcEditor.py:1646
  1825. #: flatcamEditors/FlatCAMExcEditor.py:1693
  1826. #: flatcamEditors/FlatCAMExcEditor.py:1757
  1827. #: flatcamEditors/FlatCAMExcEditor.py:1848
  1828. #: flatcamEditors/FlatCAMExcEditor.py:1895
  1829. #: flatcamEditors/FlatCAMGrbEditor.py:2674
  1830. #: flatcamEditors/FlatCAMGrbEditor.py:2719 flatcamGUI/FlatCAMGUI.py:5643
  1831. msgid "Direction"
  1832. msgstr "Direção"
  1833. #: flatcamEditors/FlatCAMExcEditor.py:1648
  1834. #: flatcamEditors/FlatCAMExcEditor.py:1850
  1835. #: flatcamEditors/FlatCAMGrbEditor.py:2676 flatcamGUI/FlatCAMGUI.py:4717
  1836. #: flatcamGUI/FlatCAMGUI.py:5566 flatcamGUI/FlatCAMGUI.py:5697
  1837. msgid ""
  1838. "Direction on which the linear array is oriented:\n"
  1839. "- 'X' - horizontal axis \n"
  1840. "- 'Y' - vertical axis or \n"
  1841. "- 'Angle' - a custom angle for the array inclination"
  1842. msgstr ""
  1843. "Direção na qual a matriz linear é orientada: \n"
  1844. "- 'X' - eixo horizontal\n"
  1845. "- 'Y' - eixo vertical ou\n"
  1846. "- 'Ângulo' - um ângulo personalizado para a inclinação da matriz"
  1847. #: flatcamEditors/FlatCAMExcEditor.py:1655
  1848. #: flatcamEditors/FlatCAMExcEditor.py:1766
  1849. #: flatcamEditors/FlatCAMExcEditor.py:1857
  1850. #: flatcamEditors/FlatCAMGrbEditor.py:2683 flatcamGUI/FlatCAMGUI.py:4723
  1851. #: flatcamGUI/FlatCAMGUI.py:5572 flatcamGUI/FlatCAMGUI.py:5652
  1852. #: flatcamGUI/FlatCAMGUI.py:5703
  1853. msgid "X"
  1854. msgstr "X"
  1855. #: flatcamEditors/FlatCAMExcEditor.py:1656
  1856. #: flatcamEditors/FlatCAMExcEditor.py:1767
  1857. #: flatcamEditors/FlatCAMExcEditor.py:1858
  1858. #: flatcamEditors/FlatCAMGrbEditor.py:2684 flatcamGUI/FlatCAMGUI.py:4724
  1859. #: flatcamGUI/FlatCAMGUI.py:5573 flatcamGUI/FlatCAMGUI.py:5653
  1860. #: flatcamGUI/FlatCAMGUI.py:5704
  1861. msgid "Y"
  1862. msgstr "Y"
  1863. #: flatcamEditors/FlatCAMExcEditor.py:1657
  1864. #: flatcamEditors/FlatCAMExcEditor.py:1671
  1865. #: flatcamEditors/FlatCAMExcEditor.py:1705
  1866. #: flatcamEditors/FlatCAMExcEditor.py:1768
  1867. #: flatcamEditors/FlatCAMExcEditor.py:1772
  1868. #: flatcamEditors/FlatCAMExcEditor.py:1859
  1869. #: flatcamEditors/FlatCAMExcEditor.py:1873
  1870. #: flatcamEditors/FlatCAMExcEditor.py:1907
  1871. #: flatcamEditors/FlatCAMGrbEditor.py:2685
  1872. #: flatcamEditors/FlatCAMGrbEditor.py:2698
  1873. #: flatcamEditors/FlatCAMGrbEditor.py:2734 flatcamGUI/FlatCAMGUI.py:4725
  1874. #: flatcamGUI/FlatCAMGUI.py:4742 flatcamGUI/FlatCAMGUI.py:5574
  1875. #: flatcamGUI/FlatCAMGUI.py:5591 flatcamGUI/FlatCAMGUI.py:5654
  1876. #: flatcamGUI/FlatCAMGUI.py:5659 flatcamGUI/FlatCAMGUI.py:5705
  1877. #: flatcamGUI/FlatCAMGUI.py:5722 flatcamTools/ToolTransform.py:68
  1878. msgid "Angle"
  1879. msgstr "Ângulo"
  1880. #: flatcamEditors/FlatCAMExcEditor.py:1661
  1881. #: flatcamEditors/FlatCAMExcEditor.py:1863
  1882. #: flatcamEditors/FlatCAMGrbEditor.py:2689 flatcamGUI/FlatCAMGUI.py:4731
  1883. #: flatcamGUI/FlatCAMGUI.py:5711
  1884. msgid "Pitch"
  1885. msgstr "Passo"
  1886. #: flatcamEditors/FlatCAMExcEditor.py:1663
  1887. #: flatcamEditors/FlatCAMExcEditor.py:1865
  1888. #: flatcamEditors/FlatCAMGrbEditor.py:2691 flatcamGUI/FlatCAMGUI.py:4733
  1889. #: flatcamGUI/FlatCAMGUI.py:5582 flatcamGUI/FlatCAMGUI.py:5713
  1890. msgid "Pitch = Distance between elements of the array."
  1891. msgstr "Passo = Distância entre os elementos da matriz."
  1892. #: flatcamEditors/FlatCAMExcEditor.py:1673
  1893. #: flatcamEditors/FlatCAMExcEditor.py:1875
  1894. #: flatcamEditors/FlatCAMGrbEditor.py:2700
  1895. msgid ""
  1896. "Angle at which the linear array is placed.\n"
  1897. "The precision is of max 2 decimals.\n"
  1898. "Min value is: -359.99 degrees.\n"
  1899. "Max value is: 360.00 degrees."
  1900. msgstr ""
  1901. "Ângulo no qual a matriz linear é colocada.\n"
  1902. "A precisão é de no máximo 2 decimais.\n"
  1903. "Valor mínimo: -359.99 graus.\n"
  1904. "Valor máximo: 360.00 graus."
  1905. #: flatcamEditors/FlatCAMExcEditor.py:1694
  1906. #: flatcamEditors/FlatCAMExcEditor.py:1896
  1907. #: flatcamEditors/FlatCAMGrbEditor.py:2721
  1908. msgid ""
  1909. "Direction for circular array.Can be CW = clockwise or CCW = counter "
  1910. "clockwise."
  1911. msgstr ""
  1912. "Sentido da matriz circular. Pode ser CW = horário ou CCW = "
  1913. "anti-horário."
  1914. #: flatcamEditors/FlatCAMExcEditor.py:1701
  1915. #: flatcamEditors/FlatCAMExcEditor.py:1903
  1916. #: flatcamEditors/FlatCAMGrbEditor.py:2729 flatcamGUI/FlatCAMGUI.py:4761
  1917. #: flatcamGUI/FlatCAMGUI.py:5152 flatcamGUI/FlatCAMGUI.py:5610
  1918. #: flatcamGUI/FlatCAMGUI.py:5741 flatcamGUI/FlatCAMGUI.py:5943
  1919. msgid "CW"
  1920. msgstr "CW"
  1921. #: flatcamEditors/FlatCAMExcEditor.py:1702
  1922. #: flatcamEditors/FlatCAMExcEditor.py:1904
  1923. #: flatcamEditors/FlatCAMGrbEditor.py:2730 flatcamGUI/FlatCAMGUI.py:4762
  1924. #: flatcamGUI/FlatCAMGUI.py:5153 flatcamGUI/FlatCAMGUI.py:5611
  1925. #: flatcamGUI/FlatCAMGUI.py:5742 flatcamGUI/FlatCAMGUI.py:5944
  1926. msgid "CCW"
  1927. msgstr "CCW"
  1928. #: flatcamEditors/FlatCAMExcEditor.py:1706
  1929. #: flatcamEditors/FlatCAMExcEditor.py:1908
  1930. #: flatcamEditors/FlatCAMGrbEditor.py:2736 flatcamGUI/FlatCAMGUI.py:4744
  1931. #: flatcamGUI/FlatCAMGUI.py:4770 flatcamGUI/FlatCAMGUI.py:5593
  1932. #: flatcamGUI/FlatCAMGUI.py:5619 flatcamGUI/FlatCAMGUI.py:5724
  1933. #: flatcamGUI/FlatCAMGUI.py:5750
  1934. msgid "Angle at which each element in circular array is placed."
  1935. msgstr "Ângulo no qual cada elemento na matriz circular é colocado."
  1936. #: flatcamEditors/FlatCAMExcEditor.py:1736
  1937. msgid "Slot Parameters"
  1938. msgstr "Parâmetros de Ranhura"
  1939. #: flatcamEditors/FlatCAMExcEditor.py:1738
  1940. msgid ""
  1941. "Parameters for adding a slot (hole with oval shape)\n"
  1942. "either single or as an part of an array."
  1943. msgstr ""
  1944. "Parâmetros para adicionar uma ranhura (furo com forma oval),\n"
  1945. "tanto única quanto parte de uma matriz."
  1946. #: flatcamEditors/FlatCAMExcEditor.py:1747 flatcamGUI/FlatCAMGUI.py:5632
  1947. #: flatcamTools/ToolProperties.py:350
  1948. msgid "Length"
  1949. msgstr "Comprimento"
  1950. #: flatcamEditors/FlatCAMExcEditor.py:1749 flatcamGUI/FlatCAMGUI.py:5634
  1951. msgid "Length = The length of the slot."
  1952. msgstr "Comprimento = o comprimento da ranhura."
  1953. #: flatcamEditors/FlatCAMExcEditor.py:1759 flatcamGUI/FlatCAMGUI.py:5645
  1954. msgid ""
  1955. "Direction on which the slot is oriented:\n"
  1956. "- 'X' - horizontal axis \n"
  1957. "- 'Y' - vertical axis or \n"
  1958. "- 'Angle' - a custom angle for the slot inclination"
  1959. msgstr ""
  1960. "Direção na qual a ranhura é orientada:\n"
  1961. "- 'X' - eixo horizontal\n"
  1962. "- 'Y' - eixo vertical ou\n"
  1963. "- 'Angle' - um ângulo personalizado para a inclinação da ranhura"
  1964. #: flatcamEditors/FlatCAMExcEditor.py:1774 flatcamGUI/FlatCAMGUI.py:5661
  1965. msgid ""
  1966. "Angle at which the slot is placed.\n"
  1967. "The precision is of max 2 decimals.\n"
  1968. "Min value is: -359.99 degrees.\n"
  1969. "Max value is: 360.00 degrees."
  1970. msgstr ""
  1971. "Ângulo no qual a ranhura é colocada.\n"
  1972. "A precisão é de no máximo 2 decimais.\n"
  1973. "Valor mínimo: -359.99 graus.\n"
  1974. "Valor máximo: 360.00 graus."
  1975. #: flatcamEditors/FlatCAMExcEditor.py:1807
  1976. msgid "Slot Array Parameters"
  1977. msgstr "Parâm. da matriz de ranhuras"
  1978. #: flatcamEditors/FlatCAMExcEditor.py:1809
  1979. msgid "Parameters for the array of slots (linear or circular array)"
  1980. msgstr "Parâmetros da matriz de ranhuras (matriz linear ou circular)"
  1981. #: flatcamEditors/FlatCAMExcEditor.py:1818
  1982. msgid ""
  1983. "Select the type of slot array to create.\n"
  1984. "It can be Linear X(Y) or Circular"
  1985. msgstr ""
  1986. "Selecione o tipo de matriz de ranhuras para criar.\n"
  1987. "Pode ser Linear X(Y) ou Circular"
  1988. #: flatcamEditors/FlatCAMExcEditor.py:1830 flatcamGUI/FlatCAMGUI.py:5683
  1989. msgid "Nr of slots"
  1990. msgstr "Nº de ranhuras"
  1991. #: flatcamEditors/FlatCAMExcEditor.py:1831 flatcamGUI/FlatCAMGUI.py:5685
  1992. msgid "Specify how many slots to be in the array."
  1993. msgstr "Especifique o número de ranhuras da matriz."
  1994. #: flatcamEditors/FlatCAMExcEditor.py:2428
  1995. msgid ""
  1996. "Tool already in the original or actual tool list.\n"
  1997. "Save and reedit Excellon if you need to add this tool. "
  1998. msgstr ""
  1999. "Ferramenta já na lista de ferramentas original ou atual.\n"
  2000. "Salve e reedite Excellon se precisar adicionar essa ferramenta."
  2001. #: flatcamEditors/FlatCAMExcEditor.py:2437
  2002. msgid "Added new tool with dia"
  2003. msgstr "Adicionada nova ferramenta com diâmetro"
  2004. #: flatcamEditors/FlatCAMExcEditor.py:2469
  2005. msgid "Select a tool in Tool Table"
  2006. msgstr "Selecione uma ferramenta na Tabela de Ferramentas"
  2007. #: flatcamEditors/FlatCAMExcEditor.py:2502
  2008. msgid "Deleted tool with diameter"
  2009. msgstr "Ferramenta excluída com diâmetro"
  2010. #: flatcamEditors/FlatCAMExcEditor.py:2652
  2011. msgid "Done. Tool edit completed."
  2012. msgstr "Edição de ferramenta concluída."
  2013. #: flatcamEditors/FlatCAMExcEditor.py:3187
  2014. msgid "There are no Tools definitions in the file. Aborting Excellon creation."
  2015. msgstr "Não há definições de ferramentas no arquivo. Abortando a criação do Excellon."
  2016. #: flatcamEditors/FlatCAMExcEditor.py:3191
  2017. msgid "An internal error has ocurred. See Shell.\n"
  2018. msgstr "Ocorreu um erro interno. Veja shell (linha de comando).\n"
  2019. #: flatcamEditors/FlatCAMExcEditor.py:3197
  2020. msgid "Creating Excellon."
  2021. msgstr "Criando Excellon."
  2022. #: flatcamEditors/FlatCAMExcEditor.py:3207
  2023. msgid "Excellon editing finished."
  2024. msgstr "Edição de Excellon concluída."
  2025. #: flatcamEditors/FlatCAMExcEditor.py:3225
  2026. msgid "Cancelled. There is no Tool/Drill selected"
  2027. msgstr "Cancelado. Não há ferramenta/broca selecionada"
  2028. #: flatcamEditors/FlatCAMExcEditor.py:3810
  2029. msgid "Done. Drill(s) deleted."
  2030. msgstr "Brocas(s) excluída(s)."
  2031. #: flatcamEditors/FlatCAMExcEditor.py:3882
  2032. #: flatcamEditors/FlatCAMExcEditor.py:3892
  2033. #: flatcamEditors/FlatCAMGrbEditor.py:4576
  2034. msgid "Click on the circular array Center position"
  2035. msgstr "Clique na posição central da matriz circular"
  2036. #: flatcamEditors/FlatCAMGeoEditor.py:82
  2037. msgid "Buffer distance:"
  2038. msgstr "Distância do buffer:"
  2039. #: flatcamEditors/FlatCAMGeoEditor.py:83
  2040. msgid "Buffer corner:"
  2041. msgstr "Canto do buffer:"
  2042. #: flatcamEditors/FlatCAMGeoEditor.py:85
  2043. msgid ""
  2044. "There are 3 types of corners:\n"
  2045. " - 'Round': the corner is rounded for exterior buffer.\n"
  2046. " - 'Square:' the corner is met in a sharp angle for exterior buffer.\n"
  2047. " - 'Beveled:' the corner is a line that directly connects the features "
  2048. "meeting in the corner"
  2049. msgstr ""
  2050. "Existem 3 tipos de cantos:\n"
  2051. " - 'Redondo': o canto é arredondado para buffer externo.\n"
  2052. " - 'Quadrado:' o canto é em um ângulo agudo para buffer externo.\n"
  2053. " - 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
  2054. "encontrados no canto"
  2055. #: flatcamEditors/FlatCAMGeoEditor.py:91
  2056. #: flatcamEditors/FlatCAMGrbEditor.py:2522
  2057. msgid "Round"
  2058. msgstr "Redondo"
  2059. #: flatcamEditors/FlatCAMGeoEditor.py:92
  2060. #: flatcamEditors/FlatCAMGrbEditor.py:2523
  2061. msgid "Square"
  2062. msgstr "Quadrado"
  2063. #: flatcamEditors/FlatCAMGeoEditor.py:93
  2064. #: flatcamEditors/FlatCAMGrbEditor.py:2524
  2065. msgid "Beveled"
  2066. msgstr "Chanfrado"
  2067. #: flatcamEditors/FlatCAMGeoEditor.py:100
  2068. msgid "Buffer Interior"
  2069. msgstr "Buffer Interior"
  2070. #: flatcamEditors/FlatCAMGeoEditor.py:102
  2071. msgid "Buffer Exterior"
  2072. msgstr "Buffer Exterior"
  2073. #: flatcamEditors/FlatCAMGeoEditor.py:108
  2074. msgid "Full Buffer"
  2075. msgstr "Buffer Completo"
  2076. #: flatcamEditors/FlatCAMGeoEditor.py:129
  2077. #: flatcamEditors/FlatCAMGeoEditor.py:2720 flatcamGUI/FlatCAMGUI.py:4777
  2078. msgid "Buffer Tool"
  2079. msgstr "Ferramenta Buffer"
  2080. #: flatcamEditors/FlatCAMGeoEditor.py:141
  2081. #: flatcamEditors/FlatCAMGeoEditor.py:158
  2082. #: flatcamEditors/FlatCAMGeoEditor.py:175
  2083. #: flatcamEditors/FlatCAMGeoEditor.py:2740
  2084. #: flatcamEditors/FlatCAMGeoEditor.py:2770
  2085. #: flatcamEditors/FlatCAMGeoEditor.py:2800
  2086. #: flatcamEditors/FlatCAMGrbEditor.py:4629
  2087. msgid "Buffer distance value is missing or wrong format. Add it and retry."
  2088. msgstr "O valor da distância do buffer está ausente ou em formato "
  2089. "incorreto. Altere e tente novamente."
  2090. #: flatcamEditors/FlatCAMGeoEditor.py:345
  2091. msgid "Text Tool"
  2092. msgstr "Ferramenta de Texto"
  2093. #: flatcamEditors/FlatCAMGeoEditor.py:403 flatcamGUI/FlatCAMGUI.py:826
  2094. msgid "Tool"
  2095. msgstr "Ferramenta"
  2096. #: flatcamEditors/FlatCAMGeoEditor.py:434 flatcamGUI/FlatCAMGUI.py:4356
  2097. #: flatcamGUI/FlatCAMGUI.py:5796 flatcamGUI/FlatCAMGUI.py:6699
  2098. #: flatcamGUI/FlatCAMGUI.py:6859 flatcamGUI/ObjectUI.py:264
  2099. #: flatcamTools/ToolCutOut.py:91
  2100. msgid "Tool dia"
  2101. msgstr "Diâmetro da Ferramenta"
  2102. #: flatcamEditors/FlatCAMGeoEditor.py:436 flatcamGUI/FlatCAMGUI.py:6861
  2103. msgid ""
  2104. "Diameter of the tool to\n"
  2105. "be used in the operation."
  2106. msgstr ""
  2107. "Diâmetro da ferramenta para \n"
  2108. "ser usada na operação."
  2109. #: flatcamEditors/FlatCAMGeoEditor.py:445 flatcamGUI/FlatCAMGUI.py:6545
  2110. #: flatcamGUI/FlatCAMGUI.py:6890 flatcamTools/ToolNonCopperClear.py:283
  2111. #: flatcamTools/ToolPaint.py:205
  2112. msgid "Overlap Rate"
  2113. msgstr "Taxa de Sobreposição"
  2114. #: flatcamEditors/FlatCAMGeoEditor.py:447 flatcamGUI/FlatCAMGUI.py:6892
  2115. #: flatcamTools/ToolPaint.py:207
  2116. #, python-format
  2117. msgid ""
  2118. "How much (fraction) of the tool width to overlap each tool pass.\n"
  2119. "Example:\n"
  2120. "A value here of 0.25 means 25%% from the tool diameter found above.\n"
  2121. "\n"
  2122. "Adjust the value starting with lower values\n"
  2123. "and increasing it if areas that should be painted are still \n"
  2124. "not painted.\n"
  2125. "Lower values = faster processing, faster execution on PCB.\n"
  2126. "Higher values = slow processing and slow execution on CNC\n"
  2127. "due of too many paths."
  2128. msgstr ""
  2129. "Quanto da largura da ferramenta (fração) é sobreposto em cada passagem da "
  2130. "ferramenta.\n"
  2131. "Exemplo:\n"
  2132. "Um valor de 0.25 significa uma sobreposição de 25%% do diâmetro da "
  2133. "ferramenta.\n"
  2134. "Ajuste o valor começando com valores menores, e aumente se alguma área que \n"
  2135. "deveria ser pintada não foi pintada.\n"
  2136. "Valores menores = processamento mais rápido, execução mais rápida no PCB. \n"
  2137. "Valores maiores = processamento lento e execução lenta no CNC \n"
  2138. " devido ao número de caminhos."
  2139. #: flatcamEditors/FlatCAMGeoEditor.py:463 flatcamGUI/FlatCAMGUI.py:6562
  2140. #: flatcamGUI/FlatCAMGUI.py:6723 flatcamGUI/FlatCAMGUI.py:6907
  2141. #: flatcamTools/ToolNonCopperClear.py:299 flatcamTools/ToolPaint.py:222
  2142. msgid "Margin"
  2143. msgstr "Margem"
  2144. #: flatcamEditors/FlatCAMGeoEditor.py:465 flatcamGUI/FlatCAMGUI.py:6909
  2145. #: flatcamTools/ToolPaint.py:224
  2146. msgid ""
  2147. "Distance by which to avoid\n"
  2148. "the edges of the polygon to\n"
  2149. "be painted."
  2150. msgstr ""
  2151. "Distância pela qual evitar \n"
  2152. "as bordas do polígono para \n"
  2153. "ser pintado."
  2154. #: flatcamEditors/FlatCAMGeoEditor.py:474 flatcamGUI/FlatCAMGUI.py:6571
  2155. #: flatcamGUI/FlatCAMGUI.py:6918 flatcamTools/ToolNonCopperClear.py:308
  2156. #: flatcamTools/ToolPaint.py:233
  2157. msgid "Method"
  2158. msgstr "Método"
  2159. #: flatcamEditors/FlatCAMGeoEditor.py:476
  2160. msgid ""
  2161. "Algorithm to paint the polygon:<BR><B>Standard</B>: Fixed step inwards."
  2162. "<BR><B>Seed-based</B>: Outwards from seed."
  2163. msgstr ""
  2164. "Algoritmo para pintar o polígono: <BR><B>Padrão</B>: Passo fixo para dentro."
  2165. "<BR><B>Baseado em semente</B>: para fora da semente."
  2166. #: flatcamEditors/FlatCAMGeoEditor.py:482 flatcamGUI/FlatCAMGUI.py:6580
  2167. #: flatcamGUI/FlatCAMGUI.py:6927 flatcamTools/ToolNonCopperClear.py:317
  2168. #: flatcamTools/ToolPaint.py:242
  2169. msgid "Standard"
  2170. msgstr "Padrão"
  2171. #: flatcamEditors/FlatCAMGeoEditor.py:483 flatcamGUI/FlatCAMGUI.py:6581
  2172. #: flatcamGUI/FlatCAMGUI.py:6928 flatcamTools/ToolNonCopperClear.py:318
  2173. #: flatcamTools/ToolPaint.py:243
  2174. msgid "Seed-based"
  2175. msgstr "Baseado em semente"
  2176. #: flatcamEditors/FlatCAMGeoEditor.py:484 flatcamGUI/FlatCAMGUI.py:6582
  2177. #: flatcamGUI/FlatCAMGUI.py:6929 flatcamTools/ToolNonCopperClear.py:319
  2178. #: flatcamTools/ToolPaint.py:244
  2179. msgid "Straight lines"
  2180. msgstr "Linhas retas"
  2181. #: flatcamEditors/FlatCAMGeoEditor.py:489
  2182. msgid "Connect:"
  2183. msgstr "Conectar:"
  2184. #: flatcamEditors/FlatCAMGeoEditor.py:491 flatcamGUI/FlatCAMGUI.py:6589
  2185. #: flatcamGUI/FlatCAMGUI.py:6936 flatcamTools/ToolNonCopperClear.py:326
  2186. #: flatcamTools/ToolPaint.py:251
  2187. msgid ""
  2188. "Draw lines between resulting\n"
  2189. "segments to minimize tool lifts."
  2190. msgstr ""
  2191. "Desenha linhas entre os segmentos resultantes\n"
  2192. "para minimizar as elevações de ferramentas."
  2193. #: flatcamEditors/FlatCAMGeoEditor.py:498
  2194. msgid "Contour:"
  2195. msgstr "Contorno:"
  2196. #: flatcamEditors/FlatCAMGeoEditor.py:500 flatcamGUI/FlatCAMGUI.py:6599
  2197. #: flatcamGUI/FlatCAMGUI.py:6946 flatcamTools/ToolNonCopperClear.py:335
  2198. #: flatcamTools/ToolPaint.py:260
  2199. msgid ""
  2200. "Cut around the perimeter of the polygon\n"
  2201. "to trim rough edges."
  2202. msgstr "Corta no perímetro do polígono para cortar as arestas."
  2203. #: flatcamEditors/FlatCAMGeoEditor.py:511 flatcamGUI/FlatCAMGUI.py:1673
  2204. msgid "Paint"
  2205. msgstr "Pintura"
  2206. #: flatcamEditors/FlatCAMGeoEditor.py:529 flatcamGUI/FlatCAMGUI.py:661
  2207. #: flatcamGUI/FlatCAMGUI.py:2004 flatcamGUI/ObjectUI.py:1360
  2208. #: flatcamTools/ToolPaint.py:25 flatcamTools/ToolPaint.py:448
  2209. msgid "Paint Tool"
  2210. msgstr "Ferramenta de Pintura"
  2211. #: flatcamEditors/FlatCAMGeoEditor.py:566
  2212. msgid "Paint cancelled. No shape selected."
  2213. msgstr "Pintura cancelada. Nenhuma forma selecionada."
  2214. #: flatcamEditors/FlatCAMGeoEditor.py:578 flatcamTools/ToolCutOut.py:387
  2215. #: flatcamTools/ToolCutOut.py:585 flatcamTools/ToolCutOut.py:755
  2216. #: flatcamTools/ToolCutOut.py:849 flatcamTools/ToolDblSided.py:367
  2217. msgid "Tool diameter value is missing or wrong format. Add it and retry."
  2218. msgstr "O valor do diâmetro da ferramenta está ausente ou em formato "
  2219. "incorreto. Altere e tente novamente."
  2220. #: flatcamEditors/FlatCAMGeoEditor.py:589
  2221. msgid "Overlap value is missing or wrong format. Add it and retry."
  2222. msgstr "O valor de sobreposição está ausente ou em formato "
  2223. "incorreto. Altere e tente novamente."
  2224. #: flatcamEditors/FlatCAMGeoEditor.py:601
  2225. msgid "Margin distance value is missing or wrong format. Add it and retry."
  2226. msgstr "O valor da distância da margem está ausente ou em formato "
  2227. "incorreto. Altere e tente novamente."
  2228. #: flatcamEditors/FlatCAMGeoEditor.py:609
  2229. #: flatcamEditors/FlatCAMGeoEditor.py:2746
  2230. #: flatcamEditors/FlatCAMGeoEditor.py:2776
  2231. #: flatcamEditors/FlatCAMGeoEditor.py:2806 flatcamGUI/FlatCAMGUI.py:5792
  2232. #: flatcamTools/ToolProperties.py:113 flatcamTools/ToolProperties.py:139
  2233. msgid "Tools"
  2234. msgstr "Ferramentas"
  2235. #: flatcamEditors/FlatCAMGeoEditor.py:620
  2236. #: flatcamEditors/FlatCAMGeoEditor.py:993
  2237. #: flatcamEditors/FlatCAMGrbEditor.py:4812
  2238. #: flatcamEditors/FlatCAMGrbEditor.py:5197 flatcamGUI/FlatCAMGUI.py:672
  2239. #: flatcamGUI/FlatCAMGUI.py:2017 flatcamTools/ToolTransform.py:403
  2240. msgid "Transform Tool"
  2241. msgstr "Ferramenta Transformar"
  2242. #: flatcamEditors/FlatCAMGeoEditor.py:621
  2243. #: flatcamEditors/FlatCAMGeoEditor.py:682
  2244. #: flatcamEditors/FlatCAMGrbEditor.py:4813
  2245. #: flatcamEditors/FlatCAMGrbEditor.py:4875 flatcamTools/ToolTransform.py:24
  2246. #: flatcamTools/ToolTransform.py:82
  2247. msgid "Rotate"
  2248. msgstr "Girar"
  2249. #: flatcamEditors/FlatCAMGeoEditor.py:622
  2250. #: flatcamEditors/FlatCAMGrbEditor.py:4814 flatcamTools/ToolTransform.py:25
  2251. msgid "Skew/Shear"
  2252. msgstr "Inclinar"
  2253. #: flatcamEditors/FlatCAMGeoEditor.py:623
  2254. #: flatcamEditors/FlatCAMGrbEditor.py:2569
  2255. #: flatcamEditors/FlatCAMGrbEditor.py:4815 flatcamGUI/FlatCAMGUI.py:739
  2256. #: flatcamGUI/FlatCAMGUI.py:1700 flatcamGUI/FlatCAMGUI.py:2086
  2257. #: flatcamGUI/ObjectUI.py:79 flatcamGUI/ObjectUI.py:100
  2258. #: flatcamTools/ToolTransform.py:26
  2259. msgid "Scale"
  2260. msgstr "Redimensionar"
  2261. #: flatcamEditors/FlatCAMGeoEditor.py:624
  2262. #: flatcamEditors/FlatCAMGrbEditor.py:4816 flatcamTools/ToolTransform.py:27
  2263. msgid "Mirror (Flip)"
  2264. msgstr "Espelhar (Flip)"
  2265. #: flatcamEditors/FlatCAMGeoEditor.py:625
  2266. #: flatcamEditors/FlatCAMGrbEditor.py:4817 flatcamGUI/FlatCAMGUI.py:6622
  2267. #: flatcamGUI/ObjectUI.py:108 flatcamGUI/ObjectUI.py:127
  2268. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  2269. #: flatcamTools/ToolNonCopperClear.py:357 flatcamTools/ToolTransform.py:28
  2270. msgid "Offset"
  2271. msgstr "Deslocamento"
  2272. #: flatcamEditors/FlatCAMGeoEditor.py:636
  2273. #: flatcamEditors/FlatCAMGrbEditor.py:4829
  2274. #, python-format
  2275. msgid "Editor %s"
  2276. msgstr "Editor %s"
  2277. #: flatcamEditors/FlatCAMGeoEditor.py:668
  2278. #: flatcamEditors/FlatCAMGrbEditor.py:4861
  2279. msgid "Angle:"
  2280. msgstr "Ângulo:"
  2281. #: flatcamEditors/FlatCAMGeoEditor.py:670
  2282. #: flatcamEditors/FlatCAMGrbEditor.py:4863 flatcamGUI/FlatCAMGUI.py:7268
  2283. #: flatcamTools/ToolTransform.py:70
  2284. msgid ""
  2285. "Angle for Rotation action, in degrees.\n"
  2286. "Float number between -360 and 359.\n"
  2287. "Positive numbers for CW motion.\n"
  2288. "Negative numbers for CCW motion."
  2289. msgstr ""
  2290. "Ângulo para a ação Rotação, em graus. \n"
  2291. "Número flutuante entre -360 e 359. \n"
  2292. "Números positivos para movimento horário. \n"
  2293. "Números negativos para movimento anti-horário."
  2294. #: flatcamEditors/FlatCAMGeoEditor.py:684
  2295. #: flatcamEditors/FlatCAMGrbEditor.py:4877
  2296. msgid ""
  2297. "Rotate the selected shape(s).\n"
  2298. "The point of reference is the middle of\n"
  2299. "the bounding box for all selected shapes."
  2300. msgstr ""
  2301. "Gira a(s) forma(s) selecionada(s). \n"
  2302. "O ponto de referência é o meio da caixa\n"
  2303. "delimitadora para todas as formas selecionadas."
  2304. #: flatcamEditors/FlatCAMGeoEditor.py:707
  2305. #: flatcamEditors/FlatCAMGrbEditor.py:4900
  2306. msgid "Angle X:"
  2307. msgstr "Ângulo X:"
  2308. #: flatcamEditors/FlatCAMGeoEditor.py:709
  2309. #: flatcamEditors/FlatCAMGeoEditor.py:727
  2310. #: flatcamEditors/FlatCAMGrbEditor.py:4902
  2311. #: flatcamEditors/FlatCAMGrbEditor.py:4920 flatcamGUI/FlatCAMGUI.py:7280
  2312. #: flatcamGUI/FlatCAMGUI.py:7290 flatcamTools/ToolTransform.py:109
  2313. #: flatcamTools/ToolTransform.py:127
  2314. msgid ""
  2315. "Angle for Skew action, in degrees.\n"
  2316. "Float number between -360 and 359."
  2317. msgstr ""
  2318. "Ângulo de inclinação, em graus.\n"
  2319. "Número flutuante entre -360 e 359."
  2320. #: flatcamEditors/FlatCAMGeoEditor.py:718
  2321. #: flatcamEditors/FlatCAMGrbEditor.py:4911 flatcamTools/ToolTransform.py:118
  2322. msgid "Skew X"
  2323. msgstr "Inclinar X"
  2324. #: flatcamEditors/FlatCAMGeoEditor.py:720
  2325. #: flatcamEditors/FlatCAMGeoEditor.py:738
  2326. #: flatcamEditors/FlatCAMGrbEditor.py:4913
  2327. #: flatcamEditors/FlatCAMGrbEditor.py:4931
  2328. msgid ""
  2329. "Skew/shear the selected shape(s).\n"
  2330. "The point of reference is the middle of\n"
  2331. "the bounding box for all selected shapes."
  2332. msgstr ""
  2333. "Inclinar/distorcer a(s) forma(s) selecionada(s).\n"
  2334. "O ponto de referência é o meio da caixa\n"
  2335. "delimitadora para todas as formas selecionadas."
  2336. #: flatcamEditors/FlatCAMGeoEditor.py:725
  2337. #: flatcamEditors/FlatCAMGrbEditor.py:4918
  2338. msgid "Angle Y:"
  2339. msgstr "Ângulo Y:"
  2340. #: flatcamEditors/FlatCAMGeoEditor.py:736
  2341. #: flatcamEditors/FlatCAMGrbEditor.py:4929 flatcamTools/ToolTransform.py:136
  2342. msgid "Skew Y"
  2343. msgstr "Inclinar Y"
  2344. #: flatcamEditors/FlatCAMGeoEditor.py:764
  2345. #: flatcamEditors/FlatCAMGrbEditor.py:4957
  2346. msgid "Factor X:"
  2347. msgstr "Fator X:"
  2348. #: flatcamEditors/FlatCAMGeoEditor.py:766
  2349. #: flatcamEditors/FlatCAMGrbEditor.py:4959
  2350. msgid "Factor for Scale action over X axis."
  2351. msgstr "Fator de escala sobre o eixo X."
  2352. #: flatcamEditors/FlatCAMGeoEditor.py:774
  2353. #: flatcamEditors/FlatCAMGrbEditor.py:4967 flatcamTools/ToolTransform.py:174
  2354. msgid "Scale X"
  2355. msgstr "Redimensionar X"
  2356. #: flatcamEditors/FlatCAMGeoEditor.py:776
  2357. #: flatcamEditors/FlatCAMGeoEditor.py:793
  2358. #: flatcamEditors/FlatCAMGrbEditor.py:4969
  2359. #: flatcamEditors/FlatCAMGrbEditor.py:4986
  2360. msgid ""
  2361. "Scale the selected shape(s).\n"
  2362. "The point of reference depends on \n"
  2363. "the Scale reference checkbox state."
  2364. msgstr ""
  2365. "Redimensiona a(s) forma(s) selecionada(s).\n"
  2366. "O ponto de referência depende\n"
  2367. "do estado da caixa de seleção."
  2368. #: flatcamEditors/FlatCAMGeoEditor.py:781
  2369. #: flatcamEditors/FlatCAMGrbEditor.py:4974
  2370. msgid "Factor Y:"
  2371. msgstr "Fator Y:"
  2372. #: flatcamEditors/FlatCAMGeoEditor.py:783
  2373. #: flatcamEditors/FlatCAMGrbEditor.py:4976
  2374. msgid "Factor for Scale action over Y axis."
  2375. msgstr "Fator para ação de escala no eixo Y."
  2376. #: flatcamEditors/FlatCAMGeoEditor.py:791
  2377. #: flatcamEditors/FlatCAMGrbEditor.py:4984 flatcamTools/ToolTransform.py:191
  2378. msgid "Scale Y"
  2379. msgstr "Redimensionar Y"
  2380. #: flatcamEditors/FlatCAMGeoEditor.py:800
  2381. #: flatcamEditors/FlatCAMGrbEditor.py:4993 flatcamGUI/FlatCAMGUI.py:7315
  2382. #: flatcamTools/ToolTransform.py:200
  2383. msgid "Link"
  2384. msgstr "Fixar Taxa"
  2385. #: flatcamEditors/FlatCAMGeoEditor.py:802
  2386. #: flatcamEditors/FlatCAMGrbEditor.py:4995
  2387. msgid ""
  2388. "Scale the selected shape(s)\n"
  2389. "using the Scale Factor X for both axis."
  2390. msgstr ""
  2391. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2392. "usando o Fator de Escala X para ambos os eixos."
  2393. #: flatcamEditors/FlatCAMGeoEditor.py:808
  2394. #: flatcamEditors/FlatCAMGrbEditor.py:5001 flatcamGUI/FlatCAMGUI.py:7323
  2395. #: flatcamTools/ToolTransform.py:209
  2396. msgid "Scale Reference"
  2397. msgstr "Referência de escala"
  2398. #: flatcamEditors/FlatCAMGeoEditor.py:810
  2399. #: flatcamEditors/FlatCAMGrbEditor.py:5003
  2400. msgid ""
  2401. "Scale the selected shape(s)\n"
  2402. "using the origin reference when checked,\n"
  2403. "and the center of the biggest bounding box\n"
  2404. "of the selected shapes when unchecked."
  2405. msgstr ""
  2406. "Redimensiona a(s) forma(s) selecionada(s)\n"
  2407. "usando a referência de origem quando marcada,\n"
  2408. "e o centro da maior caixa delimitadora\n"
  2409. "de formas selecionadas quando desmarcado."
  2410. #: flatcamEditors/FlatCAMGeoEditor.py:838
  2411. #: flatcamEditors/FlatCAMGrbEditor.py:5032
  2412. msgid "Value X:"
  2413. msgstr "Valor X:"
  2414. #: flatcamEditors/FlatCAMGeoEditor.py:840
  2415. #: flatcamEditors/FlatCAMGrbEditor.py:5034
  2416. msgid "Value for Offset action on X axis."
  2417. msgstr "Valor para o deslocamento no eixo X."
  2418. #: flatcamEditors/FlatCAMGeoEditor.py:848
  2419. #: flatcamEditors/FlatCAMGrbEditor.py:5042 flatcamTools/ToolTransform.py:249
  2420. msgid "Offset X"
  2421. msgstr "Deslocar X"
  2422. #: flatcamEditors/FlatCAMGeoEditor.py:850
  2423. #: flatcamEditors/FlatCAMGeoEditor.py:868
  2424. #: flatcamEditors/FlatCAMGrbEditor.py:5044
  2425. #: flatcamEditors/FlatCAMGrbEditor.py:5062
  2426. msgid ""
  2427. "Offset the selected shape(s).\n"
  2428. "The point of reference is the middle of\n"
  2429. "the bounding box for all selected shapes.\n"
  2430. msgstr ""
  2431. "Desloca a(s) forma(s) selecionada(s).\n"
  2432. "O ponto de referência é o meio da\n"
  2433. "caixa delimitadora para todas as formas selecionadas.\n"
  2434. #: flatcamEditors/FlatCAMGeoEditor.py:856
  2435. #: flatcamEditors/FlatCAMGrbEditor.py:5050
  2436. msgid "Value Y:"
  2437. msgstr "Valor Y:"
  2438. #: flatcamEditors/FlatCAMGeoEditor.py:858
  2439. #: flatcamEditors/FlatCAMGrbEditor.py:5052
  2440. msgid "Value for Offset action on Y axis."
  2441. msgstr "Valor para a ação de deslocamento no eixo Y."
  2442. #: flatcamEditors/FlatCAMGeoEditor.py:866
  2443. #: flatcamEditors/FlatCAMGrbEditor.py:5060 flatcamTools/ToolTransform.py:266
  2444. msgid "Offset Y"
  2445. msgstr "Deslocar Y"
  2446. #: flatcamEditors/FlatCAMGeoEditor.py:897
  2447. #: flatcamEditors/FlatCAMGrbEditor.py:5091 flatcamTools/ToolTransform.py:296
  2448. msgid "Flip on X"
  2449. msgstr "Espelhar no X"
  2450. #: flatcamEditors/FlatCAMGeoEditor.py:899
  2451. #: flatcamEditors/FlatCAMGeoEditor.py:907
  2452. #: flatcamEditors/FlatCAMGrbEditor.py:5093
  2453. #: flatcamEditors/FlatCAMGrbEditor.py:5101
  2454. msgid ""
  2455. "Flip the selected shape(s) over the X axis.\n"
  2456. "Does not create a new shape."
  2457. msgstr ""
  2458. "Espelha as formas selecionadas sobre o eixo X.\n"
  2459. "Não cria uma nova forma."
  2460. #: flatcamEditors/FlatCAMGeoEditor.py:905
  2461. #: flatcamEditors/FlatCAMGrbEditor.py:5099 flatcamTools/ToolTransform.py:304
  2462. msgid "Flip on Y"
  2463. msgstr "Espelhar no Y"
  2464. #: flatcamEditors/FlatCAMGeoEditor.py:914
  2465. #: flatcamEditors/FlatCAMGrbEditor.py:5108
  2466. msgid "Ref Pt"
  2467. msgstr "Ponto de Referência"
  2468. #: flatcamEditors/FlatCAMGeoEditor.py:916
  2469. #: flatcamEditors/FlatCAMGrbEditor.py:5110
  2470. msgid ""
  2471. "Flip the selected shape(s)\n"
  2472. "around the point in Point Entry Field.\n"
  2473. "\n"
  2474. "The point coordinates can be captured by\n"
  2475. "left click on canvas together with pressing\n"
  2476. "SHIFT key. \n"
  2477. "Then click Add button to insert coordinates.\n"
  2478. "Or enter the coords in format (x, y) in the\n"
  2479. "Point Entry field and click Flip on X(Y)"
  2480. msgstr ""
  2481. "Espelha a(s) forma(s) selecionada(s)\n"
  2482. "em relação às coordenadas abaixo.\n"
  2483. "\n"
  2484. "As coordenadas do ponto podem ser inseridas:\n"
  2485. "- com clique no botão esquerdo junto com a tecla\n"
  2486. " SHIFT pressionada, e clicar no botão Adicionar.\n"
  2487. "- ou digitar as coordenadas no formato (x, y) no campo\n"
  2488. " Ponto de Ref. e clicar em Espelhar no X(Y)"
  2489. #: flatcamEditors/FlatCAMGeoEditor.py:928
  2490. #: flatcamEditors/FlatCAMGrbEditor.py:5122
  2491. msgid "Point:"
  2492. msgstr "Ponto:"
  2493. #: flatcamEditors/FlatCAMGeoEditor.py:930
  2494. #: flatcamEditors/FlatCAMGrbEditor.py:5124
  2495. msgid ""
  2496. "Coordinates in format (x, y) used as reference for mirroring.\n"
  2497. "The 'x' in (x, y) will be used when using Flip on X and\n"
  2498. "the 'y' in (x, y) will be used when using Flip on Y."
  2499. msgstr ""
  2500. "Coordenadas no formato (x, y) usadas como referência para espelhamento. \n"
  2501. "O 'x' em (x, y) será usado ao usar Espelhar em X e\n"
  2502. "o 'y' em (x, y) será usado ao usar Espelhar em Y."
  2503. #: flatcamEditors/FlatCAMGeoEditor.py:942
  2504. #: flatcamEditors/FlatCAMGrbEditor.py:5136 flatcamTools/ToolTransform.py:340
  2505. msgid ""
  2506. "The point coordinates can be captured by\n"
  2507. "left click on canvas together with pressing\n"
  2508. "SHIFT key. Then click Add button to insert."
  2509. msgstr ""
  2510. "As coordenadas do ponto podem ser capturadas por\n"
  2511. "botão esquerdo na tela junto com a tecla\n"
  2512. "SHIFT pressionada. Em seguida, clique no botão Adicionar para inserir."
  2513. #: flatcamEditors/FlatCAMGeoEditor.py:1058
  2514. #: flatcamEditors/FlatCAMGrbEditor.py:5262
  2515. msgid "Transformation cancelled. No shape selected."
  2516. msgstr "Transformação cancelada. Nenhuma forma selecionada."
  2517. #: flatcamEditors/FlatCAMGeoEditor.py:1267
  2518. #: flatcamEditors/FlatCAMGrbEditor.py:5508
  2519. msgid "No shape selected. Please Select a shape to rotate!"
  2520. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2521. "para girar!""
  2522. #: flatcamEditors/FlatCAMGeoEditor.py:1270
  2523. #: flatcamEditors/FlatCAMGrbEditor.py:5511 flatcamTools/ToolTransform.py:646
  2524. msgid "Appying Rotate"
  2525. msgstr "Aplicando Girar"
  2526. #: flatcamEditors/FlatCAMGeoEditor.py:1299
  2527. #: flatcamEditors/FlatCAMGrbEditor.py:5545
  2528. msgid "Done. Rotate completed."
  2529. msgstr "Girar concluído."
  2530. #: flatcamEditors/FlatCAMGeoEditor.py:1305
  2531. msgid "Rotation action was not executed"
  2532. msgstr "O giro não foi executado"
  2533. #: flatcamEditors/FlatCAMGeoEditor.py:1317
  2534. #: flatcamEditors/FlatCAMGrbEditor.py:5566
  2535. msgid "No shape selected. Please Select a shape to flip!"
  2536. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2537. "para espelhar!"
  2538. #: flatcamEditors/FlatCAMGeoEditor.py:1320
  2539. #: flatcamEditors/FlatCAMGrbEditor.py:5569 flatcamTools/ToolTransform.py:699
  2540. msgid "Applying Flip"
  2541. msgstr "Aplicando Espelhamento"
  2542. #: flatcamEditors/FlatCAMGeoEditor.py:1351
  2543. #: flatcamEditors/FlatCAMGrbEditor.py:5609 flatcamTools/ToolTransform.py:742
  2544. msgid "Flip on the Y axis done"
  2545. msgstr "Concluído o espelhamento no eixo Y"
  2546. #: flatcamEditors/FlatCAMGeoEditor.py:1355
  2547. #: flatcamEditors/FlatCAMGrbEditor.py:5618 flatcamTools/ToolTransform.py:752
  2548. msgid "Flip on the X axis done"
  2549. msgstr "Concluído o espelhamento no eixo Y"
  2550. #: flatcamEditors/FlatCAMGeoEditor.py:1366
  2551. msgid "Flip action was not executed"
  2552. msgstr "O espelhamento não foi executado"
  2553. #: flatcamEditors/FlatCAMGeoEditor.py:1376
  2554. #: flatcamEditors/FlatCAMGrbEditor.py:5640
  2555. msgid "No shape selected. Please Select a shape to shear/skew!"
  2556. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2557. "para inclinar!"
  2558. #: flatcamEditors/FlatCAMGeoEditor.py:1379
  2559. #: flatcamEditors/FlatCAMGrbEditor.py:5643 flatcamTools/ToolTransform.py:772
  2560. msgid "Applying Skew"
  2561. msgstr "Inclinando"
  2562. #: flatcamEditors/FlatCAMGeoEditor.py:1405
  2563. #: flatcamEditors/FlatCAMGrbEditor.py:5680
  2564. msgid "Skew on the X axis done"
  2565. msgstr "Inclinação no eixo X concluída"
  2566. #: flatcamEditors/FlatCAMGeoEditor.py:1408
  2567. #: flatcamEditors/FlatCAMGrbEditor.py:5683
  2568. msgid "Skew on the Y axis done"
  2569. msgstr "Inclinação no eixo Y concluída"
  2570. #: flatcamEditors/FlatCAMGeoEditor.py:1413
  2571. msgid "Skew action was not executed"
  2572. msgstr "A inclinação não foi executada"
  2573. #: flatcamEditors/FlatCAMGeoEditor.py:1425
  2574. #: flatcamEditors/FlatCAMGrbEditor.py:5708
  2575. msgid "No shape selected. Please Select a shape to scale!"
  2576. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2577. "para redimensionar!"
  2578. #: flatcamEditors/FlatCAMGeoEditor.py:1428
  2579. #: flatcamEditors/FlatCAMGrbEditor.py:5711 flatcamTools/ToolTransform.py:823
  2580. msgid "Applying Scale"
  2581. msgstr "Redimensionando"
  2582. #: flatcamEditors/FlatCAMGeoEditor.py:1463
  2583. #: flatcamEditors/FlatCAMGrbEditor.py:5751
  2584. msgid "Scale on the X axis done"
  2585. msgstr "Redimensionamento no eixo X concluído"
  2586. #: flatcamEditors/FlatCAMGeoEditor.py:1466
  2587. #: flatcamEditors/FlatCAMGrbEditor.py:5754
  2588. msgid "Scale on the Y axis done"
  2589. msgstr "Redimensionamento no eixo Y concluído"
  2590. #: flatcamEditors/FlatCAMGeoEditor.py:1470
  2591. msgid "Scale action was not executed"
  2592. msgstr "O redimensionamento não foi executado"
  2593. #: flatcamEditors/FlatCAMGeoEditor.py:1480
  2594. #: flatcamEditors/FlatCAMGrbEditor.py:5772
  2595. msgid "No shape selected. Please Select a shape to offset!"
  2596. msgstr "Nenhuma forma selecionada. Por favor, selecione uma forma "
  2597. "para deslocar!"
  2598. #: flatcamEditors/FlatCAMGeoEditor.py:1483
  2599. #: flatcamEditors/FlatCAMGrbEditor.py:5775 flatcamTools/ToolTransform.py:878
  2600. msgid "Applying Offset"
  2601. msgstr "Deslocando"
  2602. #: flatcamEditors/FlatCAMGeoEditor.py:1496
  2603. #: flatcamEditors/FlatCAMGrbEditor.py:5799
  2604. msgid "Offset on the X axis done"
  2605. msgstr "Deslocamento no eixo X concluído"
  2606. #: flatcamEditors/FlatCAMGeoEditor.py:1499
  2607. #: flatcamEditors/FlatCAMGrbEditor.py:5802
  2608. msgid "Offset on the Y axis done"
  2609. msgstr "Deslocamento no eixo Y concluído"
  2610. #: flatcamEditors/FlatCAMGeoEditor.py:1504
  2611. msgid "Offset action was not executed"
  2612. msgstr "O deslocamento não foi executado"
  2613. #: flatcamEditors/FlatCAMGeoEditor.py:1508
  2614. #: flatcamEditors/FlatCAMGrbEditor.py:5811
  2615. msgid "Rotate ..."
  2616. msgstr "Girar ..."
  2617. #: flatcamEditors/FlatCAMGeoEditor.py:1509
  2618. #: flatcamEditors/FlatCAMGeoEditor.py:1564
  2619. #: flatcamEditors/FlatCAMGeoEditor.py:1581
  2620. #: flatcamEditors/FlatCAMGrbEditor.py:5812
  2621. #: flatcamEditors/FlatCAMGrbEditor.py:5867
  2622. #: flatcamEditors/FlatCAMGrbEditor.py:5884
  2623. msgid "Enter an Angle Value (degrees)"
  2624. msgstr "Digite um valor para o ângulo (graus)"
  2625. #: flatcamEditors/FlatCAMGeoEditor.py:1518
  2626. #: flatcamEditors/FlatCAMGrbEditor.py:5821
  2627. msgid "Geometry shape rotate done"
  2628. msgstr "Rotação da geometria concluída"
  2629. #: flatcamEditors/FlatCAMGeoEditor.py:1522
  2630. #: flatcamEditors/FlatCAMGrbEditor.py:5825
  2631. msgid "Geometry shape rotate cancelled"
  2632. msgstr "Rotação da geometria cancelada"
  2633. #: flatcamEditors/FlatCAMGeoEditor.py:1527
  2634. #: flatcamEditors/FlatCAMGrbEditor.py:5830
  2635. msgid "Offset on X axis ..."
  2636. msgstr "Deslocamento no eixo X ..."
  2637. #: flatcamEditors/FlatCAMGeoEditor.py:1528
  2638. #: flatcamEditors/FlatCAMGeoEditor.py:1547
  2639. #: flatcamEditors/FlatCAMGrbEditor.py:5831
  2640. #: flatcamEditors/FlatCAMGrbEditor.py:5850
  2641. msgid "Enter a distance Value"
  2642. msgstr "Digite um valor para a distância"
  2643. #: flatcamEditors/FlatCAMGeoEditor.py:1537
  2644. #: flatcamEditors/FlatCAMGrbEditor.py:5840
  2645. msgid "Geometry shape offset on X axis done"
  2646. msgstr "Deslocamento da forma no eixo X concluído"
  2647. #: flatcamEditors/FlatCAMGeoEditor.py:1541
  2648. #: flatcamEditors/FlatCAMGrbEditor.py:5844
  2649. msgid "Geometry shape offset X cancelled"
  2650. msgstr "Deslocamento da forma no eixo X cancelado"
  2651. #: flatcamEditors/FlatCAMGeoEditor.py:1546
  2652. #: flatcamEditors/FlatCAMGrbEditor.py:5849
  2653. msgid "Offset on Y axis ..."
  2654. msgstr "Deslocamento no eixo Y ..."
  2655. #: flatcamEditors/FlatCAMGeoEditor.py:1556
  2656. #: flatcamEditors/FlatCAMGrbEditor.py:5859
  2657. msgid "Geometry shape offset on Y axis done"
  2658. msgstr "Deslocamento da forma no eixo Y concluído"
  2659. #: flatcamEditors/FlatCAMGeoEditor.py:1560
  2660. msgid "Geometry shape offset on Y axis canceled"
  2661. msgstr "Deslocamento da forma no eixo Y cancelado"
  2662. #: flatcamEditors/FlatCAMGeoEditor.py:1563
  2663. #: flatcamEditors/FlatCAMGrbEditor.py:5866
  2664. msgid "Skew on X axis ..."
  2665. msgstr "Inclinação no eixo X ..."
  2666. #: flatcamEditors/FlatCAMGeoEditor.py:1573
  2667. #: flatcamEditors/FlatCAMGrbEditor.py:5876
  2668. msgid "Geometry shape skew on X axis done"
  2669. msgstr "Inclinação no eixo X concluída"
  2670. #: flatcamEditors/FlatCAMGeoEditor.py:1577
  2671. msgid "Geometry shape skew on X axis canceled"
  2672. msgstr "Inclinação no eixo X cancelada"
  2673. #: flatcamEditors/FlatCAMGeoEditor.py:1580
  2674. #: flatcamEditors/FlatCAMGrbEditor.py:5883
  2675. msgid "Skew on Y axis ..."
  2676. msgstr "Inclinação no eixo Y ..."
  2677. #: flatcamEditors/FlatCAMGeoEditor.py:1590
  2678. #: flatcamEditors/FlatCAMGrbEditor.py:5893
  2679. msgid "Geometry shape skew on Y axis done"
  2680. msgstr "Inclinação no eixo Y concluída"
  2681. #: flatcamEditors/FlatCAMGeoEditor.py:1594
  2682. msgid "Geometry shape skew on Y axis canceled"
  2683. msgstr "Inclinação no eixo Y cancelada"
  2684. #: flatcamEditors/FlatCAMGeoEditor.py:1958
  2685. #: flatcamEditors/FlatCAMGeoEditor.py:2010
  2686. #: flatcamEditors/FlatCAMGrbEditor.py:1396
  2687. #: flatcamEditors/FlatCAMGrbEditor.py:1466
  2688. msgid "Click on Center point ..."
  2689. msgstr "Clique no ponto central ..."
  2690. #: flatcamEditors/FlatCAMGeoEditor.py:1965
  2691. #: flatcamEditors/FlatCAMGrbEditor.py:1404
  2692. msgid "Click on Perimeter point to complete ..."
  2693. msgstr "Clique no ponto Perímetro para completar ..."
  2694. #: flatcamEditors/FlatCAMGeoEditor.py:1995
  2695. msgid "Done. Adding Circle completed."
  2696. msgstr "Círculo adicionado."
  2697. #: flatcamEditors/FlatCAMGeoEditor.py:2030
  2698. #: flatcamEditors/FlatCAMGrbEditor.py:1498
  2699. msgid "Click on Start point ..."
  2700. msgstr "Clique no ponto inicial ..."
  2701. #: flatcamEditors/FlatCAMGeoEditor.py:2032
  2702. #: flatcamEditors/FlatCAMGrbEditor.py:1500
  2703. msgid "Click on Point3 ..."
  2704. msgstr "Clique no ponto 3 ..."
  2705. #: flatcamEditors/FlatCAMGeoEditor.py:2034
  2706. #: flatcamEditors/FlatCAMGrbEditor.py:1502
  2707. msgid "Click on Stop point ..."
  2708. msgstr "Clique no ponto de parada ..."
  2709. #: flatcamEditors/FlatCAMGeoEditor.py:2039
  2710. #: flatcamEditors/FlatCAMGrbEditor.py:1507
  2711. msgid "Click on Stop point to complete ..."
  2712. msgstr "Clique no ponto de parada para completar ..."
  2713. #: flatcamEditors/FlatCAMGeoEditor.py:2041
  2714. #: flatcamEditors/FlatCAMGrbEditor.py:1509
  2715. msgid "Click on Point2 to complete ..."
  2716. msgstr "Clique no ponto 2 para completar ..."
  2717. #: flatcamEditors/FlatCAMGeoEditor.py:2043
  2718. #: flatcamEditors/FlatCAMGrbEditor.py:1511
  2719. msgid "Click on Center point to complete ..."
  2720. msgstr "Clique no ponto central para completar ..."
  2721. #: flatcamEditors/FlatCAMGeoEditor.py:2055
  2722. #: flatcamEditors/FlatCAMGrbEditor.py:1523
  2723. #, python-format
  2724. msgid "Direction: %s"
  2725. msgstr "Direção: %s"
  2726. #: flatcamEditors/FlatCAMGeoEditor.py:2065
  2727. #: flatcamEditors/FlatCAMGrbEditor.py:1533
  2728. msgid "Mode: Start -> Stop -> Center. Click on Start point ..."
  2729. msgstr "Modo: Iniciar -> Parar -> Centro. Clique no ponto inicial ..."
  2730. #: flatcamEditors/FlatCAMGeoEditor.py:2068
  2731. #: flatcamEditors/FlatCAMGrbEditor.py:1536
  2732. msgid "Mode: Point1 -> Point3 -> Point2. Click on Point1 ..."
  2733. msgstr "Modo: Ponto 1 -> Ponto 3 -> Ponto 2. Clique no Ponto 1 ..."
  2734. #: flatcamEditors/FlatCAMGeoEditor.py:2071
  2735. #: flatcamEditors/FlatCAMGrbEditor.py:1539
  2736. msgid "Mode: Center -> Start -> Stop. Click on Center point ..."
  2737. msgstr "Modo: Centro -> Iniciar -> Parar. Clique no ponto central ..."
  2738. #: flatcamEditors/FlatCAMGeoEditor.py:2210
  2739. msgid "Done. Arc completed."
  2740. msgstr "Arco adicionado."
  2741. #: flatcamEditors/FlatCAMGeoEditor.py:2229
  2742. #: flatcamEditors/FlatCAMGeoEditor.py:2283
  2743. #: flatcamEditors/FlatCAMGeoEditor.py:2656
  2744. msgid "Click on 1st corner ..."
  2745. msgstr "Clique no primeiro canto ..."
  2746. #: flatcamEditors/FlatCAMGeoEditor.py:2235
  2747. msgid "Click on opposite corner to complete ..."
  2748. msgstr "Clique no canto oposto para completar ..."
  2749. #: flatcamEditors/FlatCAMGeoEditor.py:2264
  2750. msgid "Done. Rectangle completed."
  2751. msgstr "Retângulo adicionado."
  2752. #: flatcamEditors/FlatCAMGeoEditor.py:2290
  2753. msgid "Click on next Point or click right mouse button to complete ..."
  2754. msgstr "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2755. "completar ..."
  2756. #: flatcamEditors/FlatCAMGeoEditor.py:2319
  2757. msgid "Done. Polygon completed."
  2758. msgstr "Polígono adicionado."
  2759. #: flatcamEditors/FlatCAMGeoEditor.py:2329
  2760. #: flatcamEditors/FlatCAMGeoEditor.py:2375
  2761. #: flatcamEditors/FlatCAMGrbEditor.py:1085
  2762. #: flatcamEditors/FlatCAMGrbEditor.py:1287
  2763. msgid "Backtracked one point ..."
  2764. msgstr "Retrocedeu um ponto ..."
  2765. #: flatcamEditors/FlatCAMGeoEditor.py:2357
  2766. msgid "[success] Done. Path completed."
  2767. msgstr "Caminho concluído."
  2768. #: flatcamEditors/FlatCAMGeoEditor.py:2475
  2769. msgid "MOVE: No shape selected. Select a shape to move"
  2770. msgstr "MOVER: Nenhuma forma selecionada. Selecione uma forma para mover"
  2771. #: flatcamEditors/FlatCAMGeoEditor.py:2477
  2772. #: flatcamEditors/FlatCAMGeoEditor.py:2489
  2773. msgid " MOVE: Click on reference point ..."
  2774. msgstr "MOVER: Clique no ponto de referência ..."
  2775. #: flatcamEditors/FlatCAMGeoEditor.py:2480
  2776. msgid " Click on destination point ..."
  2777. msgstr "Clique no ponto de destino ..."
  2778. #: flatcamEditors/FlatCAMGeoEditor.py:2515
  2779. msgid "Done. Geometry(s) Move completed."
  2780. msgstr "Movimento de Geometria(s) concluído."
  2781. #: flatcamEditors/FlatCAMGeoEditor.py:2636
  2782. msgid "Done. Geometry(s) Copy completed."
  2783. msgstr "Geometria(s) copiada(s)."
  2784. #: flatcamEditors/FlatCAMGeoEditor.py:2673
  2785. msgid ""
  2786. "Font not supported. Only Regular, Bold, Italic and BoldItalic are supported. "
  2787. "Error"
  2788. msgstr ""
  2789. "Fonte não suportada. Apenas Regular, Bold, Italic e BoldItalic são "
  2790. "suportados. Erro"
  2791. #: flatcamEditors/FlatCAMGeoEditor.py:2681
  2792. msgid "No text to add."
  2793. msgstr "Nenhum texto para adicionar."
  2794. #: flatcamEditors/FlatCAMGeoEditor.py:2688
  2795. msgid " Done. Adding Text completed."
  2796. msgstr "Texto adicionado."
  2797. #: flatcamEditors/FlatCAMGeoEditor.py:2716
  2798. msgid "Create buffer geometry ..."
  2799. msgstr "Criar buffer de geometria ..."
  2800. #: flatcamEditors/FlatCAMGeoEditor.py:2728
  2801. #: flatcamEditors/FlatCAMGeoEditor.py:2758
  2802. #: flatcamEditors/FlatCAMGeoEditor.py:2788
  2803. msgid "Buffer cancelled. No shape selected."
  2804. msgstr "Buffer cancelado. Nenhuma forma selecionada."
  2805. #: flatcamEditors/FlatCAMGeoEditor.py:2753
  2806. #: flatcamEditors/FlatCAMGrbEditor.py:4674
  2807. msgid "Done. Buffer Tool completed."
  2808. msgstr "Buffer concluído."
  2809. #: flatcamEditors/FlatCAMGeoEditor.py:2783
  2810. msgid "Done. Buffer Int Tool completed."
  2811. msgstr "Buffer Interno concluído."
  2812. #: flatcamEditors/FlatCAMGeoEditor.py:2813
  2813. msgid "Done. Buffer Ext Tool completed."
  2814. msgstr "Buffer Externo concluído."
  2815. #: flatcamEditors/FlatCAMGeoEditor.py:2848
  2816. #: flatcamEditors/FlatCAMGrbEditor.py:2068
  2817. msgid "Select a shape to act as deletion area ..."
  2818. msgstr "Selecione uma forma para atuar como área de exclusão ..."
  2819. #: flatcamEditors/FlatCAMGeoEditor.py:2850
  2820. #: flatcamEditors/FlatCAMGeoEditor.py:2869
  2821. #: flatcamEditors/FlatCAMGeoEditor.py:2875
  2822. #: flatcamEditors/FlatCAMGrbEditor.py:2070
  2823. msgid "Click to pick-up the erase shape..."
  2824. msgstr "Clique para pegar a forma a apagar ..."
  2825. #: flatcamEditors/FlatCAMGeoEditor.py:2879
  2826. #: flatcamEditors/FlatCAMGrbEditor.py:2127
  2827. msgid "Click to erase ..."
  2828. msgstr "Clique para apagar ..."
  2829. #: flatcamEditors/FlatCAMGeoEditor.py:2909
  2830. #: flatcamEditors/FlatCAMGrbEditor.py:2161
  2831. msgid "Done. Eraser tool action completed."
  2832. msgstr "Apagado."
  2833. #: flatcamEditors/FlatCAMGeoEditor.py:2952
  2834. msgid "Create Paint geometry ..."
  2835. msgstr "Criar geometria de pintura ..."
  2836. #: flatcamEditors/FlatCAMGeoEditor.py:2966
  2837. #: flatcamEditors/FlatCAMGrbEditor.py:2312
  2838. msgid "Shape transformations ..."
  2839. msgstr "Transformações de forma ..."
  2840. #: flatcamEditors/FlatCAMGeoEditor.py:3545
  2841. msgid "Editing MultiGeo Geometry, tool"
  2842. msgstr "Editando Geometria MultiGeo, ferramenta"
  2843. #: flatcamEditors/FlatCAMGeoEditor.py:3547
  2844. msgid "with diameter"
  2845. msgstr "com diâmetro"
  2846. #: flatcamEditors/FlatCAMGeoEditor.py:3924
  2847. msgid "Copy cancelled. No shape selected."
  2848. msgstr "Cópia cancelada. Nenhuma forma selecionada."
  2849. #: flatcamEditors/FlatCAMGeoEditor.py:3931 flatcamGUI/FlatCAMGUI.py:2882
  2850. #: flatcamGUI/FlatCAMGUI.py:2928 flatcamGUI/FlatCAMGUI.py:2946
  2851. #: flatcamGUI/FlatCAMGUI.py:3077 flatcamGUI/FlatCAMGUI.py:3089
  2852. #: flatcamGUI/FlatCAMGUI.py:3123 flatcamGUI/FlatCAMGUI.py:3180
  2853. msgid "Click on target point."
  2854. msgstr "Clique no ponto alvo."
  2855. #: flatcamEditors/FlatCAMGeoEditor.py:4175
  2856. #: flatcamEditors/FlatCAMGeoEditor.py:4210
  2857. msgid "A selection of at least 2 geo items is required to do Intersection."
  2858. msgstr "É necessária uma seleção de pelo menos 2 itens geométricos "
  2859. "para fazer a interseção."
  2860. #: flatcamEditors/FlatCAMGeoEditor.py:4296
  2861. #: flatcamEditors/FlatCAMGeoEditor.py:4405
  2862. msgid ""
  2863. "Negative buffer value is not accepted. Use Buffer interior to generate an "
  2864. "'inside' shape"
  2865. msgstr "Valor de buffer negativo não é aceito. Use o Buffer interior "
  2866. "para gerar uma forma 'interna'"
  2867. #: flatcamEditors/FlatCAMGeoEditor.py:4306
  2868. #: flatcamEditors/FlatCAMGeoEditor.py:4362
  2869. #: flatcamEditors/FlatCAMGeoEditor.py:4414
  2870. msgid "Nothing selected for buffering."
  2871. msgstr "Nada selecionado para armazenamento em buffer."
  2872. #: flatcamEditors/FlatCAMGeoEditor.py:4311
  2873. #: flatcamEditors/FlatCAMGeoEditor.py:4367
  2874. #: flatcamEditors/FlatCAMGeoEditor.py:4419
  2875. msgid "Invalid distance for buffering."
  2876. msgstr "Distância inválida para armazenamento em buffer."
  2877. #: flatcamEditors/FlatCAMGeoEditor.py:4335
  2878. #: flatcamEditors/FlatCAMGeoEditor.py:4439
  2879. msgid "Failed, the result is empty. Choose a different buffer value."
  2880. msgstr "Falhou, o resultado está vazio. Escolha um valor diferente para o buffer."
  2881. #: flatcamEditors/FlatCAMGeoEditor.py:4346
  2882. msgid "Full buffer geometry created."
  2883. msgstr "Buffer de geometria completa criado."
  2884. #: flatcamEditors/FlatCAMGeoEditor.py:4353
  2885. msgid "Negative buffer value is not accepted."
  2886. msgstr "Valor de buffer negativo não é aceito."
  2887. #: flatcamEditors/FlatCAMGeoEditor.py:4387
  2888. msgid "Failed, the result is empty. Choose a smaller buffer value."
  2889. msgstr "alhou, o resultado está vazio. Escolha um valor menor para o buffer."
  2890. #: flatcamEditors/FlatCAMGeoEditor.py:4398
  2891. msgid "Interior buffer geometry created."
  2892. msgstr "Buffer de Geometria interna criado."
  2893. #: flatcamEditors/FlatCAMGeoEditor.py:4450
  2894. msgid "Exterior buffer geometry created."
  2895. msgstr "Buffer de Geometria externa criado."
  2896. #: flatcamEditors/FlatCAMGeoEditor.py:4515
  2897. msgid "Nothing selected for painting."
  2898. msgstr "Nada selecionado para pintura."
  2899. #: flatcamEditors/FlatCAMGeoEditor.py:4522
  2900. msgid "Invalid value for"
  2901. msgstr "Valor inválido para"
  2902. #: flatcamEditors/FlatCAMGeoEditor.py:4528
  2903. #, python-format
  2904. msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
  2905. msgstr "Não foi possível fazer a Pintura. O valor de sobreposição deve "
  2906. "ser menor do que 1.00 (100%%)."
  2907. #: flatcamEditors/FlatCAMGeoEditor.py:4587
  2908. #, python-format
  2909. msgid ""
  2910. "Could not do Paint. Try a different combination of parameters. Or a "
  2911. "different method of Paint\n"
  2912. "%s"
  2913. msgstr ""
  2914. "Não foi possível pintar. Tente uma combinação diferente de "
  2915. "parâmetros, ou um método diferente de Pintura\n"
  2916. "%s"
  2917. #: flatcamEditors/FlatCAMGeoEditor.py:4598
  2918. msgid "[success] Paint done."
  2919. msgstr "Pintura concluída."
  2920. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2921. msgid "To add an Pad first select a aperture in Aperture Table"
  2922. msgstr "Para adicionar um Pad, primeiro selecione uma abertura na "
  2923. "Tabela de Aberturas"
  2924. #: flatcamEditors/FlatCAMGrbEditor.py:215
  2925. #: flatcamEditors/FlatCAMGrbEditor.py:409
  2926. msgid "Aperture size is zero. It needs to be greater than zero."
  2927. msgstr "O tamanho da abertura é zero. Precisa ser maior que zero."
  2928. #: flatcamEditors/FlatCAMGrbEditor.py:366
  2929. #: flatcamEditors/FlatCAMGrbEditor.py:674
  2930. msgid ""
  2931. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2932. msgstr ""
  2933. "Tipo de abertura incompatível. Selecione uma abertura do tipo 'C', 'R' ou 'O'."
  2934. #: flatcamEditors/FlatCAMGrbEditor.py:379
  2935. msgid "Done. Adding Pad completed."
  2936. msgstr "Pad adicionado."
  2937. #: flatcamEditors/FlatCAMGrbEditor.py:401
  2938. msgid "To add an Pad Array first select a aperture in Aperture Table"
  2939. msgstr "Para adicionar uma Matriz de Pads, primeiro selecione uma "
  2940. "abertura na Tabela de Aberturas"
  2941. #: flatcamEditors/FlatCAMGrbEditor.py:479
  2942. msgid "Click on the Pad Circular Array Start position"
  2943. msgstr "Clique na posição inicial da Matriz Circular de Pads"
  2944. #: flatcamEditors/FlatCAMGrbEditor.py:700
  2945. msgid "Too many Pads for the selected spacing angle."
  2946. msgstr "Muitos Pads para o ângulo de espaçamento selecionado."
  2947. #: flatcamEditors/FlatCAMGrbEditor.py:723
  2948. msgid "Done. Pad Array added."
  2949. msgstr "Matriz de pads adicionada."
  2950. #: flatcamEditors/FlatCAMGrbEditor.py:744
  2951. msgid "Select shape(s) and then click ..."
  2952. msgstr "Selecione a(s) forma(s) e então clique ..."
  2953. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2954. msgid "Failed. Nothing selected."
  2955. msgstr "Falhou. Nada selecionado."
  2956. #: flatcamEditors/FlatCAMGrbEditor.py:772
  2957. msgid ""
  2958. "Failed. Poligonize works only on geometries belonging to the same aperture."
  2959. msgstr ""
  2960. "Falhou. Poligonize funciona apenas em geometrias pertencentes à mesma abertura."
  2961. #: flatcamEditors/FlatCAMGrbEditor.py:826
  2962. msgid "Done. Poligonize completed."
  2963. msgstr "Poligonizar concluído."
  2964. #: flatcamEditors/FlatCAMGrbEditor.py:879
  2965. #: flatcamEditors/FlatCAMGrbEditor.py:1102
  2966. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2967. msgid "Corner Mode 1: 45 degrees ..."
  2968. msgstr "Canto Modo 1: 45 graus ..."
  2969. #: flatcamEditors/FlatCAMGrbEditor.py:881
  2970. msgid "Click on 1st point ..."
  2971. msgstr "Clique no primeiro ponto ..."
  2972. #: flatcamEditors/FlatCAMGrbEditor.py:891
  2973. #: flatcamEditors/FlatCAMGrbEditor.py:1202
  2974. msgid "Click on next Point or click Right mouse button to complete ..."
  2975. msgstr ""
  2976. "Clique no próximo ponto ou clique com o botão direito do mouse para "
  2977. "completar ..."
  2978. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2979. #: flatcamEditors/FlatCAMGrbEditor.py:1123
  2980. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2981. msgstr "Canto Modo 2: 45 graus invertido ..."
  2982. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2983. #: flatcamEditors/FlatCAMGrbEditor.py:1120
  2984. msgid "Corner Mode 3: 90 degrees ..."
  2985. msgstr "Canto Modo 3: 90 graus ..."
  2986. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2987. #: flatcamEditors/FlatCAMGrbEditor.py:1117
  2988. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2989. msgstr "Canto Modo 4: 90 graus invertido ..."
  2990. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2991. #: flatcamEditors/FlatCAMGrbEditor.py:1114
  2992. msgid "Corner Mode 5: Free angle ..."
  2993. msgstr "Canto Modo 5: Ângulo livre ..."
  2994. #: flatcamEditors/FlatCAMGrbEditor.py:1153
  2995. #: flatcamEditors/FlatCAMGrbEditor.py:1319
  2996. #: flatcamEditors/FlatCAMGrbEditor.py:1358
  2997. msgid "Track Mode 1: 45 degrees ..."
  2998. msgstr "Trilha Modo 1: 45 graus ..."
  2999. #: flatcamEditors/FlatCAMGrbEditor.py:1299
  3000. #: flatcamEditors/FlatCAMGrbEditor.py:1353
  3001. msgid "Track Mode 2: Reverse 45 degrees ..."
  3002. msgstr "Trilha Modo 2: 45 graus invertido ..."
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:1304
  3004. #: flatcamEditors/FlatCAMGrbEditor.py:1348
  3005. msgid "Track Mode 3: 90 degrees ..."
  3006. msgstr "Trilha Modo 3: 90 graus ..."
  3007. #: flatcamEditors/FlatCAMGrbEditor.py:1309
  3008. #: flatcamEditors/FlatCAMGrbEditor.py:1343
  3009. msgid "Track Mode 4: Reverse 90 degrees ..."
  3010. msgstr "Trilha Modo 4: 90 graus invertido ..."
  3011. #: flatcamEditors/FlatCAMGrbEditor.py:1314
  3012. #: flatcamEditors/FlatCAMGrbEditor.py:1338
  3013. msgid "Track Mode 5: Free angle ..."
  3014. msgstr "Trilha Modo 5: Ângulo livre ..."
  3015. #: flatcamEditors/FlatCAMGrbEditor.py:1720
  3016. msgid "Scale the selected Gerber apertures ..."
  3017. msgstr "Redimensiona as aberturas de Gerber selecionadas ..."
  3018. #: flatcamEditors/FlatCAMGrbEditor.py:1762
  3019. msgid "Buffer the selected apertures ..."
  3020. msgstr "Buffer das aberturas selecionadas ..."
  3021. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  3022. msgid "Mark polygon areas in the edited Gerber ..."
  3023. msgstr "Marca áreas de polígonos no Gerber editado..."
  3024. #: flatcamEditors/FlatCAMGrbEditor.py:1852
  3025. msgid "Nothing selected to move"
  3026. msgstr "Nada selecionado para mover"
  3027. #: flatcamEditors/FlatCAMGrbEditor.py:1976
  3028. msgid "Done. Apertures Move completed."
  3029. msgstr "Aberturas movidas."
  3030. #: flatcamEditors/FlatCAMGrbEditor.py:2053
  3031. msgid "Done. Apertures copied."
  3032. msgstr "Aberturas copiadas."
  3033. #: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
  3034. #: flatcamGUI/FlatCAMGUI.py:4629
  3035. msgid "Gerber Editor"
  3036. msgstr "Editor Gerber"
  3037. #: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
  3038. #: flatcamTools/ToolProperties.py:137
  3039. msgid "Apertures"
  3040. msgstr "Aberturas"
  3041. #: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
  3042. msgid "Apertures Table for the Gerber Object."
  3043. msgstr "Tabela de Aberturas para o Objeto Gerber."
  3044. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3045. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3046. msgid "Code"
  3047. msgstr "Código"
  3048. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3050. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  3051. msgid "Type"
  3052. msgstr "Tipo"
  3053. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3054. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3055. msgid "Size"
  3056. msgstr "Tamanho"
  3057. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3058. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3059. msgid "Dim"
  3060. msgstr "Dim"
  3061. #: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
  3062. msgid "Index"
  3063. msgstr "Índice"
  3064. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  3065. #: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
  3066. msgid "Aperture Code"
  3067. msgstr "Código de Abertura"
  3068. #: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
  3069. msgid "Type of aperture: circular, rectangle, macros etc"
  3070. msgstr "Tipo de abertura: circular, retângulo, macros etc"
  3071. #: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
  3072. msgid "Aperture Size:"
  3073. msgstr "Tamanho da abertura:"
  3074. #: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
  3075. msgid ""
  3076. "Aperture Dimensions:\n"
  3077. " - (width, height) for R, O type.\n"
  3078. " - (dia, nVertices) for P type"
  3079. msgstr ""
  3080. "Dimensões da abertura: \n"
  3081. " - (largura, altura) para o tipo R, O. \n"
  3082. " - (dia, nVertices) para o tipo P"
  3083. #: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
  3084. msgid "Code for the new aperture"
  3085. msgstr "Código para a nova abertura"
  3086. #: flatcamEditors/FlatCAMGrbEditor.py:2430
  3087. msgid "Aperture Size"
  3088. msgstr "Tamanho da abertura"
  3089. #: flatcamEditors/FlatCAMGrbEditor.py:2432
  3090. msgid ""
  3091. "Size for the new aperture.\n"
  3092. "If aperture type is 'R' or 'O' then\n"
  3093. "this value is automatically\n"
  3094. "calculated as:\n"
  3095. "sqrt(width**2 + height**2)"
  3096. msgstr ""
  3097. "Tamanho para a nova abertura.\n"
  3098. "Se o tipo de abertura for 'R' ou 'O' então\n"
  3099. "este valor será automaticamente\n"
  3100. "calculado como:\n"
  3101. "sqrt(largura^2 + altura^2)"
  3102. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  3103. msgid "Aperture Type"
  3104. msgstr "Tipo de Abertura"
  3105. #: flatcamEditors/FlatCAMGrbEditor.py:2446
  3106. msgid ""
  3107. "Select the type of new aperture. Can be:\n"
  3108. "C = circular\n"
  3109. "R = rectangular\n"
  3110. "O = oblong"
  3111. msgstr ""
  3112. "Selecione o tipo da nova abertura. Pode ser:\n"
  3113. "C = circular \n"
  3114. "R = retangular \n"
  3115. "O = oblongo"
  3116. #: flatcamEditors/FlatCAMGrbEditor.py:2457
  3117. msgid "Aperture Dim"
  3118. msgstr "Dim Abertura"
  3119. #: flatcamEditors/FlatCAMGrbEditor.py:2459
  3120. msgid ""
  3121. "Dimensions for the new aperture.\n"
  3122. "Active only for rectangular apertures (type R).\n"
  3123. "The format is (width, height)"
  3124. msgstr ""
  3125. "Dimensões da nova abertura.\n"
  3126. "Ativa apenas para aberturas retangulares (tipo R).\n"
  3127. "O formato é (largura, altura)"
  3128. #: flatcamEditors/FlatCAMGrbEditor.py:2468
  3129. msgid "Add/Delete Aperture"
  3130. msgstr "Adicionar/Excluir Abertura:"
  3131. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  3132. msgid "Add/Delete an aperture in the aperture table"
  3133. msgstr "Adicionar/Excluir uma abertura na tabela de aberturas"
  3134. #: flatcamEditors/FlatCAMGrbEditor.py:2479
  3135. msgid "Add a new aperture to the aperture list."
  3136. msgstr "Adiciona uma nova abertura à lista de aberturas."
  3137. #: flatcamEditors/FlatCAMGrbEditor.py:2484
  3138. msgid "Delete a aperture in the aperture list"
  3139. msgstr "Exclui uma abertura da lista de aberturas"
  3140. #: flatcamEditors/FlatCAMGrbEditor.py:2501
  3141. msgid "Buffer Aperture"
  3142. msgstr "Buffer Abertura"
  3143. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  3144. msgid "Buffer a aperture in the aperture list"
  3145. msgstr "Buffer de uma abertura na lista de aberturas"
  3146. #: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
  3147. msgid "Buffer distance"
  3148. msgstr "Distância do buffer"
  3149. #: flatcamEditors/FlatCAMGrbEditor.py:2514
  3150. msgid "Buffer corner"
  3151. msgstr "Canto do buffer"
  3152. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  3153. msgid ""
  3154. "There are 3 types of corners:\n"
  3155. " - 'Round': the corner is rounded.\n"
  3156. " - 'Square:' the corner is met in a sharp angle.\n"
  3157. " - 'Beveled:' the corner is a line that directly connects the features "
  3158. "meeting in the corner"
  3159. msgstr ""
  3160. "Existem 3 tipos de cantos:\n"
  3161. " - 'Redondo': o canto é arredondado.\n"
  3162. " - 'Quadrado:' o canto é em um ângulo agudo.\n"
  3163. " - 'Chanfrado:' o canto é uma linha que conecta diretamente os recursos "
  3164. "reunidos no canto"
  3165. #: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
  3166. #: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
  3167. #: flatcamGUI/FlatCAMGUI.py:2085
  3168. msgid "Buffer"
  3169. msgstr "Buffer"
  3170. #: flatcamEditors/FlatCAMGrbEditor.py:2546
  3171. msgid "Scale Aperture"
  3172. msgstr "Redim. Abertura"
  3173. #: flatcamEditors/FlatCAMGrbEditor.py:2548
  3174. msgid "Scale a aperture in the aperture list"
  3175. msgstr "Redimensiona uma abertura na lista de aberturas"
  3176. #: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
  3177. msgid "Scale factor"
  3178. msgstr "Fator de Escala"
  3179. #: flatcamEditors/FlatCAMGrbEditor.py:2558
  3180. msgid ""
  3181. "The factor by which to scale the selected aperture.\n"
  3182. "Values can be between 0.0000 and 999.9999"
  3183. msgstr ""
  3184. "O fator para redimensionar a abertura selecionada. \n"
  3185. "Os valores podem estar entre 0.0000 e 999.9999"
  3186. #: flatcamEditors/FlatCAMGrbEditor.py:2584
  3187. msgid "Mark polygon areas"
  3188. msgstr "Marcar áreas de polígono"
  3189. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  3190. msgid "Mark the polygon areas."
  3191. msgstr "Marcar as áreas de polígonos."
  3192. #: flatcamEditors/FlatCAMGrbEditor.py:2594
  3193. msgid "Area UPPER threshold"
  3194. msgstr "Limite de área SUPERIOR"
  3195. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  3196. msgid ""
  3197. "The threshold value, all areas less than this are marked.\n"
  3198. "Can have a value between 0.0000 and 9999.9999"
  3199. msgstr ""
  3200. "Valor limite, todas as áreas menores que isso são marcadas.\n"
  3201. "Pode ser um valor entre 0.0000 e 9999.9999"
  3202. #: flatcamEditors/FlatCAMGrbEditor.py:2602
  3203. msgid "Area LOWER threshold"
  3204. msgstr "Limite de área INFERIOR"
  3205. #: flatcamEditors/FlatCAMGrbEditor.py:2604
  3206. msgid ""
  3207. "The threshold value, all areas more than this are marked.\n"
  3208. "Can have a value between 0.0000 and 9999.9999"
  3209. msgstr ""
  3210. "Valor limite, todas as áreas maiores que isso são marcadas.\n"
  3211. "Pode ser um valor entre 0.0000 e 9999.9999"
  3212. #: flatcamEditors/FlatCAMGrbEditor.py:2617
  3213. msgid "Go"
  3214. msgstr "Ir"
  3215. #: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
  3216. #: flatcamGUI/FlatCAMGUI.py:2075
  3217. msgid "Add Pad Array"
  3218. msgstr "Adicionar Matriz de Pads"
  3219. #: flatcamEditors/FlatCAMGrbEditor.py:2638
  3220. msgid "Add an array of pads (linear or circular array)"
  3221. msgstr "Adicione uma matriz de pads (matriz linear ou circular)"
  3222. #: flatcamEditors/FlatCAMGrbEditor.py:2644
  3223. msgid ""
  3224. "Select the type of pads array to create.\n"
  3225. "It can be Linear X(Y) or Circular"
  3226. msgstr ""
  3227. "Selecione o tipo de matriz de pads para criar.\n"
  3228. "Pode ser Linear X(Y) ou Circular"
  3229. #: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
  3230. msgid "Nr of pads"
  3231. msgstr "Nº de pads"
  3232. #: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
  3233. msgid "Specify how many pads to be in the array."
  3234. msgstr "Especifique quantos pads devem estar na matriz."
  3235. #: flatcamEditors/FlatCAMGrbEditor.py:3153
  3236. #: flatcamEditors/FlatCAMGrbEditor.py:3157
  3237. msgid "Aperture code value is missing or wrong format. Add it and retry."
  3238. msgstr "O valor do código de abertura está ausente ou em formato "
  3239. "incorreto. Altere e tente novamente."
  3240. #: flatcamEditors/FlatCAMGrbEditor.py:3193
  3241. msgid ""
  3242. "Aperture dimensions value is missing or wrong format. Add it in format "
  3243. "(width, height) and retry."
  3244. msgstr "O valor das dimensões da abertura está ausente ou está no "
  3245. "formato errado. Altere (largura, altura) e tente novamente."
  3246. #: flatcamEditors/FlatCAMGrbEditor.py:3206
  3247. msgid "Aperture size value is missing or wrong format. Add it and retry."
  3248. msgstr "O valor do tamanho da abertura está ausente ou está no "
  3249. "formato errado. Altere e tente novamente."
  3250. #: flatcamEditors/FlatCAMGrbEditor.py:3217
  3251. msgid "Aperture already in the aperture table."
  3252. msgstr "Abertura já na tabela de aberturas."
  3253. #: flatcamEditors/FlatCAMGrbEditor.py:3225
  3254. msgid "Added new aperture with code"
  3255. msgstr "Adicionada nova abertura com código"
  3256. #: flatcamEditors/FlatCAMGrbEditor.py:3254
  3257. msgid " Select an aperture in Aperture Table"
  3258. msgstr "Selecione uma abertura na Tabela de Aberturas"
  3259. #: flatcamEditors/FlatCAMGrbEditor.py:3261
  3260. msgid "Select an aperture in Aperture Table -->"
  3261. msgstr "Selecione uma abertura na Tabela de Aberturas ->"
  3262. #: flatcamEditors/FlatCAMGrbEditor.py:3285
  3263. msgid "Deleted aperture with code"
  3264. msgstr "Abertura excluída com código"
  3265. #: flatcamEditors/FlatCAMGrbEditor.py:3748
  3266. #, python-format
  3267. msgid "Adding aperture: %s geo ..."
  3268. msgstr "Adicionando abertura: %s geo ..."
  3269. #: flatcamEditors/FlatCAMGrbEditor.py:3936
  3270. msgid ""
  3271. "There are no Aperture definitions in the file. Aborting Gerber creation."
  3272. msgstr "Não há definições da Abertura no arquivo. Abortando a criação "
  3273. "de Gerber."
  3274. #: flatcamEditors/FlatCAMGrbEditor.py:3944
  3275. msgid "Creating Gerber."
  3276. msgstr "Criando Gerber."
  3277. #: flatcamEditors/FlatCAMGrbEditor.py:3953
  3278. msgid "Done. Gerber editing finished."
  3279. msgstr "Edição de Gerber concluída."
  3280. #: flatcamEditors/FlatCAMGrbEditor.py:3970
  3281. msgid "Cancelled. No aperture is selected"
  3282. msgstr ""
  3283. #: flatcamEditors/FlatCAMGrbEditor.py:4505
  3284. msgid "Failed. No aperture geometry is selected."
  3285. msgstr "Cancelado. Nenhuma abertura selecionada"
  3286. #: flatcamEditors/FlatCAMGrbEditor.py:4514
  3287. msgid "Done. Apertures geometry deleted."
  3288. msgstr "Abertura excluída."
  3289. #: flatcamEditors/FlatCAMGrbEditor.py:4657
  3290. msgid "No aperture to buffer. Select at least one aperture and try again."
  3291. msgstr "Nenhuma abertura para buffer. Selecione pelo menos uma "
  3292. "abertura e tente novamente."
  3293. #: flatcamEditors/FlatCAMGrbEditor.py:4670
  3294. msgid "Failed."
  3295. msgstr "Falhou."
  3296. #: flatcamEditors/FlatCAMGrbEditor.py:4689
  3297. msgid "Scale factor value is missing or wrong format. Add it and retry."
  3298. msgstr "O valor do fator de escala está ausente ou está em formato "
  3299. "incorreto. Altere e tente novamente."
  3300. #: flatcamEditors/FlatCAMGrbEditor.py:4721
  3301. msgid "No aperture to scale. Select at least one aperture and try again."
  3302. msgstr "Nenhuma abertura para redimensionar. Selecione pelo menos uma "
  3303. "abertura e tente novamente."
  3304. #: flatcamEditors/FlatCAMGrbEditor.py:4737
  3305. msgid "Done. Scale Tool completed."
  3306. msgstr "Redimensionamento concluído."
  3307. #: flatcamEditors/FlatCAMGrbEditor.py:4775
  3308. msgid "Polygon areas marked."
  3309. msgstr "Áreas de polígono marcadas."
  3310. #: flatcamEditors/FlatCAMGrbEditor.py:4778
  3311. msgid "There are no polygons to mark area."
  3312. msgstr "Não há polígonos para marcar a área."
  3313. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  3314. msgid "Rotation action was not executed."
  3315. msgstr "A rotação não foi executada."
  3316. #: flatcamEditors/FlatCAMGrbEditor.py:5688
  3317. msgid "Skew action was not executed."
  3318. msgstr "A inclinação não foi executada."
  3319. #: flatcamEditors/FlatCAMGrbEditor.py:5758
  3320. msgid "Scale action was not executed."
  3321. msgstr "O redimensionamento não foi executado."
  3322. #: flatcamEditors/FlatCAMGrbEditor.py:5807
  3323. msgid "Offset action was not executed."
  3324. msgstr "O deslocamento não foi executado."
  3325. #: flatcamEditors/FlatCAMGrbEditor.py:5863
  3326. msgid "Geometry shape offset Y cancelled"
  3327. msgstr "Deslocamento Y cancelado."
  3328. #: flatcamEditors/FlatCAMGrbEditor.py:5880
  3329. msgid "Geometry shape skew X cancelled"
  3330. msgstr "Inclinação X cancelada."
  3331. #: flatcamEditors/FlatCAMGrbEditor.py:5897
  3332. msgid "Geometry shape skew Y cancelled"
  3333. msgstr "Inclinação Y cancelada."
  3334. #: flatcamGUI/FlatCAMGUI.py:52
  3335. msgid "&File"
  3336. msgstr "&Arquivo"
  3337. #: flatcamGUI/FlatCAMGUI.py:57
  3338. msgid "&New Project ...\tCTRL+N"
  3339. msgstr "&Novo Projeto ...\tCTRL+N"
  3340. #: flatcamGUI/FlatCAMGUI.py:59
  3341. msgid "Will create a new, blank project"
  3342. msgstr "Criará um novo projeto em branco"
  3343. #: flatcamGUI/FlatCAMGUI.py:64
  3344. msgid "&New"
  3345. msgstr "&Novo"
  3346. #: flatcamGUI/FlatCAMGUI.py:67
  3347. msgid "Geometry\tN"
  3348. msgstr "Geometria\tN"
  3349. #: flatcamGUI/FlatCAMGUI.py:69
  3350. msgid "Will create a new, empty Geometry Object."
  3351. msgstr "Criará um novo Objeto Geometria vazio."
  3352. #: flatcamGUI/FlatCAMGUI.py:71
  3353. msgid "Gerber\tB"
  3354. msgstr "Gerber\tB"
  3355. #: flatcamGUI/FlatCAMGUI.py:73
  3356. msgid "Will create a new, empty Gerber Object."
  3357. msgstr "Criará um novo Objeto Gerber vazio."
  3358. #: flatcamGUI/FlatCAMGUI.py:75
  3359. msgid "Excellon\tL"
  3360. msgstr "Excellon\tL"
  3361. #: flatcamGUI/FlatCAMGUI.py:77
  3362. msgid "Will create a new, empty Excellon Object."
  3363. msgstr "Criará um novo Objeto Excellon vazio."
  3364. #: flatcamGUI/FlatCAMGUI.py:80 flatcamTools/ToolPcbWizard.py:62
  3365. #: flatcamTools/ToolPcbWizard.py:69
  3366. msgid "Open"
  3367. msgstr "Abrir"
  3368. #: flatcamGUI/FlatCAMGUI.py:84
  3369. msgid "Open &Project ..."
  3370. msgstr "Abrir &Projeto ..."
  3371. #: flatcamGUI/FlatCAMGUI.py:90
  3372. msgid "Open &Gerber ...\tCTRL+G"
  3373. msgstr "Abrir &Gerber ...\tCTRL+G"
  3374. #: flatcamGUI/FlatCAMGUI.py:95
  3375. msgid "Open &Excellon ...\tCTRL+E"
  3376. msgstr "Abrir &Excellon ...\tCTRL+E"
  3377. #: flatcamGUI/FlatCAMGUI.py:99
  3378. msgid "Open G-&Code ..."
  3379. msgstr "Abrir G-&Code ..."
  3380. #: flatcamGUI/FlatCAMGUI.py:105
  3381. msgid "Open Config ..."
  3382. msgstr "Abrir Configuração ..."
  3383. #: flatcamGUI/FlatCAMGUI.py:109
  3384. msgid "Recent projects"
  3385. msgstr "Projetos Recentes"
  3386. #: flatcamGUI/FlatCAMGUI.py:110
  3387. msgid "Recent files"
  3388. msgstr "Arquivos Recentes"
  3389. #: flatcamGUI/FlatCAMGUI.py:116
  3390. msgid "Scripting"
  3391. msgstr "Scripting"
  3392. #: flatcamGUI/FlatCAMGUI.py:119
  3393. msgid "New Script ..."
  3394. msgstr "Novo Script ..."
  3395. #: flatcamGUI/FlatCAMGUI.py:120
  3396. msgid "Open Script ..."
  3397. msgstr "Abrir Script ..."
  3398. #: flatcamGUI/FlatCAMGUI.py:122
  3399. msgid "Run Script ...\tSHIFT+S"
  3400. msgstr "Executar Script ...\tSHIFT+S"
  3401. #: flatcamGUI/FlatCAMGUI.py:124
  3402. msgid ""
  3403. "Will run the opened Tcl Script thus\n"
  3404. "enabling the automation of certain\n"
  3405. "functions of FlatCAM."
  3406. msgstr ""
  3407. "Executará o script TCL aberto,\n"
  3408. "ativando a automação de certas\n"
  3409. "funções do FlatCAM."
  3410. #: flatcamGUI/FlatCAMGUI.py:137
  3411. msgid "Import"
  3412. msgstr "Importar"
  3413. #: flatcamGUI/FlatCAMGUI.py:139
  3414. msgid "&SVG as Geometry Object ..."
  3415. msgstr "&SVG como Objeto de Geometria ..."
  3416. #: flatcamGUI/FlatCAMGUI.py:142
  3417. msgid "&SVG as Gerber Object ..."
  3418. msgstr "&SVG como Objeto Gerber ..."
  3419. #: flatcamGUI/FlatCAMGUI.py:147
  3420. msgid "&DXF as Geometry Object ..."
  3421. msgstr "&DXF como Objeto de Geometria ..."
  3422. #: flatcamGUI/FlatCAMGUI.py:150
  3423. msgid "&DXF as Gerber Object ..."
  3424. msgstr "&DXF como Objeto Gerber ..."
  3425. #: flatcamGUI/FlatCAMGUI.py:155
  3426. msgid "Export"
  3427. msgstr "Exportar"
  3428. #: flatcamGUI/FlatCAMGUI.py:158
  3429. msgid "Export &SVG ..."
  3430. msgstr "Exportar &SVG ..."
  3431. #: flatcamGUI/FlatCAMGUI.py:161
  3432. msgid "Export DXF ..."
  3433. msgstr "Exportar DXF ..."
  3434. #: flatcamGUI/FlatCAMGUI.py:166
  3435. msgid "Export &PNG ..."
  3436. msgstr "Exportar &PNG ..."
  3437. #: flatcamGUI/FlatCAMGUI.py:168
  3438. msgid ""
  3439. "Will export an image in PNG format,\n"
  3440. "the saved image will contain the visual \n"
  3441. "information currently in FlatCAM Plot Area."
  3442. msgstr ""
  3443. "Exportará uma imagem em formato PNG.\n"
  3444. "A imagem salva conterá as informações\n"
  3445. "visuais atualmente na área gráfica FlatCAM."
  3446. #: flatcamGUI/FlatCAMGUI.py:177
  3447. msgid "Export &Excellon ..."
  3448. msgstr "Exportar &Excellon ..."
  3449. #: flatcamGUI/FlatCAMGUI.py:179
  3450. msgid ""
  3451. "Will export an Excellon Object as Excellon file,\n"
  3452. "the coordinates format, the file units and zeros\n"
  3453. "are set in Preferences -> Excellon Export."
  3454. msgstr ""
  3455. "Exportará um Objeto Excellon como arquivo Excellon.\n"
  3456. "O formato das coordenadas, das unidades de arquivo e dos zeros\n"
  3457. "são definidos em Preferências -> Exportação de Excellon."
  3458. #: flatcamGUI/FlatCAMGUI.py:186
  3459. msgid "Export &Gerber ..."
  3460. msgstr "Exportar &Gerber ..."
  3461. #: flatcamGUI/FlatCAMGUI.py:188
  3462. msgid ""
  3463. "Will export an Gerber Object as Gerber file,\n"
  3464. "the coordinates format, the file units and zeros\n"
  3465. "are set in Preferences -> Gerber Export."
  3466. msgstr ""
  3467. "Exportará um Objeto Gerber como arquivo Gerber.\n"
  3468. "O formato das coordenadas, das unidades de arquivo e dos zeros\n"
  3469. "são definidos em Preferências -> Exportar Gerber."
  3470. #: flatcamGUI/FlatCAMGUI.py:204
  3471. msgid "Backup"
  3472. msgstr "Backup"
  3473. #: flatcamGUI/FlatCAMGUI.py:208
  3474. msgid "Import Preferences from file ..."
  3475. msgstr "Importar preferências de um arquivo ..."
  3476. #: flatcamGUI/FlatCAMGUI.py:213
  3477. msgid "Export Preferences to file ..."
  3478. msgstr "Exportar Preferências para um arquivo ..."
  3479. #: flatcamGUI/FlatCAMGUI.py:219 flatcamGUI/FlatCAMGUI.py:546
  3480. msgid "Save"
  3481. msgstr "Salvar"
  3482. #: flatcamGUI/FlatCAMGUI.py:222
  3483. msgid "&Save Project ..."
  3484. msgstr "&Salvar Projeto ..."
  3485. #: flatcamGUI/FlatCAMGUI.py:227
  3486. msgid "Save Project &As ...\tCTRL+S"
  3487. msgstr "S&alvar Projeto Como ...\tCTRL+S"
  3488. #: flatcamGUI/FlatCAMGUI.py:232
  3489. msgid "Save Project C&opy ..."
  3490. msgstr "Salvar Cópia do Pr&ojeto ..."
  3491. #: flatcamGUI/FlatCAMGUI.py:239
  3492. msgid "E&xit"
  3493. msgstr "Sair"
  3494. #: flatcamGUI/FlatCAMGUI.py:245
  3495. msgid "&Edit"
  3496. msgstr "&Editar"
  3497. #: flatcamGUI/FlatCAMGUI.py:248
  3498. msgid "Edit Object\tE"
  3499. msgstr "Editar Objeto\tE"
  3500. #: flatcamGUI/FlatCAMGUI.py:249
  3501. msgid "Close Editor\tCTRL+S"
  3502. msgstr "Fechar Editor\tCTRL+S"
  3503. #: flatcamGUI/FlatCAMGUI.py:257
  3504. msgid "Conversion"
  3505. msgstr "Conversão"
  3506. #: flatcamGUI/FlatCAMGUI.py:259
  3507. msgid "&Join Geo/Gerber/Exc -> Geo"
  3508. msgstr "&Unir Geo/Gerber/Exc -> Geo"
  3509. #: flatcamGUI/FlatCAMGUI.py:261
  3510. msgid ""
  3511. "Merge a selection of objects, which can be of type:\n"
  3512. "- Gerber\n"
  3513. "- Excellon\n"
  3514. "- Geometry\n"
  3515. "into a new combo Geometry object."
  3516. msgstr ""
  3517. "Mescla uma seleção de objetos, que podem ser do tipo:\n"
  3518. "- Gerber\n"
  3519. "- Excellon\n"
  3520. "- Geometria\n"
  3521. " em um novo objeto Geometria."
  3522. #: flatcamGUI/FlatCAMGUI.py:268
  3523. msgid "Join Excellon(s) -> Excellon"
  3524. msgstr "Unir Excellon(s) -> Excellon"
  3525. #: flatcamGUI/FlatCAMGUI.py:270
  3526. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3527. msgstr "Mescla uma seleção de objetos Excellon em um novo objeto Excellon."
  3528. #: flatcamGUI/FlatCAMGUI.py:273
  3529. msgid "Join Gerber(s) -> Gerber"
  3530. msgstr "Unir Gerber(s) -> Gerber"
  3531. #: flatcamGUI/FlatCAMGUI.py:275
  3532. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3533. msgstr "Mescla uma seleção de objetos Gerber em um novo objeto Gerber."
  3534. #: flatcamGUI/FlatCAMGUI.py:280
  3535. msgid "Convert Single to MultiGeo"
  3536. msgstr "Converter Single para MultiGeo"
  3537. #: flatcamGUI/FlatCAMGUI.py:282
  3538. msgid ""
  3539. "Will convert a Geometry object from single_geometry type\n"
  3540. "to a multi_geometry type."
  3541. msgstr ""
  3542. "Converterá um objeto Geometria do tipo single_geometry\n"
  3543. "em um tipo multi_geometry."
  3544. #: flatcamGUI/FlatCAMGUI.py:286
  3545. msgid "Convert Multi to SingleGeo"
  3546. msgstr "Converter Multi para SingleGeo"
  3547. #: flatcamGUI/FlatCAMGUI.py:288
  3548. msgid ""
  3549. "Will convert a Geometry object from multi_geometry type\n"
  3550. "to a single_geometry type."
  3551. msgstr ""
  3552. "Converterá um objeto Geometria do tipo multi_geometry\n"
  3553. "em um tipo single_geometry."
  3554. #: flatcamGUI/FlatCAMGUI.py:294
  3555. msgid "Convert Any to Geo"
  3556. msgstr "Converter Qualquer para Geo"
  3557. #: flatcamGUI/FlatCAMGUI.py:296
  3558. msgid "Convert Any to Gerber"
  3559. msgstr "Converter Qualquer para Gerber"
  3560. #: flatcamGUI/FlatCAMGUI.py:301
  3561. msgid "&Copy\tCTRL+C"
  3562. msgstr "&Copiar\tCTRL+C"
  3563. #: flatcamGUI/FlatCAMGUI.py:305
  3564. msgid "&Delete\tDEL"
  3565. msgstr "Excluir\tDEL"
  3566. #: flatcamGUI/FlatCAMGUI.py:309
  3567. msgid "Se&t Origin\tO"
  3568. msgstr "Definir Origem\tO"
  3569. #: flatcamGUI/FlatCAMGUI.py:310
  3570. msgid "Jump to Location\tJ"
  3571. msgstr "Ir para a localização\tJ"
  3572. #: flatcamGUI/FlatCAMGUI.py:315
  3573. msgid "Toggle Units\tQ"
  3574. msgstr "Alternar Unidades\tQ"
  3575. #: flatcamGUI/FlatCAMGUI.py:316
  3576. msgid "&Select All\tCTRL+A"
  3577. msgstr "&Selecionar Tudo\tCTRL+A"
  3578. #: flatcamGUI/FlatCAMGUI.py:320
  3579. msgid "&Preferences\tSHIFT+P"
  3580. msgstr "&Preferências\tSHIFT+P"
  3581. #: flatcamGUI/FlatCAMGUI.py:323
  3582. msgid "&Options"
  3583. msgstr "&Opções"
  3584. #: flatcamGUI/FlatCAMGUI.py:338
  3585. msgid "&Rotate Selection\tSHIFT+(R)"
  3586. msgstr "Gi&rar Seleção\tSHIFT+(R)"
  3587. #: flatcamGUI/FlatCAMGUI.py:343
  3588. msgid "&Skew on X axis\tSHIFT+X"
  3589. msgstr "Inclinar no eixo X\tSHIFT+X"
  3590. #: flatcamGUI/FlatCAMGUI.py:345
  3591. msgid "S&kew on Y axis\tSHIFT+Y"
  3592. msgstr "Inclinar no eixo Y\tSHIFT+Y"
  3593. #: flatcamGUI/FlatCAMGUI.py:350
  3594. msgid "Flip on &X axis\tX"
  3595. msgstr "Espelhar no eixo &X\tX"
  3596. #: flatcamGUI/FlatCAMGUI.py:352
  3597. msgid "Flip on &Y axis\tY"
  3598. msgstr "Espelhar no eixo &Y\tY"
  3599. #: flatcamGUI/FlatCAMGUI.py:357
  3600. msgid "View source\tALT+S"
  3601. msgstr "Ver fonte\tALT+S"
  3602. #: flatcamGUI/FlatCAMGUI.py:362
  3603. msgid "&View"
  3604. msgstr "&Ver"
  3605. #: flatcamGUI/FlatCAMGUI.py:363
  3606. msgid "Enable all plots\tALT+1"
  3607. msgstr "Habilitar todos os gráficos\tALT+1"
  3608. #: flatcamGUI/FlatCAMGUI.py:365
  3609. msgid "Disable all plots\tALT+2"
  3610. msgstr "Desabilitar todos os gráficos\tALT+2"
  3611. #: flatcamGUI/FlatCAMGUI.py:367
  3612. msgid "Disable non-selected\tALT+3"
  3613. msgstr "Desabilitar os não selecionados\tALT+3"
  3614. #: flatcamGUI/FlatCAMGUI.py:370
  3615. msgid "&Zoom Fit\tV"
  3616. msgstr "&Zoom Ajustado\tV"
  3617. #: flatcamGUI/FlatCAMGUI.py:371
  3618. msgid "&Zoom In\t="
  3619. msgstr "&Zoom +\t="
  3620. #: flatcamGUI/FlatCAMGUI.py:372
  3621. msgid "&Zoom Out\t-"
  3622. msgstr "&Zoom -\t-"
  3623. #: flatcamGUI/FlatCAMGUI.py:376
  3624. msgid "Toggle Code Editor\tCTRL+E"
  3625. msgstr "Alternar o Editor de Códigos\tCTRL+E"
  3626. #: flatcamGUI/FlatCAMGUI.py:379
  3627. msgid "&Toggle FullScreen\tALT+F10"
  3628. msgstr "Alternar &Tela Cheia\tALT+F10"
  3629. #: flatcamGUI/FlatCAMGUI.py:381
  3630. msgid "&Toggle Plot Area\tCTRL+F10"
  3631. msgstr "Al&ternar Área de Gráficos\tCTRL+F10"
  3632. #: flatcamGUI/FlatCAMGUI.py:383
  3633. msgid "&Toggle Project/Sel/Tool\t`"
  3634. msgstr "Al&ternar Projeto/Sel/Ferram\t`"
  3635. #: flatcamGUI/FlatCAMGUI.py:386
  3636. msgid "&Toggle Grid Snap\tG"
  3637. msgstr "Al&ternar Encaixe na Grade\tG"
  3638. #: flatcamGUI/FlatCAMGUI.py:388
  3639. msgid "&Toggle Axis\tSHIFT+G"
  3640. msgstr "Al&ternar Eixo\tSHIFT+G"
  3641. #: flatcamGUI/FlatCAMGUI.py:391
  3642. msgid "Toggle Workspace\tSHIFT+W"
  3643. msgstr "Alternar Área de Trabalho\tSHIFT+W"
  3644. #: flatcamGUI/FlatCAMGUI.py:394
  3645. msgid "&Tool"
  3646. msgstr "Ferramen&ta"
  3647. #: flatcamGUI/FlatCAMGUI.py:396
  3648. msgid "&Command Line\tS"
  3649. msgstr "Linha de &Comando\tS"
  3650. #: flatcamGUI/FlatCAMGUI.py:399
  3651. msgid "&Help"
  3652. msgstr "Ajuda"
  3653. #: flatcamGUI/FlatCAMGUI.py:400
  3654. msgid "Help\tF1"
  3655. msgstr "Ajuda\tF1"
  3656. #: flatcamGUI/FlatCAMGUI.py:401
  3657. msgid "FlatCAM.org"
  3658. msgstr "FlatCAM.org"
  3659. #: flatcamGUI/FlatCAMGUI.py:404
  3660. msgid "Shortcuts List\tF3"
  3661. msgstr "Lista de Atalhos\tF3"
  3662. #: flatcamGUI/FlatCAMGUI.py:405
  3663. msgid "YouTube Channel\tF4"
  3664. msgstr "Canal no YouTube\tF4"
  3665. #: flatcamGUI/FlatCAMGUI.py:407
  3666. msgid "About"
  3667. msgstr "Sobre"
  3668. #: flatcamGUI/FlatCAMGUI.py:414
  3669. msgid "Add Circle\tO"
  3670. msgstr "Adicionar Círculo\tO"
  3671. #: flatcamGUI/FlatCAMGUI.py:416
  3672. msgid "Add Arc\tA"
  3673. msgstr "Adicionar Arco\tA"
  3674. #: flatcamGUI/FlatCAMGUI.py:419
  3675. msgid "Add Rectangle\tR"
  3676. msgstr "Adicionar Retângulo\tR"
  3677. #: flatcamGUI/FlatCAMGUI.py:422
  3678. msgid "Add Polygon\tN"
  3679. msgstr "Adicionar Polígono\t"
  3680. #: flatcamGUI/FlatCAMGUI.py:424
  3681. msgid "Add Path\tP"
  3682. msgstr "Adicionar Caminho\tP"
  3683. #: flatcamGUI/FlatCAMGUI.py:426
  3684. msgid "Add Text\tT"
  3685. msgstr "Adicionar Texto\tT"
  3686. #: flatcamGUI/FlatCAMGUI.py:429
  3687. msgid "Polygon Union\tU"
  3688. msgstr "Unir Polígonos\tU"
  3689. #: flatcamGUI/FlatCAMGUI.py:431
  3690. msgid "Polygon Intersection\tE"
  3691. msgstr "Interseção de Polígonos\tE"
  3692. #: flatcamGUI/FlatCAMGUI.py:433
  3693. msgid "Polygon Subtraction\tS"
  3694. msgstr "Subtração de Polígonos\tS"
  3695. #: flatcamGUI/FlatCAMGUI.py:437
  3696. msgid "Cut Path\tX"
  3697. msgstr "Caminho de Corte\tX"
  3698. #: flatcamGUI/FlatCAMGUI.py:439
  3699. msgid "Copy Geom\tC"
  3700. msgstr "Copiar Geom\tC"
  3701. #: flatcamGUI/FlatCAMGUI.py:441
  3702. msgid "Delete Shape\tDEL"
  3703. msgstr "Excluir Forma\tDEL"
  3704. #: flatcamGUI/FlatCAMGUI.py:444 flatcamGUI/FlatCAMGUI.py:521
  3705. msgid "Move\tM"
  3706. msgstr "Mover\tM"
  3707. #: flatcamGUI/FlatCAMGUI.py:446
  3708. msgid "Buffer Tool\tB"
  3709. msgstr "Ferramenta Buffer\tB"
  3710. #: flatcamGUI/FlatCAMGUI.py:449
  3711. msgid "Paint Tool\tI"
  3712. msgstr "Ferramenta de Pintura\tI"
  3713. #: flatcamGUI/FlatCAMGUI.py:452
  3714. msgid "Transform Tool\tALT+R"
  3715. msgstr "Ferramenta de Transformação\tALT+R"
  3716. #: flatcamGUI/FlatCAMGUI.py:456
  3717. msgid "Toggle Corner Snap\tK"
  3718. msgstr "Alternar Encaixe de Canto\tK"
  3719. #: flatcamGUI/FlatCAMGUI.py:459
  3720. msgid ">Excellon Editor<"
  3721. msgstr ">Editor Excellon<"
  3722. #: flatcamGUI/FlatCAMGUI.py:463
  3723. msgid "Add Drill Array\tA"
  3724. msgstr "Adicionar Matriz de Brocas\tA"
  3725. #: flatcamGUI/FlatCAMGUI.py:465
  3726. msgid "Add Drill\tD"
  3727. msgstr "Adicionar Broca\tD"
  3728. #: flatcamGUI/FlatCAMGUI.py:469
  3729. msgid "Add Slot Array\tQ"
  3730. msgstr "Adic. Matriz de Ranhuras\tQ"
  3731. #: flatcamGUI/FlatCAMGUI.py:471
  3732. msgid "Add Slot\tW"
  3733. msgstr "Adicionar Ranhura\tW"
  3734. #: flatcamGUI/FlatCAMGUI.py:475
  3735. msgid "Resize Drill(S)\tR"
  3736. msgstr "Redimensionar Broca(s)\tR"
  3737. #: flatcamGUI/FlatCAMGUI.py:477 flatcamGUI/FlatCAMGUI.py:516
  3738. msgid "Copy\tC"
  3739. msgstr "Copiar\tC"
  3740. #: flatcamGUI/FlatCAMGUI.py:479 flatcamGUI/FlatCAMGUI.py:518
  3741. msgid "Delete\tDEL"
  3742. msgstr "Excluir\tDEL"
  3743. #: flatcamGUI/FlatCAMGUI.py:484
  3744. msgid "Move Drill(s)\tM"
  3745. msgstr "Mover Broca(s)\tM"
  3746. #: flatcamGUI/FlatCAMGUI.py:487
  3747. msgid ">Gerber Editor<"
  3748. msgstr ">Editor Gerber<"
  3749. #: flatcamGUI/FlatCAMGUI.py:491
  3750. msgid "Add Pad\tP"
  3751. msgstr "Adicionar Pad\tP"
  3752. #: flatcamGUI/FlatCAMGUI.py:493
  3753. msgid "Add Pad Array\tA"
  3754. msgstr "Adicionar Matriz de Pads\tA"
  3755. #: flatcamGUI/FlatCAMGUI.py:495
  3756. msgid "Add Track\tT"
  3757. msgstr "Adicionar Trilha\tT"
  3758. #: flatcamGUI/FlatCAMGUI.py:497
  3759. msgid "Add Region\tN"
  3760. msgstr "Adicionar Região\tN"
  3761. #: flatcamGUI/FlatCAMGUI.py:501
  3762. msgid "Poligonize\tALT+N"
  3763. msgstr "Poligonizar\tALT+N"
  3764. #: flatcamGUI/FlatCAMGUI.py:503
  3765. msgid "Add SemiDisc\tE"
  3766. msgstr "Adicionar SemiDisco\tE"
  3767. #: flatcamGUI/FlatCAMGUI.py:504
  3768. msgid "Add Disc\tD"
  3769. msgstr "Adicionar Disco\tD"
  3770. #: flatcamGUI/FlatCAMGUI.py:506
  3771. msgid "Buffer\tB"
  3772. msgstr "Buffer\tB"
  3773. #: flatcamGUI/FlatCAMGUI.py:507
  3774. msgid "Scale\tS"
  3775. msgstr "Escala\tS"
  3776. #: flatcamGUI/FlatCAMGUI.py:509
  3777. msgid "Mark Area\tALT+A"
  3778. msgstr "Marcar Área\tALT+A"
  3779. #: flatcamGUI/FlatCAMGUI.py:511
  3780. msgid "Eraser\tCTRL+E"
  3781. msgstr "Borracha\tCTRL+E"
  3782. #: flatcamGUI/FlatCAMGUI.py:513
  3783. msgid "Transform\tALT+R"
  3784. msgstr "Transformar\tALT+R"
  3785. #: flatcamGUI/FlatCAMGUI.py:537
  3786. msgid "Enable Plot"
  3787. msgstr "Habilitar Gráfico"
  3788. #: flatcamGUI/FlatCAMGUI.py:538
  3789. msgid "Disable Plot"
  3790. msgstr "Desabilitar Gráfico"
  3791. #: flatcamGUI/FlatCAMGUI.py:540
  3792. msgid "Generate CNC"
  3793. msgstr "Gerar CNC"
  3794. #: flatcamGUI/FlatCAMGUI.py:541
  3795. msgid "View Source"
  3796. msgstr "Ver Fonte"
  3797. #: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
  3798. msgid "Edit"
  3799. msgstr "Editar"
  3800. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
  3801. #: flatcamTools/ToolProperties.py:24
  3802. msgid "Properties"
  3803. msgstr "Propriedades"
  3804. #: flatcamGUI/FlatCAMGUI.py:578
  3805. msgid "File Toolbar"
  3806. msgstr "Barra de Ferramentas de Arquivos"
  3807. #: flatcamGUI/FlatCAMGUI.py:582
  3808. msgid "Edit Toolbar"
  3809. msgstr "Barra de Ferramentas Editar"
  3810. #: flatcamGUI/FlatCAMGUI.py:586
  3811. msgid "View Toolbar"
  3812. msgstr "Barra de Ferramentas Ver"
  3813. #: flatcamGUI/FlatCAMGUI.py:590
  3814. msgid "Shell Toolbar"
  3815. msgstr "Barra de Ferramentas Shell"
  3816. #: flatcamGUI/FlatCAMGUI.py:594
  3817. msgid "Tools Toolbar"
  3818. msgstr "Barra de Ferramentas Ferramentas"
  3819. #: flatcamGUI/FlatCAMGUI.py:598
  3820. msgid "Excellon Editor Toolbar"
  3821. msgstr "Barra de Ferramentas Editor Excellon"
  3822. #: flatcamGUI/FlatCAMGUI.py:602
  3823. msgid "Geometry Editor Toolbar"
  3824. msgstr "Barra de Ferramentas Editor de Geometria"
  3825. #: flatcamGUI/FlatCAMGUI.py:606
  3826. msgid "Gerber Editor Toolbar"
  3827. msgstr "Barra de Ferramentas Editor Gerber"
  3828. #: flatcamGUI/FlatCAMGUI.py:610
  3829. msgid "Grid Toolbar"
  3830. msgstr "Barra de Ferramentas Grade"
  3831. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
  3832. msgid "Open project"
  3833. msgstr "Abrir projeto"
  3834. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
  3835. msgid "Save project"
  3836. msgstr "Salvar projeto"
  3837. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
  3838. msgid "New Blank Geometry"
  3839. msgstr "Nova Geometria em Branco"
  3840. #: flatcamGUI/FlatCAMGUI.py:634
  3841. msgid "New Blank Gerber"
  3842. msgstr "Novo Gerber em Branco"
  3843. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
  3844. msgid "New Blank Excellon"
  3845. msgstr "Novo Excellon em Branco"
  3846. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
  3847. msgid "Editor"
  3848. msgstr "Editor"
  3849. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
  3850. msgid "Save Object and close the Editor"
  3851. msgstr "Salvar objeto e fechar o editor"
  3852. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
  3853. msgid "&Delete"
  3854. msgstr "&Excluir"
  3855. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
  3856. msgid "&Replot"
  3857. msgstr "&Redesenhar"
  3858. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
  3859. msgid "&Clear plot"
  3860. msgstr "Limpar gráfi&co"
  3861. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
  3862. msgid "Zoom In"
  3863. msgstr "Zoom +"
  3864. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
  3865. msgid "Zoom Out"
  3866. msgstr "Zoom -"
  3867. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
  3868. #: flatcamGUI/FlatCAMGUI.py:1993
  3869. msgid "Zoom Fit"
  3870. msgstr "Zoom Ajustado"
  3871. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
  3872. msgid "&Command Line"
  3873. msgstr "Linha de &Comando"
  3874. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
  3875. msgid "2Sided Tool"
  3876. msgstr "PCB de 2 Faces"
  3877. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
  3878. msgid "&Cutout Tool"
  3879. msgstr "Ferramenta de Re&corte"
  3880. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
  3881. #: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
  3882. msgid "NCC Tool"
  3883. msgstr "Ferramenta NCC"
  3884. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
  3885. msgid "Panel Tool"
  3886. msgstr "Ferramenta de Painel"
  3887. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
  3888. #: flatcamTools/ToolFilm.py:209
  3889. msgid "Film Tool"
  3890. msgstr "Ferramenta de Filme"
  3891. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
  3892. #: flatcamTools/ToolSolderPaste.py:455
  3893. msgid "SolderPaste Tool"
  3894. msgstr "Ferramenta Pasta de Solda"
  3895. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
  3896. #: flatcamTools/ToolSub.py:28
  3897. msgid "Substract Tool"
  3898. msgstr "Ferramenta Subtrair"
  3899. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
  3900. msgid "Calculators Tool"
  3901. msgstr "Calculadoras"
  3902. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
  3903. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
  3904. #: flatcamGUI/FlatCAMGUI.py:2073
  3905. msgid "Select"
  3906. msgstr "Selecionar"
  3907. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
  3908. msgid "Add Drill Hole"
  3909. msgstr "Adicionar Furo"
  3910. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
  3911. msgid "Add Drill Hole Array"
  3912. msgstr "Adicionar Matriz do Furos"
  3913. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
  3914. #: flatcamGUI/FlatCAMGUI.py:2025
  3915. msgid "Add Slot"
  3916. msgstr "Adicionar Ranhura"
  3917. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
  3918. #: flatcamGUI/FlatCAMGUI.py:2027
  3919. msgid "Add Slot Array"
  3920. msgstr "Adicionar Matriz de Ranhuras"
  3921. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
  3922. #: flatcamGUI/FlatCAMGUI.py:2024
  3923. msgid "Resize Drill"
  3924. msgstr "Redimensionar Broca"
  3925. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
  3926. msgid "Copy Drill"
  3927. msgstr "Copiar Broca"
  3928. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
  3929. msgid "Delete Drill"
  3930. msgstr "Excluir Broca"
  3931. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
  3932. msgid "Move Drill"
  3933. msgstr "Mover Broca"
  3934. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
  3935. msgid "Add Circle"
  3936. msgstr "Adicionar Círculo"
  3937. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
  3938. msgid "Add Arc"
  3939. msgstr "Adicionar Arco"
  3940. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
  3941. msgid "Add Rectangle"
  3942. msgstr "Adicionar Retângulo"
  3943. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
  3944. msgid "Add Path"
  3945. msgstr "Adicionar Caminho"
  3946. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
  3947. msgid "Add Polygon"
  3948. msgstr "Adicionar Polígono"
  3949. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
  3950. msgid "Add Text"
  3951. msgstr "Adicionar Texto"
  3952. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
  3953. msgid "Add Buffer"
  3954. msgstr "Adicionar Buffer"
  3955. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
  3956. msgid "Paint Shape"
  3957. msgstr "Pintar Forma"
  3958. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
  3959. #: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
  3960. #: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
  3961. msgid "Eraser"
  3962. msgstr "Borracha"
  3963. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
  3964. msgid "Polygon Union"
  3965. msgstr "União de Polígonos"
  3966. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
  3967. msgid "Polygon Intersection"
  3968. msgstr "Interseção de Polígonos"
  3969. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
  3970. msgid "Polygon Subtraction"
  3971. msgstr "Subtração de Polígonos"
  3972. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
  3973. msgid "Cut Path"
  3974. msgstr "Caminho de Corte"
  3975. #: flatcamGUI/FlatCAMGUI.py:716
  3976. msgid "Copy Shape(s)"
  3977. msgstr "Copiar Forma(s)"
  3978. #: flatcamGUI/FlatCAMGUI.py:719
  3979. msgid "Delete Shape '-'"
  3980. msgstr "Excluir Forma '-'"
  3981. #: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
  3982. #: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
  3983. #: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
  3984. msgid "Transformations"
  3985. msgstr "Transformações"
  3986. #: flatcamGUI/FlatCAMGUI.py:723
  3987. msgid "Move Objects "
  3988. msgstr "Mover Objetos "
  3989. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
  3990. msgid "Add Pad"
  3991. msgstr "Adicionar Pad"
  3992. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
  3993. msgid "Add Track"
  3994. msgstr "Adicionar Trilha"
  3995. #: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
  3996. msgid "Add Region"
  3997. msgstr "Adicionar Região"
  3998. #: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
  3999. #: flatcamGUI/FlatCAMGUI.py:2079
  4000. msgid "Poligonize"
  4001. msgstr "Poligonizar"
  4002. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
  4003. #: flatcamGUI/FlatCAMGUI.py:2081
  4004. msgid "SemiDisc"
  4005. msgstr "SemiDisco"
  4006. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
  4007. #: flatcamGUI/FlatCAMGUI.py:2082
  4008. msgid "Disc"
  4009. msgstr "Disco"
  4010. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
  4011. #: flatcamGUI/FlatCAMGUI.py:2088
  4012. msgid "Mark Area"
  4013. msgstr "Marcar Área"
  4014. #: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
  4015. #: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
  4016. #: flatcamTools/ToolMove.py:26
  4017. msgid "Move"
  4018. msgstr "Mover"
  4019. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
  4020. msgid "Snap to grid"
  4021. msgstr "Encaixar na Grade"
  4022. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
  4023. msgid "Grid X snapping distance"
  4024. msgstr "Distância de encaixe Grade X"
  4025. #: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
  4026. msgid "Grid Y snapping distance"
  4027. msgstr "Distância de encaixe Grade Y"
  4028. #: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
  4029. msgid ""
  4030. "When active, value on Grid_X\n"
  4031. "is copied to the Grid_Y value."
  4032. msgstr ""
  4033. "Quando ativo, o valor em Grid_X\n"
  4034. "é copiado para o valor Grid_Y."
  4035. #: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
  4036. msgid "Snap to corner"
  4037. msgstr "Encaixar no canto"
  4038. #: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
  4039. #: flatcamGUI/FlatCAMGUI.py:3575
  4040. msgid "Max. magnet distance"
  4041. msgstr "Distância magnética max."
  4042. #: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
  4043. msgid "Project"
  4044. msgstr "Projeto"
  4045. #: flatcamGUI/FlatCAMGUI.py:819
  4046. msgid "Selected"
  4047. msgstr "Selecionado"
  4048. #: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:846
  4049. msgid "Plot Area"
  4050. msgstr "Área de Gráfico"
  4051. #: flatcamGUI/FlatCAMGUI.py:872
  4052. msgid "General"
  4053. msgstr "Geral"
  4054. #: flatcamGUI/FlatCAMGUI.py:881
  4055. msgid "APP. DEFAULTS"
  4056. msgstr "PADRÕES APP."
  4057. #: flatcamGUI/FlatCAMGUI.py:882
  4058. msgid "PROJ. OPTIONS "
  4059. msgstr "OPÇÕES PROJ."
  4060. #: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
  4061. msgid "GERBER"
  4062. msgstr "Gerber"
  4063. #: flatcamGUI/FlatCAMGUI.py:904 flatcamTools/ToolDblSided.py:71
  4064. msgid "EXCELLON"
  4065. msgstr "Excellon"
  4066. #: flatcamGUI/FlatCAMGUI.py:914 flatcamTools/ToolDblSided.py:95
  4067. msgid "GEOMETRY"
  4068. msgstr "Geometria"
  4069. #: flatcamGUI/FlatCAMGUI.py:924
  4070. msgid "CNC-JOB"
  4071. msgstr "Trabalho CNC"
  4072. #: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
  4073. msgid "TOOLS"
  4074. msgstr "Ferramentas"
  4075. #: flatcamGUI/FlatCAMGUI.py:943
  4076. msgid "FILE ASSOCIATIONS"
  4077. msgstr "Associação de Arquivos"
  4078. #: flatcamGUI/FlatCAMGUI.py:960
  4079. msgid "Import Preferences"
  4080. msgstr "Importar Preferências"
  4081. #: flatcamGUI/FlatCAMGUI.py:963
  4082. msgid ""
  4083. "Import a full set of FlatCAM settings from a file\n"
  4084. "previously saved on HDD.\n"
  4085. "\n"
  4086. "FlatCAM automatically save a 'factory_defaults' file\n"
  4087. "on the first start. Do not delete that file."
  4088. msgstr ""
  4089. "Importa um conjunto completo de configurações do FlatCAM de um arquivo\n"
  4090. "previamente salvo no HDD.\n"
  4091. "\n"
  4092. "FlatCAM salva automaticamente o arquivo 'factory_defaults'\n"
  4093. "na primeira inicialização. Não exclua esse arquivo."
  4094. #: flatcamGUI/FlatCAMGUI.py:970
  4095. msgid "Export Preferences"
  4096. msgstr "Exportar Preferências"
  4097. #: flatcamGUI/FlatCAMGUI.py:973
  4098. msgid ""
  4099. "Export a full set of FlatCAM settings in a file\n"
  4100. "that is saved on HDD."
  4101. msgstr ""
  4102. "Exporta um conjunto completo de configurações do FlatCAM em um arquivo\n"
  4103. "salvo no HDD."
  4104. #: flatcamGUI/FlatCAMGUI.py:978
  4105. msgid "Open Pref Folder"
  4106. msgstr "Abrir a Pasta Pref"
  4107. #: flatcamGUI/FlatCAMGUI.py:981
  4108. msgid "Open the folder where FlatCAM save the preferences files."
  4109. msgstr "Abre a pasta onde o FlatCAM salva os arquivos de preferências."
  4110. #: flatcamGUI/FlatCAMGUI.py:992
  4111. msgid ""
  4112. "Save the current settings in the 'current_defaults' file\n"
  4113. "which is the file storing the working default preferences."
  4114. msgstr ""
  4115. "Salva as configurações atuais no arquivo 'current_defaults'\n"
  4116. "que armazena as preferências padrão de trabalho."
  4117. #: flatcamGUI/FlatCAMGUI.py:1018
  4118. msgid ""
  4119. "<b>General Shortcut list</b><br>\n"
  4120. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4121. "\"width:283px\">\n"
  4122. " <tbody>\n"
  4123. " <tr height=\"20\">\n"
  4124. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4125. "td>\n"
  4126. " <td width=\"194\"><span style=\"color:"
  4127. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4128. " </tr>\n"
  4129. " <tr height=\"20\">\n"
  4130. " <td height=\"20\">&nbsp;</td>\n"
  4131. " <td>&nbsp;</td>\n"
  4132. " </tr>\n"
  4133. " <tr height=\"20\">\n"
  4134. " <td height=\"20\"><strong>1</strong></td>\n"
  4135. " <td>&nbsp;Switch to Project Tab</td>\n"
  4136. " </tr>\n"
  4137. " <tr height=\"20\">\n"
  4138. " <td height=\"20\"><strong>2</strong></td>\n"
  4139. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4140. " </tr>\n"
  4141. " <tr height=\"20\">\n"
  4142. " <td height=\"20\"><strong>3</strong></td>\n"
  4143. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4144. " </tr>\n"
  4145. " <tr height=\"20\">\n"
  4146. " <td height=\"20\">&nbsp;</td>\n"
  4147. " <td>&nbsp;</td>\n"
  4148. " </tr>\n"
  4149. " <tr height=\"20\">\n"
  4150. " <td height=\"20\"><strong>B</strong></td>\n"
  4151. " <td>&nbsp;New Gerber</td>\n"
  4152. " </tr>\n"
  4153. " <tr height=\"20\">\n"
  4154. " <td height=\"20\"><strong>E</strong></td>\n"
  4155. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4156. " </tr>\n"
  4157. " <tr height=\"20\">\n"
  4158. " <td height=\"20\"><strong>G</strong></td>\n"
  4159. " <td>&nbsp;Grid On/Off</td>\n"
  4160. " </tr>\n"
  4161. " <tr height=\"20\">\n"
  4162. " <td height=\"20\"><strong>J</strong></td>\n"
  4163. " <td>&nbsp;Jump to Coordinates</td>\n"
  4164. " </tr>\n"
  4165. " <tr height=\"20\">\n"
  4166. " <td height=\"20\"><strong>L</strong></td>\n"
  4167. " <td>&nbsp;New Excellon</td>\n"
  4168. " </tr>\n"
  4169. " <tr height=\"20\">\n"
  4170. " <td height=\"20\"><strong>M</strong></td>\n"
  4171. " <td>&nbsp;Move Obj</td>\n"
  4172. " </tr>\n"
  4173. " <tr height=\"20\">\n"
  4174. " <td height=\"20\"><strong>N</strong></td>\n"
  4175. " <td>&nbsp;New Geometry</td>\n"
  4176. " </tr>\n"
  4177. " <tr height=\"20\">\n"
  4178. " <td height=\"20\"><strong>O</strong></td>\n"
  4179. " <td>&nbsp;Set Origin</td>\n"
  4180. " </tr>\n"
  4181. " <tr height=\"20\">\n"
  4182. " <td height=\"20\"><strong>Q</strong></td>\n"
  4183. " <td>&nbsp;Change Units</td>\n"
  4184. " </tr>\n"
  4185. " <tr height=\"20\">\n"
  4186. " <td height=\"20\"><strong>P</strong></td>\n"
  4187. " <td>&nbsp;Open Properties Tool</td>\n"
  4188. " </tr>\n"
  4189. " <tr height=\"20\">\n"
  4190. " <td height=\"20\"><strong>R</strong></td>\n"
  4191. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4192. " </tr>\n"
  4193. " <tr height=\"20\">\n"
  4194. " <td height=\"20\"><strong>S</strong></td>\n"
  4195. " <td>&nbsp;Shell Toggle</td>\n"
  4196. " </tr>\n"
  4197. " <tr height=\"20\">\n"
  4198. " <td height=\"20\"><strong>T</strong></td>\n"
  4199. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4200. "or in Tools NCC or Tools Paint)</td>\n"
  4201. " </tr>\n"
  4202. " <tr height=\"20\">\n"
  4203. " <td height=\"20\"><strong>V</strong></td>\n"
  4204. " <td>&nbsp;Zoom Fit</td>\n"
  4205. " </tr>\n"
  4206. " <tr height=\"20\">\n"
  4207. " <td height=\"20\"><strong>X</strong></td>\n"
  4208. " <td>&nbsp;Flip on X_axis</td>\n"
  4209. " </tr>\n"
  4210. " <tr height=\"20\">\n"
  4211. " <td height=\"20\"><strong>Y</strong></td>\n"
  4212. " <td>&nbsp;Flip on Y_axis</td>\n"
  4213. " </tr>\n"
  4214. " <tr height=\"20\">\n"
  4215. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4216. " <td>&nbsp;Zoom Out</td>\n"
  4217. " </tr>\n"
  4218. " <tr height=\"20\">\n"
  4219. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4220. " <td>&nbsp;Zoom In</td>\n"
  4221. " </tr>\n"
  4222. " <tr height=\"20\">\n"
  4223. " <td height=\"20\">&nbsp;</td>\n"
  4224. " <td>&nbsp;</td>\n"
  4225. " </tr>\n"
  4226. " <tr height=\"20\">\n"
  4227. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4228. " <td>&nbsp;Select All</td>\n"
  4229. " </tr>\n"
  4230. " <tr height=\"20\">\n"
  4231. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4232. " <td>&nbsp;Copy Obj</td>\n"
  4233. " </tr>\n"
  4234. " <tr height=\"20\">\n"
  4235. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4236. " <td>&nbsp;Open Excellon File</td>\n"
  4237. " </tr>\n"
  4238. " <tr height=\"20\">\n"
  4239. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4240. " <td>&nbsp;Open Gerber File</td>\n"
  4241. " </tr>\n"
  4242. " <tr height=\"20\">\n"
  4243. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4244. " <td>&nbsp;New Project</td>\n"
  4245. " </tr>\n"
  4246. " <tr height=\"20\">\n"
  4247. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4248. " <td>&nbsp;Measurement Tool</td>\n"
  4249. " </tr>\n"
  4250. " <tr height=\"20\">\n"
  4251. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4252. " <td>&nbsp;Open Project</td>\n"
  4253. " </tr>\n"
  4254. " <tr height=\"20\">\n"
  4255. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4256. " <td>&nbsp;Save Project As</td>\n"
  4257. " </tr>\n"
  4258. " <tr height=\"20\">\n"
  4259. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4260. " <td>&nbsp;Toggle Plot Area</td>\n"
  4261. " </tr>\n"
  4262. " <tr height=\"20\">\n"
  4263. " <td height=\"20\">&nbsp;</td>\n"
  4264. " <td>&nbsp;</td>\n"
  4265. " </tr>\n"
  4266. " <tr height=\"20\">\n"
  4267. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4268. " <td>&nbsp;Copy Obj_Name</td>\n"
  4269. " </tr>\n"
  4270. " <tr height=\"20\">\n"
  4271. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4272. " <td>&nbsp;Toggle Code Editor</td>\n"
  4273. " </tr>\n"
  4274. " <tr height=\"20\">\n"
  4275. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4276. " <td>&nbsp;Toggle the axis</td>\n"
  4277. " </tr>\n"
  4278. " <tr height=\"20\">\n"
  4279. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4280. " <td>&nbsp;Open Preferences Window</td>\n"
  4281. " </tr>\n"
  4282. " <tr height=\"20\">\n"
  4283. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4284. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4285. " </tr>\n"
  4286. " <tr height=\"20\">\n"
  4287. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4288. " <td>&nbsp;Run a Script</td>\n"
  4289. " </tr>\n"
  4290. " <tr height=\"20\">\n"
  4291. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4292. " <td>&nbsp;Toggle the workspace</td>\n"
  4293. " </tr>\n"
  4294. " <tr height=\"20\">\n"
  4295. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4296. " <td>&nbsp;Skew on X axis</td>\n"
  4297. " </tr>\n"
  4298. " <tr height=\"20\">\n"
  4299. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4300. " <td>&nbsp;Skew on Y axis</td>\n"
  4301. " </tr>\n"
  4302. " <tr height=\"20\">\n"
  4303. " <td height=\"20\">&nbsp;</td>\n"
  4304. " <td>&nbsp;</td>\n"
  4305. " </tr>\n"
  4306. " <tr height=\"20\">\n"
  4307. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4308. " <td>&nbsp;Calculators Tool</td>\n"
  4309. " </tr>\n"
  4310. " <tr height=\"20\">\n"
  4311. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4312. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4313. " </tr>\n"
  4314. " <tr height=\"20\">\n"
  4315. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4316. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4317. " </tr>\n"
  4318. " <tr height=\"20\">\n"
  4319. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4320. " <td>&nbsp;Film PCB Tool</td>\n"
  4321. " </tr>\n"
  4322. " <tr height=\"20\">\n"
  4323. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4324. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4325. " </tr>\n"
  4326. " <tr height=\"20\">\n"
  4327. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4328. " <td>&nbsp;Paint Area Tool</td>\n"
  4329. " </tr>\n"
  4330. " <tr height=\"20\">\n"
  4331. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4332. " <td>&nbsp;PDF Import Tool</td>\n"
  4333. " </tr>\n"
  4334. " <tr height=\"20\">\n"
  4335. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4336. " <td>&nbsp;Transformations Tool</td>\n"
  4337. " </tr>\n"
  4338. " <tr height=\"20\">\n"
  4339. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4340. " <td>&nbsp;View File Source</td>\n"
  4341. " </tr>\n"
  4342. " <tr height=\"20\">\n"
  4343. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4344. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4345. " </tr>\n"
  4346. " <tr height=\"20\">\n"
  4347. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4348. " <td>&nbsp;Enable all Plots</td>\n"
  4349. " </tr>\n"
  4350. " <tr height=\"20\">\n"
  4351. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4352. " <td>&nbsp;Disable all Plots</td>\n"
  4353. " </tr>\n"
  4354. " <tr height=\"20\">\n"
  4355. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4356. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4357. " </tr>\n"
  4358. " <tr height=\"20\">\n"
  4359. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4360. " <td>&nbsp;Toggle Full Screen</td>\n"
  4361. " </tr> \n"
  4362. " <tr height=\"20\">\n"
  4363. " <td height=\"20\">&nbsp;</td>\n"
  4364. " <td>&nbsp;</td>\n"
  4365. " </tr>\n"
  4366. " <tr height=\"20\">\n"
  4367. " <td height=\"20\"><strong>CTRL+ALT+X</strong></td>\n"
  4368. " <td>&nbsp;Abort current task (gracefully)</td>\n"
  4369. " </tr> \n"
  4370. " <tr height=\"20\">\n"
  4371. " <td height=\"20\">&nbsp;</td>\n"
  4372. " <td>&nbsp;</td>\n"
  4373. " </tr>\n"
  4374. " <tr height=\"20\">\n"
  4375. " <td height=\"20\"><strong>F1</strong></td>\n"
  4376. " <td>&nbsp;Open Online Manual</td>\n"
  4377. " </tr>\n"
  4378. " <tr height=\"20\">\n"
  4379. " <td height=\"20\"><strong>F4</strong></td>\n"
  4380. " <td>&nbsp;Open Online Tutorials</td>\n"
  4381. " </tr>\n"
  4382. " <tr height=\"20\">\n"
  4383. " <td height=\"20\"><strong>Del</strong></td>\n"
  4384. " <td>&nbsp;Delete Object</td>\n"
  4385. " </tr>\n"
  4386. " <tr height=\"20\">\n"
  4387. " <td height=\"20\"><strong>Del</strong></td>\n"
  4388. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4389. " </tr>\n"
  4390. " <tr height=\"20\">\n"
  4391. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4392. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4393. "Side)</td>\n"
  4394. " </tr>\n"
  4395. " <tr height=\"20\">\n"
  4396. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4397. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4398. " </tr>\n"
  4399. " <tr height=\"20\">\n"
  4400. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4401. " <td>&nbsp;Deselects all objects</td>\n"
  4402. " </tr>\n"
  4403. " </tbody>\n"
  4404. " </table>\n"
  4405. " \n"
  4406. " "
  4407. msgstr ""
  4408. "<b>Lista de Atalhos Gerais</b><br>\n"
  4409. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4410. "\"width:283px\">\n"
  4411. " <tbody>\n"
  4412. " <tr height=\"20\">\n"
  4413. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4414. "td>\n"
  4415. " <td width=\"194\"><span style=\"color:"
  4416. "#006400\"><strong>&nbsp;MOSTRA LISTA DE ATALHOS</strong></span></td>\n"
  4417. " </tr>\n"
  4418. " <tr height=\"20\">\n"
  4419. " <td height=\"20\">&nbsp;</td>\n"
  4420. " <td>&nbsp;</td>\n"
  4421. " </tr>\n"
  4422. " <tr height=\"20\">\n"
  4423. " <td height=\"20\"><strong>1</strong></td>\n"
  4424. " <td>&nbsp;Vai para a Aba do Projeto</td>\n"
  4425. " </tr>\n"
  4426. " <tr height=\"20\">\n"
  4427. " <td height=\"20\"><strong>2</strong></td>\n"
  4428. " <td>&nbsp;Vai para a Aba Selecionado</td>\n"
  4429. " </tr>\n"
  4430. " <tr height=\"20\">\n"
  4431. " <td height=\"20\"><strong>3</strong></td>\n"
  4432. " <td>&nbsp;Vai para a Aba Ferramenta</td>\n"
  4433. " </tr>\n"
  4434. " <tr height=\"20\">\n"
  4435. " <td height=\"20\">&nbsp;</td>\n"
  4436. " <td>&nbsp;</td>\n"
  4437. " </tr>\n"
  4438. " <tr height=\"20\">\n"
  4439. " <td height=\"20\"><strong>B</strong></td>\n"
  4440. " <td>&nbsp;Novo Gerber</td>\n"
  4441. " </tr>\n"
  4442. " <tr height=\"20\">\n"
  4443. " <td height=\"20\"><strong>E</strong></td>\n"
  4444. " <td>&nbsp;Editar Objeto (se selecionado)</td>\n"
  4445. " </tr>\n"
  4446. " <tr height=\"20\">\n"
  4447. " <td height=\"20\"><strong>G</strong></td>\n"
  4448. " <td>&nbsp;Liga/Desliga a Grade</td>\n"
  4449. " </tr>\n"
  4450. " <tr height=\"20\">\n"
  4451. " <td height=\"20\"><strong>J</strong></td>\n"
  4452. " <td>&nbsp;Vai para as Coordenadas</td>\n"
  4453. " </tr>\n"
  4454. " <tr height=\"20\">\n"
  4455. " <td height=\"20\"><strong>L</strong></td>\n"
  4456. " <td>&nbsp;Novo Excellon</td>\n"
  4457. " </tr>\n"
  4458. " <tr height=\"20\">\n"
  4459. " <td height=\"20\"><strong>M</strong></td>\n"
  4460. " <td>&nbsp;Move Objeto</td>\n"
  4461. " </tr>\n"
  4462. " <tr height=\"20\">\n"
  4463. " <td height=\"20\"><strong>N</strong></td>\n"
  4464. " <td>&nbsp;Nova Geometria</td>\n"
  4465. " </tr>\n"
  4466. " <tr height=\"20\">\n"
  4467. " <td height=\"20\"><strong>O</strong></td>\n"
  4468. " <td>&nbsp;Ajusta Origem</td>\n"
  4469. " </tr>\n"
  4470. " <tr height=\"20\">\n"
  4471. " <td height=\"20\"><strong>Q</strong></td>\n"
  4472. " <td>&nbsp;Altera Unidades</td>\n"
  4473. " </tr>\n"
  4474. " <tr height=\"20\">\n"
  4475. " <td height=\"20\"><strong>P</strong></td>\n"
  4476. " <td>&nbsp;Abre Propriedades da Ferramenta</td>\n"
  4477. " </tr>\n"
  4478. " <tr height=\"20\">\n"
  4479. " <td height=\"20\"><strong>R</strong></td>\n"
  4480. " <td>&nbsp;Gira 90 graus horários</td>\n"
  4481. " </tr>\n"
  4482. " <tr height=\"20\">\n"
  4483. " <td height=\"20\"><strong>S</strong></td>\n"
  4484. " <td>&nbsp;Alterna Linha de Comando</td>\n"
  4485. " </tr>\n"
  4486. " <tr height=\"20\">\n"
  4487. " <td height=\"20\"><strong>T</strong></td>\n"
  4488. " <td>&nbsp;Adiciona uma Ferramenta (quando na Aba "
  4489. "Selecionado ou em Ferramentas NCC ou de Pintura)</td>\n"
  4490. " </tr>\n"
  4491. " <tr height=\"20\">\n"
  4492. " <td height=\"20\"><strong>V</strong></td>\n"
  4493. " <td>&nbsp;Zoom Ajustado</td>\n"
  4494. " </tr>\n"
  4495. " <tr height=\"20\">\n"
  4496. " <td height=\"20\"><strong>X</strong></td>\n"
  4497. " <td>&nbsp;Espelha em X</td>\n"
  4498. " </tr>\n"
  4499. " <tr height=\"20\">\n"
  4500. " <td height=\"20\"><strong>Y</strong></td>\n"
  4501. " <td>&nbsp;Espelha em Y</td>\n"
  4502. " </tr>\n"
  4503. " <tr height=\"20\">\n"
  4504. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4505. " <td>&nbsp;Zoom -</td>\n"
  4506. " </tr>\n"
  4507. " <tr height=\"20\">\n"
  4508. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4509. " <td>&nbsp;Zoom +</td>\n"
  4510. " </tr>\n"
  4511. " <tr height=\"20\">\n"
  4512. " <td height=\"20\">&nbsp;</td>\n"
  4513. " <td>&nbsp;</td>\n"
  4514. " </tr>\n"
  4515. " <tr height=\"20\">\n"
  4516. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4517. " <td>&nbsp;Seleciona Todos</td>\n"
  4518. " </tr>\n"
  4519. " <tr height=\"20\">\n"
  4520. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4521. " <td>&nbsp;Copiar Objeto</td>\n"
  4522. " </tr>\n"
  4523. " <tr height=\"20\">\n"
  4524. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4525. " <td>&nbsp;Abrir Arquivo Excellon</td>\n"
  4526. " </tr>\n"
  4527. " <tr height=\"20\">\n"
  4528. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4529. " <td>&nbsp;Abrir Arquivo Gerber</td>\n"
  4530. " </tr>\n"
  4531. " <tr height=\"20\">\n"
  4532. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4533. " <td>&nbsp;Novo Projeto</td>\n"
  4534. " </tr>\n"
  4535. " <tr height=\"20\">\n"
  4536. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4537. " <td>&nbsp;Ferramenta de Medição</td>\n"
  4538. " </tr>\n"
  4539. " <tr height=\"20\">\n"
  4540. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4541. " <td>&nbsp;Abrir Projeto</td>\n"
  4542. " </tr>\n"
  4543. " <tr height=\"20\">\n"
  4544. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4545. " <td>&nbsp;Salvar Projeto Como</td>\n"
  4546. " </tr>\n"
  4547. " <tr height=\"20\">\n"
  4548. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4549. " <td>&nbsp;Alternar Área de Gráfico</td>\n"
  4550. " </tr>\n"
  4551. " <tr height=\"20\">\n"
  4552. " <td height=\"20\">&nbsp;</td>\n"
  4553. " <td>&nbsp;</td>\n"
  4554. " </tr>\n"
  4555. " <tr height=\"20\">\n"
  4556. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4557. " <td>&nbsp;Copiar Obj_Name</td>\n"
  4558. " </tr>\n"
  4559. " <tr height=\"20\">\n"
  4560. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4561. " <td>&nbsp;Alterna Editor de Código</td>\n"
  4562. " </tr>\n"
  4563. " <tr height=\"20\">\n"
  4564. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4565. " <td>&nbsp;Alterna o Eixo</td>\n"
  4566. " </tr>\n"
  4567. " <tr height=\"20\">\n"
  4568. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4569. " <td>&nbsp;Abre Janela de Preferências</td>\n"
  4570. " </tr>\n"
  4571. " <tr height=\"20\">\n"
  4572. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4573. " <td>&nbsp;Gira 90 graus antihorário</td>\n"
  4574. " </tr>\n"
  4575. " <tr height=\"20\">\n"
  4576. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4577. " <td>&nbsp;Executa um Script</td>\n"
  4578. " </tr>\n"
  4579. " <tr height=\"20\">\n"
  4580. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4581. " <td>&nbsp;Alterna o Local de Trabalho</td>\n"
  4582. " </tr>\n"
  4583. " <tr height=\"20\">\n"
  4584. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4585. " <td>&nbsp;Inclina no Eixo X</td>\n"
  4586. " </tr>\n"
  4587. " <tr height=\"20\">\n"
  4588. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4589. " <td>&nbsp;Inclina no Eixo Y</td>\n"
  4590. " </tr>\n"
  4591. " <tr height=\"20\">\n"
  4592. " <td height=\"20\">&nbsp;</td>\n"
  4593. " <td>&nbsp;</td>\n"
  4594. " </tr>\n"
  4595. " <tr height=\"20\">\n"
  4596. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4597. " <td>&nbsp;Calculadoras</td>\n"
  4598. " </tr>\n"
  4599. " <tr height=\"20\">\n"
  4600. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4601. " <td>&nbsp;Ferramenta PCB 2-Faces</td>\n"
  4602. " </tr>\n"
  4603. " <tr height=\"20\">\n"
  4604. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4605. " <td>&nbsp;Ferramenta Pasta de Solda</td>\n"
  4606. " </tr>\n"
  4607. " <tr height=\"20\">\n"
  4608. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4609. " <td>&nbsp;Ferramenta Filme PCB</td>\n"
  4610. " </tr>\n"
  4611. " <tr height=\"20\">\n"
  4612. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4613. " <td>&nbsp;Ferramenta Retirar Cobre (NCC)</td>\n"
  4614. " </tr>\n"
  4615. " <tr height=\"20\">\n"
  4616. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4617. " <td>&nbsp;Ferramenta Pintura de Área</td>\n"
  4618. " </tr>\n"
  4619. " <tr height=\"20\">\n"
  4620. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4621. " <td>&nbsp;Ferramenta Importar PDF</td>\n"
  4622. " </tr>\n"
  4623. " <tr height=\"20\">\n"
  4624. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4625. " <td>&nbsp;Ferramenta Transformações</td>\n"
  4626. " </tr>\n"
  4627. " <tr height=\"20\">\n"
  4628. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4629. " <td>&nbsp;Ver Arquivo Fonte</td>\n"
  4630. " </tr>\n"
  4631. " <tr height=\"20\">\n"
  4632. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4633. " <td>&nbsp;Ferramenta Recorte PCB</td>\n"
  4634. " </tr>\n"
  4635. " <tr height=\"20\">\n"
  4636. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4637. " <td>&nbsp;Habilita todos os Gráficos</td>\n"
  4638. " </tr>\n"
  4639. " <tr height=\"20\">\n"
  4640. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4641. " <td>&nbsp;Desabilita todos os Gráficos</td>\n"
  4642. " </tr>\n"
  4643. " <tr height=\"20\">\n"
  4644. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4645. " <td>&nbsp;Desabilita todos os Gráficos não "
  4646. "selecionados</td>\n"
  4647. " </tr>\n"
  4648. " <tr height=\"20\">\n"
  4649. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4650. " <td>&nbsp;Alterna Tela Cheia</td>\n"
  4651. " </tr>\n"
  4652. " <tr height=\"20\">\n"
  4653. " <td height=\"20\">&nbsp;</td>\n"
  4654. " <td>&nbsp;</td>\n"
  4655. " </tr>\n"
  4656. " <tr height=\"20\">\n"
  4657. " <td height=\"20\"><strong>F1</strong></td>\n"
  4658. " <td>&nbsp;Abrir Manual Online</td>\n"
  4659. " </tr>\n"
  4660. " <tr height=\"20\">\n"
  4661. " <td height=\"20\"><strong>F4</strong></td>\n"
  4662. " <td>&nbsp;Abrir Tutoriais Online</td>\n"
  4663. " </tr>\n"
  4664. " <tr height=\"20\">\n"
  4665. " <td height=\"20\"><strong>Del</strong></td>\n"
  4666. " <td>&nbsp;Excluir Objeto</td>\n"
  4667. " </tr>\n"
  4668. " <tr height=\"20\">\n"
  4669. " <td height=\"20\"><strong>Del</strong></td>\n"
  4670. " <td>&nbsp;Alternativo: Excluir Ferramenta</td>\n"
  4671. " </tr>\n"
  4672. " <tr height=\"20\">\n"
  4673. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4674. " <td>&nbsp;(Seta Esquerda e Tecla_1)Alterna Área "
  4675. "Notebook (Lado Esquerdo)</td>\n"
  4676. " </tr>\n"
  4677. " <tr height=\"20\">\n"
  4678. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4679. " <td>&nbsp;(Des)habilita Objeto Gráfico</td>\n"
  4680. " </tr>\n"
  4681. " <tr height=\"20\">\n"
  4682. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4683. " <td>&nbsp;Deseleciona todos os objetos</td>\n"
  4684. " </tr>\n"
  4685. " </tbody>\n"
  4686. " </table>\n"
  4687. " \n"
  4688. " "
  4689. #: flatcamGUI/FlatCAMGUI.py:1311
  4690. msgid ""
  4691. "<b>Editor Shortcut list</b><br>\n"
  4692. " <br>\n"
  4693. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4694. "strong><br>\n"
  4695. " \n"
  4696. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4697. "\"width:283px\">\n"
  4698. " <tbody>\n"
  4699. " <tr height=\"20\">\n"
  4700. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4701. "td>\n"
  4702. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4703. " </tr>\n"
  4704. " <tr height=\"20\">\n"
  4705. " <td height=\"20\"><strong>B</strong></td>\n"
  4706. " <td>&nbsp;Buffer Tool</td>\n"
  4707. " </tr>\n"
  4708. " <tr height=\"20\">\n"
  4709. " <td height=\"20\"><strong>C</strong></td>\n"
  4710. " <td>&nbsp;Copy Geo Item</td>\n"
  4711. " </tr>\n"
  4712. " <tr height=\"20\">\n"
  4713. " <td height=\"20\"><strong>D</strong></td>\n"
  4714. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4715. "direction: CW or CCW</td>\n"
  4716. " </tr>\n"
  4717. " <tr height=\"20\">\n"
  4718. " <td height=\"20\"><strong>E</strong></td>\n"
  4719. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4720. " </tr>\n"
  4721. " <tr height=\"20\">\n"
  4722. " <td height=\"20\"><strong>I</strong></td>\n"
  4723. " <td>&nbsp;Paint Tool</td>\n"
  4724. " </tr>\n"
  4725. " <tr height=\"20\">\n"
  4726. " <td height=\"20\"><strong>J</strong></td>\n"
  4727. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4728. " </tr>\n"
  4729. " <tr height=\"20\">\n"
  4730. " <td height=\"20\"><strong>K</strong></td>\n"
  4731. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4732. " </tr>\n"
  4733. " <tr height=\"20\">\n"
  4734. " <td height=\"20\"><strong>M</strong></td>\n"
  4735. " <td>&nbsp;Move Geo Item</td>\n"
  4736. " </tr>\n"
  4737. " <tr height=\"20\">\n"
  4738. " <td height=\"20\"><strong>M</strong></td>\n"
  4739. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4740. "modes</td>\n"
  4741. " </tr>\n"
  4742. " <tr height=\"20\">\n"
  4743. " <td height=\"20\"><strong>N</strong></td>\n"
  4744. " <td>&nbsp;Draw a Polygon</td>\n"
  4745. " </tr>\n"
  4746. " <tr height=\"20\">\n"
  4747. " <td height=\"20\"><strong>O</strong></td>\n"
  4748. " <td>&nbsp;Draw a Circle</td>\n"
  4749. " </tr>\n"
  4750. " <tr height=\"20\">\n"
  4751. " <td height=\"20\"><strong>P</strong></td>\n"
  4752. " <td>&nbsp;Draw a Path</td>\n"
  4753. " </tr>\n"
  4754. " <tr height=\"20\">\n"
  4755. " <td height=\"20\"><strong>R</strong></td>\n"
  4756. " <td>&nbsp;Draw Rectangle</td>\n"
  4757. " </tr>\n"
  4758. " <tr height=\"20\">\n"
  4759. " <td height=\"20\"><strong>S</strong></td>\n"
  4760. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4761. " </tr>\n"
  4762. " <tr height=\"20\">\n"
  4763. " <td height=\"20\"><strong>T</strong></td>\n"
  4764. " <td>&nbsp;Add Text Tool</td>\n"
  4765. " </tr>\n"
  4766. " <tr height=\"20\">\n"
  4767. " <td height=\"20\"><strong>U</strong></td>\n"
  4768. " <td>&nbsp;Polygon Union Tool</td>\n"
  4769. " </tr>\n"
  4770. " <tr height=\"20\">\n"
  4771. " <td height=\"20\"><strong>X</strong></td>\n"
  4772. " <td>&nbsp;Flip shape on X axis</td>\n"
  4773. " </tr>\n"
  4774. " <tr height=\"20\">\n"
  4775. " <td height=\"20\"><strong>Y</strong></td>\n"
  4776. " <td>&nbsp;Flip shape on Y axis</td>\n"
  4777. " </tr>\n"
  4778. " <tr height=\"20\">\n"
  4779. " <td height=\"20\">&nbsp;</td>\n"
  4780. " <td>&nbsp;</td>\n"
  4781. " </tr>\n"
  4782. " <tr height=\"20\">\n"
  4783. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4784. " <td>&nbsp;Skew shape on X axis</td>\n"
  4785. " </tr>\n"
  4786. " <tr height=\"20\">\n"
  4787. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4788. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4789. " </tr>\n"
  4790. " <tr height=\"20\">\n"
  4791. " <td height=\"20\">&nbsp;</td>\n"
  4792. " <td>&nbsp;</td>\n"
  4793. " </tr>\n"
  4794. " <tr height=\"20\">\n"
  4795. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4796. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4797. " </tr>\n"
  4798. " <tr height=\"20\">\n"
  4799. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4800. " <td>&nbsp;Offset shape on X axis</td>\n"
  4801. " </tr>\n"
  4802. " <tr height=\"20\">\n"
  4803. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4804. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4805. " </tr>\n"
  4806. " <tr height=\"20\">\n"
  4807. " <td height=\"20\">&nbsp;</td>\n"
  4808. " <td>&nbsp;</td>\n"
  4809. " </tr>\n"
  4810. " <tr height=\"20\">\n"
  4811. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4812. " <td>&nbsp;Measurement Tool</td>\n"
  4813. " </tr>\n"
  4814. " <tr height=\"20\">\n"
  4815. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4816. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4817. " </tr>\n"
  4818. " <tr height=\"20\">\n"
  4819. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4820. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4821. " </tr>\n"
  4822. " <tr height=\"20\">\n"
  4823. " <td height=\"20\">&nbsp;</td>\n"
  4824. " <td>&nbsp;</td>\n"
  4825. " </tr>\n"
  4826. " <tr height=\"20\">\n"
  4827. " <td height=\"20\"><strong>Space</strong></td>\n"
  4828. " <td>&nbsp;Rotate Geometry</td>\n"
  4829. " </tr>\n"
  4830. " <tr height=\"20\">\n"
  4831. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4832. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4833. " </tr>\n"
  4834. " <tr height=\"20\">\n"
  4835. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4836. " <td>&nbsp;Abort and return to Select</td>\n"
  4837. " </tr>\n"
  4838. " <tr height=\"20\">\n"
  4839. " <td height=\"20\"><strong>Del</strong></td>\n"
  4840. " <td>&nbsp;Delete Shape</td>\n"
  4841. " </tr>\n"
  4842. " </tbody>\n"
  4843. " </table>\n"
  4844. " <br>\n"
  4845. " <br>\n"
  4846. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4847. "strong><br>\n"
  4848. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4849. "\"width:283px\">\n"
  4850. " <tbody>\n"
  4851. " <tr height=\"20\">\n"
  4852. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4853. "td>\n"
  4854. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4855. " </tr>\n"
  4856. " <tr height=\"20\">\n"
  4857. " <td height=\"20\"><strong>C</strong></td>\n"
  4858. " <td>&nbsp;Copy Drill(s)</td>\n"
  4859. " </tr>\n"
  4860. " <tr height=\"20\">\n"
  4861. " <td height=\"20\"><strong>D</strong></td>\n"
  4862. " <td>&nbsp;Add Drill</td>\n"
  4863. " </tr>\n"
  4864. " <tr height=\"20\">\n"
  4865. " <td height=\"20\"><strong>J</strong></td>\n"
  4866. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4867. " </tr>\n"
  4868. " <tr height=\"20\">\n"
  4869. " <td height=\"20\"><strong>M</strong></td>\n"
  4870. " <td>&nbsp;Move Drill(s)</td>\n"
  4871. " </tr>\n"
  4872. " <tr height=\"20\">\n"
  4873. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4874. "td>\n"
  4875. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4876. " </tr>\n"
  4877. " <tr height=\"20\">\n"
  4878. " <td height=\"20\"><strong>R</strong></td>\n"
  4879. " <td>&nbsp;Resize Drill(s)</td>\n"
  4880. " </tr>\n"
  4881. " <tr height=\"20\">\n"
  4882. " <td height=\"20\"><strong>T</strong></td>\n"
  4883. " <td>&nbsp;Add a new Tool</td>\n"
  4884. " </tr>\n"
  4885. " <tr height=\"20\">\n"
  4886. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4887. "td>\n"
  4888. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4889. " </tr>\n"
  4890. " <tr height=\"20\">\n"
  4891. " <td height=\"20\">&nbsp;</td>\n"
  4892. " <td>&nbsp;</td>\n"
  4893. " </tr>\n"
  4894. " <tr height=\"20\">\n"
  4895. " <td height=\"20\"><strong>Del</strong></td>\n"
  4896. " <td>&nbsp;Delete Drill(s)</td>\n"
  4897. " </tr>\n"
  4898. " <tr height=\"20\">\n"
  4899. " <td height=\"20\"><strong>Del</strong></td>\n"
  4900. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4901. " </tr>\n"
  4902. " <tr height=\"20\">\n"
  4903. " <td height=\"20\">&nbsp;</td>\n"
  4904. " <td>&nbsp;</td>\n"
  4905. " </tr>\n"
  4906. " <tr height=\"20\">\n"
  4907. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4908. " <td>&nbsp;Abort and return to Select</td>\n"
  4909. " </tr>\n"
  4910. " <tr height=\"20\">\n"
  4911. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4912. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4913. " </tr>\n"
  4914. " </tbody>\n"
  4915. " </table>\n"
  4916. " <br>\n"
  4917. " <br>\n"
  4918. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4919. "strong><br>\n"
  4920. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4921. "\"width:283px\">\n"
  4922. " <tbody>\n"
  4923. " <tr height=\"20\">\n"
  4924. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4925. "td>\n"
  4926. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4927. " </tr>\n"
  4928. " <tr height=\"20\">\n"
  4929. " <td height=\"20\"><strong>B</strong></td>\n"
  4930. " <td>&nbsp;Buffer</td>\n"
  4931. " </tr>\n"
  4932. " <tr height=\"20\">\n"
  4933. " <td height=\"20\"><strong>C</strong></td>\n"
  4934. " <td>&nbsp;Copy</td>\n"
  4935. " </tr>\n"
  4936. " <tr height=\"20\">\n"
  4937. " <td height=\"20\"><strong>D</strong></td>\n"
  4938. " <td>&nbsp;Add Disc</td>\n"
  4939. " </tr>\n"
  4940. " <tr height=\"20\">\n"
  4941. " <td height=\"20\"><strong>E</strong></td>\n"
  4942. " <td>&nbsp;Add SemiDisc</td>\n"
  4943. " </tr>\n"
  4944. " <tr height=\"20\">\n"
  4945. " <td height=\"20\"><strong>J</strong></td>\n"
  4946. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4947. " </tr>\n"
  4948. " <tr height=\"20\">\n"
  4949. " <td height=\"20\"><strong>M</strong></td>\n"
  4950. " <td>&nbsp;Move</td>\n"
  4951. " </tr>\n"
  4952. " <tr height=\"20\">\n"
  4953. " <td height=\"20\"><strong>N</strong></td>\n"
  4954. " <td>&nbsp;Add Region</td>\n"
  4955. " </tr>\n"
  4956. " <tr height=\"20\">\n"
  4957. " <td height=\"20\"><strong>P</strong></td>\n"
  4958. " <td>&nbsp;Add Pad</td>\n"
  4959. " </tr>\n"
  4960. " <tr height=\"20\">\n"
  4961. " <td height=\"20\"><strong>R</strong></td>\n"
  4962. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4963. "REVERSE the bend modes</td>\n"
  4964. " </tr>\n"
  4965. " <tr height=\"20\">\n"
  4966. " <td height=\"20\"><strong>S</strong></td>\n"
  4967. " <td>&nbsp;Scale</td>\n"
  4968. " </tr>\n"
  4969. " <tr height=\"20\">\n"
  4970. " <td height=\"20\"><strong>T</strong></td>\n"
  4971. " <td>&nbsp;Add Track</td>\n"
  4972. " </tr>\n"
  4973. " <tr height=\"20\">\n"
  4974. " <td height=\"20\"><strong>T</strong></td>\n"
  4975. " <td>&nbsp;Within Track & Region Tools will cycle "
  4976. "FORWARD the bend modes</td>\n"
  4977. " </tr>\n"
  4978. " <tr height=\"20\">\n"
  4979. " <td height=\"20\">&nbsp;</td>\n"
  4980. " <td>&nbsp;</td>\n"
  4981. " </tr>\n"
  4982. " <tr height=\"20\">\n"
  4983. " <td height=\"20\"><strong>Del</strong></td>\n"
  4984. " <td>&nbsp;Delete</td>\n"
  4985. " </tr>\n"
  4986. " <tr height=\"20\">\n"
  4987. " <td height=\"20\"><strong>Del</strong></td>\n"
  4988. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4989. " </tr>\n"
  4990. " <tr height=\"20\">\n"
  4991. " <td height=\"20\">&nbsp;</td>\n"
  4992. " <td>&nbsp;</td>\n"
  4993. " </tr>\n"
  4994. " <tr height=\"20\">\n"
  4995. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4996. " <td>&nbsp;Abort and return to Select</td>\n"
  4997. " </tr>\n"
  4998. " <tr height=\"20\">\n"
  4999. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5000. " <td>&nbsp;Eraser Tool</td>\n"
  5001. " </tr>\n"
  5002. " <tr height=\"20\">\n"
  5003. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5004. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  5005. " </tr>\n"
  5006. " <tr height=\"20\">\n"
  5007. " <td height=\"20\">&nbsp;</td>\n"
  5008. " <td>&nbsp;</td>\n"
  5009. " </tr>\n"
  5010. " <tr height=\"20\">\n"
  5011. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5012. " <td>&nbsp;Mark Area Tool</td>\n"
  5013. " </tr>\n"
  5014. " <tr height=\"20\">\n"
  5015. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5016. " <td>&nbsp;Poligonize Tool</td>\n"
  5017. " </tr>\n"
  5018. " <tr height=\"20\">\n"
  5019. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5020. " <td>&nbsp;Transformation Tool</td>\n"
  5021. " </tr>\n"
  5022. " </tbody>\n"
  5023. " </table>\n"
  5024. " "
  5025. msgstr ""
  5026. "<b>Lista de Atalhos dos Editores</b><br>\n"
  5027. " <br>\n"
  5028. " <strong><span style=\"color:#0000ff\">EDITOR DE GEOMETRIA</"
  5029. "span></strong><br>\n"
  5030. " \n"
  5031. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5032. "\"width:283px\">\n"
  5033. " <tbody>\n"
  5034. " <tr height=\"20\">\n"
  5035. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5036. "td>\n"
  5037. " <td width=\"194\">&nbsp;Desenha um Arco</td>\n"
  5038. " </tr>\n"
  5039. " <tr height=\"20\">\n"
  5040. " <td height=\"20\"><strong>B</strong></td>\n"
  5041. " <td>&nbsp;Ferramenta Buffer</td>\n"
  5042. " </tr>\n"
  5043. " <tr height=\"20\">\n"
  5044. " <td height=\"20\"><strong>C</strong></td>\n"
  5045. " <td>&nbsp;Copiar Objeto Geo</td>\n"
  5046. " </tr>\n"
  5047. " <tr height=\"20\">\n"
  5048. " <td height=\"20\"><strong>D</strong></td>\n"
  5049. " <td>&nbsp;Em Adicionar Arco, alterna o sentido do "
  5050. "ARCO: CW ou CCW</td>\n"
  5051. " </tr>\n"
  5052. " <tr height=\"20\">\n"
  5053. " <td height=\"20\"><strong>E</strong></td>\n"
  5054. " <td>&nbsp;Ferramenta de Interseção de Polígonos</"
  5055. "td>\n"
  5056. " </tr>\n"
  5057. " <tr height=\"20\">\n"
  5058. " <td height=\"20\"><strong>I</strong></td>\n"
  5059. " <td>&nbsp;Ferramenta de Pintura</td>\n"
  5060. " </tr>\n"
  5061. " <tr height=\"20\">\n"
  5062. " <td height=\"20\"><strong>J</strong></td>\n"
  5063. " <td>&nbsp;Ir para a Localização (x, y)</td>\n"
  5064. " </tr>\n"
  5065. " <tr height=\"20\">\n"
  5066. " <td height=\"20\"><strong>K</strong></td>\n"
  5067. " <td>&nbsp;Alterna Encaixe no Canto</td>\n"
  5068. " </tr>\n"
  5069. " <tr height=\"20\">\n"
  5070. " <td height=\"20\"><strong>M</strong></td>\n"
  5071. " <td>&nbsp;Mover Item Geo</td>\n"
  5072. " </tr>\n"
  5073. " <tr height=\"20\">\n"
  5074. " <td height=\"20\"><strong>M</strong></td>\n"
  5075. " <td>&nbsp;Em Adicionar Arco, alterna entre os modos "
  5076. "de ARCO</td>\n"
  5077. " </tr>\n"
  5078. " <tr height=\"20\">\n"
  5079. " <td height=\"20\"><strong>N</strong></td>\n"
  5080. " <td>&nbsp;Desenha um Polígono</td>\n"
  5081. " </tr>\n"
  5082. " <tr height=\"20\">\n"
  5083. " <td height=\"20\"><strong>O</strong></td>\n"
  5084. " <td>&nbsp;Desenha um Círculo</td>\n"
  5085. " </tr>\n"
  5086. " <tr height=\"20\">\n"
  5087. " <td height=\"20\"><strong>P</strong></td>\n"
  5088. " <td>&nbsp;Desenha um Caminho</td>\n"
  5089. " </tr>\n"
  5090. " <tr height=\"20\">\n"
  5091. " <td height=\"20\"><strong>R</strong></td>\n"
  5092. " <td>&nbsp;Desenha um Retângulo</td>\n"
  5093. " </tr>\n"
  5094. " <tr height=\"20\">\n"
  5095. " <td height=\"20\"><strong>S</strong></td>\n"
  5096. " <td>&nbsp;Ferramenta de Subtração de Polígonos</td>\n"
  5097. " </tr>\n"
  5098. " <tr height=\"20\">\n"
  5099. " <td height=\"20\"><strong>T</strong></td>\n"
  5100. " <td>&nbsp;Ferramenta Adicionar Texto</td>\n"
  5101. " </tr>\n"
  5102. " <tr height=\"20\">\n"
  5103. " <td height=\"20\"><strong>U</strong></td>\n"
  5104. " <td>&nbsp;Ferramenta União de Polígonos</td>\n"
  5105. " </tr>\n"
  5106. " <tr height=\"20\">\n"
  5107. " <td height=\"20\"><strong>X</strong></td>\n"
  5108. " <td>&nbsp;Espelha a forma no eixo X</td>\n"
  5109. " </tr>\n"
  5110. " <tr height=\"20\">\n"
  5111. " <td height=\"20\"><strong>Y</strong></td>\n"
  5112. " <td>&nbsp;Espelha a forma no eixo Y</td>\n"
  5113. " </tr>\n"
  5114. " <tr height=\"20\">\n"
  5115. " <td height=\"20\">&nbsp;</td>\n"
  5116. " <td>&nbsp;</td>\n"
  5117. " </tr>\n"
  5118. " <tr height=\"20\">\n"
  5119. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  5120. " <td>&nbsp;Inclina a forma no eixo X</td>\n"
  5121. " </tr>\n"
  5122. " <tr height=\"20\">\n"
  5123. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  5124. " <td>&nbsp;Inclina a forma no eixo Y</td>\n"
  5125. " </tr>\n"
  5126. " <tr height=\"20\">\n"
  5127. " <td height=\"20\">&nbsp;</td>\n"
  5128. " <td>&nbsp;</td>\n"
  5129. " </tr>\n"
  5130. " <tr height=\"20\">\n"
  5131. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5132. " <td>&nbsp;Ferramenta Editor de Transformação</td>\n"
  5133. " </tr>\n"
  5134. " <tr height=\"20\">\n"
  5135. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  5136. " <td>&nbsp;Desloca a forma no eixo X</td>\n"
  5137. " </tr>\n"
  5138. " <tr height=\"20\">\n"
  5139. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  5140. " <td>&nbsp;Desloca a forma no eixo Y</td>\n"
  5141. " </tr>\n"
  5142. " <tr height=\"20\">\n"
  5143. " <td height=\"20\">&nbsp;</td>\n"
  5144. " <td>&nbsp;</td>\n"
  5145. " </tr>\n"
  5146. " <tr height=\"20\">\n"
  5147. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  5148. " <td>&nbsp;Ferramenta de Medição</td>\n"
  5149. " </tr>\n"
  5150. " <tr height=\"20\">\n"
  5151. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5152. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5153. " </tr>\n"
  5154. " <tr height=\"20\">\n"
  5155. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  5156. " <td>&nbsp;Ferramenta de Corte de Polígono</td>\n"
  5157. " </tr>\n"
  5158. " <tr height=\"20\">\n"
  5159. " <td height=\"20\">&nbsp;</td>\n"
  5160. " <td>&nbsp;</td>\n"
  5161. " </tr>\n"
  5162. " <tr height=\"20\">\n"
  5163. " <td height=\"20\"><strong>Space</strong></td>\n"
  5164. " <td>&nbsp;Girar Geometria</td>\n"
  5165. " </tr>\n"
  5166. " <tr height=\"20\">\n"
  5167. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  5168. " <td>&nbsp;Terminar o desenho para certas "
  5169. "ferramentas</td>\n"
  5170. " </tr>\n"
  5171. " <tr height=\"20\">\n"
  5172. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5173. " <td>&nbsp;Abortar e retornar à Seleção</td>\n"
  5174. " </tr>\n"
  5175. " <tr height=\"20\">\n"
  5176. " <td height=\"20\"><strong>Del</strong></td>\n"
  5177. " <td>&nbsp;Excluir Forma</td>\n"
  5178. " </tr>\n"
  5179. " </tbody>\n"
  5180. " </table>\n"
  5181. " <br>\n"
  5182. " <br>\n"
  5183. " <strong><span style=\"color:#ff0000\">EDITOR EXCELLON</span></"
  5184. "strong><br>\n"
  5185. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5186. "\"width:283px\">\n"
  5187. " <tbody>\n"
  5188. " <tr height=\"20\">\n"
  5189. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5190. "td>\n"
  5191. " <td width=\"194\">&nbsp;Adiciona Matriz de Brocas</"
  5192. "td>\n"
  5193. " </tr>\n"
  5194. " <tr height=\"20\">\n"
  5195. " <td height=\"20\"><strong>C</strong></td>\n"
  5196. " <td>&nbsp;Copiar Broca(s)</td>\n"
  5197. " </tr>\n"
  5198. " <tr height=\"20\">\n"
  5199. " <td height=\"20\"><strong>D</strong></td>\n"
  5200. " <td>&nbsp;Adicionar Broca</td>\n"
  5201. " </tr>\n"
  5202. " <tr height=\"20\">\n"
  5203. " <td height=\"20\"><strong>J</strong></td>\n"
  5204. " <td>&nbsp;Ir para Localização (x, y)</td>\n"
  5205. " </tr>\n"
  5206. " <tr height=\"20\">\n"
  5207. " <td height=\"20\"><strong>M</strong></td>\n"
  5208. " <td>&nbsp;Mover Broca(s)</td>\n"
  5209. " </tr>\n"
  5210. " <tr height=\"20\">\n"
  5211. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  5212. "td>\n"
  5213. " <td width=\"194\">&nbsp;Adicionar Matriz de "
  5214. "Ranhuras</td>\n"
  5215. " </tr>\n"
  5216. "\n"
  5217. " <tr height=\"20\">\n"
  5218. " <td height=\"20\"><strong>R</strong></td>\n"
  5219. " <td>&nbsp;Redimensionar Broca(s)</td>\n"
  5220. " </tr>\n"
  5221. " <tr height=\"20\">\n"
  5222. " <td height=\"20\"><strong>T</strong></td>\n"
  5223. " <td>&nbsp;Adicionar uma Nova Ferramenta</td>\n"
  5224. " </tr>\n"
  5225. " <tr height=\"20\">\n"
  5226. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  5227. "td>\n"
  5228. " <td width=\"194\">&nbsp;Adicionar Ranhura</td>\n"
  5229. " </tr>\n"
  5230. " <tr height=\"20\">\n"
  5231. " <td height=\"20\">&nbsp;</td>\n"
  5232. " <td>&nbsp;</td>\n"
  5233. " </tr>\n"
  5234. " <tr height=\"20\">\n"
  5235. " <td height=\"20\"><strong>Del</strong></td>\n"
  5236. " <td>&nbsp;Excluir Broca(s)</td>\n"
  5237. " </tr>\n"
  5238. " <tr height=\"20\">\n"
  5239. " <td height=\"20\"><strong>Del</strong></td>\n"
  5240. " <td>&nbsp;Alternativo: Excluir Ferramenta(s)</td>\n"
  5241. " </tr>\n"
  5242. " <tr height=\"20\">\n"
  5243. " <td height=\"20\">&nbsp;</td>\n"
  5244. " <td>&nbsp;</td>\n"
  5245. " </tr>\n"
  5246. " <tr height=\"20\">\n"
  5247. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5248. " <td>&nbsp;Abortar e retornar para a Seleção</td>\n"
  5249. " </tr>\n"
  5250. " <tr height=\"20\">\n"
  5251. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5252. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5253. " </tr>\n"
  5254. " </tbody>\n"
  5255. " </table>\n"
  5256. " <br>\n"
  5257. " <br>\n"
  5258. " <strong><span style=\"color:#00ff00\">EDITOR GERBER</span></"
  5259. "strong><br>\n"
  5260. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  5261. "\"width:283px\">\n"
  5262. " <tbody>\n"
  5263. " <tr height=\"20\">\n"
  5264. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  5265. "td>\n"
  5266. " <td width=\"194\">&nbsp;Adicionar Matriz de Pads</"
  5267. "td>\n"
  5268. " </tr>\n"
  5269. " <tr height=\"20\">\n"
  5270. " <td height=\"20\"><strong>B</strong></td>\n"
  5271. " <td>&nbsp;Buffer</td>\n"
  5272. " </tr>\n"
  5273. " <tr height=\"20\">\n"
  5274. " <td height=\"20\"><strong>C</strong></td>\n"
  5275. " <td>&nbsp;Copiar</td>\n"
  5276. " </tr>\n"
  5277. " <tr height=\"20\">\n"
  5278. " <td height=\"20\"><strong>D</strong></td>\n"
  5279. " <td>&nbsp;Adicionar Disco</td>\n"
  5280. " </tr>\n"
  5281. " <tr height=\"20\">\n"
  5282. " <td height=\"20\"><strong>E</strong></td>\n"
  5283. " <td>&nbsp;Adicionar SemiDisco</td>\n"
  5284. " </tr>\n"
  5285. " <tr height=\"20\">\n"
  5286. " <td height=\"20\"><strong>J</strong></td>\n"
  5287. " <td>&nbsp;Ir para a Localização (x, y)</td>\n"
  5288. " </tr>\n"
  5289. " <tr height=\"20\">\n"
  5290. " <td height=\"20\"><strong>M</strong></td>\n"
  5291. " <td>&nbsp;Mover</td>\n"
  5292. " </tr>\n"
  5293. " <tr height=\"20\">\n"
  5294. " <td height=\"20\"><strong>N</strong></td>\n"
  5295. " <td>&nbsp;Adicionar Região</td>\n"
  5296. " </tr>\n"
  5297. " <tr height=\"20\">\n"
  5298. " <td height=\"20\"><strong>P</strong></td>\n"
  5299. " <td>&nbsp;Adicionar Pad</td>\n"
  5300. " </tr>\n"
  5301. " <tr height=\"20\">\n"
  5302. " <td height=\"20\"><strong>R</strong></td>\n"
  5303. " <td>&nbsp;Nas Ferramentas Trilha & Região alternará "
  5304. "em REVERSO entre os modos de curvatura</td>\n"
  5305. " </tr>\n"
  5306. " <tr height=\"20\">\n"
  5307. " <td height=\"20\"><strong>S</strong></td>\n"
  5308. " <td>&nbsp;Escala</td>\n"
  5309. " </tr>\n"
  5310. " <tr height=\"20\">\n"
  5311. " <td height=\"20\"><strong>T</strong></td>\n"
  5312. " <td>&nbsp;Adicionar Trilha</td>\n"
  5313. " </tr>\n"
  5314. " <tr height=\"20\">\n"
  5315. " <td height=\"20\"><strong>T</strong></td>\n"
  5316. " <td>&nbsp;Nas Ferramentas Trilha & Região alternará "
  5317. "entre os modos de curvatura</td>\n"
  5318. " </tr>\n"
  5319. " <tr height=\"20\">\n"
  5320. " <td height=\"20\">&nbsp;</td>\n"
  5321. " <td>&nbsp;</td>\n"
  5322. " </tr>\n"
  5323. " <tr height=\"20\">\n"
  5324. " <td height=\"20\"><strong>Del</strong></td>\n"
  5325. " <td>&nbsp;Excluir</td>\n"
  5326. " </tr>\n"
  5327. " <tr height=\"20\">\n"
  5328. " <td height=\"20\"><strong>Del</strong></td>\n"
  5329. " <td>&nbsp;Alternativo: Excluir Aberturas</td>\n"
  5330. " </tr>\n"
  5331. " <tr height=\"20\">\n"
  5332. " <td height=\"20\">&nbsp;</td>\n"
  5333. " <td>&nbsp;</td>\n"
  5334. " </tr>\n"
  5335. " <tr height=\"20\">\n"
  5336. " <td height=\"20\"><strong>ESC</strong></td>\n"
  5337. " <td>&nbsp;Abortar e retornar para a Seleção</td>\n"
  5338. " </tr>\n"
  5339. " <tr height=\"20\">\n"
  5340. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  5341. " <td>&nbsp;Ferramenta Apagador</td>\n"
  5342. " </tr>\n"
  5343. " <tr height=\"20\">\n"
  5344. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  5345. " <td>&nbsp;Salvar Objeto e Sair do Editor</td>\n"
  5346. " </tr>\n"
  5347. " <tr height=\"20\">\n"
  5348. " <td height=\"20\">&nbsp;</td>\n"
  5349. " <td>&nbsp;</td>\n"
  5350. " </tr>\n"
  5351. " <tr height=\"20\">\n"
  5352. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  5353. " <td>&nbsp;Ferramenta Marcar Área</td>\n"
  5354. " </tr>\n"
  5355. " <tr height=\"20\">\n"
  5356. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  5357. " <td>&nbsp;Ferramenta Poligonizar</td>\n"
  5358. " </tr>\n"
  5359. " <tr height=\"20\">\n"
  5360. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  5361. " <td>&nbsp;Ferramenta Transformação</td>\n"
  5362. " </tr>\n"
  5363. " </tbody>\n"
  5364. " </table>\n"
  5365. " "
  5366. #: flatcamGUI/FlatCAMGUI.py:1642
  5367. msgid "Toggle Visibility"
  5368. msgstr "Alternar Visibilidade"
  5369. #: flatcamGUI/FlatCAMGUI.py:1643
  5370. msgid "Toggle Panel"
  5371. msgstr "Alternar Painel"
  5372. #: flatcamGUI/FlatCAMGUI.py:1646
  5373. msgid "New"
  5374. msgstr "Novo"
  5375. #: flatcamGUI/FlatCAMGUI.py:1647
  5376. msgid "Geometry"
  5377. msgstr "Geometria"
  5378. #: flatcamGUI/FlatCAMGUI.py:1649
  5379. msgid "Excellon"
  5380. msgstr "Excellon"
  5381. #: flatcamGUI/FlatCAMGUI.py:1654
  5382. msgid "Grids"
  5383. msgstr "Grades"
  5384. #: flatcamGUI/FlatCAMGUI.py:1656
  5385. msgid "View"
  5386. msgstr "Ver"
  5387. #: flatcamGUI/FlatCAMGUI.py:1658
  5388. msgid "Clear Plot"
  5389. msgstr "Limpar Gráfico"
  5390. #: flatcamGUI/FlatCAMGUI.py:1659
  5391. msgid "Replot"
  5392. msgstr "Redesenhar"
  5393. #: flatcamGUI/FlatCAMGUI.py:1662
  5394. msgid "Geo Editor"
  5395. msgstr "Editor de Geometria"
  5396. #: flatcamGUI/FlatCAMGUI.py:1663
  5397. msgid "Path"
  5398. msgstr "Caminho"
  5399. #: flatcamGUI/FlatCAMGUI.py:1664
  5400. msgid "Rectangle"
  5401. msgstr "Retângulo"
  5402. #: flatcamGUI/FlatCAMGUI.py:1666
  5403. msgid "Circle"
  5404. msgstr "Círculo"
  5405. #: flatcamGUI/FlatCAMGUI.py:1667
  5406. msgid "Polygon"
  5407. msgstr "Polígono"
  5408. #: flatcamGUI/FlatCAMGUI.py:1668
  5409. msgid "Arc"
  5410. msgstr "Arco"
  5411. #: flatcamGUI/FlatCAMGUI.py:1671
  5412. msgid "Text"
  5413. msgstr "Texto"
  5414. #: flatcamGUI/FlatCAMGUI.py:1677
  5415. msgid "Union"
  5416. msgstr "União"
  5417. #: flatcamGUI/FlatCAMGUI.py:1678
  5418. msgid "Intersection"
  5419. msgstr "Interseção"
  5420. #: flatcamGUI/FlatCAMGUI.py:1679
  5421. msgid "Substraction"
  5422. msgstr "Substração"
  5423. #: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
  5424. #: flatcamGUI/ObjectUI.py:1409
  5425. msgid "Cut"
  5426. msgstr "Cortar"
  5427. #: flatcamGUI/FlatCAMGUI.py:1687
  5428. msgid "Pad"
  5429. msgstr "Pad"
  5430. #: flatcamGUI/FlatCAMGUI.py:1688
  5431. msgid "Pad Array"
  5432. msgstr "Matriz de Pads"
  5433. #: flatcamGUI/FlatCAMGUI.py:1691
  5434. msgid "Track"
  5435. msgstr "Trilha"
  5436. #: flatcamGUI/FlatCAMGUI.py:1692
  5437. msgid "Region"
  5438. msgstr "Região"
  5439. #: flatcamGUI/FlatCAMGUI.py:1708
  5440. msgid "Exc Editor"
  5441. msgstr "Editor Exc"
  5442. #: flatcamGUI/FlatCAMGUI.py:1709
  5443. msgid "Add Drill"
  5444. msgstr "Adicionar Broca"
  5445. #: flatcamGUI/FlatCAMGUI.py:1745
  5446. msgid "Print Preview"
  5447. msgstr "Visualizar Impressão"
  5448. #: flatcamGUI/FlatCAMGUI.py:1746
  5449. msgid "Print Code"
  5450. msgstr "Imprimir Código"
  5451. #: flatcamGUI/FlatCAMGUI.py:1747
  5452. msgid "Find in Code"
  5453. msgstr "Encontrar no Código"
  5454. #: flatcamGUI/FlatCAMGUI.py:1752
  5455. msgid "Replace With"
  5456. msgstr "Substituir Por"
  5457. #: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
  5458. #: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
  5459. msgid "All"
  5460. msgstr "Todos"
  5461. #: flatcamGUI/FlatCAMGUI.py:1758
  5462. msgid ""
  5463. "When checked it will replace all instances in the 'Find' box\n"
  5464. "with the text in the 'Replace' box.."
  5465. msgstr ""
  5466. "Quando marcado, todas as instâncias na caixa 'Localizar'\n"
  5467. "serão substituídas pelo texto na caixa 'Substituir'."
  5468. #: flatcamGUI/FlatCAMGUI.py:1761
  5469. msgid "Open Code"
  5470. msgstr "Abrir Código"
  5471. #: flatcamGUI/FlatCAMGUI.py:1762
  5472. msgid "Save Code"
  5473. msgstr "Salvar Código"
  5474. #: flatcamGUI/FlatCAMGUI.py:1797
  5475. msgid ""
  5476. "Relative neasurement.\n"
  5477. "Reference is last click position"
  5478. msgstr ""
  5479. "Medição relativa.\n"
  5480. "Em relação à posição do último clique"
  5481. #: flatcamGUI/FlatCAMGUI.py:1803
  5482. msgid ""
  5483. "Absolute neasurement.\n"
  5484. "Reference is (X=0, Y= 0) position"
  5485. msgstr ""
  5486. "Medição absoluta.\n"
  5487. "Em relação à posição (X=0, Y=0)"
  5488. #: flatcamGUI/FlatCAMGUI.py:1933
  5489. msgid "Lock Toolbars"
  5490. msgstr "Travar Barras de Ferramentas"
  5491. #: flatcamGUI/FlatCAMGUI.py:2038
  5492. msgid "Select 'Esc'"
  5493. msgstr "Selecionar 'Esc'"
  5494. #: flatcamGUI/FlatCAMGUI.py:2063
  5495. msgid "Copy Objects"
  5496. msgstr "Copiar Objetos"
  5497. #: flatcamGUI/FlatCAMGUI.py:2065
  5498. msgid "Delete Shape"
  5499. msgstr "Excluir Forma"
  5500. #: flatcamGUI/FlatCAMGUI.py:2070
  5501. msgid "Move Objects"
  5502. msgstr "Mover Objetos"
  5503. #: flatcamGUI/FlatCAMGUI.py:2506
  5504. msgid ""
  5505. "Please first select a geometry item to be cutted\n"
  5506. "then select the geometry item that will be cutted\n"
  5507. "out of the first item. In the end press ~X~ key or\n"
  5508. "the toolbar button."
  5509. msgstr ""
  5510. "Por favor, primeiro selecione um item de geometria a ser cortado\n"
  5511. "e em seguida, selecione o item de geometria que será cortado\n"
  5512. "fora do primeiro item. No final, pressione a tecla ~X~ ou\n"
  5513. "o botão da barra de ferramentas."
  5514. #: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
  5515. #: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
  5516. msgid "Warning"
  5517. msgstr "Aviso"
  5518. #: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
  5519. msgid "[success] Done."
  5520. msgstr "Feito."
  5521. #: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
  5522. #: flatcamGUI/FlatCAMGUI.py:2999
  5523. msgid "[WARNING_NOTCL] Cancelled."
  5524. msgstr "Cancelado."
  5525. #: flatcamGUI/FlatCAMGUI.py:2645
  5526. msgid ""
  5527. "Please select geometry items \n"
  5528. "on which to perform Intersection Tool."
  5529. msgstr ""
  5530. "Por favor, selecione itens de geometria\n"
  5531. "para executar a ferramenta de interseção."
  5532. #: flatcamGUI/FlatCAMGUI.py:2704
  5533. msgid ""
  5534. "Please select geometry items \n"
  5535. "on which to perform Substraction Tool."
  5536. msgstr ""
  5537. "Por favor, selecione itens de geometria\n"
  5538. "para executar a ferramenta de subtração."
  5539. #: flatcamGUI/FlatCAMGUI.py:2724
  5540. msgid ""
  5541. "Please select geometry items \n"
  5542. "on which to perform union."
  5543. msgstr ""
  5544. "Por favor, selecione itens de geometria\n"
  5545. "para executar a ferramenta de união."
  5546. #: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
  5547. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  5548. msgstr "Cancelado. Nada selecionado para excluir."
  5549. #: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
  5550. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  5551. msgstr "Cancelado. Nada selecionado para copiar."
  5552. #: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
  5553. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  5554. msgstr "Cancelado. Nada selecionado para mover."
  5555. #: flatcamGUI/FlatCAMGUI.py:3155
  5556. msgid "New Tool ..."
  5557. msgstr "Nova Ferramenta ..."
  5558. #: flatcamGUI/FlatCAMGUI.py:3156
  5559. msgid "Enter a Tool Diameter"
  5560. msgstr "Digite um diâmetro de ferramenta"
  5561. #: flatcamGUI/FlatCAMGUI.py:3164
  5562. #, python-brace-format
  5563. msgid "[success] Added new tool with dia: {dia} {units}"
  5564. msgstr "Adicionada nova ferramenta com diâmetro: {dia} {units}"
  5565. #: flatcamGUI/FlatCAMGUI.py:3211
  5566. msgid "Measurement Tool exit..."
  5567. msgstr "Saída da ferramenta de medição ..."
  5568. #: flatcamGUI/FlatCAMGUI.py:3312
  5569. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  5570. msgstr "O aplicativo está salvando o projeto. Por favor, espere..."
  5571. #: flatcamGUI/FlatCAMGUI.py:3554
  5572. msgid "GUI Preferences"
  5573. msgstr "Preferências da GUI"
  5574. #: flatcamGUI/FlatCAMGUI.py:3560
  5575. msgid "Grid X value"
  5576. msgstr "Valor da grade X"
  5577. #: flatcamGUI/FlatCAMGUI.py:3562
  5578. msgid "This is the Grid snap value on X axis."
  5579. msgstr "Este é o valor do encaixe à grade no eixo X."
  5580. #: flatcamGUI/FlatCAMGUI.py:3567
  5581. msgid "Grid Y value"
  5582. msgstr "Valor da grade Y"
  5583. #: flatcamGUI/FlatCAMGUI.py:3569
  5584. msgid "This is the Grid snap value on Y axis."
  5585. msgstr "Este é o valor do encaixe à grade no eixo Y."
  5586. #: flatcamGUI/FlatCAMGUI.py:3574
  5587. msgid "Snap Max"
  5588. msgstr "Encaixe Max"
  5589. #: flatcamGUI/FlatCAMGUI.py:3579
  5590. msgid "Workspace"
  5591. msgstr "Área de trabalho"
  5592. #: flatcamGUI/FlatCAMGUI.py:3581
  5593. msgid ""
  5594. "Draw a delimiting rectangle on canvas.\n"
  5595. "The purpose is to illustrate the limits for our work."
  5596. msgstr ""
  5597. "Desenha um retângulo de delimitação na tela.\n"
  5598. "O objetivo é ilustrar os limites do nosso trabalho."
  5599. #: flatcamGUI/FlatCAMGUI.py:3584
  5600. msgid "Wk. format"
  5601. msgstr "Formato da AT"
  5602. #: flatcamGUI/FlatCAMGUI.py:3586
  5603. msgid ""
  5604. "Select the type of rectangle to be used on canvas,\n"
  5605. "as valid workspace."
  5606. msgstr ""
  5607. "Selecione o tipo de retângulo a ser usado na tela,\n"
  5608. "como área de trabalho válida."
  5609. #: flatcamGUI/FlatCAMGUI.py:3599
  5610. msgid "Plot Fill"
  5611. msgstr "Cor de Preenchimento"
  5612. #: flatcamGUI/FlatCAMGUI.py:3601
  5613. msgid ""
  5614. "Set the fill color for plotted objects.\n"
  5615. "First 6 digits are the color and the last 2\n"
  5616. "digits are for alpha (transparency) level."
  5617. msgstr ""
  5618. "Define a cor de preenchimento para os objetos plotados.\n"
  5619. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5620. "dígitos são para o nível alfa (transparência)."
  5621. #: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
  5622. #: flatcamGUI/FlatCAMGUI.py:3715
  5623. msgid "Alpha Level"
  5624. msgstr "Nível Alfa"
  5625. #: flatcamGUI/FlatCAMGUI.py:3617
  5626. msgid "Set the fill transparency for plotted objects."
  5627. msgstr "Define a transparência de preenchimento para objetos plotados."
  5628. #: flatcamGUI/FlatCAMGUI.py:3634
  5629. msgid "Plot Line"
  5630. msgstr "Linha"
  5631. #: flatcamGUI/FlatCAMGUI.py:3636
  5632. msgid "Set the line color for plotted objects."
  5633. msgstr "Define a cor da linha para objetos plotados."
  5634. #: flatcamGUI/FlatCAMGUI.py:3648
  5635. msgid "Sel. Fill"
  5636. msgstr Preenchimento Sel.""
  5637. #: flatcamGUI/FlatCAMGUI.py:3650
  5638. msgid ""
  5639. "Set the fill color for the selection box\n"
  5640. "in case that the selection is done from left to right.\n"
  5641. "First 6 digits are the color and the last 2\n"
  5642. "digits are for alpha (transparency) level."
  5643. msgstr ""
  5644. "Define a cor de preenchimento para a caixa de seleção\n"
  5645. "no caso de a seleção ser feita da esquerda para a direita.\n"
  5646. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5647. "dígitos são para o nível alfa (transparência)."
  5648. #: flatcamGUI/FlatCAMGUI.py:3667
  5649. msgid "Set the fill transparency for the 'left to right' selection box."
  5650. msgstr ""
  5651. "Define a transparência de preenchimento para a caixa de seleção 'da "
  5652. "esquerda para a direita'."
  5653. #: flatcamGUI/FlatCAMGUI.py:3684
  5654. msgid "Sel. Line"
  5655. msgstr "Linha Sel."
  5656. #: flatcamGUI/FlatCAMGUI.py:3686
  5657. msgid "Set the line color for the 'left to right' selection box."
  5658. msgstr ""
  5659. "Define a cor da linha para a caixa de seleção 'da esquerda para a direita'."
  5660. #: flatcamGUI/FlatCAMGUI.py:3698
  5661. msgid "Sel2. Fill"
  5662. msgstr "Preenchimento Sel2"
  5663. #: flatcamGUI/FlatCAMGUI.py:3700
  5664. msgid ""
  5665. "Set the fill color for the selection box\n"
  5666. "in case that the selection is done from right to left.\n"
  5667. "First 6 digits are the color and the last 2\n"
  5668. "digits are for alpha (transparency) level."
  5669. msgstr ""
  5670. "Define a cor de preenchimento para a caixa de seleção, caso a seleção seja "
  5671. "feita da direita para a esquerda.\n"
  5672. "Os primeiros 6 dígitos são a cor e os últimos 2\n"
  5673. "dígitos são para o nível alfa (transparência)."
  5674. #: flatcamGUI/FlatCAMGUI.py:3717
  5675. msgid "Set the fill transparency for selection 'right to left' box."
  5676. msgstr ""
  5677. "Define a transparência de preenchimento para a seleção da caixa 'direita "
  5678. "para a esquerda'."
  5679. #: flatcamGUI/FlatCAMGUI.py:3734
  5680. msgid "Sel2. Line"
  5681. msgstr "Linha Sel2"
  5682. #: flatcamGUI/FlatCAMGUI.py:3736
  5683. msgid "Set the line color for the 'right to left' selection box."
  5684. msgstr ""
  5685. "Define a cor da linha para a caixa de seleção 'direita para a esquerda'."
  5686. #: flatcamGUI/FlatCAMGUI.py:3748
  5687. msgid "Editor Draw"
  5688. msgstr "Editor de Desenho"
  5689. #: flatcamGUI/FlatCAMGUI.py:3750
  5690. msgid "Set the color for the shape."
  5691. msgstr "Define a cor da forma."
  5692. #: flatcamGUI/FlatCAMGUI.py:3762
  5693. msgid "Editor Draw Sel."
  5694. msgstr "Editor de Desenho Sel."
  5695. #: flatcamGUI/FlatCAMGUI.py:3764
  5696. msgid "Set the color of the shape when selected."
  5697. msgstr "Define a cor da forma quando selecionada."
  5698. #: flatcamGUI/FlatCAMGUI.py:3776
  5699. msgid "Project Items"
  5700. msgstr "Itens do Projeto"
  5701. #: flatcamGUI/FlatCAMGUI.py:3778
  5702. msgid "Set the color of the items in Project Tab Tree."
  5703. msgstr "Define a cor dos itens na Árvore do Guia de Projeto."
  5704. #: flatcamGUI/FlatCAMGUI.py:3789
  5705. msgid "Proj. Dis. Items"
  5706. msgstr "Itens Desabilitados"
  5707. #: flatcamGUI/FlatCAMGUI.py:3791
  5708. msgid ""
  5709. "Set the color of the items in Project Tab Tree,\n"
  5710. "for the case when the items are disabled."
  5711. msgstr ""
  5712. "Define a cor dos itens na Árvore da guia Projeto,\n"
  5713. "para o caso em que os itens estão desativados."
  5714. #: flatcamGUI/FlatCAMGUI.py:3842
  5715. msgid "GUI Settings"
  5716. msgstr "Configurações da GUI"
  5717. #: flatcamGUI/FlatCAMGUI.py:3848
  5718. msgid "Layout"
  5719. msgstr "Layout"
  5720. #: flatcamGUI/FlatCAMGUI.py:3850
  5721. msgid ""
  5722. "Select an layout for FlatCAM.\n"
  5723. "It is applied immediately."
  5724. msgstr ""
  5725. "Selecione um layout para o FlatCAM.\n"
  5726. "É aplicado imediatamente."
  5727. #: flatcamGUI/FlatCAMGUI.py:3866
  5728. msgid "Style"
  5729. msgstr "Estilo"
  5730. #: flatcamGUI/FlatCAMGUI.py:3868
  5731. msgid ""
  5732. "Select an style for FlatCAM.\n"
  5733. "It will be applied at the next app start."
  5734. msgstr ""
  5735. "Selecione um estilo para FlatCAM.\n"
  5736. "Ele será aplicado na próxima inicialização."
  5737. #: flatcamGUI/FlatCAMGUI.py:3879
  5738. msgid "HDPI Support"
  5739. msgstr "Suporte HDPI"
  5740. #: flatcamGUI/FlatCAMGUI.py:3881
  5741. msgid ""
  5742. "Enable High DPI support for FlatCAM.\n"
  5743. "It will be applied at the next app start."
  5744. msgstr ""
  5745. "Ativa o suporte de alta DPI para FlatCAM.\n"
  5746. "Ele será aplicado na próxima inicialização."
  5747. #: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
  5748. msgid "Clear GUI Settings"
  5749. msgstr "Limpar Config. da GUI"
  5750. #: flatcamGUI/FlatCAMGUI.py:3896
  5751. msgid ""
  5752. "Clear the GUI settings for FlatCAM,\n"
  5753. "such as: layout, gui state, style, hdpi support etc."
  5754. msgstr ""
  5755. "Limpa as configurações da GUI para FlatCAM,\n"
  5756. "como: layout, estado de gui, estilo, suporte a HDPI etc."
  5757. #: flatcamGUI/FlatCAMGUI.py:3899
  5758. msgid "Clear"
  5759. msgstr "Limpar"
  5760. #: flatcamGUI/FlatCAMGUI.py:3903
  5761. msgid "Hover Shape"
  5762. msgstr "Forma Flutuante"
  5763. #: flatcamGUI/FlatCAMGUI.py:3905
  5764. msgid ""
  5765. "Enable display of a hover shape for FlatCAM objects.\n"
  5766. "It is displayed whenever the mouse cursor is hovering\n"
  5767. "over any kind of not-selected object."
  5768. msgstr ""
  5769. "Habilita a exibição de uma forma flutuante para objetos FlatCAM.\n"
  5770. "É exibido sempre que o cursor do mouse estiver pairando\n"
  5771. "sobre qualquer tipo de objeto não selecionado."
  5772. #: flatcamGUI/FlatCAMGUI.py:3912
  5773. msgid "Sel. Shape"
  5774. msgstr "Sel. Forma"
  5775. #: flatcamGUI/FlatCAMGUI.py:3914
  5776. msgid ""
  5777. "Enable the display of a selection shape for FlatCAM objects.\n"
  5778. "It is displayed whenever the mouse selects an object\n"
  5779. "either by clicking or dragging mouse from left to right or\n"
  5780. "right to left."
  5781. msgstr ""
  5782. "Ativa a exibição de seleção de forma para objetos FlatCAM.\n"
  5783. "É exibido sempre que o mouse seleciona um objeto\n"
  5784. "seja clicando ou arrastando o mouse da esquerda para a direita ou da direita "
  5785. "para a esquerda."
  5786. #: flatcamGUI/FlatCAMGUI.py:3921
  5787. msgid "NB Font Size"
  5788. msgstr "Tamanho da Fonte BN"
  5789. #: flatcamGUI/FlatCAMGUI.py:3923
  5790. msgid ""
  5791. "This sets the font size for the elements found in the Notebook.\n"
  5792. "The notebook is the collapsible area in the left side of the GUI,\n"
  5793. "and include the Project, Selected and Tool tabs."
  5794. msgstr ""
  5795. "Isso define o tamanho da fonte para os elementos encontrados no bloco de "
  5796. "notas.\n"
  5797. "O bloco de notas é a área desmontável no lado esquerdo da GUI,\n"
  5798. "e inclui as guias Projeto, Selecionado e Ferramenta."
  5799. #: flatcamGUI/FlatCAMGUI.py:3938
  5800. msgid "Axis Font Size"
  5801. msgstr "Tamanho da fonte do eixo"
  5802. #: flatcamGUI/FlatCAMGUI.py:3940
  5803. msgid "This sets the font size for canvas axis."
  5804. msgstr "Define o tamanho da fonte para o eixo da tela."
  5805. #: flatcamGUI/FlatCAMGUI.py:3991
  5806. msgid "Are you sure you want to delete the GUI Settings? \n"
  5807. msgstr "Você tem certeza de que deseja excluir as configurações da GUI? \n"
  5808. #: flatcamGUI/FlatCAMGUI.py:4015
  5809. msgid "App Preferences"
  5810. msgstr "Preferências do aplicativo"
  5811. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
  5812. #: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
  5813. #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
  5814. msgid "Units"
  5815. msgstr "Unidades"
  5816. #: flatcamGUI/FlatCAMGUI.py:4022
  5817. msgid ""
  5818. "The default value for FlatCAM units.\n"
  5819. "Whatever is selected here is set every time\n"
  5820. "FLatCAM is started."
  5821. msgstr ""
  5822. "Unidade utilizada como padrão para os valores no FlatCAM.\n"
  5823. "O que estiver selecionado aqui será considerado sempre que\n"
  5824. "o FLatCAM for iniciado."
  5825. #: flatcamGUI/FlatCAMGUI.py:4025
  5826. msgid "IN"
  5827. msgstr "in"
  5828. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
  5829. #: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
  5830. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5831. msgid "MM"
  5832. msgstr "mm"
  5833. #: flatcamGUI/FlatCAMGUI.py:4029
  5834. msgid "APP. LEVEL"
  5835. msgstr "Nível do Aplicativo"
  5836. #: flatcamGUI/FlatCAMGUI.py:4030
  5837. msgid ""
  5838. "Choose the default level of usage for FlatCAM.\n"
  5839. "BASIC level -> reduced functionality, best for beginner's.\n"
  5840. "ADVANCED level -> full functionality.\n"
  5841. "\n"
  5842. "The choice here will influence the parameters in\n"
  5843. "the Selected Tab for all kinds of FlatCAM objects."
  5844. msgstr ""
  5845. "Escolha o nível padrão de uso para FlatCAM.\n"
  5846. "Nível BÁSICO -> funcionalidade reduzida, melhor para iniciantes.\n"
  5847. "Nível AVANÇADO -> funcionalidade completa.\n"
  5848. "\n"
  5849. "A escolha influenciará os parâmetros na Aba\n"
  5850. "Selecionado para todos os tipos de objetos FlatCAM."
  5851. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
  5852. msgid "Basic"
  5853. msgstr "Básico"
  5854. #: flatcamGUI/FlatCAMGUI.py:4036
  5855. msgid "Advanced"
  5856. msgstr "Avançado"
  5857. #: flatcamGUI/FlatCAMGUI.py:4039
  5858. msgid "Portable app"
  5859. msgstr "Aplicativo portátil"
  5860. #: flatcamGUI/FlatCAMGUI.py:4040
  5861. msgid ""
  5862. "Choose if the application should run as portable.\n"
  5863. "\n"
  5864. "If Checked the application will run portable,\n"
  5865. "which means that the preferences files will be saved\n"
  5866. "in the application folder, in the lib\\config subfolder."
  5867. msgstr ""
  5868. "Escolha se o aplicativo deve ser executado como portátil.\n"
  5869. "\n"
  5870. "Se marcado, o aplicativo será executado como portátil,\n"
  5871. "o que significa que os arquivos de preferências serão salvos\n"
  5872. "na pasta do aplicativo, na subpasta lib\\config."
  5873. #: flatcamGUI/FlatCAMGUI.py:4047
  5874. msgid "Languages"
  5875. msgstr "Idiomas"
  5876. #: flatcamGUI/FlatCAMGUI.py:4048
  5877. msgid "Set the language used throughout FlatCAM."
  5878. msgstr "Defina o idioma usado no FlatCAM."
  5879. #: flatcamGUI/FlatCAMGUI.py:4051
  5880. msgid "Apply Language"
  5881. msgstr "Aplicar o Idioma"
  5882. #: flatcamGUI/FlatCAMGUI.py:4052
  5883. msgid ""
  5884. "Set the language used throughout FlatCAM.\n"
  5885. "The app will restart after click.Windows: When FlatCAM is installed in "
  5886. "Program Files\n"
  5887. "directory, it is possible that the app will not\n"
  5888. "restart after the button is clicked due of Windows\n"
  5889. "security features. In this case the language will be\n"
  5890. "applied at the next app start."
  5891. msgstr ""
  5892. "Define o idioma usado no FlatCAM.\n"
  5893. "O aplicativo será reinicializado após o clique.\n"
  5894. "Windows: se o FlatCAM estiver instalado no diretório\n"
  5895. "Arquivos de Programas, é possível que o aplicativo não\n"
  5896. "seja reiniciado depois que o botão for clicado devido\n"
  5897. "aos recursos de segurança do Windows. Neste caso, o\n"
  5898. "idioma será aplicado na próxima inicialização."
  5899. #: flatcamGUI/FlatCAMGUI.py:4061
  5900. msgid "Shell at StartUp"
  5901. msgstr "Shell na Inicialização"
  5902. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
  5903. msgid ""
  5904. "Check this box if you want the shell to\n"
  5905. "start automatically at startup."
  5906. msgstr ""
  5907. "Marque esta caixa se você deseja que o shell (linha de comando)\n"
  5908. "seja inicializado automaticamente na inicialização."
  5909. #: flatcamGUI/FlatCAMGUI.py:4073
  5910. msgid "Version Check"
  5911. msgstr "Verificar Versão"
  5912. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
  5913. msgid ""
  5914. "Check this box if you want to check\n"
  5915. "for a new version automatically at startup."
  5916. msgstr ""
  5917. "Marque esta caixa se você quiser verificar\n"
  5918. "por nova versão automaticamente na inicialização."
  5919. #: flatcamGUI/FlatCAMGUI.py:4085
  5920. msgid "Send Stats"
  5921. msgstr "Enviar estatísticas"
  5922. #: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
  5923. msgid ""
  5924. "Check this box if you agree to send anonymous\n"
  5925. "stats automatically at startup, to help improve FlatCAM."
  5926. msgstr ""
  5927. "Marque esta caixa se você concorda em enviar dados anônimos\n"
  5928. "automaticamente na inicialização, para ajudar a melhorar o FlatCAM."
  5929. #: flatcamGUI/FlatCAMGUI.py:4099
  5930. msgid "Pan Button"
  5931. msgstr "Botão Pan"
  5932. #: flatcamGUI/FlatCAMGUI.py:4100
  5933. msgid ""
  5934. "Select the mouse button to use for panning:\n"
  5935. "- MMB --> Middle Mouse Button\n"
  5936. "- RMB --> Right Mouse Button"
  5937. msgstr ""
  5938. "Selecione o botão do mouse para usar o panning:\n"
  5939. "- BM -> Botão do meio do mouse\n"
  5940. "- BD -> botão direito do mouse"
  5941. #: flatcamGUI/FlatCAMGUI.py:4103
  5942. msgid "MMB"
  5943. msgstr "BM"
  5944. #: flatcamGUI/FlatCAMGUI.py:4104
  5945. msgid "RMB"
  5946. msgstr "BD"
  5947. #: flatcamGUI/FlatCAMGUI.py:4107
  5948. msgid "Multiple Sel"
  5949. msgstr "Seleção Múltipla"
  5950. #: flatcamGUI/FlatCAMGUI.py:4108
  5951. msgid "Select the key used for multiple selection."
  5952. msgstr "Selecione a tecla usada para seleção múltipla."
  5953. #: flatcamGUI/FlatCAMGUI.py:4109
  5954. msgid "CTRL"
  5955. msgstr "CTRL"
  5956. #: flatcamGUI/FlatCAMGUI.py:4110
  5957. msgid "SHIFT"
  5958. msgstr "SHIFT"
  5959. #: flatcamGUI/FlatCAMGUI.py:4113
  5960. msgid "Project at StartUp"
  5961. msgstr "Projeto na Inicialização"
  5962. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
  5963. msgid ""
  5964. "Check this box if you want the project/selected/tool tab area to\n"
  5965. "to be shown automatically at startup."
  5966. msgstr ""
  5967. "Marque esta caixa se você quiser que a aba Projeto/Selecionado/Ferramenta\n"
  5968. "seja apresentada automaticamente na inicialização."
  5969. #: flatcamGUI/FlatCAMGUI.py:4125
  5970. msgid "Project AutoHide"
  5971. msgstr "Auto Ocultar"
  5972. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
  5973. msgid ""
  5974. "Check this box if you want the project/selected/tool tab area to\n"
  5975. "hide automatically when there are no objects loaded and\n"
  5976. "to show whenever a new object is created."
  5977. msgstr ""
  5978. "Marque esta caixa se você deseja que a aba Projeto/Selecionado/Ferramenta\n"
  5979. "desapareça automaticamente quando não houver objetos carregados e\n"
  5980. "apareça sempre que um novo objeto for criado."
  5981. #: flatcamGUI/FlatCAMGUI.py:4139
  5982. msgid "Enable ToolTips"
  5983. msgstr "Habilitar Dicas"
  5984. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
  5985. msgid ""
  5986. "Check this box if you want to have toolTips displayed\n"
  5987. "when hovering with mouse over items throughout the App."
  5988. msgstr ""
  5989. "Marque esta caixa se quiser que as dicas de ferramentas sejam exibidas\n"
  5990. "ao passar o mouse sobre os itens em todo o aplicativo."
  5991. #: flatcamGUI/FlatCAMGUI.py:4149
  5992. msgid "Workers number"
  5993. msgstr "Número de trabalhadores"
  5994. #: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
  5995. msgid ""
  5996. "The number of Qthreads made available to the App.\n"
  5997. "A bigger number may finish the jobs more quickly but\n"
  5998. "depending on your computer speed, may make the App\n"
  5999. "unresponsive. Can have a value between 2 and 16.\n"
  6000. "Default value is 2.\n"
  6001. "After change, it will be applied at next App start."
  6002. msgstr ""
  6003. "O número de Qthreads disponibilizados para o App.\n"
  6004. "Um número maior pode executar os trabalhos mais rapidamente, mas\n"
  6005. "dependendo da velocidade do computador, pode fazer com que o App\n"
  6006. "não responda. Pode ter um valor entre 2 e 16. O valor padrão é 2.\n"
  6007. "Após a mudança, ele será aplicado na próxima inicialização."
  6008. #: flatcamGUI/FlatCAMGUI.py:4170
  6009. msgid "Geo Tolerance"
  6010. msgstr "Tolerância Geo"
  6011. #: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
  6012. msgid ""
  6013. "This value can counter the effect of the Circle Steps\n"
  6014. "parameter. Default value is 0.01.\n"
  6015. "A lower value will increase the detail both in image\n"
  6016. "and in Gcode for the circles, with a higher cost in\n"
  6017. "performance. Higher value will provide more\n"
  6018. "performance at the expense of level of detail."
  6019. msgstr ""
  6020. "Este valor pode contrariar o efeito do parâmetro Passos do Círculo.\n"
  6021. "O valor padrão é 0.01.\n"
  6022. "Um valor mais baixo aumentará os detalhes na imagem e no G-Code\n"
  6023. "para os círculos, com um custo maior em desempenho.\n"
  6024. "Um valor maior proporcionará mais desempenho à custa do nível\n"
  6025. "de detalhes."
  6026. #: flatcamGUI/FlatCAMGUI.py:4220
  6027. msgid "\"Open\" behavior"
  6028. msgstr "Comportamento \"Abrir\""
  6029. #: flatcamGUI/FlatCAMGUI.py:4222
  6030. msgid ""
  6031. "When checked the path for the last saved file is used when saving files,\n"
  6032. "and the path for the last opened file is used when opening files.\n"
  6033. "\n"
  6034. "When unchecked the path for opening files is the one used last: either the\n"
  6035. "path for saving files or the path for opening files."
  6036. msgstr ""
  6037. "Quando marcado, o caminho do último arquivo salvo é usado ao salvar "
  6038. "arquivos,\n"
  6039. "e o caminho para o último arquivo aberto é usado ao abrir arquivos.\n"
  6040. "\n"
  6041. "Quando desmarcado, o caminho para abrir arquivos é aquele usado por último:\n"
  6042. "o caminho para salvar arquivos ou o caminho para abrir arquivos."
  6043. #: flatcamGUI/FlatCAMGUI.py:4231
  6044. msgid "Delete object confirmation"
  6045. msgstr "Confirmação excluir objeto"
  6046. #: flatcamGUI/FlatCAMGUI.py:4233
  6047. msgid ""
  6048. "When checked the application will ask for user confirmation\n"
  6049. "whenever the Delete object(s) event is triggered, either by\n"
  6050. "menu shortcut or key shortcut."
  6051. msgstr ""
  6052. "Quando marcada, o aplicativo pedirá a confirmação do usuário\n"
  6053. "sempre que o evento Excluir objeto(s) é acionado, seja por\n"
  6054. "atalho de menu ou atalho de tecla."
  6055. #: flatcamGUI/FlatCAMGUI.py:4240
  6056. msgid "Save Compressed Project"
  6057. msgstr "Salvar Projeto Compactado"
  6058. #: flatcamGUI/FlatCAMGUI.py:4242
  6059. msgid ""
  6060. "Whether to save a compressed or uncompressed project.\n"
  6061. "When checked it will save a compressed FlatCAM project."
  6062. msgstr ""
  6063. "Para salvar um projeto compactado ou descompactado.\n"
  6064. "Quando marcado, o projeto FlatCAM será salvo compactado."
  6065. #: flatcamGUI/FlatCAMGUI.py:4253
  6066. msgid "Compression Level"
  6067. msgstr "Nível de Compactação"
  6068. #: flatcamGUI/FlatCAMGUI.py:4255
  6069. msgid ""
  6070. "The level of compression used when saving\n"
  6071. "a FlatCAM project. Higher value means better compression\n"
  6072. "but require more RAM usage and more processing time."
  6073. msgstr ""
  6074. "O nível de compactação usado ao salvar o Projeto FlatCAM.\n"
  6075. "Um valor maior significa melhor compactação, mas é necessário mais uso de "
  6076. "RAM e mais tempo de processamento."
  6077. #: flatcamGUI/FlatCAMGUI.py:4281
  6078. msgid "Gerber General"
  6079. msgstr "Gerber Geral"
  6080. #: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
  6081. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
  6082. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
  6083. #: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
  6084. msgid "Plot Options"
  6085. msgstr "Opções de Gráfico"
  6086. #: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
  6087. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
  6088. msgid "Solid"
  6089. msgstr "Preenchido"
  6090. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
  6091. msgid "Solid color polygons."
  6092. msgstr "Polígonos com cor sólida."
  6093. #: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
  6094. msgid "M-Color"
  6095. msgstr "M-Cores"
  6096. #: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
  6097. msgid "Draw polygons in different colors."
  6098. msgstr "Desenha polígonos em cores diferentes."
  6099. #: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
  6100. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
  6101. #: flatcamGUI/ObjectUI.py:601
  6102. msgid "Plot"
  6103. msgstr Gráfico""
  6104. #: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
  6105. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
  6106. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
  6107. #: flatcamGUI/ObjectUI.py:1503
  6108. msgid "Plot (show) this object."
  6109. msgstr "Mostra o objeto no gráfico."
  6110. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
  6111. #: flatcamGUI/FlatCAMGUI.py:6230
  6112. msgid "Circle Steps"
  6113. msgstr "Passos do Círculo"
  6114. #: flatcamGUI/FlatCAMGUI.py:4314
  6115. msgid ""
  6116. "The number of circle steps for Gerber \n"
  6117. "circular aperture linear approximation."
  6118. msgstr ""
  6119. "Número de passos de círculo para Gerber.\n"
  6120. "Aproximação linear de abertura circular."
  6121. #: flatcamGUI/FlatCAMGUI.py:4324
  6122. msgid ""
  6123. "Buffering type:\n"
  6124. "- None --> best performance, fast file loading but no so good display\n"
  6125. "- Full --> slow file loading but good visuals. This is the default.\n"
  6126. "<<WARNING>>: Don't change this unless you know what you are doing !!!"
  6127. msgstr ""
  6128. "Tipo de Buffer:\n"
  6129. "- Nenhum --> melhor desempenho, abertura de arquivos rápida, mas não tão boa aparência\n"
  6130. "- Completo --> abertura de arquivos lenta, mas boa aparência. Este é o padrão.\n"
  6131. "<<ALERTA>>: Não altere isso, a menos que você saiba o que está fazendo !!!"
  6132. #: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
  6133. #: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
  6134. #: flatcamTools/ToolProperties.py:318
  6135. msgid "None"
  6136. msgstr "Nenhum"
  6137. #: flatcamGUI/FlatCAMGUI.py:4330
  6138. msgid "Full"
  6139. msgstr "Completo"
  6140. #: flatcamGUI/FlatCAMGUI.py:4342
  6141. msgid "Gerber Options"
  6142. msgstr "Opções Gerber"
  6143. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
  6144. msgid "Isolation Routing"
  6145. msgstr "Roteamento de Isolação"
  6146. #: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
  6147. msgid ""
  6148. "Create a Geometry object with\n"
  6149. "toolpaths to cut outside polygons."
  6150. msgstr ""
  6151. "Cria um objeto Geometria com caminho de\n"
  6152. "ferramenta para cortar polígonos externos."
  6153. #: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
  6154. #: flatcamGUI/ObjectUI.py:848
  6155. msgid "Diameter of the cutting tool."
  6156. msgstr "Diâmetro da ferramenta"
  6157. #: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
  6158. msgid "# Passes"
  6159. msgstr "Passes"
  6160. #: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
  6161. msgid ""
  6162. "Width of the isolation gap in\n"
  6163. "number (integer) of tool widths."
  6164. msgstr ""
  6165. "Largura da isolação em relação à\n"
  6166. "largura da ferramenta (número inteiro)."
  6167. #: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
  6168. msgid "Pass overlap"
  6169. msgstr "Sobreposição"
  6170. #: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
  6171. #, python-format
  6172. msgid ""
  6173. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6174. "Example:\n"
  6175. "A value here of 0.25 means an overlap of 25%% from the tool diameter found "
  6176. "above."
  6177. msgstr ""
  6178. "Quanto da largura da ferramenta (fração) é sobreposto a cada passagem da ferramenta.\n"
  6179. "Exemplo:\n"
  6180. "Um valor de 0.25 significa uma sobreposição de 25%% do diâmetro da ferramenta."
  6181. #: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
  6182. #: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
  6183. msgid "Milling Type"
  6184. msgstr "Tipo de Fresamento"
  6185. #: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
  6186. msgid ""
  6187. "Milling type:\n"
  6188. "- climb / best for precision milling and to reduce tool usage\n"
  6189. "- conventional / useful when there is no backlash compensation"
  6190. msgstr ""
  6191. "Tipo de fresamento:\n"
  6192. "- subida: melhor para fresamento de precisão e para reduzir o uso da "
  6193. "ferramenta\n"
  6194. "- convencional: útil quando não há compensação de folga"
  6195. #: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
  6196. #: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
  6197. msgid "Climb"
  6198. msgstr "Subida"
  6199. #: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
  6200. #: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
  6201. msgid "Conv."
  6202. msgstr "Conv."
  6203. #: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
  6204. msgid "Combine Passes"
  6205. msgstr "Combinar Passes"
  6206. #: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
  6207. msgid "Combine all passes into one object"
  6208. msgstr "Combinar todos os passes em um objeto"
  6209. #: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
  6210. msgid "Non-copper regions"
  6211. msgstr "Regiões sem cobre"
  6212. #: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
  6213. msgid ""
  6214. "Create polygons covering the\n"
  6215. "areas without copper on the PCB.\n"
  6216. "Equivalent to the inverse of this\n"
  6217. "object. Can be used to remove all\n"
  6218. "copper from a specified region."
  6219. msgstr ""
  6220. "Cria polígonos cobrindo as\n"
  6221. "áreas sem cobre no PCB.\n"
  6222. "Equivalente ao inverso do\n"
  6223. "objeto. Pode ser usado para remover todo o\n"
  6224. "cobre de uma região especificada."
  6225. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
  6226. #: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
  6227. msgid "Boundary Margin"
  6228. msgstr "Margem Limite"
  6229. #: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
  6230. msgid ""
  6231. "Specify the edge of the PCB\n"
  6232. "by drawing a box around all\n"
  6233. "objects with this minimum\n"
  6234. "distance."
  6235. msgstr ""
  6236. "Especifica a borda do PCB\n"
  6237. "desenhando uma caixa em volta de todos os\n"
  6238. "objetos com esta distância mínima."
  6239. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
  6240. #: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
  6241. msgid "Rounded Geo"
  6242. msgstr "Geo Arredondado"
  6243. #: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
  6244. msgid "Resulting geometry will have rounded corners."
  6245. msgstr "A geometria resultante terá cantos arredondados."
  6246. #: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
  6247. #: flatcamTools/ToolPanelize.py:85
  6248. msgid "Bounding Box"
  6249. msgstr "Caixa Delimitadora"
  6250. #: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
  6251. msgid ""
  6252. "Distance of the edges of the box\n"
  6253. "to the nearest polygon."
  6254. msgstr ""
  6255. "Distância das bordas da caixa\n"
  6256. "para o polígono mais próximo."
  6257. #: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
  6258. msgid ""
  6259. "If the bounding box is \n"
  6260. "to have rounded corners\n"
  6261. "their radius is equal to\n"
  6262. "the margin."
  6263. msgstr ""
  6264. "Se a caixa delimitadora tiver\n"
  6265. "cantos arredondados, o seu raio\n"
  6266. "é igual à margem."
  6267. #: flatcamGUI/FlatCAMGUI.py:4470
  6268. msgid "Gerber Adv. Options"
  6269. msgstr "Opções Avançadas"
  6270. #: flatcamGUI/FlatCAMGUI.py:4473
  6271. msgid "Advanced Param."
  6272. msgstr "Parâmetros avançados"
  6273. #: flatcamGUI/FlatCAMGUI.py:4475
  6274. msgid ""
  6275. "A list of Gerber advanced parameters.\n"
  6276. "Those parameters are available only for\n"
  6277. "Advanced App. Level."
  6278. msgstr ""
  6279. "Uma lista de parâmetros avançados do Gerber.\n"
  6280. "Esses parâmetros estão disponíveis somente para\n"
  6281. "o nível avançado do aplicativo."
  6282. #: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
  6283. msgid "\"Follow\""
  6284. msgstr "\"Segue\""
  6285. #: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
  6286. msgid ""
  6287. "Generate a 'Follow' geometry.\n"
  6288. "This means that it will cut through\n"
  6289. "the middle of the trace."
  6290. msgstr ""
  6291. "Gera uma geometria 'Segue'.\n"
  6292. "Isso significa que ele cortará\n"
  6293. "no meio do traço."
  6294. #: flatcamGUI/FlatCAMGUI.py:4494
  6295. msgid "Table Show/Hide"
  6296. msgstr "Mostra/Esconde Tabela"
  6297. #: flatcamGUI/FlatCAMGUI.py:4496
  6298. msgid ""
  6299. "Toggle the display of the Gerber Apertures Table.\n"
  6300. "Also, on hide, it will delete all mark shapes\n"
  6301. "that are drawn on canvas."
  6302. msgstr ""
  6303. "Alterna a exibição da Tabela de Aberturas Gerber.\n"
  6304. "Além disso, ao ocultar, ele excluirá todas as formas de marcas\n"
  6305. "que estão desenhadas na tela."
  6306. #: flatcamGUI/FlatCAMGUI.py:4535
  6307. msgid "Gerber Export"
  6308. msgstr "Exportar Gerber"
  6309. #: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
  6310. msgid "Export Options"
  6311. msgstr "Opções da Exportação"
  6312. #: flatcamGUI/FlatCAMGUI.py:4540
  6313. msgid ""
  6314. "The parameters set here are used in the file exported\n"
  6315. "when using the File -> Export -> Export Gerber menu entry."
  6316. msgstr ""
  6317. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6318. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Gerber."
  6319. #: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
  6320. msgid "The units used in the Gerber file."
  6321. msgstr "As unidades usadas no arquivo Gerber."
  6322. #: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
  6323. #: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
  6324. #: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
  6325. msgid "INCH"
  6326. msgstr "in"
  6327. #: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
  6328. msgid "Int/Decimals"
  6329. msgstr "Int/Decimais"
  6330. #: flatcamGUI/FlatCAMGUI.py:4565
  6331. msgid ""
  6332. "The number of digits in the whole part of the number\n"
  6333. "and in the fractional part of the number."
  6334. msgstr ""
  6335. "O número de dígitos da parte inteira\n"
  6336. "e da parte fracionária do número."
  6337. #: flatcamGUI/FlatCAMGUI.py:4576
  6338. msgid ""
  6339. "This numbers signify the number of digits in\n"
  6340. "the whole part of Gerber coordinates."
  6341. msgstr ""
  6342. "Esse número configura o número de dígitos\n"
  6343. "da parte inteira das coordenadas de Gerber."
  6344. #: flatcamGUI/FlatCAMGUI.py:4590
  6345. msgid ""
  6346. "This numbers signify the number of digits in\n"
  6347. "the decimal part of Gerber coordinates."
  6348. msgstr ""
  6349. "Este número configura o número de dígitos\n"
  6350. "da parte decimal das coordenadas de Gerber."
  6351. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
  6352. msgid "Zeros"
  6353. msgstr "Zeros"
  6354. #: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
  6355. msgid ""
  6356. "This sets the type of Gerber zeros.\n"
  6357. "If LZ then Leading Zeros are removed and\n"
  6358. "Trailing Zeros are kept.\n"
  6359. "If TZ is checked then Trailing Zeros are removed\n"
  6360. "and Leading Zeros are kept."
  6361. msgstr ""
  6362. "Define o tipo padrão de zeros de Gerber.\n"
  6363. "LZ: remove os zeros à esquerda e mantém os zeros à direita.\n"
  6364. "TZ: remove os zeros à direita e mantém os zeros à esquerda."
  6365. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
  6366. #: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
  6367. msgid "LZ"
  6368. msgstr "LZ"
  6369. #: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
  6370. #: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
  6371. msgid "TZ"
  6372. msgstr "TZ"
  6373. #: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
  6374. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
  6375. #: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
  6376. #: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
  6377. #: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
  6378. #: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
  6379. #: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
  6380. msgid "Parameters"
  6381. msgstr "Parâmetros"
  6382. #: flatcamGUI/FlatCAMGUI.py:4634
  6383. msgid "A list of Gerber Editor parameters."
  6384. msgstr "Uma lista de parâmetros do Editor Gerber."
  6385. #: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
  6386. #: flatcamGUI/FlatCAMGUI.py:6125
  6387. msgid "Selection limit"
  6388. msgstr "Lim. de seleção"
  6389. #: flatcamGUI/FlatCAMGUI.py:4644
  6390. msgid ""
  6391. "Set the number of selected Gerber geometry\n"
  6392. "items above which the utility geometry\n"
  6393. "becomes just a selection rectangle.\n"
  6394. "Increases the performance when moving a\n"
  6395. "large number of geometric elements."
  6396. msgstr ""
  6397. "Define o número máximo de ítens de geometria Gerber selecionados.\n"
  6398. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  6399. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  6400. #: flatcamGUI/FlatCAMGUI.py:4656
  6401. msgid "New Aperture code"
  6402. msgstr "Novo código do Aber."
  6403. #: flatcamGUI/FlatCAMGUI.py:4668
  6404. msgid "New Aperture size"
  6405. msgstr "Novo tamanho da aber."
  6406. #: flatcamGUI/FlatCAMGUI.py:4670
  6407. msgid "Size for the new aperture"
  6408. msgstr "Tamanho para a nova abertura"
  6409. #: flatcamGUI/FlatCAMGUI.py:4680
  6410. msgid "New Aperture type"
  6411. msgstr "Novo tipo de aber."
  6412. #: flatcamGUI/FlatCAMGUI.py:4682
  6413. msgid ""
  6414. "Type for the new aperture.\n"
  6415. "Can be 'C', 'R' or 'O'."
  6416. msgstr ""
  6417. "Tipo para a nova abertura.\n"
  6418. "Pode ser 'C', 'R' ou 'O'."
  6419. #: flatcamGUI/FlatCAMGUI.py:4703
  6420. msgid "Aperture Dimensions"
  6421. msgstr "Dimensão"
  6422. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
  6423. #: flatcamGUI/FlatCAMGUI.py:6445
  6424. msgid "Diameters of the cutting tools, separated by ','"
  6425. msgstr "Diâmetros das ferramentas de corte, separadas por ','"
  6426. #: flatcamGUI/FlatCAMGUI.py:4711
  6427. #, python-format
  6428. msgid "<b>%s:</b>"
  6429. msgstr "<b>%s:</b>"
  6430. #: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
  6431. #: flatcamGUI/FlatCAMGUI.py:5695
  6432. msgid "Linear Dir."
  6433. msgstr "Direção"
  6434. #: flatcamGUI/FlatCAMGUI.py:4751
  6435. msgid "Circular Pad Array"
  6436. msgstr "Matriz Circular de Pads"
  6437. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
  6438. #: flatcamGUI/FlatCAMGUI.py:5735
  6439. msgid "Circular Dir."
  6440. msgstr "Sentido"
  6441. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
  6442. #: flatcamGUI/FlatCAMGUI.py:5737
  6443. msgid ""
  6444. "Direction for circular array.\n"
  6445. "Can be CW = clockwise or CCW = counter clockwise."
  6446. msgstr ""
  6447. "Sentido da matriz circular.\n"
  6448. "Pode ser CW = sentido horário ou CCW = sentido anti-horário."
  6449. #: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
  6450. #: flatcamGUI/FlatCAMGUI.py:5748
  6451. msgid "Circ. Angle"
  6452. msgstr "Ângulo Circ."
  6453. #: flatcamGUI/FlatCAMGUI.py:4783
  6454. msgid "Distance at which to buffer the Gerber element."
  6455. msgstr "Distância na qual armazenar o elemento Gerber."
  6456. #: flatcamGUI/FlatCAMGUI.py:4790
  6457. msgid "Scale Tool"
  6458. msgstr "Ferra. de Escala"
  6459. #: flatcamGUI/FlatCAMGUI.py:4796
  6460. msgid "Factor to scale the Gerber element."
  6461. msgstr "Fator para redimensionar o elemento Gerber."
  6462. #: flatcamGUI/FlatCAMGUI.py:4803
  6463. msgid "Mark Area Tool"
  6464. msgstr "Fer. Marcar Área"
  6465. #: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
  6466. msgid "Threshold low"
  6467. msgstr "Limiar baixo"
  6468. #: flatcamGUI/FlatCAMGUI.py:4809
  6469. msgid "Threshold value under which the apertures are not marked."
  6470. msgstr "Valor limiar sob o qual as aberturas não são marcadas."
  6471. #: flatcamGUI/FlatCAMGUI.py:4819
  6472. msgid "Threshold value over which the apertures are not marked."
  6473. msgstr "Valor limite sobre o qual as aberturas não são marcadas."
  6474. #: flatcamGUI/FlatCAMGUI.py:4835
  6475. msgid "Excellon General"
  6476. msgstr "Excellon Geral"
  6477. #: flatcamGUI/FlatCAMGUI.py:4857
  6478. msgid "Excellon Format"
  6479. msgstr "Formato Excellon"
  6480. #: flatcamGUI/FlatCAMGUI.py:4859
  6481. msgid ""
  6482. "The NC drill files, usually named Excellon files\n"
  6483. "are files that can be found in different formats.\n"
  6484. "Here we set the format used when the provided\n"
  6485. "coordinates are not using period.\n"
  6486. "\n"
  6487. "Possible presets:\n"
  6488. "\n"
  6489. "PROTEUS 3:3 MM LZ\n"
  6490. "DipTrace 5:2 MM TZ\n"
  6491. "DipTrace 4:3 MM LZ\n"
  6492. "\n"
  6493. "EAGLE 3:3 MM TZ\n"
  6494. "EAGLE 4:3 MM TZ\n"
  6495. "EAGLE 2:5 INCH TZ\n"
  6496. "EAGLE 3:5 INCH TZ\n"
  6497. "\n"
  6498. "ALTIUM 2:4 INCH LZ\n"
  6499. "Sprint Layout 2:4 INCH LZ\n"
  6500. "KiCAD 3:5 INCH TZ"
  6501. msgstr ""
  6502. "Os arquivos de broca NC, normalmente chamados arquivos Excellon\n"
  6503. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6504. "Aqui é definido o formato usado quando as coordenadas\n"
  6505. "fornecidas não estiverem usando ponto.\n"
  6506. "\n"
  6507. "Padrões possíveis:\n"
  6508. "\n"
  6509. "PROTEUS 3:3 mm LZ\n"
  6510. "DipTrace 5:2 mm TZ\n"
  6511. "DipTrace 4:3 mm LZ\n"
  6512. "\n"
  6513. "EAGLE 3:3 mm TZ\n"
  6514. "EAGLE 4:3 mm TZ\n"
  6515. "EAGLE 2:5 polegadas TZ\n"
  6516. "EAGLE 3:5 polegadas TZ\n"
  6517. "\n"
  6518. "ALTIUM 2:4 polegadas LZ\n"
  6519. "Sprint Layout 2:4 polegadas LZ\n"
  6520. "KiCAD 3:5 polegadas TZ"
  6521. #: flatcamGUI/FlatCAMGUI.py:4887
  6522. msgid "Default values for INCH are 2:4"
  6523. msgstr "Valores padrão para Polegadas: 2:4"
  6524. #: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
  6525. #: flatcamGUI/FlatCAMGUI.py:5403
  6526. msgid ""
  6527. "This numbers signify the number of digits in\n"
  6528. "the whole part of Excellon coordinates."
  6529. msgstr ""
  6530. "Este número configura o número de dígitos\n"
  6531. "da parte inteira das coordenadas de Excellon."
  6532. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
  6533. #: flatcamGUI/FlatCAMGUI.py:5417
  6534. msgid ""
  6535. "This numbers signify the number of digits in\n"
  6536. "the decimal part of Excellon coordinates."
  6537. msgstr ""
  6538. "Este número configura o número de dígitos\n"
  6539. "da parte decimal das coordenadas de Excellon."
  6540. #: flatcamGUI/FlatCAMGUI.py:4917
  6541. msgid "METRIC"
  6542. msgstr "MÉTRICO"
  6543. #: flatcamGUI/FlatCAMGUI.py:4920
  6544. msgid "Default values for METRIC are 3:3"
  6545. msgstr "Valores padrão para Métrico: 3:3"
  6546. #: flatcamGUI/FlatCAMGUI.py:4951
  6547. msgid "Default <b>Zeros</b>"
  6548. msgstr "Padrão <b>Zeros</b>"
  6549. #: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
  6550. msgid ""
  6551. "This sets the type of Excellon zeros.\n"
  6552. "If LZ then Leading Zeros are kept and\n"
  6553. "Trailing Zeros are removed.\n"
  6554. "If TZ is checked then Trailing Zeros are kept\n"
  6555. "and Leading Zeros are removed."
  6556. msgstr ""
  6557. "Define o tipo de zeros de Excellon.\n"
  6558. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6559. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6560. #: flatcamGUI/FlatCAMGUI.py:4965
  6561. msgid ""
  6562. "This sets the default type of Excellon zeros.\n"
  6563. "If it is not detected in the parsed file the value here\n"
  6564. "will be used.If LZ then Leading Zeros are kept and\n"
  6565. "Trailing Zeros are removed.\n"
  6566. "If TZ is checked then Trailing Zeros are kept\n"
  6567. "and Leading Zeros are removed."
  6568. msgstr ""
  6569. "Define o tipo padrão de zeros de Excellon,\n"
  6570. "se não for detectado no arquivo analisado.\n"
  6571. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6572. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6573. #: flatcamGUI/FlatCAMGUI.py:4975
  6574. msgid "Default <b>Units</b>"
  6575. msgstr "<b>Unidades</b> Padrão"
  6576. #: flatcamGUI/FlatCAMGUI.py:4978
  6577. msgid ""
  6578. "This sets the default units of Excellon files.\n"
  6579. "If it is not detected in the parsed file the value here\n"
  6580. "will be used.Some Excellon files don't have an header\n"
  6581. "therefore this parameter will be used."
  6582. msgstr ""
  6583. "Configura as unidades padrão dos arquivos Excellon.\n"
  6584. "Alguns arquivos Excellon não possuem um cabeçalho.\n"
  6585. "Se não for detectado no arquivo analisado, este padrão\n"
  6586. "será usado."
  6587. #: flatcamGUI/FlatCAMGUI.py:4989
  6588. msgid ""
  6589. "This sets the units of Excellon files.\n"
  6590. "Some Excellon files don't have an header\n"
  6591. "therefore this parameter will be used."
  6592. msgstr ""
  6593. "Configura as unidades dos arquivos Excellon.\n"
  6594. "Alguns arquivos Excellon não possuem um cabeçalho,\n"
  6595. "e assim este parâmetro será usado."
  6596. #: flatcamGUI/FlatCAMGUI.py:4997
  6597. msgid "Excellon Optimization"
  6598. msgstr "Otimização Excellon"
  6599. #: flatcamGUI/FlatCAMGUI.py:5000
  6600. msgid "Algorithm: "
  6601. msgstr "Algoritmo: "
  6602. #: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
  6603. msgid ""
  6604. "This sets the optimization type for the Excellon drill path.\n"
  6605. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  6606. "Guided Local Path is used. Default search time is 3sec.\n"
  6607. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  6608. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  6609. "\n"
  6610. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  6611. "Travelling Salesman algorithm for path optimization."
  6612. msgstr ""
  6613. "Define o tipo de otimização para o caminho de perfuração do Excellon.\n"
  6614. "Se MH estiver marcado, será usado o algoritmo do Google OR-Tools com "
  6615. "MetaHeuristic.\n"
  6616. "O tempo de pesquisa padrão é de 3s.\n"
  6617. "Usar o comando TCL set_sys excellon_search_time para definir outros "
  6618. "valores.\n"
  6619. "Se Básico estiver marcado, será usado o algoritmo básico do Google OR-"
  6620. "Tools.\n"
  6621. "\n"
  6622. "Se DESABILITADO, FlatCAM está no modo de 32 bits e usa\n"
  6623. "o algoritmo Travelling Salesman para otimização de caminhos."
  6624. #: flatcamGUI/FlatCAMGUI.py:5013
  6625. msgid "MH"
  6626. msgstr "MH"
  6627. #: flatcamGUI/FlatCAMGUI.py:5027
  6628. msgid "Optimization Time"
  6629. msgstr "Tempo de Otimização"
  6630. #: flatcamGUI/FlatCAMGUI.py:5030
  6631. msgid ""
  6632. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  6633. "maximum threshold for how much time is spent doing the\n"
  6634. "path optimization. This max duration is set here.\n"
  6635. "In seconds."
  6636. msgstr ""
  6637. "Quando o Metaheuristic (MH) da OR-Tools está ativado, este é o limite\n"
  6638. "máximo de tempo para otimizar o caminho, em segundos. Padrão: 3"
  6639. #: flatcamGUI/FlatCAMGUI.py:5073
  6640. msgid "Excellon Options"
  6641. msgstr "Opções Excellon"
  6642. #: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
  6643. #: flatcamGUI/ObjectUI.py:643
  6644. msgid "Create CNC Job"
  6645. msgstr "Criar Trabalho CNC"
  6646. #: flatcamGUI/FlatCAMGUI.py:5078
  6647. msgid ""
  6648. "Parameters used to create a CNC Job object\n"
  6649. "for this drill object."
  6650. msgstr ""
  6651. "Parâmetros usados para criar um objeto de Trabalho CNC\n"
  6652. "para a furação."
  6653. #: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
  6654. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
  6655. #: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
  6656. #: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
  6657. msgid "Cut Z"
  6658. msgstr "Profundidade de Corte"
  6659. #: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
  6660. msgid ""
  6661. "Drill depth (negative)\n"
  6662. "below the copper surface."
  6663. msgstr ""
  6664. "Profundidade da broca (negativo)\n"
  6665. "abaixo da superfície de cobre."
  6666. #: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
  6667. #: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
  6668. msgid "Travel Z"
  6669. msgstr "Alt. Desloc."
  6670. #: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
  6671. msgid ""
  6672. "Tool height when travelling\n"
  6673. "across the XY plane."
  6674. msgstr ""
  6675. "Altura da ferramenta durante\n"
  6676. "deslocamentos sobre o plano XY."
  6677. #: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
  6678. #: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
  6679. msgid "Tool change"
  6680. msgstr "Troca de ferramentas"
  6681. #: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
  6682. msgid ""
  6683. "Include tool-change sequence\n"
  6684. "in G-Code (Pause for tool change)."
  6685. msgstr ""
  6686. "Pausa para troca de ferramentas. Inclua a sequência\n"
  6687. "de troca de ferramentas em G-Code (em Trabalho CNC)."
  6688. #: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
  6689. msgid "Toolchange Z"
  6690. msgstr "Troca de Ferramentas"
  6691. #: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
  6692. #: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
  6693. msgid ""
  6694. "Z-axis position (height) for\n"
  6695. "tool change."
  6696. msgstr "Posição do eixo Z (altura) para a troca de ferramenta."
  6697. #: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
  6698. msgid "Feedrate (Plunge)"
  6699. msgstr "Avanço (Mergulho)"
  6700. #: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
  6701. msgid ""
  6702. "Tool speed while drilling\n"
  6703. "(in units per minute).\n"
  6704. "This is for linear move G01."
  6705. msgstr ""
  6706. "Velocidade da ferramenta durante a perfuração\n"
  6707. "(em unidades por minuto).\n"
  6708. "Para movimento linear G01."
  6709. #: flatcamGUI/FlatCAMGUI.py:5134
  6710. msgid "Spindle Speed"
  6711. msgstr "Velocidade do Spindle"
  6712. #: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
  6713. msgid ""
  6714. "Speed of the spindle\n"
  6715. "in RPM (optional)"
  6716. msgstr ""
  6717. "Velocidade do spindle\n"
  6718. "em RPM (opcional)"
  6719. #: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
  6720. msgid "Spindle dir."
  6721. msgstr "Sentido de Rotação"
  6722. #: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
  6723. msgid ""
  6724. "This sets the direction that the spindle is rotating.\n"
  6725. "It can be either:\n"
  6726. "- CW = clockwise or\n"
  6727. "- CCW = counter clockwise"
  6728. msgstr ""
  6729. "Define o sentido de rotação do spindle.\n"
  6730. "Pode ser:\n"
  6731. "- CW = sentido horário ou\n"
  6732. "- CCW = sentido anti-horário"
  6733. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
  6734. #: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
  6735. msgid "Dwell"
  6736. msgstr "Esperar Velocidade"
  6737. #: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
  6738. #: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
  6739. msgid ""
  6740. "Pause to allow the spindle to reach its\n"
  6741. "speed before cutting."
  6742. msgstr ""
  6743. "Pausa para permitir que o spindle atinja sua\n"
  6744. "velocidade antes de cortar."
  6745. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
  6746. msgid "Duration"
  6747. msgstr "Tempo de espera"
  6748. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
  6749. #: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
  6750. msgid "Number of time units for spindle to dwell."
  6751. msgstr "Número de unidades de tempo para o fuso residir."
  6752. #: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
  6753. #: flatcamGUI/ObjectUI.py:765
  6754. msgid "Postprocessor"
  6755. msgstr "Pós-processador"
  6756. #: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
  6757. msgid ""
  6758. "The postprocessor JSON file that dictates\n"
  6759. "Gcode output."
  6760. msgstr ""
  6761. "O arquivo de pós-processamento (JSON) que define\n"
  6762. "a saída G-Code."
  6763. #: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
  6764. msgid "Gcode"
  6765. msgstr "G-Code"
  6766. #: flatcamGUI/FlatCAMGUI.py:5190
  6767. msgid ""
  6768. "Choose what to use for GCode generation:\n"
  6769. "'Drills', 'Slots' or 'Both'.\n"
  6770. "When choosing 'Slots' or 'Both', slots will be\n"
  6771. "converted to drills."
  6772. msgstr ""
  6773. "Escolha o que usar para a geração de G-Code:\n"
  6774. "'Brocas', 'Fendas' ou 'Ambos'.\n"
  6775. "Quando escolher 'Fendas' ou 'Ambos', as fendas serão\n"
  6776. "convertidos para brocas."
  6777. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
  6778. msgid "Mill Holes"
  6779. msgstr "Furação"
  6780. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
  6781. msgid "Create Geometry for milling holes."
  6782. msgstr "Cria geometria para furação."
  6783. #: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
  6784. msgid "Drill Tool dia"
  6785. msgstr "Diâmetro da Broca"
  6786. #: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
  6787. msgid "Slot Tool dia"
  6788. msgstr "Diâmetro da Fresa"
  6789. #: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
  6790. msgid ""
  6791. "Diameter of the cutting tool\n"
  6792. "when milling slots."
  6793. msgstr ""
  6794. "Diâmetro da ferramenta de corte\n"
  6795. "quando fresar fendas (ranhuras)."
  6796. #: flatcamGUI/FlatCAMGUI.py:5233
  6797. msgid "Defaults"
  6798. msgstr "Padrões"
  6799. #: flatcamGUI/FlatCAMGUI.py:5246
  6800. msgid "Excellon Adv. Options"
  6801. msgstr "Opções Avançadas Excellon"
  6802. #: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
  6803. msgid "Advanced Options"
  6804. msgstr "Opções Avançadas"
  6805. #: flatcamGUI/FlatCAMGUI.py:5254
  6806. msgid ""
  6807. "Parameters used to create a CNC Job object\n"
  6808. "for this drill object that are shown when App Level is Advanced."
  6809. msgstr ""
  6810. "Parâmetros usados para criar um objeto de Trabalho CNC\n"
  6811. "para furação que são mostrados quando o nível do aplicativo for Avançado."
  6812. #: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
  6813. msgid "Offset Z"
  6814. msgstr "Deslocamento Z"
  6815. #: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
  6816. msgid ""
  6817. "Some drill bits (the larger ones) need to drill deeper\n"
  6818. "to create the desired exit hole diameter due of the tip shape.\n"
  6819. "The value here can compensate the Cut Z parameter."
  6820. msgstr ""
  6821. "Algumas brocas (as maiores) precisam perfurar mais profundamente\n"
  6822. "para criar o diâmetro desejado do orifício de saída devido à forma da "
  6823. "ponta.\n"
  6824. "Este valor pode compensar o parâmetro Profundidade de Corte Z."
  6825. #: flatcamGUI/FlatCAMGUI.py:5271
  6826. msgid "Toolchange X,Y"
  6827. msgstr "Troca de fer. X,Y"
  6828. #: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
  6829. msgid "Toolchange X,Y position."
  6830. msgstr "Posição X,Y para troca de ferramentas."
  6831. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
  6832. #: flatcamGUI/ObjectUI.py:693
  6833. msgid "Start move Z"
  6834. msgstr "Altura Z Inicial"
  6835. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
  6836. msgid ""
  6837. "Height of the tool just after start.\n"
  6838. "Delete the value if you don't need this feature."
  6839. msgstr ""
  6840. "Altura da ferramenta antes de iniciar o trabalho.\n"
  6841. "Exclua o valor se você não precisar deste recurso."
  6842. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
  6843. #: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
  6844. msgid "End move Z"
  6845. msgstr "Altura Z Final"
  6846. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
  6847. #: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
  6848. msgid ""
  6849. "Height of the tool after\n"
  6850. "the last move at the end of the job."
  6851. msgstr "Altura da ferramenta após o último movimento, no final do trabalho."
  6852. #: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
  6853. msgid "Feedrate Rapids"
  6854. msgstr "Taxa de Avanço Rápida"
  6855. #: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
  6856. msgid ""
  6857. "Tool speed while drilling\n"
  6858. "(in units per minute).\n"
  6859. "This is for the rapid move G00.\n"
  6860. "It is useful only for Marlin,\n"
  6861. "ignore for any other cases."
  6862. msgstr ""
  6863. "Velocidade da ferramenta durante a perfuração\n"
  6864. "(em unidades por minuto).\n"
  6865. "Usado para movimento rápido G00.\n"
  6866. "É útil apenas para Marlin. Ignore para outros casos."
  6867. #: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
  6868. #: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
  6869. msgid "Probe Z depth"
  6870. msgstr "Profundidade Z da Sonda"
  6871. #: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
  6872. #: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
  6873. msgid ""
  6874. "The maximum depth that the probe is allowed\n"
  6875. "to probe. Negative value, in current units."
  6876. msgstr ""
  6877. "Profundidade máxima permitida para a sonda.\n"
  6878. "Valor negativo, em unidades atuais."
  6879. #: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
  6880. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
  6881. msgid "Feedrate Probe"
  6882. msgstr "Avanço da Sonda"
  6883. #: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
  6884. #: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
  6885. msgid "The feedrate used while the probe is probing."
  6886. msgstr "Velocidade de Avanço usada enquanto a sonda está operando."
  6887. #: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
  6888. msgid "Fast Plunge"
  6889. msgstr "Mergulho Rápido"
  6890. #: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
  6891. msgid ""
  6892. "By checking this, the vertical move from\n"
  6893. "Z_Toolchange to Z_move is done with G0,\n"
  6894. "meaning the fastest speed available.\n"
  6895. "WARNING: the move is done at Toolchange X,Y coords."
  6896. msgstr ""
  6897. "Quando marcado, o movimento vertical da altura de Troca de\n"
  6898. "Ferramentas para a altura de Deslocamento é feito com G0,\n"
  6899. "na velocidade mais rápida disponível.\n"
  6900. "AVISO: o movimento é feito nas Coordenadas X,Y de troca de ferramentas."
  6901. #: flatcamGUI/FlatCAMGUI.py:5339
  6902. msgid "Fast Retract"
  6903. msgstr "Recolhimento Rápido"
  6904. #: flatcamGUI/FlatCAMGUI.py:5341
  6905. msgid ""
  6906. "Exit hole strategy.\n"
  6907. " - When uncheked, while exiting the drilled hole the drill bit\n"
  6908. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  6909. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  6910. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  6911. "(travel height) is done as fast as possible (G0) in one move."
  6912. msgstr ""
  6913. "Estratégia para sair dos furos.\n"
  6914. "- Quando desmarcado, ao sair do furo, a broca sobe lentamente, com\n"
  6915. " avanço definido (G1), até a profundidade zero e depois some o mais\n"
  6916. " rápido possível (G0) até a altura de deslocamento.\n"
  6917. "- Quando marcado, a subida da profundidade de corte para a altura de\n"
  6918. " deslocamento é feita o mais rápido possível (G0) em um único movimento."
  6919. #: flatcamGUI/FlatCAMGUI.py:5360
  6920. msgid "Excellon Export"
  6921. msgstr "Exportar Excellon"
  6922. #: flatcamGUI/FlatCAMGUI.py:5365
  6923. msgid ""
  6924. "The parameters set here are used in the file exported\n"
  6925. "when using the File -> Export -> Export Excellon menu entry."
  6926. msgstr ""
  6927. "Os parâmetros definidos aqui são usados no arquivo exportado\n"
  6928. "ao usar a entrada de menu Arquivo -> Exportar -> Exportar Excellon."
  6929. #: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
  6930. msgid "The units used in the Excellon file."
  6931. msgstr "A unidade usada no arquivo Excellon gerado."
  6932. #: flatcamGUI/FlatCAMGUI.py:5390
  6933. msgid ""
  6934. "The NC drill files, usually named Excellon files\n"
  6935. "are files that can be found in different formats.\n"
  6936. "Here we set the format used when the provided\n"
  6937. "coordinates are not using period."
  6938. msgstr ""
  6939. "Os arquivos com a furação, geralmente chamados de arquivos Excellon\n"
  6940. "são arquivos que podem ser encontrados em diferentes formatos.\n"
  6941. "Aqui é definido o formato usado quando as coordenadas\n"
  6942. "fornecidas não usam ponto."
  6943. #: flatcamGUI/FlatCAMGUI.py:5426
  6944. msgid "Format"
  6945. msgstr "Formato"
  6946. #: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
  6947. msgid ""
  6948. "Select the kind of coordinates format used.\n"
  6949. "Coordinates can be saved with decimal point or without.\n"
  6950. "When there is no decimal point, it is required to specify\n"
  6951. "the number of digits for integer part and the number of decimals.\n"
  6952. "Also it will have to be specified if LZ = leading zeros are kept\n"
  6953. "or TZ = trailing zeros are kept."
  6954. msgstr ""
  6955. "Selecione o formato de coordenadas a usar.\n"
  6956. "As coordenadas podem ser salvas com ou sem ponto decimal.\n"
  6957. "Quando não há ponto decimal, é necessário especificar\n"
  6958. "o número de dígitos para a parte inteira e o número de casas decimais.\n"
  6959. "Deve ser especificado LZ (manter zeros à esquerda)\n"
  6960. "ou TZ (manter zeros à direita)."
  6961. #: flatcamGUI/FlatCAMGUI.py:5435
  6962. msgid "Decimal"
  6963. msgstr "Decimal"
  6964. #: flatcamGUI/FlatCAMGUI.py:5436
  6965. msgid "No-Decimal"
  6966. msgstr "Não Decimal"
  6967. #: flatcamGUI/FlatCAMGUI.py:5462
  6968. msgid ""
  6969. "This sets the default type of Excellon zeros.\n"
  6970. "If LZ then Leading Zeros are kept and\n"
  6971. "Trailing Zeros are removed.\n"
  6972. "If TZ is checked then Trailing Zeros are kept\n"
  6973. "and Leading Zeros are removed."
  6974. msgstr ""
  6975. "Define o tipo padrão de zeros de Excellon.\n"
  6976. "LZ: mantém os zeros à esquerda e remove os zeros à direita.\n"
  6977. "TZ: mantém os zeros à direita e remove os zeros à esquerda."
  6978. #: flatcamGUI/FlatCAMGUI.py:5472
  6979. msgid "Slot type"
  6980. msgstr "Tipo de Ranhura"
  6981. #: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
  6982. msgid ""
  6983. "This sets how the slots will be exported.\n"
  6984. "If ROUTED then the slots will be routed\n"
  6985. "using M15/M16 commands.\n"
  6986. "If DRILLED(G85) the slots will be exported\n"
  6987. "using the Drilled slot command (G85)."
  6988. msgstr ""
  6989. "Definição de como as ranhuras serão exportadas.\n"
  6990. "Se roteado, as ranhuras serão roteadas\n"
  6991. "usando os comandos M15/M16.\n"
  6992. "Se perfurado as ranhuras serão exportadas\n"
  6993. "usando o comando Perfuração (G85)."
  6994. #: flatcamGUI/FlatCAMGUI.py:5482
  6995. msgid "Routed"
  6996. msgstr "Roteado"
  6997. #: flatcamGUI/FlatCAMGUI.py:5483
  6998. msgid "Drilled(G85)"
  6999. msgstr "Perfurado (G85)"
  7000. #: flatcamGUI/FlatCAMGUI.py:5515
  7001. msgid "A list of Excellon Editor parameters."
  7002. msgstr "Parâmetros do Editor Excellon."
  7003. #: flatcamGUI/FlatCAMGUI.py:5525
  7004. msgid ""
  7005. "Set the number of selected Excellon geometry\n"
  7006. "items above which the utility geometry\n"
  7007. "becomes just a selection rectangle.\n"
  7008. "Increases the performance when moving a\n"
  7009. "large number of geometric elements."
  7010. msgstr ""
  7011. "Define o número máximo de ítens de geometria Excellon\n"
  7012. "selecionados. Acima desse valor a geometria se torna um\n"
  7013. "retângulo de seleção Aumenta o desempenho ao mover um\n"
  7014. "grande número de elementos geométricos."
  7015. #: flatcamGUI/FlatCAMGUI.py:5537
  7016. msgid "New Tool Dia"
  7017. msgstr "Novo Diâmetro"
  7018. #: flatcamGUI/FlatCAMGUI.py:5560
  7019. msgid "Linear Drill Array"
  7020. msgstr "Matriz Linear de Brocas"
  7021. #: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
  7022. #, python-format
  7023. msgid "%s:"
  7024. msgstr "%s:"
  7025. #: flatcamGUI/FlatCAMGUI.py:5600
  7026. msgid "Circular Drill Array"
  7027. msgstr "Matriz Circular de Brocas"
  7028. #: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
  7029. msgid "Slots"
  7030. msgstr "Fendas"
  7031. #: flatcamGUI/FlatCAMGUI.py:5679
  7032. msgid "Linear Slot Array"
  7033. msgstr "Matriz Linear de Ranhuras"
  7034. #: flatcamGUI/FlatCAMGUI.py:5731
  7035. msgid "Circular Slot Array"
  7036. msgstr "Matriz Circular de Ranhuras"
  7037. #: flatcamGUI/FlatCAMGUI.py:5765
  7038. msgid "Geometry General"
  7039. msgstr "Geometria Geral"
  7040. #: flatcamGUI/FlatCAMGUI.py:5784
  7041. msgid ""
  7042. "The number of circle steps for <b>Geometry</b> \n"
  7043. "circle and arc shapes linear approximation."
  7044. msgstr ""
  7045. "Número de etapas do círculo para a aproximação linear\n"
  7046. "de Geometria círculo e arco."
  7047. #: flatcamGUI/FlatCAMGUI.py:5812
  7048. msgid "Geometry Options"
  7049. msgstr "Opções de Geometria"
  7050. #: flatcamGUI/FlatCAMGUI.py:5819
  7051. msgid ""
  7052. "Create a CNC Job object\n"
  7053. "tracing the contours of this\n"
  7054. "Geometry object."
  7055. msgstr ""
  7056. "Cria um objeto de Trabalho CNC\n"
  7057. "traçando os contornos deste objeto\n"
  7058. "Geometria."
  7059. #: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
  7060. msgid ""
  7061. "Cutting depth (negative)\n"
  7062. "below the copper surface."
  7063. msgstr ""
  7064. "Profundidade de corte (negativo)\n"
  7065. "abaixo da superfície de cobre."
  7066. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
  7067. msgid "Multi-Depth"
  7068. msgstr "Multi-Profundidade"
  7069. #: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
  7070. msgid ""
  7071. "Use multiple passes to limit\n"
  7072. "the cut depth in each pass. Will\n"
  7073. "cut multiple times until Cut Z is\n"
  7074. "reached."
  7075. msgstr ""
  7076. "Use vários passes para limitar\n"
  7077. "a profundidade de corte em cada passagem. Vai\n"
  7078. "cortar várias vezes até o Corte Z é\n"
  7079. "alcançado."
  7080. #: flatcamGUI/FlatCAMGUI.py:5851
  7081. msgid "Depth/Pass"
  7082. msgstr "Profundidade por Passe"
  7083. #: flatcamGUI/FlatCAMGUI.py:5853
  7084. msgid ""
  7085. "The depth to cut on each pass,\n"
  7086. "when multidepth is enabled.\n"
  7087. "It has positive value although\n"
  7088. "it is a fraction from the depth\n"
  7089. "which has negative value."
  7090. msgstr ""
  7091. "A profundidade a ser cortada em cada passe,\n"
  7092. "quando Múltiplas Profundidades estiver ativo.\n"
  7093. "Tem valor positivo, embora seja uma fração\n"
  7094. "da profundidade, que tem valor negativo."
  7095. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
  7096. msgid ""
  7097. "Height of the tool when\n"
  7098. "moving without cutting."
  7099. msgstr "Altura da ferramenta ao mover sem cortar."
  7100. #: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
  7101. msgid ""
  7102. "Include tool-change sequence\n"
  7103. "in the Machine Code (Pause for tool change)."
  7104. msgstr ""
  7105. "Sequência de troca de ferramentas incluída\n"
  7106. "no Código da Máquina (Pausa para troca de ferramentas)."
  7107. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
  7108. msgid "Feed Rate X-Y"
  7109. msgstr "Taxa de Avanço XY"
  7110. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
  7111. msgid ""
  7112. "Cutting speed in the XY\n"
  7113. "plane in units per minute"
  7114. msgstr "Velocidade de corte no plano XY em unidades por minuto"
  7115. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
  7116. msgid "Feed Rate Z"
  7117. msgstr "Taxa de Avanço Z"
  7118. #: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
  7119. msgid ""
  7120. "Cutting speed in the XY\n"
  7121. "plane in units per minute.\n"
  7122. "It is called also Plunge."
  7123. msgstr ""
  7124. "Velocidade de corte no plano Z em unidades por minuto.\n"
  7125. "Também é chamado de Mergulho."
  7126. #: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
  7127. #: flatcamGUI/ObjectUI.py:1267
  7128. msgid "Spindle speed"
  7129. msgstr "Velocidade do Spindle"
  7130. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
  7131. msgid ""
  7132. "Speed of the spindle in RPM (optional).\n"
  7133. "If LASER postprocessor is used,\n"
  7134. "this value is the power of laser."
  7135. msgstr ""
  7136. "Velocidade do spindle em RPM (opcional).\n"
  7137. "Se o pós-processador LASER é usado,\n"
  7138. "este valor é a potência do laser."
  7139. #: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
  7140. msgid ""
  7141. "The Postprocessor file that dictates\n"
  7142. "the Machine Code (like GCode, RML, HPGL) output."
  7143. msgstr ""
  7144. "Arquivo de Pós-processamento que determina o código\n"
  7145. "de máquina de saída(como G-Code, RML, HPGL)."
  7146. #: flatcamGUI/FlatCAMGUI.py:5984
  7147. msgid "Geometry Adv. Options"
  7148. msgstr "Opções Avançadas"
  7149. #: flatcamGUI/FlatCAMGUI.py:5991
  7150. msgid ""
  7151. "Parameters to create a CNC Job object\n"
  7152. "tracing the contours of a Geometry object."
  7153. msgstr ""
  7154. "Parâmetros para criar um objeto de Trabalho CNC\n"
  7155. "traçando os contornos de um objeto Geometria."
  7156. #: flatcamGUI/FlatCAMGUI.py:6011
  7157. msgid ""
  7158. "Height of the tool just after starting the work.\n"
  7159. "Delete the value if you don't need this feature."
  7160. msgstr ""
  7161. "Altura da ferramenta ao iniciar o trabalho.\n"
  7162. "Exclua o valor se você não precisar deste recurso."
  7163. #: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
  7164. msgid "Feed Rate Rapids"
  7165. msgstr "Taxa de Avanço Rápido"
  7166. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
  7167. msgid ""
  7168. "Cutting speed in the XY plane\n"
  7169. "(in units per minute).\n"
  7170. "This is for the rapid move G00.\n"
  7171. "It is useful only for Marlin,\n"
  7172. "ignore for any other cases."
  7173. msgstr ""
  7174. "Velocidade de corte no plano XY (em unidades por minuto).\n"
  7175. "Para o movimento rápido G00.\n"
  7176. "É útil apenas para Marlin, ignore em outros casos."
  7177. #: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
  7178. msgid "Re-cut 1st pt."
  7179. msgstr "Re-cortar o primeiro ponto"
  7180. #: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
  7181. msgid ""
  7182. "In order to remove possible\n"
  7183. "copper leftovers where first cut\n"
  7184. "meet with last cut, we generate an\n"
  7185. "extended cut over the first cut section."
  7186. msgstr ""
  7187. "Para remover possíveis sobras no ponto de encontro\n"
  7188. "do primeiro com o último corte, gera-se um corte\n"
  7189. "próximo à primeira seção de corte."
  7190. #: flatcamGUI/FlatCAMGUI.py:6083
  7191. msgid "Seg. X size"
  7192. msgstr "Tamanho do Segmento X"
  7193. #: flatcamGUI/FlatCAMGUI.py:6085
  7194. msgid ""
  7195. "The size of the trace segment on the X axis.\n"
  7196. "Useful for auto-leveling.\n"
  7197. "A value of 0 means no segmentation on the X axis."
  7198. msgstr ""
  7199. "O tamanho do segmento de rastreio no eixo X.\n"
  7200. "Útil para nivelamento automático.\n"
  7201. "Valor 0 significa que não há segmentação no eixo X."
  7202. #: flatcamGUI/FlatCAMGUI.py:6094
  7203. msgid "Seg. Y size"
  7204. msgstr "Tamanho do Segmento Y"
  7205. #: flatcamGUI/FlatCAMGUI.py:6096
  7206. msgid ""
  7207. "The size of the trace segment on the Y axis.\n"
  7208. "Useful for auto-leveling.\n"
  7209. "A value of 0 means no segmentation on the Y axis."
  7210. msgstr ""
  7211. "O tamanho do segmento de rastreio no eixo Y.\n"
  7212. "Útil para nivelamento automático.\n"
  7213. "Valor 0 significa que não há segmentação no eixo Y."
  7214. #: flatcamGUI/FlatCAMGUI.py:6112
  7215. msgid "Geometry Editor"
  7216. msgstr "Editor de Geometria"
  7217. #: flatcamGUI/FlatCAMGUI.py:6117
  7218. msgid "A list of Geometry Editor parameters."
  7219. msgstr "Parâmetros do Editor de Geometria."
  7220. #: flatcamGUI/FlatCAMGUI.py:6127
  7221. msgid ""
  7222. "Set the number of selected geometry\n"
  7223. "items above which the utility geometry\n"
  7224. "becomes just a selection rectangle.\n"
  7225. "Increases the performance when moving a\n"
  7226. "large number of geometric elements."
  7227. msgstr ""
  7228. "Define o número máximo de ítens de geometria selecionados.\n"
  7229. "Acima desse valor a geometria se torna um retângulo de seleção.\n"
  7230. "Aumenta o desempenho ao mover um grande número de elementos geométricos."
  7231. #: flatcamGUI/FlatCAMGUI.py:6146
  7232. msgid "CNC Job General"
  7233. msgstr "Trabalho CNC Geral"
  7234. #: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
  7235. #: flatcamGUI/ObjectUI.py:1501
  7236. msgid "Plot Object"
  7237. msgstr "Mostrar"
  7238. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
  7239. msgid "Plot kind"
  7240. msgstr "Tipo de Gráfico"
  7241. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
  7242. msgid ""
  7243. "This selects the kind of geometries on the canvas to plot.\n"
  7244. "Those can be either of type 'Travel' which means the moves\n"
  7245. "above the work piece or it can be of type 'Cut',\n"
  7246. "which means the moves that cut into the material."
  7247. msgstr ""
  7248. "Seleciona o tipo de geometria mostrada na tela.\n"
  7249. "Pode ser do tipo 'Deslocamento', com os movimentos acima da peça, do\n"
  7250. "tipo 'Corte', com os movimentos cortando o material ou ambos."
  7251. #: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
  7252. msgid "Travel"
  7253. msgstr "Desloc."
  7254. #: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
  7255. msgid "Display Annotation"
  7256. msgstr "Exibir Anotação"
  7257. #: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
  7258. msgid ""
  7259. "This selects if to display text annotation on the plot.\n"
  7260. "When checked it will display numbers in order for each end\n"
  7261. "of a travel line."
  7262. msgstr ""
  7263. "Seleciona se deseja exibir a anotação de texto no gráfico.\n"
  7264. "Quando marcado, exibirá números para cada final\n"
  7265. "de uma linha de deslocamento."
  7266. #: flatcamGUI/FlatCAMGUI.py:6197
  7267. msgid "Annotation Size"
  7268. msgstr "Tamanho da Fonte"
  7269. #: flatcamGUI/FlatCAMGUI.py:6199
  7270. msgid "The font size of the annotation text. In pixels."
  7271. msgstr "O tamanho da fonte do texto de anotação, em pixels."
  7272. #: flatcamGUI/FlatCAMGUI.py:6207
  7273. msgid "Annotation Color"
  7274. msgstr "Cor da Fonte"
  7275. #: flatcamGUI/FlatCAMGUI.py:6209
  7276. msgid "Set the font color for the annotation texts."
  7277. msgstr "Define a cor da fonte para os textos de anotação."
  7278. #: flatcamGUI/FlatCAMGUI.py:6232
  7279. msgid ""
  7280. "The number of circle steps for <b>GCode</b> \n"
  7281. "circle and arc shapes linear approximation."
  7282. msgstr ""
  7283. "O número de etapas de círculo para <b>G-Code</b>.\n"
  7284. "Aproximação linear para círculos e formas de arco."
  7285. #: flatcamGUI/FlatCAMGUI.py:6240
  7286. msgid "Travel dia"
  7287. msgstr "Diâmetro Desl."
  7288. #: flatcamGUI/FlatCAMGUI.py:6242
  7289. msgid ""
  7290. "The width of the travel lines to be\n"
  7291. "rendered in the plot."
  7292. msgstr "Largura da linha a ser renderizada no gráfico."
  7293. #: flatcamGUI/FlatCAMGUI.py:6253
  7294. msgid "Coordinates decimals"
  7295. msgstr ""
  7296. #: flatcamGUI/FlatCAMGUI.py:6255
  7297. msgid ""
  7298. "The number of decimals to be used for \n"
  7299. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  7300. msgstr ""
  7301. #: flatcamGUI/FlatCAMGUI.py:6263
  7302. msgid "Feedrate decimals"
  7303. msgstr ""
  7304. #: flatcamGUI/FlatCAMGUI.py:6265
  7305. msgid ""
  7306. "The number of decimals to be used for \n"
  7307. "the Feedrate parameter in CNC code (GCODE, etc.)"
  7308. msgstr ""
  7309. #: flatcamGUI/FlatCAMGUI.py:6273
  7310. msgid "Coordinates type"
  7311. msgstr ""
  7312. #: flatcamGUI/FlatCAMGUI.py:6275
  7313. msgid ""
  7314. "The type of coordinates to be used in Gcode.\n"
  7315. "Can be:\n"
  7316. "- Absolute G90 -> the reference is the origin x=0, y=0\n"
  7317. "- Incremental G91 -> the reference is the previous position"
  7318. msgstr ""
  7319. #: flatcamGUI/FlatCAMGUI.py:6281
  7320. msgid "Absolute G90"
  7321. msgstr ""
  7322. #: flatcamGUI/FlatCAMGUI.py:6282
  7323. msgid "Incremental G91"
  7324. msgstr ""
  7325. #: flatcamGUI/FlatCAMGUI.py:6299
  7326. msgid "CNC Job Options"
  7327. msgstr ""
  7328. #: flatcamGUI/FlatCAMGUI.py:6302
  7329. msgid "Export G-Code"
  7330. msgstr ""
  7331. #: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
  7332. #: flatcamGUI/ObjectUI.py:1535
  7333. msgid ""
  7334. "Export and save G-Code to\n"
  7335. "make this object to a file."
  7336. msgstr ""
  7337. #: flatcamGUI/FlatCAMGUI.py:6310
  7338. msgid "Prepend to G-Code"
  7339. msgstr ""
  7340. #: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
  7341. msgid ""
  7342. "Type here any G-Code commands you would\n"
  7343. "like to add at the beginning of the G-Code file."
  7344. msgstr ""
  7345. #: flatcamGUI/FlatCAMGUI.py:6321
  7346. msgid "Append to G-Code"
  7347. msgstr ""
  7348. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
  7349. msgid ""
  7350. "Type here any G-Code commands you would\n"
  7351. "like to append to the generated file.\n"
  7352. "I.e.: M2 (End of program)"
  7353. msgstr ""
  7354. #: flatcamGUI/FlatCAMGUI.py:6340
  7355. msgid "CNC Job Adv. Options"
  7356. msgstr ""
  7357. #: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
  7358. msgid "Export CNC Code"
  7359. msgstr ""
  7360. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
  7361. msgid "Toolchange G-Code"
  7362. msgstr ""
  7363. #: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
  7364. msgid ""
  7365. "Type here any G-Code commands you would\n"
  7366. "like to be executed when Toolchange event is encountered.\n"
  7367. "This will constitute a Custom Toolchange GCode,\n"
  7368. "or a Toolchange Macro.\n"
  7369. "The FlatCAM variables are surrounded by '%' symbol.\n"
  7370. "\n"
  7371. "WARNING: it can be used only with a postprocessor file\n"
  7372. "that has 'toolchange_custom' in it's name and this is built\n"
  7373. "having as template the 'Toolchange Custom' posprocessor file."
  7374. msgstr ""
  7375. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
  7376. msgid "Use Toolchange Macro"
  7377. msgstr ""
  7378. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
  7379. msgid ""
  7380. "Check this box if you want to use\n"
  7381. "a Custom Toolchange GCode (macro)."
  7382. msgstr ""
  7383. #: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
  7384. msgid ""
  7385. "A list of the FlatCAM variables that can be used\n"
  7386. "in the Toolchange event.\n"
  7387. "They have to be surrounded by the '%' symbol"
  7388. msgstr ""
  7389. #: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
  7390. msgid "FlatCAM CNC parameters"
  7391. msgstr ""
  7392. #: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
  7393. msgid "tool = tool number"
  7394. msgstr ""
  7395. #: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
  7396. msgid "tooldia = tool diameter"
  7397. msgstr ""
  7398. #: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
  7399. msgid "t_drills = for Excellon, total number of drills"
  7400. msgstr ""
  7401. #: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
  7402. msgid "x_toolchange = X coord for Toolchange"
  7403. msgstr ""
  7404. #: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
  7405. msgid "y_toolchange = Y coord for Toolchange"
  7406. msgstr ""
  7407. #: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
  7408. msgid "z_toolchange = Z coord for Toolchange"
  7409. msgstr ""
  7410. #: flatcamGUI/FlatCAMGUI.py:6404
  7411. msgid "z_cut = Z depth for the cut"
  7412. msgstr ""
  7413. #: flatcamGUI/FlatCAMGUI.py:6405
  7414. msgid "z_move = Z height for travel"
  7415. msgstr ""
  7416. #: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
  7417. msgid "z_depthpercut = the step value for multidepth cut"
  7418. msgstr ""
  7419. #: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
  7420. msgid "spindlesspeed = the value for the spindle speed"
  7421. msgstr ""
  7422. #: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
  7423. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  7424. msgstr ""
  7425. #: flatcamGUI/FlatCAMGUI.py:6430
  7426. msgid "NCC Tool Options"
  7427. msgstr ""
  7428. #: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
  7429. msgid ""
  7430. "Create a Geometry object with\n"
  7431. "toolpaths to cut all non-copper regions."
  7432. msgstr ""
  7433. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
  7434. msgid "Tools dia"
  7435. msgstr ""
  7436. #: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
  7437. msgid "Tool Type"
  7438. msgstr ""
  7439. #: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
  7440. #: flatcamTools/ToolNonCopperClear.py:197
  7441. #: flatcamTools/ToolNonCopperClear.py:205
  7442. msgid ""
  7443. "Default tool type:\n"
  7444. "- 'V-shape'\n"
  7445. "- Circular"
  7446. msgstr ""
  7447. #: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
  7448. msgid "V-shape"
  7449. msgstr ""
  7450. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
  7451. #: flatcamTools/ToolNonCopperClear.py:220
  7452. msgid "V-Tip Dia"
  7453. msgstr ""
  7454. #: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
  7455. #: flatcamTools/ToolNonCopperClear.py:222
  7456. msgid "The tip diameter for V-Shape Tool"
  7457. msgstr ""
  7458. #: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
  7459. #: flatcamTools/ToolNonCopperClear.py:227
  7460. msgid "V-Tip Angle"
  7461. msgstr ""
  7462. #: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
  7463. #: flatcamTools/ToolNonCopperClear.py:229
  7464. msgid ""
  7465. "The tip angle for V-Shape Tool.\n"
  7466. "In degree."
  7467. msgstr ""
  7468. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
  7469. #: flatcamTools/ToolNonCopperClear.py:149
  7470. #: flatcamTools/ToolNonCopperClear.py:157
  7471. msgid ""
  7472. "Milling type when the selected tool is of type: 'iso_op':\n"
  7473. "- climb / best for precision milling and to reduce tool usage\n"
  7474. "- conventional / useful when there is no backlash compensation"
  7475. msgstr ""
  7476. #: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
  7477. #: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
  7478. msgid "Tool order"
  7479. msgstr ""
  7480. #: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
  7481. #: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
  7482. #: flatcamTools/ToolNonCopperClear.py:164
  7483. #: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
  7484. #: flatcamTools/ToolPaint.py:147
  7485. msgid ""
  7486. "This set the way that the tools in the tools table are used.\n"
  7487. "'No' --> means that the used order is the one in the tool table\n"
  7488. "'Forward' --> means that the tools will be ordered from small to big\n"
  7489. "'Reverse' --> menas that the tools will ordered from big to small\n"
  7490. "\n"
  7491. "WARNING: using rest machining will automatically set the order\n"
  7492. "in reverse and disable this control."
  7493. msgstr ""
  7494. #: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
  7495. #: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
  7496. msgid "Forward"
  7497. msgstr ""
  7498. #: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
  7499. #: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
  7500. msgid "Reverse"
  7501. msgstr ""
  7502. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
  7503. #: flatcamTools/ToolNonCopperClear.py:271
  7504. #: flatcamTools/ToolNonCopperClear.py:276
  7505. msgid ""
  7506. "Depth of cut into material. Negative value.\n"
  7507. "In FlatCAM units."
  7508. msgstr ""
  7509. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
  7510. #, python-format
  7511. msgid ""
  7512. "How much (fraction) of the tool width to overlap each tool pass.\n"
  7513. "Example:\n"
  7514. "A value here of 0.25 means 25%% from the tool diameter found above.\n"
  7515. "\n"
  7516. "Adjust the value starting with lower values\n"
  7517. "and increasing it if areas that should be cleared are still \n"
  7518. "not cleared.\n"
  7519. "Lower values = faster processing, faster execution on PCB.\n"
  7520. "Higher values = slow processing and slow execution on CNC\n"
  7521. "due of too many paths."
  7522. msgstr ""
  7523. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
  7524. msgid "Bounding box margin."
  7525. msgstr ""
  7526. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
  7527. #: flatcamTools/ToolNonCopperClear.py:310
  7528. msgid ""
  7529. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  7530. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  7531. "lines."
  7532. msgstr ""
  7533. #: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
  7534. #: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
  7535. msgid "Connect"
  7536. msgstr ""
  7537. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
  7538. #: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
  7539. msgid "Contour"
  7540. msgstr ""
  7541. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
  7542. #: flatcamTools/ToolPaint.py:267
  7543. msgid "Rest M."
  7544. msgstr ""
  7545. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
  7546. msgid ""
  7547. "If checked, use 'rest machining'.\n"
  7548. "Basically it will clear copper outside PCB features,\n"
  7549. "using the biggest tool and continue with the next tools,\n"
  7550. "from bigger to smaller, to clear areas of copper that\n"
  7551. "could not be cleared by previous tool, until there is\n"
  7552. "no more copper to clear or there are no more tools.\n"
  7553. "If not checked, use the standard algorithm."
  7554. msgstr ""
  7555. #: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
  7556. #: flatcamTools/ToolNonCopperClear.py:359
  7557. #: flatcamTools/ToolNonCopperClear.py:371
  7558. msgid ""
  7559. "If used, it will add an offset to the copper features.\n"
  7560. "The copper clearing will finish to a distance\n"
  7561. "from the copper features.\n"
  7562. "The value can be between 0 and 10 FlatCAM units."
  7563. msgstr ""
  7564. #: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
  7565. msgid "Offset value"
  7566. msgstr ""
  7567. #: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
  7568. msgid "Itself"
  7569. msgstr ""
  7570. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
  7571. msgid "Area"
  7572. msgstr ""
  7573. #: flatcamGUI/FlatCAMGUI.py:6653
  7574. msgid "Ref"
  7575. msgstr ""
  7576. #: flatcamGUI/FlatCAMGUI.py:6654
  7577. msgid "Reference"
  7578. msgstr ""
  7579. #: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
  7580. msgid ""
  7581. "- 'Itself' - the non copper clearing extent\n"
  7582. "is based on the object that is copper cleared.\n"
  7583. " - 'Area Selection' - left mouse click to start selection of the area to be "
  7584. "painted.\n"
  7585. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  7586. "areas.\n"
  7587. "- 'Reference Object' - will do non copper clearing within the area\n"
  7588. "specified by another object."
  7589. msgstr ""
  7590. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
  7591. msgid "Normal"
  7592. msgstr ""
  7593. #: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
  7594. msgid "Progressive"
  7595. msgstr ""
  7596. #: flatcamGUI/FlatCAMGUI.py:6669
  7597. msgid "NCC Plotting"
  7598. msgstr ""
  7599. #: flatcamGUI/FlatCAMGUI.py:6671
  7600. msgid ""
  7601. "- 'Normal' - normal plotting, done at the end of the NCC job\n"
  7602. "- 'Progressive' - after each shape is generated it will be plotted."
  7603. msgstr ""
  7604. #: flatcamGUI/FlatCAMGUI.py:6685
  7605. msgid "Cutout Tool Options"
  7606. msgstr ""
  7607. #: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
  7608. msgid ""
  7609. "Create toolpaths to cut around\n"
  7610. "the PCB and separate it from\n"
  7611. "the original board."
  7612. msgstr ""
  7613. #: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
  7614. msgid ""
  7615. "Diameter of the tool used to cutout\n"
  7616. "the PCB shape out of the surrounding material."
  7617. msgstr ""
  7618. #: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
  7619. msgid "Obj kind"
  7620. msgstr ""
  7621. #: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
  7622. msgid ""
  7623. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  7624. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  7625. "Gerber object, which is made\n"
  7626. "out of many individual PCB outlines."
  7627. msgstr ""
  7628. #: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
  7629. #: flatcamTools/ToolCutOut.py:84
  7630. msgid "Single"
  7631. msgstr ""
  7632. #: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
  7633. msgid "Panel"
  7634. msgstr ""
  7635. #: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
  7636. msgid ""
  7637. "Margin over bounds. A positive value here\n"
  7638. "will make the cutout of the PCB further from\n"
  7639. "the actual PCB border"
  7640. msgstr ""
  7641. #: flatcamGUI/FlatCAMGUI.py:6733
  7642. msgid "Gap size"
  7643. msgstr ""
  7644. #: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
  7645. msgid ""
  7646. "The size of the bridge gaps in the cutout\n"
  7647. "used to keep the board connected to\n"
  7648. "the surrounding material (the one \n"
  7649. "from which the PCB is cutout)."
  7650. msgstr ""
  7651. #: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
  7652. msgid "Gaps"
  7653. msgstr ""
  7654. #: flatcamGUI/FlatCAMGUI.py:6746
  7655. msgid ""
  7656. "Number of gaps used for the cutout.\n"
  7657. "There can be maximum 8 bridges/gaps.\n"
  7658. "The choices are:\n"
  7659. "- None - no gaps\n"
  7660. "- lr - left + right\n"
  7661. "- tb - top + bottom\n"
  7662. "- 4 - left + right +top + bottom\n"
  7663. "- 2lr - 2*left + 2*right\n"
  7664. "- 2tb - 2*top + 2*bottom\n"
  7665. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7666. msgstr ""
  7667. #: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
  7668. msgid "Convex Sh."
  7669. msgstr ""
  7670. #: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
  7671. msgid ""
  7672. "Create a convex shape surrounding the entire PCB.\n"
  7673. "Used only if the source object type is Gerber."
  7674. msgstr ""
  7675. #: flatcamGUI/FlatCAMGUI.py:6784
  7676. msgid "2Sided Tool Options"
  7677. msgstr ""
  7678. #: flatcamGUI/FlatCAMGUI.py:6789
  7679. msgid ""
  7680. "A tool to help in creating a double sided\n"
  7681. "PCB using alignment holes."
  7682. msgstr ""
  7683. #: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
  7684. msgid "Drill dia"
  7685. msgstr ""
  7686. #: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
  7687. #: flatcamTools/ToolDblSided.py:236
  7688. msgid "Diameter of the drill for the alignment holes."
  7689. msgstr ""
  7690. #: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
  7691. msgid "Mirror Axis:"
  7692. msgstr ""
  7693. #: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
  7694. msgid "Mirror vertically (X) or horizontally (Y)."
  7695. msgstr ""
  7696. #: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
  7697. msgid "Point"
  7698. msgstr ""
  7699. #: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
  7700. msgid "Box"
  7701. msgstr ""
  7702. #: flatcamGUI/FlatCAMGUI.py:6823
  7703. msgid "Axis Ref"
  7704. msgstr ""
  7705. #: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
  7706. msgid ""
  7707. "The axis should pass through a <b>point</b> or cut\n"
  7708. " a specified <b>box</b> (in a FlatCAM object) through \n"
  7709. "the center."
  7710. msgstr ""
  7711. #: flatcamGUI/FlatCAMGUI.py:6841
  7712. msgid "Paint Tool Options"
  7713. msgstr ""
  7714. #: flatcamGUI/FlatCAMGUI.py:6846
  7715. msgid "<b>Parameters:</b>"
  7716. msgstr ""
  7717. #: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
  7718. msgid ""
  7719. "Creates tool paths to cover the\n"
  7720. "whole area of a polygon (remove\n"
  7721. "all copper). You will be asked\n"
  7722. "to click on the desired polygon."
  7723. msgstr ""
  7724. #: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
  7725. msgid "Selection"
  7726. msgstr ""
  7727. #: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
  7728. #: flatcamTools/ToolPaint.py:300
  7729. msgid ""
  7730. "How to select Polygons to be painted.\n"
  7731. "\n"
  7732. "- 'Area Selection' - left mouse click to start selection of the area to be "
  7733. "painted.\n"
  7734. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  7735. "areas.\n"
  7736. "- 'All Polygons' - the Paint will start after click.\n"
  7737. "- 'Reference Object' - will do non copper clearing within the area\n"
  7738. "specified by another object."
  7739. msgstr ""
  7740. #: flatcamGUI/FlatCAMGUI.py:6967
  7741. msgid "Ref."
  7742. msgstr ""
  7743. #: flatcamGUI/FlatCAMGUI.py:6975
  7744. msgid "Paint Plotting"
  7745. msgstr ""
  7746. #: flatcamGUI/FlatCAMGUI.py:6977
  7747. msgid ""
  7748. "- 'Normal' - normal plotting, done at the end of the Paint job\n"
  7749. "- 'Progressive' - after each shape is generated it will be plotted."
  7750. msgstr ""
  7751. #: flatcamGUI/FlatCAMGUI.py:6991
  7752. msgid "Film Tool Options"
  7753. msgstr ""
  7754. #: flatcamGUI/FlatCAMGUI.py:6996
  7755. msgid ""
  7756. "Create a PCB film from a Gerber or Geometry\n"
  7757. "FlatCAM object.\n"
  7758. "The file is saved in SVG format."
  7759. msgstr ""
  7760. #: flatcamGUI/FlatCAMGUI.py:7007
  7761. msgid "Film Type"
  7762. msgstr ""
  7763. #: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
  7764. msgid ""
  7765. "Generate a Positive black film or a Negative film.\n"
  7766. "Positive means that it will print the features\n"
  7767. "with black on a white canvas.\n"
  7768. "Negative means that it will print the features\n"
  7769. "with white on a black canvas.\n"
  7770. "The Film format is SVG."
  7771. msgstr ""
  7772. #: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
  7773. msgid "Border"
  7774. msgstr ""
  7775. #: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
  7776. msgid ""
  7777. "Specify a border around the object.\n"
  7778. "Only for negative film.\n"
  7779. "It helps if we use as a Box Object the same \n"
  7780. "object as in Film Object. It will create a thick\n"
  7781. "black bar around the actual print allowing for a\n"
  7782. "better delimitation of the outline features which are of\n"
  7783. "white color like the rest and which may confound with the\n"
  7784. "surroundings if not for this border."
  7785. msgstr ""
  7786. #: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
  7787. msgid "Scale Stroke"
  7788. msgstr ""
  7789. #: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
  7790. msgid ""
  7791. "Scale the line stroke thickness of each feature in the SVG file.\n"
  7792. "It means that the line that envelope each SVG feature will be thicker or "
  7793. "thinner,\n"
  7794. "therefore the fine features may be more affected by this parameter."
  7795. msgstr ""
  7796. #: flatcamGUI/FlatCAMGUI.py:7052
  7797. msgid "Panelize Tool Options"
  7798. msgstr ""
  7799. #: flatcamGUI/FlatCAMGUI.py:7057
  7800. msgid ""
  7801. "Create an object that contains an array of (x, y) elements,\n"
  7802. "each element is a copy of the source object spaced\n"
  7803. "at a X distance, Y distance of each other."
  7804. msgstr ""
  7805. #: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
  7806. msgid "Spacing cols"
  7807. msgstr ""
  7808. #: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
  7809. msgid ""
  7810. "Spacing between columns of the desired panel.\n"
  7811. "In current units."
  7812. msgstr ""
  7813. #: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
  7814. msgid "Spacing rows"
  7815. msgstr ""
  7816. #: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
  7817. msgid ""
  7818. "Spacing between rows of the desired panel.\n"
  7819. "In current units."
  7820. msgstr ""
  7821. #: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
  7822. msgid "Columns"
  7823. msgstr ""
  7824. #: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
  7825. msgid "Number of columns of the desired panel"
  7826. msgstr ""
  7827. #: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
  7828. msgid "Rows"
  7829. msgstr ""
  7830. #: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
  7831. msgid "Number of rows of the desired panel"
  7832. msgstr ""
  7833. #: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
  7834. msgid "Gerber"
  7835. msgstr ""
  7836. #: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
  7837. msgid "Geo"
  7838. msgstr ""
  7839. #: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
  7840. msgid "Panel Type"
  7841. msgstr ""
  7842. #: flatcamGUI/FlatCAMGUI.py:7109
  7843. msgid ""
  7844. "Choose the type of object for the panel object:\n"
  7845. "- Gerber\n"
  7846. "- Geometry"
  7847. msgstr ""
  7848. #: flatcamGUI/FlatCAMGUI.py:7118
  7849. msgid "Constrain within"
  7850. msgstr ""
  7851. #: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
  7852. msgid ""
  7853. "Area define by DX and DY within to constrain the panel.\n"
  7854. "DX and DY values are in current units.\n"
  7855. "Regardless of how many columns and rows are desired,\n"
  7856. "the final panel will have as many columns and rows as\n"
  7857. "they fit completely within selected area."
  7858. msgstr ""
  7859. #: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
  7860. msgid "Width (DX)"
  7861. msgstr ""
  7862. #: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
  7863. msgid ""
  7864. "The width (DX) within which the panel must fit.\n"
  7865. "In current units."
  7866. msgstr ""
  7867. #: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
  7868. msgid "Height (DY)"
  7869. msgstr ""
  7870. #: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
  7871. msgid ""
  7872. "The height (DY)within which the panel must fit.\n"
  7873. "In current units."
  7874. msgstr ""
  7875. #: flatcamGUI/FlatCAMGUI.py:7154
  7876. msgid "Calculators Tool Options"
  7877. msgstr ""
  7878. #: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
  7879. msgid "V-Shape Tool Calculator"
  7880. msgstr ""
  7881. #: flatcamGUI/FlatCAMGUI.py:7159
  7882. msgid ""
  7883. "Calculate the tool diameter for a given V-shape tool,\n"
  7884. "having the tip diameter, tip angle and\n"
  7885. "depth-of-cut as parameters."
  7886. msgstr ""
  7887. #: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
  7888. msgid "Tip Diameter"
  7889. msgstr ""
  7890. #: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
  7891. msgid ""
  7892. "This is the tool tip diameter.\n"
  7893. "It is specified by manufacturer."
  7894. msgstr ""
  7895. #: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
  7896. msgid "Tip Angle"
  7897. msgstr ""
  7898. #: flatcamGUI/FlatCAMGUI.py:7182
  7899. msgid ""
  7900. "This is the angle on the tip of the tool.\n"
  7901. "It is specified by manufacturer."
  7902. msgstr ""
  7903. #: flatcamGUI/FlatCAMGUI.py:7192
  7904. msgid ""
  7905. "This is depth to cut into material.\n"
  7906. "In the CNCJob object it is the CutZ parameter."
  7907. msgstr ""
  7908. #: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
  7909. msgid "ElectroPlating Calculator"
  7910. msgstr ""
  7911. #: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
  7912. msgid ""
  7913. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  7914. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  7915. "chloride."
  7916. msgstr ""
  7917. #: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
  7918. msgid "Board Length"
  7919. msgstr ""
  7920. #: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
  7921. msgid "This is the board length. In centimeters."
  7922. msgstr ""
  7923. #: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
  7924. msgid "Board Width"
  7925. msgstr ""
  7926. #: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
  7927. msgid "This is the board width.In centimeters."
  7928. msgstr ""
  7929. #: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
  7930. msgid "Current Density"
  7931. msgstr ""
  7932. #: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
  7933. msgid ""
  7934. "Current density to pass through the board. \n"
  7935. "In Amps per Square Feet ASF."
  7936. msgstr ""
  7937. #: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
  7938. msgid "Copper Growth"
  7939. msgstr ""
  7940. #: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
  7941. msgid ""
  7942. "How thick the copper growth is intended to be.\n"
  7943. "In microns."
  7944. msgstr ""
  7945. #: flatcamGUI/FlatCAMGUI.py:7251
  7946. msgid "Transform Tool Options"
  7947. msgstr ""
  7948. #: flatcamGUI/FlatCAMGUI.py:7256
  7949. msgid ""
  7950. "Various transformations that can be applied\n"
  7951. "on a FlatCAM object."
  7952. msgstr ""
  7953. #: flatcamGUI/FlatCAMGUI.py:7266
  7954. msgid "Rotate Angle"
  7955. msgstr ""
  7956. #: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
  7957. msgid "Skew_X angle"
  7958. msgstr ""
  7959. #: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
  7960. msgid "Skew_Y angle"
  7961. msgstr ""
  7962. #: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
  7963. msgid "Scale_X factor"
  7964. msgstr ""
  7965. #: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
  7966. msgid "Factor for scaling on X axis."
  7967. msgstr ""
  7968. #: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
  7969. msgid "Scale_Y factor"
  7970. msgstr ""
  7971. #: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
  7972. msgid "Factor for scaling on Y axis."
  7973. msgstr ""
  7974. #: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
  7975. msgid ""
  7976. "Scale the selected object(s)\n"
  7977. "using the Scale_X factor for both axis."
  7978. msgstr ""
  7979. #: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
  7980. msgid ""
  7981. "Scale the selected object(s)\n"
  7982. "using the origin reference when checked,\n"
  7983. "and the center of the biggest bounding box\n"
  7984. "of the selected objects when unchecked."
  7985. msgstr ""
  7986. #: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
  7987. msgid "Offset_X val"
  7988. msgstr ""
  7989. #: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
  7990. msgid "Distance to offset on X axis. In current units."
  7991. msgstr ""
  7992. #: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
  7993. msgid "Offset_Y val"
  7994. msgstr ""
  7995. #: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
  7996. msgid "Distance to offset on Y axis. In current units."
  7997. msgstr ""
  7998. #: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
  7999. msgid "Mirror Reference"
  8000. msgstr ""
  8001. #: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
  8002. msgid ""
  8003. "Flip the selected object(s)\n"
  8004. "around the point in Point Entry Field.\n"
  8005. "\n"
  8006. "The point coordinates can be captured by\n"
  8007. "left click on canvas together with pressing\n"
  8008. "SHIFT key. \n"
  8009. "Then click Add button to insert coordinates.\n"
  8010. "Or enter the coords in format (x, y) in the\n"
  8011. "Point Entry field and click Flip on X(Y)"
  8012. msgstr ""
  8013. #: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
  8014. msgid " Mirror Ref. Point"
  8015. msgstr ""
  8016. #: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
  8017. msgid ""
  8018. "Coordinates in format (x, y) used as reference for mirroring.\n"
  8019. "The 'x' in (x, y) will be used when using Flip on X and\n"
  8020. "the 'y' in (x, y) will be used when using Flip on Y and"
  8021. msgstr ""
  8022. #: flatcamGUI/FlatCAMGUI.py:7383
  8023. msgid "SolderPaste Tool Options"
  8024. msgstr ""
  8025. #: flatcamGUI/FlatCAMGUI.py:7388
  8026. msgid ""
  8027. "A tool to create GCode for dispensing\n"
  8028. "solder paste onto a PCB."
  8029. msgstr ""
  8030. #: flatcamGUI/FlatCAMGUI.py:7399
  8031. msgid "Diameters of nozzle tools, separated by ','"
  8032. msgstr ""
  8033. #: flatcamGUI/FlatCAMGUI.py:7406
  8034. msgid "New Nozzle Dia"
  8035. msgstr ""
  8036. #: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
  8037. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  8038. msgstr ""
  8039. #: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
  8040. msgid "Z Dispense Start"
  8041. msgstr ""
  8042. #: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
  8043. msgid "The height (Z) when solder paste dispensing starts."
  8044. msgstr ""
  8045. #: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
  8046. msgid "Z Dispense"
  8047. msgstr ""
  8048. #: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
  8049. msgid "The height (Z) when doing solder paste dispensing."
  8050. msgstr ""
  8051. #: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
  8052. msgid "Z Dispense Stop"
  8053. msgstr ""
  8054. #: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
  8055. msgid "The height (Z) when solder paste dispensing stops."
  8056. msgstr ""
  8057. #: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
  8058. msgid "Z Travel"
  8059. msgstr ""
  8060. #: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
  8061. msgid ""
  8062. "The height (Z) for travel between pads\n"
  8063. "(without dispensing solder paste)."
  8064. msgstr ""
  8065. #: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
  8066. msgid "Z Toolchange"
  8067. msgstr ""
  8068. #: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
  8069. msgid "The height (Z) for tool (nozzle) change."
  8070. msgstr ""
  8071. #: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
  8072. msgid "Toolchange X-Y"
  8073. msgstr ""
  8074. #: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
  8075. msgid ""
  8076. "The X,Y location for tool (nozzle) change.\n"
  8077. "The format is (x, y) where x and y are real numbers."
  8078. msgstr ""
  8079. #: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
  8080. msgid "Feedrate X-Y"
  8081. msgstr ""
  8082. #: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
  8083. msgid "Feedrate (speed) while moving on the X-Y plane."
  8084. msgstr ""
  8085. #: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
  8086. msgid "Feedrate Z"
  8087. msgstr ""
  8088. #: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
  8089. msgid ""
  8090. "Feedrate (speed) while moving vertically\n"
  8091. "(on Z plane)."
  8092. msgstr ""
  8093. #: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
  8094. msgid "Feedrate Z Dispense"
  8095. msgstr ""
  8096. #: flatcamGUI/FlatCAMGUI.py:7493
  8097. msgid ""
  8098. "Feedrate (speed) while moving up vertically\n"
  8099. "to Dispense position (on Z plane)."
  8100. msgstr ""
  8101. #: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
  8102. msgid "Spindle Speed FWD"
  8103. msgstr ""
  8104. #: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
  8105. msgid ""
  8106. "The dispenser speed while pushing solder paste\n"
  8107. "through the dispenser nozzle."
  8108. msgstr ""
  8109. #: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
  8110. msgid "Dwell FWD"
  8111. msgstr ""
  8112. #: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
  8113. msgid "Pause after solder dispensing."
  8114. msgstr ""
  8115. #: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
  8116. msgid "Spindle Speed REV"
  8117. msgstr ""
  8118. #: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
  8119. msgid ""
  8120. "The dispenser speed while retracting solder paste\n"
  8121. "through the dispenser nozzle."
  8122. msgstr ""
  8123. #: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
  8124. msgid "Dwell REV"
  8125. msgstr ""
  8126. #: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
  8127. msgid ""
  8128. "Pause after solder paste dispenser retracted,\n"
  8129. "to allow pressure equilibrium."
  8130. msgstr ""
  8131. #: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
  8132. #: flatcamTools/ToolSolderPaste.py:276
  8133. msgid "PostProcessor"
  8134. msgstr ""
  8135. #: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
  8136. msgid "Files that control the GCode generation."
  8137. msgstr ""
  8138. #: flatcamGUI/FlatCAMGUI.py:7556
  8139. msgid "Substractor Tool Options"
  8140. msgstr ""
  8141. #: flatcamGUI/FlatCAMGUI.py:7561
  8142. msgid ""
  8143. "A tool to substract one Gerber or Geometry object\n"
  8144. "from another of the same type."
  8145. msgstr ""
  8146. #: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
  8147. msgid "Close paths"
  8148. msgstr ""
  8149. #: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
  8150. msgid ""
  8151. "Checking this will close the paths cut by the Geometry substractor object."
  8152. msgstr ""
  8153. #: flatcamGUI/FlatCAMGUI.py:7578
  8154. msgid "Excellon File associations"
  8155. msgstr ""
  8156. #: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
  8157. #: flatcamGUI/FlatCAMGUI.py:7647
  8158. msgid "Extensions list"
  8159. msgstr ""
  8160. #: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
  8161. #: flatcamGUI/FlatCAMGUI.py:7649
  8162. msgid ""
  8163. "List of file extensions to be\n"
  8164. "associated with FlatCAM."
  8165. msgstr ""
  8166. #: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
  8167. #: flatcamGUI/FlatCAMGUI.py:7662
  8168. msgid ""
  8169. "Apply the file associations between\n"
  8170. "FlatCAM and the files with above extensions.\n"
  8171. "They will be active after next logon.\n"
  8172. "This work only in Windows."
  8173. msgstr ""
  8174. #: flatcamGUI/FlatCAMGUI.py:7611
  8175. msgid "GCode File associations"
  8176. msgstr ""
  8177. #: flatcamGUI/FlatCAMGUI.py:7644
  8178. msgid "Gerber File associations"
  8179. msgstr ""
  8180. #: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
  8181. msgid "Idle."
  8182. msgstr ""
  8183. #: flatcamGUI/FlatCAMGUI.py:7722
  8184. msgid "Application started ..."
  8185. msgstr ""
  8186. #: flatcamGUI/FlatCAMGUI.py:7723
  8187. msgid "Hello!"
  8188. msgstr ""
  8189. #: flatcamGUI/ObjectUI.py:33
  8190. msgid "FlatCAM Object"
  8191. msgstr ""
  8192. #: flatcamGUI/ObjectUI.py:58
  8193. msgid ""
  8194. "BASIC is suitable for a beginner. Many parameters\n"
  8195. "are hidden from the user in this mode.\n"
  8196. "ADVANCED mode will make available all parameters.\n"
  8197. "\n"
  8198. "To change the application LEVEL, go to:\n"
  8199. "Edit -> Preferences -> General and check:\n"
  8200. "'APP. LEVEL' radio button."
  8201. msgstr ""
  8202. #: flatcamGUI/ObjectUI.py:81
  8203. msgid "Change the size of the object."
  8204. msgstr ""
  8205. #: flatcamGUI/ObjectUI.py:89
  8206. msgid "Factor"
  8207. msgstr ""
  8208. #: flatcamGUI/ObjectUI.py:91
  8209. msgid ""
  8210. "Factor by which to multiply\n"
  8211. "geometric features of this object."
  8212. msgstr ""
  8213. #: flatcamGUI/ObjectUI.py:102
  8214. msgid "Perform scaling operation."
  8215. msgstr ""
  8216. #: flatcamGUI/ObjectUI.py:110
  8217. msgid "Change the position of this object."
  8218. msgstr ""
  8219. #: flatcamGUI/ObjectUI.py:117
  8220. msgid "Vector"
  8221. msgstr ""
  8222. #: flatcamGUI/ObjectUI.py:119
  8223. msgid ""
  8224. "Amount by which to move the object\n"
  8225. "in the x and y axes in (x, y) format."
  8226. msgstr ""
  8227. #: flatcamGUI/ObjectUI.py:129
  8228. msgid "Perform the offset operation."
  8229. msgstr ""
  8230. #: flatcamGUI/ObjectUI.py:143
  8231. msgid "Gerber Object"
  8232. msgstr ""
  8233. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
  8234. #: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
  8235. msgid "Name"
  8236. msgstr ""
  8237. #: flatcamGUI/ObjectUI.py:203
  8238. msgid ""
  8239. "Toggle the display of the Gerber Apertures Table.\n"
  8240. "When unchecked, it will delete all mark shapes\n"
  8241. "that are drawn on canvas."
  8242. msgstr ""
  8243. #: flatcamGUI/ObjectUI.py:213
  8244. msgid "Mark All"
  8245. msgstr ""
  8246. #: flatcamGUI/ObjectUI.py:215
  8247. msgid ""
  8248. "When checked it will display all the apertures.\n"
  8249. "When unchecked, it will delete all mark shapes\n"
  8250. "that are drawn on canvas."
  8251. msgstr ""
  8252. #: flatcamGUI/ObjectUI.py:243
  8253. msgid "Mark the aperture instances on canvas."
  8254. msgstr ""
  8255. #: flatcamGUI/ObjectUI.py:266
  8256. msgid ""
  8257. "Diameter of the cutting tool.\n"
  8258. "If you want to have an isolation path\n"
  8259. "inside the actual shape of the Gerber\n"
  8260. "feature, use a negative value for\n"
  8261. "this parameter."
  8262. msgstr ""
  8263. #: flatcamGUI/ObjectUI.py:324
  8264. msgid "Except"
  8265. msgstr ""
  8266. #: flatcamGUI/ObjectUI.py:325
  8267. msgid ""
  8268. "When the isolation geometry is generated,\n"
  8269. "by checking this, the area of the object bellow\n"
  8270. "will be subtracted from the isolation geometry."
  8271. msgstr ""
  8272. #: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
  8273. #: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
  8274. msgid "Obj Type"
  8275. msgstr ""
  8276. #: flatcamGUI/ObjectUI.py:352
  8277. msgid ""
  8278. "Specify the type of object to be excepted from isolation.\n"
  8279. "It can be of type: Gerber or Geometry.\n"
  8280. "What is selected here will dictate the kind\n"
  8281. "of objects that will populate the 'Object' combobox."
  8282. msgstr ""
  8283. #: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
  8284. #: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
  8285. #: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
  8286. msgid "Object"
  8287. msgstr ""
  8288. #: flatcamGUI/ObjectUI.py:366
  8289. msgid "Object whose area will be removed from isolation geometry."
  8290. msgstr ""
  8291. #: flatcamGUI/ObjectUI.py:370
  8292. msgid "Generate Isolation Geometry"
  8293. msgstr ""
  8294. #: flatcamGUI/ObjectUI.py:372
  8295. msgid ""
  8296. "Create a Geometry object with toolpaths to cut \n"
  8297. "isolation outside, inside or on both sides of the\n"
  8298. "object. For a Gerber object outside means outside\n"
  8299. "of the Gerber feature and inside means inside of\n"
  8300. "the Gerber feature, if possible at all. This means\n"
  8301. "that only if the Gerber feature has openings inside, they\n"
  8302. "will be isolated. If what is wanted is to cut isolation\n"
  8303. "inside the actual Gerber feature, use a negative tool\n"
  8304. "diameter above."
  8305. msgstr ""
  8306. #: flatcamGUI/ObjectUI.py:384
  8307. msgid "Buffer Solid Geometry"
  8308. msgstr ""
  8309. #: flatcamGUI/ObjectUI.py:386
  8310. msgid ""
  8311. "This button is shown only when the Gerber file\n"
  8312. "is loaded without buffering.\n"
  8313. "Clicking this will create the buffered geometry\n"
  8314. "required for isolation."
  8315. msgstr ""
  8316. #: flatcamGUI/ObjectUI.py:393
  8317. msgid "FULL Geo"
  8318. msgstr ""
  8319. #: flatcamGUI/ObjectUI.py:395
  8320. msgid ""
  8321. "Create the Geometry Object\n"
  8322. "for isolation routing. It contains both\n"
  8323. "the interiors and exteriors geometry."
  8324. msgstr ""
  8325. #: flatcamGUI/ObjectUI.py:404
  8326. msgid "Ext Geo"
  8327. msgstr ""
  8328. #: flatcamGUI/ObjectUI.py:406
  8329. msgid ""
  8330. "Create the Geometry Object\n"
  8331. "for isolation routing containing\n"
  8332. "only the exteriors geometry."
  8333. msgstr ""
  8334. #: flatcamGUI/ObjectUI.py:413
  8335. msgid "Int Geo"
  8336. msgstr ""
  8337. #: flatcamGUI/ObjectUI.py:415
  8338. msgid ""
  8339. "Create the Geometry Object\n"
  8340. "for isolation routing containing\n"
  8341. "only the interiors geometry."
  8342. msgstr ""
  8343. #: flatcamGUI/ObjectUI.py:445
  8344. msgid "Clear N-copper"
  8345. msgstr ""
  8346. #: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
  8347. msgid ""
  8348. "Create the Geometry Object\n"
  8349. "for non-copper routing."
  8350. msgstr ""
  8351. #: flatcamGUI/ObjectUI.py:461
  8352. msgid "Board cutout"
  8353. msgstr ""
  8354. #: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
  8355. msgid "Cutout Tool"
  8356. msgstr ""
  8357. #: flatcamGUI/ObjectUI.py:470
  8358. msgid ""
  8359. "Generate the geometry for\n"
  8360. "the board cutout."
  8361. msgstr ""
  8362. #: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
  8363. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  8364. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  8365. msgid "Generate Geo"
  8366. msgstr ""
  8367. #: flatcamGUI/ObjectUI.py:515
  8368. msgid ""
  8369. "Create a geometry surrounding the Gerber object.\n"
  8370. "Square shape."
  8371. msgstr ""
  8372. #: flatcamGUI/ObjectUI.py:542
  8373. msgid "Generate the Geometry object."
  8374. msgstr ""
  8375. #: flatcamGUI/ObjectUI.py:554
  8376. msgid "Excellon Object"
  8377. msgstr ""
  8378. #: flatcamGUI/ObjectUI.py:565
  8379. msgid "Solid circles."
  8380. msgstr ""
  8381. #: flatcamGUI/ObjectUI.py:613
  8382. msgid "Drills"
  8383. msgstr ""
  8384. #: flatcamGUI/ObjectUI.py:618
  8385. msgid ""
  8386. "This is the Tool Number.\n"
  8387. "When ToolChange is checked, on toolchange event this value\n"
  8388. "will be showed as a T1, T2 ... Tn in the Machine Code.\n"
  8389. "\n"
  8390. "Here the tools are selected for G-code generation."
  8391. msgstr ""
  8392. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
  8393. #: flatcamTools/ToolPaint.py:120
  8394. msgid ""
  8395. "Tool Diameter. It's value (in current FlatCAM units) \n"
  8396. "is the cut width into the material."
  8397. msgstr ""
  8398. #: flatcamGUI/ObjectUI.py:626
  8399. msgid ""
  8400. "The number of Drill holes. Holes that are drilled with\n"
  8401. "a drill bit."
  8402. msgstr ""
  8403. #: flatcamGUI/ObjectUI.py:629
  8404. msgid ""
  8405. "The number of Slot holes. Holes that are created by\n"
  8406. "milling them with an endmill bit."
  8407. msgstr ""
  8408. #: flatcamGUI/ObjectUI.py:636
  8409. msgid ""
  8410. "Toggle display of the drills for the current tool.\n"
  8411. "This does not select the tools for G-code generation."
  8412. msgstr ""
  8413. #: flatcamGUI/ObjectUI.py:645
  8414. msgid ""
  8415. "Create a CNC Job object\n"
  8416. "for this drill object."
  8417. msgstr ""
  8418. #: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
  8419. msgid "Tool change Z"
  8420. msgstr ""
  8421. #: flatcamGUI/ObjectUI.py:799
  8422. msgid ""
  8423. "Select from the Tools Table above\n"
  8424. "the hole dias that are to be drilled.\n"
  8425. "Use the # column to make the selection."
  8426. msgstr ""
  8427. #: flatcamGUI/ObjectUI.py:809
  8428. msgid ""
  8429. "Choose what to use for GCode generation:\n"
  8430. "'Drills', 'Slots' or 'Both'.\n"
  8431. "When choosing 'Slots' or 'Both', slots will be\n"
  8432. "converted to a series of drills."
  8433. msgstr ""
  8434. #: flatcamGUI/ObjectUI.py:824
  8435. msgid "Create Drills GCode"
  8436. msgstr ""
  8437. #: flatcamGUI/ObjectUI.py:826
  8438. msgid "Generate the CNC Job."
  8439. msgstr ""
  8440. #: flatcamGUI/ObjectUI.py:838
  8441. msgid ""
  8442. "Select from the Tools Table above\n"
  8443. "the hole dias that are to be milled.\n"
  8444. "Use the # column to make the selection."
  8445. msgstr ""
  8446. #: flatcamGUI/ObjectUI.py:853
  8447. msgid "Mill Drills Geo"
  8448. msgstr ""
  8449. #: flatcamGUI/ObjectUI.py:855
  8450. msgid ""
  8451. "Create the Geometry Object\n"
  8452. "for milling DRILLS toolpaths."
  8453. msgstr ""
  8454. #: flatcamGUI/ObjectUI.py:870
  8455. msgid "Mill Slots Geo"
  8456. msgstr ""
  8457. #: flatcamGUI/ObjectUI.py:872
  8458. msgid ""
  8459. "Create the Geometry Object\n"
  8460. "for milling SLOTS toolpaths."
  8461. msgstr ""
  8462. #: flatcamGUI/ObjectUI.py:890
  8463. msgid "Geometry Object"
  8464. msgstr ""
  8465. #: flatcamGUI/ObjectUI.py:921
  8466. msgid ""
  8467. "Tools in this Geometry object used for cutting.\n"
  8468. "The 'Offset' entry will set an offset for the cut.\n"
  8469. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8470. "'Type' entry is only informative and it allow to know the \n"
  8471. "intent of using the current tool. \n"
  8472. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8473. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8474. "ball(B), or V-Shaped(V). \n"
  8475. "When V-shaped is selected the 'Type' entry is automatically \n"
  8476. "set to Isolation, the CutZ parameter in the UI form is\n"
  8477. "grayed out and Cut Z is automatically calculated from the newly \n"
  8478. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  8479. msgstr ""
  8480. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  8481. msgid "Dia"
  8482. msgstr ""
  8483. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  8484. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  8485. msgid "TT"
  8486. msgstr ""
  8487. #: flatcamGUI/ObjectUI.py:959
  8488. msgid ""
  8489. "This is the Tool Number.\n"
  8490. "When ToolChange is checked, on toolchange event this value\n"
  8491. "will be showed as a T1, T2 ... Tn"
  8492. msgstr ""
  8493. #: flatcamGUI/ObjectUI.py:970
  8494. msgid ""
  8495. "The value for the Offset can be:\n"
  8496. "- Path -> There is no offset, the tool cut will be done through the geometry "
  8497. "line.\n"
  8498. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  8499. "'pocket'.\n"
  8500. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  8501. msgstr ""
  8502. #: flatcamGUI/ObjectUI.py:977
  8503. msgid ""
  8504. "The (Operation) Type has only informative value. Usually the UI form "
  8505. "values \n"
  8506. "are choose based on the operation type and this will serve as a reminder.\n"
  8507. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  8508. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  8509. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  8510. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  8511. "tip."
  8512. msgstr ""
  8513. #: flatcamGUI/ObjectUI.py:986
  8514. msgid ""
  8515. "The Tool Type (TT) can be:\n"
  8516. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  8517. "cut width in material\n"
  8518. "is exactly the tool diameter.\n"
  8519. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8520. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  8521. "two additional UI form\n"
  8522. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  8523. "the Z-Cut parameter such\n"
  8524. "as the cut width into material will be equal with the value in the Tool "
  8525. "Diameter column of this table.\n"
  8526. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  8527. "as Isolation."
  8528. msgstr ""
  8529. #: flatcamGUI/ObjectUI.py:998
  8530. msgid ""
  8531. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  8532. "that holds the geometry\n"
  8533. "data into the tools. For those geometries, deleting the tool will delete the "
  8534. "geometry data also,\n"
  8535. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  8536. "plot on canvas\n"
  8537. "for the corresponding tool."
  8538. msgstr ""
  8539. #: flatcamGUI/ObjectUI.py:1011
  8540. msgid "Tool Offset"
  8541. msgstr ""
  8542. #: flatcamGUI/ObjectUI.py:1014
  8543. msgid ""
  8544. "The value to offset the cut when \n"
  8545. "the Offset type selected is 'Offset'.\n"
  8546. "The value can be positive for 'outside'\n"
  8547. "cut and negative for 'inside' cut."
  8548. msgstr ""
  8549. #: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
  8550. #: flatcamTools/ToolPaint.py:178
  8551. msgid ""
  8552. "Add a new tool to the Tool Table\n"
  8553. "with the diameter specified above."
  8554. msgstr ""
  8555. #: flatcamGUI/ObjectUI.py:1064
  8556. msgid ""
  8557. "Copy a selection of tools in the Tool Table\n"
  8558. "by first selecting a row in the Tool Table."
  8559. msgstr ""
  8560. #: flatcamGUI/ObjectUI.py:1072
  8561. msgid ""
  8562. "Delete a selection of tools in the Tool Table\n"
  8563. "by first selecting a row in the Tool Table."
  8564. msgstr ""
  8565. #: flatcamGUI/ObjectUI.py:1088
  8566. msgid "Tool Data"
  8567. msgstr ""
  8568. #: flatcamGUI/ObjectUI.py:1091
  8569. msgid ""
  8570. "The data used for creating GCode.\n"
  8571. "Each tool store it's own set of such data."
  8572. msgstr ""
  8573. #: flatcamGUI/ObjectUI.py:1158
  8574. msgid "Depth of each pass (positive)."
  8575. msgstr ""
  8576. #: flatcamGUI/ObjectUI.py:1332
  8577. msgid ""
  8578. "Add at least one tool in the tool-table.\n"
  8579. "Click the header to select all, or Ctrl + LMB\n"
  8580. "for custom selection of tools."
  8581. msgstr ""
  8582. #: flatcamGUI/ObjectUI.py:1339
  8583. msgid "Generate"
  8584. msgstr ""
  8585. #: flatcamGUI/ObjectUI.py:1341
  8586. msgid "Generate the CNC Job object."
  8587. msgstr ""
  8588. #: flatcamGUI/ObjectUI.py:1348
  8589. msgid "Paint Area"
  8590. msgstr ""
  8591. #: flatcamGUI/ObjectUI.py:1362
  8592. msgid "Launch Paint Tool in Tools Tab."
  8593. msgstr ""
  8594. #: flatcamGUI/ObjectUI.py:1378
  8595. msgid "CNC Job Object"
  8596. msgstr ""
  8597. #: flatcamGUI/ObjectUI.py:1429
  8598. msgid "Travelled dist."
  8599. msgstr ""
  8600. #: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
  8601. msgid ""
  8602. "This is the total travelled distance on X-Y plane.\n"
  8603. "In current units."
  8604. msgstr ""
  8605. #: flatcamGUI/ObjectUI.py:1441
  8606. msgid "Estimated time"
  8607. msgstr ""
  8608. #: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
  8609. msgid ""
  8610. "This is the estimated time to do the routing/drilling,\n"
  8611. "without the time spent in ToolChange events."
  8612. msgstr ""
  8613. #: flatcamGUI/ObjectUI.py:1483
  8614. msgid "CNC Tools Table"
  8615. msgstr ""
  8616. #: flatcamGUI/ObjectUI.py:1486
  8617. msgid ""
  8618. "Tools in this CNCJob object used for cutting.\n"
  8619. "The tool diameter is used for plotting on canvas.\n"
  8620. "The 'Offset' entry will set an offset for the cut.\n"
  8621. "'Offset' can be inside, outside, on path (none) and custom.\n"
  8622. "'Type' entry is only informative and it allow to know the \n"
  8623. "intent of using the current tool. \n"
  8624. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  8625. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  8626. "ball(B), or V-Shaped(V)."
  8627. msgstr ""
  8628. #: flatcamGUI/ObjectUI.py:1518
  8629. msgid "P"
  8630. msgstr ""
  8631. #: flatcamGUI/ObjectUI.py:1524
  8632. msgid "Update Plot"
  8633. msgstr ""
  8634. #: flatcamGUI/ObjectUI.py:1526
  8635. msgid "Update the plot."
  8636. msgstr ""
  8637. #: flatcamGUI/ObjectUI.py:1541
  8638. msgid "Prepend to CNC Code"
  8639. msgstr ""
  8640. #: flatcamGUI/ObjectUI.py:1552
  8641. msgid "Append to CNC Code"
  8642. msgstr ""
  8643. #: flatcamGUI/ObjectUI.py:1620
  8644. msgid "z_cut = depth where to cut"
  8645. msgstr ""
  8646. #: flatcamGUI/ObjectUI.py:1621
  8647. msgid "z_move = height where to travel"
  8648. msgstr ""
  8649. #: flatcamGUI/ObjectUI.py:1640
  8650. msgid "View CNC Code"
  8651. msgstr ""
  8652. #: flatcamGUI/ObjectUI.py:1642
  8653. msgid ""
  8654. "Opens TAB to view/modify/print G-Code\n"
  8655. "file."
  8656. msgstr ""
  8657. #: flatcamGUI/ObjectUI.py:1647
  8658. msgid "Save CNC Code"
  8659. msgstr ""
  8660. #: flatcamGUI/ObjectUI.py:1649
  8661. msgid ""
  8662. "Opens dialog to save G-Code\n"
  8663. "file."
  8664. msgstr ""
  8665. #: flatcamParsers/ParseFont.py:305
  8666. msgid "Font not supported, try another one."
  8667. msgstr ""
  8668. #: flatcamTools/ToolCalculators.py:24
  8669. msgid "Calculators"
  8670. msgstr ""
  8671. #: flatcamTools/ToolCalculators.py:26
  8672. msgid "Units Calculator"
  8673. msgstr ""
  8674. #: flatcamTools/ToolCalculators.py:68
  8675. msgid "Here you enter the value to be converted from INCH to MM"
  8676. msgstr ""
  8677. #: flatcamTools/ToolCalculators.py:73
  8678. msgid "Here you enter the value to be converted from MM to INCH"
  8679. msgstr ""
  8680. #: flatcamTools/ToolCalculators.py:104
  8681. msgid ""
  8682. "This is the angle of the tip of the tool.\n"
  8683. "It is specified by manufacturer."
  8684. msgstr ""
  8685. #: flatcamTools/ToolCalculators.py:111
  8686. msgid ""
  8687. "This is the depth to cut into the material.\n"
  8688. "In the CNCJob is the CutZ parameter."
  8689. msgstr ""
  8690. #: flatcamTools/ToolCalculators.py:114
  8691. msgid "Tool Diameter"
  8692. msgstr ""
  8693. #: flatcamTools/ToolCalculators.py:118
  8694. msgid ""
  8695. "This is the tool diameter to be entered into\n"
  8696. "FlatCAM Gerber section.\n"
  8697. "In the CNCJob section it is called >Tool dia<."
  8698. msgstr ""
  8699. #: flatcamTools/ToolCalculators.py:129 flatcamTools/ToolCalculators.py:210
  8700. msgid "Calculate"
  8701. msgstr ""
  8702. #: flatcamTools/ToolCalculators.py:132
  8703. msgid ""
  8704. "Calculate either the Cut Z or the effective tool diameter,\n"
  8705. " depending on which is desired and which is known. "
  8706. msgstr ""
  8707. #: flatcamTools/ToolCalculators.py:186
  8708. msgid "Current Value"
  8709. msgstr ""
  8710. #: flatcamTools/ToolCalculators.py:190
  8711. msgid ""
  8712. "This is the current intensity value\n"
  8713. "to be set on the Power Supply. In Amps."
  8714. msgstr ""
  8715. #: flatcamTools/ToolCalculators.py:194
  8716. msgid "Time"
  8717. msgstr ""
  8718. #: flatcamTools/ToolCalculators.py:198
  8719. msgid ""
  8720. "This is the calculated time required for the procedure.\n"
  8721. "In minutes."
  8722. msgstr ""
  8723. #: flatcamTools/ToolCalculators.py:213
  8724. msgid ""
  8725. "Calculate the current intensity value and the procedure time,\n"
  8726. "depending on the parameters above"
  8727. msgstr ""
  8728. #: flatcamTools/ToolCalculators.py:262
  8729. msgid "Calc. Tool"
  8730. msgstr ""
  8731. #: flatcamTools/ToolCutOut.py:18
  8732. msgid "Cutout PCB"
  8733. msgstr ""
  8734. #: flatcamTools/ToolCutOut.py:55
  8735. msgid ""
  8736. "Specify the type of object to be cutout.\n"
  8737. "It can be of type: Gerber or Geometry.\n"
  8738. "What is selected here will dictate the kind\n"
  8739. "of objects that will populate the 'Object' combobox."
  8740. msgstr ""
  8741. #: flatcamTools/ToolCutOut.py:71
  8742. msgid "Object to be cutout. "
  8743. msgstr ""
  8744. #: flatcamTools/ToolCutOut.py:100
  8745. msgid "Margin:"
  8746. msgstr ""
  8747. #: flatcamTools/ToolCutOut.py:110
  8748. msgid "Gap size:"
  8749. msgstr ""
  8750. #: flatcamTools/ToolCutOut.py:137
  8751. msgid "A. Automatic Bridge Gaps"
  8752. msgstr ""
  8753. #: flatcamTools/ToolCutOut.py:139
  8754. msgid "This section handle creation of automatic bridge gaps."
  8755. msgstr ""
  8756. #: flatcamTools/ToolCutOut.py:150
  8757. msgid ""
  8758. "Number of gaps used for the Automatic cutout.\n"
  8759. "There can be maximum 8 bridges/gaps.\n"
  8760. "The choices are:\n"
  8761. "- None - no gaps\n"
  8762. "- lr - left + right\n"
  8763. "- tb - top + bottom\n"
  8764. "- 4 - left + right +top + bottom\n"
  8765. "- 2lr - 2*left + 2*right\n"
  8766. "- 2tb - 2*top + 2*bottom\n"
  8767. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  8768. msgstr ""
  8769. #: flatcamTools/ToolCutOut.py:174
  8770. msgid "FreeForm"
  8771. msgstr ""
  8772. #: flatcamTools/ToolCutOut.py:176
  8773. msgid ""
  8774. "The cutout shape can be of ny shape.\n"
  8775. "Useful when the PCB has a non-rectangular shape."
  8776. msgstr ""
  8777. #: flatcamTools/ToolCutOut.py:185
  8778. msgid ""
  8779. "Cutout the selected object.\n"
  8780. "The cutout shape can be of any shape.\n"
  8781. "Useful when the PCB has a non-rectangular shape."
  8782. msgstr ""
  8783. #: flatcamTools/ToolCutOut.py:194
  8784. msgid "Rectangular"
  8785. msgstr ""
  8786. #: flatcamTools/ToolCutOut.py:196
  8787. msgid ""
  8788. "The resulting cutout shape is\n"
  8789. "always a rectangle shape and it will be\n"
  8790. "the bounding box of the Object."
  8791. msgstr ""
  8792. #: flatcamTools/ToolCutOut.py:205
  8793. msgid ""
  8794. "Cutout the selected object.\n"
  8795. "The resulting cutout shape is\n"
  8796. "always a rectangle shape and it will be\n"
  8797. "the bounding box of the Object."
  8798. msgstr ""
  8799. #: flatcamTools/ToolCutOut.py:213
  8800. msgid "B. Manual Bridge Gaps"
  8801. msgstr ""
  8802. #: flatcamTools/ToolCutOut.py:215
  8803. msgid ""
  8804. "This section handle creation of manual bridge gaps.\n"
  8805. "This is done by mouse clicking on the perimeter of the\n"
  8806. "Geometry object that is used as a cutout object. "
  8807. msgstr ""
  8808. #: flatcamTools/ToolCutOut.py:231
  8809. msgid "Geo Obj"
  8810. msgstr ""
  8811. #: flatcamTools/ToolCutOut.py:233
  8812. msgid "Geometry object used to create the manual cutout."
  8813. msgstr ""
  8814. #: flatcamTools/ToolCutOut.py:244
  8815. msgid "Manual Geo"
  8816. msgstr ""
  8817. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  8818. msgid ""
  8819. "If the object to be cutout is a Gerber\n"
  8820. "first create a Geometry that surrounds it,\n"
  8821. "to be used as the cutout, if one doesn't exist yet.\n"
  8822. "Select the source Gerber file in the top object combobox."
  8823. msgstr ""
  8824. #: flatcamTools/ToolCutOut.py:266
  8825. msgid "Manual Add Bridge Gaps"
  8826. msgstr ""
  8827. #: flatcamTools/ToolCutOut.py:268
  8828. msgid ""
  8829. "Use the left mouse button (LMB) click\n"
  8830. "to create a bridge gap to separate the PCB from\n"
  8831. "the surrounding material."
  8832. msgstr ""
  8833. #: flatcamTools/ToolCutOut.py:275
  8834. msgid "Generate Gap"
  8835. msgstr ""
  8836. #: flatcamTools/ToolCutOut.py:277
  8837. msgid ""
  8838. "Use the left mouse button (LMB) click\n"
  8839. "to create a bridge gap to separate the PCB from\n"
  8840. "the surrounding material.\n"
  8841. "The LMB click has to be done on the perimeter of\n"
  8842. "the Geometry object used as a cutout geometry."
  8843. msgstr ""
  8844. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
  8845. #: flatcamTools/ToolNonCopperClear.py:1124
  8846. #: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
  8847. #: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
  8848. #: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
  8849. #: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
  8850. #: tclCommands/TclCommandCopperClear.py:131
  8851. #: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
  8852. msgid "Could not retrieve object"
  8853. msgstr ""
  8854. #: flatcamTools/ToolCutOut.py:376
  8855. msgid ""
  8856. "There is no object selected for Cutout.\n"
  8857. "Select one and try again."
  8858. msgstr ""
  8859. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
  8860. #: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
  8861. msgid "Tool Diameter is zero value. Change it to a positive real number."
  8862. msgstr ""
  8863. #: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
  8864. #: flatcamTools/ToolCutOut.py:870
  8865. msgid "Margin value is missing or wrong format. Add it and retry."
  8866. msgstr ""
  8867. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
  8868. #: flatcamTools/ToolCutOut.py:771
  8869. msgid "Gap size value is missing or wrong format. Add it and retry."
  8870. msgstr ""
  8871. #: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
  8872. msgid "Number of gaps value is missing. Add it and retry."
  8873. msgstr ""
  8874. #: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
  8875. msgid ""
  8876. "Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
  8877. "Fill in a correct value and retry. "
  8878. msgstr ""
  8879. #: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
  8880. msgid ""
  8881. "Cutout operation cannot be done on a multi-geo Geometry.\n"
  8882. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  8883. "Geometry,\n"
  8884. "and after that perform Cutout."
  8885. msgstr ""
  8886. #: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
  8887. msgid "Any form CutOut operation finished."
  8888. msgstr ""
  8889. #: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
  8890. #, python-format
  8891. msgid "Object not found: %s"
  8892. msgstr ""
  8893. #: flatcamTools/ToolCutOut.py:744
  8894. msgid ""
  8895. "Click on the selected geometry object perimeter to create a bridge gap ..."
  8896. msgstr ""
  8897. #: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
  8898. msgid "Could not retrieve Geometry object"
  8899. msgstr ""
  8900. #: flatcamTools/ToolCutOut.py:804
  8901. msgid "Geometry object for manual cutout not found"
  8902. msgstr ""
  8903. #: flatcamTools/ToolCutOut.py:814
  8904. msgid "Added manual Bridge Gap."
  8905. msgstr ""
  8906. #: flatcamTools/ToolCutOut.py:826
  8907. msgid "Could not retrieve Gerber object"
  8908. msgstr ""
  8909. #: flatcamTools/ToolCutOut.py:831
  8910. msgid ""
  8911. "There is no Gerber object selected for Cutout.\n"
  8912. "Select one and try again."
  8913. msgstr ""
  8914. #: flatcamTools/ToolCutOut.py:837
  8915. msgid ""
  8916. "The selected object has to be of Gerber type.\n"
  8917. "Select a Gerber file and try again."
  8918. msgstr ""
  8919. #: flatcamTools/ToolCutOut.py:892
  8920. msgid "Geometry not supported for cutout"
  8921. msgstr ""
  8922. #: flatcamTools/ToolCutOut.py:928
  8923. msgid "Making manual bridge gap..."
  8924. msgstr ""
  8925. #: flatcamTools/ToolDblSided.py:18
  8926. msgid "2-Sided PCB"
  8927. msgstr ""
  8928. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  8929. #: flatcamTools/ToolDblSided.py:100
  8930. msgid "Mirror"
  8931. msgstr ""
  8932. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  8933. #: flatcamTools/ToolDblSided.py:102
  8934. msgid ""
  8935. "Mirrors (flips) the specified object around \n"
  8936. "the specified axis. Does not create a new \n"
  8937. "object, but modifies it."
  8938. msgstr ""
  8939. #: flatcamTools/ToolDblSided.py:73
  8940. msgid "Excellon Object to be mirrored."
  8941. msgstr ""
  8942. #: flatcamTools/ToolDblSided.py:97
  8943. msgid "Geometry Obj to be mirrored."
  8944. msgstr ""
  8945. #: flatcamTools/ToolDblSided.py:133
  8946. msgid "Axis Ref:"
  8947. msgstr ""
  8948. #: flatcamTools/ToolDblSided.py:152
  8949. msgid "Point/Box Reference"
  8950. msgstr ""
  8951. #: flatcamTools/ToolDblSided.py:154
  8952. msgid ""
  8953. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  8954. "the mirroring axis passes.\n"
  8955. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  8956. "Geo).\n"
  8957. "Through the center of this object pass the mirroring axis selected above."
  8958. msgstr ""
  8959. #: flatcamTools/ToolDblSided.py:162
  8960. msgid ""
  8961. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  8962. "axis \n"
  8963. " selected in 'MIRROR AXIS' pass.\n"
  8964. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  8965. "and left mouse button click on canvas or you can enter the coords manually."
  8966. msgstr ""
  8967. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
  8968. #: flatcamTools/ToolPaint.py:318
  8969. msgid "Gerber Reference Box Object"
  8970. msgstr ""
  8971. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
  8972. #: flatcamTools/ToolPaint.py:319
  8973. msgid "Excellon Reference Box Object"
  8974. msgstr ""
  8975. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
  8976. #: flatcamTools/ToolPaint.py:320
  8977. msgid "Geometry Reference Box Object"
  8978. msgstr ""
  8979. #: flatcamTools/ToolDblSided.py:192
  8980. msgid "Alignment Drill Coordinates"
  8981. msgstr ""
  8982. #: flatcamTools/ToolDblSided.py:194
  8983. msgid ""
  8984. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  8985. "each set of (x, y) coordinates\n"
  8986. "entered here, a pair of drills will be created:\n"
  8987. "\n"
  8988. "- one drill at the coordinates from the field\n"
  8989. "- one drill in mirror position over the axis selected above in the 'Mirror "
  8990. "Axis'."
  8991. msgstr ""
  8992. #: flatcamTools/ToolDblSided.py:209
  8993. msgid ""
  8994. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  8995. "on one side of the mirror axis.\n"
  8996. "\n"
  8997. "The coordinates set can be obtained:\n"
  8998. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  8999. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  9000. "field.\n"
  9001. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  9002. "field and click Paste.\n"
  9003. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  9004. msgstr ""
  9005. #: flatcamTools/ToolDblSided.py:223
  9006. msgid "Alignment Drill Diameter"
  9007. msgstr ""
  9008. #: flatcamTools/ToolDblSided.py:246
  9009. msgid "Create Excellon Object"
  9010. msgstr ""
  9011. #: flatcamTools/ToolDblSided.py:248
  9012. msgid ""
  9013. "Creates an Excellon Object containing the\n"
  9014. "specified alignment holes and their mirror\n"
  9015. "images."
  9016. msgstr ""
  9017. #: flatcamTools/ToolDblSided.py:254
  9018. msgid "Reset"
  9019. msgstr ""
  9020. #: flatcamTools/ToolDblSided.py:256
  9021. msgid "Resets all the fields."
  9022. msgstr ""
  9023. #: flatcamTools/ToolDblSided.py:306
  9024. msgid "2-Sided Tool"
  9025. msgstr ""
  9026. #: flatcamTools/ToolDblSided.py:331
  9027. msgid ""
  9028. "'Point' reference is selected and 'Point' coordinates are missing. Add them "
  9029. "and retry."
  9030. msgstr ""
  9031. #: flatcamTools/ToolDblSided.py:350
  9032. msgid "There is no Box reference object loaded. Load one and retry."
  9033. msgstr ""
  9034. #: flatcamTools/ToolDblSided.py:373
  9035. msgid "No value or wrong format in Drill Dia entry. Add it and retry."
  9036. msgstr ""
  9037. #: flatcamTools/ToolDblSided.py:380
  9038. msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
  9039. msgstr ""
  9040. #: flatcamTools/ToolDblSided.py:403
  9041. msgid "Excellon object with alignment drills created..."
  9042. msgstr ""
  9043. #: flatcamTools/ToolDblSided.py:412
  9044. msgid "There is no Gerber object loaded ..."
  9045. msgstr ""
  9046. #: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
  9047. #: flatcamTools/ToolDblSided.py:503
  9048. msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
  9049. msgstr ""
  9050. #: flatcamTools/ToolDblSided.py:426
  9051. msgid ""
  9052. "'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
  9053. msgstr ""
  9054. #: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
  9055. #: flatcamTools/ToolDblSided.py:517
  9056. msgid "There is no Box object loaded ..."
  9057. msgstr ""
  9058. #: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
  9059. #: flatcamTools/ToolDblSided.py:527
  9060. msgid "was mirrored"
  9061. msgstr ""
  9062. #: flatcamTools/ToolDblSided.py:455
  9063. msgid "There is no Excellon object loaded ..."
  9064. msgstr ""
  9065. #: flatcamTools/ToolDblSided.py:470
  9066. msgid ""
  9067. "There are no Point coordinates in the Point field. Add coords and try "
  9068. "again ..."
  9069. msgstr ""
  9070. #: flatcamTools/ToolDblSided.py:499
  9071. msgid "There is no Geometry object loaded ..."
  9072. msgstr ""
  9073. #: flatcamTools/ToolFilm.py:25
  9074. msgid "Film PCB"
  9075. msgstr ""
  9076. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  9077. #: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
  9078. msgid "Object Type"
  9079. msgstr ""
  9080. #: flatcamTools/ToolFilm.py:58
  9081. msgid ""
  9082. "Specify the type of object for which to create the film.\n"
  9083. "The object can be of type: Gerber or Geometry.\n"
  9084. "The selection here decide the type of objects that will be\n"
  9085. "in the Film Object combobox."
  9086. msgstr ""
  9087. #: flatcamTools/ToolFilm.py:71
  9088. msgid "Film Object"
  9089. msgstr ""
  9090. #: flatcamTools/ToolFilm.py:73
  9091. msgid "Object for which to create the film."
  9092. msgstr ""
  9093. #: flatcamTools/ToolFilm.py:89
  9094. msgid "Box Type:"
  9095. msgstr ""
  9096. #: flatcamTools/ToolFilm.py:91
  9097. msgid ""
  9098. "Specify the type of object to be used as an container for\n"
  9099. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  9100. "the type of objects that will be\n"
  9101. "in the Box Object combobox."
  9102. msgstr ""
  9103. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  9104. msgid "Box Object"
  9105. msgstr ""
  9106. #: flatcamTools/ToolFilm.py:106
  9107. msgid ""
  9108. "The actual object that is used a container for the\n"
  9109. " selected object for which we create the film.\n"
  9110. "Usually it is the PCB outline but it can be also the\n"
  9111. "same object for which the film is created."
  9112. msgstr ""
  9113. #: flatcamTools/ToolFilm.py:114
  9114. msgid "Positive"
  9115. msgstr ""
  9116. #: flatcamTools/ToolFilm.py:115
  9117. msgid "Negative"
  9118. msgstr ""
  9119. #: flatcamTools/ToolFilm.py:116
  9120. msgid "Film Type:"
  9121. msgstr ""
  9122. #: flatcamTools/ToolFilm.py:157
  9123. msgid "Save Film"
  9124. msgstr ""
  9125. #: flatcamTools/ToolFilm.py:159
  9126. msgid ""
  9127. "Create a Film for the selected object, within\n"
  9128. "the specified box. Does not create a new \n"
  9129. " FlatCAM object, but directly save it in SVG format\n"
  9130. "which can be opened with Inkscape."
  9131. msgstr ""
  9132. #: flatcamTools/ToolFilm.py:231
  9133. msgid "No FlatCAM object selected. Load an object for Film and retry."
  9134. msgstr ""
  9135. #: flatcamTools/ToolFilm.py:238
  9136. msgid "No FlatCAM object selected. Load an object for Box and retry."
  9137. msgstr ""
  9138. #: flatcamTools/ToolFilm.py:260
  9139. msgid "Generating Film ..."
  9140. msgstr ""
  9141. #: flatcamTools/ToolFilm.py:265 flatcamTools/ToolFilm.py:269
  9142. msgid "Export SVG positive"
  9143. msgstr ""
  9144. #: flatcamTools/ToolFilm.py:274
  9145. msgid "Export SVG positive cancelled."
  9146. msgstr ""
  9147. #: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
  9148. msgid "Export SVG negative"
  9149. msgstr ""
  9150. #: flatcamTools/ToolFilm.py:290
  9151. msgid "Export SVG negative cancelled."
  9152. msgstr ""
  9153. #: flatcamTools/ToolImage.py:25
  9154. msgid "Image as Object"
  9155. msgstr ""
  9156. #: flatcamTools/ToolImage.py:31
  9157. msgid "Image to PCB"
  9158. msgstr ""
  9159. #: flatcamTools/ToolImage.py:55
  9160. msgid ""
  9161. "Specify the type of object to create from the image.\n"
  9162. "It can be of type: Gerber or Geometry."
  9163. msgstr ""
  9164. #: flatcamTools/ToolImage.py:63
  9165. msgid "DPI value"
  9166. msgstr ""
  9167. #: flatcamTools/ToolImage.py:65
  9168. msgid "Specify a DPI value for the image."
  9169. msgstr ""
  9170. #: flatcamTools/ToolImage.py:72
  9171. msgid "Level of detail"
  9172. msgstr ""
  9173. #: flatcamTools/ToolImage.py:81
  9174. msgid "Image type"
  9175. msgstr ""
  9176. #: flatcamTools/ToolImage.py:83
  9177. msgid ""
  9178. "Choose a method for the image interpretation.\n"
  9179. "B/W means a black & white image. Color means a colored image."
  9180. msgstr ""
  9181. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  9182. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  9183. msgid "Mask value"
  9184. msgstr ""
  9185. #: flatcamTools/ToolImage.py:92
  9186. msgid ""
  9187. "Mask for monochrome image.\n"
  9188. "Takes values between [0 ... 255].\n"
  9189. "Decides the level of details to include\n"
  9190. "in the resulting geometry.\n"
  9191. "0 means no detail and 255 means everything \n"
  9192. "(which is totally black)."
  9193. msgstr ""
  9194. #: flatcamTools/ToolImage.py:105
  9195. msgid ""
  9196. "Mask for RED color.\n"
  9197. "Takes values between [0 ... 255].\n"
  9198. "Decides the level of details to include\n"
  9199. "in the resulting geometry."
  9200. msgstr ""
  9201. #: flatcamTools/ToolImage.py:116
  9202. msgid ""
  9203. "Mask for GREEN color.\n"
  9204. "Takes values between [0 ... 255].\n"
  9205. "Decides the level of details to include\n"
  9206. "in the resulting geometry."
  9207. msgstr ""
  9208. #: flatcamTools/ToolImage.py:127
  9209. msgid ""
  9210. "Mask for BLUE color.\n"
  9211. "Takes values between [0 ... 255].\n"
  9212. "Decides the level of details to include\n"
  9213. "in the resulting geometry."
  9214. msgstr ""
  9215. #: flatcamTools/ToolImage.py:139
  9216. msgid "Import image"
  9217. msgstr ""
  9218. #: flatcamTools/ToolImage.py:141
  9219. msgid "Open a image of raster type and then import it in FlatCAM."
  9220. msgstr ""
  9221. #: flatcamTools/ToolImage.py:175
  9222. msgid "Image Tool"
  9223. msgstr ""
  9224. #: flatcamTools/ToolImage.py:205 flatcamTools/ToolImage.py:208
  9225. msgid "Import IMAGE"
  9226. msgstr ""
  9227. #: flatcamTools/ToolMeasurement.py:26
  9228. msgid "Measurement"
  9229. msgstr ""
  9230. #: flatcamTools/ToolMeasurement.py:44
  9231. msgid "Those are the units in which the distance is measured."
  9232. msgstr ""
  9233. #: flatcamTools/ToolMeasurement.py:45
  9234. msgid "METRIC (mm)"
  9235. msgstr ""
  9236. #: flatcamTools/ToolMeasurement.py:45
  9237. msgid "INCH (in)"
  9238. msgstr ""
  9239. #: flatcamTools/ToolMeasurement.py:48
  9240. msgid "Start"
  9241. msgstr ""
  9242. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  9243. msgid "Coords"
  9244. msgstr ""
  9245. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  9246. msgid "This is measuring Start point coordinates."
  9247. msgstr ""
  9248. #: flatcamTools/ToolMeasurement.py:51
  9249. msgid "Stop"
  9250. msgstr ""
  9251. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  9252. msgid "This is the measuring Stop point coordinates."
  9253. msgstr ""
  9254. #: flatcamTools/ToolMeasurement.py:54
  9255. msgid "Dx"
  9256. msgstr ""
  9257. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  9258. msgid "This is the distance measured over the X axis."
  9259. msgstr ""
  9260. #: flatcamTools/ToolMeasurement.py:57
  9261. msgid "Dy"
  9262. msgstr ""
  9263. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  9264. msgid "This is the distance measured over the Y axis."
  9265. msgstr ""
  9266. #: flatcamTools/ToolMeasurement.py:60
  9267. msgid "DISTANCE"
  9268. msgstr ""
  9269. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  9270. msgid "This is the point to point Euclidian distance."
  9271. msgstr ""
  9272. #: flatcamTools/ToolMeasurement.py:83
  9273. msgid "Measure"
  9274. msgstr ""
  9275. #: flatcamTools/ToolMeasurement.py:131
  9276. msgid "Meas. Tool"
  9277. msgstr ""
  9278. #: flatcamTools/ToolMeasurement.py:176
  9279. msgid "MEASURING: Click on the Start point ..."
  9280. msgstr ""
  9281. #: flatcamTools/ToolMeasurement.py:269
  9282. msgid "MEASURING: Click on the Destination point ..."
  9283. msgstr ""
  9284. #: flatcamTools/ToolMeasurement.py:277
  9285. #, python-brace-format
  9286. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  9287. msgstr ""
  9288. #: flatcamTools/ToolMove.py:84
  9289. msgid "MOVE: Click on the Start point ..."
  9290. msgstr ""
  9291. #: flatcamTools/ToolMove.py:91
  9292. msgid "MOVE action cancelled. No object(s) to move."
  9293. msgstr ""
  9294. #: flatcamTools/ToolMove.py:113
  9295. msgid "MOVE: Click on the Destination point ..."
  9296. msgstr ""
  9297. #: flatcamTools/ToolMove.py:134
  9298. msgid "Moving..."
  9299. msgstr ""
  9300. #: flatcamTools/ToolMove.py:137
  9301. msgid "No object(s) selected."
  9302. msgstr ""
  9303. #: flatcamTools/ToolMove.py:162
  9304. msgid "ToolMove.on_left_click()"
  9305. msgstr ""
  9306. #: flatcamTools/ToolMove.py:179
  9307. msgid "ToolMove.on_left_click() --> Error when mouse left click."
  9308. msgstr ""
  9309. #: flatcamTools/ToolMove.py:215
  9310. msgid "Move action cancelled."
  9311. msgstr ""
  9312. #: flatcamTools/ToolMove.py:227
  9313. msgid "Object(s) not selected"
  9314. msgstr ""
  9315. #: flatcamTools/ToolNonCopperClear.py:26
  9316. msgid "Non-Copper Clearing"
  9317. msgstr ""
  9318. #: flatcamTools/ToolNonCopperClear.py:71
  9319. msgid ""
  9320. "Specify the type of object to be cleared of excess copper.\n"
  9321. "It can be of type: Gerber or Geometry.\n"
  9322. "What is selected here will dictate the kind\n"
  9323. "of objects that will populate the 'Object' combobox."
  9324. msgstr ""
  9325. #: flatcamTools/ToolNonCopperClear.py:88
  9326. msgid "Object to be cleared of excess copper."
  9327. msgstr ""
  9328. #: flatcamTools/ToolNonCopperClear.py:98
  9329. msgid ""
  9330. "Tools pool from which the algorithm\n"
  9331. "will pick the ones used for copper clearing."
  9332. msgstr ""
  9333. #: flatcamTools/ToolNonCopperClear.py:107
  9334. msgid "Operation"
  9335. msgstr ""
  9336. #: flatcamTools/ToolNonCopperClear.py:113
  9337. msgid ""
  9338. "This is the Tool Number.\n"
  9339. "Non copper clearing will start with the tool with the biggest \n"
  9340. "diameter, continuing until there are no more tools.\n"
  9341. "Only tools that create NCC clearing geometry will still be present\n"
  9342. "in the resulting geometry. This is because with some tools\n"
  9343. "this function will not be able to create painting geometry."
  9344. msgstr ""
  9345. #: flatcamTools/ToolNonCopperClear.py:121
  9346. msgid ""
  9347. "Tool Diameter. It's value (in current FlatCAM units)\n"
  9348. "is the cut width into the material."
  9349. msgstr ""
  9350. #: flatcamTools/ToolNonCopperClear.py:125
  9351. msgid ""
  9352. "The Tool Type (TT) can be:\n"
  9353. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
  9354. "the cut width in material is exactly the tool diameter.\n"
  9355. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  9356. "- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
  9357. "form\n"
  9358. "and enable two additional UI form fields in the resulting geometry: V-Tip "
  9359. "Dia and\n"
  9360. "V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
  9361. "such\n"
  9362. "as the cut width into material will be equal with the value in the Tool "
  9363. "Diameter\n"
  9364. "column of this table.\n"
  9365. "Choosing the 'V-Shape' Tool Type automatically will select the Operation "
  9366. "Type\n"
  9367. "in the resulting geometry as Isolation."
  9368. msgstr ""
  9369. #: flatcamTools/ToolNonCopperClear.py:138
  9370. msgid ""
  9371. "The 'Operation' can be:\n"
  9372. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  9373. "If it's not successful then the non-copper clearing will fail, too.\n"
  9374. "- Clear -> the regular non-copper clearing."
  9375. msgstr ""
  9376. #: flatcamTools/ToolNonCopperClear.py:191
  9377. msgid "Tool Selection"
  9378. msgstr ""
  9379. #: flatcamTools/ToolNonCopperClear.py:214
  9380. msgid "Diameter for the new tool to add in the Tool Table"
  9381. msgstr ""
  9382. #: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
  9383. #: flatcamTools/ToolSolderPaste.py:123
  9384. msgid ""
  9385. "Delete a selection of tools in the Tool Table\n"
  9386. "by first selecting a row(s) in the Tool Table."
  9387. msgstr ""
  9388. #: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
  9389. msgid "Area Selection"
  9390. msgstr ""
  9391. #: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
  9392. msgid "Reference Object"
  9393. msgstr ""
  9394. #: flatcamTools/ToolNonCopperClear.py:399
  9395. msgid "Reference:"
  9396. msgstr ""
  9397. #: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
  9398. msgid "Ref. Type"
  9399. msgstr ""
  9400. #: flatcamTools/ToolNonCopperClear.py:416
  9401. msgid ""
  9402. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  9403. "It can be Gerber, Excellon or Geometry."
  9404. msgstr ""
  9405. #: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
  9406. msgid "Ref. Object"
  9407. msgstr ""
  9408. #: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
  9409. msgid "The FlatCAM object to be used as non copper clearing reference."
  9410. msgstr ""
  9411. #: flatcamTools/ToolNonCopperClear.py:440
  9412. msgid "Generate Geometry"
  9413. msgstr ""
  9414. #: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
  9415. #: flatcamTools/ToolSolderPaste.py:769
  9416. msgid "Please enter a tool diameter to add, in Float format."
  9417. msgstr ""
  9418. #: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
  9419. msgid "Adding tool cancelled. Tool already in Tool Table."
  9420. msgstr ""
  9421. #: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
  9422. msgid "New tool added to Tool Table."
  9423. msgstr ""
  9424. #: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
  9425. msgid "Tool from Tool Table was edited."
  9426. msgstr ""
  9427. #: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
  9428. #: flatcamTools/ToolSolderPaste.py:860
  9429. msgid "Edit cancelled. New diameter value is already in the Tool Table."
  9430. msgstr ""
  9431. #: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
  9432. msgid "Delete failed. Select a tool to delete."
  9433. msgstr ""
  9434. #: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
  9435. msgid "Tool(s) deleted from Tool Table."
  9436. msgstr ""
  9437. #: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
  9438. msgid "on_paint_button_click"
  9439. msgstr ""
  9440. #: flatcamTools/ToolNonCopperClear.py:1067
  9441. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  9442. msgstr ""
  9443. #: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
  9444. #, python-format
  9445. msgid "Could not retrieve object: %s"
  9446. msgstr ""
  9447. #: flatcamTools/ToolNonCopperClear.py:1103
  9448. msgid "Wrong Tool Dia value format entered, use a number."
  9449. msgstr ""
  9450. #: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
  9451. msgid "No selected tools in Tool Table."
  9452. msgstr ""
  9453. #: flatcamTools/ToolNonCopperClear.py:1137
  9454. msgid "Click the start point of the area."
  9455. msgstr ""
  9456. #: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
  9457. msgid "Click the end point of the paint area."
  9458. msgstr ""
  9459. #: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
  9460. msgid "Zone added. Click to start adding next zone or right click to finish."
  9461. msgstr ""
  9462. #: flatcamTools/ToolNonCopperClear.py:1318
  9463. msgid "Non-Copper clearing ..."
  9464. msgstr ""
  9465. #: flatcamTools/ToolNonCopperClear.py:1327
  9466. msgid "NCC Tool started. Reading parameters."
  9467. msgstr ""
  9468. #: flatcamTools/ToolNonCopperClear.py:1395
  9469. msgid "NCC Tool. Preparing non-copper polygons."
  9470. msgstr ""
  9471. #: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
  9472. msgid "No object available."
  9473. msgstr ""
  9474. #: flatcamTools/ToolNonCopperClear.py:1465
  9475. msgid "The reference object type is not supported."
  9476. msgstr ""
  9477. #: flatcamTools/ToolNonCopperClear.py:1487
  9478. msgid ""
  9479. "NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
  9480. msgstr ""
  9481. #: flatcamTools/ToolNonCopperClear.py:1519
  9482. msgid "NCC Tool. Calculate 'empty' area."
  9483. msgstr ""
  9484. #: flatcamTools/ToolNonCopperClear.py:1534
  9485. #: flatcamTools/ToolNonCopperClear.py:1628
  9486. #: flatcamTools/ToolNonCopperClear.py:1640
  9487. #: flatcamTools/ToolNonCopperClear.py:1867
  9488. #: flatcamTools/ToolNonCopperClear.py:1959
  9489. #: flatcamTools/ToolNonCopperClear.py:1971
  9490. msgid "Buffering finished"
  9491. msgstr ""
  9492. #: flatcamTools/ToolNonCopperClear.py:1647
  9493. #: flatcamTools/ToolNonCopperClear.py:1977
  9494. msgid "The selected object is not suitable for copper clearing."
  9495. msgstr ""
  9496. #: flatcamTools/ToolNonCopperClear.py:1652
  9497. #: flatcamTools/ToolNonCopperClear.py:1982
  9498. msgid "Could not get the extent of the area to be non copper cleared."
  9499. msgstr ""
  9500. #: flatcamTools/ToolNonCopperClear.py:1659
  9501. msgid "NCC Tool. Finished calculation of 'empty' area."
  9502. msgstr ""
  9503. #: flatcamTools/ToolNonCopperClear.py:1669
  9504. #: flatcamTools/ToolNonCopperClear.py:2007
  9505. msgid "NCC Tool clearing with tool diameter = "
  9506. msgstr ""
  9507. #: flatcamTools/ToolNonCopperClear.py:1672
  9508. #: flatcamTools/ToolNonCopperClear.py:2010
  9509. msgid "started."
  9510. msgstr ""
  9511. #: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
  9512. #: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
  9513. #: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
  9514. msgid ""
  9515. "There is no Painting Geometry in the file.\n"
  9516. "Usually it means that the tool diameter is too big for the painted "
  9517. "geometry.\n"
  9518. "Change the painting parameters and try again."
  9519. msgstr ""
  9520. #: flatcamTools/ToolNonCopperClear.py:1820
  9521. msgid "NCC Tool clear all done."
  9522. msgstr ""
  9523. #: flatcamTools/ToolNonCopperClear.py:1822
  9524. msgid "NCC Tool clear all done but the copper features isolation is broken for"
  9525. msgstr ""
  9526. #: flatcamTools/ToolNonCopperClear.py:1825
  9527. #: flatcamTools/ToolNonCopperClear.py:2173
  9528. msgid "tools"
  9529. msgstr ""
  9530. #: flatcamTools/ToolNonCopperClear.py:2169
  9531. msgid "NCC Tool Rest Machining clear all done."
  9532. msgstr ""
  9533. #: flatcamTools/ToolNonCopperClear.py:2172
  9534. msgid ""
  9535. "NCC Tool Rest Machining clear all done but the copper features isolation is "
  9536. "broken for"
  9537. msgstr ""
  9538. #: flatcamTools/ToolNonCopperClear.py:2596
  9539. msgid ""
  9540. "Try to use the Buffering Type = Full in Preferences -> Gerber General. "
  9541. "Reload the Gerber file after this change."
  9542. msgstr ""
  9543. #: flatcamTools/ToolPDF.py:38
  9544. msgid "PDF Import Tool"
  9545. msgstr ""
  9546. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  9547. msgid "Open PDF"
  9548. msgstr ""
  9549. #: flatcamTools/ToolPDF.py:159
  9550. msgid "Open PDF cancelled"
  9551. msgstr ""
  9552. #: flatcamTools/ToolPDF.py:190
  9553. msgid "Parsing PDF file ..."
  9554. msgstr ""
  9555. #: flatcamTools/ToolPDF.py:220
  9556. #, python-format
  9557. msgid "[success] Opened: %s"
  9558. msgstr ""
  9559. #: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
  9560. #, python-format
  9561. msgid "Rendering PDF layer #%d ..."
  9562. msgstr ""
  9563. #: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
  9564. msgid "Open PDF file failed."
  9565. msgstr ""
  9566. #: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
  9567. msgid "Rendered"
  9568. msgstr ""
  9569. #: flatcamTools/ToolPaint.py:70
  9570. msgid ""
  9571. "Specify the type of object to be painted.\n"
  9572. "It can be of type: Gerber or Geometry.\n"
  9573. "What is selected here will dictate the kind\n"
  9574. "of objects that will populate the 'Object' combobox."
  9575. msgstr ""
  9576. #: flatcamTools/ToolPaint.py:87
  9577. msgid "Object to be painted."
  9578. msgstr ""
  9579. #: flatcamTools/ToolPaint.py:97
  9580. msgid ""
  9581. "Tools pool from which the algorithm\n"
  9582. "will pick the ones used for painting."
  9583. msgstr ""
  9584. #: flatcamTools/ToolPaint.py:112
  9585. msgid ""
  9586. "This is the Tool Number.\n"
  9587. "Painting will start with the tool with the biggest diameter,\n"
  9588. "continuing until there are no more tools.\n"
  9589. "Only tools that create painting geometry will still be present\n"
  9590. "in the resulting geometry. This is because with some tools\n"
  9591. "this function will not be able to create painting geometry."
  9592. msgstr ""
  9593. #: flatcamTools/ToolPaint.py:124
  9594. msgid ""
  9595. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  9596. "informative only. Being circular, <BR>the cut width in material is exactly "
  9597. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  9598. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  9599. "parameter in the resulting geometry UI form and enable two additional UI "
  9600. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  9601. "those two values will adjust the Z-Cut parameter such as the cut width into "
  9602. "material will be equal with the value in the Tool Diameter column of this "
  9603. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  9604. "the Operation Type in the resulting geometry as Isolation."
  9605. msgstr ""
  9606. #: flatcamTools/ToolPaint.py:164
  9607. msgid "Diameter for the new tool."
  9608. msgstr ""
  9609. #: flatcamTools/ToolPaint.py:235
  9610. msgid ""
  9611. "Algorithm for painting:\n"
  9612. "- Standard: Fixed step inwards.\n"
  9613. "- Seed-based: Outwards from seed.\n"
  9614. "- Line-based: Parallel lines."
  9615. msgstr ""
  9616. #: flatcamTools/ToolPaint.py:269
  9617. msgid ""
  9618. "If checked, use 'rest machining'.\n"
  9619. "Basically it will clear copper outside PCB features,\n"
  9620. "using the biggest tool and continue with the next tools,\n"
  9621. "from bigger to smaller, to clear areas of copper that\n"
  9622. "could not be cleared by previous tool, until there is\n"
  9623. "no more copper to clear or there are no more tools.\n"
  9624. "\n"
  9625. "If not checked, use the standard algorithm."
  9626. msgstr ""
  9627. #: flatcamTools/ToolPaint.py:294
  9628. msgid "Single Polygon"
  9629. msgstr ""
  9630. #: flatcamTools/ToolPaint.py:296
  9631. msgid "All Polygons"
  9632. msgstr ""
  9633. #: flatcamTools/ToolPaint.py:314
  9634. msgid ""
  9635. "The type of FlatCAM object to be used as paint reference.\n"
  9636. "It can be Gerber, Excellon or Geometry."
  9637. msgstr ""
  9638. #: flatcamTools/ToolPaint.py:339
  9639. msgid "Create Paint Geometry"
  9640. msgstr ""
  9641. #: flatcamTools/ToolPaint.py:341
  9642. msgid ""
  9643. "- 'Area Selection' - left mouse click to start selection of the area to be "
  9644. "painted.\n"
  9645. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  9646. "areas.\n"
  9647. "- 'All Polygons' - the Paint will start after click.\n"
  9648. "- 'Reference Object' - will do non copper clearing within the area\n"
  9649. "specified by another object."
  9650. msgstr ""
  9651. #: flatcamTools/ToolPaint.py:912
  9652. msgid "Paint Tool. Reading parameters."
  9653. msgstr ""
  9654. #: flatcamTools/ToolPaint.py:927
  9655. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
  9656. msgstr ""
  9657. #: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
  9658. msgid "Click inside the desired polygon."
  9659. msgstr ""
  9660. #: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
  9661. #: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
  9662. msgid "Object not found"
  9663. msgstr ""
  9664. #: flatcamTools/ToolPaint.py:959
  9665. msgid "Can't do Paint on MultiGeo geometries"
  9666. msgstr ""
  9667. #: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
  9668. msgid "Painting polygon..."
  9669. msgstr ""
  9670. #: flatcamTools/ToolPaint.py:1025
  9671. msgid "Click the start point of the paint area."
  9672. msgstr ""
  9673. #: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
  9674. #: flatcamTools/ToolPaint.py:1202
  9675. msgid "Paint Tool. Normal painting polygon task started."
  9676. msgstr ""
  9677. #: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
  9678. #: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
  9679. #: flatcamTools/ToolPaint.py:2224
  9680. msgid "Buffering geometry..."
  9681. msgstr ""
  9682. #: flatcamTools/ToolPaint.py:1236
  9683. msgid "[WARNING] No polygon found."
  9684. msgstr ""
  9685. #: flatcamTools/ToolPaint.py:1240
  9686. #, python-format
  9687. msgid "Paint Tool. Painting polygon at location: %s"
  9688. msgstr ""
  9689. #: flatcamTools/ToolPaint.py:1323
  9690. msgid "Geometry could not be painted completely"
  9691. msgstr ""
  9692. #: flatcamTools/ToolPaint.py:1368
  9693. msgid ""
  9694. "Could not do Paint. Try a different combination of parameters. Or a "
  9695. "different strategy of paint"
  9696. msgstr ""
  9697. #: flatcamTools/ToolPaint.py:1417
  9698. msgid "Paint Single Done."
  9699. msgstr ""
  9700. #: flatcamTools/ToolPaint.py:1442
  9701. msgid "PaintTool.paint_poly()"
  9702. msgstr ""
  9703. #: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
  9704. #: flatcamTools/ToolPaint.py:2383
  9705. msgid "Polygon Paint started ..."
  9706. msgstr ""
  9707. #: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
  9708. msgid "Painting polygons..."
  9709. msgstr ""
  9710. #: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
  9711. #: flatcamTools/ToolPaint.py:1592
  9712. msgid "Paint Tool. Normal painting all task started."
  9713. msgstr ""
  9714. #: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
  9715. #: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
  9716. msgid "Painting with tool diameter = "
  9717. msgstr ""
  9718. #: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
  9719. #: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
  9720. msgid "started"
  9721. msgstr ""
  9722. #: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
  9723. msgid ""
  9724. "Could not do Paint All. Try a different combination of parameters. Or a "
  9725. "different Method of paint"
  9726. msgstr ""
  9727. #: flatcamTools/ToolPaint.py:1751
  9728. msgid "[success] Paint All Done."
  9729. msgstr ""
  9730. #: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
  9731. #: flatcamTools/ToolPaint.py:1767
  9732. msgid "Paint Tool. Rest machining painting all task started."
  9733. msgstr ""
  9734. #: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
  9735. msgid "Paint All with Rest-Machining done."
  9736. msgstr ""
  9737. #: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
  9738. #: flatcamTools/ToolPaint.py:2049
  9739. msgid "Paint Tool. Normal painting area task started."
  9740. msgstr ""
  9741. #: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
  9742. #, python-format
  9743. msgid ""
  9744. "Could not do Paint All. Try a different combination of parameters. Or a "
  9745. "different Method of paint\n"
  9746. "%s"
  9747. msgstr ""
  9748. #: flatcamTools/ToolPaint.py:2212
  9749. msgid "[success] Paint Area Done."
  9750. msgstr ""
  9751. #: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
  9752. #: flatcamTools/ToolPaint.py:2228
  9753. msgid "Paint Tool. Rest machining painting area task started."
  9754. msgstr ""
  9755. #: flatcamTools/ToolPanelize.py:25
  9756. msgid "Panelize PCB"
  9757. msgstr ""
  9758. #: flatcamTools/ToolPanelize.py:58
  9759. msgid ""
  9760. "Specify the type of object to be panelized\n"
  9761. "It can be of type: Gerber, Excellon or Geometry.\n"
  9762. "The selection here decide the type of objects that will be\n"
  9763. "in the Object combobox."
  9764. msgstr ""
  9765. #: flatcamTools/ToolPanelize.py:73
  9766. msgid ""
  9767. "Object to be panelized. This means that it will\n"
  9768. "be duplicated in an array of rows and columns."
  9769. msgstr ""
  9770. #: flatcamTools/ToolPanelize.py:86
  9771. msgid "Penelization Reference"
  9772. msgstr ""
  9773. #: flatcamTools/ToolPanelize.py:88
  9774. msgid ""
  9775. "Choose the reference for panelization:\n"
  9776. "- Object = the bounding box of a different object\n"
  9777. "- Bounding Box = the bounding box of the object to be panelized\n"
  9778. "\n"
  9779. "The reference is useful when doing panelization for more than one\n"
  9780. "object. The spacings (really offsets) will be applied in reference\n"
  9781. "to this reference object therefore maintaining the panelized\n"
  9782. "objects in sync."
  9783. msgstr ""
  9784. #: flatcamTools/ToolPanelize.py:111
  9785. msgid "Box Type"
  9786. msgstr ""
  9787. #: flatcamTools/ToolPanelize.py:113
  9788. msgid ""
  9789. "Specify the type of object to be used as an container for\n"
  9790. "panelization. It can be: Gerber or Geometry type.\n"
  9791. "The selection here decide the type of objects that will be\n"
  9792. "in the Box Object combobox."
  9793. msgstr ""
  9794. #: flatcamTools/ToolPanelize.py:128
  9795. msgid ""
  9796. "The actual object that is used a container for the\n"
  9797. " selected object that is to be panelized."
  9798. msgstr ""
  9799. #: flatcamTools/ToolPanelize.py:134
  9800. msgid "Panel Data"
  9801. msgstr ""
  9802. #: flatcamTools/ToolPanelize.py:136
  9803. msgid ""
  9804. "This informations will shape the resulting panel.\n"
  9805. "The number of rows and columns will set how many\n"
  9806. "duplicates of the original geometry will be generated.\n"
  9807. "\n"
  9808. "The spacings will set the distance between any two\n"
  9809. "elements of the panel array."
  9810. msgstr ""
  9811. #: flatcamTools/ToolPanelize.py:185
  9812. msgid ""
  9813. "Choose the type of object for the panel object:\n"
  9814. "- Geometry\n"
  9815. "- Gerber"
  9816. msgstr ""
  9817. #: flatcamTools/ToolPanelize.py:193
  9818. msgid "Constrain panel within"
  9819. msgstr ""
  9820. #: flatcamTools/ToolPanelize.py:227
  9821. msgid "Panelize Object"
  9822. msgstr ""
  9823. #: flatcamTools/ToolPanelize.py:229
  9824. msgid ""
  9825. "Panelize the specified object around the specified box.\n"
  9826. "In other words it creates multiple copies of the source object,\n"
  9827. "arranged in a 2D array of rows and columns."
  9828. msgstr ""
  9829. #: flatcamTools/ToolPanelize.py:277
  9830. msgid "Panel. Tool"
  9831. msgstr ""
  9832. #: flatcamTools/ToolPanelize.py:465
  9833. msgid "Columns or Rows are zero value. Change them to a positive integer."
  9834. msgstr ""
  9835. #: flatcamTools/ToolPanelize.py:490
  9836. msgid "Generating panel ... Please wait."
  9837. msgstr ""
  9838. #: flatcamTools/ToolPanelize.py:631
  9839. msgid "Panel done..."
  9840. msgstr ""
  9841. #: flatcamTools/ToolPanelize.py:634
  9842. #, python-brace-format
  9843. msgid ""
  9844. "{text} Too big for the constrain area. Final panel has {col} columns and "
  9845. "{row} rows"
  9846. msgstr ""
  9847. #: flatcamTools/ToolPanelize.py:638
  9848. msgid "Generating panel..."
  9849. msgstr ""
  9850. #: flatcamTools/ToolPanelize.py:643
  9851. msgid "Panel created successfully."
  9852. msgstr ""
  9853. #: flatcamTools/ToolPcbWizard.py:32
  9854. msgid "PcbWizard Import Tool"
  9855. msgstr ""
  9856. #: flatcamTools/ToolPcbWizard.py:40
  9857. msgid "Import 2-file Excellon"
  9858. msgstr ""
  9859. #: flatcamTools/ToolPcbWizard.py:51
  9860. msgid "Load files"
  9861. msgstr ""
  9862. #: flatcamTools/ToolPcbWizard.py:57
  9863. msgid "Excellon file"
  9864. msgstr ""
  9865. #: flatcamTools/ToolPcbWizard.py:59
  9866. msgid ""
  9867. "Load the Excellon file.\n"
  9868. "Usually it has a .DRL extension"
  9869. msgstr ""
  9870. #: flatcamTools/ToolPcbWizard.py:65
  9871. msgid "INF file"
  9872. msgstr ""
  9873. #: flatcamTools/ToolPcbWizard.py:67
  9874. msgid "Load the INF file."
  9875. msgstr ""
  9876. #: flatcamTools/ToolPcbWizard.py:79
  9877. msgid "Tool Number"
  9878. msgstr ""
  9879. #: flatcamTools/ToolPcbWizard.py:81
  9880. msgid "Tool diameter in file units."
  9881. msgstr ""
  9882. #: flatcamTools/ToolPcbWizard.py:87
  9883. msgid "Excellon format"
  9884. msgstr ""
  9885. #: flatcamTools/ToolPcbWizard.py:95
  9886. msgid "Int. digits"
  9887. msgstr ""
  9888. #: flatcamTools/ToolPcbWizard.py:97
  9889. msgid "The number of digits for the integral part of the coordinates."
  9890. msgstr ""
  9891. #: flatcamTools/ToolPcbWizard.py:104
  9892. msgid "Frac. digits"
  9893. msgstr ""
  9894. #: flatcamTools/ToolPcbWizard.py:106
  9895. msgid "The number of digits for the fractional part of the coordinates."
  9896. msgstr ""
  9897. #: flatcamTools/ToolPcbWizard.py:113
  9898. msgid "No Suppression"
  9899. msgstr ""
  9900. #: flatcamTools/ToolPcbWizard.py:114
  9901. msgid "Zeros supp."
  9902. msgstr ""
  9903. #: flatcamTools/ToolPcbWizard.py:116
  9904. msgid ""
  9905. "The type of zeros suppression used.\n"
  9906. "Can be of type:\n"
  9907. "- LZ = leading zeros are kept\n"
  9908. "- TZ = trailing zeros are kept\n"
  9909. "- No Suppression = no zero suppression"
  9910. msgstr ""
  9911. #: flatcamTools/ToolPcbWizard.py:129
  9912. msgid ""
  9913. "The type of units that the coordinates and tool\n"
  9914. "diameters are using. Can be INCH or MM."
  9915. msgstr ""
  9916. #: flatcamTools/ToolPcbWizard.py:136
  9917. msgid "Import Excellon"
  9918. msgstr ""
  9919. #: flatcamTools/ToolPcbWizard.py:138
  9920. msgid ""
  9921. "Import in FlatCAM an Excellon file\n"
  9922. "that store it's information's in 2 files.\n"
  9923. "One usually has .DRL extension while\n"
  9924. "the other has .INF extension."
  9925. msgstr ""
  9926. #: flatcamTools/ToolPcbWizard.py:197
  9927. msgid "PCBWizard Tool"
  9928. msgstr ""
  9929. #: flatcamTools/ToolPcbWizard.py:291 flatcamTools/ToolPcbWizard.py:295
  9930. msgid "Load PcbWizard Excellon file"
  9931. msgstr ""
  9932. #: flatcamTools/ToolPcbWizard.py:314 flatcamTools/ToolPcbWizard.py:318
  9933. msgid "Load PcbWizard INF file"
  9934. msgstr ""
  9935. #: flatcamTools/ToolPcbWizard.py:366
  9936. msgid ""
  9937. "The INF file does not contain the tool table.\n"
  9938. "Try to open the Excellon file from File -> Open -> Excellon\n"
  9939. "and edit the drill diameters manually."
  9940. msgstr ""
  9941. #: flatcamTools/ToolPcbWizard.py:387
  9942. msgid "PcbWizard .INF file loaded."
  9943. msgstr ""
  9944. #: flatcamTools/ToolPcbWizard.py:392
  9945. msgid "Main PcbWizard Excellon file loaded."
  9946. msgstr ""
  9947. #: flatcamTools/ToolPcbWizard.py:431
  9948. msgid "Cannot parse file"
  9949. msgstr ""
  9950. #: flatcamTools/ToolPcbWizard.py:456
  9951. msgid "Importing Excellon."
  9952. msgstr ""
  9953. #: flatcamTools/ToolPcbWizard.py:463
  9954. msgid "Import Excellon file failed."
  9955. msgstr ""
  9956. #: flatcamTools/ToolPcbWizard.py:471
  9957. msgid "Imported"
  9958. msgstr ""
  9959. #: flatcamTools/ToolPcbWizard.py:475
  9960. msgid "Excellon merging is in progress. Please wait..."
  9961. msgstr ""
  9962. #: flatcamTools/ToolPcbWizard.py:478
  9963. msgid "The imported Excellon file is None."
  9964. msgstr ""
  9965. #: flatcamTools/ToolProperties.py:112
  9966. msgid "Properties Tool was not displayed. No object selected."
  9967. msgstr ""
  9968. #: flatcamTools/ToolProperties.py:120
  9969. msgid "Object Properties are displayed."
  9970. msgstr ""
  9971. #: flatcamTools/ToolProperties.py:121
  9972. msgid "Properties Tool"
  9973. msgstr ""
  9974. #: flatcamTools/ToolProperties.py:130
  9975. msgid "TYPE"
  9976. msgstr ""
  9977. #: flatcamTools/ToolProperties.py:131
  9978. msgid "NAME"
  9979. msgstr ""
  9980. #: flatcamTools/ToolProperties.py:132
  9981. msgid "Dimensions"
  9982. msgstr ""
  9983. #: flatcamTools/ToolProperties.py:135
  9984. msgid "Options"
  9985. msgstr ""
  9986. #: flatcamTools/ToolProperties.py:146
  9987. msgid "Geo Type"
  9988. msgstr ""
  9989. #: flatcamTools/ToolProperties.py:147
  9990. msgid "Single-Geo"
  9991. msgstr ""
  9992. #: flatcamTools/ToolProperties.py:147
  9993. msgid "Multi-Geo"
  9994. msgstr ""
  9995. #: flatcamTools/ToolProperties.py:155
  9996. msgid "Calculating dimensions ... Please wait."
  9997. msgstr ""
  9998. #: flatcamTools/ToolProperties.py:246
  9999. msgid "Inch"
  10000. msgstr ""
  10001. #: flatcamTools/ToolProperties.py:247
  10002. msgid "Metric"
  10003. msgstr ""
  10004. #: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
  10005. #: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
  10006. msgid "Present"
  10007. msgstr ""
  10008. #: flatcamTools/ToolProperties.py:352
  10009. msgid "Width"
  10010. msgstr ""
  10011. #: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
  10012. msgid "Box Area"
  10013. msgstr ""
  10014. #: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
  10015. msgid "Convex_Hull Area"
  10016. msgstr ""
  10017. #: flatcamTools/ToolShell.py:69
  10018. msgid "...proccessing..."
  10019. msgstr ""
  10020. #: flatcamTools/ToolShell.py:71
  10021. #, python-format
  10022. msgid "...proccessing... [%s]"
  10023. msgstr ""
  10024. #: flatcamTools/ToolSolderPaste.py:37
  10025. msgid "Solder Paste Tool"
  10026. msgstr ""
  10027. #: flatcamTools/ToolSolderPaste.py:65
  10028. msgid "Gerber Solder paste object. "
  10029. msgstr ""
  10030. #: flatcamTools/ToolSolderPaste.py:72
  10031. msgid ""
  10032. "Tools pool from which the algorithm\n"
  10033. "will pick the ones used for dispensing solder paste."
  10034. msgstr ""
  10035. #: flatcamTools/ToolSolderPaste.py:87
  10036. msgid ""
  10037. "This is the Tool Number.\n"
  10038. "The solder dispensing will start with the tool with the biggest \n"
  10039. "diameter, continuing until there are no more Nozzle tools.\n"
  10040. "If there are no longer tools but there are still pads not covered\n"
  10041. " with solder paste, the app will issue a warning message box."
  10042. msgstr ""
  10043. #: flatcamTools/ToolSolderPaste.py:94
  10044. msgid ""
  10045. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  10046. "is the width of the solder paste dispensed."
  10047. msgstr ""
  10048. #: flatcamTools/ToolSolderPaste.py:101
  10049. msgid "New Nozzle Tool"
  10050. msgstr ""
  10051. #: flatcamTools/ToolSolderPaste.py:117
  10052. msgid ""
  10053. "Add a new nozzle tool to the Tool Table\n"
  10054. "with the diameter specified above."
  10055. msgstr ""
  10056. #: flatcamTools/ToolSolderPaste.py:129
  10057. msgid "Generate solder paste dispensing geometry."
  10058. msgstr ""
  10059. #: flatcamTools/ToolSolderPaste.py:142
  10060. msgid "STEP 1"
  10061. msgstr ""
  10062. #: flatcamTools/ToolSolderPaste.py:144
  10063. msgid ""
  10064. "First step is to select a number of nozzle tools for usage\n"
  10065. "and then optionally modify the GCode parameters bellow."
  10066. msgstr ""
  10067. #: flatcamTools/ToolSolderPaste.py:147
  10068. msgid ""
  10069. "Select tools.\n"
  10070. "Modify parameters."
  10071. msgstr ""
  10072. #: flatcamTools/ToolSolderPaste.py:235
  10073. msgid ""
  10074. "Feedrate (speed) while moving up vertically\n"
  10075. " to Dispense position (on Z plane)."
  10076. msgstr ""
  10077. #: flatcamTools/ToolSolderPaste.py:289
  10078. msgid "Generate GCode"
  10079. msgstr ""
  10080. #: flatcamTools/ToolSolderPaste.py:291
  10081. msgid ""
  10082. "Generate GCode for Solder Paste dispensing\n"
  10083. "on PCB pads."
  10084. msgstr ""
  10085. #: flatcamTools/ToolSolderPaste.py:306
  10086. msgid "STEP 2"
  10087. msgstr ""
  10088. #: flatcamTools/ToolSolderPaste.py:308
  10089. msgid ""
  10090. "Second step is to create a solder paste dispensing\n"
  10091. "geometry out of an Solder Paste Mask Gerber file."
  10092. msgstr ""
  10093. #: flatcamTools/ToolSolderPaste.py:324
  10094. msgid "Geo Result"
  10095. msgstr ""
  10096. #: flatcamTools/ToolSolderPaste.py:326
  10097. msgid ""
  10098. "Geometry Solder Paste object.\n"
  10099. "The name of the object has to end in:\n"
  10100. "'_solderpaste' as a protection."
  10101. msgstr ""
  10102. #: flatcamTools/ToolSolderPaste.py:335
  10103. msgid "STEP 3"
  10104. msgstr ""
  10105. #: flatcamTools/ToolSolderPaste.py:337
  10106. msgid ""
  10107. "Third step is to select a solder paste dispensing geometry,\n"
  10108. "and then generate a CNCJob object.\n"
  10109. "\n"
  10110. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  10111. "first you need to generate a geometry with those new params,\n"
  10112. "and only after that you can generate an updated CNCJob."
  10113. msgstr ""
  10114. #: flatcamTools/ToolSolderPaste.py:357
  10115. msgid "CNC Result"
  10116. msgstr ""
  10117. #: flatcamTools/ToolSolderPaste.py:359
  10118. msgid ""
  10119. "CNCJob Solder paste object.\n"
  10120. "In order to enable the GCode save section,\n"
  10121. "the name of the object has to end in:\n"
  10122. "'_solderpaste' as a protection."
  10123. msgstr ""
  10124. #: flatcamTools/ToolSolderPaste.py:369
  10125. msgid "View GCode"
  10126. msgstr ""
  10127. #: flatcamTools/ToolSolderPaste.py:371
  10128. msgid ""
  10129. "View the generated GCode for Solder Paste dispensing\n"
  10130. "on PCB pads."
  10131. msgstr ""
  10132. #: flatcamTools/ToolSolderPaste.py:375
  10133. msgid "Save GCode"
  10134. msgstr ""
  10135. #: flatcamTools/ToolSolderPaste.py:377
  10136. msgid ""
  10137. "Save the generated GCode for Solder Paste dispensing\n"
  10138. "on PCB pads, to a file."
  10139. msgstr ""
  10140. #: flatcamTools/ToolSolderPaste.py:381
  10141. msgid "STEP 4"
  10142. msgstr ""
  10143. #: flatcamTools/ToolSolderPaste.py:383
  10144. msgid ""
  10145. "Fourth step (and last) is to select a CNCJob made from \n"
  10146. "a solder paste dispensing geometry, and then view/save it's GCode."
  10147. msgstr ""
  10148. #: flatcamTools/ToolSolderPaste.py:412
  10149. msgid "Delete Object"
  10150. msgstr ""
  10151. #: flatcamTools/ToolSolderPaste.py:799
  10152. msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
  10153. msgstr ""
  10154. #: flatcamTools/ToolSolderPaste.py:805
  10155. msgid "New Nozzle tool added to Tool Table."
  10156. msgstr ""
  10157. #: flatcamTools/ToolSolderPaste.py:848
  10158. msgid "Nozzle tool from Tool Table was edited."
  10159. msgstr ""
  10160. #: flatcamTools/ToolSolderPaste.py:906
  10161. msgid "Delete failed. Select a Nozzle tool to delete."
  10162. msgstr ""
  10163. #: flatcamTools/ToolSolderPaste.py:912
  10164. msgid "Nozzle tool(s) deleted from Tool Table."
  10165. msgstr ""
  10166. #: flatcamTools/ToolSolderPaste.py:968
  10167. msgid "No SolderPaste mask Gerber object loaded."
  10168. msgstr ""
  10169. #: flatcamTools/ToolSolderPaste.py:986
  10170. msgid "Creating Solder Paste dispensing geometry."
  10171. msgstr ""
  10172. #: flatcamTools/ToolSolderPaste.py:999
  10173. msgid "No Nozzle tools in the tool table."
  10174. msgstr ""
  10175. #: flatcamTools/ToolSolderPaste.py:1126
  10176. msgid "Cancelled. Empty file, it has no geometry..."
  10177. msgstr ""
  10178. #: flatcamTools/ToolSolderPaste.py:1130
  10179. msgid "Solder Paste geometry generated successfully"
  10180. msgstr ""
  10181. #: flatcamTools/ToolSolderPaste.py:1137
  10182. msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
  10183. msgstr ""
  10184. #: flatcamTools/ToolSolderPaste.py:1151
  10185. msgid "Generating Solder Paste dispensing geometry..."
  10186. msgstr ""
  10187. #: flatcamTools/ToolSolderPaste.py:1172
  10188. msgid "There is no Geometry object available."
  10189. msgstr ""
  10190. #: flatcamTools/ToolSolderPaste.py:1177
  10191. msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
  10192. msgstr ""
  10193. #: flatcamTools/ToolSolderPaste.py:1285
  10194. msgid "ToolSolderPaste CNCjob created"
  10195. msgstr ""
  10196. #: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
  10197. #: flatcamTools/ToolSolderPaste.py:1378
  10198. msgid ""
  10199. "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
  10200. msgstr ""
  10201. #: flatcamTools/ToolSolderPaste.py:1348
  10202. msgid "No Gcode in the object"
  10203. msgstr ""
  10204. #: flatcamTools/ToolSolderPaste.py:1358
  10205. msgid "ToolSolderPaste.on_view_gcode()"
  10206. msgstr ""
  10207. #: flatcamTools/ToolSolderPaste.py:1388
  10208. msgid "Export GCode ..."
  10209. msgstr ""
  10210. #: flatcamTools/ToolSolderPaste.py:1436
  10211. msgid "Solder paste dispenser GCode file saved to"
  10212. msgstr ""
  10213. #: flatcamTools/ToolSub.py:57
  10214. msgid "Gerber Objects"
  10215. msgstr ""
  10216. #: flatcamTools/ToolSub.py:66 flatcamTools/ToolSub.py:112
  10217. msgid "Target"
  10218. msgstr ""
  10219. #: flatcamTools/ToolSub.py:68
  10220. msgid ""
  10221. "Gerber object from which to substract\n"
  10222. "the substractor Gerber object."
  10223. msgstr ""
  10224. #: flatcamTools/ToolSub.py:80 flatcamTools/ToolSub.py:126
  10225. msgid "Substractor"
  10226. msgstr ""
  10227. #: flatcamTools/ToolSub.py:82
  10228. msgid ""
  10229. "Gerber object that will be substracted\n"
  10230. "from the target Gerber object."
  10231. msgstr ""
  10232. #: flatcamTools/ToolSub.py:89
  10233. msgid "Substract Gerber"
  10234. msgstr ""
  10235. #: flatcamTools/ToolSub.py:91
  10236. msgid ""
  10237. "Will remove the area occupied by the substractor\n"
  10238. "Gerber from the Target Gerber.\n"
  10239. "Can be used to remove the overlapping silkscreen\n"
  10240. "over the soldermask."
  10241. msgstr ""
  10242. #: flatcamTools/ToolSub.py:103
  10243. msgid "Geometry Objects"
  10244. msgstr ""
  10245. #: flatcamTools/ToolSub.py:114
  10246. msgid ""
  10247. "Geometry object from which to substract\n"
  10248. "the substractor Geometry object."
  10249. msgstr ""
  10250. #: flatcamTools/ToolSub.py:128
  10251. msgid ""
  10252. "Geometry object that will be substracted\n"
  10253. "from the target Geometry object."
  10254. msgstr ""
  10255. #: flatcamTools/ToolSub.py:139
  10256. msgid "Substract Geometry"
  10257. msgstr ""
  10258. #: flatcamTools/ToolSub.py:141
  10259. msgid ""
  10260. "Will remove the area occupied by the substractor\n"
  10261. "Geometry from the Target Geometry."
  10262. msgstr ""
  10263. #: flatcamTools/ToolSub.py:228
  10264. msgid "Sub Tool"
  10265. msgstr ""
  10266. #: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
  10267. msgid "No Target object loaded."
  10268. msgstr ""
  10269. #: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
  10270. msgid "No Substractor object loaded."
  10271. msgstr ""
  10272. #: flatcamTools/ToolSub.py:314
  10273. #, python-format
  10274. msgid "Parsing aperture %s geometry ..."
  10275. msgstr ""
  10276. #: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
  10277. msgid "Generating new object ..."
  10278. msgstr ""
  10279. #: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
  10280. #: flatcamTools/ToolSub.py:704
  10281. msgid "Generating new object failed."
  10282. msgstr ""
  10283. #: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
  10284. msgid "Created"
  10285. msgstr ""
  10286. #: flatcamTools/ToolSub.py:476
  10287. msgid "Currently, the Substractor geometry cannot be of type Multigeo."
  10288. msgstr ""
  10289. #: flatcamTools/ToolSub.py:521
  10290. msgid "Parsing solid_geometry ..."
  10291. msgstr ""
  10292. #: flatcamTools/ToolSub.py:523
  10293. #, python-format
  10294. msgid "Parsing tool %s geometry ..."
  10295. msgstr ""
  10296. #: flatcamTools/ToolTransform.py:23
  10297. msgid "Object Transform"
  10298. msgstr ""
  10299. #: flatcamTools/ToolTransform.py:84
  10300. msgid ""
  10301. "Rotate the selected object(s).\n"
  10302. "The point of reference is the middle of\n"
  10303. "the bounding box for all selected objects."
  10304. msgstr ""
  10305. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  10306. msgid ""
  10307. "Skew/shear the selected object(s).\n"
  10308. "The point of reference is the middle of\n"
  10309. "the bounding box for all selected objects."
  10310. msgstr ""
  10311. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  10312. msgid ""
  10313. "Scale the selected object(s).\n"
  10314. "The point of reference depends on \n"
  10315. "the Scale reference checkbox state."
  10316. msgstr ""
  10317. #: flatcamTools/ToolTransform.py:251 flatcamTools/ToolTransform.py:268
  10318. msgid ""
  10319. "Offset the selected object(s).\n"
  10320. "The point of reference is the middle of\n"
  10321. "the bounding box for all selected objects.\n"
  10322. msgstr ""
  10323. #: flatcamTools/ToolTransform.py:298 flatcamTools/ToolTransform.py:306
  10324. msgid ""
  10325. "Flip the selected object(s) over the X axis.\n"
  10326. "Does not create a new object.\n"
  10327. " "
  10328. msgstr ""
  10329. #: flatcamTools/ToolTransform.py:643
  10330. msgid "No object selected. Please Select an object to rotate!"
  10331. msgstr ""
  10332. #: flatcamTools/ToolTransform.py:671
  10333. msgid "CNCJob objects can't be rotated."
  10334. msgstr ""
  10335. #: flatcamTools/ToolTransform.py:679
  10336. msgid "Rotate done"
  10337. msgstr ""
  10338. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  10339. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  10340. #: flatcamTools/ToolTransform.py:903
  10341. msgid "Due of"
  10342. msgstr ""
  10343. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  10344. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  10345. #: flatcamTools/ToolTransform.py:903
  10346. msgid "action was not executed."
  10347. msgstr ""
  10348. #: flatcamTools/ToolTransform.py:696
  10349. msgid "No object selected. Please Select an object to flip"
  10350. msgstr ""
  10351. #: flatcamTools/ToolTransform.py:731
  10352. msgid "CNCJob objects can't be mirrored/flipped."
  10353. msgstr ""
  10354. #: flatcamTools/ToolTransform.py:769
  10355. msgid "No object selected. Please Select an object to shear/skew!"
  10356. msgstr ""
  10357. #: flatcamTools/ToolTransform.py:791
  10358. msgid "CNCJob objects can't be skewed."
  10359. msgstr ""
  10360. #: flatcamTools/ToolTransform.py:803
  10361. #, python-format
  10362. msgid "[success] Skew on the %s axis done ..."
  10363. msgstr ""
  10364. #: flatcamTools/ToolTransform.py:820
  10365. msgid "No object selected. Please Select an object to scale!"
  10366. msgstr ""
  10367. #: flatcamTools/ToolTransform.py:853
  10368. msgid "CNCJob objects can't be scaled."
  10369. msgstr ""
  10370. #: flatcamTools/ToolTransform.py:863
  10371. msgid "Scale on the"
  10372. msgstr ""
  10373. #: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
  10374. msgid "axis done"
  10375. msgstr ""
  10376. #: flatcamTools/ToolTransform.py:875
  10377. msgid "No object selected. Please Select an object to offset!"
  10378. msgstr ""
  10379. #: flatcamTools/ToolTransform.py:884
  10380. msgid "CNCJob objects can't be offset."
  10381. msgstr ""
  10382. #: flatcamTools/ToolTransform.py:898
  10383. msgid "Offset on the"
  10384. msgstr ""
  10385. #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
  10386. msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
  10387. msgstr ""
  10388. #: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
  10389. msgid "Expected -box <value>."
  10390. msgstr ""
  10391. #: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
  10392. #: tclCommands/TclCommandScale.py:63
  10393. msgid "Could not retrieve box object"
  10394. msgstr ""
  10395. #: tclCommands/TclCommandCopperClear.py:263
  10396. msgid ""
  10397. "None of the following args: 'ref', 'all' were found or none was set to 1.\n"
  10398. "Copper clearing failed."
  10399. msgstr ""
  10400. #: tclCommands/TclCommandPaint.py:210
  10401. msgid "Expected -x <value> and -y <value>."
  10402. msgstr ""
  10403. #: tclCommands/TclCommandPaint.py:257
  10404. msgid ""
  10405. "There was none of the following args: 'ref', 'single', 'all'.\n"
  10406. "Paint failed."
  10407. msgstr ""
  10408. #: tclCommands/TclCommandScale.py:83
  10409. msgid "Expected -origin <origin> or -origin <min_bounds> or -origin <center>."
  10410. msgstr ""
  10411. #: tclCommands/TclCommandScale.py:92
  10412. msgid "Expected -x <value> -y <value>."
  10413. msgstr ""
  10414. #: tclCommands/TclCommandSubtractRectangle.py:49
  10415. msgid "No Geometry name in args. Provide a name and try again."
  10416. msgstr ""
  10417. #~ msgid ""
  10418. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10419. #~ "Example:\n"
  10420. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10421. #~ "\n"
  10422. #~ "Adjust the value starting with lower values\n"
  10423. #~ "and increasing it if areas that should be painted are still \n"
  10424. #~ "not painted.\n"
  10425. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10426. #~ "Higher values = slow processing and slow execution on CNC\n"
  10427. #~ "due of too many paths."
  10428. #~ msgstr ""
  10429. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  10430. #~ "Example:\n"
  10431. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  10432. #~ "\n"
  10433. #~ "Adjust the value starting with lower values\n"
  10434. #~ "and increasing it if areas that should be painted are still \n"
  10435. #~ "not painted.\n"
  10436. #~ "Lower values = faster processing, faster execution on PCB.\n"
  10437. #~ "Higher values = slow processing and slow execution on CNC\n"
  10438. #~ "due of too many paths."
  10439. #~| msgid "z_toolchange = Z coord for Toolchange"
  10440. #~ msgid "z_cut = Z coord for Toolchange"
  10441. #~ msgstr "z_cut = Z coord for Toolchange"
  10442. #~| msgid "z_toolchange = Z coord for Toolchange"
  10443. #~ msgid "z_move = Z coord for Toolchange"
  10444. #~ msgstr "z_move = Z coord for Toolchange"
  10445. #~ msgid "%s/Project_%s"
  10446. #~ msgstr "%s/Project_%s"
  10447. #~ msgid "tool_tab"
  10448. #~ msgstr "tool_tab"