strings.po 323 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509
  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 "Borracha concluída."
  2833. #: flatcamEditors/FlatCAMGeoEditor.py:2952
  2834. msgid "Create Paint geometry ..."
  2835. msgstr ""
  2836. #: flatcamEditors/FlatCAMGeoEditor.py:2966
  2837. #: flatcamEditors/FlatCAMGrbEditor.py:2312
  2838. msgid "Shape transformations ..."
  2839. msgstr ""
  2840. #: flatcamEditors/FlatCAMGeoEditor.py:3545
  2841. msgid "Editing MultiGeo Geometry, tool"
  2842. msgstr ""
  2843. #: flatcamEditors/FlatCAMGeoEditor.py:3547
  2844. msgid "with diameter"
  2845. msgstr ""
  2846. #: flatcamEditors/FlatCAMGeoEditor.py:3924
  2847. msgid "Copy cancelled. No shape selected."
  2848. msgstr ""
  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 ""
  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 ""
  2859. #: flatcamEditors/FlatCAMGeoEditor.py:4296
  2860. #: flatcamEditors/FlatCAMGeoEditor.py:4405
  2861. msgid ""
  2862. "Negative buffer value is not accepted. Use Buffer interior to generate an "
  2863. "'inside' shape"
  2864. msgstr ""
  2865. #: flatcamEditors/FlatCAMGeoEditor.py:4306
  2866. #: flatcamEditors/FlatCAMGeoEditor.py:4362
  2867. #: flatcamEditors/FlatCAMGeoEditor.py:4414
  2868. msgid "Nothing selected for buffering."
  2869. msgstr ""
  2870. #: flatcamEditors/FlatCAMGeoEditor.py:4311
  2871. #: flatcamEditors/FlatCAMGeoEditor.py:4367
  2872. #: flatcamEditors/FlatCAMGeoEditor.py:4419
  2873. msgid "Invalid distance for buffering."
  2874. msgstr ""
  2875. #: flatcamEditors/FlatCAMGeoEditor.py:4335
  2876. #: flatcamEditors/FlatCAMGeoEditor.py:4439
  2877. msgid "Failed, the result is empty. Choose a different buffer value."
  2878. msgstr ""
  2879. #: flatcamEditors/FlatCAMGeoEditor.py:4346
  2880. msgid "Full buffer geometry created."
  2881. msgstr ""
  2882. #: flatcamEditors/FlatCAMGeoEditor.py:4353
  2883. msgid "Negative buffer value is not accepted."
  2884. msgstr ""
  2885. #: flatcamEditors/FlatCAMGeoEditor.py:4387
  2886. msgid "Failed, the result is empty. Choose a smaller buffer value."
  2887. msgstr ""
  2888. #: flatcamEditors/FlatCAMGeoEditor.py:4398
  2889. msgid "Interior buffer geometry created."
  2890. msgstr ""
  2891. #: flatcamEditors/FlatCAMGeoEditor.py:4450
  2892. msgid "Exterior buffer geometry created."
  2893. msgstr ""
  2894. #: flatcamEditors/FlatCAMGeoEditor.py:4515
  2895. msgid "Nothing selected for painting."
  2896. msgstr ""
  2897. #: flatcamEditors/FlatCAMGeoEditor.py:4522
  2898. msgid "Invalid value for"
  2899. msgstr ""
  2900. #: flatcamEditors/FlatCAMGeoEditor.py:4528
  2901. #, python-format
  2902. msgid "Could not do Paint. Overlap value has to be less than 1.00 (100%%)."
  2903. msgstr ""
  2904. #: flatcamEditors/FlatCAMGeoEditor.py:4587
  2905. #, python-format
  2906. msgid ""
  2907. "Could not do Paint. Try a different combination of parameters. Or a "
  2908. "different method of Paint\n"
  2909. "%s"
  2910. msgstr ""
  2911. #: flatcamEditors/FlatCAMGeoEditor.py:4598
  2912. msgid "[success] Paint done."
  2913. msgstr ""
  2914. #: flatcamEditors/FlatCAMGrbEditor.py:208
  2915. msgid "To add an Pad first select a aperture in Aperture Table"
  2916. msgstr ""
  2917. #: flatcamEditors/FlatCAMGrbEditor.py:215
  2918. #: flatcamEditors/FlatCAMGrbEditor.py:409
  2919. msgid "Aperture size is zero. It needs to be greater than zero."
  2920. msgstr ""
  2921. #: flatcamEditors/FlatCAMGrbEditor.py:366
  2922. #: flatcamEditors/FlatCAMGrbEditor.py:674
  2923. msgid ""
  2924. "Incompatible aperture type. Select an aperture with type 'C', 'R' or 'O'."
  2925. msgstr ""
  2926. #: flatcamEditors/FlatCAMGrbEditor.py:379
  2927. msgid "Done. Adding Pad completed."
  2928. msgstr ""
  2929. #: flatcamEditors/FlatCAMGrbEditor.py:401
  2930. msgid "To add an Pad Array first select a aperture in Aperture Table"
  2931. msgstr ""
  2932. #: flatcamEditors/FlatCAMGrbEditor.py:479
  2933. msgid "Click on the Pad Circular Array Start position"
  2934. msgstr ""
  2935. #: flatcamEditors/FlatCAMGrbEditor.py:700
  2936. msgid "Too many Pads for the selected spacing angle."
  2937. msgstr ""
  2938. #: flatcamEditors/FlatCAMGrbEditor.py:723
  2939. msgid "Done. Pad Array added."
  2940. msgstr ""
  2941. #: flatcamEditors/FlatCAMGrbEditor.py:744
  2942. msgid "Select shape(s) and then click ..."
  2943. msgstr ""
  2944. #: flatcamEditors/FlatCAMGrbEditor.py:756
  2945. msgid "Failed. Nothing selected."
  2946. msgstr ""
  2947. #: flatcamEditors/FlatCAMGrbEditor.py:772
  2948. msgid ""
  2949. "Failed. Poligonize works only on geometries belonging to the same aperture."
  2950. msgstr ""
  2951. #: flatcamEditors/FlatCAMGrbEditor.py:826
  2952. msgid "Done. Poligonize completed."
  2953. msgstr ""
  2954. #: flatcamEditors/FlatCAMGrbEditor.py:879
  2955. #: flatcamEditors/FlatCAMGrbEditor.py:1102
  2956. #: flatcamEditors/FlatCAMGrbEditor.py:1126
  2957. msgid "Corner Mode 1: 45 degrees ..."
  2958. msgstr ""
  2959. #: flatcamEditors/FlatCAMGrbEditor.py:881
  2960. msgid "Click on 1st point ..."
  2961. msgstr ""
  2962. #: flatcamEditors/FlatCAMGrbEditor.py:891
  2963. #: flatcamEditors/FlatCAMGrbEditor.py:1202
  2964. msgid "Click on next Point or click Right mouse button to complete ..."
  2965. msgstr ""
  2966. #: flatcamEditors/FlatCAMGrbEditor.py:1090
  2967. #: flatcamEditors/FlatCAMGrbEditor.py:1123
  2968. msgid "Corner Mode 2: Reverse 45 degrees ..."
  2969. msgstr ""
  2970. #: flatcamEditors/FlatCAMGrbEditor.py:1093
  2971. #: flatcamEditors/FlatCAMGrbEditor.py:1120
  2972. msgid "Corner Mode 3: 90 degrees ..."
  2973. msgstr ""
  2974. #: flatcamEditors/FlatCAMGrbEditor.py:1096
  2975. #: flatcamEditors/FlatCAMGrbEditor.py:1117
  2976. msgid "Corner Mode 4: Reverse 90 degrees ..."
  2977. msgstr ""
  2978. #: flatcamEditors/FlatCAMGrbEditor.py:1099
  2979. #: flatcamEditors/FlatCAMGrbEditor.py:1114
  2980. msgid "Corner Mode 5: Free angle ..."
  2981. msgstr ""
  2982. #: flatcamEditors/FlatCAMGrbEditor.py:1153
  2983. #: flatcamEditors/FlatCAMGrbEditor.py:1319
  2984. #: flatcamEditors/FlatCAMGrbEditor.py:1358
  2985. msgid "Track Mode 1: 45 degrees ..."
  2986. msgstr ""
  2987. #: flatcamEditors/FlatCAMGrbEditor.py:1299
  2988. #: flatcamEditors/FlatCAMGrbEditor.py:1353
  2989. msgid "Track Mode 2: Reverse 45 degrees ..."
  2990. msgstr ""
  2991. #: flatcamEditors/FlatCAMGrbEditor.py:1304
  2992. #: flatcamEditors/FlatCAMGrbEditor.py:1348
  2993. msgid "Track Mode 3: 90 degrees ..."
  2994. msgstr ""
  2995. #: flatcamEditors/FlatCAMGrbEditor.py:1309
  2996. #: flatcamEditors/FlatCAMGrbEditor.py:1343
  2997. msgid "Track Mode 4: Reverse 90 degrees ..."
  2998. msgstr ""
  2999. #: flatcamEditors/FlatCAMGrbEditor.py:1314
  3000. #: flatcamEditors/FlatCAMGrbEditor.py:1338
  3001. msgid "Track Mode 5: Free angle ..."
  3002. msgstr ""
  3003. #: flatcamEditors/FlatCAMGrbEditor.py:1720
  3004. msgid "Scale the selected Gerber apertures ..."
  3005. msgstr ""
  3006. #: flatcamEditors/FlatCAMGrbEditor.py:1762
  3007. msgid "Buffer the selected apertures ..."
  3008. msgstr ""
  3009. #: flatcamEditors/FlatCAMGrbEditor.py:1804
  3010. msgid "Mark polygon areas in the edited Gerber ..."
  3011. msgstr ""
  3012. #: flatcamEditors/FlatCAMGrbEditor.py:1852
  3013. msgid "Nothing selected to move"
  3014. msgstr ""
  3015. #: flatcamEditors/FlatCAMGrbEditor.py:1976
  3016. msgid "Done. Apertures Move completed."
  3017. msgstr ""
  3018. #: flatcamEditors/FlatCAMGrbEditor.py:2053
  3019. msgid "Done. Apertures copied."
  3020. msgstr ""
  3021. #: flatcamEditors/FlatCAMGrbEditor.py:2354 flatcamGUI/FlatCAMGUI.py:1686
  3022. #: flatcamGUI/FlatCAMGUI.py:4629
  3023. msgid "Gerber Editor"
  3024. msgstr ""
  3025. #: flatcamEditors/FlatCAMGrbEditor.py:2374 flatcamGUI/ObjectUI.py:192
  3026. #: flatcamTools/ToolProperties.py:137
  3027. msgid "Apertures"
  3028. msgstr ""
  3029. #: flatcamEditors/FlatCAMGrbEditor.py:2376 flatcamGUI/ObjectUI.py:194
  3030. msgid "Apertures Table for the Gerber Object."
  3031. msgstr ""
  3032. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3033. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3034. msgid "Code"
  3035. msgstr ""
  3036. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3037. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3038. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  3039. msgid "Type"
  3040. msgstr ""
  3041. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3042. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3043. msgid "Size"
  3044. msgstr ""
  3045. #: flatcamEditors/FlatCAMGrbEditor.py:2387
  3046. #: flatcamEditors/FlatCAMGrbEditor.py:3819 flatcamGUI/ObjectUI.py:227
  3047. msgid "Dim"
  3048. msgstr ""
  3049. #: flatcamEditors/FlatCAMGrbEditor.py:2391 flatcamGUI/ObjectUI.py:231
  3050. msgid "Index"
  3051. msgstr ""
  3052. #: flatcamEditors/FlatCAMGrbEditor.py:2393
  3053. #: flatcamEditors/FlatCAMGrbEditor.py:2420 flatcamGUI/ObjectUI.py:233
  3054. msgid "Aperture Code"
  3055. msgstr ""
  3056. #: flatcamEditors/FlatCAMGrbEditor.py:2395 flatcamGUI/ObjectUI.py:235
  3057. msgid "Type of aperture: circular, rectangle, macros etc"
  3058. msgstr ""
  3059. #: flatcamEditors/FlatCAMGrbEditor.py:2397 flatcamGUI/ObjectUI.py:237
  3060. msgid "Aperture Size:"
  3061. msgstr ""
  3062. #: flatcamEditors/FlatCAMGrbEditor.py:2399 flatcamGUI/ObjectUI.py:239
  3063. msgid ""
  3064. "Aperture Dimensions:\n"
  3065. " - (width, height) for R, O type.\n"
  3066. " - (dia, nVertices) for P type"
  3067. msgstr ""
  3068. #: flatcamEditors/FlatCAMGrbEditor.py:2422 flatcamGUI/FlatCAMGUI.py:4658
  3069. msgid "Code for the new aperture"
  3070. msgstr ""
  3071. #: flatcamEditors/FlatCAMGrbEditor.py:2430
  3072. msgid "Aperture Size"
  3073. msgstr ""
  3074. #: flatcamEditors/FlatCAMGrbEditor.py:2432
  3075. msgid ""
  3076. "Size for the new aperture.\n"
  3077. "If aperture type is 'R' or 'O' then\n"
  3078. "this value is automatically\n"
  3079. "calculated as:\n"
  3080. "sqrt(width**2 + height**2)"
  3081. msgstr ""
  3082. #: flatcamEditors/FlatCAMGrbEditor.py:2444
  3083. msgid "Aperture Type"
  3084. msgstr ""
  3085. #: flatcamEditors/FlatCAMGrbEditor.py:2446
  3086. msgid ""
  3087. "Select the type of new aperture. Can be:\n"
  3088. "C = circular\n"
  3089. "R = rectangular\n"
  3090. "O = oblong"
  3091. msgstr ""
  3092. #: flatcamEditors/FlatCAMGrbEditor.py:2457
  3093. msgid "Aperture Dim"
  3094. msgstr ""
  3095. #: flatcamEditors/FlatCAMGrbEditor.py:2459
  3096. msgid ""
  3097. "Dimensions for the new aperture.\n"
  3098. "Active only for rectangular apertures (type R).\n"
  3099. "The format is (width, height)"
  3100. msgstr ""
  3101. #: flatcamEditors/FlatCAMGrbEditor.py:2468
  3102. msgid "Add/Delete Aperture"
  3103. msgstr ""
  3104. #: flatcamEditors/FlatCAMGrbEditor.py:2470
  3105. msgid "Add/Delete an aperture in the aperture table"
  3106. msgstr ""
  3107. #: flatcamEditors/FlatCAMGrbEditor.py:2479
  3108. msgid "Add a new aperture to the aperture list."
  3109. msgstr ""
  3110. #: flatcamEditors/FlatCAMGrbEditor.py:2484
  3111. msgid "Delete a aperture in the aperture list"
  3112. msgstr ""
  3113. #: flatcamEditors/FlatCAMGrbEditor.py:2501
  3114. msgid "Buffer Aperture"
  3115. msgstr ""
  3116. #: flatcamEditors/FlatCAMGrbEditor.py:2503
  3117. msgid "Buffer a aperture in the aperture list"
  3118. msgstr ""
  3119. #: flatcamEditors/FlatCAMGrbEditor.py:2513 flatcamGUI/FlatCAMGUI.py:4781
  3120. msgid "Buffer distance"
  3121. msgstr ""
  3122. #: flatcamEditors/FlatCAMGrbEditor.py:2514
  3123. msgid "Buffer corner"
  3124. msgstr ""
  3125. #: flatcamEditors/FlatCAMGrbEditor.py:2516
  3126. msgid ""
  3127. "There are 3 types of corners:\n"
  3128. " - 'Round': the corner is rounded.\n"
  3129. " - 'Square:' the corner is met in a sharp angle.\n"
  3130. " - 'Beveled:' the corner is a line that directly connects the features "
  3131. "meeting in the corner"
  3132. msgstr ""
  3133. #: flatcamEditors/FlatCAMGrbEditor.py:2531 flatcamGUI/FlatCAMGUI.py:738
  3134. #: flatcamGUI/FlatCAMGUI.py:1672 flatcamGUI/FlatCAMGUI.py:1699
  3135. #: flatcamGUI/FlatCAMGUI.py:2085
  3136. msgid "Buffer"
  3137. msgstr ""
  3138. #: flatcamEditors/FlatCAMGrbEditor.py:2546
  3139. msgid "Scale Aperture"
  3140. msgstr ""
  3141. #: flatcamEditors/FlatCAMGrbEditor.py:2548
  3142. msgid "Scale a aperture in the aperture list"
  3143. msgstr ""
  3144. #: flatcamEditors/FlatCAMGrbEditor.py:2556 flatcamGUI/FlatCAMGUI.py:4794
  3145. msgid "Scale factor"
  3146. msgstr ""
  3147. #: flatcamEditors/FlatCAMGrbEditor.py:2558
  3148. msgid ""
  3149. "The factor by which to scale the selected aperture.\n"
  3150. "Values can be between 0.0000 and 999.9999"
  3151. msgstr ""
  3152. #: flatcamEditors/FlatCAMGrbEditor.py:2584
  3153. msgid "Mark polygon areas"
  3154. msgstr ""
  3155. #: flatcamEditors/FlatCAMGrbEditor.py:2586
  3156. msgid "Mark the polygon areas."
  3157. msgstr ""
  3158. #: flatcamEditors/FlatCAMGrbEditor.py:2594
  3159. msgid "Area UPPER threshold"
  3160. msgstr ""
  3161. #: flatcamEditors/FlatCAMGrbEditor.py:2596
  3162. msgid ""
  3163. "The threshold value, all areas less than this are marked.\n"
  3164. "Can have a value between 0.0000 and 9999.9999"
  3165. msgstr ""
  3166. #: flatcamEditors/FlatCAMGrbEditor.py:2602
  3167. msgid "Area LOWER threshold"
  3168. msgstr ""
  3169. #: flatcamEditors/FlatCAMGrbEditor.py:2604
  3170. msgid ""
  3171. "The threshold value, all areas more than this are marked.\n"
  3172. "Can have a value between 0.0000 and 9999.9999"
  3173. msgstr ""
  3174. #: flatcamEditors/FlatCAMGrbEditor.py:2617
  3175. msgid "Go"
  3176. msgstr ""
  3177. #: flatcamEditors/FlatCAMGrbEditor.py:2636 flatcamGUI/FlatCAMGUI.py:728
  3178. #: flatcamGUI/FlatCAMGUI.py:2075
  3179. msgid "Add Pad Array"
  3180. msgstr ""
  3181. #: flatcamEditors/FlatCAMGrbEditor.py:2638
  3182. msgid "Add an array of pads (linear or circular array)"
  3183. msgstr ""
  3184. #: flatcamEditors/FlatCAMGrbEditor.py:2644
  3185. msgid ""
  3186. "Select the type of pads array to create.\n"
  3187. "It can be Linear X(Y) or Circular"
  3188. msgstr ""
  3189. #: flatcamEditors/FlatCAMGrbEditor.py:2655 flatcamGUI/FlatCAMGUI.py:4693
  3190. msgid "Nr of pads"
  3191. msgstr ""
  3192. #: flatcamEditors/FlatCAMGrbEditor.py:2657 flatcamGUI/FlatCAMGUI.py:4695
  3193. msgid "Specify how many pads to be in the array."
  3194. msgstr ""
  3195. #: flatcamEditors/FlatCAMGrbEditor.py:3153
  3196. #: flatcamEditors/FlatCAMGrbEditor.py:3157
  3197. msgid "Aperture code value is missing or wrong format. Add it and retry."
  3198. msgstr ""
  3199. #: flatcamEditors/FlatCAMGrbEditor.py:3193
  3200. msgid ""
  3201. "Aperture dimensions value is missing or wrong format. Add it in format "
  3202. "(width, height) and retry."
  3203. msgstr ""
  3204. #: flatcamEditors/FlatCAMGrbEditor.py:3206
  3205. msgid "Aperture size value is missing or wrong format. Add it and retry."
  3206. msgstr ""
  3207. #: flatcamEditors/FlatCAMGrbEditor.py:3217
  3208. msgid "Aperture already in the aperture table."
  3209. msgstr ""
  3210. #: flatcamEditors/FlatCAMGrbEditor.py:3225
  3211. msgid "Added new aperture with code"
  3212. msgstr ""
  3213. #: flatcamEditors/FlatCAMGrbEditor.py:3254
  3214. msgid " Select an aperture in Aperture Table"
  3215. msgstr ""
  3216. #: flatcamEditors/FlatCAMGrbEditor.py:3261
  3217. msgid "Select an aperture in Aperture Table -->"
  3218. msgstr ""
  3219. #: flatcamEditors/FlatCAMGrbEditor.py:3285
  3220. msgid "Deleted aperture with code"
  3221. msgstr ""
  3222. #: flatcamEditors/FlatCAMGrbEditor.py:3748
  3223. #, python-format
  3224. msgid "Adding aperture: %s geo ..."
  3225. msgstr ""
  3226. #: flatcamEditors/FlatCAMGrbEditor.py:3936
  3227. msgid ""
  3228. "There are no Aperture definitions in the file. Aborting Gerber creation."
  3229. msgstr ""
  3230. #: flatcamEditors/FlatCAMGrbEditor.py:3944
  3231. msgid "Creating Gerber."
  3232. msgstr ""
  3233. #: flatcamEditors/FlatCAMGrbEditor.py:3953
  3234. msgid "Done. Gerber editing finished."
  3235. msgstr ""
  3236. #: flatcamEditors/FlatCAMGrbEditor.py:3970
  3237. msgid "Cancelled. No aperture is selected"
  3238. msgstr ""
  3239. #: flatcamEditors/FlatCAMGrbEditor.py:4505
  3240. msgid "Failed. No aperture geometry is selected."
  3241. msgstr ""
  3242. #: flatcamEditors/FlatCAMGrbEditor.py:4514
  3243. msgid "Done. Apertures geometry deleted."
  3244. msgstr ""
  3245. #: flatcamEditors/FlatCAMGrbEditor.py:4657
  3246. msgid "No aperture to buffer. Select at least one aperture and try again."
  3247. msgstr ""
  3248. #: flatcamEditors/FlatCAMGrbEditor.py:4670
  3249. msgid "Failed."
  3250. msgstr ""
  3251. #: flatcamEditors/FlatCAMGrbEditor.py:4689
  3252. msgid "Scale factor value is missing or wrong format. Add it and retry."
  3253. msgstr ""
  3254. #: flatcamEditors/FlatCAMGrbEditor.py:4721
  3255. msgid "No aperture to scale. Select at least one aperture and try again."
  3256. msgstr ""
  3257. #: flatcamEditors/FlatCAMGrbEditor.py:4737
  3258. msgid "Done. Scale Tool completed."
  3259. msgstr ""
  3260. #: flatcamEditors/FlatCAMGrbEditor.py:4775
  3261. msgid "Polygon areas marked."
  3262. msgstr ""
  3263. #: flatcamEditors/FlatCAMGrbEditor.py:4778
  3264. msgid "There are no polygons to mark area."
  3265. msgstr ""
  3266. #: flatcamEditors/FlatCAMGrbEditor.py:5549
  3267. msgid "Rotation action was not executed."
  3268. msgstr ""
  3269. #: flatcamEditors/FlatCAMGrbEditor.py:5688
  3270. msgid "Skew action was not executed."
  3271. msgstr ""
  3272. #: flatcamEditors/FlatCAMGrbEditor.py:5758
  3273. msgid "Scale action was not executed."
  3274. msgstr ""
  3275. #: flatcamEditors/FlatCAMGrbEditor.py:5807
  3276. msgid "Offset action was not executed."
  3277. msgstr ""
  3278. #: flatcamEditors/FlatCAMGrbEditor.py:5863
  3279. msgid "Geometry shape offset Y cancelled"
  3280. msgstr ""
  3281. #: flatcamEditors/FlatCAMGrbEditor.py:5880
  3282. msgid "Geometry shape skew X cancelled"
  3283. msgstr ""
  3284. #: flatcamEditors/FlatCAMGrbEditor.py:5897
  3285. msgid "Geometry shape skew Y cancelled"
  3286. msgstr ""
  3287. #: flatcamGUI/FlatCAMGUI.py:52
  3288. msgid "&File"
  3289. msgstr ""
  3290. #: flatcamGUI/FlatCAMGUI.py:57
  3291. msgid "&New Project ...\tCTRL+N"
  3292. msgstr ""
  3293. #: flatcamGUI/FlatCAMGUI.py:59
  3294. msgid "Will create a new, blank project"
  3295. msgstr ""
  3296. #: flatcamGUI/FlatCAMGUI.py:64
  3297. msgid "&New"
  3298. msgstr ""
  3299. #: flatcamGUI/FlatCAMGUI.py:67
  3300. msgid "Geometry\tN"
  3301. msgstr ""
  3302. #: flatcamGUI/FlatCAMGUI.py:69
  3303. msgid "Will create a new, empty Geometry Object."
  3304. msgstr ""
  3305. #: flatcamGUI/FlatCAMGUI.py:71
  3306. msgid "Gerber\tB"
  3307. msgstr ""
  3308. #: flatcamGUI/FlatCAMGUI.py:73
  3309. msgid "Will create a new, empty Gerber Object."
  3310. msgstr ""
  3311. #: flatcamGUI/FlatCAMGUI.py:75
  3312. msgid "Excellon\tL"
  3313. msgstr ""
  3314. #: flatcamGUI/FlatCAMGUI.py:77
  3315. msgid "Will create a new, empty Excellon Object."
  3316. msgstr ""
  3317. #: flatcamGUI/FlatCAMGUI.py:80 flatcamTools/ToolPcbWizard.py:62
  3318. #: flatcamTools/ToolPcbWizard.py:69
  3319. msgid "Open"
  3320. msgstr ""
  3321. #: flatcamGUI/FlatCAMGUI.py:84
  3322. msgid "Open &Project ..."
  3323. msgstr ""
  3324. #: flatcamGUI/FlatCAMGUI.py:90
  3325. msgid "Open &Gerber ...\tCTRL+G"
  3326. msgstr ""
  3327. #: flatcamGUI/FlatCAMGUI.py:95
  3328. msgid "Open &Excellon ...\tCTRL+E"
  3329. msgstr ""
  3330. #: flatcamGUI/FlatCAMGUI.py:99
  3331. msgid "Open G-&Code ..."
  3332. msgstr ""
  3333. #: flatcamGUI/FlatCAMGUI.py:105
  3334. msgid "Open Config ..."
  3335. msgstr ""
  3336. #: flatcamGUI/FlatCAMGUI.py:109
  3337. msgid "Recent projects"
  3338. msgstr ""
  3339. #: flatcamGUI/FlatCAMGUI.py:110
  3340. msgid "Recent files"
  3341. msgstr ""
  3342. #: flatcamGUI/FlatCAMGUI.py:116
  3343. msgid "Scripting"
  3344. msgstr ""
  3345. #: flatcamGUI/FlatCAMGUI.py:119
  3346. msgid "New Script ..."
  3347. msgstr ""
  3348. #: flatcamGUI/FlatCAMGUI.py:120
  3349. msgid "Open Script ..."
  3350. msgstr ""
  3351. #: flatcamGUI/FlatCAMGUI.py:122
  3352. msgid "Run Script ...\tSHIFT+S"
  3353. msgstr ""
  3354. #: flatcamGUI/FlatCAMGUI.py:124
  3355. msgid ""
  3356. "Will run the opened Tcl Script thus\n"
  3357. "enabling the automation of certain\n"
  3358. "functions of FlatCAM."
  3359. msgstr ""
  3360. #: flatcamGUI/FlatCAMGUI.py:137
  3361. msgid "Import"
  3362. msgstr ""
  3363. #: flatcamGUI/FlatCAMGUI.py:139
  3364. msgid "&SVG as Geometry Object ..."
  3365. msgstr ""
  3366. #: flatcamGUI/FlatCAMGUI.py:142
  3367. msgid "&SVG as Gerber Object ..."
  3368. msgstr ""
  3369. #: flatcamGUI/FlatCAMGUI.py:147
  3370. msgid "&DXF as Geometry Object ..."
  3371. msgstr ""
  3372. #: flatcamGUI/FlatCAMGUI.py:150
  3373. msgid "&DXF as Gerber Object ..."
  3374. msgstr ""
  3375. #: flatcamGUI/FlatCAMGUI.py:155
  3376. msgid "Export"
  3377. msgstr ""
  3378. #: flatcamGUI/FlatCAMGUI.py:158
  3379. msgid "Export &SVG ..."
  3380. msgstr ""
  3381. #: flatcamGUI/FlatCAMGUI.py:161
  3382. msgid "Export DXF ..."
  3383. msgstr ""
  3384. #: flatcamGUI/FlatCAMGUI.py:166
  3385. msgid "Export &PNG ..."
  3386. msgstr ""
  3387. #: flatcamGUI/FlatCAMGUI.py:168
  3388. msgid ""
  3389. "Will export an image in PNG format,\n"
  3390. "the saved image will contain the visual \n"
  3391. "information currently in FlatCAM Plot Area."
  3392. msgstr ""
  3393. #: flatcamGUI/FlatCAMGUI.py:177
  3394. msgid "Export &Excellon ..."
  3395. msgstr ""
  3396. #: flatcamGUI/FlatCAMGUI.py:179
  3397. msgid ""
  3398. "Will export an Excellon Object as Excellon file,\n"
  3399. "the coordinates format, the file units and zeros\n"
  3400. "are set in Preferences -> Excellon Export."
  3401. msgstr ""
  3402. #: flatcamGUI/FlatCAMGUI.py:186
  3403. msgid "Export &Gerber ..."
  3404. msgstr ""
  3405. #: flatcamGUI/FlatCAMGUI.py:188
  3406. msgid ""
  3407. "Will export an Gerber Object as Gerber file,\n"
  3408. "the coordinates format, the file units and zeros\n"
  3409. "are set in Preferences -> Gerber Export."
  3410. msgstr ""
  3411. #: flatcamGUI/FlatCAMGUI.py:204
  3412. msgid "Backup"
  3413. msgstr ""
  3414. #: flatcamGUI/FlatCAMGUI.py:208
  3415. msgid "Import Preferences from file ..."
  3416. msgstr ""
  3417. #: flatcamGUI/FlatCAMGUI.py:213
  3418. msgid "Export Preferences to file ..."
  3419. msgstr ""
  3420. #: flatcamGUI/FlatCAMGUI.py:219 flatcamGUI/FlatCAMGUI.py:546
  3421. msgid "Save"
  3422. msgstr ""
  3423. #: flatcamGUI/FlatCAMGUI.py:222
  3424. msgid "&Save Project ..."
  3425. msgstr ""
  3426. #: flatcamGUI/FlatCAMGUI.py:227
  3427. msgid "Save Project &As ...\tCTRL+S"
  3428. msgstr ""
  3429. #: flatcamGUI/FlatCAMGUI.py:232
  3430. msgid "Save Project C&opy ..."
  3431. msgstr ""
  3432. #: flatcamGUI/FlatCAMGUI.py:239
  3433. msgid "E&xit"
  3434. msgstr ""
  3435. #: flatcamGUI/FlatCAMGUI.py:245
  3436. msgid "&Edit"
  3437. msgstr ""
  3438. #: flatcamGUI/FlatCAMGUI.py:248
  3439. msgid "Edit Object\tE"
  3440. msgstr ""
  3441. #: flatcamGUI/FlatCAMGUI.py:249
  3442. msgid "Close Editor\tCTRL+S"
  3443. msgstr ""
  3444. #: flatcamGUI/FlatCAMGUI.py:257
  3445. msgid "Conversion"
  3446. msgstr ""
  3447. #: flatcamGUI/FlatCAMGUI.py:259
  3448. msgid "&Join Geo/Gerber/Exc -> Geo"
  3449. msgstr ""
  3450. #: flatcamGUI/FlatCAMGUI.py:261
  3451. msgid ""
  3452. "Merge a selection of objects, which can be of type:\n"
  3453. "- Gerber\n"
  3454. "- Excellon\n"
  3455. "- Geometry\n"
  3456. "into a new combo Geometry object."
  3457. msgstr ""
  3458. #: flatcamGUI/FlatCAMGUI.py:268
  3459. msgid "Join Excellon(s) -> Excellon"
  3460. msgstr ""
  3461. #: flatcamGUI/FlatCAMGUI.py:270
  3462. msgid "Merge a selection of Excellon objects into a new combo Excellon object."
  3463. msgstr ""
  3464. #: flatcamGUI/FlatCAMGUI.py:273
  3465. msgid "Join Gerber(s) -> Gerber"
  3466. msgstr ""
  3467. #: flatcamGUI/FlatCAMGUI.py:275
  3468. msgid "Merge a selection of Gerber objects into a new combo Gerber object."
  3469. msgstr ""
  3470. #: flatcamGUI/FlatCAMGUI.py:280
  3471. msgid "Convert Single to MultiGeo"
  3472. msgstr ""
  3473. #: flatcamGUI/FlatCAMGUI.py:282
  3474. msgid ""
  3475. "Will convert a Geometry object from single_geometry type\n"
  3476. "to a multi_geometry type."
  3477. msgstr ""
  3478. #: flatcamGUI/FlatCAMGUI.py:286
  3479. msgid "Convert Multi to SingleGeo"
  3480. msgstr ""
  3481. #: flatcamGUI/FlatCAMGUI.py:288
  3482. msgid ""
  3483. "Will convert a Geometry object from multi_geometry type\n"
  3484. "to a single_geometry type."
  3485. msgstr ""
  3486. #: flatcamGUI/FlatCAMGUI.py:294
  3487. msgid "Convert Any to Geo"
  3488. msgstr ""
  3489. #: flatcamGUI/FlatCAMGUI.py:296
  3490. msgid "Convert Any to Gerber"
  3491. msgstr ""
  3492. #: flatcamGUI/FlatCAMGUI.py:301
  3493. msgid "&Copy\tCTRL+C"
  3494. msgstr ""
  3495. #: flatcamGUI/FlatCAMGUI.py:305
  3496. msgid "&Delete\tDEL"
  3497. msgstr ""
  3498. #: flatcamGUI/FlatCAMGUI.py:309
  3499. msgid "Se&t Origin\tO"
  3500. msgstr ""
  3501. #: flatcamGUI/FlatCAMGUI.py:310
  3502. msgid "Jump to Location\tJ"
  3503. msgstr ""
  3504. #: flatcamGUI/FlatCAMGUI.py:315
  3505. msgid "Toggle Units\tQ"
  3506. msgstr ""
  3507. #: flatcamGUI/FlatCAMGUI.py:316
  3508. msgid "&Select All\tCTRL+A"
  3509. msgstr ""
  3510. #: flatcamGUI/FlatCAMGUI.py:320
  3511. msgid "&Preferences\tSHIFT+P"
  3512. msgstr ""
  3513. #: flatcamGUI/FlatCAMGUI.py:323
  3514. msgid "&Options"
  3515. msgstr ""
  3516. #: flatcamGUI/FlatCAMGUI.py:338
  3517. msgid "&Rotate Selection\tSHIFT+(R)"
  3518. msgstr ""
  3519. #: flatcamGUI/FlatCAMGUI.py:343
  3520. msgid "&Skew on X axis\tSHIFT+X"
  3521. msgstr ""
  3522. #: flatcamGUI/FlatCAMGUI.py:345
  3523. msgid "S&kew on Y axis\tSHIFT+Y"
  3524. msgstr ""
  3525. #: flatcamGUI/FlatCAMGUI.py:350
  3526. msgid "Flip on &X axis\tX"
  3527. msgstr ""
  3528. #: flatcamGUI/FlatCAMGUI.py:352
  3529. msgid "Flip on &Y axis\tY"
  3530. msgstr ""
  3531. #: flatcamGUI/FlatCAMGUI.py:357
  3532. msgid "View source\tALT+S"
  3533. msgstr ""
  3534. #: flatcamGUI/FlatCAMGUI.py:362
  3535. msgid "&View"
  3536. msgstr ""
  3537. #: flatcamGUI/FlatCAMGUI.py:363
  3538. msgid "Enable all plots\tALT+1"
  3539. msgstr ""
  3540. #: flatcamGUI/FlatCAMGUI.py:365
  3541. msgid "Disable all plots\tALT+2"
  3542. msgstr ""
  3543. #: flatcamGUI/FlatCAMGUI.py:367
  3544. msgid "Disable non-selected\tALT+3"
  3545. msgstr ""
  3546. #: flatcamGUI/FlatCAMGUI.py:370
  3547. msgid "&Zoom Fit\tV"
  3548. msgstr ""
  3549. #: flatcamGUI/FlatCAMGUI.py:371
  3550. msgid "&Zoom In\t="
  3551. msgstr ""
  3552. #: flatcamGUI/FlatCAMGUI.py:372
  3553. msgid "&Zoom Out\t-"
  3554. msgstr ""
  3555. #: flatcamGUI/FlatCAMGUI.py:376
  3556. msgid "Toggle Code Editor\tCTRL+E"
  3557. msgstr ""
  3558. #: flatcamGUI/FlatCAMGUI.py:379
  3559. msgid "&Toggle FullScreen\tALT+F10"
  3560. msgstr ""
  3561. #: flatcamGUI/FlatCAMGUI.py:381
  3562. msgid "&Toggle Plot Area\tCTRL+F10"
  3563. msgstr ""
  3564. #: flatcamGUI/FlatCAMGUI.py:383
  3565. msgid "&Toggle Project/Sel/Tool\t`"
  3566. msgstr ""
  3567. #: flatcamGUI/FlatCAMGUI.py:386
  3568. msgid "&Toggle Grid Snap\tG"
  3569. msgstr ""
  3570. #: flatcamGUI/FlatCAMGUI.py:388
  3571. msgid "&Toggle Axis\tSHIFT+G"
  3572. msgstr ""
  3573. #: flatcamGUI/FlatCAMGUI.py:391
  3574. msgid "Toggle Workspace\tSHIFT+W"
  3575. msgstr ""
  3576. #: flatcamGUI/FlatCAMGUI.py:394
  3577. msgid "&Tool"
  3578. msgstr ""
  3579. #: flatcamGUI/FlatCAMGUI.py:396
  3580. msgid "&Command Line\tS"
  3581. msgstr ""
  3582. #: flatcamGUI/FlatCAMGUI.py:399
  3583. msgid "&Help"
  3584. msgstr ""
  3585. #: flatcamGUI/FlatCAMGUI.py:400
  3586. msgid "Help\tF1"
  3587. msgstr ""
  3588. #: flatcamGUI/FlatCAMGUI.py:401
  3589. msgid "FlatCAM.org"
  3590. msgstr ""
  3591. #: flatcamGUI/FlatCAMGUI.py:404
  3592. msgid "Shortcuts List\tF3"
  3593. msgstr ""
  3594. #: flatcamGUI/FlatCAMGUI.py:405
  3595. msgid "YouTube Channel\tF4"
  3596. msgstr ""
  3597. #: flatcamGUI/FlatCAMGUI.py:407
  3598. msgid "About"
  3599. msgstr ""
  3600. #: flatcamGUI/FlatCAMGUI.py:414
  3601. msgid "Add Circle\tO"
  3602. msgstr ""
  3603. #: flatcamGUI/FlatCAMGUI.py:416
  3604. msgid "Add Arc\tA"
  3605. msgstr ""
  3606. #: flatcamGUI/FlatCAMGUI.py:419
  3607. msgid "Add Rectangle\tR"
  3608. msgstr ""
  3609. #: flatcamGUI/FlatCAMGUI.py:422
  3610. msgid "Add Polygon\tN"
  3611. msgstr ""
  3612. #: flatcamGUI/FlatCAMGUI.py:424
  3613. msgid "Add Path\tP"
  3614. msgstr ""
  3615. #: flatcamGUI/FlatCAMGUI.py:426
  3616. msgid "Add Text\tT"
  3617. msgstr ""
  3618. #: flatcamGUI/FlatCAMGUI.py:429
  3619. msgid "Polygon Union\tU"
  3620. msgstr ""
  3621. #: flatcamGUI/FlatCAMGUI.py:431
  3622. msgid "Polygon Intersection\tE"
  3623. msgstr ""
  3624. #: flatcamGUI/FlatCAMGUI.py:433
  3625. msgid "Polygon Subtraction\tS"
  3626. msgstr ""
  3627. #: flatcamGUI/FlatCAMGUI.py:437
  3628. msgid "Cut Path\tX"
  3629. msgstr ""
  3630. #: flatcamGUI/FlatCAMGUI.py:439
  3631. msgid "Copy Geom\tC"
  3632. msgstr ""
  3633. #: flatcamGUI/FlatCAMGUI.py:441
  3634. msgid "Delete Shape\tDEL"
  3635. msgstr ""
  3636. #: flatcamGUI/FlatCAMGUI.py:444 flatcamGUI/FlatCAMGUI.py:521
  3637. msgid "Move\tM"
  3638. msgstr ""
  3639. #: flatcamGUI/FlatCAMGUI.py:446
  3640. msgid "Buffer Tool\tB"
  3641. msgstr ""
  3642. #: flatcamGUI/FlatCAMGUI.py:449
  3643. msgid "Paint Tool\tI"
  3644. msgstr ""
  3645. #: flatcamGUI/FlatCAMGUI.py:452
  3646. msgid "Transform Tool\tALT+R"
  3647. msgstr ""
  3648. #: flatcamGUI/FlatCAMGUI.py:456
  3649. msgid "Toggle Corner Snap\tK"
  3650. msgstr ""
  3651. #: flatcamGUI/FlatCAMGUI.py:459
  3652. msgid ">Excellon Editor<"
  3653. msgstr ""
  3654. #: flatcamGUI/FlatCAMGUI.py:463
  3655. msgid "Add Drill Array\tA"
  3656. msgstr ""
  3657. #: flatcamGUI/FlatCAMGUI.py:465
  3658. msgid "Add Drill\tD"
  3659. msgstr ""
  3660. #: flatcamGUI/FlatCAMGUI.py:469
  3661. msgid "Add Slot Array\tQ"
  3662. msgstr ""
  3663. #: flatcamGUI/FlatCAMGUI.py:471
  3664. msgid "Add Slot\tW"
  3665. msgstr ""
  3666. #: flatcamGUI/FlatCAMGUI.py:475
  3667. msgid "Resize Drill(S)\tR"
  3668. msgstr ""
  3669. #: flatcamGUI/FlatCAMGUI.py:477 flatcamGUI/FlatCAMGUI.py:516
  3670. msgid "Copy\tC"
  3671. msgstr ""
  3672. #: flatcamGUI/FlatCAMGUI.py:479 flatcamGUI/FlatCAMGUI.py:518
  3673. msgid "Delete\tDEL"
  3674. msgstr ""
  3675. #: flatcamGUI/FlatCAMGUI.py:484
  3676. msgid "Move Drill(s)\tM"
  3677. msgstr ""
  3678. #: flatcamGUI/FlatCAMGUI.py:487
  3679. msgid ">Gerber Editor<"
  3680. msgstr ""
  3681. #: flatcamGUI/FlatCAMGUI.py:491
  3682. msgid "Add Pad\tP"
  3683. msgstr ""
  3684. #: flatcamGUI/FlatCAMGUI.py:493
  3685. msgid "Add Pad Array\tA"
  3686. msgstr ""
  3687. #: flatcamGUI/FlatCAMGUI.py:495
  3688. msgid "Add Track\tT"
  3689. msgstr ""
  3690. #: flatcamGUI/FlatCAMGUI.py:497
  3691. msgid "Add Region\tN"
  3692. msgstr ""
  3693. #: flatcamGUI/FlatCAMGUI.py:501
  3694. msgid "Poligonize\tALT+N"
  3695. msgstr ""
  3696. #: flatcamGUI/FlatCAMGUI.py:503
  3697. msgid "Add SemiDisc\tE"
  3698. msgstr ""
  3699. #: flatcamGUI/FlatCAMGUI.py:504
  3700. msgid "Add Disc\tD"
  3701. msgstr ""
  3702. #: flatcamGUI/FlatCAMGUI.py:506
  3703. msgid "Buffer\tB"
  3704. msgstr ""
  3705. #: flatcamGUI/FlatCAMGUI.py:507
  3706. msgid "Scale\tS"
  3707. msgstr ""
  3708. #: flatcamGUI/FlatCAMGUI.py:509
  3709. msgid "Mark Area\tALT+A"
  3710. msgstr ""
  3711. #: flatcamGUI/FlatCAMGUI.py:511
  3712. msgid "Eraser\tCTRL+E"
  3713. msgstr ""
  3714. #: flatcamGUI/FlatCAMGUI.py:513
  3715. msgid "Transform\tALT+R"
  3716. msgstr ""
  3717. #: flatcamGUI/FlatCAMGUI.py:537
  3718. msgid "Enable Plot"
  3719. msgstr ""
  3720. #: flatcamGUI/FlatCAMGUI.py:538
  3721. msgid "Disable Plot"
  3722. msgstr ""
  3723. #: flatcamGUI/FlatCAMGUI.py:540
  3724. msgid "Generate CNC"
  3725. msgstr ""
  3726. #: flatcamGUI/FlatCAMGUI.py:541
  3727. msgid "View Source"
  3728. msgstr ""
  3729. #: flatcamGUI/FlatCAMGUI.py:543 flatcamGUI/FlatCAMGUI.py:1720
  3730. msgid "Edit"
  3731. msgstr ""
  3732. #: flatcamGUI/FlatCAMGUI.py:549 flatcamGUI/FlatCAMGUI.py:1726
  3733. #: flatcamTools/ToolProperties.py:24
  3734. msgid "Properties"
  3735. msgstr ""
  3736. #: flatcamGUI/FlatCAMGUI.py:578
  3737. msgid "File Toolbar"
  3738. msgstr ""
  3739. #: flatcamGUI/FlatCAMGUI.py:582
  3740. msgid "Edit Toolbar"
  3741. msgstr ""
  3742. #: flatcamGUI/FlatCAMGUI.py:586
  3743. msgid "View Toolbar"
  3744. msgstr ""
  3745. #: flatcamGUI/FlatCAMGUI.py:590
  3746. msgid "Shell Toolbar"
  3747. msgstr ""
  3748. #: flatcamGUI/FlatCAMGUI.py:594
  3749. msgid "Tools Toolbar"
  3750. msgstr ""
  3751. #: flatcamGUI/FlatCAMGUI.py:598
  3752. msgid "Excellon Editor Toolbar"
  3753. msgstr ""
  3754. #: flatcamGUI/FlatCAMGUI.py:602
  3755. msgid "Geometry Editor Toolbar"
  3756. msgstr ""
  3757. #: flatcamGUI/FlatCAMGUI.py:606
  3758. msgid "Gerber Editor Toolbar"
  3759. msgstr ""
  3760. #: flatcamGUI/FlatCAMGUI.py:610
  3761. msgid "Grid Toolbar"
  3762. msgstr ""
  3763. #: flatcamGUI/FlatCAMGUI.py:629 flatcamGUI/FlatCAMGUI.py:1973
  3764. msgid "Open project"
  3765. msgstr ""
  3766. #: flatcamGUI/FlatCAMGUI.py:630 flatcamGUI/FlatCAMGUI.py:1974
  3767. msgid "Save project"
  3768. msgstr ""
  3769. #: flatcamGUI/FlatCAMGUI.py:633 flatcamGUI/FlatCAMGUI.py:1977
  3770. msgid "New Blank Geometry"
  3771. msgstr ""
  3772. #: flatcamGUI/FlatCAMGUI.py:634
  3773. msgid "New Blank Gerber"
  3774. msgstr ""
  3775. #: flatcamGUI/FlatCAMGUI.py:635 flatcamGUI/FlatCAMGUI.py:1978
  3776. msgid "New Blank Excellon"
  3777. msgstr ""
  3778. #: flatcamGUI/FlatCAMGUI.py:637 flatcamGUI/FlatCAMGUI.py:1980
  3779. msgid "Editor"
  3780. msgstr ""
  3781. #: flatcamGUI/FlatCAMGUI.py:639 flatcamGUI/FlatCAMGUI.py:1982
  3782. msgid "Save Object and close the Editor"
  3783. msgstr ""
  3784. #: flatcamGUI/FlatCAMGUI.py:643 flatcamGUI/FlatCAMGUI.py:1986
  3785. msgid "&Delete"
  3786. msgstr ""
  3787. #: flatcamGUI/FlatCAMGUI.py:646 flatcamGUI/FlatCAMGUI.py:1989
  3788. msgid "&Replot"
  3789. msgstr ""
  3790. #: flatcamGUI/FlatCAMGUI.py:647 flatcamGUI/FlatCAMGUI.py:1990
  3791. msgid "&Clear plot"
  3792. msgstr ""
  3793. #: flatcamGUI/FlatCAMGUI.py:648 flatcamGUI/FlatCAMGUI.py:1991
  3794. msgid "Zoom In"
  3795. msgstr ""
  3796. #: flatcamGUI/FlatCAMGUI.py:649 flatcamGUI/FlatCAMGUI.py:1992
  3797. msgid "Zoom Out"
  3798. msgstr ""
  3799. #: flatcamGUI/FlatCAMGUI.py:650 flatcamGUI/FlatCAMGUI.py:1657
  3800. #: flatcamGUI/FlatCAMGUI.py:1993
  3801. msgid "Zoom Fit"
  3802. msgstr ""
  3803. #: flatcamGUI/FlatCAMGUI.py:655 flatcamGUI/FlatCAMGUI.py:1998
  3804. msgid "&Command Line"
  3805. msgstr ""
  3806. #: flatcamGUI/FlatCAMGUI.py:658 flatcamGUI/FlatCAMGUI.py:2001
  3807. msgid "2Sided Tool"
  3808. msgstr ""
  3809. #: flatcamGUI/FlatCAMGUI.py:659 flatcamGUI/FlatCAMGUI.py:2002
  3810. msgid "&Cutout Tool"
  3811. msgstr ""
  3812. #: flatcamGUI/FlatCAMGUI.py:660 flatcamGUI/FlatCAMGUI.py:2003
  3813. #: flatcamGUI/ObjectUI.py:452 flatcamTools/ToolNonCopperClear.py:531
  3814. msgid "NCC Tool"
  3815. msgstr ""
  3816. #: flatcamGUI/FlatCAMGUI.py:664 flatcamGUI/FlatCAMGUI.py:2007
  3817. msgid "Panel Tool"
  3818. msgstr ""
  3819. #: flatcamGUI/FlatCAMGUI.py:665 flatcamGUI/FlatCAMGUI.py:2008
  3820. #: flatcamTools/ToolFilm.py:209
  3821. msgid "Film Tool"
  3822. msgstr ""
  3823. #: flatcamGUI/FlatCAMGUI.py:666 flatcamGUI/FlatCAMGUI.py:2010
  3824. #: flatcamTools/ToolSolderPaste.py:455
  3825. msgid "SolderPaste Tool"
  3826. msgstr ""
  3827. #: flatcamGUI/FlatCAMGUI.py:667 flatcamGUI/FlatCAMGUI.py:2011
  3828. #: flatcamTools/ToolSub.py:28
  3829. msgid "Substract Tool"
  3830. msgstr ""
  3831. #: flatcamGUI/FlatCAMGUI.py:671 flatcamGUI/FlatCAMGUI.py:2016
  3832. msgid "Calculators Tool"
  3833. msgstr ""
  3834. #: flatcamGUI/FlatCAMGUI.py:675 flatcamGUI/FlatCAMGUI.py:692
  3835. #: flatcamGUI/FlatCAMGUI.py:726 flatcamGUI/FlatCAMGUI.py:2020
  3836. #: flatcamGUI/FlatCAMGUI.py:2073
  3837. msgid "Select"
  3838. msgstr ""
  3839. #: flatcamGUI/FlatCAMGUI.py:676 flatcamGUI/FlatCAMGUI.py:2021
  3840. msgid "Add Drill Hole"
  3841. msgstr ""
  3842. #: flatcamGUI/FlatCAMGUI.py:678 flatcamGUI/FlatCAMGUI.py:2023
  3843. msgid "Add Drill Hole Array"
  3844. msgstr ""
  3845. #: flatcamGUI/FlatCAMGUI.py:679 flatcamGUI/FlatCAMGUI.py:1712
  3846. #: flatcamGUI/FlatCAMGUI.py:2025
  3847. msgid "Add Slot"
  3848. msgstr ""
  3849. #: flatcamGUI/FlatCAMGUI.py:681 flatcamGUI/FlatCAMGUI.py:1713
  3850. #: flatcamGUI/FlatCAMGUI.py:2027
  3851. msgid "Add Slot Array"
  3852. msgstr ""
  3853. #: flatcamGUI/FlatCAMGUI.py:682 flatcamGUI/FlatCAMGUI.py:1715
  3854. #: flatcamGUI/FlatCAMGUI.py:2024
  3855. msgid "Resize Drill"
  3856. msgstr ""
  3857. #: flatcamGUI/FlatCAMGUI.py:685 flatcamGUI/FlatCAMGUI.py:2030
  3858. msgid "Copy Drill"
  3859. msgstr ""
  3860. #: flatcamGUI/FlatCAMGUI.py:686 flatcamGUI/FlatCAMGUI.py:2032
  3861. msgid "Delete Drill"
  3862. msgstr ""
  3863. #: flatcamGUI/FlatCAMGUI.py:689 flatcamGUI/FlatCAMGUI.py:2035
  3864. msgid "Move Drill"
  3865. msgstr ""
  3866. #: flatcamGUI/FlatCAMGUI.py:693 flatcamGUI/FlatCAMGUI.py:2039
  3867. msgid "Add Circle"
  3868. msgstr ""
  3869. #: flatcamGUI/FlatCAMGUI.py:694 flatcamGUI/FlatCAMGUI.py:2040
  3870. msgid "Add Arc"
  3871. msgstr ""
  3872. #: flatcamGUI/FlatCAMGUI.py:696 flatcamGUI/FlatCAMGUI.py:2042
  3873. msgid "Add Rectangle"
  3874. msgstr ""
  3875. #: flatcamGUI/FlatCAMGUI.py:699 flatcamGUI/FlatCAMGUI.py:2045
  3876. msgid "Add Path"
  3877. msgstr ""
  3878. #: flatcamGUI/FlatCAMGUI.py:700 flatcamGUI/FlatCAMGUI.py:2047
  3879. msgid "Add Polygon"
  3880. msgstr ""
  3881. #: flatcamGUI/FlatCAMGUI.py:702 flatcamGUI/FlatCAMGUI.py:2049
  3882. msgid "Add Text"
  3883. msgstr ""
  3884. #: flatcamGUI/FlatCAMGUI.py:703 flatcamGUI/FlatCAMGUI.py:2050
  3885. msgid "Add Buffer"
  3886. msgstr ""
  3887. #: flatcamGUI/FlatCAMGUI.py:704 flatcamGUI/FlatCAMGUI.py:2051
  3888. msgid "Paint Shape"
  3889. msgstr ""
  3890. #: flatcamGUI/FlatCAMGUI.py:705 flatcamGUI/FlatCAMGUI.py:743
  3891. #: flatcamGUI/FlatCAMGUI.py:1674 flatcamGUI/FlatCAMGUI.py:1702
  3892. #: flatcamGUI/FlatCAMGUI.py:2052 flatcamGUI/FlatCAMGUI.py:2089
  3893. msgid "Eraser"
  3894. msgstr ""
  3895. #: flatcamGUI/FlatCAMGUI.py:708 flatcamGUI/FlatCAMGUI.py:2055
  3896. msgid "Polygon Union"
  3897. msgstr ""
  3898. #: flatcamGUI/FlatCAMGUI.py:710 flatcamGUI/FlatCAMGUI.py:2057
  3899. msgid "Polygon Intersection"
  3900. msgstr ""
  3901. #: flatcamGUI/FlatCAMGUI.py:712 flatcamGUI/FlatCAMGUI.py:2059
  3902. msgid "Polygon Subtraction"
  3903. msgstr ""
  3904. #: flatcamGUI/FlatCAMGUI.py:715 flatcamGUI/FlatCAMGUI.py:2062
  3905. msgid "Cut Path"
  3906. msgstr ""
  3907. #: flatcamGUI/FlatCAMGUI.py:716
  3908. msgid "Copy Shape(s)"
  3909. msgstr ""
  3910. #: flatcamGUI/FlatCAMGUI.py:719
  3911. msgid "Delete Shape '-'"
  3912. msgstr ""
  3913. #: flatcamGUI/FlatCAMGUI.py:721 flatcamGUI/FlatCAMGUI.py:750
  3914. #: flatcamGUI/FlatCAMGUI.py:1681 flatcamGUI/FlatCAMGUI.py:1706
  3915. #: flatcamGUI/FlatCAMGUI.py:2067 flatcamGUI/FlatCAMGUI.py:2096
  3916. msgid "Transformations"
  3917. msgstr ""
  3918. #: flatcamGUI/FlatCAMGUI.py:723
  3919. msgid "Move Objects "
  3920. msgstr ""
  3921. #: flatcamGUI/FlatCAMGUI.py:727 flatcamGUI/FlatCAMGUI.py:2074
  3922. msgid "Add Pad"
  3923. msgstr ""
  3924. #: flatcamGUI/FlatCAMGUI.py:729 flatcamGUI/FlatCAMGUI.py:2076
  3925. msgid "Add Track"
  3926. msgstr ""
  3927. #: flatcamGUI/FlatCAMGUI.py:730 flatcamGUI/FlatCAMGUI.py:2077
  3928. msgid "Add Region"
  3929. msgstr ""
  3930. #: flatcamGUI/FlatCAMGUI.py:732 flatcamGUI/FlatCAMGUI.py:1694
  3931. #: flatcamGUI/FlatCAMGUI.py:2079
  3932. msgid "Poligonize"
  3933. msgstr ""
  3934. #: flatcamGUI/FlatCAMGUI.py:734 flatcamGUI/FlatCAMGUI.py:1695
  3935. #: flatcamGUI/FlatCAMGUI.py:2081
  3936. msgid "SemiDisc"
  3937. msgstr ""
  3938. #: flatcamGUI/FlatCAMGUI.py:735 flatcamGUI/FlatCAMGUI.py:1696
  3939. #: flatcamGUI/FlatCAMGUI.py:2082
  3940. msgid "Disc"
  3941. msgstr ""
  3942. #: flatcamGUI/FlatCAMGUI.py:741 flatcamGUI/FlatCAMGUI.py:1701
  3943. #: flatcamGUI/FlatCAMGUI.py:2088
  3944. msgid "Mark Area"
  3945. msgstr ""
  3946. #: flatcamGUI/FlatCAMGUI.py:752 flatcamGUI/FlatCAMGUI.py:1684
  3947. #: flatcamGUI/FlatCAMGUI.py:1725 flatcamGUI/FlatCAMGUI.py:2098
  3948. #: flatcamTools/ToolMove.py:26
  3949. msgid "Move"
  3950. msgstr ""
  3951. #: flatcamGUI/FlatCAMGUI.py:758 flatcamGUI/FlatCAMGUI.py:2104
  3952. msgid "Snap to grid"
  3953. msgstr ""
  3954. #: flatcamGUI/FlatCAMGUI.py:761 flatcamGUI/FlatCAMGUI.py:2107
  3955. msgid "Grid X snapping distance"
  3956. msgstr ""
  3957. #: flatcamGUI/FlatCAMGUI.py:766 flatcamGUI/FlatCAMGUI.py:2112
  3958. msgid "Grid Y snapping distance"
  3959. msgstr ""
  3960. #: flatcamGUI/FlatCAMGUI.py:772 flatcamGUI/FlatCAMGUI.py:2118
  3961. msgid ""
  3962. "When active, value on Grid_X\n"
  3963. "is copied to the Grid_Y value."
  3964. msgstr ""
  3965. #: flatcamGUI/FlatCAMGUI.py:778 flatcamGUI/FlatCAMGUI.py:2124
  3966. msgid "Snap to corner"
  3967. msgstr ""
  3968. #: flatcamGUI/FlatCAMGUI.py:782 flatcamGUI/FlatCAMGUI.py:2128
  3969. #: flatcamGUI/FlatCAMGUI.py:3575
  3970. msgid "Max. magnet distance"
  3971. msgstr ""
  3972. #: flatcamGUI/FlatCAMGUI.py:809 flatcamGUI/FlatCAMGUI.py:1651
  3973. msgid "Project"
  3974. msgstr ""
  3975. #: flatcamGUI/FlatCAMGUI.py:819
  3976. msgid "Selected"
  3977. msgstr ""
  3978. #: flatcamGUI/FlatCAMGUI.py:838 flatcamGUI/FlatCAMGUI.py:846
  3979. msgid "Plot Area"
  3980. msgstr ""
  3981. #: flatcamGUI/FlatCAMGUI.py:872
  3982. msgid "General"
  3983. msgstr ""
  3984. #: flatcamGUI/FlatCAMGUI.py:881
  3985. msgid "APP. DEFAULTS"
  3986. msgstr ""
  3987. #: flatcamGUI/FlatCAMGUI.py:882
  3988. msgid "PROJ. OPTIONS "
  3989. msgstr ""
  3990. #: flatcamGUI/FlatCAMGUI.py:894 flatcamTools/ToolDblSided.py:47
  3991. msgid "GERBER"
  3992. msgstr ""
  3993. #: flatcamGUI/FlatCAMGUI.py:904 flatcamTools/ToolDblSided.py:71
  3994. msgid "EXCELLON"
  3995. msgstr ""
  3996. #: flatcamGUI/FlatCAMGUI.py:914 flatcamTools/ToolDblSided.py:95
  3997. msgid "GEOMETRY"
  3998. msgstr ""
  3999. #: flatcamGUI/FlatCAMGUI.py:924
  4000. msgid "CNC-JOB"
  4001. msgstr ""
  4002. #: flatcamGUI/FlatCAMGUI.py:933 flatcamGUI/ObjectUI.py:441
  4003. msgid "TOOLS"
  4004. msgstr ""
  4005. #: flatcamGUI/FlatCAMGUI.py:943
  4006. msgid "FILE ASSOCIATIONS"
  4007. msgstr ""
  4008. #: flatcamGUI/FlatCAMGUI.py:960
  4009. msgid "Import Preferences"
  4010. msgstr ""
  4011. #: flatcamGUI/FlatCAMGUI.py:963
  4012. msgid ""
  4013. "Import a full set of FlatCAM settings from a file\n"
  4014. "previously saved on HDD.\n"
  4015. "\n"
  4016. "FlatCAM automatically save a 'factory_defaults' file\n"
  4017. "on the first start. Do not delete that file."
  4018. msgstr ""
  4019. #: flatcamGUI/FlatCAMGUI.py:970
  4020. msgid "Export Preferences"
  4021. msgstr ""
  4022. #: flatcamGUI/FlatCAMGUI.py:973
  4023. msgid ""
  4024. "Export a full set of FlatCAM settings in a file\n"
  4025. "that is saved on HDD."
  4026. msgstr ""
  4027. #: flatcamGUI/FlatCAMGUI.py:978
  4028. msgid "Open Pref Folder"
  4029. msgstr ""
  4030. #: flatcamGUI/FlatCAMGUI.py:981
  4031. msgid "Open the folder where FlatCAM save the preferences files."
  4032. msgstr ""
  4033. #: flatcamGUI/FlatCAMGUI.py:992
  4034. msgid ""
  4035. "Save the current settings in the 'current_defaults' file\n"
  4036. "which is the file storing the working default preferences."
  4037. msgstr ""
  4038. #: flatcamGUI/FlatCAMGUI.py:1018
  4039. msgid ""
  4040. "<b>General Shortcut list</b><br>\n"
  4041. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4042. "\"width:283px\">\n"
  4043. " <tbody>\n"
  4044. " <tr height=\"20\">\n"
  4045. " <td height=\"20\" width=\"89\"><strong>F3</strong></"
  4046. "td>\n"
  4047. " <td width=\"194\"><span style=\"color:"
  4048. "#006400\"><strong>&nbsp;SHOW SHORTCUT LIST</strong></span></td>\n"
  4049. " </tr>\n"
  4050. " <tr height=\"20\">\n"
  4051. " <td height=\"20\">&nbsp;</td>\n"
  4052. " <td>&nbsp;</td>\n"
  4053. " </tr>\n"
  4054. " <tr height=\"20\">\n"
  4055. " <td height=\"20\"><strong>1</strong></td>\n"
  4056. " <td>&nbsp;Switch to Project Tab</td>\n"
  4057. " </tr>\n"
  4058. " <tr height=\"20\">\n"
  4059. " <td height=\"20\"><strong>2</strong></td>\n"
  4060. " <td>&nbsp;Switch to Selected Tab</td>\n"
  4061. " </tr>\n"
  4062. " <tr height=\"20\">\n"
  4063. " <td height=\"20\"><strong>3</strong></td>\n"
  4064. " <td>&nbsp;Switch to Tool Tab</td>\n"
  4065. " </tr>\n"
  4066. " <tr height=\"20\">\n"
  4067. " <td height=\"20\">&nbsp;</td>\n"
  4068. " <td>&nbsp;</td>\n"
  4069. " </tr>\n"
  4070. " <tr height=\"20\">\n"
  4071. " <td height=\"20\"><strong>B</strong></td>\n"
  4072. " <td>&nbsp;New Gerber</td>\n"
  4073. " </tr>\n"
  4074. " <tr height=\"20\">\n"
  4075. " <td height=\"20\"><strong>E</strong></td>\n"
  4076. " <td>&nbsp;Edit Object (if selected)</td>\n"
  4077. " </tr>\n"
  4078. " <tr height=\"20\">\n"
  4079. " <td height=\"20\"><strong>G</strong></td>\n"
  4080. " <td>&nbsp;Grid On/Off</td>\n"
  4081. " </tr>\n"
  4082. " <tr height=\"20\">\n"
  4083. " <td height=\"20\"><strong>J</strong></td>\n"
  4084. " <td>&nbsp;Jump to Coordinates</td>\n"
  4085. " </tr>\n"
  4086. " <tr height=\"20\">\n"
  4087. " <td height=\"20\"><strong>L</strong></td>\n"
  4088. " <td>&nbsp;New Excellon</td>\n"
  4089. " </tr>\n"
  4090. " <tr height=\"20\">\n"
  4091. " <td height=\"20\"><strong>M</strong></td>\n"
  4092. " <td>&nbsp;Move Obj</td>\n"
  4093. " </tr>\n"
  4094. " <tr height=\"20\">\n"
  4095. " <td height=\"20\"><strong>N</strong></td>\n"
  4096. " <td>&nbsp;New Geometry</td>\n"
  4097. " </tr>\n"
  4098. " <tr height=\"20\">\n"
  4099. " <td height=\"20\"><strong>O</strong></td>\n"
  4100. " <td>&nbsp;Set Origin</td>\n"
  4101. " </tr>\n"
  4102. " <tr height=\"20\">\n"
  4103. " <td height=\"20\"><strong>Q</strong></td>\n"
  4104. " <td>&nbsp;Change Units</td>\n"
  4105. " </tr>\n"
  4106. " <tr height=\"20\">\n"
  4107. " <td height=\"20\"><strong>P</strong></td>\n"
  4108. " <td>&nbsp;Open Properties Tool</td>\n"
  4109. " </tr>\n"
  4110. " <tr height=\"20\">\n"
  4111. " <td height=\"20\"><strong>R</strong></td>\n"
  4112. " <td>&nbsp;Rotate by 90 degree CW</td>\n"
  4113. " </tr>\n"
  4114. " <tr height=\"20\">\n"
  4115. " <td height=\"20\"><strong>S</strong></td>\n"
  4116. " <td>&nbsp;Shell Toggle</td>\n"
  4117. " </tr>\n"
  4118. " <tr height=\"20\">\n"
  4119. " <td height=\"20\"><strong>T</strong></td>\n"
  4120. " <td>&nbsp;Add a Tool (when in Geometry Selected Tab "
  4121. "or in Tools NCC or Tools Paint)</td>\n"
  4122. " </tr>\n"
  4123. " <tr height=\"20\">\n"
  4124. " <td height=\"20\"><strong>V</strong></td>\n"
  4125. " <td>&nbsp;Zoom Fit</td>\n"
  4126. " </tr>\n"
  4127. " <tr height=\"20\">\n"
  4128. " <td height=\"20\"><strong>X</strong></td>\n"
  4129. " <td>&nbsp;Flip on X_axis</td>\n"
  4130. " </tr>\n"
  4131. " <tr height=\"20\">\n"
  4132. " <td height=\"20\"><strong>Y</strong></td>\n"
  4133. " <td>&nbsp;Flip on Y_axis</td>\n"
  4134. " </tr>\n"
  4135. " <tr height=\"20\">\n"
  4136. " <td height=\"20\"><strong>&#39;-&#39;</strong></td>\n"
  4137. " <td>&nbsp;Zoom Out</td>\n"
  4138. " </tr>\n"
  4139. " <tr height=\"20\">\n"
  4140. " <td height=\"20\"><strong>&#39;=&#39;</strong></td>\n"
  4141. " <td>&nbsp;Zoom In</td>\n"
  4142. " </tr>\n"
  4143. " <tr height=\"20\">\n"
  4144. " <td height=\"20\">&nbsp;</td>\n"
  4145. " <td>&nbsp;</td>\n"
  4146. " </tr>\n"
  4147. " <tr height=\"20\">\n"
  4148. " <td height=\"20\"><strong>CTRL+A</strong></td>\n"
  4149. " <td>&nbsp;Select All</td>\n"
  4150. " </tr>\n"
  4151. " <tr height=\"20\">\n"
  4152. " <td height=\"20\"><strong>CTRL+C</strong></td>\n"
  4153. " <td>&nbsp;Copy Obj</td>\n"
  4154. " </tr>\n"
  4155. " <tr height=\"20\">\n"
  4156. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4157. " <td>&nbsp;Open Excellon File</td>\n"
  4158. " </tr>\n"
  4159. " <tr height=\"20\">\n"
  4160. " <td height=\"20\"><strong>CTRL+G</strong></td>\n"
  4161. " <td>&nbsp;Open Gerber File</td>\n"
  4162. " </tr>\n"
  4163. " <tr height=\"20\">\n"
  4164. " <td height=\"20\"><strong>CTRL+N</strong></td>\n"
  4165. " <td>&nbsp;New Project</td>\n"
  4166. " </tr>\n"
  4167. " <tr height=\"20\">\n"
  4168. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4169. " <td>&nbsp;Measurement Tool</td>\n"
  4170. " </tr>\n"
  4171. " <tr height=\"20\">\n"
  4172. " <td height=\"20\"><strong>CTRL+O</strong></td>\n"
  4173. " <td>&nbsp;Open Project</td>\n"
  4174. " </tr>\n"
  4175. " <tr height=\"20\">\n"
  4176. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4177. " <td>&nbsp;Save Project As</td>\n"
  4178. " </tr>\n"
  4179. " <tr height=\"20\">\n"
  4180. " <td height=\"20\"><strong>CTRL+F10</strong></td>\n"
  4181. " <td>&nbsp;Toggle Plot Area</td>\n"
  4182. " </tr>\n"
  4183. " <tr height=\"20\">\n"
  4184. " <td height=\"20\">&nbsp;</td>\n"
  4185. " <td>&nbsp;</td>\n"
  4186. " </tr>\n"
  4187. " <tr height=\"20\">\n"
  4188. " <td height=\"20\"><strong>SHIFT+C</strong></td>\n"
  4189. " <td>&nbsp;Copy Obj_Name</td>\n"
  4190. " </tr>\n"
  4191. " <tr height=\"20\">\n"
  4192. " <td height=\"20\"><strong>SHIFT+E</strong></td>\n"
  4193. " <td>&nbsp;Toggle Code Editor</td>\n"
  4194. " </tr>\n"
  4195. " <tr height=\"20\">\n"
  4196. " <td height=\"20\"><strong>SHIFT+G</strong></td>\n"
  4197. " <td>&nbsp;Toggle the axis</td>\n"
  4198. " </tr>\n"
  4199. " <tr height=\"20\">\n"
  4200. " <td height=\"20\"><strong>SHIFT+P</strong></td>\n"
  4201. " <td>&nbsp;Open Preferences Window</td>\n"
  4202. " </tr>\n"
  4203. " <tr height=\"20\">\n"
  4204. " <td height=\"20\"><strong>SHIFT+R</strong></td>\n"
  4205. " <td>&nbsp;Rotate by 90 degree CCW</td>\n"
  4206. " </tr>\n"
  4207. " <tr height=\"20\">\n"
  4208. " <td height=\"20\"><strong>SHIFT+S</strong></td>\n"
  4209. " <td>&nbsp;Run a Script</td>\n"
  4210. " </tr>\n"
  4211. " <tr height=\"20\">\n"
  4212. " <td height=\"20\"><strong>SHIFT+W</strong></td>\n"
  4213. " <td>&nbsp;Toggle the workspace</td>\n"
  4214. " </tr>\n"
  4215. " <tr height=\"20\">\n"
  4216. " <td height=\"20\"><strong>SHIFT+X</strong></td>\n"
  4217. " <td>&nbsp;Skew on X axis</td>\n"
  4218. " </tr>\n"
  4219. " <tr height=\"20\">\n"
  4220. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4221. " <td>&nbsp;Skew on Y axis</td>\n"
  4222. " </tr>\n"
  4223. " <tr height=\"20\">\n"
  4224. " <td height=\"20\">&nbsp;</td>\n"
  4225. " <td>&nbsp;</td>\n"
  4226. " </tr>\n"
  4227. " <tr height=\"20\">\n"
  4228. " <td height=\"20\"><strong>ALT+C</strong></td>\n"
  4229. " <td>&nbsp;Calculators Tool</td>\n"
  4230. " </tr>\n"
  4231. " <tr height=\"20\">\n"
  4232. " <td height=\"20\"><strong>ALT+D</strong></td>\n"
  4233. " <td>&nbsp;2-Sided PCB Tool</td>\n"
  4234. " </tr>\n"
  4235. " <tr height=\"20\">\n"
  4236. " <td height=\"20\"><strong>ALT+K</strong></td>\n"
  4237. " <td>&nbsp;Solder Paste Dispensing Tool</td>\n"
  4238. " </tr>\n"
  4239. " <tr height=\"20\">\n"
  4240. " <td height=\"20\"><strong>ALT+L</strong></td>\n"
  4241. " <td>&nbsp;Film PCB Tool</td>\n"
  4242. " </tr>\n"
  4243. " <tr height=\"20\">\n"
  4244. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4245. " <td>&nbsp;Non-Copper Clearing Tool</td>\n"
  4246. " </tr>\n"
  4247. " <tr height=\"20\">\n"
  4248. " <td height=\"20\"><strong>ALT+P</strong></td>\n"
  4249. " <td>&nbsp;Paint Area Tool</td>\n"
  4250. " </tr>\n"
  4251. " <tr height=\"20\">\n"
  4252. " <td height=\"20\"><strong>ALT+Q</strong></td>\n"
  4253. " <td>&nbsp;PDF Import Tool</td>\n"
  4254. " </tr>\n"
  4255. " <tr height=\"20\">\n"
  4256. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4257. " <td>&nbsp;Transformations Tool</td>\n"
  4258. " </tr>\n"
  4259. " <tr height=\"20\">\n"
  4260. " <td height=\"20\"><strong>ALT+S</strong></td>\n"
  4261. " <td>&nbsp;View File Source</td>\n"
  4262. " </tr>\n"
  4263. " <tr height=\"20\">\n"
  4264. " <td height=\"20\"><strong>ALT+U</strong></td>\n"
  4265. " <td>&nbsp;Cutout PCB Tool</td>\n"
  4266. " </tr>\n"
  4267. " <tr height=\"20\">\n"
  4268. " <td height=\"20\"><strong>ALT+1</strong></td>\n"
  4269. " <td>&nbsp;Enable all Plots</td>\n"
  4270. " </tr>\n"
  4271. " <tr height=\"20\">\n"
  4272. " <td height=\"20\"><strong>ALT+2</strong></td>\n"
  4273. " <td>&nbsp;Disable all Plots</td>\n"
  4274. " </tr>\n"
  4275. " <tr height=\"20\">\n"
  4276. " <td height=\"20\"><strong>ALT+3</strong></td>\n"
  4277. " <td>&nbsp;Disable Non-selected Plots</td>\n"
  4278. " </tr>\n"
  4279. " <tr height=\"20\">\n"
  4280. " <td height=\"20\"><strong>ALT+F10</strong></td>\n"
  4281. " <td>&nbsp;Toggle Full Screen</td>\n"
  4282. " </tr> \n"
  4283. " <tr height=\"20\">\n"
  4284. " <td height=\"20\">&nbsp;</td>\n"
  4285. " <td>&nbsp;</td>\n"
  4286. " </tr>\n"
  4287. " <tr height=\"20\">\n"
  4288. " <td height=\"20\"><strong>CTRL+ALT+X</strong></td>\n"
  4289. " <td>&nbsp;Abort current task (gracefully)</td>\n"
  4290. " </tr> \n"
  4291. " <tr height=\"20\">\n"
  4292. " <td height=\"20\">&nbsp;</td>\n"
  4293. " <td>&nbsp;</td>\n"
  4294. " </tr>\n"
  4295. " <tr height=\"20\">\n"
  4296. " <td height=\"20\"><strong>F1</strong></td>\n"
  4297. " <td>&nbsp;Open Online Manual</td>\n"
  4298. " </tr>\n"
  4299. " <tr height=\"20\">\n"
  4300. " <td height=\"20\"><strong>F4</strong></td>\n"
  4301. " <td>&nbsp;Open Online Tutorials</td>\n"
  4302. " </tr>\n"
  4303. " <tr height=\"20\">\n"
  4304. " <td height=\"20\"><strong>Del</strong></td>\n"
  4305. " <td>&nbsp;Delete Object</td>\n"
  4306. " </tr>\n"
  4307. " <tr height=\"20\">\n"
  4308. " <td height=\"20\"><strong>Del</strong></td>\n"
  4309. " <td>&nbsp;Alternate: Delete Tool</td>\n"
  4310. " </tr>\n"
  4311. " <tr height=\"20\">\n"
  4312. " <td height=\"20\"><strong>'`'</strong></td>\n"
  4313. " <td>&nbsp;(left to Key_1)Toogle Notebook Area (Left "
  4314. "Side)</td>\n"
  4315. " </tr>\n"
  4316. " <tr height=\"20\">\n"
  4317. " <td height=\"20\"><strong>SPACE</strong></td>\n"
  4318. " <td>&nbsp;En(Dis)able Obj Plot</td>\n"
  4319. " </tr>\n"
  4320. " <tr height=\"20\">\n"
  4321. " <td height=\"20\"><strong>Escape</strong></td>\n"
  4322. " <td>&nbsp;Deselects all objects</td>\n"
  4323. " </tr>\n"
  4324. " </tbody>\n"
  4325. " </table>\n"
  4326. " \n"
  4327. " "
  4328. msgstr ""
  4329. #: flatcamGUI/FlatCAMGUI.py:1311
  4330. msgid ""
  4331. "<b>Editor Shortcut list</b><br>\n"
  4332. " <br>\n"
  4333. " <strong><span style=\"color:#0000ff\">GEOMETRY EDITOR</span></"
  4334. "strong><br>\n"
  4335. " \n"
  4336. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4337. "\"width:283px\">\n"
  4338. " <tbody>\n"
  4339. " <tr height=\"20\">\n"
  4340. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4341. "td>\n"
  4342. " <td width=\"194\">&nbsp;Draw an Arc</td>\n"
  4343. " </tr>\n"
  4344. " <tr height=\"20\">\n"
  4345. " <td height=\"20\"><strong>B</strong></td>\n"
  4346. " <td>&nbsp;Buffer Tool</td>\n"
  4347. " </tr>\n"
  4348. " <tr height=\"20\">\n"
  4349. " <td height=\"20\"><strong>C</strong></td>\n"
  4350. " <td>&nbsp;Copy Geo Item</td>\n"
  4351. " </tr>\n"
  4352. " <tr height=\"20\">\n"
  4353. " <td height=\"20\"><strong>D</strong></td>\n"
  4354. " <td>&nbsp;Within Add Arc will toogle the ARC "
  4355. "direction: CW or CCW</td>\n"
  4356. " </tr>\n"
  4357. " <tr height=\"20\">\n"
  4358. " <td height=\"20\"><strong>E</strong></td>\n"
  4359. " <td>&nbsp;Polygon Intersection Tool</td>\n"
  4360. " </tr>\n"
  4361. " <tr height=\"20\">\n"
  4362. " <td height=\"20\"><strong>I</strong></td>\n"
  4363. " <td>&nbsp;Paint Tool</td>\n"
  4364. " </tr>\n"
  4365. " <tr height=\"20\">\n"
  4366. " <td height=\"20\"><strong>J</strong></td>\n"
  4367. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4368. " </tr>\n"
  4369. " <tr height=\"20\">\n"
  4370. " <td height=\"20\"><strong>K</strong></td>\n"
  4371. " <td>&nbsp;Toggle Corner Snap</td>\n"
  4372. " </tr>\n"
  4373. " <tr height=\"20\">\n"
  4374. " <td height=\"20\"><strong>M</strong></td>\n"
  4375. " <td>&nbsp;Move Geo Item</td>\n"
  4376. " </tr>\n"
  4377. " <tr height=\"20\">\n"
  4378. " <td height=\"20\"><strong>M</strong></td>\n"
  4379. " <td>&nbsp;Within Add Arc will cycle through the ARC "
  4380. "modes</td>\n"
  4381. " </tr>\n"
  4382. " <tr height=\"20\">\n"
  4383. " <td height=\"20\"><strong>N</strong></td>\n"
  4384. " <td>&nbsp;Draw a Polygon</td>\n"
  4385. " </tr>\n"
  4386. " <tr height=\"20\">\n"
  4387. " <td height=\"20\"><strong>O</strong></td>\n"
  4388. " <td>&nbsp;Draw a Circle</td>\n"
  4389. " </tr>\n"
  4390. " <tr height=\"20\">\n"
  4391. " <td height=\"20\"><strong>P</strong></td>\n"
  4392. " <td>&nbsp;Draw a Path</td>\n"
  4393. " </tr>\n"
  4394. " <tr height=\"20\">\n"
  4395. " <td height=\"20\"><strong>R</strong></td>\n"
  4396. " <td>&nbsp;Draw Rectangle</td>\n"
  4397. " </tr>\n"
  4398. " <tr height=\"20\">\n"
  4399. " <td height=\"20\"><strong>S</strong></td>\n"
  4400. " <td>&nbsp;Polygon Substraction Tool</td>\n"
  4401. " </tr>\n"
  4402. " <tr height=\"20\">\n"
  4403. " <td height=\"20\"><strong>T</strong></td>\n"
  4404. " <td>&nbsp;Add Text Tool</td>\n"
  4405. " </tr>\n"
  4406. " <tr height=\"20\">\n"
  4407. " <td height=\"20\"><strong>U</strong></td>\n"
  4408. " <td>&nbsp;Polygon Union Tool</td>\n"
  4409. " </tr>\n"
  4410. " <tr height=\"20\">\n"
  4411. " <td height=\"20\"><strong>X</strong></td>\n"
  4412. " <td>&nbsp;Flip shape on X axis</td>\n"
  4413. " </tr>\n"
  4414. " <tr height=\"20\">\n"
  4415. " <td height=\"20\"><strong>Y</strong></td>\n"
  4416. " <td>&nbsp;Flip shape on Y axis</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>SHIFT+X</strong></td>\n"
  4424. " <td>&nbsp;Skew shape on X axis</td>\n"
  4425. " </tr>\n"
  4426. " <tr height=\"20\">\n"
  4427. " <td height=\"20\"><strong>SHIFT+Y</strong></td>\n"
  4428. " <td>&nbsp;Skew shape on Y axis</td>\n"
  4429. " </tr>\n"
  4430. " <tr height=\"20\">\n"
  4431. " <td height=\"20\">&nbsp;</td>\n"
  4432. " <td>&nbsp;</td>\n"
  4433. " </tr>\n"
  4434. " <tr height=\"20\">\n"
  4435. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4436. " <td>&nbsp;Editor Transformation Tool</td>\n"
  4437. " </tr>\n"
  4438. " <tr height=\"20\">\n"
  4439. " <td height=\"20\"><strong>ALT+X</strong></td>\n"
  4440. " <td>&nbsp;Offset shape on X axis</td>\n"
  4441. " </tr>\n"
  4442. " <tr height=\"20\">\n"
  4443. " <td height=\"20\"><strong>ALT+Y</strong></td>\n"
  4444. " <td>&nbsp;Offset shape on Y axis</td>\n"
  4445. " </tr>\n"
  4446. " <tr height=\"20\">\n"
  4447. " <td height=\"20\">&nbsp;</td>\n"
  4448. " <td>&nbsp;</td>\n"
  4449. " </tr>\n"
  4450. " <tr height=\"20\">\n"
  4451. " <td height=\"20\"><strong>CTRL+M</strong></td>\n"
  4452. " <td>&nbsp;Measurement Tool</td>\n"
  4453. " </tr>\n"
  4454. " <tr height=\"20\">\n"
  4455. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4456. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4457. " </tr>\n"
  4458. " <tr height=\"20\">\n"
  4459. " <td height=\"20\"><strong>CTRL+X</strong></td>\n"
  4460. " <td>&nbsp;Polygon Cut Tool</td>\n"
  4461. " </tr>\n"
  4462. " <tr height=\"20\">\n"
  4463. " <td height=\"20\">&nbsp;</td>\n"
  4464. " <td>&nbsp;</td>\n"
  4465. " </tr>\n"
  4466. " <tr height=\"20\">\n"
  4467. " <td height=\"20\"><strong>Space</strong></td>\n"
  4468. " <td>&nbsp;Rotate Geometry</td>\n"
  4469. " </tr>\n"
  4470. " <tr height=\"20\">\n"
  4471. " <td height=\"20\"><strong>ENTER</strong></td>\n"
  4472. " <td>&nbsp;Finish drawing for certain tools</td>\n"
  4473. " </tr>\n"
  4474. " <tr height=\"20\">\n"
  4475. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4476. " <td>&nbsp;Abort and return to Select</td>\n"
  4477. " </tr>\n"
  4478. " <tr height=\"20\">\n"
  4479. " <td height=\"20\"><strong>Del</strong></td>\n"
  4480. " <td>&nbsp;Delete Shape</td>\n"
  4481. " </tr>\n"
  4482. " </tbody>\n"
  4483. " </table>\n"
  4484. " <br>\n"
  4485. " <br>\n"
  4486. " <strong><span style=\"color:#ff0000\">EXCELLON EDITOR</span></"
  4487. "strong><br>\n"
  4488. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4489. "\"width:283px\">\n"
  4490. " <tbody>\n"
  4491. " <tr height=\"20\">\n"
  4492. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4493. "td>\n"
  4494. " <td width=\"194\">&nbsp;Add Drill Array</td>\n"
  4495. " </tr>\n"
  4496. " <tr height=\"20\">\n"
  4497. " <td height=\"20\"><strong>C</strong></td>\n"
  4498. " <td>&nbsp;Copy Drill(s)</td>\n"
  4499. " </tr>\n"
  4500. " <tr height=\"20\">\n"
  4501. " <td height=\"20\"><strong>D</strong></td>\n"
  4502. " <td>&nbsp;Add Drill</td>\n"
  4503. " </tr>\n"
  4504. " <tr height=\"20\">\n"
  4505. " <td height=\"20\"><strong>J</strong></td>\n"
  4506. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4507. " </tr>\n"
  4508. " <tr height=\"20\">\n"
  4509. " <td height=\"20\"><strong>M</strong></td>\n"
  4510. " <td>&nbsp;Move Drill(s)</td>\n"
  4511. " </tr>\n"
  4512. " <tr height=\"20\">\n"
  4513. " <td height=\"20\" width=\"89\"><strong>Q</strong></"
  4514. "td>\n"
  4515. " <td width=\"194\">&nbsp;Add Slot Array</td>\n"
  4516. " </tr>\n"
  4517. " <tr height=\"20\">\n"
  4518. " <td height=\"20\"><strong>R</strong></td>\n"
  4519. " <td>&nbsp;Resize Drill(s)</td>\n"
  4520. " </tr>\n"
  4521. " <tr height=\"20\">\n"
  4522. " <td height=\"20\"><strong>T</strong></td>\n"
  4523. " <td>&nbsp;Add a new Tool</td>\n"
  4524. " </tr>\n"
  4525. " <tr height=\"20\">\n"
  4526. " <td height=\"20\" width=\"89\"><strong>W</strong></"
  4527. "td>\n"
  4528. " <td width=\"194\">&nbsp;Add Slot</td>\n"
  4529. " </tr>\n"
  4530. " <tr height=\"20\">\n"
  4531. " <td height=\"20\">&nbsp;</td>\n"
  4532. " <td>&nbsp;</td>\n"
  4533. " </tr>\n"
  4534. " <tr height=\"20\">\n"
  4535. " <td height=\"20\"><strong>Del</strong></td>\n"
  4536. " <td>&nbsp;Delete Drill(s)</td>\n"
  4537. " </tr>\n"
  4538. " <tr height=\"20\">\n"
  4539. " <td height=\"20\"><strong>Del</strong></td>\n"
  4540. " <td>&nbsp;Alternate: Delete Tool(s)</td>\n"
  4541. " </tr>\n"
  4542. " <tr height=\"20\">\n"
  4543. " <td height=\"20\">&nbsp;</td>\n"
  4544. " <td>&nbsp;</td>\n"
  4545. " </tr>\n"
  4546. " <tr height=\"20\">\n"
  4547. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4548. " <td>&nbsp;Abort and return to Select</td>\n"
  4549. " </tr>\n"
  4550. " <tr height=\"20\">\n"
  4551. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4552. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4553. " </tr>\n"
  4554. " </tbody>\n"
  4555. " </table>\n"
  4556. " <br>\n"
  4557. " <br>\n"
  4558. " <strong><span style=\"color:#00ff00\">GERBER EDITOR</span></"
  4559. "strong><br>\n"
  4560. " <table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style="
  4561. "\"width:283px\">\n"
  4562. " <tbody>\n"
  4563. " <tr height=\"20\">\n"
  4564. " <td height=\"20\" width=\"89\"><strong>A</strong></"
  4565. "td>\n"
  4566. " <td width=\"194\">&nbsp;Add Pad Array</td>\n"
  4567. " </tr>\n"
  4568. " <tr height=\"20\">\n"
  4569. " <td height=\"20\"><strong>B</strong></td>\n"
  4570. " <td>&nbsp;Buffer</td>\n"
  4571. " </tr>\n"
  4572. " <tr height=\"20\">\n"
  4573. " <td height=\"20\"><strong>C</strong></td>\n"
  4574. " <td>&nbsp;Copy</td>\n"
  4575. " </tr>\n"
  4576. " <tr height=\"20\">\n"
  4577. " <td height=\"20\"><strong>D</strong></td>\n"
  4578. " <td>&nbsp;Add Disc</td>\n"
  4579. " </tr>\n"
  4580. " <tr height=\"20\">\n"
  4581. " <td height=\"20\"><strong>E</strong></td>\n"
  4582. " <td>&nbsp;Add SemiDisc</td>\n"
  4583. " </tr>\n"
  4584. " <tr height=\"20\">\n"
  4585. " <td height=\"20\"><strong>J</strong></td>\n"
  4586. " <td>&nbsp;Jump to Location (x, y)</td>\n"
  4587. " </tr>\n"
  4588. " <tr height=\"20\">\n"
  4589. " <td height=\"20\"><strong>M</strong></td>\n"
  4590. " <td>&nbsp;Move</td>\n"
  4591. " </tr>\n"
  4592. " <tr height=\"20\">\n"
  4593. " <td height=\"20\"><strong>N</strong></td>\n"
  4594. " <td>&nbsp;Add Region</td>\n"
  4595. " </tr>\n"
  4596. " <tr height=\"20\">\n"
  4597. " <td height=\"20\"><strong>P</strong></td>\n"
  4598. " <td>&nbsp;Add Pad</td>\n"
  4599. " </tr>\n"
  4600. " <tr height=\"20\">\n"
  4601. " <td height=\"20\"><strong>R</strong></td>\n"
  4602. " <td>&nbsp;Within Track & Region Tools will cycle in "
  4603. "REVERSE the bend modes</td>\n"
  4604. " </tr>\n"
  4605. " <tr height=\"20\">\n"
  4606. " <td height=\"20\"><strong>S</strong></td>\n"
  4607. " <td>&nbsp;Scale</td>\n"
  4608. " </tr>\n"
  4609. " <tr height=\"20\">\n"
  4610. " <td height=\"20\"><strong>T</strong></td>\n"
  4611. " <td>&nbsp;Add Track</td>\n"
  4612. " </tr>\n"
  4613. " <tr height=\"20\">\n"
  4614. " <td height=\"20\"><strong>T</strong></td>\n"
  4615. " <td>&nbsp;Within Track & Region Tools will cycle "
  4616. "FORWARD the bend modes</td>\n"
  4617. " </tr>\n"
  4618. " <tr height=\"20\">\n"
  4619. " <td height=\"20\">&nbsp;</td>\n"
  4620. " <td>&nbsp;</td>\n"
  4621. " </tr>\n"
  4622. " <tr height=\"20\">\n"
  4623. " <td height=\"20\"><strong>Del</strong></td>\n"
  4624. " <td>&nbsp;Delete</td>\n"
  4625. " </tr>\n"
  4626. " <tr height=\"20\">\n"
  4627. " <td height=\"20\"><strong>Del</strong></td>\n"
  4628. " <td>&nbsp;Alternate: Delete Apertures</td>\n"
  4629. " </tr>\n"
  4630. " <tr height=\"20\">\n"
  4631. " <td height=\"20\">&nbsp;</td>\n"
  4632. " <td>&nbsp;</td>\n"
  4633. " </tr>\n"
  4634. " <tr height=\"20\">\n"
  4635. " <td height=\"20\"><strong>ESC</strong></td>\n"
  4636. " <td>&nbsp;Abort and return to Select</td>\n"
  4637. " </tr>\n"
  4638. " <tr height=\"20\">\n"
  4639. " <td height=\"20\"><strong>CTRL+E</strong></td>\n"
  4640. " <td>&nbsp;Eraser Tool</td>\n"
  4641. " </tr>\n"
  4642. " <tr height=\"20\">\n"
  4643. " <td height=\"20\"><strong>CTRL+S</strong></td>\n"
  4644. " <td>&nbsp;Save Object and Exit Editor</td>\n"
  4645. " </tr>\n"
  4646. " <tr height=\"20\">\n"
  4647. " <td height=\"20\">&nbsp;</td>\n"
  4648. " <td>&nbsp;</td>\n"
  4649. " </tr>\n"
  4650. " <tr height=\"20\">\n"
  4651. " <td height=\"20\"><strong>ALT+A</strong></td>\n"
  4652. " <td>&nbsp;Mark Area Tool</td>\n"
  4653. " </tr>\n"
  4654. " <tr height=\"20\">\n"
  4655. " <td height=\"20\"><strong>ALT+N</strong></td>\n"
  4656. " <td>&nbsp;Poligonize Tool</td>\n"
  4657. " </tr>\n"
  4658. " <tr height=\"20\">\n"
  4659. " <td height=\"20\"><strong>ALT+R</strong></td>\n"
  4660. " <td>&nbsp;Transformation Tool</td>\n"
  4661. " </tr>\n"
  4662. " </tbody>\n"
  4663. " </table>\n"
  4664. " "
  4665. msgstr ""
  4666. #: flatcamGUI/FlatCAMGUI.py:1642
  4667. msgid "Toggle Visibility"
  4668. msgstr ""
  4669. #: flatcamGUI/FlatCAMGUI.py:1643
  4670. msgid "Toggle Panel"
  4671. msgstr ""
  4672. #: flatcamGUI/FlatCAMGUI.py:1646
  4673. msgid "New"
  4674. msgstr ""
  4675. #: flatcamGUI/FlatCAMGUI.py:1647
  4676. msgid "Geometry"
  4677. msgstr ""
  4678. #: flatcamGUI/FlatCAMGUI.py:1649
  4679. msgid "Excellon"
  4680. msgstr ""
  4681. #: flatcamGUI/FlatCAMGUI.py:1654
  4682. msgid "Grids"
  4683. msgstr ""
  4684. #: flatcamGUI/FlatCAMGUI.py:1656
  4685. msgid "View"
  4686. msgstr ""
  4687. #: flatcamGUI/FlatCAMGUI.py:1658
  4688. msgid "Clear Plot"
  4689. msgstr ""
  4690. #: flatcamGUI/FlatCAMGUI.py:1659
  4691. msgid "Replot"
  4692. msgstr ""
  4693. #: flatcamGUI/FlatCAMGUI.py:1662
  4694. msgid "Geo Editor"
  4695. msgstr ""
  4696. #: flatcamGUI/FlatCAMGUI.py:1663
  4697. msgid "Path"
  4698. msgstr ""
  4699. #: flatcamGUI/FlatCAMGUI.py:1664
  4700. msgid "Rectangle"
  4701. msgstr ""
  4702. #: flatcamGUI/FlatCAMGUI.py:1666
  4703. msgid "Circle"
  4704. msgstr ""
  4705. #: flatcamGUI/FlatCAMGUI.py:1667
  4706. msgid "Polygon"
  4707. msgstr ""
  4708. #: flatcamGUI/FlatCAMGUI.py:1668
  4709. msgid "Arc"
  4710. msgstr ""
  4711. #: flatcamGUI/FlatCAMGUI.py:1671
  4712. msgid "Text"
  4713. msgstr ""
  4714. #: flatcamGUI/FlatCAMGUI.py:1677
  4715. msgid "Union"
  4716. msgstr ""
  4717. #: flatcamGUI/FlatCAMGUI.py:1678
  4718. msgid "Intersection"
  4719. msgstr ""
  4720. #: flatcamGUI/FlatCAMGUI.py:1679
  4721. msgid "Substraction"
  4722. msgstr ""
  4723. #: flatcamGUI/FlatCAMGUI.py:1680 flatcamGUI/FlatCAMGUI.py:6175
  4724. #: flatcamGUI/ObjectUI.py:1409
  4725. msgid "Cut"
  4726. msgstr ""
  4727. #: flatcamGUI/FlatCAMGUI.py:1687
  4728. msgid "Pad"
  4729. msgstr ""
  4730. #: flatcamGUI/FlatCAMGUI.py:1688
  4731. msgid "Pad Array"
  4732. msgstr ""
  4733. #: flatcamGUI/FlatCAMGUI.py:1691
  4734. msgid "Track"
  4735. msgstr ""
  4736. #: flatcamGUI/FlatCAMGUI.py:1692
  4737. msgid "Region"
  4738. msgstr ""
  4739. #: flatcamGUI/FlatCAMGUI.py:1708
  4740. msgid "Exc Editor"
  4741. msgstr ""
  4742. #: flatcamGUI/FlatCAMGUI.py:1709
  4743. msgid "Add Drill"
  4744. msgstr ""
  4745. #: flatcamGUI/FlatCAMGUI.py:1745
  4746. msgid "Print Preview"
  4747. msgstr ""
  4748. #: flatcamGUI/FlatCAMGUI.py:1746
  4749. msgid "Print Code"
  4750. msgstr ""
  4751. #: flatcamGUI/FlatCAMGUI.py:1747
  4752. msgid "Find in Code"
  4753. msgstr ""
  4754. #: flatcamGUI/FlatCAMGUI.py:1752
  4755. msgid "Replace With"
  4756. msgstr ""
  4757. #: flatcamGUI/FlatCAMGUI.py:1756 flatcamGUI/FlatCAMGUI.py:6173
  4758. #: flatcamGUI/FlatCAMGUI.py:6966 flatcamGUI/ObjectUI.py:1407
  4759. msgid "All"
  4760. msgstr ""
  4761. #: flatcamGUI/FlatCAMGUI.py:1758
  4762. msgid ""
  4763. "When checked it will replace all instances in the 'Find' box\n"
  4764. "with the text in the 'Replace' box.."
  4765. msgstr ""
  4766. #: flatcamGUI/FlatCAMGUI.py:1761
  4767. msgid "Open Code"
  4768. msgstr ""
  4769. #: flatcamGUI/FlatCAMGUI.py:1762
  4770. msgid "Save Code"
  4771. msgstr ""
  4772. #: flatcamGUI/FlatCAMGUI.py:1797
  4773. msgid ""
  4774. "Relative neasurement.\n"
  4775. "Reference is last click position"
  4776. msgstr ""
  4777. #: flatcamGUI/FlatCAMGUI.py:1803
  4778. msgid ""
  4779. "Absolute neasurement.\n"
  4780. "Reference is (X=0, Y= 0) position"
  4781. msgstr ""
  4782. #: flatcamGUI/FlatCAMGUI.py:1933
  4783. msgid "Lock Toolbars"
  4784. msgstr ""
  4785. #: flatcamGUI/FlatCAMGUI.py:2038
  4786. msgid "Select 'Esc'"
  4787. msgstr ""
  4788. #: flatcamGUI/FlatCAMGUI.py:2063
  4789. msgid "Copy Objects"
  4790. msgstr ""
  4791. #: flatcamGUI/FlatCAMGUI.py:2065
  4792. msgid "Delete Shape"
  4793. msgstr ""
  4794. #: flatcamGUI/FlatCAMGUI.py:2070
  4795. msgid "Move Objects"
  4796. msgstr ""
  4797. #: flatcamGUI/FlatCAMGUI.py:2506
  4798. msgid ""
  4799. "Please first select a geometry item to be cutted\n"
  4800. "then select the geometry item that will be cutted\n"
  4801. "out of the first item. In the end press ~X~ key or\n"
  4802. "the toolbar button."
  4803. msgstr ""
  4804. #: flatcamGUI/FlatCAMGUI.py:2513 flatcamGUI/FlatCAMGUI.py:2650
  4805. #: flatcamGUI/FlatCAMGUI.py:2709 flatcamGUI/FlatCAMGUI.py:2729
  4806. msgid "Warning"
  4807. msgstr ""
  4808. #: flatcamGUI/FlatCAMGUI.py:2560 flatcamGUI/FlatCAMGUI.py:2572
  4809. msgid "[success] Done."
  4810. msgstr ""
  4811. #: flatcamGUI/FlatCAMGUI.py:2580 flatcamGUI/FlatCAMGUI.py:2788
  4812. #: flatcamGUI/FlatCAMGUI.py:2999
  4813. msgid "[WARNING_NOTCL] Cancelled."
  4814. msgstr ""
  4815. #: flatcamGUI/FlatCAMGUI.py:2645
  4816. msgid ""
  4817. "Please select geometry items \n"
  4818. "on which to perform Intersection Tool."
  4819. msgstr ""
  4820. #: flatcamGUI/FlatCAMGUI.py:2704
  4821. msgid ""
  4822. "Please select geometry items \n"
  4823. "on which to perform Substraction Tool."
  4824. msgstr ""
  4825. #: flatcamGUI/FlatCAMGUI.py:2724
  4826. msgid ""
  4827. "Please select geometry items \n"
  4828. "on which to perform union."
  4829. msgstr ""
  4830. #: flatcamGUI/FlatCAMGUI.py:2804 flatcamGUI/FlatCAMGUI.py:3016
  4831. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to delete."
  4832. msgstr ""
  4833. #: flatcamGUI/FlatCAMGUI.py:2888 flatcamGUI/FlatCAMGUI.py:3083
  4834. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to copy."
  4835. msgstr ""
  4836. #: flatcamGUI/FlatCAMGUI.py:2934 flatcamGUI/FlatCAMGUI.py:3129
  4837. msgid "[WARNING_NOTCL] Cancelled. Nothing selected to move."
  4838. msgstr ""
  4839. #: flatcamGUI/FlatCAMGUI.py:3155
  4840. msgid "New Tool ..."
  4841. msgstr ""
  4842. #: flatcamGUI/FlatCAMGUI.py:3156
  4843. msgid "Enter a Tool Diameter"
  4844. msgstr ""
  4845. #: flatcamGUI/FlatCAMGUI.py:3164
  4846. #, python-brace-format
  4847. msgid "[success] Added new tool with dia: {dia} {units}"
  4848. msgstr ""
  4849. #: flatcamGUI/FlatCAMGUI.py:3211
  4850. msgid "Measurement Tool exit..."
  4851. msgstr ""
  4852. #: flatcamGUI/FlatCAMGUI.py:3312
  4853. msgid "[WARNING_NOTCL] Application is saving the project. Please wait ..."
  4854. msgstr ""
  4855. #: flatcamGUI/FlatCAMGUI.py:3554
  4856. msgid "GUI Preferences"
  4857. msgstr ""
  4858. #: flatcamGUI/FlatCAMGUI.py:3560
  4859. msgid "Grid X value"
  4860. msgstr ""
  4861. #: flatcamGUI/FlatCAMGUI.py:3562
  4862. msgid "This is the Grid snap value on X axis."
  4863. msgstr ""
  4864. #: flatcamGUI/FlatCAMGUI.py:3567
  4865. msgid "Grid Y value"
  4866. msgstr ""
  4867. #: flatcamGUI/FlatCAMGUI.py:3569
  4868. msgid "This is the Grid snap value on Y axis."
  4869. msgstr ""
  4870. #: flatcamGUI/FlatCAMGUI.py:3574
  4871. msgid "Snap Max"
  4872. msgstr ""
  4873. #: flatcamGUI/FlatCAMGUI.py:3579
  4874. msgid "Workspace"
  4875. msgstr ""
  4876. #: flatcamGUI/FlatCAMGUI.py:3581
  4877. msgid ""
  4878. "Draw a delimiting rectangle on canvas.\n"
  4879. "The purpose is to illustrate the limits for our work."
  4880. msgstr ""
  4881. #: flatcamGUI/FlatCAMGUI.py:3584
  4882. msgid "Wk. format"
  4883. msgstr ""
  4884. #: flatcamGUI/FlatCAMGUI.py:3586
  4885. msgid ""
  4886. "Select the type of rectangle to be used on canvas,\n"
  4887. "as valid workspace."
  4888. msgstr ""
  4889. #: flatcamGUI/FlatCAMGUI.py:3599
  4890. msgid "Plot Fill"
  4891. msgstr ""
  4892. #: flatcamGUI/FlatCAMGUI.py:3601
  4893. msgid ""
  4894. "Set the fill color for plotted objects.\n"
  4895. "First 6 digits are the color and the last 2\n"
  4896. "digits are for alpha (transparency) level."
  4897. msgstr ""
  4898. #: flatcamGUI/FlatCAMGUI.py:3615 flatcamGUI/FlatCAMGUI.py:3665
  4899. #: flatcamGUI/FlatCAMGUI.py:3715
  4900. msgid "Alpha Level"
  4901. msgstr ""
  4902. #: flatcamGUI/FlatCAMGUI.py:3617
  4903. msgid "Set the fill transparency for plotted objects."
  4904. msgstr ""
  4905. #: flatcamGUI/FlatCAMGUI.py:3634
  4906. msgid "Plot Line"
  4907. msgstr ""
  4908. #: flatcamGUI/FlatCAMGUI.py:3636
  4909. msgid "Set the line color for plotted objects."
  4910. msgstr ""
  4911. #: flatcamGUI/FlatCAMGUI.py:3648
  4912. msgid "Sel. Fill"
  4913. msgstr ""
  4914. #: flatcamGUI/FlatCAMGUI.py:3650
  4915. msgid ""
  4916. "Set the fill color for the selection box\n"
  4917. "in case that the selection is done from left to right.\n"
  4918. "First 6 digits are the color and the last 2\n"
  4919. "digits are for alpha (transparency) level."
  4920. msgstr ""
  4921. #: flatcamGUI/FlatCAMGUI.py:3667
  4922. msgid "Set the fill transparency for the 'left to right' selection box."
  4923. msgstr ""
  4924. #: flatcamGUI/FlatCAMGUI.py:3684
  4925. msgid "Sel. Line"
  4926. msgstr ""
  4927. #: flatcamGUI/FlatCAMGUI.py:3686
  4928. msgid "Set the line color for the 'left to right' selection box."
  4929. msgstr ""
  4930. #: flatcamGUI/FlatCAMGUI.py:3698
  4931. msgid "Sel2. Fill"
  4932. msgstr ""
  4933. #: flatcamGUI/FlatCAMGUI.py:3700
  4934. msgid ""
  4935. "Set the fill color for the selection box\n"
  4936. "in case that the selection is done from right to left.\n"
  4937. "First 6 digits are the color and the last 2\n"
  4938. "digits are for alpha (transparency) level."
  4939. msgstr ""
  4940. #: flatcamGUI/FlatCAMGUI.py:3717
  4941. msgid "Set the fill transparency for selection 'right to left' box."
  4942. msgstr ""
  4943. #: flatcamGUI/FlatCAMGUI.py:3734
  4944. msgid "Sel2. Line"
  4945. msgstr ""
  4946. #: flatcamGUI/FlatCAMGUI.py:3736
  4947. msgid "Set the line color for the 'right to left' selection box."
  4948. msgstr ""
  4949. #: flatcamGUI/FlatCAMGUI.py:3748
  4950. msgid "Editor Draw"
  4951. msgstr ""
  4952. #: flatcamGUI/FlatCAMGUI.py:3750
  4953. msgid "Set the color for the shape."
  4954. msgstr ""
  4955. #: flatcamGUI/FlatCAMGUI.py:3762
  4956. msgid "Editor Draw Sel."
  4957. msgstr ""
  4958. #: flatcamGUI/FlatCAMGUI.py:3764
  4959. msgid "Set the color of the shape when selected."
  4960. msgstr ""
  4961. #: flatcamGUI/FlatCAMGUI.py:3776
  4962. msgid "Project Items"
  4963. msgstr ""
  4964. #: flatcamGUI/FlatCAMGUI.py:3778
  4965. msgid "Set the color of the items in Project Tab Tree."
  4966. msgstr ""
  4967. #: flatcamGUI/FlatCAMGUI.py:3789
  4968. msgid "Proj. Dis. Items"
  4969. msgstr ""
  4970. #: flatcamGUI/FlatCAMGUI.py:3791
  4971. msgid ""
  4972. "Set the color of the items in Project Tab Tree,\n"
  4973. "for the case when the items are disabled."
  4974. msgstr ""
  4975. #: flatcamGUI/FlatCAMGUI.py:3842
  4976. msgid "GUI Settings"
  4977. msgstr ""
  4978. #: flatcamGUI/FlatCAMGUI.py:3848
  4979. msgid "Layout"
  4980. msgstr ""
  4981. #: flatcamGUI/FlatCAMGUI.py:3850
  4982. msgid ""
  4983. "Select an layout for FlatCAM.\n"
  4984. "It is applied immediately."
  4985. msgstr ""
  4986. #: flatcamGUI/FlatCAMGUI.py:3866
  4987. msgid "Style"
  4988. msgstr ""
  4989. #: flatcamGUI/FlatCAMGUI.py:3868
  4990. msgid ""
  4991. "Select an style for FlatCAM.\n"
  4992. "It will be applied at the next app start."
  4993. msgstr ""
  4994. #: flatcamGUI/FlatCAMGUI.py:3879
  4995. msgid "HDPI Support"
  4996. msgstr ""
  4997. #: flatcamGUI/FlatCAMGUI.py:3881
  4998. msgid ""
  4999. "Enable High DPI support for FlatCAM.\n"
  5000. "It will be applied at the next app start."
  5001. msgstr ""
  5002. #: flatcamGUI/FlatCAMGUI.py:3894 flatcamGUI/FlatCAMGUI.py:3994
  5003. msgid "Clear GUI Settings"
  5004. msgstr ""
  5005. #: flatcamGUI/FlatCAMGUI.py:3896
  5006. msgid ""
  5007. "Clear the GUI settings for FlatCAM,\n"
  5008. "such as: layout, gui state, style, hdpi support etc."
  5009. msgstr ""
  5010. #: flatcamGUI/FlatCAMGUI.py:3899
  5011. msgid "Clear"
  5012. msgstr ""
  5013. #: flatcamGUI/FlatCAMGUI.py:3903
  5014. msgid "Hover Shape"
  5015. msgstr ""
  5016. #: flatcamGUI/FlatCAMGUI.py:3905
  5017. msgid ""
  5018. "Enable display of a hover shape for FlatCAM objects.\n"
  5019. "It is displayed whenever the mouse cursor is hovering\n"
  5020. "over any kind of not-selected object."
  5021. msgstr ""
  5022. #: flatcamGUI/FlatCAMGUI.py:3912
  5023. msgid "Sel. Shape"
  5024. msgstr ""
  5025. #: flatcamGUI/FlatCAMGUI.py:3914
  5026. msgid ""
  5027. "Enable the display of a selection shape for FlatCAM objects.\n"
  5028. "It is displayed whenever the mouse selects an object\n"
  5029. "either by clicking or dragging mouse from left to right or\n"
  5030. "right to left."
  5031. msgstr ""
  5032. #: flatcamGUI/FlatCAMGUI.py:3921
  5033. msgid "NB Font Size"
  5034. msgstr ""
  5035. #: flatcamGUI/FlatCAMGUI.py:3923
  5036. msgid ""
  5037. "This sets the font size for the elements found in the Notebook.\n"
  5038. "The notebook is the collapsible area in the left side of the GUI,\n"
  5039. "and include the Project, Selected and Tool tabs."
  5040. msgstr ""
  5041. #: flatcamGUI/FlatCAMGUI.py:3938
  5042. msgid "Axis Font Size"
  5043. msgstr ""
  5044. #: flatcamGUI/FlatCAMGUI.py:3940
  5045. msgid "This sets the font size for canvas axis."
  5046. msgstr ""
  5047. #: flatcamGUI/FlatCAMGUI.py:3991
  5048. msgid "Are you sure you want to delete the GUI Settings? \n"
  5049. msgstr ""
  5050. #: flatcamGUI/FlatCAMGUI.py:4015
  5051. msgid "App Preferences"
  5052. msgstr ""
  5053. #: flatcamGUI/FlatCAMGUI.py:4021 flatcamGUI/FlatCAMGUI.py:4549
  5054. #: flatcamGUI/FlatCAMGUI.py:5374 flatcamTools/ToolMeasurement.py:43
  5055. #: flatcamTools/ToolPcbWizard.py:127 flatcamTools/ToolProperties.py:133
  5056. msgid "Units"
  5057. msgstr ""
  5058. #: flatcamGUI/FlatCAMGUI.py:4022
  5059. msgid ""
  5060. "The default value for FlatCAM units.\n"
  5061. "Whatever is selected here is set every time\n"
  5062. "FLatCAM is started."
  5063. msgstr ""
  5064. #: flatcamGUI/FlatCAMGUI.py:4025
  5065. msgid "IN"
  5066. msgstr ""
  5067. #: flatcamGUI/FlatCAMGUI.py:4026 flatcamGUI/FlatCAMGUI.py:4555
  5068. #: flatcamGUI/FlatCAMGUI.py:4987 flatcamGUI/FlatCAMGUI.py:5380
  5069. #: flatcamTools/ToolCalculators.py:61 flatcamTools/ToolPcbWizard.py:126
  5070. msgid "MM"
  5071. msgstr ""
  5072. #: flatcamGUI/FlatCAMGUI.py:4029
  5073. msgid "APP. LEVEL"
  5074. msgstr ""
  5075. #: flatcamGUI/FlatCAMGUI.py:4030
  5076. msgid ""
  5077. "Choose the default level of usage for FlatCAM.\n"
  5078. "BASIC level -> reduced functionality, best for beginner's.\n"
  5079. "ADVANCED level -> full functionality.\n"
  5080. "\n"
  5081. "The choice here will influence the parameters in\n"
  5082. "the Selected Tab for all kinds of FlatCAM objects."
  5083. msgstr ""
  5084. #: flatcamGUI/FlatCAMGUI.py:4035 flatcamGUI/FlatCAMGUI.py:5014
  5085. msgid "Basic"
  5086. msgstr ""
  5087. #: flatcamGUI/FlatCAMGUI.py:4036
  5088. msgid "Advanced"
  5089. msgstr ""
  5090. #: flatcamGUI/FlatCAMGUI.py:4039
  5091. msgid "Portable app"
  5092. msgstr ""
  5093. #: flatcamGUI/FlatCAMGUI.py:4040
  5094. msgid ""
  5095. "Choose if the application should run as portable.\n"
  5096. "\n"
  5097. "If Checked the application will run portable,\n"
  5098. "which means that the preferences files will be saved\n"
  5099. "in the application folder, in the lib\\config subfolder."
  5100. msgstr ""
  5101. #: flatcamGUI/FlatCAMGUI.py:4047
  5102. msgid "Languages"
  5103. msgstr ""
  5104. #: flatcamGUI/FlatCAMGUI.py:4048
  5105. msgid "Set the language used throughout FlatCAM."
  5106. msgstr ""
  5107. #: flatcamGUI/FlatCAMGUI.py:4051
  5108. msgid "Apply Language"
  5109. msgstr ""
  5110. #: flatcamGUI/FlatCAMGUI.py:4052
  5111. msgid ""
  5112. "Set the language used throughout FlatCAM.\n"
  5113. "The app will restart after click.Windows: When FlatCAM is installed in "
  5114. "Program Files\n"
  5115. "directory, it is possible that the app will not\n"
  5116. "restart after the button is clicked due of Windows\n"
  5117. "security features. In this case the language will be\n"
  5118. "applied at the next app start."
  5119. msgstr ""
  5120. #: flatcamGUI/FlatCAMGUI.py:4061
  5121. msgid "Shell at StartUp"
  5122. msgstr ""
  5123. #: flatcamGUI/FlatCAMGUI.py:4063 flatcamGUI/FlatCAMGUI.py:4068
  5124. msgid ""
  5125. "Check this box if you want the shell to\n"
  5126. "start automatically at startup."
  5127. msgstr ""
  5128. #: flatcamGUI/FlatCAMGUI.py:4073
  5129. msgid "Version Check"
  5130. msgstr ""
  5131. #: flatcamGUI/FlatCAMGUI.py:4075 flatcamGUI/FlatCAMGUI.py:4080
  5132. msgid ""
  5133. "Check this box if you want to check\n"
  5134. "for a new version automatically at startup."
  5135. msgstr ""
  5136. #: flatcamGUI/FlatCAMGUI.py:4085
  5137. msgid "Send Stats"
  5138. msgstr ""
  5139. #: flatcamGUI/FlatCAMGUI.py:4087 flatcamGUI/FlatCAMGUI.py:4092
  5140. msgid ""
  5141. "Check this box if you agree to send anonymous\n"
  5142. "stats automatically at startup, to help improve FlatCAM."
  5143. msgstr ""
  5144. #: flatcamGUI/FlatCAMGUI.py:4099
  5145. msgid "Pan Button"
  5146. msgstr ""
  5147. #: flatcamGUI/FlatCAMGUI.py:4100
  5148. msgid ""
  5149. "Select the mouse button to use for panning:\n"
  5150. "- MMB --> Middle Mouse Button\n"
  5151. "- RMB --> Right Mouse Button"
  5152. msgstr ""
  5153. #: flatcamGUI/FlatCAMGUI.py:4103
  5154. msgid "MMB"
  5155. msgstr ""
  5156. #: flatcamGUI/FlatCAMGUI.py:4104
  5157. msgid "RMB"
  5158. msgstr ""
  5159. #: flatcamGUI/FlatCAMGUI.py:4107
  5160. msgid "Multiple Sel"
  5161. msgstr ""
  5162. #: flatcamGUI/FlatCAMGUI.py:4108
  5163. msgid "Select the key used for multiple selection."
  5164. msgstr ""
  5165. #: flatcamGUI/FlatCAMGUI.py:4109
  5166. msgid "CTRL"
  5167. msgstr ""
  5168. #: flatcamGUI/FlatCAMGUI.py:4110
  5169. msgid "SHIFT"
  5170. msgstr ""
  5171. #: flatcamGUI/FlatCAMGUI.py:4113
  5172. msgid "Project at StartUp"
  5173. msgstr ""
  5174. #: flatcamGUI/FlatCAMGUI.py:4115 flatcamGUI/FlatCAMGUI.py:4120
  5175. msgid ""
  5176. "Check this box if you want the project/selected/tool tab area to\n"
  5177. "to be shown automatically at startup."
  5178. msgstr ""
  5179. #: flatcamGUI/FlatCAMGUI.py:4125
  5180. msgid "Project AutoHide"
  5181. msgstr ""
  5182. #: flatcamGUI/FlatCAMGUI.py:4127 flatcamGUI/FlatCAMGUI.py:4133
  5183. msgid ""
  5184. "Check this box if you want the project/selected/tool tab area to\n"
  5185. "hide automatically when there are no objects loaded and\n"
  5186. "to show whenever a new object is created."
  5187. msgstr ""
  5188. #: flatcamGUI/FlatCAMGUI.py:4139
  5189. msgid "Enable ToolTips"
  5190. msgstr ""
  5191. #: flatcamGUI/FlatCAMGUI.py:4141 flatcamGUI/FlatCAMGUI.py:4146
  5192. msgid ""
  5193. "Check this box if you want to have toolTips displayed\n"
  5194. "when hovering with mouse over items throughout the App."
  5195. msgstr ""
  5196. #: flatcamGUI/FlatCAMGUI.py:4149
  5197. msgid "Workers number"
  5198. msgstr ""
  5199. #: flatcamGUI/FlatCAMGUI.py:4151 flatcamGUI/FlatCAMGUI.py:4160
  5200. msgid ""
  5201. "The number of Qthreads made available to the App.\n"
  5202. "A bigger number may finish the jobs more quickly but\n"
  5203. "depending on your computer speed, may make the App\n"
  5204. "unresponsive. Can have a value between 2 and 16.\n"
  5205. "Default value is 2.\n"
  5206. "After change, it will be applied at next App start."
  5207. msgstr ""
  5208. #: flatcamGUI/FlatCAMGUI.py:4170
  5209. msgid "Geo Tolerance"
  5210. msgstr ""
  5211. #: flatcamGUI/FlatCAMGUI.py:4172 flatcamGUI/FlatCAMGUI.py:4181
  5212. msgid ""
  5213. "This value can counter the effect of the Circle Steps\n"
  5214. "parameter. Default value is 0.01.\n"
  5215. "A lower value will increase the detail both in image\n"
  5216. "and in Gcode for the circles, with a higher cost in\n"
  5217. "performance. Higher value will provide more\n"
  5218. "performance at the expense of level of detail."
  5219. msgstr ""
  5220. #: flatcamGUI/FlatCAMGUI.py:4220
  5221. msgid "\"Open\" behavior"
  5222. msgstr ""
  5223. #: flatcamGUI/FlatCAMGUI.py:4222
  5224. msgid ""
  5225. "When checked the path for the last saved file is used when saving files,\n"
  5226. "and the path for the last opened file is used when opening files.\n"
  5227. "\n"
  5228. "When unchecked the path for opening files is the one used last: either the\n"
  5229. "path for saving files or the path for opening files."
  5230. msgstr ""
  5231. #: flatcamGUI/FlatCAMGUI.py:4231
  5232. msgid "Delete object confirmation"
  5233. msgstr ""
  5234. #: flatcamGUI/FlatCAMGUI.py:4233
  5235. msgid ""
  5236. "When checked the application will ask for user confirmation\n"
  5237. "whenever the Delete object(s) event is triggered, either by\n"
  5238. "menu shortcut or key shortcut."
  5239. msgstr ""
  5240. #: flatcamGUI/FlatCAMGUI.py:4240
  5241. msgid "Save Compressed Project"
  5242. msgstr ""
  5243. #: flatcamGUI/FlatCAMGUI.py:4242
  5244. msgid ""
  5245. "Whether to save a compressed or uncompressed project.\n"
  5246. "When checked it will save a compressed FlatCAM project."
  5247. msgstr ""
  5248. #: flatcamGUI/FlatCAMGUI.py:4253
  5249. msgid "Compression Level"
  5250. msgstr ""
  5251. #: flatcamGUI/FlatCAMGUI.py:4255
  5252. msgid ""
  5253. "The level of compression used when saving\n"
  5254. "a FlatCAM project. Higher value means better compression\n"
  5255. "but require more RAM usage and more processing time."
  5256. msgstr ""
  5257. #: flatcamGUI/FlatCAMGUI.py:4281
  5258. msgid "Gerber General"
  5259. msgstr ""
  5260. #: flatcamGUI/FlatCAMGUI.py:4284 flatcamGUI/FlatCAMGUI.py:4838
  5261. #: flatcamGUI/FlatCAMGUI.py:5768 flatcamGUI/FlatCAMGUI.py:6149
  5262. #: flatcamGUI/ObjectUI.py:150 flatcamGUI/ObjectUI.py:562
  5263. #: flatcamGUI/ObjectUI.py:894 flatcamGUI/ObjectUI.py:1393
  5264. msgid "Plot Options"
  5265. msgstr ""
  5266. #: flatcamGUI/FlatCAMGUI.py:4291 flatcamGUI/FlatCAMGUI.py:4850
  5267. #: flatcamGUI/ObjectUI.py:156 flatcamGUI/ObjectUI.py:563
  5268. msgid "Solid"
  5269. msgstr ""
  5270. #: flatcamGUI/FlatCAMGUI.py:4293 flatcamGUI/ObjectUI.py:158
  5271. msgid "Solid color polygons."
  5272. msgstr ""
  5273. #: flatcamGUI/FlatCAMGUI.py:4298 flatcamGUI/ObjectUI.py:164
  5274. msgid "M-Color"
  5275. msgstr ""
  5276. #: flatcamGUI/FlatCAMGUI.py:4300 flatcamGUI/ObjectUI.py:166
  5277. msgid "Draw polygons in different colors."
  5278. msgstr ""
  5279. #: flatcamGUI/FlatCAMGUI.py:4305 flatcamGUI/FlatCAMGUI.py:4844
  5280. #: flatcamGUI/FlatCAMGUI.py:5772 flatcamGUI/ObjectUI.py:172
  5281. #: flatcamGUI/ObjectUI.py:601
  5282. msgid "Plot"
  5283. msgstr ""
  5284. #: flatcamGUI/FlatCAMGUI.py:4307 flatcamGUI/FlatCAMGUI.py:5774
  5285. #: flatcamGUI/FlatCAMGUI.py:6160 flatcamGUI/ObjectUI.py:174
  5286. #: flatcamGUI/ObjectUI.py:603 flatcamGUI/ObjectUI.py:940
  5287. #: flatcamGUI/ObjectUI.py:1503
  5288. msgid "Plot (show) this object."
  5289. msgstr ""
  5290. #: flatcamGUI/FlatCAMGUI.py:4312 flatcamGUI/FlatCAMGUI.py:5782
  5291. #: flatcamGUI/FlatCAMGUI.py:6230
  5292. msgid "Circle Steps"
  5293. msgstr ""
  5294. #: flatcamGUI/FlatCAMGUI.py:4314
  5295. msgid ""
  5296. "The number of circle steps for Gerber \n"
  5297. "circular aperture linear approximation."
  5298. msgstr ""
  5299. #: flatcamGUI/FlatCAMGUI.py:4324
  5300. msgid ""
  5301. "Buffering type:\n"
  5302. "- None --> best performance, fast file loading but no so good display\n"
  5303. "- Full --> slow file loading but good visuals. This is the default.\n"
  5304. "<<WARNING>>: Don't change this unless you know what you are doing !!!"
  5305. msgstr ""
  5306. #: flatcamGUI/FlatCAMGUI.py:4329 flatcamTools/ToolProperties.py:298
  5307. #: flatcamTools/ToolProperties.py:312 flatcamTools/ToolProperties.py:315
  5308. #: flatcamTools/ToolProperties.py:318
  5309. msgid "None"
  5310. msgstr ""
  5311. #: flatcamGUI/FlatCAMGUI.py:4330
  5312. msgid "Full"
  5313. msgstr ""
  5314. #: flatcamGUI/FlatCAMGUI.py:4342
  5315. msgid "Gerber Options"
  5316. msgstr ""
  5317. #: flatcamGUI/FlatCAMGUI.py:4345 flatcamGUI/ObjectUI.py:250
  5318. msgid "Isolation Routing"
  5319. msgstr ""
  5320. #: flatcamGUI/FlatCAMGUI.py:4347 flatcamGUI/ObjectUI.py:252
  5321. msgid ""
  5322. "Create a Geometry object with\n"
  5323. "toolpaths to cut outside polygons."
  5324. msgstr ""
  5325. #: flatcamGUI/FlatCAMGUI.py:4358 flatcamGUI/FlatCAMGUI.py:5214
  5326. #: flatcamGUI/ObjectUI.py:848
  5327. msgid "Diameter of the cutting tool."
  5328. msgstr ""
  5329. #: flatcamGUI/FlatCAMGUI.py:4365 flatcamGUI/ObjectUI.py:277
  5330. msgid "# Passes"
  5331. msgstr ""
  5332. #: flatcamGUI/FlatCAMGUI.py:4367 flatcamGUI/ObjectUI.py:279
  5333. msgid ""
  5334. "Width of the isolation gap in\n"
  5335. "number (integer) of tool widths."
  5336. msgstr ""
  5337. #: flatcamGUI/FlatCAMGUI.py:4376 flatcamGUI/ObjectUI.py:288
  5338. msgid "Pass overlap"
  5339. msgstr ""
  5340. #: flatcamGUI/FlatCAMGUI.py:4378 flatcamGUI/ObjectUI.py:290
  5341. #, python-format
  5342. msgid ""
  5343. "How much (fraction) of the tool width to overlap each tool pass.\n"
  5344. "Example:\n"
  5345. "A value here of 0.25 means an overlap of 25% from the tool diameter found "
  5346. "above."
  5347. msgstr ""
  5348. #: flatcamGUI/FlatCAMGUI.py:4387 flatcamGUI/FlatCAMGUI.py:6490
  5349. #: flatcamGUI/ObjectUI.py:300 flatcamTools/ToolNonCopperClear.py:147
  5350. msgid "Milling Type"
  5351. msgstr ""
  5352. #: flatcamGUI/FlatCAMGUI.py:4389 flatcamGUI/ObjectUI.py:302
  5353. msgid ""
  5354. "Milling type:\n"
  5355. "- climb / best for precision milling and to reduce tool usage\n"
  5356. "- conventional / useful when there is no backlash compensation"
  5357. msgstr ""
  5358. #: flatcamGUI/FlatCAMGUI.py:4394 flatcamGUI/FlatCAMGUI.py:6497
  5359. #: flatcamGUI/ObjectUI.py:306 flatcamTools/ToolNonCopperClear.py:154
  5360. msgid "Climb"
  5361. msgstr ""
  5362. #: flatcamGUI/FlatCAMGUI.py:4395 flatcamGUI/FlatCAMGUI.py:6498
  5363. #: flatcamGUI/ObjectUI.py:307 flatcamTools/ToolNonCopperClear.py:155
  5364. msgid "Conv."
  5365. msgstr ""
  5366. #: flatcamGUI/FlatCAMGUI.py:4399 flatcamGUI/ObjectUI.py:312
  5367. msgid "Combine Passes"
  5368. msgstr ""
  5369. #: flatcamGUI/FlatCAMGUI.py:4401 flatcamGUI/ObjectUI.py:314
  5370. msgid "Combine all passes into one object"
  5371. msgstr ""
  5372. #: flatcamGUI/FlatCAMGUI.py:4406 flatcamGUI/ObjectUI.py:477
  5373. msgid "Non-copper regions"
  5374. msgstr ""
  5375. #: flatcamGUI/FlatCAMGUI.py:4408 flatcamGUI/ObjectUI.py:479
  5376. msgid ""
  5377. "Create polygons covering the\n"
  5378. "areas without copper on the PCB.\n"
  5379. "Equivalent to the inverse of this\n"
  5380. "object. Can be used to remove all\n"
  5381. "copper from a specified region."
  5382. msgstr ""
  5383. #: flatcamGUI/FlatCAMGUI.py:4420 flatcamGUI/FlatCAMGUI.py:4445
  5384. #: flatcamGUI/ObjectUI.py:489 flatcamGUI/ObjectUI.py:521
  5385. msgid "Boundary Margin"
  5386. msgstr ""
  5387. #: flatcamGUI/FlatCAMGUI.py:4422 flatcamGUI/ObjectUI.py:491
  5388. msgid ""
  5389. "Specify the edge of the PCB\n"
  5390. "by drawing a box around all\n"
  5391. "objects with this minimum\n"
  5392. "distance."
  5393. msgstr ""
  5394. #: flatcamGUI/FlatCAMGUI.py:4432 flatcamGUI/FlatCAMGUI.py:4454
  5395. #: flatcamGUI/ObjectUI.py:502 flatcamGUI/ObjectUI.py:531
  5396. msgid "Rounded Geo"
  5397. msgstr ""
  5398. #: flatcamGUI/FlatCAMGUI.py:4434 flatcamGUI/ObjectUI.py:504
  5399. msgid "Resulting geometry will have rounded corners."
  5400. msgstr ""
  5401. #: flatcamGUI/FlatCAMGUI.py:4439 flatcamGUI/ObjectUI.py:513
  5402. #: flatcamTools/ToolPanelize.py:85
  5403. msgid "Bounding Box"
  5404. msgstr ""
  5405. #: flatcamGUI/FlatCAMGUI.py:4447 flatcamGUI/ObjectUI.py:523
  5406. msgid ""
  5407. "Distance of the edges of the box\n"
  5408. "to the nearest polygon."
  5409. msgstr ""
  5410. #: flatcamGUI/FlatCAMGUI.py:4456 flatcamGUI/ObjectUI.py:533
  5411. msgid ""
  5412. "If the bounding box is \n"
  5413. "to have rounded corners\n"
  5414. "their radius is equal to\n"
  5415. "the margin."
  5416. msgstr ""
  5417. #: flatcamGUI/FlatCAMGUI.py:4470
  5418. msgid "Gerber Adv. Options"
  5419. msgstr ""
  5420. #: flatcamGUI/FlatCAMGUI.py:4473
  5421. msgid "Advanced Param."
  5422. msgstr ""
  5423. #: flatcamGUI/FlatCAMGUI.py:4475
  5424. msgid ""
  5425. "A list of Gerber advanced parameters.\n"
  5426. "Those parameters are available only for\n"
  5427. "Advanced App. Level."
  5428. msgstr ""
  5429. #: flatcamGUI/FlatCAMGUI.py:4485 flatcamGUI/ObjectUI.py:318
  5430. msgid "\"Follow\""
  5431. msgstr ""
  5432. #: flatcamGUI/FlatCAMGUI.py:4487 flatcamGUI/ObjectUI.py:319
  5433. msgid ""
  5434. "Generate a 'Follow' geometry.\n"
  5435. "This means that it will cut through\n"
  5436. "the middle of the trace."
  5437. msgstr ""
  5438. #: flatcamGUI/FlatCAMGUI.py:4494
  5439. msgid "Table Show/Hide"
  5440. msgstr ""
  5441. #: flatcamGUI/FlatCAMGUI.py:4496
  5442. msgid ""
  5443. "Toggle the display of the Gerber Apertures Table.\n"
  5444. "Also, on hide, it will delete all mark shapes\n"
  5445. "that are drawn on canvas."
  5446. msgstr ""
  5447. #: flatcamGUI/FlatCAMGUI.py:4535
  5448. msgid "Gerber Export"
  5449. msgstr ""
  5450. #: flatcamGUI/FlatCAMGUI.py:4538 flatcamGUI/FlatCAMGUI.py:5363
  5451. msgid "Export Options"
  5452. msgstr ""
  5453. #: flatcamGUI/FlatCAMGUI.py:4540
  5454. msgid ""
  5455. "The parameters set here are used in the file exported\n"
  5456. "when using the File -> Export -> Export Gerber menu entry."
  5457. msgstr ""
  5458. #: flatcamGUI/FlatCAMGUI.py:4551 flatcamGUI/FlatCAMGUI.py:4557
  5459. msgid "The units used in the Gerber file."
  5460. msgstr ""
  5461. #: flatcamGUI/FlatCAMGUI.py:4554 flatcamGUI/FlatCAMGUI.py:4884
  5462. #: flatcamGUI/FlatCAMGUI.py:4986 flatcamGUI/FlatCAMGUI.py:5379
  5463. #: flatcamTools/ToolCalculators.py:60 flatcamTools/ToolPcbWizard.py:125
  5464. msgid "INCH"
  5465. msgstr ""
  5466. #: flatcamGUI/FlatCAMGUI.py:4563 flatcamGUI/FlatCAMGUI.py:5388
  5467. msgid "Int/Decimals"
  5468. msgstr ""
  5469. #: flatcamGUI/FlatCAMGUI.py:4565
  5470. msgid ""
  5471. "The number of digits in the whole part of the number\n"
  5472. "and in the fractional part of the number."
  5473. msgstr ""
  5474. #: flatcamGUI/FlatCAMGUI.py:4576
  5475. msgid ""
  5476. "This numbers signify the number of digits in\n"
  5477. "the whole part of Gerber coordinates."
  5478. msgstr ""
  5479. #: flatcamGUI/FlatCAMGUI.py:4590
  5480. msgid ""
  5481. "This numbers signify the number of digits in\n"
  5482. "the decimal part of Gerber coordinates."
  5483. msgstr ""
  5484. #: flatcamGUI/FlatCAMGUI.py:4599 flatcamGUI/FlatCAMGUI.py:5449
  5485. msgid "Zeros"
  5486. msgstr ""
  5487. #: flatcamGUI/FlatCAMGUI.py:4602 flatcamGUI/FlatCAMGUI.py:4612
  5488. msgid ""
  5489. "This sets the type of Gerber zeros.\n"
  5490. "If LZ then Leading Zeros are removed and\n"
  5491. "Trailing Zeros are kept.\n"
  5492. "If TZ is checked then Trailing Zeros are removed\n"
  5493. "and Leading Zeros are kept."
  5494. msgstr ""
  5495. #: flatcamGUI/FlatCAMGUI.py:4609 flatcamGUI/FlatCAMGUI.py:4962
  5496. #: flatcamGUI/FlatCAMGUI.py:5459 flatcamTools/ToolPcbWizard.py:111
  5497. msgid "LZ"
  5498. msgstr ""
  5499. #: flatcamGUI/FlatCAMGUI.py:4610 flatcamGUI/FlatCAMGUI.py:4963
  5500. #: flatcamGUI/FlatCAMGUI.py:5460 flatcamTools/ToolPcbWizard.py:112
  5501. msgid "TZ"
  5502. msgstr ""
  5503. #: flatcamGUI/FlatCAMGUI.py:4632 flatcamGUI/FlatCAMGUI.py:5513
  5504. #: flatcamGUI/FlatCAMGUI.py:6115 flatcamGUI/FlatCAMGUI.py:6394
  5505. #: flatcamGUI/FlatCAMGUI.py:6433 flatcamGUI/FlatCAMGUI.py:6688
  5506. #: flatcamGUI/FlatCAMGUI.py:6787 flatcamGUI/FlatCAMGUI.py:6994
  5507. #: flatcamGUI/FlatCAMGUI.py:7055 flatcamGUI/FlatCAMGUI.py:7254
  5508. #: flatcamGUI/FlatCAMGUI.py:7386 flatcamGUI/FlatCAMGUI.py:7559
  5509. #: flatcamGUI/ObjectUI.py:1610 flatcamTools/ToolNonCopperClear.py:265
  5510. msgid "Parameters"
  5511. msgstr ""
  5512. #: flatcamGUI/FlatCAMGUI.py:4634
  5513. msgid "A list of Gerber Editor parameters."
  5514. msgstr ""
  5515. #: flatcamGUI/FlatCAMGUI.py:4642 flatcamGUI/FlatCAMGUI.py:5523
  5516. #: flatcamGUI/FlatCAMGUI.py:6125
  5517. msgid "Selection limit"
  5518. msgstr ""
  5519. #: flatcamGUI/FlatCAMGUI.py:4644
  5520. msgid ""
  5521. "Set the number of selected Gerber geometry\n"
  5522. "items above which the utility geometry\n"
  5523. "becomes just a selection rectangle.\n"
  5524. "Increases the performance when moving a\n"
  5525. "large number of geometric elements."
  5526. msgstr ""
  5527. #: flatcamGUI/FlatCAMGUI.py:4656
  5528. msgid "New Aperture code"
  5529. msgstr ""
  5530. #: flatcamGUI/FlatCAMGUI.py:4668
  5531. msgid "New Aperture size"
  5532. msgstr ""
  5533. #: flatcamGUI/FlatCAMGUI.py:4670
  5534. msgid "Size for the new aperture"
  5535. msgstr ""
  5536. #: flatcamGUI/FlatCAMGUI.py:4680
  5537. msgid "New Aperture type"
  5538. msgstr ""
  5539. #: flatcamGUI/FlatCAMGUI.py:4682
  5540. msgid ""
  5541. "Type for the new aperture.\n"
  5542. "Can be 'C', 'R' or 'O'."
  5543. msgstr ""
  5544. #: flatcamGUI/FlatCAMGUI.py:4703
  5545. msgid "Aperture Dimensions"
  5546. msgstr ""
  5547. #: flatcamGUI/FlatCAMGUI.py:4705 flatcamGUI/FlatCAMGUI.py:5798
  5548. #: flatcamGUI/FlatCAMGUI.py:6445
  5549. msgid "Diameters of the cutting tools, separated by ','"
  5550. msgstr ""
  5551. #: flatcamGUI/FlatCAMGUI.py:4711
  5552. #, python-format
  5553. msgid "<b>%s:</b>"
  5554. msgstr ""
  5555. #: flatcamGUI/FlatCAMGUI.py:4715 flatcamGUI/FlatCAMGUI.py:5564
  5556. #: flatcamGUI/FlatCAMGUI.py:5695
  5557. msgid "Linear Dir."
  5558. msgstr ""
  5559. #: flatcamGUI/FlatCAMGUI.py:4751
  5560. msgid "Circular Pad Array"
  5561. msgstr ""
  5562. #: flatcamGUI/FlatCAMGUI.py:4755 flatcamGUI/FlatCAMGUI.py:5604
  5563. #: flatcamGUI/FlatCAMGUI.py:5735
  5564. msgid "Circular Dir."
  5565. msgstr ""
  5566. #: flatcamGUI/FlatCAMGUI.py:4757 flatcamGUI/FlatCAMGUI.py:5606
  5567. #: flatcamGUI/FlatCAMGUI.py:5737
  5568. msgid ""
  5569. "Direction for circular array.\n"
  5570. "Can be CW = clockwise or CCW = counter clockwise."
  5571. msgstr ""
  5572. #: flatcamGUI/FlatCAMGUI.py:4768 flatcamGUI/FlatCAMGUI.py:5617
  5573. #: flatcamGUI/FlatCAMGUI.py:5748
  5574. msgid "Circ. Angle"
  5575. msgstr ""
  5576. #: flatcamGUI/FlatCAMGUI.py:4783
  5577. msgid "Distance at which to buffer the Gerber element."
  5578. msgstr ""
  5579. #: flatcamGUI/FlatCAMGUI.py:4790
  5580. msgid "Scale Tool"
  5581. msgstr ""
  5582. #: flatcamGUI/FlatCAMGUI.py:4796
  5583. msgid "Factor to scale the Gerber element."
  5584. msgstr ""
  5585. #: flatcamGUI/FlatCAMGUI.py:4803
  5586. msgid "Mark Area Tool"
  5587. msgstr ""
  5588. #: flatcamGUI/FlatCAMGUI.py:4807 flatcamGUI/FlatCAMGUI.py:4817
  5589. msgid "Threshold low"
  5590. msgstr ""
  5591. #: flatcamGUI/FlatCAMGUI.py:4809
  5592. msgid "Threshold value under which the apertures are not marked."
  5593. msgstr ""
  5594. #: flatcamGUI/FlatCAMGUI.py:4819
  5595. msgid "Threshold value over which the apertures are not marked."
  5596. msgstr ""
  5597. #: flatcamGUI/FlatCAMGUI.py:4835
  5598. msgid "Excellon General"
  5599. msgstr ""
  5600. #: flatcamGUI/FlatCAMGUI.py:4857
  5601. msgid "Excellon Format"
  5602. msgstr ""
  5603. #: flatcamGUI/FlatCAMGUI.py:4859
  5604. msgid ""
  5605. "The NC drill files, usually named Excellon files\n"
  5606. "are files that can be found in different formats.\n"
  5607. "Here we set the format used when the provided\n"
  5608. "coordinates are not using period.\n"
  5609. "\n"
  5610. "Possible presets:\n"
  5611. "\n"
  5612. "PROTEUS 3:3 MM LZ\n"
  5613. "DipTrace 5:2 MM TZ\n"
  5614. "DipTrace 4:3 MM LZ\n"
  5615. "\n"
  5616. "EAGLE 3:3 MM TZ\n"
  5617. "EAGLE 4:3 MM TZ\n"
  5618. "EAGLE 2:5 INCH TZ\n"
  5619. "EAGLE 3:5 INCH TZ\n"
  5620. "\n"
  5621. "ALTIUM 2:4 INCH LZ\n"
  5622. "Sprint Layout 2:4 INCH LZ\n"
  5623. "KiCAD 3:5 INCH TZ"
  5624. msgstr ""
  5625. #: flatcamGUI/FlatCAMGUI.py:4887
  5626. msgid "Default values for INCH are 2:4"
  5627. msgstr ""
  5628. #: flatcamGUI/FlatCAMGUI.py:4895 flatcamGUI/FlatCAMGUI.py:4928
  5629. #: flatcamGUI/FlatCAMGUI.py:5403
  5630. msgid ""
  5631. "This numbers signify the number of digits in\n"
  5632. "the whole part of Excellon coordinates."
  5633. msgstr ""
  5634. #: flatcamGUI/FlatCAMGUI.py:4909 flatcamGUI/FlatCAMGUI.py:4942
  5635. #: flatcamGUI/FlatCAMGUI.py:5417
  5636. msgid ""
  5637. "This numbers signify the number of digits in\n"
  5638. "the decimal part of Excellon coordinates."
  5639. msgstr ""
  5640. #: flatcamGUI/FlatCAMGUI.py:4917
  5641. msgid "METRIC"
  5642. msgstr ""
  5643. #: flatcamGUI/FlatCAMGUI.py:4920
  5644. msgid "Default values for METRIC are 3:3"
  5645. msgstr ""
  5646. #: flatcamGUI/FlatCAMGUI.py:4951
  5647. msgid "Default <b>Zeros</b>"
  5648. msgstr ""
  5649. #: flatcamGUI/FlatCAMGUI.py:4954 flatcamGUI/FlatCAMGUI.py:5452
  5650. msgid ""
  5651. "This sets the type of Excellon zeros.\n"
  5652. "If LZ then Leading Zeros are kept and\n"
  5653. "Trailing Zeros are removed.\n"
  5654. "If TZ is checked then Trailing Zeros are kept\n"
  5655. "and Leading Zeros are removed."
  5656. msgstr ""
  5657. #: flatcamGUI/FlatCAMGUI.py:4965
  5658. msgid ""
  5659. "This sets the default type of Excellon zeros.\n"
  5660. "If it is not detected in the parsed file the value here\n"
  5661. "will be used.If LZ then Leading Zeros are kept and\n"
  5662. "Trailing Zeros are removed.\n"
  5663. "If TZ is checked then Trailing Zeros are kept\n"
  5664. "and Leading Zeros are removed."
  5665. msgstr ""
  5666. #: flatcamGUI/FlatCAMGUI.py:4975
  5667. msgid "Default <b>Units</b>"
  5668. msgstr ""
  5669. #: flatcamGUI/FlatCAMGUI.py:4978
  5670. msgid ""
  5671. "This sets the default units of Excellon files.\n"
  5672. "If it is not detected in the parsed file the value here\n"
  5673. "will be used.Some Excellon files don't have an header\n"
  5674. "therefore this parameter will be used."
  5675. msgstr ""
  5676. #: flatcamGUI/FlatCAMGUI.py:4989
  5677. msgid ""
  5678. "This sets the units of Excellon files.\n"
  5679. "Some Excellon files don't have an header\n"
  5680. "therefore this parameter will be used."
  5681. msgstr ""
  5682. #: flatcamGUI/FlatCAMGUI.py:4997
  5683. msgid "Excellon Optimization"
  5684. msgstr ""
  5685. #: flatcamGUI/FlatCAMGUI.py:5000
  5686. msgid "Algorithm: "
  5687. msgstr ""
  5688. #: flatcamGUI/FlatCAMGUI.py:5002 flatcamGUI/FlatCAMGUI.py:5016
  5689. msgid ""
  5690. "This sets the optimization type for the Excellon drill path.\n"
  5691. "If MH is checked then Google OR-Tools algorithm with MetaHeuristic\n"
  5692. "Guided Local Path is used. Default search time is 3sec.\n"
  5693. "Use set_sys excellon_search_time value Tcl Command to set other values.\n"
  5694. "If Basic is checked then Google OR-Tools Basic algorithm is used.\n"
  5695. "\n"
  5696. "If DISABLED, then FlatCAM works in 32bit mode and it uses \n"
  5697. "Travelling Salesman algorithm for path optimization."
  5698. msgstr ""
  5699. #: flatcamGUI/FlatCAMGUI.py:5013
  5700. msgid "MH"
  5701. msgstr ""
  5702. #: flatcamGUI/FlatCAMGUI.py:5027
  5703. msgid "Optimization Time"
  5704. msgstr ""
  5705. #: flatcamGUI/FlatCAMGUI.py:5030
  5706. msgid ""
  5707. "When OR-Tools Metaheuristic (MH) is enabled there is a\n"
  5708. "maximum threshold for how much time is spent doing the\n"
  5709. "path optimization. This max duration is set here.\n"
  5710. "In seconds."
  5711. msgstr ""
  5712. #: flatcamGUI/FlatCAMGUI.py:5073
  5713. msgid "Excellon Options"
  5714. msgstr ""
  5715. #: flatcamGUI/FlatCAMGUI.py:5076 flatcamGUI/FlatCAMGUI.py:5817
  5716. #: flatcamGUI/ObjectUI.py:643
  5717. msgid "Create CNC Job"
  5718. msgstr ""
  5719. #: flatcamGUI/FlatCAMGUI.py:5078
  5720. msgid ""
  5721. "Parameters used to create a CNC Job object\n"
  5722. "for this drill object."
  5723. msgstr ""
  5724. #: flatcamGUI/FlatCAMGUI.py:5086 flatcamGUI/FlatCAMGUI.py:5829
  5725. #: flatcamGUI/FlatCAMGUI.py:6530 flatcamGUI/FlatCAMGUI.py:7190
  5726. #: flatcamGUI/ObjectUI.py:654 flatcamGUI/ObjectUI.py:1132
  5727. #: flatcamTools/ToolCalculators.py:107 flatcamTools/ToolNonCopperClear.py:269
  5728. msgid "Cut Z"
  5729. msgstr ""
  5730. #: flatcamGUI/FlatCAMGUI.py:5088 flatcamGUI/ObjectUI.py:656
  5731. msgid ""
  5732. "Drill depth (negative)\n"
  5733. "below the copper surface."
  5734. msgstr ""
  5735. #: flatcamGUI/FlatCAMGUI.py:5095 flatcamGUI/FlatCAMGUI.py:5867
  5736. #: flatcamGUI/ObjectUI.py:664 flatcamGUI/ObjectUI.py:1166
  5737. msgid "Travel Z"
  5738. msgstr ""
  5739. #: flatcamGUI/FlatCAMGUI.py:5097 flatcamGUI/ObjectUI.py:666
  5740. msgid ""
  5741. "Tool height when travelling\n"
  5742. "across the XY plane."
  5743. msgstr ""
  5744. #: flatcamGUI/FlatCAMGUI.py:5105 flatcamGUI/FlatCAMGUI.py:5877
  5745. #: flatcamGUI/ObjectUI.py:674 flatcamGUI/ObjectUI.py:1184
  5746. msgid "Tool change"
  5747. msgstr ""
  5748. #: flatcamGUI/FlatCAMGUI.py:5107 flatcamGUI/ObjectUI.py:676
  5749. msgid ""
  5750. "Include tool-change sequence\n"
  5751. "in G-Code (Pause for tool change)."
  5752. msgstr ""
  5753. #: flatcamGUI/FlatCAMGUI.py:5114 flatcamGUI/FlatCAMGUI.py:5889
  5754. msgid "Toolchange Z"
  5755. msgstr ""
  5756. #: flatcamGUI/FlatCAMGUI.py:5116 flatcamGUI/FlatCAMGUI.py:5892
  5757. #: flatcamGUI/ObjectUI.py:684 flatcamGUI/ObjectUI.py:1180
  5758. msgid ""
  5759. "Z-axis position (height) for\n"
  5760. "tool change."
  5761. msgstr ""
  5762. #: flatcamGUI/FlatCAMGUI.py:5123 flatcamGUI/ObjectUI.py:713
  5763. msgid "Feedrate (Plunge)"
  5764. msgstr ""
  5765. #: flatcamGUI/FlatCAMGUI.py:5125 flatcamGUI/ObjectUI.py:715
  5766. msgid ""
  5767. "Tool speed while drilling\n"
  5768. "(in units per minute).\n"
  5769. "This is for linear move G01."
  5770. msgstr ""
  5771. #: flatcamGUI/FlatCAMGUI.py:5134
  5772. msgid "Spindle Speed"
  5773. msgstr ""
  5774. #: flatcamGUI/FlatCAMGUI.py:5136 flatcamGUI/ObjectUI.py:742
  5775. msgid ""
  5776. "Speed of the spindle\n"
  5777. "in RPM (optional)"
  5778. msgstr ""
  5779. #: flatcamGUI/FlatCAMGUI.py:5144 flatcamGUI/FlatCAMGUI.py:5935
  5780. msgid "Spindle dir."
  5781. msgstr ""
  5782. #: flatcamGUI/FlatCAMGUI.py:5146 flatcamGUI/FlatCAMGUI.py:5937
  5783. msgid ""
  5784. "This sets the direction that the spindle is rotating.\n"
  5785. "It can be either:\n"
  5786. "- CW = clockwise or\n"
  5787. "- CCW = counter clockwise"
  5788. msgstr ""
  5789. #: flatcamGUI/FlatCAMGUI.py:5158 flatcamGUI/FlatCAMGUI.py:5949
  5790. #: flatcamGUI/ObjectUI.py:750 flatcamGUI/ObjectUI.py:1280
  5791. msgid "Dwell"
  5792. msgstr ""
  5793. #: flatcamGUI/FlatCAMGUI.py:5160 flatcamGUI/FlatCAMGUI.py:5951
  5794. #: flatcamGUI/ObjectUI.py:752 flatcamGUI/ObjectUI.py:1283
  5795. msgid ""
  5796. "Pause to allow the spindle to reach its\n"
  5797. "speed before cutting."
  5798. msgstr ""
  5799. #: flatcamGUI/FlatCAMGUI.py:5163 flatcamGUI/FlatCAMGUI.py:5954
  5800. msgid "Duration"
  5801. msgstr ""
  5802. #: flatcamGUI/FlatCAMGUI.py:5165 flatcamGUI/FlatCAMGUI.py:5956
  5803. #: flatcamGUI/ObjectUI.py:757 flatcamGUI/ObjectUI.py:1289
  5804. msgid "Number of time units for spindle to dwell."
  5805. msgstr ""
  5806. #: flatcamGUI/FlatCAMGUI.py:5177 flatcamGUI/FlatCAMGUI.py:5966
  5807. #: flatcamGUI/ObjectUI.py:765
  5808. msgid "Postprocessor"
  5809. msgstr ""
  5810. #: flatcamGUI/FlatCAMGUI.py:5179 flatcamGUI/ObjectUI.py:767
  5811. msgid ""
  5812. "The postprocessor JSON file that dictates\n"
  5813. "Gcode output."
  5814. msgstr ""
  5815. #: flatcamGUI/FlatCAMGUI.py:5188 flatcamGUI/ObjectUI.py:807
  5816. msgid "Gcode"
  5817. msgstr ""
  5818. #: flatcamGUI/FlatCAMGUI.py:5190
  5819. msgid ""
  5820. "Choose what to use for GCode generation:\n"
  5821. "'Drills', 'Slots' or 'Both'.\n"
  5822. "When choosing 'Slots' or 'Both', slots will be\n"
  5823. "converted to drills."
  5824. msgstr ""
  5825. #: flatcamGUI/FlatCAMGUI.py:5206 flatcamGUI/ObjectUI.py:831
  5826. msgid "Mill Holes"
  5827. msgstr ""
  5828. #: flatcamGUI/FlatCAMGUI.py:5208 flatcamGUI/ObjectUI.py:833
  5829. msgid "Create Geometry for milling holes."
  5830. msgstr ""
  5831. #: flatcamGUI/FlatCAMGUI.py:5212 flatcamGUI/ObjectUI.py:846
  5832. msgid "Drill Tool dia"
  5833. msgstr ""
  5834. #: flatcamGUI/FlatCAMGUI.py:5219 flatcamGUI/ObjectUI.py:862
  5835. msgid "Slot Tool dia"
  5836. msgstr ""
  5837. #: flatcamGUI/FlatCAMGUI.py:5221 flatcamGUI/ObjectUI.py:864
  5838. msgid ""
  5839. "Diameter of the cutting tool\n"
  5840. "when milling slots."
  5841. msgstr ""
  5842. #: flatcamGUI/FlatCAMGUI.py:5233
  5843. msgid "Defaults"
  5844. msgstr ""
  5845. #: flatcamGUI/FlatCAMGUI.py:5246
  5846. msgid "Excellon Adv. Options"
  5847. msgstr ""
  5848. #: flatcamGUI/FlatCAMGUI.py:5252 flatcamGUI/FlatCAMGUI.py:5989
  5849. msgid "Advanced Options"
  5850. msgstr ""
  5851. #: flatcamGUI/FlatCAMGUI.py:5254
  5852. msgid ""
  5853. "Parameters used to create a CNC Job object\n"
  5854. "for this drill object that are shown when App Level is Advanced."
  5855. msgstr ""
  5856. #: flatcamGUI/FlatCAMGUI.py:5262 flatcamGUI/ObjectUI.py:614
  5857. msgid "Offset Z"
  5858. msgstr ""
  5859. #: flatcamGUI/FlatCAMGUI.py:5264 flatcamGUI/ObjectUI.py:632
  5860. msgid ""
  5861. "Some drill bits (the larger ones) need to drill deeper\n"
  5862. "to create the desired exit hole diameter due of the tip shape.\n"
  5863. "The value here can compensate the Cut Z parameter."
  5864. msgstr ""
  5865. #: flatcamGUI/FlatCAMGUI.py:5271
  5866. msgid "Toolchange X,Y"
  5867. msgstr ""
  5868. #: flatcamGUI/FlatCAMGUI.py:5273 flatcamGUI/FlatCAMGUI.py:6002
  5869. msgid "Toolchange X,Y position."
  5870. msgstr ""
  5871. #: flatcamGUI/FlatCAMGUI.py:5279 flatcamGUI/FlatCAMGUI.py:6009
  5872. #: flatcamGUI/ObjectUI.py:693
  5873. msgid "Start move Z"
  5874. msgstr ""
  5875. #: flatcamGUI/FlatCAMGUI.py:5281 flatcamGUI/ObjectUI.py:695
  5876. msgid ""
  5877. "Height of the tool just after start.\n"
  5878. "Delete the value if you don't need this feature."
  5879. msgstr ""
  5880. #: flatcamGUI/FlatCAMGUI.py:5288 flatcamGUI/FlatCAMGUI.py:6019
  5881. #: flatcamGUI/ObjectUI.py:703 flatcamGUI/ObjectUI.py:1210
  5882. msgid "End move Z"
  5883. msgstr ""
  5884. #: flatcamGUI/FlatCAMGUI.py:5290 flatcamGUI/FlatCAMGUI.py:6021
  5885. #: flatcamGUI/ObjectUI.py:705 flatcamGUI/ObjectUI.py:1212
  5886. msgid ""
  5887. "Height of the tool after\n"
  5888. "the last move at the end of the job."
  5889. msgstr ""
  5890. #: flatcamGUI/FlatCAMGUI.py:5297 flatcamGUI/ObjectUI.py:724
  5891. msgid "Feedrate Rapids"
  5892. msgstr ""
  5893. #: flatcamGUI/FlatCAMGUI.py:5299 flatcamGUI/ObjectUI.py:726
  5894. msgid ""
  5895. "Tool speed while drilling\n"
  5896. "(in units per minute).\n"
  5897. "This is for the rapid move G00.\n"
  5898. "It is useful only for Marlin,\n"
  5899. "ignore for any other cases."
  5900. msgstr ""
  5901. #: flatcamGUI/FlatCAMGUI.py:5310 flatcamGUI/FlatCAMGUI.py:6052
  5902. #: flatcamGUI/ObjectUI.py:776 flatcamGUI/ObjectUI.py:1308
  5903. msgid "Probe Z depth"
  5904. msgstr ""
  5905. #: flatcamGUI/FlatCAMGUI.py:5312 flatcamGUI/FlatCAMGUI.py:6054
  5906. #: flatcamGUI/ObjectUI.py:778 flatcamGUI/ObjectUI.py:1310
  5907. msgid ""
  5908. "The maximum depth that the probe is allowed\n"
  5909. "to probe. Negative value, in current units."
  5910. msgstr ""
  5911. #: flatcamGUI/FlatCAMGUI.py:5320 flatcamGUI/FlatCAMGUI.py:6062
  5912. #: flatcamGUI/ObjectUI.py:788 flatcamGUI/ObjectUI.py:1320
  5913. msgid "Feedrate Probe"
  5914. msgstr ""
  5915. #: flatcamGUI/FlatCAMGUI.py:5322 flatcamGUI/FlatCAMGUI.py:6064
  5916. #: flatcamGUI/ObjectUI.py:790 flatcamGUI/ObjectUI.py:1322
  5917. msgid "The feedrate used while the probe is probing."
  5918. msgstr ""
  5919. #: flatcamGUI/FlatCAMGUI.py:5328 flatcamGUI/FlatCAMGUI.py:6071
  5920. msgid "Fast Plunge"
  5921. msgstr ""
  5922. #: flatcamGUI/FlatCAMGUI.py:5330 flatcamGUI/FlatCAMGUI.py:6073
  5923. msgid ""
  5924. "By checking this, the vertical move from\n"
  5925. "Z_Toolchange to Z_move is done with G0,\n"
  5926. "meaning the fastest speed available.\n"
  5927. "WARNING: the move is done at Toolchange X,Y coords."
  5928. msgstr ""
  5929. #: flatcamGUI/FlatCAMGUI.py:5339
  5930. msgid "Fast Retract"
  5931. msgstr ""
  5932. #: flatcamGUI/FlatCAMGUI.py:5341
  5933. msgid ""
  5934. "Exit hole strategy.\n"
  5935. " - When uncheked, while exiting the drilled hole the drill bit\n"
  5936. "will travel slow, with set feedrate (G1), up to zero depth and then\n"
  5937. "travel as fast as possible (G0) to the Z Move (travel height).\n"
  5938. " - When checked the travel from Z cut (cut depth) to Z_move\n"
  5939. "(travel height) is done as fast as possible (G0) in one move."
  5940. msgstr ""
  5941. #: flatcamGUI/FlatCAMGUI.py:5360
  5942. msgid "Excellon Export"
  5943. msgstr ""
  5944. #: flatcamGUI/FlatCAMGUI.py:5365
  5945. msgid ""
  5946. "The parameters set here are used in the file exported\n"
  5947. "when using the File -> Export -> Export Excellon menu entry."
  5948. msgstr ""
  5949. #: flatcamGUI/FlatCAMGUI.py:5376 flatcamGUI/FlatCAMGUI.py:5382
  5950. msgid "The units used in the Excellon file."
  5951. msgstr ""
  5952. #: flatcamGUI/FlatCAMGUI.py:5390
  5953. msgid ""
  5954. "The NC drill files, usually named Excellon files\n"
  5955. "are files that can be found in different formats.\n"
  5956. "Here we set the format used when the provided\n"
  5957. "coordinates are not using period."
  5958. msgstr ""
  5959. #: flatcamGUI/FlatCAMGUI.py:5426
  5960. msgid "Format"
  5961. msgstr ""
  5962. #: flatcamGUI/FlatCAMGUI.py:5428 flatcamGUI/FlatCAMGUI.py:5438
  5963. msgid ""
  5964. "Select the kind of coordinates format used.\n"
  5965. "Coordinates can be saved with decimal point or without.\n"
  5966. "When there is no decimal point, it is required to specify\n"
  5967. "the number of digits for integer part and the number of decimals.\n"
  5968. "Also it will have to be specified if LZ = leading zeros are kept\n"
  5969. "or TZ = trailing zeros are kept."
  5970. msgstr ""
  5971. #: flatcamGUI/FlatCAMGUI.py:5435
  5972. msgid "Decimal"
  5973. msgstr ""
  5974. #: flatcamGUI/FlatCAMGUI.py:5436
  5975. msgid "No-Decimal"
  5976. msgstr ""
  5977. #: flatcamGUI/FlatCAMGUI.py:5462
  5978. msgid ""
  5979. "This sets the default type of Excellon zeros.\n"
  5980. "If LZ then Leading Zeros are kept and\n"
  5981. "Trailing Zeros are removed.\n"
  5982. "If TZ is checked then Trailing Zeros are kept\n"
  5983. "and Leading Zeros are removed."
  5984. msgstr ""
  5985. #: flatcamGUI/FlatCAMGUI.py:5472
  5986. msgid "Slot type"
  5987. msgstr ""
  5988. #: flatcamGUI/FlatCAMGUI.py:5475 flatcamGUI/FlatCAMGUI.py:5485
  5989. msgid ""
  5990. "This sets how the slots will be exported.\n"
  5991. "If ROUTED then the slots will be routed\n"
  5992. "using M15/M16 commands.\n"
  5993. "If DRILLED(G85) the slots will be exported\n"
  5994. "using the Drilled slot command (G85)."
  5995. msgstr ""
  5996. #: flatcamGUI/FlatCAMGUI.py:5482
  5997. msgid "Routed"
  5998. msgstr ""
  5999. #: flatcamGUI/FlatCAMGUI.py:5483
  6000. msgid "Drilled(G85)"
  6001. msgstr ""
  6002. #: flatcamGUI/FlatCAMGUI.py:5515
  6003. msgid "A list of Excellon Editor parameters."
  6004. msgstr ""
  6005. #: flatcamGUI/FlatCAMGUI.py:5525
  6006. msgid ""
  6007. "Set the number of selected Excellon geometry\n"
  6008. "items above which the utility geometry\n"
  6009. "becomes just a selection rectangle.\n"
  6010. "Increases the performance when moving a\n"
  6011. "large number of geometric elements."
  6012. msgstr ""
  6013. #: flatcamGUI/FlatCAMGUI.py:5537
  6014. msgid "New Tool Dia"
  6015. msgstr ""
  6016. #: flatcamGUI/FlatCAMGUI.py:5560
  6017. msgid "Linear Drill Array"
  6018. msgstr ""
  6019. #: flatcamGUI/FlatCAMGUI.py:5580 flatcamGUI/FlatCAMGUI.py:6000
  6020. #, python-format
  6021. msgid "%s:"
  6022. msgstr ""
  6023. #: flatcamGUI/FlatCAMGUI.py:5600
  6024. msgid "Circular Drill Array"
  6025. msgstr ""
  6026. #: flatcamGUI/FlatCAMGUI.py:5628 flatcamGUI/ObjectUI.py:613
  6027. msgid "Slots"
  6028. msgstr ""
  6029. #: flatcamGUI/FlatCAMGUI.py:5679
  6030. msgid "Linear Slot Array"
  6031. msgstr ""
  6032. #: flatcamGUI/FlatCAMGUI.py:5731
  6033. msgid "Circular Slot Array"
  6034. msgstr ""
  6035. #: flatcamGUI/FlatCAMGUI.py:5765
  6036. msgid "Geometry General"
  6037. msgstr ""
  6038. #: flatcamGUI/FlatCAMGUI.py:5784
  6039. msgid ""
  6040. "The number of circle steps for <b>Geometry</b> \n"
  6041. "circle and arc shapes linear approximation."
  6042. msgstr ""
  6043. #: flatcamGUI/FlatCAMGUI.py:5812
  6044. msgid "Geometry Options"
  6045. msgstr ""
  6046. #: flatcamGUI/FlatCAMGUI.py:5819
  6047. msgid ""
  6048. "Create a CNC Job object\n"
  6049. "tracing the contours of this\n"
  6050. "Geometry object."
  6051. msgstr ""
  6052. #: flatcamGUI/FlatCAMGUI.py:5831 flatcamGUI/ObjectUI.py:1135
  6053. msgid ""
  6054. "Cutting depth (negative)\n"
  6055. "below the copper surface."
  6056. msgstr ""
  6057. #: flatcamGUI/FlatCAMGUI.py:5839 flatcamGUI/ObjectUI.py:1144
  6058. msgid "Multi-Depth"
  6059. msgstr ""
  6060. #: flatcamGUI/FlatCAMGUI.py:5842 flatcamGUI/ObjectUI.py:1147
  6061. msgid ""
  6062. "Use multiple passes to limit\n"
  6063. "the cut depth in each pass. Will\n"
  6064. "cut multiple times until Cut Z is\n"
  6065. "reached."
  6066. msgstr ""
  6067. #: flatcamGUI/FlatCAMGUI.py:5851
  6068. msgid "Depth/Pass"
  6069. msgstr ""
  6070. #: flatcamGUI/FlatCAMGUI.py:5853
  6071. msgid ""
  6072. "The depth to cut on each pass,\n"
  6073. "when multidepth is enabled.\n"
  6074. "It has positive value although\n"
  6075. "it is a fraction from the depth\n"
  6076. "which has negative value."
  6077. msgstr ""
  6078. #: flatcamGUI/FlatCAMGUI.py:5869 flatcamGUI/ObjectUI.py:1168
  6079. msgid ""
  6080. "Height of the tool when\n"
  6081. "moving without cutting."
  6082. msgstr ""
  6083. #: flatcamGUI/FlatCAMGUI.py:5880 flatcamGUI/ObjectUI.py:1187
  6084. msgid ""
  6085. "Include tool-change sequence\n"
  6086. "in the Machine Code (Pause for tool change)."
  6087. msgstr ""
  6088. #: flatcamGUI/FlatCAMGUI.py:5901 flatcamGUI/ObjectUI.py:1220
  6089. msgid "Feed Rate X-Y"
  6090. msgstr ""
  6091. #: flatcamGUI/FlatCAMGUI.py:5903 flatcamGUI/ObjectUI.py:1222
  6092. msgid ""
  6093. "Cutting speed in the XY\n"
  6094. "plane in units per minute"
  6095. msgstr ""
  6096. #: flatcamGUI/FlatCAMGUI.py:5911 flatcamGUI/ObjectUI.py:1230
  6097. msgid "Feed Rate Z"
  6098. msgstr ""
  6099. #: flatcamGUI/FlatCAMGUI.py:5913 flatcamGUI/ObjectUI.py:1232
  6100. msgid ""
  6101. "Cutting speed in the XY\n"
  6102. "plane in units per minute.\n"
  6103. "It is called also Plunge."
  6104. msgstr ""
  6105. #: flatcamGUI/FlatCAMGUI.py:5922 flatcamGUI/ObjectUI.py:740
  6106. #: flatcamGUI/ObjectUI.py:1267
  6107. msgid "Spindle speed"
  6108. msgstr ""
  6109. #: flatcamGUI/FlatCAMGUI.py:5925 flatcamGUI/ObjectUI.py:1270
  6110. msgid ""
  6111. "Speed of the spindle in RPM (optional).\n"
  6112. "If LASER postprocessor is used,\n"
  6113. "this value is the power of laser."
  6114. msgstr ""
  6115. #: flatcamGUI/FlatCAMGUI.py:5968 flatcamGUI/ObjectUI.py:1299
  6116. msgid ""
  6117. "The Postprocessor file that dictates\n"
  6118. "the Machine Code (like GCode, RML, HPGL) output."
  6119. msgstr ""
  6120. #: flatcamGUI/FlatCAMGUI.py:5984
  6121. msgid "Geometry Adv. Options"
  6122. msgstr ""
  6123. #: flatcamGUI/FlatCAMGUI.py:5991
  6124. msgid ""
  6125. "Parameters to create a CNC Job object\n"
  6126. "tracing the contours of a Geometry object."
  6127. msgstr ""
  6128. #: flatcamGUI/FlatCAMGUI.py:6011
  6129. msgid ""
  6130. "Height of the tool just after starting the work.\n"
  6131. "Delete the value if you don't need this feature."
  6132. msgstr ""
  6133. #: flatcamGUI/FlatCAMGUI.py:6029 flatcamGUI/ObjectUI.py:1241
  6134. msgid "Feed Rate Rapids"
  6135. msgstr ""
  6136. #: flatcamGUI/FlatCAMGUI.py:6031 flatcamGUI/ObjectUI.py:1243
  6137. msgid ""
  6138. "Cutting speed in the XY plane\n"
  6139. "(in units per minute).\n"
  6140. "This is for the rapid move G00.\n"
  6141. "It is useful only for Marlin,\n"
  6142. "ignore for any other cases."
  6143. msgstr ""
  6144. #: flatcamGUI/FlatCAMGUI.py:6042 flatcamGUI/ObjectUI.py:1257
  6145. msgid "Re-cut 1st pt."
  6146. msgstr ""
  6147. #: flatcamGUI/FlatCAMGUI.py:6044 flatcamGUI/ObjectUI.py:1259
  6148. msgid ""
  6149. "In order to remove possible\n"
  6150. "copper leftovers where first cut\n"
  6151. "meet with last cut, we generate an\n"
  6152. "extended cut over the first cut section."
  6153. msgstr ""
  6154. #: flatcamGUI/FlatCAMGUI.py:6083
  6155. msgid "Seg. X size"
  6156. msgstr ""
  6157. #: flatcamGUI/FlatCAMGUI.py:6085
  6158. msgid ""
  6159. "The size of the trace segment on the X axis.\n"
  6160. "Useful for auto-leveling.\n"
  6161. "A value of 0 means no segmentation on the X axis."
  6162. msgstr ""
  6163. #: flatcamGUI/FlatCAMGUI.py:6094
  6164. msgid "Seg. Y size"
  6165. msgstr ""
  6166. #: flatcamGUI/FlatCAMGUI.py:6096
  6167. msgid ""
  6168. "The size of the trace segment on the Y axis.\n"
  6169. "Useful for auto-leveling.\n"
  6170. "A value of 0 means no segmentation on the Y axis."
  6171. msgstr ""
  6172. #: flatcamGUI/FlatCAMGUI.py:6112
  6173. msgid "Geometry Editor"
  6174. msgstr ""
  6175. #: flatcamGUI/FlatCAMGUI.py:6117
  6176. msgid "A list of Geometry Editor parameters."
  6177. msgstr ""
  6178. #: flatcamGUI/FlatCAMGUI.py:6127
  6179. msgid ""
  6180. "Set the number of selected geometry\n"
  6181. "items above which the utility geometry\n"
  6182. "becomes just a selection rectangle.\n"
  6183. "Increases the performance when moving a\n"
  6184. "large number of geometric elements."
  6185. msgstr ""
  6186. #: flatcamGUI/FlatCAMGUI.py:6146
  6187. msgid "CNC Job General"
  6188. msgstr ""
  6189. #: flatcamGUI/FlatCAMGUI.py:6159 flatcamGUI/ObjectUI.py:938
  6190. #: flatcamGUI/ObjectUI.py:1501
  6191. msgid "Plot Object"
  6192. msgstr ""
  6193. #: flatcamGUI/FlatCAMGUI.py:6164 flatcamGUI/ObjectUI.py:1396
  6194. msgid "Plot kind"
  6195. msgstr ""
  6196. #: flatcamGUI/FlatCAMGUI.py:6166 flatcamGUI/ObjectUI.py:1399
  6197. msgid ""
  6198. "This selects the kind of geometries on the canvas to plot.\n"
  6199. "Those can be either of type 'Travel' which means the moves\n"
  6200. "above the work piece or it can be of type 'Cut',\n"
  6201. "which means the moves that cut into the material."
  6202. msgstr ""
  6203. #: flatcamGUI/FlatCAMGUI.py:6174 flatcamGUI/ObjectUI.py:1408
  6204. msgid "Travel"
  6205. msgstr ""
  6206. #: flatcamGUI/FlatCAMGUI.py:6183 flatcamGUI/ObjectUI.py:1412
  6207. msgid "Display Annotation"
  6208. msgstr ""
  6209. #: flatcamGUI/FlatCAMGUI.py:6185 flatcamGUI/ObjectUI.py:1414
  6210. msgid ""
  6211. "This selects if to display text annotation on the plot.\n"
  6212. "When checked it will display numbers in order for each end\n"
  6213. "of a travel line."
  6214. msgstr ""
  6215. #: flatcamGUI/FlatCAMGUI.py:6197
  6216. msgid "Annotation Size"
  6217. msgstr ""
  6218. #: flatcamGUI/FlatCAMGUI.py:6199
  6219. msgid "The font size of the annotation text. In pixels."
  6220. msgstr ""
  6221. #: flatcamGUI/FlatCAMGUI.py:6207
  6222. msgid "Annotation Color"
  6223. msgstr ""
  6224. #: flatcamGUI/FlatCAMGUI.py:6209
  6225. msgid "Set the font color for the annotation texts."
  6226. msgstr ""
  6227. #: flatcamGUI/FlatCAMGUI.py:6232
  6228. msgid ""
  6229. "The number of circle steps for <b>GCode</b> \n"
  6230. "circle and arc shapes linear approximation."
  6231. msgstr ""
  6232. #: flatcamGUI/FlatCAMGUI.py:6240
  6233. msgid "Travel dia"
  6234. msgstr ""
  6235. #: flatcamGUI/FlatCAMGUI.py:6242
  6236. msgid ""
  6237. "The width of the travel lines to be\n"
  6238. "rendered in the plot."
  6239. msgstr ""
  6240. #: flatcamGUI/FlatCAMGUI.py:6253
  6241. msgid "Coordinates decimals"
  6242. msgstr ""
  6243. #: flatcamGUI/FlatCAMGUI.py:6255
  6244. msgid ""
  6245. "The number of decimals to be used for \n"
  6246. "the X, Y, Z coordinates in CNC code (GCODE, etc.)"
  6247. msgstr ""
  6248. #: flatcamGUI/FlatCAMGUI.py:6263
  6249. msgid "Feedrate decimals"
  6250. msgstr ""
  6251. #: flatcamGUI/FlatCAMGUI.py:6265
  6252. msgid ""
  6253. "The number of decimals to be used for \n"
  6254. "the Feedrate parameter in CNC code (GCODE, etc.)"
  6255. msgstr ""
  6256. #: flatcamGUI/FlatCAMGUI.py:6273
  6257. msgid "Coordinates type"
  6258. msgstr ""
  6259. #: flatcamGUI/FlatCAMGUI.py:6275
  6260. msgid ""
  6261. "The type of coordinates to be used in Gcode.\n"
  6262. "Can be:\n"
  6263. "- Absolute G90 -> the reference is the origin x=0, y=0\n"
  6264. "- Incremental G91 -> the reference is the previous position"
  6265. msgstr ""
  6266. #: flatcamGUI/FlatCAMGUI.py:6281
  6267. msgid "Absolute G90"
  6268. msgstr ""
  6269. #: flatcamGUI/FlatCAMGUI.py:6282
  6270. msgid "Incremental G91"
  6271. msgstr ""
  6272. #: flatcamGUI/FlatCAMGUI.py:6299
  6273. msgid "CNC Job Options"
  6274. msgstr ""
  6275. #: flatcamGUI/FlatCAMGUI.py:6302
  6276. msgid "Export G-Code"
  6277. msgstr ""
  6278. #: flatcamGUI/FlatCAMGUI.py:6304 flatcamGUI/FlatCAMGUI.py:6345
  6279. #: flatcamGUI/ObjectUI.py:1535
  6280. msgid ""
  6281. "Export and save G-Code to\n"
  6282. "make this object to a file."
  6283. msgstr ""
  6284. #: flatcamGUI/FlatCAMGUI.py:6310
  6285. msgid "Prepend to G-Code"
  6286. msgstr ""
  6287. #: flatcamGUI/FlatCAMGUI.py:6312 flatcamGUI/ObjectUI.py:1543
  6288. msgid ""
  6289. "Type here any G-Code commands you would\n"
  6290. "like to add at the beginning of the G-Code file."
  6291. msgstr ""
  6292. #: flatcamGUI/FlatCAMGUI.py:6321
  6293. msgid "Append to G-Code"
  6294. msgstr ""
  6295. #: flatcamGUI/FlatCAMGUI.py:6323 flatcamGUI/ObjectUI.py:1554
  6296. msgid ""
  6297. "Type here any G-Code commands you would\n"
  6298. "like to append to the generated file.\n"
  6299. "I.e.: M2 (End of program)"
  6300. msgstr ""
  6301. #: flatcamGUI/FlatCAMGUI.py:6340
  6302. msgid "CNC Job Adv. Options"
  6303. msgstr ""
  6304. #: flatcamGUI/FlatCAMGUI.py:6343 flatcamGUI/ObjectUI.py:1533
  6305. msgid "Export CNC Code"
  6306. msgstr ""
  6307. #: flatcamGUI/FlatCAMGUI.py:6351 flatcamGUI/ObjectUI.py:1571
  6308. msgid "Toolchange G-Code"
  6309. msgstr ""
  6310. #: flatcamGUI/FlatCAMGUI.py:6354 flatcamGUI/ObjectUI.py:1574
  6311. msgid ""
  6312. "Type here any G-Code commands you would\n"
  6313. "like to be executed when Toolchange event is encountered.\n"
  6314. "This will constitute a Custom Toolchange GCode,\n"
  6315. "or a Toolchange Macro.\n"
  6316. "The FlatCAM variables are surrounded by '%' symbol.\n"
  6317. "\n"
  6318. "WARNING: it can be used only with a postprocessor file\n"
  6319. "that has 'toolchange_custom' in it's name and this is built\n"
  6320. "having as template the 'Toolchange Custom' posprocessor file."
  6321. msgstr ""
  6322. #: flatcamGUI/FlatCAMGUI.py:6373 flatcamGUI/ObjectUI.py:1593
  6323. msgid "Use Toolchange Macro"
  6324. msgstr ""
  6325. #: flatcamGUI/FlatCAMGUI.py:6375 flatcamGUI/ObjectUI.py:1595
  6326. msgid ""
  6327. "Check this box if you want to use\n"
  6328. "a Custom Toolchange GCode (macro)."
  6329. msgstr ""
  6330. #: flatcamGUI/FlatCAMGUI.py:6387 flatcamGUI/ObjectUI.py:1603
  6331. msgid ""
  6332. "A list of the FlatCAM variables that can be used\n"
  6333. "in the Toolchange event.\n"
  6334. "They have to be surrounded by the '%' symbol"
  6335. msgstr ""
  6336. #: flatcamGUI/FlatCAMGUI.py:6397 flatcamGUI/ObjectUI.py:1613
  6337. msgid "FlatCAM CNC parameters"
  6338. msgstr ""
  6339. #: flatcamGUI/FlatCAMGUI.py:6398 flatcamGUI/ObjectUI.py:1614
  6340. msgid "tool = tool number"
  6341. msgstr ""
  6342. #: flatcamGUI/FlatCAMGUI.py:6399 flatcamGUI/ObjectUI.py:1615
  6343. msgid "tooldia = tool diameter"
  6344. msgstr ""
  6345. #: flatcamGUI/FlatCAMGUI.py:6400 flatcamGUI/ObjectUI.py:1616
  6346. msgid "t_drills = for Excellon, total number of drills"
  6347. msgstr ""
  6348. #: flatcamGUI/FlatCAMGUI.py:6401 flatcamGUI/ObjectUI.py:1617
  6349. msgid "x_toolchange = X coord for Toolchange"
  6350. msgstr ""
  6351. #: flatcamGUI/FlatCAMGUI.py:6402 flatcamGUI/ObjectUI.py:1618
  6352. msgid "y_toolchange = Y coord for Toolchange"
  6353. msgstr ""
  6354. #: flatcamGUI/FlatCAMGUI.py:6403 flatcamGUI/ObjectUI.py:1619
  6355. msgid "z_toolchange = Z coord for Toolchange"
  6356. msgstr ""
  6357. #: flatcamGUI/FlatCAMGUI.py:6404
  6358. msgid "z_cut = Z depth for the cut"
  6359. msgstr ""
  6360. #: flatcamGUI/FlatCAMGUI.py:6405
  6361. msgid "z_move = Z height for travel"
  6362. msgstr ""
  6363. #: flatcamGUI/FlatCAMGUI.py:6406 flatcamGUI/ObjectUI.py:1622
  6364. msgid "z_depthpercut = the step value for multidepth cut"
  6365. msgstr ""
  6366. #: flatcamGUI/FlatCAMGUI.py:6407 flatcamGUI/ObjectUI.py:1623
  6367. msgid "spindlesspeed = the value for the spindle speed"
  6368. msgstr ""
  6369. #: flatcamGUI/FlatCAMGUI.py:6409 flatcamGUI/ObjectUI.py:1624
  6370. msgid "dwelltime = time to dwell to allow the spindle to reach it's set RPM"
  6371. msgstr ""
  6372. #: flatcamGUI/FlatCAMGUI.py:6430
  6373. msgid "NCC Tool Options"
  6374. msgstr ""
  6375. #: flatcamGUI/FlatCAMGUI.py:6435 flatcamGUI/ObjectUI.py:447
  6376. msgid ""
  6377. "Create a Geometry object with\n"
  6378. "toolpaths to cut all non-copper regions."
  6379. msgstr ""
  6380. #: flatcamGUI/FlatCAMGUI.py:6443 flatcamGUI/FlatCAMGUI.py:7397
  6381. msgid "Tools dia"
  6382. msgstr ""
  6383. #: flatcamGUI/FlatCAMGUI.py:6452 flatcamTools/ToolNonCopperClear.py:195
  6384. msgid "Tool Type"
  6385. msgstr ""
  6386. #: flatcamGUI/FlatCAMGUI.py:6454 flatcamGUI/FlatCAMGUI.py:6462
  6387. #: flatcamTools/ToolNonCopperClear.py:197
  6388. #: flatcamTools/ToolNonCopperClear.py:205
  6389. msgid ""
  6390. "Default tool type:\n"
  6391. "- 'V-shape'\n"
  6392. "- Circular"
  6393. msgstr ""
  6394. #: flatcamGUI/FlatCAMGUI.py:6459 flatcamTools/ToolNonCopperClear.py:202
  6395. msgid "V-shape"
  6396. msgstr ""
  6397. #: flatcamGUI/FlatCAMGUI.py:6471 flatcamGUI/ObjectUI.py:1109
  6398. #: flatcamTools/ToolNonCopperClear.py:220
  6399. msgid "V-Tip Dia"
  6400. msgstr ""
  6401. #: flatcamGUI/FlatCAMGUI.py:6473 flatcamGUI/ObjectUI.py:1112
  6402. #: flatcamTools/ToolNonCopperClear.py:222
  6403. msgid "The tip diameter for V-Shape Tool"
  6404. msgstr ""
  6405. #: flatcamGUI/FlatCAMGUI.py:6480 flatcamGUI/ObjectUI.py:1120
  6406. #: flatcamTools/ToolNonCopperClear.py:227
  6407. msgid "V-Tip Angle"
  6408. msgstr ""
  6409. #: flatcamGUI/FlatCAMGUI.py:6482 flatcamGUI/ObjectUI.py:1123
  6410. #: flatcamTools/ToolNonCopperClear.py:229
  6411. msgid ""
  6412. "The tip angle for V-Shape Tool.\n"
  6413. "In degree."
  6414. msgstr ""
  6415. #: flatcamGUI/FlatCAMGUI.py:6492 flatcamGUI/FlatCAMGUI.py:6500
  6416. #: flatcamTools/ToolNonCopperClear.py:149
  6417. #: flatcamTools/ToolNonCopperClear.py:157
  6418. msgid ""
  6419. "Milling type when the selected tool is of type: 'iso_op':\n"
  6420. "- climb / best for precision milling and to reduce tool usage\n"
  6421. "- conventional / useful when there is no backlash compensation"
  6422. msgstr ""
  6423. #: flatcamGUI/FlatCAMGUI.py:6509 flatcamGUI/FlatCAMGUI.py:6869
  6424. #: flatcamTools/ToolNonCopperClear.py:163 flatcamTools/ToolPaint.py:136
  6425. msgid "Tool order"
  6426. msgstr ""
  6427. #: flatcamGUI/FlatCAMGUI.py:6510 flatcamGUI/FlatCAMGUI.py:6520
  6428. #: flatcamGUI/FlatCAMGUI.py:6870 flatcamGUI/FlatCAMGUI.py:6880
  6429. #: flatcamTools/ToolNonCopperClear.py:164
  6430. #: flatcamTools/ToolNonCopperClear.py:174 flatcamTools/ToolPaint.py:137
  6431. #: flatcamTools/ToolPaint.py:147
  6432. msgid ""
  6433. "This set the way that the tools in the tools table are used.\n"
  6434. "'No' --> means that the used order is the one in the tool table\n"
  6435. "'Forward' --> means that the tools will be ordered from small to big\n"
  6436. "'Reverse' --> menas that the tools will ordered from big to small\n"
  6437. "\n"
  6438. "WARNING: using rest machining will automatically set the order\n"
  6439. "in reverse and disable this control."
  6440. msgstr ""
  6441. #: flatcamGUI/FlatCAMGUI.py:6518 flatcamGUI/FlatCAMGUI.py:6878
  6442. #: flatcamTools/ToolNonCopperClear.py:172 flatcamTools/ToolPaint.py:145
  6443. msgid "Forward"
  6444. msgstr ""
  6445. #: flatcamGUI/FlatCAMGUI.py:6519 flatcamGUI/FlatCAMGUI.py:6879
  6446. #: flatcamTools/ToolNonCopperClear.py:173 flatcamTools/ToolPaint.py:146
  6447. msgid "Reverse"
  6448. msgstr ""
  6449. #: flatcamGUI/FlatCAMGUI.py:6532 flatcamGUI/FlatCAMGUI.py:6537
  6450. #: flatcamTools/ToolNonCopperClear.py:271
  6451. #: flatcamTools/ToolNonCopperClear.py:276
  6452. msgid ""
  6453. "Depth of cut into material. Negative value.\n"
  6454. "In FlatCAM units."
  6455. msgstr ""
  6456. #: flatcamGUI/FlatCAMGUI.py:6547 flatcamTools/ToolNonCopperClear.py:285
  6457. #, python-format
  6458. msgid ""
  6459. "How much (fraction) of the tool width to overlap each tool pass.\n"
  6460. "Example:\n"
  6461. "A value here of 0.25 means 25% from the tool diameter found above.\n"
  6462. "\n"
  6463. "Adjust the value starting with lower values\n"
  6464. "and increasing it if areas that should be cleared are still \n"
  6465. "not cleared.\n"
  6466. "Lower values = faster processing, faster execution on PCB.\n"
  6467. "Higher values = slow processing and slow execution on CNC\n"
  6468. "due of too many paths."
  6469. msgstr ""
  6470. #: flatcamGUI/FlatCAMGUI.py:6564 flatcamTools/ToolNonCopperClear.py:301
  6471. msgid "Bounding box margin."
  6472. msgstr ""
  6473. #: flatcamGUI/FlatCAMGUI.py:6573 flatcamGUI/FlatCAMGUI.py:6920
  6474. #: flatcamTools/ToolNonCopperClear.py:310
  6475. msgid ""
  6476. "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
  6477. "<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
  6478. "lines."
  6479. msgstr ""
  6480. #: flatcamGUI/FlatCAMGUI.py:6587 flatcamGUI/FlatCAMGUI.py:6934
  6481. #: flatcamTools/ToolNonCopperClear.py:324 flatcamTools/ToolPaint.py:249
  6482. msgid "Connect"
  6483. msgstr ""
  6484. #: flatcamGUI/FlatCAMGUI.py:6597 flatcamGUI/FlatCAMGUI.py:6944
  6485. #: flatcamTools/ToolNonCopperClear.py:333 flatcamTools/ToolPaint.py:258
  6486. msgid "Contour"
  6487. msgstr ""
  6488. #: flatcamGUI/FlatCAMGUI.py:6607 flatcamTools/ToolNonCopperClear.py:342
  6489. #: flatcamTools/ToolPaint.py:267
  6490. msgid "Rest M."
  6491. msgstr ""
  6492. #: flatcamGUI/FlatCAMGUI.py:6609 flatcamTools/ToolNonCopperClear.py:344
  6493. msgid ""
  6494. "If checked, use 'rest machining'.\n"
  6495. "Basically it will clear copper outside PCB features,\n"
  6496. "using the biggest tool and continue with the next tools,\n"
  6497. "from bigger to smaller, to clear areas of copper that\n"
  6498. "could not be cleared by previous tool, until there is\n"
  6499. "no more copper to clear or there are no more tools.\n"
  6500. "If not checked, use the standard algorithm."
  6501. msgstr ""
  6502. #: flatcamGUI/FlatCAMGUI.py:6624 flatcamGUI/FlatCAMGUI.py:6636
  6503. #: flatcamTools/ToolNonCopperClear.py:359
  6504. #: flatcamTools/ToolNonCopperClear.py:371
  6505. msgid ""
  6506. "If used, it will add an offset to the copper features.\n"
  6507. "The copper clearing will finish to a distance\n"
  6508. "from the copper features.\n"
  6509. "The value can be between 0 and 10 FlatCAM units."
  6510. msgstr ""
  6511. #: flatcamGUI/FlatCAMGUI.py:6634 flatcamTools/ToolNonCopperClear.py:369
  6512. msgid "Offset value"
  6513. msgstr ""
  6514. #: flatcamGUI/FlatCAMGUI.py:6651 flatcamTools/ToolNonCopperClear.py:395
  6515. msgid "Itself"
  6516. msgstr ""
  6517. #: flatcamGUI/FlatCAMGUI.py:6652 flatcamGUI/FlatCAMGUI.py:6965
  6518. msgid "Area"
  6519. msgstr ""
  6520. #: flatcamGUI/FlatCAMGUI.py:6653
  6521. msgid "Ref"
  6522. msgstr ""
  6523. #: flatcamGUI/FlatCAMGUI.py:6654
  6524. msgid "Reference"
  6525. msgstr ""
  6526. #: flatcamGUI/FlatCAMGUI.py:6656 flatcamTools/ToolNonCopperClear.py:401
  6527. msgid ""
  6528. "- 'Itself' - the non copper clearing extent\n"
  6529. "is based on the object that is copper cleared.\n"
  6530. " - 'Area Selection' - left mouse click to start selection of the area to be "
  6531. "painted.\n"
  6532. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6533. "areas.\n"
  6534. "- 'Reference Object' - will do non copper clearing within the area\n"
  6535. "specified by another object."
  6536. msgstr ""
  6537. #: flatcamGUI/FlatCAMGUI.py:6667 flatcamGUI/FlatCAMGUI.py:6973
  6538. msgid "Normal"
  6539. msgstr ""
  6540. #: flatcamGUI/FlatCAMGUI.py:6668 flatcamGUI/FlatCAMGUI.py:6974
  6541. msgid "Progressive"
  6542. msgstr ""
  6543. #: flatcamGUI/FlatCAMGUI.py:6669
  6544. msgid "NCC Plotting"
  6545. msgstr ""
  6546. #: flatcamGUI/FlatCAMGUI.py:6671
  6547. msgid ""
  6548. "- 'Normal' - normal plotting, done at the end of the NCC job\n"
  6549. "- 'Progressive' - after each shape is generated it will be plotted."
  6550. msgstr ""
  6551. #: flatcamGUI/FlatCAMGUI.py:6685
  6552. msgid "Cutout Tool Options"
  6553. msgstr ""
  6554. #: flatcamGUI/FlatCAMGUI.py:6690 flatcamGUI/ObjectUI.py:463
  6555. msgid ""
  6556. "Create toolpaths to cut around\n"
  6557. "the PCB and separate it from\n"
  6558. "the original board."
  6559. msgstr ""
  6560. #: flatcamGUI/FlatCAMGUI.py:6701 flatcamTools/ToolCutOut.py:93
  6561. msgid ""
  6562. "Diameter of the tool used to cutout\n"
  6563. "the PCB shape out of the surrounding material."
  6564. msgstr ""
  6565. #: flatcamGUI/FlatCAMGUI.py:6709 flatcamTools/ToolCutOut.py:76
  6566. msgid "Obj kind"
  6567. msgstr ""
  6568. #: flatcamGUI/FlatCAMGUI.py:6711 flatcamTools/ToolCutOut.py:78
  6569. msgid ""
  6570. "Choice of what kind the object we want to cutout is.<BR>- <B>Single</B>: "
  6571. "contain a single PCB Gerber outline object.<BR>- <B>Panel</B>: a panel PCB "
  6572. "Gerber object, which is made\n"
  6573. "out of many individual PCB outlines."
  6574. msgstr ""
  6575. #: flatcamGUI/FlatCAMGUI.py:6718 flatcamGUI/FlatCAMGUI.py:6964
  6576. #: flatcamTools/ToolCutOut.py:84
  6577. msgid "Single"
  6578. msgstr ""
  6579. #: flatcamGUI/FlatCAMGUI.py:6719 flatcamTools/ToolCutOut.py:85
  6580. msgid "Panel"
  6581. msgstr ""
  6582. #: flatcamGUI/FlatCAMGUI.py:6725 flatcamTools/ToolCutOut.py:102
  6583. msgid ""
  6584. "Margin over bounds. A positive value here\n"
  6585. "will make the cutout of the PCB further from\n"
  6586. "the actual PCB border"
  6587. msgstr ""
  6588. #: flatcamGUI/FlatCAMGUI.py:6733
  6589. msgid "Gap size"
  6590. msgstr ""
  6591. #: flatcamGUI/FlatCAMGUI.py:6735 flatcamTools/ToolCutOut.py:112
  6592. msgid ""
  6593. "The size of the bridge gaps in the cutout\n"
  6594. "used to keep the board connected to\n"
  6595. "the surrounding material (the one \n"
  6596. "from which the PCB is cutout)."
  6597. msgstr ""
  6598. #: flatcamGUI/FlatCAMGUI.py:6744 flatcamTools/ToolCutOut.py:148
  6599. msgid "Gaps"
  6600. msgstr ""
  6601. #: flatcamGUI/FlatCAMGUI.py:6746
  6602. msgid ""
  6603. "Number of gaps used for the cutout.\n"
  6604. "There can be maximum 8 bridges/gaps.\n"
  6605. "The choices are:\n"
  6606. "- None - no gaps\n"
  6607. "- lr - left + right\n"
  6608. "- tb - top + bottom\n"
  6609. "- 4 - left + right +top + bottom\n"
  6610. "- 2lr - 2*left + 2*right\n"
  6611. "- 2tb - 2*top + 2*bottom\n"
  6612. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  6613. msgstr ""
  6614. #: flatcamGUI/FlatCAMGUI.py:6768 flatcamTools/ToolCutOut.py:129
  6615. msgid "Convex Sh."
  6616. msgstr ""
  6617. #: flatcamGUI/FlatCAMGUI.py:6770 flatcamTools/ToolCutOut.py:131
  6618. msgid ""
  6619. "Create a convex shape surrounding the entire PCB.\n"
  6620. "Used only if the source object type is Gerber."
  6621. msgstr ""
  6622. #: flatcamGUI/FlatCAMGUI.py:6784
  6623. msgid "2Sided Tool Options"
  6624. msgstr ""
  6625. #: flatcamGUI/FlatCAMGUI.py:6789
  6626. msgid ""
  6627. "A tool to help in creating a double sided\n"
  6628. "PCB using alignment holes."
  6629. msgstr ""
  6630. #: flatcamGUI/FlatCAMGUI.py:6799 flatcamTools/ToolDblSided.py:234
  6631. msgid "Drill dia"
  6632. msgstr ""
  6633. #: flatcamGUI/FlatCAMGUI.py:6801 flatcamTools/ToolDblSided.py:225
  6634. #: flatcamTools/ToolDblSided.py:236
  6635. msgid "Diameter of the drill for the alignment holes."
  6636. msgstr ""
  6637. #: flatcamGUI/FlatCAMGUI.py:6810 flatcamTools/ToolDblSided.py:120
  6638. msgid "Mirror Axis:"
  6639. msgstr ""
  6640. #: flatcamGUI/FlatCAMGUI.py:6812 flatcamTools/ToolDblSided.py:122
  6641. msgid "Mirror vertically (X) or horizontally (Y)."
  6642. msgstr ""
  6643. #: flatcamGUI/FlatCAMGUI.py:6821 flatcamTools/ToolDblSided.py:131
  6644. msgid "Point"
  6645. msgstr ""
  6646. #: flatcamGUI/FlatCAMGUI.py:6822 flatcamTools/ToolDblSided.py:132
  6647. msgid "Box"
  6648. msgstr ""
  6649. #: flatcamGUI/FlatCAMGUI.py:6823
  6650. msgid "Axis Ref"
  6651. msgstr ""
  6652. #: flatcamGUI/FlatCAMGUI.py:6825 flatcamTools/ToolDblSided.py:135
  6653. msgid ""
  6654. "The axis should pass through a <b>point</b> or cut\n"
  6655. " a specified <b>box</b> (in a FlatCAM object) through \n"
  6656. "the center."
  6657. msgstr ""
  6658. #: flatcamGUI/FlatCAMGUI.py:6841
  6659. msgid "Paint Tool Options"
  6660. msgstr ""
  6661. #: flatcamGUI/FlatCAMGUI.py:6846
  6662. msgid "<b>Parameters:</b>"
  6663. msgstr ""
  6664. #: flatcamGUI/FlatCAMGUI.py:6848 flatcamGUI/ObjectUI.py:1351
  6665. msgid ""
  6666. "Creates tool paths to cover the\n"
  6667. "whole area of a polygon (remove\n"
  6668. "all copper). You will be asked\n"
  6669. "to click on the desired polygon."
  6670. msgstr ""
  6671. #: flatcamGUI/FlatCAMGUI.py:6954 flatcamTools/ToolPaint.py:282
  6672. msgid "Selection"
  6673. msgstr ""
  6674. #: flatcamGUI/FlatCAMGUI.py:6956 flatcamTools/ToolPaint.py:284
  6675. #: flatcamTools/ToolPaint.py:300
  6676. msgid ""
  6677. "How to select Polygons to be painted.\n"
  6678. "\n"
  6679. "- 'Area Selection' - left mouse click to start selection of the area to be "
  6680. "painted.\n"
  6681. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  6682. "areas.\n"
  6683. "- 'All Polygons' - the Paint will start after click.\n"
  6684. "- 'Reference Object' - will do non copper clearing within the area\n"
  6685. "specified by another object."
  6686. msgstr ""
  6687. #: flatcamGUI/FlatCAMGUI.py:6967
  6688. msgid "Ref."
  6689. msgstr ""
  6690. #: flatcamGUI/FlatCAMGUI.py:6975
  6691. msgid "Paint Plotting"
  6692. msgstr ""
  6693. #: flatcamGUI/FlatCAMGUI.py:6977
  6694. msgid ""
  6695. "- 'Normal' - normal plotting, done at the end of the Paint job\n"
  6696. "- 'Progressive' - after each shape is generated it will be plotted."
  6697. msgstr ""
  6698. #: flatcamGUI/FlatCAMGUI.py:6991
  6699. msgid "Film Tool Options"
  6700. msgstr ""
  6701. #: flatcamGUI/FlatCAMGUI.py:6996
  6702. msgid ""
  6703. "Create a PCB film from a Gerber or Geometry\n"
  6704. "FlatCAM object.\n"
  6705. "The file is saved in SVG format."
  6706. msgstr ""
  6707. #: flatcamGUI/FlatCAMGUI.py:7007
  6708. msgid "Film Type"
  6709. msgstr ""
  6710. #: flatcamGUI/FlatCAMGUI.py:7009 flatcamTools/ToolFilm.py:118
  6711. msgid ""
  6712. "Generate a Positive black film or a Negative film.\n"
  6713. "Positive means that it will print the features\n"
  6714. "with black on a white canvas.\n"
  6715. "Negative means that it will print the features\n"
  6716. "with white on a black canvas.\n"
  6717. "The Film format is SVG."
  6718. msgstr ""
  6719. #: flatcamGUI/FlatCAMGUI.py:7020 flatcamTools/ToolFilm.py:130
  6720. msgid "Border"
  6721. msgstr ""
  6722. #: flatcamGUI/FlatCAMGUI.py:7022 flatcamTools/ToolFilm.py:132
  6723. msgid ""
  6724. "Specify a border around the object.\n"
  6725. "Only for negative film.\n"
  6726. "It helps if we use as a Box Object the same \n"
  6727. "object as in Film Object. It will create a thick\n"
  6728. "black bar around the actual print allowing for a\n"
  6729. "better delimitation of the outline features which are of\n"
  6730. "white color like the rest and which may confound with the\n"
  6731. "surroundings if not for this border."
  6732. msgstr ""
  6733. #: flatcamGUI/FlatCAMGUI.py:7035 flatcamTools/ToolFilm.py:144
  6734. msgid "Scale Stroke"
  6735. msgstr ""
  6736. #: flatcamGUI/FlatCAMGUI.py:7037 flatcamTools/ToolFilm.py:146
  6737. msgid ""
  6738. "Scale the line stroke thickness of each feature in the SVG file.\n"
  6739. "It means that the line that envelope each SVG feature will be thicker or "
  6740. "thinner,\n"
  6741. "therefore the fine features may be more affected by this parameter."
  6742. msgstr ""
  6743. #: flatcamGUI/FlatCAMGUI.py:7052
  6744. msgid "Panelize Tool Options"
  6745. msgstr ""
  6746. #: flatcamGUI/FlatCAMGUI.py:7057
  6747. msgid ""
  6748. "Create an object that contains an array of (x, y) elements,\n"
  6749. "each element is a copy of the source object spaced\n"
  6750. "at a X distance, Y distance of each other."
  6751. msgstr ""
  6752. #: flatcamGUI/FlatCAMGUI.py:7068 flatcamTools/ToolPanelize.py:147
  6753. msgid "Spacing cols"
  6754. msgstr ""
  6755. #: flatcamGUI/FlatCAMGUI.py:7070 flatcamTools/ToolPanelize.py:149
  6756. msgid ""
  6757. "Spacing between columns of the desired panel.\n"
  6758. "In current units."
  6759. msgstr ""
  6760. #: flatcamGUI/FlatCAMGUI.py:7078 flatcamTools/ToolPanelize.py:156
  6761. msgid "Spacing rows"
  6762. msgstr ""
  6763. #: flatcamGUI/FlatCAMGUI.py:7080 flatcamTools/ToolPanelize.py:158
  6764. msgid ""
  6765. "Spacing between rows of the desired panel.\n"
  6766. "In current units."
  6767. msgstr ""
  6768. #: flatcamGUI/FlatCAMGUI.py:7088 flatcamTools/ToolPanelize.py:165
  6769. msgid "Columns"
  6770. msgstr ""
  6771. #: flatcamGUI/FlatCAMGUI.py:7090 flatcamTools/ToolPanelize.py:167
  6772. msgid "Number of columns of the desired panel"
  6773. msgstr ""
  6774. #: flatcamGUI/FlatCAMGUI.py:7097 flatcamTools/ToolPanelize.py:173
  6775. msgid "Rows"
  6776. msgstr ""
  6777. #: flatcamGUI/FlatCAMGUI.py:7099 flatcamTools/ToolPanelize.py:175
  6778. msgid "Number of rows of the desired panel"
  6779. msgstr ""
  6780. #: flatcamGUI/FlatCAMGUI.py:7105 flatcamTools/ToolPanelize.py:181
  6781. msgid "Gerber"
  6782. msgstr ""
  6783. #: flatcamGUI/FlatCAMGUI.py:7106 flatcamTools/ToolPanelize.py:182
  6784. msgid "Geo"
  6785. msgstr ""
  6786. #: flatcamGUI/FlatCAMGUI.py:7107 flatcamTools/ToolPanelize.py:183
  6787. msgid "Panel Type"
  6788. msgstr ""
  6789. #: flatcamGUI/FlatCAMGUI.py:7109
  6790. msgid ""
  6791. "Choose the type of object for the panel object:\n"
  6792. "- Gerber\n"
  6793. "- Geometry"
  6794. msgstr ""
  6795. #: flatcamGUI/FlatCAMGUI.py:7118
  6796. msgid "Constrain within"
  6797. msgstr ""
  6798. #: flatcamGUI/FlatCAMGUI.py:7120 flatcamTools/ToolPanelize.py:195
  6799. msgid ""
  6800. "Area define by DX and DY within to constrain the panel.\n"
  6801. "DX and DY values are in current units.\n"
  6802. "Regardless of how many columns and rows are desired,\n"
  6803. "the final panel will have as many columns and rows as\n"
  6804. "they fit completely within selected area."
  6805. msgstr ""
  6806. #: flatcamGUI/FlatCAMGUI.py:7129 flatcamTools/ToolPanelize.py:204
  6807. msgid "Width (DX)"
  6808. msgstr ""
  6809. #: flatcamGUI/FlatCAMGUI.py:7131 flatcamTools/ToolPanelize.py:206
  6810. msgid ""
  6811. "The width (DX) within which the panel must fit.\n"
  6812. "In current units."
  6813. msgstr ""
  6814. #: flatcamGUI/FlatCAMGUI.py:7138 flatcamTools/ToolPanelize.py:212
  6815. msgid "Height (DY)"
  6816. msgstr ""
  6817. #: flatcamGUI/FlatCAMGUI.py:7140 flatcamTools/ToolPanelize.py:214
  6818. msgid ""
  6819. "The height (DY)within which the panel must fit.\n"
  6820. "In current units."
  6821. msgstr ""
  6822. #: flatcamGUI/FlatCAMGUI.py:7154
  6823. msgid "Calculators Tool Options"
  6824. msgstr ""
  6825. #: flatcamGUI/FlatCAMGUI.py:7157 flatcamTools/ToolCalculators.py:25
  6826. msgid "V-Shape Tool Calculator"
  6827. msgstr ""
  6828. #: flatcamGUI/FlatCAMGUI.py:7159
  6829. msgid ""
  6830. "Calculate the tool diameter for a given V-shape tool,\n"
  6831. "having the tip diameter, tip angle and\n"
  6832. "depth-of-cut as parameters."
  6833. msgstr ""
  6834. #: flatcamGUI/FlatCAMGUI.py:7170 flatcamTools/ToolCalculators.py:92
  6835. msgid "Tip Diameter"
  6836. msgstr ""
  6837. #: flatcamGUI/FlatCAMGUI.py:7172 flatcamTools/ToolCalculators.py:97
  6838. msgid ""
  6839. "This is the tool tip diameter.\n"
  6840. "It is specified by manufacturer."
  6841. msgstr ""
  6842. #: flatcamGUI/FlatCAMGUI.py:7180 flatcamTools/ToolCalculators.py:100
  6843. msgid "Tip Angle"
  6844. msgstr ""
  6845. #: flatcamGUI/FlatCAMGUI.py:7182
  6846. msgid ""
  6847. "This is the angle on the tip of the tool.\n"
  6848. "It is specified by manufacturer."
  6849. msgstr ""
  6850. #: flatcamGUI/FlatCAMGUI.py:7192
  6851. msgid ""
  6852. "This is depth to cut into material.\n"
  6853. "In the CNCJob object it is the CutZ parameter."
  6854. msgstr ""
  6855. #: flatcamGUI/FlatCAMGUI.py:7199 flatcamTools/ToolCalculators.py:27
  6856. msgid "ElectroPlating Calculator"
  6857. msgstr ""
  6858. #: flatcamGUI/FlatCAMGUI.py:7201 flatcamTools/ToolCalculators.py:149
  6859. msgid ""
  6860. "This calculator is useful for those who plate the via/pad/drill holes,\n"
  6861. "using a method like grahite ink or calcium hypophosphite ink or palladium "
  6862. "chloride."
  6863. msgstr ""
  6864. #: flatcamGUI/FlatCAMGUI.py:7211 flatcamTools/ToolCalculators.py:158
  6865. msgid "Board Length"
  6866. msgstr ""
  6867. #: flatcamGUI/FlatCAMGUI.py:7213 flatcamTools/ToolCalculators.py:162
  6868. msgid "This is the board length. In centimeters."
  6869. msgstr ""
  6870. #: flatcamGUI/FlatCAMGUI.py:7219 flatcamTools/ToolCalculators.py:164
  6871. msgid "Board Width"
  6872. msgstr ""
  6873. #: flatcamGUI/FlatCAMGUI.py:7221 flatcamTools/ToolCalculators.py:168
  6874. msgid "This is the board width.In centimeters."
  6875. msgstr ""
  6876. #: flatcamGUI/FlatCAMGUI.py:7226 flatcamTools/ToolCalculators.py:170
  6877. msgid "Current Density"
  6878. msgstr ""
  6879. #: flatcamGUI/FlatCAMGUI.py:7229 flatcamTools/ToolCalculators.py:174
  6880. msgid ""
  6881. "Current density to pass through the board. \n"
  6882. "In Amps per Square Feet ASF."
  6883. msgstr ""
  6884. #: flatcamGUI/FlatCAMGUI.py:7235 flatcamTools/ToolCalculators.py:177
  6885. msgid "Copper Growth"
  6886. msgstr ""
  6887. #: flatcamGUI/FlatCAMGUI.py:7238 flatcamTools/ToolCalculators.py:181
  6888. msgid ""
  6889. "How thick the copper growth is intended to be.\n"
  6890. "In microns."
  6891. msgstr ""
  6892. #: flatcamGUI/FlatCAMGUI.py:7251
  6893. msgid "Transform Tool Options"
  6894. msgstr ""
  6895. #: flatcamGUI/FlatCAMGUI.py:7256
  6896. msgid ""
  6897. "Various transformations that can be applied\n"
  6898. "on a FlatCAM object."
  6899. msgstr ""
  6900. #: flatcamGUI/FlatCAMGUI.py:7266
  6901. msgid "Rotate Angle"
  6902. msgstr ""
  6903. #: flatcamGUI/FlatCAMGUI.py:7278 flatcamTools/ToolTransform.py:107
  6904. msgid "Skew_X angle"
  6905. msgstr ""
  6906. #: flatcamGUI/FlatCAMGUI.py:7288 flatcamTools/ToolTransform.py:125
  6907. msgid "Skew_Y angle"
  6908. msgstr ""
  6909. #: flatcamGUI/FlatCAMGUI.py:7298 flatcamTools/ToolTransform.py:164
  6910. msgid "Scale_X factor"
  6911. msgstr ""
  6912. #: flatcamGUI/FlatCAMGUI.py:7300 flatcamTools/ToolTransform.py:166
  6913. msgid "Factor for scaling on X axis."
  6914. msgstr ""
  6915. #: flatcamGUI/FlatCAMGUI.py:7307 flatcamTools/ToolTransform.py:181
  6916. msgid "Scale_Y factor"
  6917. msgstr ""
  6918. #: flatcamGUI/FlatCAMGUI.py:7309 flatcamTools/ToolTransform.py:183
  6919. msgid "Factor for scaling on Y axis."
  6920. msgstr ""
  6921. #: flatcamGUI/FlatCAMGUI.py:7317 flatcamTools/ToolTransform.py:202
  6922. msgid ""
  6923. "Scale the selected object(s)\n"
  6924. "using the Scale_X factor for both axis."
  6925. msgstr ""
  6926. #: flatcamGUI/FlatCAMGUI.py:7325 flatcamTools/ToolTransform.py:211
  6927. msgid ""
  6928. "Scale the selected object(s)\n"
  6929. "using the origin reference when checked,\n"
  6930. "and the center of the biggest bounding box\n"
  6931. "of the selected objects when unchecked."
  6932. msgstr ""
  6933. #: flatcamGUI/FlatCAMGUI.py:7334 flatcamTools/ToolTransform.py:239
  6934. msgid "Offset_X val"
  6935. msgstr ""
  6936. #: flatcamGUI/FlatCAMGUI.py:7336 flatcamTools/ToolTransform.py:241
  6937. msgid "Distance to offset on X axis. In current units."
  6938. msgstr ""
  6939. #: flatcamGUI/FlatCAMGUI.py:7343 flatcamTools/ToolTransform.py:256
  6940. msgid "Offset_Y val"
  6941. msgstr ""
  6942. #: flatcamGUI/FlatCAMGUI.py:7345 flatcamTools/ToolTransform.py:258
  6943. msgid "Distance to offset on Y axis. In current units."
  6944. msgstr ""
  6945. #: flatcamGUI/FlatCAMGUI.py:7351 flatcamTools/ToolTransform.py:313
  6946. msgid "Mirror Reference"
  6947. msgstr ""
  6948. #: flatcamGUI/FlatCAMGUI.py:7353 flatcamTools/ToolTransform.py:315
  6949. msgid ""
  6950. "Flip the selected object(s)\n"
  6951. "around the point in Point Entry Field.\n"
  6952. "\n"
  6953. "The point coordinates can be captured by\n"
  6954. "left click on canvas together with pressing\n"
  6955. "SHIFT key. \n"
  6956. "Then click Add button to insert coordinates.\n"
  6957. "Or enter the coords in format (x, y) in the\n"
  6958. "Point Entry field and click Flip on X(Y)"
  6959. msgstr ""
  6960. #: flatcamGUI/FlatCAMGUI.py:7364 flatcamTools/ToolTransform.py:326
  6961. msgid " Mirror Ref. Point"
  6962. msgstr ""
  6963. #: flatcamGUI/FlatCAMGUI.py:7366 flatcamTools/ToolTransform.py:328
  6964. msgid ""
  6965. "Coordinates in format (x, y) used as reference for mirroring.\n"
  6966. "The 'x' in (x, y) will be used when using Flip on X and\n"
  6967. "the 'y' in (x, y) will be used when using Flip on Y and"
  6968. msgstr ""
  6969. #: flatcamGUI/FlatCAMGUI.py:7383
  6970. msgid "SolderPaste Tool Options"
  6971. msgstr ""
  6972. #: flatcamGUI/FlatCAMGUI.py:7388
  6973. msgid ""
  6974. "A tool to create GCode for dispensing\n"
  6975. "solder paste onto a PCB."
  6976. msgstr ""
  6977. #: flatcamGUI/FlatCAMGUI.py:7399
  6978. msgid "Diameters of nozzle tools, separated by ','"
  6979. msgstr ""
  6980. #: flatcamGUI/FlatCAMGUI.py:7406
  6981. msgid "New Nozzle Dia"
  6982. msgstr ""
  6983. #: flatcamGUI/FlatCAMGUI.py:7408 flatcamTools/ToolSolderPaste.py:103
  6984. msgid "Diameter for the new Nozzle tool to add in the Tool Table"
  6985. msgstr ""
  6986. #: flatcamGUI/FlatCAMGUI.py:7416 flatcamTools/ToolSolderPaste.py:166
  6987. msgid "Z Dispense Start"
  6988. msgstr ""
  6989. #: flatcamGUI/FlatCAMGUI.py:7418 flatcamTools/ToolSolderPaste.py:168
  6990. msgid "The height (Z) when solder paste dispensing starts."
  6991. msgstr ""
  6992. #: flatcamGUI/FlatCAMGUI.py:7425 flatcamTools/ToolSolderPaste.py:174
  6993. msgid "Z Dispense"
  6994. msgstr ""
  6995. #: flatcamGUI/FlatCAMGUI.py:7427 flatcamTools/ToolSolderPaste.py:176
  6996. msgid "The height (Z) when doing solder paste dispensing."
  6997. msgstr ""
  6998. #: flatcamGUI/FlatCAMGUI.py:7434 flatcamTools/ToolSolderPaste.py:182
  6999. msgid "Z Dispense Stop"
  7000. msgstr ""
  7001. #: flatcamGUI/FlatCAMGUI.py:7436 flatcamTools/ToolSolderPaste.py:184
  7002. msgid "The height (Z) when solder paste dispensing stops."
  7003. msgstr ""
  7004. #: flatcamGUI/FlatCAMGUI.py:7443 flatcamTools/ToolSolderPaste.py:190
  7005. msgid "Z Travel"
  7006. msgstr ""
  7007. #: flatcamGUI/FlatCAMGUI.py:7445 flatcamTools/ToolSolderPaste.py:192
  7008. msgid ""
  7009. "The height (Z) for travel between pads\n"
  7010. "(without dispensing solder paste)."
  7011. msgstr ""
  7012. #: flatcamGUI/FlatCAMGUI.py:7453 flatcamTools/ToolSolderPaste.py:199
  7013. msgid "Z Toolchange"
  7014. msgstr ""
  7015. #: flatcamGUI/FlatCAMGUI.py:7455 flatcamTools/ToolSolderPaste.py:201
  7016. msgid "The height (Z) for tool (nozzle) change."
  7017. msgstr ""
  7018. #: flatcamGUI/FlatCAMGUI.py:7462 flatcamTools/ToolSolderPaste.py:207
  7019. msgid "Toolchange X-Y"
  7020. msgstr ""
  7021. #: flatcamGUI/FlatCAMGUI.py:7464 flatcamTools/ToolSolderPaste.py:209
  7022. msgid ""
  7023. "The X,Y location for tool (nozzle) change.\n"
  7024. "The format is (x, y) where x and y are real numbers."
  7025. msgstr ""
  7026. #: flatcamGUI/FlatCAMGUI.py:7472 flatcamTools/ToolSolderPaste.py:216
  7027. msgid "Feedrate X-Y"
  7028. msgstr ""
  7029. #: flatcamGUI/FlatCAMGUI.py:7474 flatcamTools/ToolSolderPaste.py:218
  7030. msgid "Feedrate (speed) while moving on the X-Y plane."
  7031. msgstr ""
  7032. #: flatcamGUI/FlatCAMGUI.py:7481 flatcamTools/ToolSolderPaste.py:224
  7033. msgid "Feedrate Z"
  7034. msgstr ""
  7035. #: flatcamGUI/FlatCAMGUI.py:7483 flatcamTools/ToolSolderPaste.py:226
  7036. msgid ""
  7037. "Feedrate (speed) while moving vertically\n"
  7038. "(on Z plane)."
  7039. msgstr ""
  7040. #: flatcamGUI/FlatCAMGUI.py:7491 flatcamTools/ToolSolderPaste.py:233
  7041. msgid "Feedrate Z Dispense"
  7042. msgstr ""
  7043. #: flatcamGUI/FlatCAMGUI.py:7493
  7044. msgid ""
  7045. "Feedrate (speed) while moving up vertically\n"
  7046. "to Dispense position (on Z plane)."
  7047. msgstr ""
  7048. #: flatcamGUI/FlatCAMGUI.py:7501 flatcamTools/ToolSolderPaste.py:242
  7049. msgid "Spindle Speed FWD"
  7050. msgstr ""
  7051. #: flatcamGUI/FlatCAMGUI.py:7503 flatcamTools/ToolSolderPaste.py:244
  7052. msgid ""
  7053. "The dispenser speed while pushing solder paste\n"
  7054. "through the dispenser nozzle."
  7055. msgstr ""
  7056. #: flatcamGUI/FlatCAMGUI.py:7511 flatcamTools/ToolSolderPaste.py:251
  7057. msgid "Dwell FWD"
  7058. msgstr ""
  7059. #: flatcamGUI/FlatCAMGUI.py:7513 flatcamTools/ToolSolderPaste.py:253
  7060. msgid "Pause after solder dispensing."
  7061. msgstr ""
  7062. #: flatcamGUI/FlatCAMGUI.py:7520 flatcamTools/ToolSolderPaste.py:259
  7063. msgid "Spindle Speed REV"
  7064. msgstr ""
  7065. #: flatcamGUI/FlatCAMGUI.py:7522 flatcamTools/ToolSolderPaste.py:261
  7066. msgid ""
  7067. "The dispenser speed while retracting solder paste\n"
  7068. "through the dispenser nozzle."
  7069. msgstr ""
  7070. #: flatcamGUI/FlatCAMGUI.py:7530 flatcamTools/ToolSolderPaste.py:268
  7071. msgid "Dwell REV"
  7072. msgstr ""
  7073. #: flatcamGUI/FlatCAMGUI.py:7532 flatcamTools/ToolSolderPaste.py:270
  7074. msgid ""
  7075. "Pause after solder paste dispenser retracted,\n"
  7076. "to allow pressure equilibrium."
  7077. msgstr ""
  7078. #: flatcamGUI/FlatCAMGUI.py:7539 flatcamGUI/ObjectUI.py:1297
  7079. #: flatcamTools/ToolSolderPaste.py:276
  7080. msgid "PostProcessor"
  7081. msgstr ""
  7082. #: flatcamGUI/FlatCAMGUI.py:7541 flatcamTools/ToolSolderPaste.py:278
  7083. msgid "Files that control the GCode generation."
  7084. msgstr ""
  7085. #: flatcamGUI/FlatCAMGUI.py:7556
  7086. msgid "Substractor Tool Options"
  7087. msgstr ""
  7088. #: flatcamGUI/FlatCAMGUI.py:7561
  7089. msgid ""
  7090. "A tool to substract one Gerber or Geometry object\n"
  7091. "from another of the same type."
  7092. msgstr ""
  7093. #: flatcamGUI/FlatCAMGUI.py:7566 flatcamTools/ToolSub.py:135
  7094. msgid "Close paths"
  7095. msgstr ""
  7096. #: flatcamGUI/FlatCAMGUI.py:7567 flatcamTools/ToolSub.py:136
  7097. msgid ""
  7098. "Checking this will close the paths cut by the Geometry substractor object."
  7099. msgstr ""
  7100. #: flatcamGUI/FlatCAMGUI.py:7578
  7101. msgid "Excellon File associations"
  7102. msgstr ""
  7103. #: flatcamGUI/FlatCAMGUI.py:7581 flatcamGUI/FlatCAMGUI.py:7614
  7104. #: flatcamGUI/FlatCAMGUI.py:7647
  7105. msgid "Extensions list"
  7106. msgstr ""
  7107. #: flatcamGUI/FlatCAMGUI.py:7583 flatcamGUI/FlatCAMGUI.py:7616
  7108. #: flatcamGUI/FlatCAMGUI.py:7649
  7109. msgid ""
  7110. "List of file extensions to be\n"
  7111. "associated with FlatCAM."
  7112. msgstr ""
  7113. #: flatcamGUI/FlatCAMGUI.py:7597 flatcamGUI/FlatCAMGUI.py:7630
  7114. #: flatcamGUI/FlatCAMGUI.py:7662
  7115. msgid ""
  7116. "Apply the file associations between\n"
  7117. "FlatCAM and the files with above extensions.\n"
  7118. "They will be active after next logon.\n"
  7119. "This work only in Windows."
  7120. msgstr ""
  7121. #: flatcamGUI/FlatCAMGUI.py:7611
  7122. msgid "GCode File associations"
  7123. msgstr ""
  7124. #: flatcamGUI/FlatCAMGUI.py:7644
  7125. msgid "Gerber File associations"
  7126. msgstr ""
  7127. #: flatcamGUI/FlatCAMGUI.py:7691 flatcamGUI/FlatCAMGUI.py:7697
  7128. msgid "Idle."
  7129. msgstr ""
  7130. #: flatcamGUI/FlatCAMGUI.py:7722
  7131. msgid "Application started ..."
  7132. msgstr ""
  7133. #: flatcamGUI/FlatCAMGUI.py:7723
  7134. msgid "Hello!"
  7135. msgstr ""
  7136. #: flatcamGUI/ObjectUI.py:33
  7137. msgid "FlatCAM Object"
  7138. msgstr ""
  7139. #: flatcamGUI/ObjectUI.py:58
  7140. msgid ""
  7141. "BASIC is suitable for a beginner. Many parameters\n"
  7142. "are hidden from the user in this mode.\n"
  7143. "ADVANCED mode will make available all parameters.\n"
  7144. "\n"
  7145. "To change the application LEVEL, go to:\n"
  7146. "Edit -> Preferences -> General and check:\n"
  7147. "'APP. LEVEL' radio button."
  7148. msgstr ""
  7149. #: flatcamGUI/ObjectUI.py:81
  7150. msgid "Change the size of the object."
  7151. msgstr ""
  7152. #: flatcamGUI/ObjectUI.py:89
  7153. msgid "Factor"
  7154. msgstr ""
  7155. #: flatcamGUI/ObjectUI.py:91
  7156. msgid ""
  7157. "Factor by which to multiply\n"
  7158. "geometric features of this object."
  7159. msgstr ""
  7160. #: flatcamGUI/ObjectUI.py:102
  7161. msgid "Perform scaling operation."
  7162. msgstr ""
  7163. #: flatcamGUI/ObjectUI.py:110
  7164. msgid "Change the position of this object."
  7165. msgstr ""
  7166. #: flatcamGUI/ObjectUI.py:117
  7167. msgid "Vector"
  7168. msgstr ""
  7169. #: flatcamGUI/ObjectUI.py:119
  7170. msgid ""
  7171. "Amount by which to move the object\n"
  7172. "in the x and y axes in (x, y) format."
  7173. msgstr ""
  7174. #: flatcamGUI/ObjectUI.py:129
  7175. msgid "Perform the offset operation."
  7176. msgstr ""
  7177. #: flatcamGUI/ObjectUI.py:143
  7178. msgid "Gerber Object"
  7179. msgstr ""
  7180. #: flatcamGUI/ObjectUI.py:182 flatcamGUI/ObjectUI.py:574
  7181. #: flatcamGUI/ObjectUI.py:900 flatcamGUI/ObjectUI.py:1423
  7182. msgid "Name"
  7183. msgstr ""
  7184. #: flatcamGUI/ObjectUI.py:203
  7185. msgid ""
  7186. "Toggle the display of the Gerber Apertures Table.\n"
  7187. "When unchecked, it will delete all mark shapes\n"
  7188. "that are drawn on canvas."
  7189. msgstr ""
  7190. #: flatcamGUI/ObjectUI.py:213
  7191. msgid "Mark All"
  7192. msgstr ""
  7193. #: flatcamGUI/ObjectUI.py:215
  7194. msgid ""
  7195. "When checked it will display all the apertures.\n"
  7196. "When unchecked, it will delete all mark shapes\n"
  7197. "that are drawn on canvas."
  7198. msgstr ""
  7199. #: flatcamGUI/ObjectUI.py:243
  7200. msgid "Mark the aperture instances on canvas."
  7201. msgstr ""
  7202. #: flatcamGUI/ObjectUI.py:266
  7203. msgid ""
  7204. "Diameter of the cutting tool.\n"
  7205. "If you want to have an isolation path\n"
  7206. "inside the actual shape of the Gerber\n"
  7207. "feature, use a negative value for\n"
  7208. "this parameter."
  7209. msgstr ""
  7210. #: flatcamGUI/ObjectUI.py:324
  7211. msgid "Except"
  7212. msgstr ""
  7213. #: flatcamGUI/ObjectUI.py:325
  7214. msgid ""
  7215. "When the isolation geometry is generated,\n"
  7216. "by checking this, the area of the object bellow\n"
  7217. "will be subtracted from the isolation geometry."
  7218. msgstr ""
  7219. #: flatcamGUI/ObjectUI.py:350 flatcamTools/ToolCutOut.py:53
  7220. #: flatcamTools/ToolNonCopperClear.py:69 flatcamTools/ToolPaint.py:68
  7221. msgid "Obj Type"
  7222. msgstr ""
  7223. #: flatcamGUI/ObjectUI.py:352
  7224. msgid ""
  7225. "Specify the type of object to be excepted from isolation.\n"
  7226. "It can be of type: Gerber or Geometry.\n"
  7227. "What is selected here will dictate the kind\n"
  7228. "of objects that will populate the 'Object' combobox."
  7229. msgstr ""
  7230. #: flatcamGUI/ObjectUI.py:365 flatcamTools/ToolCutOut.py:69
  7231. #: flatcamTools/ToolNonCopperClear.py:87 flatcamTools/ToolPaint.py:86
  7232. #: flatcamTools/ToolPanelize.py:71 flatcamTools/ToolPanelize.py:84
  7233. msgid "Object"
  7234. msgstr ""
  7235. #: flatcamGUI/ObjectUI.py:366
  7236. msgid "Object whose area will be removed from isolation geometry."
  7237. msgstr ""
  7238. #: flatcamGUI/ObjectUI.py:370
  7239. msgid "Generate Isolation Geometry"
  7240. msgstr ""
  7241. #: flatcamGUI/ObjectUI.py:372
  7242. msgid ""
  7243. "Create a Geometry object with toolpaths to cut \n"
  7244. "isolation outside, inside or on both sides of the\n"
  7245. "object. For a Gerber object outside means outside\n"
  7246. "of the Gerber feature and inside means inside of\n"
  7247. "the Gerber feature, if possible at all. This means\n"
  7248. "that only if the Gerber feature has openings inside, they\n"
  7249. "will be isolated. If what is wanted is to cut isolation\n"
  7250. "inside the actual Gerber feature, use a negative tool\n"
  7251. "diameter above."
  7252. msgstr ""
  7253. #: flatcamGUI/ObjectUI.py:384
  7254. msgid "Buffer Solid Geometry"
  7255. msgstr ""
  7256. #: flatcamGUI/ObjectUI.py:386
  7257. msgid ""
  7258. "This button is shown only when the Gerber file\n"
  7259. "is loaded without buffering.\n"
  7260. "Clicking this will create the buffered geometry\n"
  7261. "required for isolation."
  7262. msgstr ""
  7263. #: flatcamGUI/ObjectUI.py:393
  7264. msgid "FULL Geo"
  7265. msgstr ""
  7266. #: flatcamGUI/ObjectUI.py:395
  7267. msgid ""
  7268. "Create the Geometry Object\n"
  7269. "for isolation routing. It contains both\n"
  7270. "the interiors and exteriors geometry."
  7271. msgstr ""
  7272. #: flatcamGUI/ObjectUI.py:404
  7273. msgid "Ext Geo"
  7274. msgstr ""
  7275. #: flatcamGUI/ObjectUI.py:406
  7276. msgid ""
  7277. "Create the Geometry Object\n"
  7278. "for isolation routing containing\n"
  7279. "only the exteriors geometry."
  7280. msgstr ""
  7281. #: flatcamGUI/ObjectUI.py:413
  7282. msgid "Int Geo"
  7283. msgstr ""
  7284. #: flatcamGUI/ObjectUI.py:415
  7285. msgid ""
  7286. "Create the Geometry Object\n"
  7287. "for isolation routing containing\n"
  7288. "only the interiors geometry."
  7289. msgstr ""
  7290. #: flatcamGUI/ObjectUI.py:445
  7291. msgid "Clear N-copper"
  7292. msgstr ""
  7293. #: flatcamGUI/ObjectUI.py:454 flatcamTools/ToolNonCopperClear.py:442
  7294. msgid ""
  7295. "Create the Geometry Object\n"
  7296. "for non-copper routing."
  7297. msgstr ""
  7298. #: flatcamGUI/ObjectUI.py:461
  7299. msgid "Board cutout"
  7300. msgstr ""
  7301. #: flatcamGUI/ObjectUI.py:468 flatcamTools/ToolCutOut.py:343
  7302. msgid "Cutout Tool"
  7303. msgstr ""
  7304. #: flatcamGUI/ObjectUI.py:470
  7305. msgid ""
  7306. "Generate the geometry for\n"
  7307. "the board cutout."
  7308. msgstr ""
  7309. #: flatcamGUI/ObjectUI.py:508 flatcamGUI/ObjectUI.py:540
  7310. #: flatcamTools/ToolCutOut.py:183 flatcamTools/ToolCutOut.py:203
  7311. #: flatcamTools/ToolCutOut.py:254 flatcamTools/ToolSolderPaste.py:127
  7312. msgid "Generate Geo"
  7313. msgstr ""
  7314. #: flatcamGUI/ObjectUI.py:515
  7315. msgid ""
  7316. "Create a geometry surrounding the Gerber object.\n"
  7317. "Square shape."
  7318. msgstr ""
  7319. #: flatcamGUI/ObjectUI.py:542
  7320. msgid "Generate the Geometry object."
  7321. msgstr ""
  7322. #: flatcamGUI/ObjectUI.py:554
  7323. msgid "Excellon Object"
  7324. msgstr ""
  7325. #: flatcamGUI/ObjectUI.py:565
  7326. msgid "Solid circles."
  7327. msgstr ""
  7328. #: flatcamGUI/ObjectUI.py:613
  7329. msgid "Drills"
  7330. msgstr ""
  7331. #: flatcamGUI/ObjectUI.py:618
  7332. msgid ""
  7333. "This is the Tool Number.\n"
  7334. "When ToolChange is checked, on toolchange event this value\n"
  7335. "will be showed as a T1, T2 ... Tn in the Machine Code.\n"
  7336. "\n"
  7337. "Here the tools are selected for G-code generation."
  7338. msgstr ""
  7339. #: flatcamGUI/ObjectUI.py:623 flatcamGUI/ObjectUI.py:965
  7340. #: flatcamTools/ToolPaint.py:120
  7341. msgid ""
  7342. "Tool Diameter. It's value (in current FlatCAM units) \n"
  7343. "is the cut width into the material."
  7344. msgstr ""
  7345. #: flatcamGUI/ObjectUI.py:626
  7346. msgid ""
  7347. "The number of Drill holes. Holes that are drilled with\n"
  7348. "a drill bit."
  7349. msgstr ""
  7350. #: flatcamGUI/ObjectUI.py:629
  7351. msgid ""
  7352. "The number of Slot holes. Holes that are created by\n"
  7353. "milling them with an endmill bit."
  7354. msgstr ""
  7355. #: flatcamGUI/ObjectUI.py:636
  7356. msgid ""
  7357. "Toggle display of the drills for the current tool.\n"
  7358. "This does not select the tools for G-code generation."
  7359. msgstr ""
  7360. #: flatcamGUI/ObjectUI.py:645
  7361. msgid ""
  7362. "Create a CNC Job object\n"
  7363. "for this drill object."
  7364. msgstr ""
  7365. #: flatcamGUI/ObjectUI.py:682 flatcamGUI/ObjectUI.py:1177
  7366. msgid "Tool change Z"
  7367. msgstr ""
  7368. #: flatcamGUI/ObjectUI.py:799
  7369. msgid ""
  7370. "Select from the Tools Table above\n"
  7371. "the hole dias that are to be drilled.\n"
  7372. "Use the # column to make the selection."
  7373. msgstr ""
  7374. #: flatcamGUI/ObjectUI.py:809
  7375. msgid ""
  7376. "Choose what to use for GCode generation:\n"
  7377. "'Drills', 'Slots' or 'Both'.\n"
  7378. "When choosing 'Slots' or 'Both', slots will be\n"
  7379. "converted to a series of drills."
  7380. msgstr ""
  7381. #: flatcamGUI/ObjectUI.py:824
  7382. msgid "Create Drills GCode"
  7383. msgstr ""
  7384. #: flatcamGUI/ObjectUI.py:826
  7385. msgid "Generate the CNC Job."
  7386. msgstr ""
  7387. #: flatcamGUI/ObjectUI.py:838
  7388. msgid ""
  7389. "Select from the Tools Table above\n"
  7390. "the hole dias that are to be milled.\n"
  7391. "Use the # column to make the selection."
  7392. msgstr ""
  7393. #: flatcamGUI/ObjectUI.py:853
  7394. msgid "Mill Drills Geo"
  7395. msgstr ""
  7396. #: flatcamGUI/ObjectUI.py:855
  7397. msgid ""
  7398. "Create the Geometry Object\n"
  7399. "for milling DRILLS toolpaths."
  7400. msgstr ""
  7401. #: flatcamGUI/ObjectUI.py:870
  7402. msgid "Mill Slots Geo"
  7403. msgstr ""
  7404. #: flatcamGUI/ObjectUI.py:872
  7405. msgid ""
  7406. "Create the Geometry Object\n"
  7407. "for milling SLOTS toolpaths."
  7408. msgstr ""
  7409. #: flatcamGUI/ObjectUI.py:890
  7410. msgid "Geometry Object"
  7411. msgstr ""
  7412. #: flatcamGUI/ObjectUI.py:921
  7413. msgid ""
  7414. "Tools in this Geometry object used for cutting.\n"
  7415. "The 'Offset' entry will set an offset for the cut.\n"
  7416. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7417. "'Type' entry is only informative and it allow to know the \n"
  7418. "intent of using the current tool. \n"
  7419. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7420. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7421. "ball(B), or V-Shaped(V). \n"
  7422. "When V-shaped is selected the 'Type' entry is automatically \n"
  7423. "set to Isolation, the CutZ parameter in the UI form is\n"
  7424. "grayed out and Cut Z is automatically calculated from the newly \n"
  7425. "showed UI form entries named V-Tip Dia and V-Tip Angle."
  7426. msgstr ""
  7427. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7428. msgid "Dia"
  7429. msgstr ""
  7430. #: flatcamGUI/ObjectUI.py:952 flatcamGUI/ObjectUI.py:1517
  7431. #: flatcamTools/ToolNonCopperClear.py:107 flatcamTools/ToolPaint.py:106
  7432. msgid "TT"
  7433. msgstr ""
  7434. #: flatcamGUI/ObjectUI.py:959
  7435. msgid ""
  7436. "This is the Tool Number.\n"
  7437. "When ToolChange is checked, on toolchange event this value\n"
  7438. "will be showed as a T1, T2 ... Tn"
  7439. msgstr ""
  7440. #: flatcamGUI/ObjectUI.py:970
  7441. msgid ""
  7442. "The value for the Offset can be:\n"
  7443. "- Path -> There is no offset, the tool cut will be done through the geometry "
  7444. "line.\n"
  7445. "- In(side) -> The tool cut will follow the geometry inside. It will create a "
  7446. "'pocket'.\n"
  7447. "- Out(side) -> The tool cut will follow the geometry line on the outside."
  7448. msgstr ""
  7449. #: flatcamGUI/ObjectUI.py:977
  7450. msgid ""
  7451. "The (Operation) Type has only informative value. Usually the UI form "
  7452. "values \n"
  7453. "are choose based on the operation type and this will serve as a reminder.\n"
  7454. "Can be 'Roughing', 'Finishing' or 'Isolation'.\n"
  7455. "For Roughing we may choose a lower Feedrate and multiDepth cut.\n"
  7456. "For Finishing we may choose a higher Feedrate, without multiDepth.\n"
  7457. "For Isolation we need a lower Feedrate as it use a milling bit with a fine "
  7458. "tip."
  7459. msgstr ""
  7460. #: flatcamGUI/ObjectUI.py:986
  7461. msgid ""
  7462. "The Tool Type (TT) can be:\n"
  7463. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular the "
  7464. "cut width in material\n"
  7465. "is exactly the tool diameter.\n"
  7466. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  7467. "- V-Shape -> it will disable de Z-Cut parameter in the UI form and enable "
  7468. "two additional UI form\n"
  7469. "fields: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust "
  7470. "the Z-Cut parameter such\n"
  7471. "as the cut width into material will be equal with the value in the Tool "
  7472. "Diameter column of this table.\n"
  7473. "Choosing the V-Shape Tool Type automatically will select the Operation Type "
  7474. "as Isolation."
  7475. msgstr ""
  7476. #: flatcamGUI/ObjectUI.py:998
  7477. msgid ""
  7478. "Plot column. It is visible only for MultiGeo geometries, meaning geometries "
  7479. "that holds the geometry\n"
  7480. "data into the tools. For those geometries, deleting the tool will delete the "
  7481. "geometry data also,\n"
  7482. "so be WARNED. From the checkboxes on each row it can be enabled/disabled the "
  7483. "plot on canvas\n"
  7484. "for the corresponding tool."
  7485. msgstr ""
  7486. #: flatcamGUI/ObjectUI.py:1011
  7487. msgid "Tool Offset"
  7488. msgstr ""
  7489. #: flatcamGUI/ObjectUI.py:1014
  7490. msgid ""
  7491. "The value to offset the cut when \n"
  7492. "the Offset type selected is 'Offset'.\n"
  7493. "The value can be positive for 'outside'\n"
  7494. "cut and negative for 'inside' cut."
  7495. msgstr ""
  7496. #: flatcamGUI/ObjectUI.py:1056 flatcamTools/ToolNonCopperClear.py:239
  7497. #: flatcamTools/ToolPaint.py:178
  7498. msgid ""
  7499. "Add a new tool to the Tool Table\n"
  7500. "with the diameter specified above."
  7501. msgstr ""
  7502. #: flatcamGUI/ObjectUI.py:1064
  7503. msgid ""
  7504. "Copy a selection of tools in the Tool Table\n"
  7505. "by first selecting a row in the Tool Table."
  7506. msgstr ""
  7507. #: flatcamGUI/ObjectUI.py:1072
  7508. msgid ""
  7509. "Delete a selection of tools in the Tool Table\n"
  7510. "by first selecting a row in the Tool Table."
  7511. msgstr ""
  7512. #: flatcamGUI/ObjectUI.py:1088
  7513. msgid "Tool Data"
  7514. msgstr ""
  7515. #: flatcamGUI/ObjectUI.py:1091
  7516. msgid ""
  7517. "The data used for creating GCode.\n"
  7518. "Each tool store it's own set of such data."
  7519. msgstr ""
  7520. #: flatcamGUI/ObjectUI.py:1158
  7521. msgid "Depth of each pass (positive)."
  7522. msgstr ""
  7523. #: flatcamGUI/ObjectUI.py:1332
  7524. msgid ""
  7525. "Add at least one tool in the tool-table.\n"
  7526. "Click the header to select all, or Ctrl + LMB\n"
  7527. "for custom selection of tools."
  7528. msgstr ""
  7529. #: flatcamGUI/ObjectUI.py:1339
  7530. msgid "Generate"
  7531. msgstr ""
  7532. #: flatcamGUI/ObjectUI.py:1341
  7533. msgid "Generate the CNC Job object."
  7534. msgstr ""
  7535. #: flatcamGUI/ObjectUI.py:1348
  7536. msgid "Paint Area"
  7537. msgstr ""
  7538. #: flatcamGUI/ObjectUI.py:1362
  7539. msgid "Launch Paint Tool in Tools Tab."
  7540. msgstr ""
  7541. #: flatcamGUI/ObjectUI.py:1378
  7542. msgid "CNC Job Object"
  7543. msgstr ""
  7544. #: flatcamGUI/ObjectUI.py:1429
  7545. msgid "Travelled dist."
  7546. msgstr ""
  7547. #: flatcamGUI/ObjectUI.py:1431 flatcamGUI/ObjectUI.py:1436
  7548. msgid ""
  7549. "This is the total travelled distance on X-Y plane.\n"
  7550. "In current units."
  7551. msgstr ""
  7552. #: flatcamGUI/ObjectUI.py:1441
  7553. msgid "Estimated time"
  7554. msgstr ""
  7555. #: flatcamGUI/ObjectUI.py:1443 flatcamGUI/ObjectUI.py:1448
  7556. msgid ""
  7557. "This is the estimated time to do the routing/drilling,\n"
  7558. "without the time spent in ToolChange events."
  7559. msgstr ""
  7560. #: flatcamGUI/ObjectUI.py:1483
  7561. msgid "CNC Tools Table"
  7562. msgstr ""
  7563. #: flatcamGUI/ObjectUI.py:1486
  7564. msgid ""
  7565. "Tools in this CNCJob object used for cutting.\n"
  7566. "The tool diameter is used for plotting on canvas.\n"
  7567. "The 'Offset' entry will set an offset for the cut.\n"
  7568. "'Offset' can be inside, outside, on path (none) and custom.\n"
  7569. "'Type' entry is only informative and it allow to know the \n"
  7570. "intent of using the current tool. \n"
  7571. "It can be Rough(ing), Finish(ing) or Iso(lation).\n"
  7572. "The 'Tool type'(TT) can be circular with 1 to 4 teeths(C1..C4),\n"
  7573. "ball(B), or V-Shaped(V)."
  7574. msgstr ""
  7575. #: flatcamGUI/ObjectUI.py:1518
  7576. msgid "P"
  7577. msgstr ""
  7578. #: flatcamGUI/ObjectUI.py:1524
  7579. msgid "Update Plot"
  7580. msgstr ""
  7581. #: flatcamGUI/ObjectUI.py:1526
  7582. msgid "Update the plot."
  7583. msgstr ""
  7584. #: flatcamGUI/ObjectUI.py:1541
  7585. msgid "Prepend to CNC Code"
  7586. msgstr ""
  7587. #: flatcamGUI/ObjectUI.py:1552
  7588. msgid "Append to CNC Code"
  7589. msgstr ""
  7590. #: flatcamGUI/ObjectUI.py:1620
  7591. msgid "z_cut = depth where to cut"
  7592. msgstr ""
  7593. #: flatcamGUI/ObjectUI.py:1621
  7594. msgid "z_move = height where to travel"
  7595. msgstr ""
  7596. #: flatcamGUI/ObjectUI.py:1640
  7597. msgid "View CNC Code"
  7598. msgstr ""
  7599. #: flatcamGUI/ObjectUI.py:1642
  7600. msgid ""
  7601. "Opens TAB to view/modify/print G-Code\n"
  7602. "file."
  7603. msgstr ""
  7604. #: flatcamGUI/ObjectUI.py:1647
  7605. msgid "Save CNC Code"
  7606. msgstr ""
  7607. #: flatcamGUI/ObjectUI.py:1649
  7608. msgid ""
  7609. "Opens dialog to save G-Code\n"
  7610. "file."
  7611. msgstr ""
  7612. #: flatcamParsers/ParseFont.py:305
  7613. msgid "Font not supported, try another one."
  7614. msgstr ""
  7615. #: flatcamTools/ToolCalculators.py:24
  7616. msgid "Calculators"
  7617. msgstr ""
  7618. #: flatcamTools/ToolCalculators.py:26
  7619. msgid "Units Calculator"
  7620. msgstr ""
  7621. #: flatcamTools/ToolCalculators.py:68
  7622. msgid "Here you enter the value to be converted from INCH to MM"
  7623. msgstr ""
  7624. #: flatcamTools/ToolCalculators.py:73
  7625. msgid "Here you enter the value to be converted from MM to INCH"
  7626. msgstr ""
  7627. #: flatcamTools/ToolCalculators.py:104
  7628. msgid ""
  7629. "This is the angle of the tip of the tool.\n"
  7630. "It is specified by manufacturer."
  7631. msgstr ""
  7632. #: flatcamTools/ToolCalculators.py:111
  7633. msgid ""
  7634. "This is the depth to cut into the material.\n"
  7635. "In the CNCJob is the CutZ parameter."
  7636. msgstr ""
  7637. #: flatcamTools/ToolCalculators.py:114
  7638. msgid "Tool Diameter"
  7639. msgstr ""
  7640. #: flatcamTools/ToolCalculators.py:118
  7641. msgid ""
  7642. "This is the tool diameter to be entered into\n"
  7643. "FlatCAM Gerber section.\n"
  7644. "In the CNCJob section it is called >Tool dia<."
  7645. msgstr ""
  7646. #: flatcamTools/ToolCalculators.py:129 flatcamTools/ToolCalculators.py:210
  7647. msgid "Calculate"
  7648. msgstr ""
  7649. #: flatcamTools/ToolCalculators.py:132
  7650. msgid ""
  7651. "Calculate either the Cut Z or the effective tool diameter,\n"
  7652. " depending on which is desired and which is known. "
  7653. msgstr ""
  7654. #: flatcamTools/ToolCalculators.py:186
  7655. msgid "Current Value"
  7656. msgstr ""
  7657. #: flatcamTools/ToolCalculators.py:190
  7658. msgid ""
  7659. "This is the current intensity value\n"
  7660. "to be set on the Power Supply. In Amps."
  7661. msgstr ""
  7662. #: flatcamTools/ToolCalculators.py:194
  7663. msgid "Time"
  7664. msgstr ""
  7665. #: flatcamTools/ToolCalculators.py:198
  7666. msgid ""
  7667. "This is the calculated time required for the procedure.\n"
  7668. "In minutes."
  7669. msgstr ""
  7670. #: flatcamTools/ToolCalculators.py:213
  7671. msgid ""
  7672. "Calculate the current intensity value and the procedure time,\n"
  7673. "depending on the parameters above"
  7674. msgstr ""
  7675. #: flatcamTools/ToolCalculators.py:262
  7676. msgid "Calc. Tool"
  7677. msgstr ""
  7678. #: flatcamTools/ToolCutOut.py:18
  7679. msgid "Cutout PCB"
  7680. msgstr ""
  7681. #: flatcamTools/ToolCutOut.py:55
  7682. msgid ""
  7683. "Specify the type of object to be cutout.\n"
  7684. "It can be of type: Gerber or Geometry.\n"
  7685. "What is selected here will dictate the kind\n"
  7686. "of objects that will populate the 'Object' combobox."
  7687. msgstr ""
  7688. #: flatcamTools/ToolCutOut.py:71
  7689. msgid "Object to be cutout. "
  7690. msgstr ""
  7691. #: flatcamTools/ToolCutOut.py:100
  7692. msgid "Margin:"
  7693. msgstr ""
  7694. #: flatcamTools/ToolCutOut.py:110
  7695. msgid "Gap size:"
  7696. msgstr ""
  7697. #: flatcamTools/ToolCutOut.py:137
  7698. msgid "A. Automatic Bridge Gaps"
  7699. msgstr ""
  7700. #: flatcamTools/ToolCutOut.py:139
  7701. msgid "This section handle creation of automatic bridge gaps."
  7702. msgstr ""
  7703. #: flatcamTools/ToolCutOut.py:150
  7704. msgid ""
  7705. "Number of gaps used for the Automatic cutout.\n"
  7706. "There can be maximum 8 bridges/gaps.\n"
  7707. "The choices are:\n"
  7708. "- None - no gaps\n"
  7709. "- lr - left + right\n"
  7710. "- tb - top + bottom\n"
  7711. "- 4 - left + right +top + bottom\n"
  7712. "- 2lr - 2*left + 2*right\n"
  7713. "- 2tb - 2*top + 2*bottom\n"
  7714. "- 8 - 2*left + 2*right +2*top + 2*bottom"
  7715. msgstr ""
  7716. #: flatcamTools/ToolCutOut.py:174
  7717. msgid "FreeForm"
  7718. msgstr ""
  7719. #: flatcamTools/ToolCutOut.py:176
  7720. msgid ""
  7721. "The cutout shape can be of ny shape.\n"
  7722. "Useful when the PCB has a non-rectangular shape."
  7723. msgstr ""
  7724. #: flatcamTools/ToolCutOut.py:185
  7725. msgid ""
  7726. "Cutout the selected object.\n"
  7727. "The cutout shape can be of any shape.\n"
  7728. "Useful when the PCB has a non-rectangular shape."
  7729. msgstr ""
  7730. #: flatcamTools/ToolCutOut.py:194
  7731. msgid "Rectangular"
  7732. msgstr ""
  7733. #: flatcamTools/ToolCutOut.py:196
  7734. msgid ""
  7735. "The resulting cutout shape is\n"
  7736. "always a rectangle shape and it will be\n"
  7737. "the bounding box of the Object."
  7738. msgstr ""
  7739. #: flatcamTools/ToolCutOut.py:205
  7740. msgid ""
  7741. "Cutout the selected object.\n"
  7742. "The resulting cutout shape is\n"
  7743. "always a rectangle shape and it will be\n"
  7744. "the bounding box of the Object."
  7745. msgstr ""
  7746. #: flatcamTools/ToolCutOut.py:213
  7747. msgid "B. Manual Bridge Gaps"
  7748. msgstr ""
  7749. #: flatcamTools/ToolCutOut.py:215
  7750. msgid ""
  7751. "This section handle creation of manual bridge gaps.\n"
  7752. "This is done by mouse clicking on the perimeter of the\n"
  7753. "Geometry object that is used as a cutout object. "
  7754. msgstr ""
  7755. #: flatcamTools/ToolCutOut.py:231
  7756. msgid "Geo Obj"
  7757. msgstr ""
  7758. #: flatcamTools/ToolCutOut.py:233
  7759. msgid "Geometry object used to create the manual cutout."
  7760. msgstr ""
  7761. #: flatcamTools/ToolCutOut.py:244
  7762. msgid "Manual Geo"
  7763. msgstr ""
  7764. #: flatcamTools/ToolCutOut.py:246 flatcamTools/ToolCutOut.py:256
  7765. msgid ""
  7766. "If the object to be cutout is a Gerber\n"
  7767. "first create a Geometry that surrounds it,\n"
  7768. "to be used as the cutout, if one doesn't exist yet.\n"
  7769. "Select the source Gerber file in the top object combobox."
  7770. msgstr ""
  7771. #: flatcamTools/ToolCutOut.py:266
  7772. msgid "Manual Add Bridge Gaps"
  7773. msgstr ""
  7774. #: flatcamTools/ToolCutOut.py:268
  7775. msgid ""
  7776. "Use the left mouse button (LMB) click\n"
  7777. "to create a bridge gap to separate the PCB from\n"
  7778. "the surrounding material."
  7779. msgstr ""
  7780. #: flatcamTools/ToolCutOut.py:275
  7781. msgid "Generate Gap"
  7782. msgstr ""
  7783. #: flatcamTools/ToolCutOut.py:277
  7784. msgid ""
  7785. "Use the left mouse button (LMB) click\n"
  7786. "to create a bridge gap to separate the PCB from\n"
  7787. "the surrounding material.\n"
  7788. "The LMB click has to be done on the perimeter of\n"
  7789. "the Geometry object used as a cutout geometry."
  7790. msgstr ""
  7791. #: flatcamTools/ToolCutOut.py:371 flatcamTools/ToolCutOut.py:571
  7792. #: flatcamTools/ToolNonCopperClear.py:1124
  7793. #: flatcamTools/ToolNonCopperClear.py:1265 flatcamTools/ToolPaint.py:1149
  7794. #: flatcamTools/ToolPanelize.py:359 flatcamTools/ToolPanelize.py:376
  7795. #: flatcamTools/ToolSub.py:254 flatcamTools/ToolSub.py:269
  7796. #: flatcamTools/ToolSub.py:456 flatcamTools/ToolSub.py:471
  7797. #: tclCommands/TclCommandCopperClear.py:131
  7798. #: tclCommands/TclCommandCopperClear.py:207 tclCommands/TclCommandPaint.py:133
  7799. msgid "Could not retrieve object"
  7800. msgstr ""
  7801. #: flatcamTools/ToolCutOut.py:376
  7802. msgid ""
  7803. "There is no object selected for Cutout.\n"
  7804. "Select one and try again."
  7805. msgstr ""
  7806. #: flatcamTools/ToolCutOut.py:392 flatcamTools/ToolCutOut.py:590
  7807. #: flatcamTools/ToolCutOut.py:760 flatcamTools/ToolCutOut.py:854
  7808. msgid "Tool Diameter is zero value. Change it to a positive real number."
  7809. msgstr ""
  7810. #: flatcamTools/ToolCutOut.py:408 flatcamTools/ToolCutOut.py:606
  7811. #: flatcamTools/ToolCutOut.py:870
  7812. msgid "Margin value is missing or wrong format. Add it and retry."
  7813. msgstr ""
  7814. #: flatcamTools/ToolCutOut.py:419 flatcamTools/ToolCutOut.py:617
  7815. #: flatcamTools/ToolCutOut.py:771
  7816. msgid "Gap size value is missing or wrong format. Add it and retry."
  7817. msgstr ""
  7818. #: flatcamTools/ToolCutOut.py:425 flatcamTools/ToolCutOut.py:624
  7819. msgid "Number of gaps value is missing. Add it and retry."
  7820. msgstr ""
  7821. #: flatcamTools/ToolCutOut.py:430 flatcamTools/ToolCutOut.py:628
  7822. msgid ""
  7823. "Gaps value can be only one of: 'None', 'lr', 'tb', '2lr', '2tb', 4 or 8. "
  7824. "Fill in a correct value and retry. "
  7825. msgstr ""
  7826. #: flatcamTools/ToolCutOut.py:435 flatcamTools/ToolCutOut.py:634
  7827. msgid ""
  7828. "Cutout operation cannot be done on a multi-geo Geometry.\n"
  7829. "Optionally, this Multi-geo Geometry can be converted to Single-geo "
  7830. "Geometry,\n"
  7831. "and after that perform Cutout."
  7832. msgstr ""
  7833. #: flatcamTools/ToolCutOut.py:554 flatcamTools/ToolCutOut.py:739
  7834. msgid "Any form CutOut operation finished."
  7835. msgstr ""
  7836. #: flatcamTools/ToolCutOut.py:575 flatcamTools/ToolNonCopperClear.py:1087
  7837. #, python-format
  7838. msgid "Object not found: %s"
  7839. msgstr ""
  7840. #: flatcamTools/ToolCutOut.py:744
  7841. msgid ""
  7842. "Click on the selected geometry object perimeter to create a bridge gap ..."
  7843. msgstr ""
  7844. #: flatcamTools/ToolCutOut.py:780 flatcamTools/ToolCutOut.py:799
  7845. msgid "Could not retrieve Geometry object"
  7846. msgstr ""
  7847. #: flatcamTools/ToolCutOut.py:804
  7848. msgid "Geometry object for manual cutout not found"
  7849. msgstr ""
  7850. #: flatcamTools/ToolCutOut.py:814
  7851. msgid "Added manual Bridge Gap."
  7852. msgstr ""
  7853. #: flatcamTools/ToolCutOut.py:826
  7854. msgid "Could not retrieve Gerber object"
  7855. msgstr ""
  7856. #: flatcamTools/ToolCutOut.py:831
  7857. msgid ""
  7858. "There is no Gerber object selected for Cutout.\n"
  7859. "Select one and try again."
  7860. msgstr ""
  7861. #: flatcamTools/ToolCutOut.py:837
  7862. msgid ""
  7863. "The selected object has to be of Gerber type.\n"
  7864. "Select a Gerber file and try again."
  7865. msgstr ""
  7866. #: flatcamTools/ToolCutOut.py:892
  7867. msgid "Geometry not supported for cutout"
  7868. msgstr ""
  7869. #: flatcamTools/ToolCutOut.py:928
  7870. msgid "Making manual bridge gap..."
  7871. msgstr ""
  7872. #: flatcamTools/ToolDblSided.py:18
  7873. msgid "2-Sided PCB"
  7874. msgstr ""
  7875. #: flatcamTools/ToolDblSided.py:52 flatcamTools/ToolDblSided.py:76
  7876. #: flatcamTools/ToolDblSided.py:100
  7877. msgid "Mirror"
  7878. msgstr ""
  7879. #: flatcamTools/ToolDblSided.py:54 flatcamTools/ToolDblSided.py:78
  7880. #: flatcamTools/ToolDblSided.py:102
  7881. msgid ""
  7882. "Mirrors (flips) the specified object around \n"
  7883. "the specified axis. Does not create a new \n"
  7884. "object, but modifies it."
  7885. msgstr ""
  7886. #: flatcamTools/ToolDblSided.py:73
  7887. msgid "Excellon Object to be mirrored."
  7888. msgstr ""
  7889. #: flatcamTools/ToolDblSided.py:97
  7890. msgid "Geometry Obj to be mirrored."
  7891. msgstr ""
  7892. #: flatcamTools/ToolDblSided.py:133
  7893. msgid "Axis Ref:"
  7894. msgstr ""
  7895. #: flatcamTools/ToolDblSided.py:152
  7896. msgid "Point/Box Reference"
  7897. msgstr ""
  7898. #: flatcamTools/ToolDblSided.py:154
  7899. msgid ""
  7900. "If 'Point' is selected above it store the coordinates (x, y) through which\n"
  7901. "the mirroring axis passes.\n"
  7902. "If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
  7903. "Geo).\n"
  7904. "Through the center of this object pass the mirroring axis selected above."
  7905. msgstr ""
  7906. #: flatcamTools/ToolDblSided.py:162
  7907. msgid ""
  7908. "Add the coordinates in format <b>(x, y)</b> through which the mirroring "
  7909. "axis \n"
  7910. " selected in 'MIRROR AXIS' pass.\n"
  7911. "The (x, y) coordinates are captured by pressing SHIFT key\n"
  7912. "and left mouse button click on canvas or you can enter the coords manually."
  7913. msgstr ""
  7914. #: flatcamTools/ToolDblSided.py:182 flatcamTools/ToolNonCopperClear.py:420
  7915. #: flatcamTools/ToolPaint.py:318
  7916. msgid "Gerber Reference Box Object"
  7917. msgstr ""
  7918. #: flatcamTools/ToolDblSided.py:183 flatcamTools/ToolNonCopperClear.py:421
  7919. #: flatcamTools/ToolPaint.py:319
  7920. msgid "Excellon Reference Box Object"
  7921. msgstr ""
  7922. #: flatcamTools/ToolDblSided.py:184 flatcamTools/ToolNonCopperClear.py:422
  7923. #: flatcamTools/ToolPaint.py:320
  7924. msgid "Geometry Reference Box Object"
  7925. msgstr ""
  7926. #: flatcamTools/ToolDblSided.py:192
  7927. msgid "Alignment Drill Coordinates"
  7928. msgstr ""
  7929. #: flatcamTools/ToolDblSided.py:194
  7930. msgid ""
  7931. "Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
  7932. "each set of (x, y) coordinates\n"
  7933. "entered here, a pair of drills will be created:\n"
  7934. "\n"
  7935. "- one drill at the coordinates from the field\n"
  7936. "- one drill in mirror position over the axis selected above in the 'Mirror "
  7937. "Axis'."
  7938. msgstr ""
  7939. #: flatcamTools/ToolDblSided.py:209
  7940. msgid ""
  7941. "Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
  7942. "on one side of the mirror axis.\n"
  7943. "\n"
  7944. "The coordinates set can be obtained:\n"
  7945. "- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
  7946. "- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
  7947. "field.\n"
  7948. "- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
  7949. "field and click Paste.\n"
  7950. "- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
  7951. msgstr ""
  7952. #: flatcamTools/ToolDblSided.py:223
  7953. msgid "Alignment Drill Diameter"
  7954. msgstr ""
  7955. #: flatcamTools/ToolDblSided.py:246
  7956. msgid "Create Excellon Object"
  7957. msgstr ""
  7958. #: flatcamTools/ToolDblSided.py:248
  7959. msgid ""
  7960. "Creates an Excellon Object containing the\n"
  7961. "specified alignment holes and their mirror\n"
  7962. "images."
  7963. msgstr ""
  7964. #: flatcamTools/ToolDblSided.py:254
  7965. msgid "Reset"
  7966. msgstr ""
  7967. #: flatcamTools/ToolDblSided.py:256
  7968. msgid "Resets all the fields."
  7969. msgstr ""
  7970. #: flatcamTools/ToolDblSided.py:306
  7971. msgid "2-Sided Tool"
  7972. msgstr ""
  7973. #: flatcamTools/ToolDblSided.py:331
  7974. msgid ""
  7975. "'Point' reference is selected and 'Point' coordinates are missing. Add them "
  7976. "and retry."
  7977. msgstr ""
  7978. #: flatcamTools/ToolDblSided.py:350
  7979. msgid "There is no Box reference object loaded. Load one and retry."
  7980. msgstr ""
  7981. #: flatcamTools/ToolDblSided.py:373
  7982. msgid "No value or wrong format in Drill Dia entry. Add it and retry."
  7983. msgstr ""
  7984. #: flatcamTools/ToolDblSided.py:380
  7985. msgid "There are no Alignment Drill Coordinates to use. Add them and retry."
  7986. msgstr ""
  7987. #: flatcamTools/ToolDblSided.py:403
  7988. msgid "Excellon object with alignment drills created..."
  7989. msgstr ""
  7990. #: flatcamTools/ToolDblSided.py:412
  7991. msgid "There is no Gerber object loaded ..."
  7992. msgstr ""
  7993. #: flatcamTools/ToolDblSided.py:416 flatcamTools/ToolDblSided.py:459
  7994. #: flatcamTools/ToolDblSided.py:503
  7995. msgid "Only Gerber, Excellon and Geometry objects can be mirrored."
  7996. msgstr ""
  7997. #: flatcamTools/ToolDblSided.py:426
  7998. msgid ""
  7999. "'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
  8000. msgstr ""
  8001. #: flatcamTools/ToolDblSided.py:436 flatcamTools/ToolDblSided.py:480
  8002. #: flatcamTools/ToolDblSided.py:517
  8003. msgid "There is no Box object loaded ..."
  8004. msgstr ""
  8005. #: flatcamTools/ToolDblSided.py:446 flatcamTools/ToolDblSided.py:490
  8006. #: flatcamTools/ToolDblSided.py:527
  8007. msgid "was mirrored"
  8008. msgstr ""
  8009. #: flatcamTools/ToolDblSided.py:455
  8010. msgid "There is no Excellon object loaded ..."
  8011. msgstr ""
  8012. #: flatcamTools/ToolDblSided.py:470
  8013. msgid ""
  8014. "There are no Point coordinates in the Point field. Add coords and try "
  8015. "again ..."
  8016. msgstr ""
  8017. #: flatcamTools/ToolDblSided.py:499
  8018. msgid "There is no Geometry object loaded ..."
  8019. msgstr ""
  8020. #: flatcamTools/ToolFilm.py:25
  8021. msgid "Film PCB"
  8022. msgstr ""
  8023. #: flatcamTools/ToolFilm.py:56 flatcamTools/ToolImage.py:53
  8024. #: flatcamTools/ToolPanelize.py:56 flatcamTools/ToolProperties.py:143
  8025. msgid "Object Type"
  8026. msgstr ""
  8027. #: flatcamTools/ToolFilm.py:58
  8028. msgid ""
  8029. "Specify the type of object for which to create the film.\n"
  8030. "The object can be of type: Gerber or Geometry.\n"
  8031. "The selection here decide the type of objects that will be\n"
  8032. "in the Film Object combobox."
  8033. msgstr ""
  8034. #: flatcamTools/ToolFilm.py:71
  8035. msgid "Film Object"
  8036. msgstr ""
  8037. #: flatcamTools/ToolFilm.py:73
  8038. msgid "Object for which to create the film."
  8039. msgstr ""
  8040. #: flatcamTools/ToolFilm.py:89
  8041. msgid "Box Type:"
  8042. msgstr ""
  8043. #: flatcamTools/ToolFilm.py:91
  8044. msgid ""
  8045. "Specify the type of object to be used as an container for\n"
  8046. "film creation. It can be: Gerber or Geometry type.The selection here decide "
  8047. "the type of objects that will be\n"
  8048. "in the Box Object combobox."
  8049. msgstr ""
  8050. #: flatcamTools/ToolFilm.py:104 flatcamTools/ToolPanelize.py:126
  8051. msgid "Box Object"
  8052. msgstr ""
  8053. #: flatcamTools/ToolFilm.py:106
  8054. msgid ""
  8055. "The actual object that is used a container for the\n"
  8056. " selected object for which we create the film.\n"
  8057. "Usually it is the PCB outline but it can be also the\n"
  8058. "same object for which the film is created."
  8059. msgstr ""
  8060. #: flatcamTools/ToolFilm.py:114
  8061. msgid "Positive"
  8062. msgstr ""
  8063. #: flatcamTools/ToolFilm.py:115
  8064. msgid "Negative"
  8065. msgstr ""
  8066. #: flatcamTools/ToolFilm.py:116
  8067. msgid "Film Type:"
  8068. msgstr ""
  8069. #: flatcamTools/ToolFilm.py:157
  8070. msgid "Save Film"
  8071. msgstr ""
  8072. #: flatcamTools/ToolFilm.py:159
  8073. msgid ""
  8074. "Create a Film for the selected object, within\n"
  8075. "the specified box. Does not create a new \n"
  8076. " FlatCAM object, but directly save it in SVG format\n"
  8077. "which can be opened with Inkscape."
  8078. msgstr ""
  8079. #: flatcamTools/ToolFilm.py:231
  8080. msgid "No FlatCAM object selected. Load an object for Film and retry."
  8081. msgstr ""
  8082. #: flatcamTools/ToolFilm.py:238
  8083. msgid "No FlatCAM object selected. Load an object for Box and retry."
  8084. msgstr ""
  8085. #: flatcamTools/ToolFilm.py:260
  8086. msgid "Generating Film ..."
  8087. msgstr ""
  8088. #: flatcamTools/ToolFilm.py:265 flatcamTools/ToolFilm.py:269
  8089. msgid "Export SVG positive"
  8090. msgstr ""
  8091. #: flatcamTools/ToolFilm.py:274
  8092. msgid "Export SVG positive cancelled."
  8093. msgstr ""
  8094. #: flatcamTools/ToolFilm.py:281 flatcamTools/ToolFilm.py:285
  8095. msgid "Export SVG negative"
  8096. msgstr ""
  8097. #: flatcamTools/ToolFilm.py:290
  8098. msgid "Export SVG negative cancelled."
  8099. msgstr ""
  8100. #: flatcamTools/ToolImage.py:25
  8101. msgid "Image as Object"
  8102. msgstr ""
  8103. #: flatcamTools/ToolImage.py:31
  8104. msgid "Image to PCB"
  8105. msgstr ""
  8106. #: flatcamTools/ToolImage.py:55
  8107. msgid ""
  8108. "Specify the type of object to create from the image.\n"
  8109. "It can be of type: Gerber or Geometry."
  8110. msgstr ""
  8111. #: flatcamTools/ToolImage.py:63
  8112. msgid "DPI value"
  8113. msgstr ""
  8114. #: flatcamTools/ToolImage.py:65
  8115. msgid "Specify a DPI value for the image."
  8116. msgstr ""
  8117. #: flatcamTools/ToolImage.py:72
  8118. msgid "Level of detail"
  8119. msgstr ""
  8120. #: flatcamTools/ToolImage.py:81
  8121. msgid "Image type"
  8122. msgstr ""
  8123. #: flatcamTools/ToolImage.py:83
  8124. msgid ""
  8125. "Choose a method for the image interpretation.\n"
  8126. "B/W means a black & white image. Color means a colored image."
  8127. msgstr ""
  8128. #: flatcamTools/ToolImage.py:90 flatcamTools/ToolImage.py:103
  8129. #: flatcamTools/ToolImage.py:114 flatcamTools/ToolImage.py:125
  8130. msgid "Mask value"
  8131. msgstr ""
  8132. #: flatcamTools/ToolImage.py:92
  8133. msgid ""
  8134. "Mask for monochrome image.\n"
  8135. "Takes values between [0 ... 255].\n"
  8136. "Decides the level of details to include\n"
  8137. "in the resulting geometry.\n"
  8138. "0 means no detail and 255 means everything \n"
  8139. "(which is totally black)."
  8140. msgstr ""
  8141. #: flatcamTools/ToolImage.py:105
  8142. msgid ""
  8143. "Mask for RED color.\n"
  8144. "Takes values between [0 ... 255].\n"
  8145. "Decides the level of details to include\n"
  8146. "in the resulting geometry."
  8147. msgstr ""
  8148. #: flatcamTools/ToolImage.py:116
  8149. msgid ""
  8150. "Mask for GREEN color.\n"
  8151. "Takes values between [0 ... 255].\n"
  8152. "Decides the level of details to include\n"
  8153. "in the resulting geometry."
  8154. msgstr ""
  8155. #: flatcamTools/ToolImage.py:127
  8156. msgid ""
  8157. "Mask for BLUE color.\n"
  8158. "Takes values between [0 ... 255].\n"
  8159. "Decides the level of details to include\n"
  8160. "in the resulting geometry."
  8161. msgstr ""
  8162. #: flatcamTools/ToolImage.py:139
  8163. msgid "Import image"
  8164. msgstr ""
  8165. #: flatcamTools/ToolImage.py:141
  8166. msgid "Open a image of raster type and then import it in FlatCAM."
  8167. msgstr ""
  8168. #: flatcamTools/ToolImage.py:175
  8169. msgid "Image Tool"
  8170. msgstr ""
  8171. #: flatcamTools/ToolImage.py:205 flatcamTools/ToolImage.py:208
  8172. msgid "Import IMAGE"
  8173. msgstr ""
  8174. #: flatcamTools/ToolMeasurement.py:26
  8175. msgid "Measurement"
  8176. msgstr ""
  8177. #: flatcamTools/ToolMeasurement.py:44
  8178. msgid "Those are the units in which the distance is measured."
  8179. msgstr ""
  8180. #: flatcamTools/ToolMeasurement.py:45
  8181. msgid "METRIC (mm)"
  8182. msgstr ""
  8183. #: flatcamTools/ToolMeasurement.py:45
  8184. msgid "INCH (in)"
  8185. msgstr ""
  8186. #: flatcamTools/ToolMeasurement.py:48
  8187. msgid "Start"
  8188. msgstr ""
  8189. #: flatcamTools/ToolMeasurement.py:48 flatcamTools/ToolMeasurement.py:51
  8190. msgid "Coords"
  8191. msgstr ""
  8192. #: flatcamTools/ToolMeasurement.py:49 flatcamTools/ToolMeasurement.py:65
  8193. msgid "This is measuring Start point coordinates."
  8194. msgstr ""
  8195. #: flatcamTools/ToolMeasurement.py:51
  8196. msgid "Stop"
  8197. msgstr ""
  8198. #: flatcamTools/ToolMeasurement.py:52 flatcamTools/ToolMeasurement.py:69
  8199. msgid "This is the measuring Stop point coordinates."
  8200. msgstr ""
  8201. #: flatcamTools/ToolMeasurement.py:54
  8202. msgid "Dx"
  8203. msgstr ""
  8204. #: flatcamTools/ToolMeasurement.py:55 flatcamTools/ToolMeasurement.py:73
  8205. msgid "This is the distance measured over the X axis."
  8206. msgstr ""
  8207. #: flatcamTools/ToolMeasurement.py:57
  8208. msgid "Dy"
  8209. msgstr ""
  8210. #: flatcamTools/ToolMeasurement.py:58 flatcamTools/ToolMeasurement.py:77
  8211. msgid "This is the distance measured over the Y axis."
  8212. msgstr ""
  8213. #: flatcamTools/ToolMeasurement.py:60
  8214. msgid "DISTANCE"
  8215. msgstr ""
  8216. #: flatcamTools/ToolMeasurement.py:61 flatcamTools/ToolMeasurement.py:81
  8217. msgid "This is the point to point Euclidian distance."
  8218. msgstr ""
  8219. #: flatcamTools/ToolMeasurement.py:83
  8220. msgid "Measure"
  8221. msgstr ""
  8222. #: flatcamTools/ToolMeasurement.py:131
  8223. msgid "Meas. Tool"
  8224. msgstr ""
  8225. #: flatcamTools/ToolMeasurement.py:176
  8226. msgid "MEASURING: Click on the Start point ..."
  8227. msgstr ""
  8228. #: flatcamTools/ToolMeasurement.py:269
  8229. msgid "MEASURING: Click on the Destination point ..."
  8230. msgstr ""
  8231. #: flatcamTools/ToolMeasurement.py:277
  8232. #, python-brace-format
  8233. msgid "MEASURING: Result D(x) = {d_x} | D(y) = {d_y} | Distance = {d_z}"
  8234. msgstr ""
  8235. #: flatcamTools/ToolMove.py:84
  8236. msgid "MOVE: Click on the Start point ..."
  8237. msgstr ""
  8238. #: flatcamTools/ToolMove.py:91
  8239. msgid "MOVE action cancelled. No object(s) to move."
  8240. msgstr ""
  8241. #: flatcamTools/ToolMove.py:113
  8242. msgid "MOVE: Click on the Destination point ..."
  8243. msgstr ""
  8244. #: flatcamTools/ToolMove.py:134
  8245. msgid "Moving..."
  8246. msgstr ""
  8247. #: flatcamTools/ToolMove.py:137
  8248. msgid "No object(s) selected."
  8249. msgstr ""
  8250. #: flatcamTools/ToolMove.py:162
  8251. msgid "ToolMove.on_left_click()"
  8252. msgstr ""
  8253. #: flatcamTools/ToolMove.py:179
  8254. msgid "ToolMove.on_left_click() --> Error when mouse left click."
  8255. msgstr ""
  8256. #: flatcamTools/ToolMove.py:215
  8257. msgid "Move action cancelled."
  8258. msgstr ""
  8259. #: flatcamTools/ToolMove.py:227
  8260. msgid "Object(s) not selected"
  8261. msgstr ""
  8262. #: flatcamTools/ToolNonCopperClear.py:26
  8263. msgid "Non-Copper Clearing"
  8264. msgstr ""
  8265. #: flatcamTools/ToolNonCopperClear.py:71
  8266. msgid ""
  8267. "Specify the type of object to be cleared of excess copper.\n"
  8268. "It can be of type: Gerber or Geometry.\n"
  8269. "What is selected here will dictate the kind\n"
  8270. "of objects that will populate the 'Object' combobox."
  8271. msgstr ""
  8272. #: flatcamTools/ToolNonCopperClear.py:88
  8273. msgid "Object to be cleared of excess copper."
  8274. msgstr ""
  8275. #: flatcamTools/ToolNonCopperClear.py:98
  8276. msgid ""
  8277. "Tools pool from which the algorithm\n"
  8278. "will pick the ones used for copper clearing."
  8279. msgstr ""
  8280. #: flatcamTools/ToolNonCopperClear.py:107
  8281. msgid "Operation"
  8282. msgstr ""
  8283. #: flatcamTools/ToolNonCopperClear.py:113
  8284. msgid ""
  8285. "This is the Tool Number.\n"
  8286. "Non copper clearing will start with the tool with the biggest \n"
  8287. "diameter, continuing until there are no more tools.\n"
  8288. "Only tools that create NCC clearing geometry will still be present\n"
  8289. "in the resulting geometry. This is because with some tools\n"
  8290. "this function will not be able to create painting geometry."
  8291. msgstr ""
  8292. #: flatcamTools/ToolNonCopperClear.py:121
  8293. msgid ""
  8294. "Tool Diameter. It's value (in current FlatCAM units)\n"
  8295. "is the cut width into the material."
  8296. msgstr ""
  8297. #: flatcamTools/ToolNonCopperClear.py:125
  8298. msgid ""
  8299. "The Tool Type (TT) can be:\n"
  8300. "- Circular with 1 ... 4 teeth -> it is informative only. Being circular,\n"
  8301. "the cut width in material is exactly the tool diameter.\n"
  8302. "- Ball -> informative only and make reference to the Ball type endmill.\n"
  8303. "- V-Shape -> it will disable de Z-Cut parameter in the resulting geometry UI "
  8304. "form\n"
  8305. "and enable two additional UI form fields in the resulting geometry: V-Tip "
  8306. "Dia and\n"
  8307. "V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter "
  8308. "such\n"
  8309. "as the cut width into material will be equal with the value in the Tool "
  8310. "Diameter\n"
  8311. "column of this table.\n"
  8312. "Choosing the 'V-Shape' Tool Type automatically will select the Operation "
  8313. "Type\n"
  8314. "in the resulting geometry as Isolation."
  8315. msgstr ""
  8316. #: flatcamTools/ToolNonCopperClear.py:138
  8317. msgid ""
  8318. "The 'Operation' can be:\n"
  8319. "- Isolation -> will ensure that the non-copper clearing is always complete.\n"
  8320. "If it's not successful then the non-copper clearing will fail, too.\n"
  8321. "- Clear -> the regular non-copper clearing."
  8322. msgstr ""
  8323. #: flatcamTools/ToolNonCopperClear.py:191
  8324. msgid "Tool Selection"
  8325. msgstr ""
  8326. #: flatcamTools/ToolNonCopperClear.py:214
  8327. msgid "Diameter for the new tool to add in the Tool Table"
  8328. msgstr ""
  8329. #: flatcamTools/ToolNonCopperClear.py:251 flatcamTools/ToolPaint.py:190
  8330. #: flatcamTools/ToolSolderPaste.py:123
  8331. msgid ""
  8332. "Delete a selection of tools in the Tool Table\n"
  8333. "by first selecting a row(s) in the Tool Table."
  8334. msgstr ""
  8335. #: flatcamTools/ToolNonCopperClear.py:396 flatcamTools/ToolPaint.py:295
  8336. msgid "Area Selection"
  8337. msgstr ""
  8338. #: flatcamTools/ToolNonCopperClear.py:397 flatcamTools/ToolPaint.py:297
  8339. msgid "Reference Object"
  8340. msgstr ""
  8341. #: flatcamTools/ToolNonCopperClear.py:399
  8342. msgid "Reference:"
  8343. msgstr ""
  8344. #: flatcamTools/ToolNonCopperClear.py:414 flatcamTools/ToolPaint.py:312
  8345. msgid "Ref. Type"
  8346. msgstr ""
  8347. #: flatcamTools/ToolNonCopperClear.py:416
  8348. msgid ""
  8349. "The type of FlatCAM object to be used as non copper clearing reference.\n"
  8350. "It can be Gerber, Excellon or Geometry."
  8351. msgstr ""
  8352. #: flatcamTools/ToolNonCopperClear.py:425 flatcamTools/ToolPaint.py:323
  8353. msgid "Ref. Object"
  8354. msgstr ""
  8355. #: flatcamTools/ToolNonCopperClear.py:427 flatcamTools/ToolPaint.py:325
  8356. msgid "The FlatCAM object to be used as non copper clearing reference."
  8357. msgstr ""
  8358. #: flatcamTools/ToolNonCopperClear.py:440
  8359. msgid "Generate Geometry"
  8360. msgstr ""
  8361. #: flatcamTools/ToolNonCopperClear.py:906 flatcamTools/ToolPaint.py:705
  8362. #: flatcamTools/ToolSolderPaste.py:769
  8363. msgid "Please enter a tool diameter to add, in Float format."
  8364. msgstr ""
  8365. #: flatcamTools/ToolNonCopperClear.py:940 flatcamTools/ToolPaint.py:730
  8366. msgid "Adding tool cancelled. Tool already in Tool Table."
  8367. msgstr ""
  8368. #: flatcamTools/ToolNonCopperClear.py:945 flatcamTools/ToolPaint.py:736
  8369. msgid "New tool added to Tool Table."
  8370. msgstr ""
  8371. #: flatcamTools/ToolNonCopperClear.py:989 flatcamTools/ToolPaint.py:782
  8372. msgid "Tool from Tool Table was edited."
  8373. msgstr ""
  8374. #: flatcamTools/ToolNonCopperClear.py:1000 flatcamTools/ToolPaint.py:794
  8375. #: flatcamTools/ToolSolderPaste.py:860
  8376. msgid "Edit cancelled. New diameter value is already in the Tool Table."
  8377. msgstr ""
  8378. #: flatcamTools/ToolNonCopperClear.py:1040 flatcamTools/ToolPaint.py:892
  8379. msgid "Delete failed. Select a tool to delete."
  8380. msgstr ""
  8381. #: flatcamTools/ToolNonCopperClear.py:1045 flatcamTools/ToolPaint.py:898
  8382. msgid "Tool(s) deleted from Tool Table."
  8383. msgstr ""
  8384. #: flatcamTools/ToolNonCopperClear.py:1053 flatcamTools/ToolPaint.py:906
  8385. msgid "on_paint_button_click"
  8386. msgstr ""
  8387. #: flatcamTools/ToolNonCopperClear.py:1067
  8388. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive), "
  8389. msgstr ""
  8390. #: flatcamTools/ToolNonCopperClear.py:1083 flatcamTools/ToolPaint.py:945
  8391. #, python-format
  8392. msgid "Could not retrieve object: %s"
  8393. msgstr ""
  8394. #: flatcamTools/ToolNonCopperClear.py:1103
  8395. msgid "Wrong Tool Dia value format entered, use a number."
  8396. msgstr ""
  8397. #: flatcamTools/ToolNonCopperClear.py:1112 flatcamTools/ToolPaint.py:981
  8398. msgid "No selected tools in Tool Table."
  8399. msgstr ""
  8400. #: flatcamTools/ToolNonCopperClear.py:1137
  8401. msgid "Click the start point of the area."
  8402. msgstr ""
  8403. #: flatcamTools/ToolNonCopperClear.py:1148 flatcamTools/ToolPaint.py:1037
  8404. msgid "Click the end point of the paint area."
  8405. msgstr ""
  8406. #: flatcamTools/ToolNonCopperClear.py:1154 flatcamTools/ToolPaint.py:1043
  8407. msgid "Zone added. Click to start adding next zone or right click to finish."
  8408. msgstr ""
  8409. #: flatcamTools/ToolNonCopperClear.py:1318
  8410. msgid "Non-Copper clearing ..."
  8411. msgstr ""
  8412. #: flatcamTools/ToolNonCopperClear.py:1327
  8413. msgid "NCC Tool started. Reading parameters."
  8414. msgstr ""
  8415. #: flatcamTools/ToolNonCopperClear.py:1395
  8416. msgid "NCC Tool. Preparing non-copper polygons."
  8417. msgstr ""
  8418. #: flatcamTools/ToolNonCopperClear.py:1423 flatcamTools/ToolPaint.py:2431
  8419. msgid "No object available."
  8420. msgstr ""
  8421. #: flatcamTools/ToolNonCopperClear.py:1465
  8422. msgid "The reference object type is not supported."
  8423. msgstr ""
  8424. #: flatcamTools/ToolNonCopperClear.py:1487
  8425. msgid ""
  8426. "NCC Tool. Finished non-copper polygons. Normal copper clearing task started."
  8427. msgstr ""
  8428. #: flatcamTools/ToolNonCopperClear.py:1519
  8429. msgid "NCC Tool. Calculate 'empty' area."
  8430. msgstr ""
  8431. #: flatcamTools/ToolNonCopperClear.py:1534
  8432. #: flatcamTools/ToolNonCopperClear.py:1628
  8433. #: flatcamTools/ToolNonCopperClear.py:1640
  8434. #: flatcamTools/ToolNonCopperClear.py:1867
  8435. #: flatcamTools/ToolNonCopperClear.py:1959
  8436. #: flatcamTools/ToolNonCopperClear.py:1971
  8437. msgid "Buffering finished"
  8438. msgstr ""
  8439. #: flatcamTools/ToolNonCopperClear.py:1647
  8440. #: flatcamTools/ToolNonCopperClear.py:1977
  8441. msgid "The selected object is not suitable for copper clearing."
  8442. msgstr ""
  8443. #: flatcamTools/ToolNonCopperClear.py:1652
  8444. #: flatcamTools/ToolNonCopperClear.py:1982
  8445. msgid "Could not get the extent of the area to be non copper cleared."
  8446. msgstr ""
  8447. #: flatcamTools/ToolNonCopperClear.py:1659
  8448. msgid "NCC Tool. Finished calculation of 'empty' area."
  8449. msgstr ""
  8450. #: flatcamTools/ToolNonCopperClear.py:1669
  8451. #: flatcamTools/ToolNonCopperClear.py:2007
  8452. msgid "NCC Tool clearing with tool diameter = "
  8453. msgstr ""
  8454. #: flatcamTools/ToolNonCopperClear.py:1672
  8455. #: flatcamTools/ToolNonCopperClear.py:2010
  8456. msgid "started."
  8457. msgstr ""
  8458. #: flatcamTools/ToolNonCopperClear.py:1810 flatcamTools/ToolPaint.py:1412
  8459. #: flatcamTools/ToolPaint.py:1742 flatcamTools/ToolPaint.py:1890
  8460. #: flatcamTools/ToolPaint.py:2203 flatcamTools/ToolPaint.py:2355
  8461. msgid ""
  8462. "There is no Painting Geometry in the file.\n"
  8463. "Usually it means that the tool diameter is too big for the painted "
  8464. "geometry.\n"
  8465. "Change the painting parameters and try again."
  8466. msgstr ""
  8467. #: flatcamTools/ToolNonCopperClear.py:1820
  8468. msgid "NCC Tool clear all done."
  8469. msgstr ""
  8470. #: flatcamTools/ToolNonCopperClear.py:1822
  8471. msgid "NCC Tool clear all done but the copper features isolation is broken for"
  8472. msgstr ""
  8473. #: flatcamTools/ToolNonCopperClear.py:1825
  8474. #: flatcamTools/ToolNonCopperClear.py:2173
  8475. msgid "tools"
  8476. msgstr ""
  8477. #: flatcamTools/ToolNonCopperClear.py:2169
  8478. msgid "NCC Tool Rest Machining clear all done."
  8479. msgstr ""
  8480. #: flatcamTools/ToolNonCopperClear.py:2172
  8481. msgid ""
  8482. "NCC Tool Rest Machining clear all done but the copper features isolation is "
  8483. "broken for"
  8484. msgstr ""
  8485. #: flatcamTools/ToolNonCopperClear.py:2596
  8486. msgid ""
  8487. "Try to use the Buffering Type = Full in Preferences -> Gerber General. "
  8488. "Reload the Gerber file after this change."
  8489. msgstr ""
  8490. #: flatcamTools/ToolPDF.py:38
  8491. msgid "PDF Import Tool"
  8492. msgstr ""
  8493. #: flatcamTools/ToolPDF.py:152 flatcamTools/ToolPDF.py:156
  8494. msgid "Open PDF"
  8495. msgstr ""
  8496. #: flatcamTools/ToolPDF.py:159
  8497. msgid "Open PDF cancelled"
  8498. msgstr ""
  8499. #: flatcamTools/ToolPDF.py:190
  8500. msgid "Parsing PDF file ..."
  8501. msgstr ""
  8502. #: flatcamTools/ToolPDF.py:220
  8503. #, python-format
  8504. msgid "[success] Opened: %s"
  8505. msgstr ""
  8506. #: flatcamTools/ToolPDF.py:273 flatcamTools/ToolPDF.py:348
  8507. #, python-format
  8508. msgid "Rendering PDF layer #%d ..."
  8509. msgstr ""
  8510. #: flatcamTools/ToolPDF.py:278 flatcamTools/ToolPDF.py:353
  8511. msgid "Open PDF file failed."
  8512. msgstr ""
  8513. #: flatcamTools/ToolPDF.py:284 flatcamTools/ToolPDF.py:358
  8514. msgid "Rendered"
  8515. msgstr ""
  8516. #: flatcamTools/ToolPaint.py:70
  8517. msgid ""
  8518. "Specify the type of object to be painted.\n"
  8519. "It can be of type: Gerber or Geometry.\n"
  8520. "What is selected here will dictate the kind\n"
  8521. "of objects that will populate the 'Object' combobox."
  8522. msgstr ""
  8523. #: flatcamTools/ToolPaint.py:87
  8524. msgid "Object to be painted."
  8525. msgstr ""
  8526. #: flatcamTools/ToolPaint.py:97
  8527. msgid ""
  8528. "Tools pool from which the algorithm\n"
  8529. "will pick the ones used for painting."
  8530. msgstr ""
  8531. #: flatcamTools/ToolPaint.py:112
  8532. msgid ""
  8533. "This is the Tool Number.\n"
  8534. "Painting will start with the tool with the biggest diameter,\n"
  8535. "continuing until there are no more tools.\n"
  8536. "Only tools that create painting geometry will still be present\n"
  8537. "in the resulting geometry. This is because with some tools\n"
  8538. "this function will not be able to create painting geometry."
  8539. msgstr ""
  8540. #: flatcamTools/ToolPaint.py:124
  8541. msgid ""
  8542. "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
  8543. "informative only. Being circular, <BR>the cut width in material is exactly "
  8544. "the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
  8545. "to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
  8546. "parameter in the resulting geometry UI form and enable two additional UI "
  8547. "form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
  8548. "those two values will adjust the Z-Cut parameter such as the cut width into "
  8549. "material will be equal with the value in the Tool Diameter column of this "
  8550. "table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
  8551. "the Operation Type in the resulting geometry as Isolation."
  8552. msgstr ""
  8553. #: flatcamTools/ToolPaint.py:164
  8554. msgid "Diameter for the new tool."
  8555. msgstr ""
  8556. #: flatcamTools/ToolPaint.py:235
  8557. msgid ""
  8558. "Algorithm for painting:\n"
  8559. "- Standard: Fixed step inwards.\n"
  8560. "- Seed-based: Outwards from seed.\n"
  8561. "- Line-based: Parallel lines."
  8562. msgstr ""
  8563. #: flatcamTools/ToolPaint.py:269
  8564. msgid ""
  8565. "If checked, use 'rest machining'.\n"
  8566. "Basically it will clear copper outside PCB features,\n"
  8567. "using the biggest tool and continue with the next tools,\n"
  8568. "from bigger to smaller, to clear areas of copper that\n"
  8569. "could not be cleared by previous tool, until there is\n"
  8570. "no more copper to clear or there are no more tools.\n"
  8571. "\n"
  8572. "If not checked, use the standard algorithm."
  8573. msgstr ""
  8574. #: flatcamTools/ToolPaint.py:294
  8575. msgid "Single Polygon"
  8576. msgstr ""
  8577. #: flatcamTools/ToolPaint.py:296
  8578. msgid "All Polygons"
  8579. msgstr ""
  8580. #: flatcamTools/ToolPaint.py:314
  8581. msgid ""
  8582. "The type of FlatCAM object to be used as paint reference.\n"
  8583. "It can be Gerber, Excellon or Geometry."
  8584. msgstr ""
  8585. #: flatcamTools/ToolPaint.py:339
  8586. msgid "Create Paint Geometry"
  8587. msgstr ""
  8588. #: flatcamTools/ToolPaint.py:341
  8589. msgid ""
  8590. "- 'Area Selection' - left mouse click to start selection of the area to be "
  8591. "painted.\n"
  8592. "Keeping a modifier key pressed (CTRL or SHIFT) will allow to add multiple "
  8593. "areas.\n"
  8594. "- 'All Polygons' - the Paint will start after click.\n"
  8595. "- 'Reference Object' - will do non copper clearing within the area\n"
  8596. "specified by another object."
  8597. msgstr ""
  8598. #: flatcamTools/ToolPaint.py:912
  8599. msgid "Paint Tool. Reading parameters."
  8600. msgstr ""
  8601. #: flatcamTools/ToolPaint.py:927
  8602. msgid "Overlap value must be between 0 (inclusive) and 1 (exclusive)"
  8603. msgstr ""
  8604. #: flatcamTools/ToolPaint.py:931 flatcamTools/ToolPaint.py:994
  8605. msgid "Click inside the desired polygon."
  8606. msgstr ""
  8607. #: flatcamTools/ToolPaint.py:951 flatcamTools/ToolPanelize.py:366
  8608. #: tclCommands/TclCommandBbox.py:66 tclCommands/TclCommandNregions.py:65
  8609. msgid "Object not found"
  8610. msgstr ""
  8611. #: flatcamTools/ToolPaint.py:959
  8612. msgid "Can't do Paint on MultiGeo geometries"
  8613. msgstr ""
  8614. #: flatcamTools/ToolPaint.py:1003 flatcamTools/ToolPaint.py:1239
  8615. msgid "Painting polygon..."
  8616. msgstr ""
  8617. #: flatcamTools/ToolPaint.py:1025
  8618. msgid "Click the start point of the paint area."
  8619. msgstr ""
  8620. #: flatcamTools/ToolPaint.py:1197 flatcamTools/ToolPaint.py:1200
  8621. #: flatcamTools/ToolPaint.py:1202
  8622. msgid "Paint Tool. Normal painting polygon task started."
  8623. msgstr ""
  8624. #: flatcamTools/ToolPaint.py:1198 flatcamTools/ToolPaint.py:1588
  8625. #: flatcamTools/ToolPaint.py:1763 flatcamTools/ToolPaint.py:2045
  8626. #: flatcamTools/ToolPaint.py:2224
  8627. msgid "Buffering geometry..."
  8628. msgstr ""
  8629. #: flatcamTools/ToolPaint.py:1236
  8630. msgid "[WARNING] No polygon found."
  8631. msgstr ""
  8632. #: flatcamTools/ToolPaint.py:1240
  8633. #, python-format
  8634. msgid "Paint Tool. Painting polygon at location: %s"
  8635. msgstr ""
  8636. #: flatcamTools/ToolPaint.py:1323
  8637. msgid "Geometry could not be painted completely"
  8638. msgstr ""
  8639. #: flatcamTools/ToolPaint.py:1368
  8640. msgid ""
  8641. "Could not do Paint. Try a different combination of parameters. Or a "
  8642. "different strategy of paint"
  8643. msgstr ""
  8644. #: flatcamTools/ToolPaint.py:1417
  8645. msgid "Paint Single Done."
  8646. msgstr ""
  8647. #: flatcamTools/ToolPaint.py:1442
  8648. msgid "PaintTool.paint_poly()"
  8649. msgstr ""
  8650. #: flatcamTools/ToolPaint.py:1449 flatcamTools/ToolPaint.py:1918
  8651. #: flatcamTools/ToolPaint.py:2383
  8652. msgid "Polygon Paint started ..."
  8653. msgstr ""
  8654. #: flatcamTools/ToolPaint.py:1505 flatcamTools/ToolPaint.py:1975
  8655. msgid "Painting polygons..."
  8656. msgstr ""
  8657. #: flatcamTools/ToolPaint.py:1587 flatcamTools/ToolPaint.py:1590
  8658. #: flatcamTools/ToolPaint.py:1592
  8659. msgid "Paint Tool. Normal painting all task started."
  8660. msgstr ""
  8661. #: flatcamTools/ToolPaint.py:1626 flatcamTools/ToolPaint.py:1796
  8662. #: flatcamTools/ToolPaint.py:2090 flatcamTools/ToolPaint.py:2264
  8663. msgid "Painting with tool diameter = "
  8664. msgstr ""
  8665. #: flatcamTools/ToolPaint.py:1629 flatcamTools/ToolPaint.py:1799
  8666. #: flatcamTools/ToolPaint.py:2093 flatcamTools/ToolPaint.py:2267
  8667. msgid "started"
  8668. msgstr ""
  8669. #: flatcamTools/ToolPaint.py:1691 flatcamTools/ToolPaint.py:1845
  8670. msgid ""
  8671. "Could not do Paint All. Try a different combination of parameters. Or a "
  8672. "different Method of paint"
  8673. msgstr ""
  8674. #: flatcamTools/ToolPaint.py:1751
  8675. msgid "[success] Paint All Done."
  8676. msgstr ""
  8677. #: flatcamTools/ToolPaint.py:1762 flatcamTools/ToolPaint.py:1765
  8678. #: flatcamTools/ToolPaint.py:1767
  8679. msgid "Paint Tool. Rest machining painting all task started."
  8680. msgstr ""
  8681. #: flatcamTools/ToolPaint.py:1899 flatcamTools/ToolPaint.py:2364
  8682. msgid "Paint All with Rest-Machining done."
  8683. msgstr ""
  8684. #: flatcamTools/ToolPaint.py:2044 flatcamTools/ToolPaint.py:2047
  8685. #: flatcamTools/ToolPaint.py:2049
  8686. msgid "Paint Tool. Normal painting area task started."
  8687. msgstr ""
  8688. #: flatcamTools/ToolPaint.py:2153 flatcamTools/ToolPaint.py:2311
  8689. #, python-format
  8690. msgid ""
  8691. "Could not do Paint All. Try a different combination of parameters. Or a "
  8692. "different Method of paint\n"
  8693. "%s"
  8694. msgstr ""
  8695. #: flatcamTools/ToolPaint.py:2212
  8696. msgid "[success] Paint Area Done."
  8697. msgstr ""
  8698. #: flatcamTools/ToolPaint.py:2223 flatcamTools/ToolPaint.py:2226
  8699. #: flatcamTools/ToolPaint.py:2228
  8700. msgid "Paint Tool. Rest machining painting area task started."
  8701. msgstr ""
  8702. #: flatcamTools/ToolPanelize.py:25
  8703. msgid "Panelize PCB"
  8704. msgstr ""
  8705. #: flatcamTools/ToolPanelize.py:58
  8706. msgid ""
  8707. "Specify the type of object to be panelized\n"
  8708. "It can be of type: Gerber, Excellon or Geometry.\n"
  8709. "The selection here decide the type of objects that will be\n"
  8710. "in the Object combobox."
  8711. msgstr ""
  8712. #: flatcamTools/ToolPanelize.py:73
  8713. msgid ""
  8714. "Object to be panelized. This means that it will\n"
  8715. "be duplicated in an array of rows and columns."
  8716. msgstr ""
  8717. #: flatcamTools/ToolPanelize.py:86
  8718. msgid "Penelization Reference"
  8719. msgstr ""
  8720. #: flatcamTools/ToolPanelize.py:88
  8721. msgid ""
  8722. "Choose the reference for panelization:\n"
  8723. "- Object = the bounding box of a different object\n"
  8724. "- Bounding Box = the bounding box of the object to be panelized\n"
  8725. "\n"
  8726. "The reference is useful when doing panelization for more than one\n"
  8727. "object. The spacings (really offsets) will be applied in reference\n"
  8728. "to this reference object therefore maintaining the panelized\n"
  8729. "objects in sync."
  8730. msgstr ""
  8731. #: flatcamTools/ToolPanelize.py:111
  8732. msgid "Box Type"
  8733. msgstr ""
  8734. #: flatcamTools/ToolPanelize.py:113
  8735. msgid ""
  8736. "Specify the type of object to be used as an container for\n"
  8737. "panelization. It can be: Gerber or Geometry type.\n"
  8738. "The selection here decide the type of objects that will be\n"
  8739. "in the Box Object combobox."
  8740. msgstr ""
  8741. #: flatcamTools/ToolPanelize.py:128
  8742. msgid ""
  8743. "The actual object that is used a container for the\n"
  8744. " selected object that is to be panelized."
  8745. msgstr ""
  8746. #: flatcamTools/ToolPanelize.py:134
  8747. msgid "Panel Data"
  8748. msgstr ""
  8749. #: flatcamTools/ToolPanelize.py:136
  8750. msgid ""
  8751. "This informations will shape the resulting panel.\n"
  8752. "The number of rows and columns will set how many\n"
  8753. "duplicates of the original geometry will be generated.\n"
  8754. "\n"
  8755. "The spacings will set the distance between any two\n"
  8756. "elements of the panel array."
  8757. msgstr ""
  8758. #: flatcamTools/ToolPanelize.py:185
  8759. msgid ""
  8760. "Choose the type of object for the panel object:\n"
  8761. "- Geometry\n"
  8762. "- Gerber"
  8763. msgstr ""
  8764. #: flatcamTools/ToolPanelize.py:193
  8765. msgid "Constrain panel within"
  8766. msgstr ""
  8767. #: flatcamTools/ToolPanelize.py:227
  8768. msgid "Panelize Object"
  8769. msgstr ""
  8770. #: flatcamTools/ToolPanelize.py:229
  8771. msgid ""
  8772. "Panelize the specified object around the specified box.\n"
  8773. "In other words it creates multiple copies of the source object,\n"
  8774. "arranged in a 2D array of rows and columns."
  8775. msgstr ""
  8776. #: flatcamTools/ToolPanelize.py:277
  8777. msgid "Panel. Tool"
  8778. msgstr ""
  8779. #: flatcamTools/ToolPanelize.py:465
  8780. msgid "Columns or Rows are zero value. Change them to a positive integer."
  8781. msgstr ""
  8782. #: flatcamTools/ToolPanelize.py:490
  8783. msgid "Generating panel ... Please wait."
  8784. msgstr ""
  8785. #: flatcamTools/ToolPanelize.py:631
  8786. msgid "Panel done..."
  8787. msgstr ""
  8788. #: flatcamTools/ToolPanelize.py:634
  8789. #, python-brace-format
  8790. msgid ""
  8791. "{text} Too big for the constrain area. Final panel has {col} columns and "
  8792. "{row} rows"
  8793. msgstr ""
  8794. #: flatcamTools/ToolPanelize.py:638
  8795. msgid "Generating panel..."
  8796. msgstr ""
  8797. #: flatcamTools/ToolPanelize.py:643
  8798. msgid "Panel created successfully."
  8799. msgstr ""
  8800. #: flatcamTools/ToolPcbWizard.py:32
  8801. msgid "PcbWizard Import Tool"
  8802. msgstr ""
  8803. #: flatcamTools/ToolPcbWizard.py:40
  8804. msgid "Import 2-file Excellon"
  8805. msgstr ""
  8806. #: flatcamTools/ToolPcbWizard.py:51
  8807. msgid "Load files"
  8808. msgstr ""
  8809. #: flatcamTools/ToolPcbWizard.py:57
  8810. msgid "Excellon file"
  8811. msgstr ""
  8812. #: flatcamTools/ToolPcbWizard.py:59
  8813. msgid ""
  8814. "Load the Excellon file.\n"
  8815. "Usually it has a .DRL extension"
  8816. msgstr ""
  8817. #: flatcamTools/ToolPcbWizard.py:65
  8818. msgid "INF file"
  8819. msgstr ""
  8820. #: flatcamTools/ToolPcbWizard.py:67
  8821. msgid "Load the INF file."
  8822. msgstr ""
  8823. #: flatcamTools/ToolPcbWizard.py:79
  8824. msgid "Tool Number"
  8825. msgstr ""
  8826. #: flatcamTools/ToolPcbWizard.py:81
  8827. msgid "Tool diameter in file units."
  8828. msgstr ""
  8829. #: flatcamTools/ToolPcbWizard.py:87
  8830. msgid "Excellon format"
  8831. msgstr ""
  8832. #: flatcamTools/ToolPcbWizard.py:95
  8833. msgid "Int. digits"
  8834. msgstr ""
  8835. #: flatcamTools/ToolPcbWizard.py:97
  8836. msgid "The number of digits for the integral part of the coordinates."
  8837. msgstr ""
  8838. #: flatcamTools/ToolPcbWizard.py:104
  8839. msgid "Frac. digits"
  8840. msgstr ""
  8841. #: flatcamTools/ToolPcbWizard.py:106
  8842. msgid "The number of digits for the fractional part of the coordinates."
  8843. msgstr ""
  8844. #: flatcamTools/ToolPcbWizard.py:113
  8845. msgid "No Suppression"
  8846. msgstr ""
  8847. #: flatcamTools/ToolPcbWizard.py:114
  8848. msgid "Zeros supp."
  8849. msgstr ""
  8850. #: flatcamTools/ToolPcbWizard.py:116
  8851. msgid ""
  8852. "The type of zeros suppression used.\n"
  8853. "Can be of type:\n"
  8854. "- LZ = leading zeros are kept\n"
  8855. "- TZ = trailing zeros are kept\n"
  8856. "- No Suppression = no zero suppression"
  8857. msgstr ""
  8858. #: flatcamTools/ToolPcbWizard.py:129
  8859. msgid ""
  8860. "The type of units that the coordinates and tool\n"
  8861. "diameters are using. Can be INCH or MM."
  8862. msgstr ""
  8863. #: flatcamTools/ToolPcbWizard.py:136
  8864. msgid "Import Excellon"
  8865. msgstr ""
  8866. #: flatcamTools/ToolPcbWizard.py:138
  8867. msgid ""
  8868. "Import in FlatCAM an Excellon file\n"
  8869. "that store it's information's in 2 files.\n"
  8870. "One usually has .DRL extension while\n"
  8871. "the other has .INF extension."
  8872. msgstr ""
  8873. #: flatcamTools/ToolPcbWizard.py:197
  8874. msgid "PCBWizard Tool"
  8875. msgstr ""
  8876. #: flatcamTools/ToolPcbWizard.py:291 flatcamTools/ToolPcbWizard.py:295
  8877. msgid "Load PcbWizard Excellon file"
  8878. msgstr ""
  8879. #: flatcamTools/ToolPcbWizard.py:314 flatcamTools/ToolPcbWizard.py:318
  8880. msgid "Load PcbWizard INF file"
  8881. msgstr ""
  8882. #: flatcamTools/ToolPcbWizard.py:366
  8883. msgid ""
  8884. "The INF file does not contain the tool table.\n"
  8885. "Try to open the Excellon file from File -> Open -> Excellon\n"
  8886. "and edit the drill diameters manually."
  8887. msgstr ""
  8888. #: flatcamTools/ToolPcbWizard.py:387
  8889. msgid "PcbWizard .INF file loaded."
  8890. msgstr ""
  8891. #: flatcamTools/ToolPcbWizard.py:392
  8892. msgid "Main PcbWizard Excellon file loaded."
  8893. msgstr ""
  8894. #: flatcamTools/ToolPcbWizard.py:431
  8895. msgid "Cannot parse file"
  8896. msgstr ""
  8897. #: flatcamTools/ToolPcbWizard.py:456
  8898. msgid "Importing Excellon."
  8899. msgstr ""
  8900. #: flatcamTools/ToolPcbWizard.py:463
  8901. msgid "Import Excellon file failed."
  8902. msgstr ""
  8903. #: flatcamTools/ToolPcbWizard.py:471
  8904. msgid "Imported"
  8905. msgstr ""
  8906. #: flatcamTools/ToolPcbWizard.py:475
  8907. msgid "Excellon merging is in progress. Please wait..."
  8908. msgstr ""
  8909. #: flatcamTools/ToolPcbWizard.py:478
  8910. msgid "The imported Excellon file is None."
  8911. msgstr ""
  8912. #: flatcamTools/ToolProperties.py:112
  8913. msgid "Properties Tool was not displayed. No object selected."
  8914. msgstr ""
  8915. #: flatcamTools/ToolProperties.py:120
  8916. msgid "Object Properties are displayed."
  8917. msgstr ""
  8918. #: flatcamTools/ToolProperties.py:121
  8919. msgid "Properties Tool"
  8920. msgstr ""
  8921. #: flatcamTools/ToolProperties.py:130
  8922. msgid "TYPE"
  8923. msgstr ""
  8924. #: flatcamTools/ToolProperties.py:131
  8925. msgid "NAME"
  8926. msgstr ""
  8927. #: flatcamTools/ToolProperties.py:132
  8928. msgid "Dimensions"
  8929. msgstr ""
  8930. #: flatcamTools/ToolProperties.py:135
  8931. msgid "Options"
  8932. msgstr ""
  8933. #: flatcamTools/ToolProperties.py:146
  8934. msgid "Geo Type"
  8935. msgstr ""
  8936. #: flatcamTools/ToolProperties.py:147
  8937. msgid "Single-Geo"
  8938. msgstr ""
  8939. #: flatcamTools/ToolProperties.py:147
  8940. msgid "Multi-Geo"
  8941. msgstr ""
  8942. #: flatcamTools/ToolProperties.py:155
  8943. msgid "Calculating dimensions ... Please wait."
  8944. msgstr ""
  8945. #: flatcamTools/ToolProperties.py:246
  8946. msgid "Inch"
  8947. msgstr ""
  8948. #: flatcamTools/ToolProperties.py:247
  8949. msgid "Metric"
  8950. msgstr ""
  8951. #: flatcamTools/ToolProperties.py:298 flatcamTools/ToolProperties.py:312
  8952. #: flatcamTools/ToolProperties.py:315 flatcamTools/ToolProperties.py:318
  8953. msgid "Present"
  8954. msgstr ""
  8955. #: flatcamTools/ToolProperties.py:352
  8956. msgid "Width"
  8957. msgstr ""
  8958. #: flatcamTools/ToolProperties.py:357 flatcamTools/ToolProperties.py:361
  8959. msgid "Box Area"
  8960. msgstr ""
  8961. #: flatcamTools/ToolProperties.py:358 flatcamTools/ToolProperties.py:362
  8962. msgid "Convex_Hull Area"
  8963. msgstr ""
  8964. #: flatcamTools/ToolShell.py:69
  8965. msgid "...proccessing..."
  8966. msgstr ""
  8967. #: flatcamTools/ToolShell.py:71
  8968. #, python-format
  8969. msgid "...proccessing... [%s]"
  8970. msgstr ""
  8971. #: flatcamTools/ToolSolderPaste.py:37
  8972. msgid "Solder Paste Tool"
  8973. msgstr ""
  8974. #: flatcamTools/ToolSolderPaste.py:65
  8975. msgid "Gerber Solder paste object. "
  8976. msgstr ""
  8977. #: flatcamTools/ToolSolderPaste.py:72
  8978. msgid ""
  8979. "Tools pool from which the algorithm\n"
  8980. "will pick the ones used for dispensing solder paste."
  8981. msgstr ""
  8982. #: flatcamTools/ToolSolderPaste.py:87
  8983. msgid ""
  8984. "This is the Tool Number.\n"
  8985. "The solder dispensing will start with the tool with the biggest \n"
  8986. "diameter, continuing until there are no more Nozzle tools.\n"
  8987. "If there are no longer tools but there are still pads not covered\n"
  8988. " with solder paste, the app will issue a warning message box."
  8989. msgstr ""
  8990. #: flatcamTools/ToolSolderPaste.py:94
  8991. msgid ""
  8992. "Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
  8993. "is the width of the solder paste dispensed."
  8994. msgstr ""
  8995. #: flatcamTools/ToolSolderPaste.py:101
  8996. msgid "New Nozzle Tool"
  8997. msgstr ""
  8998. #: flatcamTools/ToolSolderPaste.py:117
  8999. msgid ""
  9000. "Add a new nozzle tool to the Tool Table\n"
  9001. "with the diameter specified above."
  9002. msgstr ""
  9003. #: flatcamTools/ToolSolderPaste.py:129
  9004. msgid "Generate solder paste dispensing geometry."
  9005. msgstr ""
  9006. #: flatcamTools/ToolSolderPaste.py:142
  9007. msgid "STEP 1"
  9008. msgstr ""
  9009. #: flatcamTools/ToolSolderPaste.py:144
  9010. msgid ""
  9011. "First step is to select a number of nozzle tools for usage\n"
  9012. "and then optionally modify the GCode parameters bellow."
  9013. msgstr ""
  9014. #: flatcamTools/ToolSolderPaste.py:147
  9015. msgid ""
  9016. "Select tools.\n"
  9017. "Modify parameters."
  9018. msgstr ""
  9019. #: flatcamTools/ToolSolderPaste.py:235
  9020. msgid ""
  9021. "Feedrate (speed) while moving up vertically\n"
  9022. " to Dispense position (on Z plane)."
  9023. msgstr ""
  9024. #: flatcamTools/ToolSolderPaste.py:289
  9025. msgid "Generate GCode"
  9026. msgstr ""
  9027. #: flatcamTools/ToolSolderPaste.py:291
  9028. msgid ""
  9029. "Generate GCode for Solder Paste dispensing\n"
  9030. "on PCB pads."
  9031. msgstr ""
  9032. #: flatcamTools/ToolSolderPaste.py:306
  9033. msgid "STEP 2"
  9034. msgstr ""
  9035. #: flatcamTools/ToolSolderPaste.py:308
  9036. msgid ""
  9037. "Second step is to create a solder paste dispensing\n"
  9038. "geometry out of an Solder Paste Mask Gerber file."
  9039. msgstr ""
  9040. #: flatcamTools/ToolSolderPaste.py:324
  9041. msgid "Geo Result"
  9042. msgstr ""
  9043. #: flatcamTools/ToolSolderPaste.py:326
  9044. msgid ""
  9045. "Geometry Solder Paste object.\n"
  9046. "The name of the object has to end in:\n"
  9047. "'_solderpaste' as a protection."
  9048. msgstr ""
  9049. #: flatcamTools/ToolSolderPaste.py:335
  9050. msgid "STEP 3"
  9051. msgstr ""
  9052. #: flatcamTools/ToolSolderPaste.py:337
  9053. msgid ""
  9054. "Third step is to select a solder paste dispensing geometry,\n"
  9055. "and then generate a CNCJob object.\n"
  9056. "\n"
  9057. "REMEMBER: if you want to create a CNCJob with new parameters,\n"
  9058. "first you need to generate a geometry with those new params,\n"
  9059. "and only after that you can generate an updated CNCJob."
  9060. msgstr ""
  9061. #: flatcamTools/ToolSolderPaste.py:357
  9062. msgid "CNC Result"
  9063. msgstr ""
  9064. #: flatcamTools/ToolSolderPaste.py:359
  9065. msgid ""
  9066. "CNCJob Solder paste object.\n"
  9067. "In order to enable the GCode save section,\n"
  9068. "the name of the object has to end in:\n"
  9069. "'_solderpaste' as a protection."
  9070. msgstr ""
  9071. #: flatcamTools/ToolSolderPaste.py:369
  9072. msgid "View GCode"
  9073. msgstr ""
  9074. #: flatcamTools/ToolSolderPaste.py:371
  9075. msgid ""
  9076. "View the generated GCode for Solder Paste dispensing\n"
  9077. "on PCB pads."
  9078. msgstr ""
  9079. #: flatcamTools/ToolSolderPaste.py:375
  9080. msgid "Save GCode"
  9081. msgstr ""
  9082. #: flatcamTools/ToolSolderPaste.py:377
  9083. msgid ""
  9084. "Save the generated GCode for Solder Paste dispensing\n"
  9085. "on PCB pads, to a file."
  9086. msgstr ""
  9087. #: flatcamTools/ToolSolderPaste.py:381
  9088. msgid "STEP 4"
  9089. msgstr ""
  9090. #: flatcamTools/ToolSolderPaste.py:383
  9091. msgid ""
  9092. "Fourth step (and last) is to select a CNCJob made from \n"
  9093. "a solder paste dispensing geometry, and then view/save it's GCode."
  9094. msgstr ""
  9095. #: flatcamTools/ToolSolderPaste.py:412
  9096. msgid "Delete Object"
  9097. msgstr ""
  9098. #: flatcamTools/ToolSolderPaste.py:799
  9099. msgid "Adding Nozzle tool cancelled. Tool already in Tool Table."
  9100. msgstr ""
  9101. #: flatcamTools/ToolSolderPaste.py:805
  9102. msgid "New Nozzle tool added to Tool Table."
  9103. msgstr ""
  9104. #: flatcamTools/ToolSolderPaste.py:848
  9105. msgid "Nozzle tool from Tool Table was edited."
  9106. msgstr ""
  9107. #: flatcamTools/ToolSolderPaste.py:906
  9108. msgid "Delete failed. Select a Nozzle tool to delete."
  9109. msgstr ""
  9110. #: flatcamTools/ToolSolderPaste.py:912
  9111. msgid "Nozzle tool(s) deleted from Tool Table."
  9112. msgstr ""
  9113. #: flatcamTools/ToolSolderPaste.py:968
  9114. msgid "No SolderPaste mask Gerber object loaded."
  9115. msgstr ""
  9116. #: flatcamTools/ToolSolderPaste.py:986
  9117. msgid "Creating Solder Paste dispensing geometry."
  9118. msgstr ""
  9119. #: flatcamTools/ToolSolderPaste.py:999
  9120. msgid "No Nozzle tools in the tool table."
  9121. msgstr ""
  9122. #: flatcamTools/ToolSolderPaste.py:1126
  9123. msgid "Cancelled. Empty file, it has no geometry..."
  9124. msgstr ""
  9125. #: flatcamTools/ToolSolderPaste.py:1130
  9126. msgid "Solder Paste geometry generated successfully"
  9127. msgstr ""
  9128. #: flatcamTools/ToolSolderPaste.py:1137
  9129. msgid "Some or all pads have no solder due of inadequate nozzle diameters..."
  9130. msgstr ""
  9131. #: flatcamTools/ToolSolderPaste.py:1151
  9132. msgid "Generating Solder Paste dispensing geometry..."
  9133. msgstr ""
  9134. #: flatcamTools/ToolSolderPaste.py:1172
  9135. msgid "There is no Geometry object available."
  9136. msgstr ""
  9137. #: flatcamTools/ToolSolderPaste.py:1177
  9138. msgid "This Geometry can't be processed. NOT a solder_paste_tool geometry."
  9139. msgstr ""
  9140. #: flatcamTools/ToolSolderPaste.py:1285
  9141. msgid "ToolSolderPaste CNCjob created"
  9142. msgstr ""
  9143. #: flatcamTools/ToolSolderPaste.py:1318 flatcamTools/ToolSolderPaste.py:1323
  9144. #: flatcamTools/ToolSolderPaste.py:1378
  9145. msgid ""
  9146. "This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
  9147. msgstr ""
  9148. #: flatcamTools/ToolSolderPaste.py:1348
  9149. msgid "No Gcode in the object"
  9150. msgstr ""
  9151. #: flatcamTools/ToolSolderPaste.py:1358
  9152. msgid "ToolSolderPaste.on_view_gcode()"
  9153. msgstr ""
  9154. #: flatcamTools/ToolSolderPaste.py:1388
  9155. msgid "Export GCode ..."
  9156. msgstr ""
  9157. #: flatcamTools/ToolSolderPaste.py:1436
  9158. msgid "Solder paste dispenser GCode file saved to"
  9159. msgstr ""
  9160. #: flatcamTools/ToolSub.py:57
  9161. msgid "Gerber Objects"
  9162. msgstr ""
  9163. #: flatcamTools/ToolSub.py:66 flatcamTools/ToolSub.py:112
  9164. msgid "Target"
  9165. msgstr ""
  9166. #: flatcamTools/ToolSub.py:68
  9167. msgid ""
  9168. "Gerber object from which to substract\n"
  9169. "the substractor Gerber object."
  9170. msgstr ""
  9171. #: flatcamTools/ToolSub.py:80 flatcamTools/ToolSub.py:126
  9172. msgid "Substractor"
  9173. msgstr ""
  9174. #: flatcamTools/ToolSub.py:82
  9175. msgid ""
  9176. "Gerber object that will be substracted\n"
  9177. "from the target Gerber object."
  9178. msgstr ""
  9179. #: flatcamTools/ToolSub.py:89
  9180. msgid "Substract Gerber"
  9181. msgstr ""
  9182. #: flatcamTools/ToolSub.py:91
  9183. msgid ""
  9184. "Will remove the area occupied by the substractor\n"
  9185. "Gerber from the Target Gerber.\n"
  9186. "Can be used to remove the overlapping silkscreen\n"
  9187. "over the soldermask."
  9188. msgstr ""
  9189. #: flatcamTools/ToolSub.py:103
  9190. msgid "Geometry Objects"
  9191. msgstr ""
  9192. #: flatcamTools/ToolSub.py:114
  9193. msgid ""
  9194. "Geometry object from which to substract\n"
  9195. "the substractor Geometry object."
  9196. msgstr ""
  9197. #: flatcamTools/ToolSub.py:128
  9198. msgid ""
  9199. "Geometry object that will be substracted\n"
  9200. "from the target Geometry object."
  9201. msgstr ""
  9202. #: flatcamTools/ToolSub.py:139
  9203. msgid "Substract Geometry"
  9204. msgstr ""
  9205. #: flatcamTools/ToolSub.py:141
  9206. msgid ""
  9207. "Will remove the area occupied by the substractor\n"
  9208. "Geometry from the Target Geometry."
  9209. msgstr ""
  9210. #: flatcamTools/ToolSub.py:228
  9211. msgid "Sub Tool"
  9212. msgstr ""
  9213. #: flatcamTools/ToolSub.py:245 flatcamTools/ToolSub.py:447
  9214. msgid "No Target object loaded."
  9215. msgstr ""
  9216. #: flatcamTools/ToolSub.py:260 flatcamTools/ToolSub.py:462
  9217. msgid "No Substractor object loaded."
  9218. msgstr ""
  9219. #: flatcamTools/ToolSub.py:314
  9220. #, python-format
  9221. msgid "Parsing aperture %s geometry ..."
  9222. msgstr ""
  9223. #: flatcamTools/ToolSub.py:416 flatcamTools/ToolSub.py:619
  9224. msgid "Generating new object ..."
  9225. msgstr ""
  9226. #: flatcamTools/ToolSub.py:420 flatcamTools/ToolSub.py:623
  9227. #: flatcamTools/ToolSub.py:704
  9228. msgid "Generating new object failed."
  9229. msgstr ""
  9230. #: flatcamTools/ToolSub.py:425 flatcamTools/ToolSub.py:629
  9231. msgid "Created"
  9232. msgstr ""
  9233. #: flatcamTools/ToolSub.py:476
  9234. msgid "Currently, the Substractor geometry cannot be of type Multigeo."
  9235. msgstr ""
  9236. #: flatcamTools/ToolSub.py:521
  9237. msgid "Parsing solid_geometry ..."
  9238. msgstr ""
  9239. #: flatcamTools/ToolSub.py:523
  9240. #, python-format
  9241. msgid "Parsing tool %s geometry ..."
  9242. msgstr ""
  9243. #: flatcamTools/ToolTransform.py:23
  9244. msgid "Object Transform"
  9245. msgstr ""
  9246. #: flatcamTools/ToolTransform.py:84
  9247. msgid ""
  9248. "Rotate the selected object(s).\n"
  9249. "The point of reference is the middle of\n"
  9250. "the bounding box for all selected objects."
  9251. msgstr ""
  9252. #: flatcamTools/ToolTransform.py:120 flatcamTools/ToolTransform.py:138
  9253. msgid ""
  9254. "Skew/shear the selected object(s).\n"
  9255. "The point of reference is the middle of\n"
  9256. "the bounding box for all selected objects."
  9257. msgstr ""
  9258. #: flatcamTools/ToolTransform.py:176 flatcamTools/ToolTransform.py:193
  9259. msgid ""
  9260. "Scale the selected object(s).\n"
  9261. "The point of reference depends on \n"
  9262. "the Scale reference checkbox state."
  9263. msgstr ""
  9264. #: flatcamTools/ToolTransform.py:251 flatcamTools/ToolTransform.py:268
  9265. msgid ""
  9266. "Offset the selected object(s).\n"
  9267. "The point of reference is the middle of\n"
  9268. "the bounding box for all selected objects.\n"
  9269. msgstr ""
  9270. #: flatcamTools/ToolTransform.py:298 flatcamTools/ToolTransform.py:306
  9271. msgid ""
  9272. "Flip the selected object(s) over the X axis.\n"
  9273. "Does not create a new object.\n"
  9274. " "
  9275. msgstr ""
  9276. #: flatcamTools/ToolTransform.py:643
  9277. msgid "No object selected. Please Select an object to rotate!"
  9278. msgstr ""
  9279. #: flatcamTools/ToolTransform.py:671
  9280. msgid "CNCJob objects can't be rotated."
  9281. msgstr ""
  9282. #: flatcamTools/ToolTransform.py:679
  9283. msgid "Rotate done"
  9284. msgstr ""
  9285. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9286. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9287. #: flatcamTools/ToolTransform.py:903
  9288. msgid "Due of"
  9289. msgstr ""
  9290. #: flatcamTools/ToolTransform.py:684 flatcamTools/ToolTransform.py:759
  9291. #: flatcamTools/ToolTransform.py:808 flatcamTools/ToolTransform.py:867
  9292. #: flatcamTools/ToolTransform.py:903
  9293. msgid "action was not executed."
  9294. msgstr ""
  9295. #: flatcamTools/ToolTransform.py:696
  9296. msgid "No object selected. Please Select an object to flip"
  9297. msgstr ""
  9298. #: flatcamTools/ToolTransform.py:731
  9299. msgid "CNCJob objects can't be mirrored/flipped."
  9300. msgstr ""
  9301. #: flatcamTools/ToolTransform.py:769
  9302. msgid "No object selected. Please Select an object to shear/skew!"
  9303. msgstr ""
  9304. #: flatcamTools/ToolTransform.py:791
  9305. msgid "CNCJob objects can't be skewed."
  9306. msgstr ""
  9307. #: flatcamTools/ToolTransform.py:803
  9308. #, python-format
  9309. msgid "[success] Skew on the %s axis done ..."
  9310. msgstr ""
  9311. #: flatcamTools/ToolTransform.py:820
  9312. msgid "No object selected. Please Select an object to scale!"
  9313. msgstr ""
  9314. #: flatcamTools/ToolTransform.py:853
  9315. msgid "CNCJob objects can't be scaled."
  9316. msgstr ""
  9317. #: flatcamTools/ToolTransform.py:863
  9318. msgid "Scale on the"
  9319. msgstr ""
  9320. #: flatcamTools/ToolTransform.py:863 flatcamTools/ToolTransform.py:898
  9321. msgid "axis done"
  9322. msgstr ""
  9323. #: flatcamTools/ToolTransform.py:875
  9324. msgid "No object selected. Please Select an object to offset!"
  9325. msgstr ""
  9326. #: flatcamTools/ToolTransform.py:884
  9327. msgid "CNCJob objects can't be offset."
  9328. msgstr ""
  9329. #: flatcamTools/ToolTransform.py:898
  9330. msgid "Offset on the"
  9331. msgstr ""
  9332. #: tclCommands/TclCommandBbox.py:70 tclCommands/TclCommandNregions.py:68
  9333. msgid "Expected FlatCAMGerber or FlatCAMGeometry, got"
  9334. msgstr ""
  9335. #: tclCommands/TclCommandCopperClear.py:234 tclCommands/TclCommandPaint.py:231
  9336. msgid "Expected -box <value>."
  9337. msgstr ""
  9338. #: tclCommands/TclCommandCopperClear.py:243 tclCommands/TclCommandPaint.py:240
  9339. #: tclCommands/TclCommandScale.py:63
  9340. msgid "Could not retrieve box object"
  9341. msgstr ""
  9342. #: tclCommands/TclCommandCopperClear.py:263
  9343. msgid ""
  9344. "None of the following args: 'ref', 'all' were found or none was set to 1.\n"
  9345. "Copper clearing failed."
  9346. msgstr ""
  9347. #: tclCommands/TclCommandPaint.py:210
  9348. msgid "Expected -x <value> and -y <value>."
  9349. msgstr ""
  9350. #: tclCommands/TclCommandPaint.py:257
  9351. msgid ""
  9352. "There was none of the following args: 'ref', 'single', 'all'.\n"
  9353. "Paint failed."
  9354. msgstr ""
  9355. #: tclCommands/TclCommandScale.py:83
  9356. msgid "Expected -origin <origin> or -origin <min_bounds> or -origin <center>."
  9357. msgstr ""
  9358. #: tclCommands/TclCommandScale.py:92
  9359. msgid "Expected -x <value> -y <value>."
  9360. msgstr ""
  9361. #: tclCommands/TclCommandSubtractRectangle.py:49
  9362. msgid "No Geometry name in args. Provide a name and try again."
  9363. msgstr ""
  9364. #~ msgid ""
  9365. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9366. #~ "Example:\n"
  9367. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9368. #~ "\n"
  9369. #~ "Adjust the value starting with lower values\n"
  9370. #~ "and increasing it if areas that should be painted are still \n"
  9371. #~ "not painted.\n"
  9372. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9373. #~ "Higher values = slow processing and slow execution on CNC\n"
  9374. #~ "due of too many paths."
  9375. #~ msgstr ""
  9376. #~ "How much (fraction) of the tool width to overlap each tool pass.\n"
  9377. #~ "Example:\n"
  9378. #~ "A value here of 0.25 means 25\\% from the tool diameter found above.\n"
  9379. #~ "\n"
  9380. #~ "Adjust the value starting with lower values\n"
  9381. #~ "and increasing it if areas that should be painted are still \n"
  9382. #~ "not painted.\n"
  9383. #~ "Lower values = faster processing, faster execution on PCB.\n"
  9384. #~ "Higher values = slow processing and slow execution on CNC\n"
  9385. #~ "due of too many paths."
  9386. #~| msgid "z_toolchange = Z coord for Toolchange"
  9387. #~ msgid "z_cut = Z coord for Toolchange"
  9388. #~ msgstr "z_cut = Z coord for Toolchange"
  9389. #~| msgid "z_toolchange = Z coord for Toolchange"
  9390. #~ msgid "z_move = Z coord for Toolchange"
  9391. #~ msgstr "z_move = Z coord for Toolchange"
  9392. #~ msgid "%s/Project_%s"
  9393. #~ msgstr "%s/Project_%s"
  9394. #~ msgid "tool_tab"
  9395. #~ msgstr "tool_tab"